Sha256: 78c731371be3ff1a96e92d738446b4e67e40a5e0f1fe9262c1047fb70ce72d1d
Contents?: true
Size: 598 Bytes
Versions: 14
Compression:
Stored size: 598 Bytes
Contents
import { identifierForContextKey } from "@hotwired/stimulus-webpack-helpers" import ClipboardController from './clipboard_controller' import FormController from './form_controller' import MobileMenuController from './mobile_menu_controller' export const controllerDefinitions = [ [ClipboardController, 'clipboard_controller.js'], [FormController, 'form_controller.js'], [MobileMenuController, 'mobile_menu_controller.js'], ].map(function(d) { const key = d[1] const controller = d[0] return { identifier: identifierForContextKey(key), controllerConstructor: controller } })
Version data entries
14 entries across 14 versions & 1 rubygems