Sha256: 12411068e0eb37a6e69923c0f5fb9b6650b939cb0be261532c36b8085a252311
Contents?: true
Size: 1.31 KB
Versions: 134
Compression:
Stored size: 1.31 KB
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 DesktopMenuController from './desktop_menu_controller' import FormController from './form_controller' import MobileMenuController from './mobile_menu_controller' import TextToggleController from './text_toggle_controller' import SelectAllController from './select_all_controller' import ConnectionWorkflowController from './connection_workflow_controller' export const controllerDefinitions = [ [BulkActionFormController, 'bulk_action_form_controller.js'], [BulkActionsController, 'bulk_actions_controller.js'], [ClipboardController, 'clipboard_controller.js'], [DesktopMenuController, 'desktop_menu_controller.js'], [FormController, 'form_controller.js'], [MobileMenuController, 'mobile_menu_controller.js'], [TextToggleController, 'text_toggle_controller.js'], [SelectAllController, 'select_all_controller.js'], [ConnectionWorkflowController, 'connection_workflow_controller.js'], ].map(function(d) { const key = d[1] const controller = d[0] return { identifier: identifierForContextKey(key), controllerConstructor: controller } })
Version data entries
134 entries across 134 versions & 1 rubygems