-
Notifications
You must be signed in to change notification settings - Fork 212
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(multiselect): ajustes de merge do Carlos
- Loading branch information
Showing
7 changed files
with
226 additions
and
60 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
export * from './enums/po-tag-orientation.enum'; | ||
export * from './enums/po-tag-type.enum'; | ||
export * from './interfaces/po-tag-literals.interface'; | ||
export * from './po-tag.component'; | ||
|
||
export * from './po-tag.module'; |
11 changes: 11 additions & 0 deletions
11
projects/ui/src/lib/components/po-tag/interfaces/po-tag-literals.interface.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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/** | ||
* @usedBy PoTagComponent | ||
* | ||
* @description | ||
* | ||
* Interface para definição das literais usadas no `po-tag`. | ||
*/ | ||
export interface PoTagLiterals { | ||
/** Texto exibido no tooltip indicando remoção da tag. */ | ||
remove?: string; | ||
} |
Oops, something went wrong.