File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed
packages/components/src/components/hds/form/super-select Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 1- {{! @glint -nocheck: not typesafe yet }}
21{{!
32 Copyright (c) HashiCorp, Inc.
43 SPDX-License-Identifier: MPL-2.0
Original file line number Diff line number Diff line change 66import Component from '@glimmer/component' ;
77import { guidFor } from '@ember/object/internals' ;
88
9- export default class HdsSuperSelectOptionGroupComponent extends Component {
9+ interface HdsFormSuperSelectOptionGroupSignature {
10+ Args : {
11+ group : {
12+ groupName ?: string ;
13+ } ;
14+ } ;
15+ Blocks : {
16+ default : [ ] ;
17+ } ;
18+ }
19+
20+ export default class HdsFormSuperSelectOptionGroupComponent extends Component < HdsFormSuperSelectOptionGroupSignature > {
1021 /**
1122 * Generates a unique ID for the group title
1223 * @return {string }
You can’t perform that action at this time.
0 commit comments