-
Notifications
You must be signed in to change notification settings - Fork 379
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1634 from mkszepp/fix-types
Fix types
- Loading branch information
Showing
9 changed files
with
104 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 6 additions & 3 deletions
9
ember-power-select/src/components/power-select/no-matches-message.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
import Component from '@glimmer/component'; | ||
|
||
interface Args { | ||
noMatchesMessage: any; | ||
interface PowerSelectNoMatchesMessageSignature { | ||
Element: HTMLElement; | ||
Args: { | ||
noMatchesMessage: any; | ||
}; | ||
} | ||
|
||
export default class NoMatchesMessageComponent extends Component<Args> {} | ||
export default class PowerSelectNoMatchesMessageComponent extends Component<PowerSelectNoMatchesMessageSignature> {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 8 additions & 6 deletions
14
ember-power-select/src/components/power-select/placeholder.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
import Component from '@glimmer/component'; | ||
import Component from '@glimmer/component'; | ||
|
||
interface Args { | ||
interface PowerSelectPlaceholderSignature { | ||
Element: HTMLElement; | ||
isMultipleWithSearch: boolean; | ||
placeholder: any; | ||
inputComponent?: any; | ||
Args: { | ||
isMultipleWithSearch: boolean; | ||
placeholder: any; | ||
inputComponent?: any; | ||
}; | ||
} | ||
|
||
export default class PlaceholderComponent extends Component<Args> {} | ||
export default class PowerSelectPlaceholderComponent extends Component<PowerSelectPlaceholderSignature> {} |
9 changes: 6 additions & 3 deletions
9
ember-power-select/src/components/power-select/power-select-group.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
import Component from '@glimmer/component'; | ||
|
||
interface Args { | ||
group: any; | ||
interface PowerSelectPowerSelectGroupSignature { | ||
Element: HTMLElement; | ||
Args: { | ||
group: any; | ||
}; | ||
Blocks: { | ||
default: []; | ||
}; | ||
} | ||
|
||
export default class PowerSelectGroupComponent extends Component<Args> {} | ||
export default class PowerSelectPowerSelectGroupComponent extends Component<PowerSelectPowerSelectGroupSignature> {} |
8 changes: 5 additions & 3 deletions
8
ember-power-select/src/components/power-select/search-message.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
import Component from '@glimmer/component'; | ||
|
||
interface Args { | ||
interface PowerSelectSearchMessageSignature { | ||
Element: HTMLElement; | ||
searchMessage: string; | ||
Args: { | ||
searchMessage: string; | ||
}; | ||
} | ||
|
||
export default class SearchMessageComponent extends Component<Args> {} | ||
export default class PowerSelectSearchMessageComponent extends Component<PowerSelectSearchMessageSignature> {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters