Sha256: 414f0ad6d0ffb9df19fe8218c6910cb147beddfa23279484b7435b1f692d18c7
Contents?: true
Size: 1.4 KB
Versions: 6
Compression:
Stored size: 1.4 KB
Contents
import { Application } from '@hotwired/stimulus'; import AriadneForm from './ariadne-form'; import OptionsController from './options_controller/options_controller'; import AccumulatorController from './accumulator_controller/accumulator_controller'; import ToggleableController from './toggleable_controller/toggleable_controller'; import ClipboardCopyComponent from './clipboard_copy_component/clipboard-copy-component'; import RichTextAreaComponent from './rich_text_area_component/rich-text-area-component'; import SlideoverComponent from './slideover_component/slideover-component'; import TabNavComponent from './tab_nav_component/tab-nav-component'; import TooltipComponent from './tooltip_component/tooltip-component'; import './tab_container_component/tab-container-component'; import './time_ago_component/time-ago-component'; const application = Application.start(); application.register('clipboard-copy-component', ClipboardCopyComponent); application.register('ariadne-form', AriadneForm); application.register('rich-text-area-component', RichTextAreaComponent); application.register('slideover-component', SlideoverComponent); application.register('tab-nav-component', TabNavComponent); application.register('tooltip-component', TooltipComponent); application.register('toggleable', ToggleableController); application.register('accumulator', AccumulatorController); application.register('options', OptionsController);
Version data entries
6 entries across 6 versions & 1 rubygems