-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve UX for string-based EditableFields (#301)
* Fixes to EditableTextField * Add tests * Tests, documentation and cleanup
- Loading branch information
Showing
10 changed files
with
696 additions
and
263 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import Component from '@glimmer/component'; | ||
|
||
interface CustomEditableFieldsEmptyStateComponentSignature { | ||
Element: null; | ||
Args: { | ||
}; | ||
Blocks: { | ||
}; | ||
} | ||
|
||
export default class CustomEditableFieldsEmptyStateComponent extends Component<CustomEditableFieldsEmptyStateComponentSignature> { | ||
} | ||
|
||
declare module '@glint/environment-ember-loose/registry' { | ||
export default interface Registry { | ||
'CustomEditableFields::EmptyState': typeof CustomEditableFieldsEmptyStateComponent; | ||
} | ||
} |
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
Oops, something went wrong.