File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed
packages/components/src/components/hds/form/super-select Expand file tree Collapse file tree 2 files changed +19
-1
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 1+ import templateOnlyComponent from '@ember/component/template-only' ;
2+
3+ interface HdsFormSuperSelectAfterOptionsSignature {
4+ Args : {
5+ clearSelected : ( ) => void ;
6+ content ?: string ;
7+ resultCountMessage ?: string ;
8+ selectedCount ?: string ;
9+ showAll : ( ) => void ;
10+ showNoSelectedMessage ?: boolean ;
11+ showOnlySelected ?: boolean ;
12+ showSelected : ( ) => void ;
13+ } ;
14+ }
15+
16+ const HdsFormSuperSelectAfterOptionsComponent =
17+ templateOnlyComponent < HdsFormSuperSelectAfterOptionsSignature > ( ) ;
18+
19+ export default HdsFormSuperSelectAfterOptionsComponent ;
You can’t perform that action at this time.
0 commit comments