Sha256: 8b2e6e3ee6a2a08b35e8acb45838817845f9d55611b95275873b1077dea4bbd3
Contents?: true
Size: 1.48 KB
Versions: 12
Compression:
Stored size: 1.48 KB
Contents
import {Application} from '@hotwired/stimulus' import AriadneForm from './ariadne-form' import StringMatchController from './string_match_controller/string_match_controller' import EventsController from './events_controller/events_controller' 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 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('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) application.register('string-match', StringMatchController) application.register('events', EventsController)
Version data entries
12 entries across 12 versions & 1 rubygems