Sha256: 8eda019e3354badb2eec6717d13d405b34898e0d98ba04b175ce9d34cddc2ceb

Contents?: true

Size: 850 Bytes

Versions: 8

Compression:

Stored size: 850 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'

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'],
].map(function(d) {
  const key = d[1]
  const controller = d[0]
  return {
    identifier: identifierForContextKey(key),
    controllerConstructor: controller
  }
})

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
bullet_train-1.0.98 app/javascript/controllers/index.js
bullet_train-1.0.97 app/javascript/controllers/index.js
bullet_train-1.0.96 app/javascript/controllers/index.js
bullet_train-1.0.95 app/javascript/controllers/index.js
bullet_train-1.0.93 app/javascript/controllers/index.js
bullet_train-1.0.92 app/javascript/controllers/index.js
bullet_train-1.0.90 app/javascript/controllers/index.js
bullet_train-1.0.89 app/javascript/controllers/index.js