Skip to content

Commit 275d932

Browse files
committed
Add SuperSelect components to the registry
1 parent 3e532eb commit 275d932

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

packages/components/src/template-registry.ts

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,11 @@ import type HdsFormRadioCardGroupComponent from './components/hds/form/radio-car
9797
import type HdsFormRadioCardLabelComponent from './components/hds/form/radio-card/label';
9898
import type HdsFormSelectBaseComponent from './components/hds/form/select/base';
9999
import type HdsFormSelectFieldComponent from './components/hds/form/select/field';
100+
import type HdsFormSuperSelectAfterOptionsComponent from './components/hds/form/super-select/after-options';
101+
import type HdsFormSuperSelectOptionGroupComponent from './components/hds/form/super-select/option-group';
102+
import type HdsFormSuperSelectPlaceholderComponent from './components/hds/form/super-select/placeholder';
103+
import type HdsFormSuperSelectSingleBaseComponent from './components/hds/form/super-select/single/base';
104+
import type HdsFormSuperSelectSingleFieldComponent from './components/hds/form/super-select/single/field';
100105
import type HdsFormTextInputBaseComponent from './components/hds/form/text-input/base';
101106
import type HdsFormTextInputFieldComponent from './components/hds/form/text-input/field';
102107
import type HdsFormTextareaBaseComponent from './components/hds/form/textarea/base';
@@ -514,6 +519,22 @@ export default interface HdsComponentsRegistry {
514519
'Hds::Form::Select::Field': typeof HdsFormSelectFieldComponent;
515520
'hds/form/select/field': typeof HdsFormSelectFieldComponent;
516521

522+
// Form Super Select
523+
'Hds::Form::SuperSelect::AfterOptions': typeof HdsFormSuperSelectAfterOptionsComponent;
524+
'hds/form/super-select/after-options': typeof HdsFormSuperSelectAfterOptionsComponent;
525+
526+
'Hds::Form::SuperSelect::OptionGroup': typeof HdsFormSuperSelectOptionGroupComponent;
527+
'hds/form/super-select/option-group': typeof HdsFormSuperSelectOptionGroupComponent;
528+
529+
'Hds::Form::SuperSelect::Placeholder': typeof HdsFormSuperSelectPlaceholderComponent;
530+
'hds/form/super-select/placeholder': typeof HdsFormSuperSelectPlaceholderComponent;
531+
532+
'Hds::Form::SuperSelect::Single::Base': typeof HdsFormSuperSelectSingleBaseComponent;
533+
'hds/form/super-select/single/base': typeof HdsFormSuperSelectSingleBaseComponent;
534+
535+
'Hds::Form::SuperSelect::Single::Field': typeof HdsFormSuperSelectSingleFieldComponent;
536+
'hds/form/super-select/single/field': typeof HdsFormSuperSelectSingleFieldComponent;
537+
517538
// Form TextInput
518539
'Hds::Form::TextInput::Base': typeof HdsFormTextInputBaseComponent;
519540
'hds/form/text-input/base': typeof HdsFormTextInputBaseComponent;

0 commit comments

Comments
 (0)