Sha256: 4ae1a21616bb735e7aeefc7286d12632dc8d17944e28e548de7b609ba62f9033
Contents?: true
Size: 1.66 KB
Versions: 48
Compression:
Stored size: 1.66 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 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); application.register('string-match', StringMatchController); application.register('events', EventsController);
Version data entries
48 entries across 48 versions & 1 rubygems