|
@@ -2,9 +2,9 @@ import type { Definition } from '@hotwired/stimulus';
|
|
|
|
|
|
// Order controller imports alphabetically.
|
|
|
import { ActionController } from './ActionController';
|
|
|
-import { AutoFieldController } from './AutoFieldController';
|
|
|
import { ProgressController } from './ProgressController';
|
|
|
import { SkipLinkController } from './SkipLinkController';
|
|
|
+import { SubmitController } from './SubmitController';
|
|
|
import { UpgradeController } from './UpgradeController';
|
|
|
|
|
|
/**
|
|
@@ -13,8 +13,8 @@ import { UpgradeController } from './UpgradeController';
|
|
|
export const coreControllerDefinitions: Definition[] = [
|
|
|
// Keep this list in alphabetical order
|
|
|
{ controllerConstructor: ActionController, identifier: 'w-action' },
|
|
|
- { controllerConstructor: AutoFieldController, identifier: 'w-auto-field' },
|
|
|
{ controllerConstructor: ProgressController, identifier: 'w-progress' },
|
|
|
{ controllerConstructor: SkipLinkController, identifier: 'w-skip-link' },
|
|
|
+ { controllerConstructor: SubmitController, identifier: 'w-submit' },
|
|
|
{ controllerConstructor: UpgradeController, identifier: 'w-upgrade' },
|
|
|
];
|