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