@@ -97,6 +97,11 @@ import type HdsFormRadioCardGroupComponent from './components/hds/form/radio-car
9797import type HdsFormRadioCardLabelComponent from './components/hds/form/radio-card/label' ;
9898import type HdsFormSelectBaseComponent from './components/hds/form/select/base' ;
9999import 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' ;
100105import type HdsFormTextInputBaseComponent from './components/hds/form/text-input/base' ;
101106import type HdsFormTextInputFieldComponent from './components/hds/form/text-input/field' ;
102107import 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