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

Version Path
bullet_train-1.0.88 app/javascript/controllers/index.js
bullet_train-1.0.87 app/javascript/controllers/index.js
bullet_train-1.0.86 app/javascript/controllers/index.js
bullet_train-1.0.85 app/javascript/controllers/index.js
bullet_train-1.0.83 app/javascript/controllers/index.js
bullet_train-1.0.81 app/javascript/controllers/index.js
bullet_train-1.0.79 app/javascript/controllers/index.js
bullet_train-1.0.76 app/javascript/controllers/index.js
bullet_train-1.0.75 app/javascript/controllers/index.js
bullet_train-1.0.74 app/javascript/controllers/index.js
bullet_train-1.0.72 app/javascript/controllers/index.js
bullet_train-1.0.71 app/javascript/controllers/index.js
bullet_train-1.0.70 app/javascript/controllers/index.js
bullet_train-1.0.69 app/javascript/controllers/index.js