forked from NationalBankBelgium/stark
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(stark-ui): replace "angular2-text-mask" library by "imaskjs"
ISSUES CLOSED: NationalBankBelgium#2564 Add support for `min` and `max` date validation on typing for `starkTimestampMask` directive. Add support for filtering date input when typing on `starkTimestampMask` directive. Built-in Stark filters: - `OnlyWeekends` - `OnlyWeekdays` BREAKING CHANGE: The pipe function in `StarkTextMaskConfig` interface is not supported anymore
- Loading branch information
Showing
29 changed files
with
1,368 additions
and
1,135 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,2 +1,2 @@ | ||
export { StarkDateInput, StarkDatePickerMaskConfig, StarkDatePickerComponent, StarkDatePickerFilter } from "./components/date-picker.component"; | ||
export { StarkDatePickerMaskConfig, StarkDatePickerComponent, StarkDatePickerFilter } from "./components/date-picker.component"; | ||
export * from "./components/date-format.constants"; |
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
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
5 changes: 2 additions & 3 deletions
5
packages/stark-ui/src/modules/input-mask-directives/directives.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,9 +1,8 @@ | ||
export * from "./directives/email-mask.directive"; | ||
export * from "./directives/number-mask-config.intf"; | ||
export * from "./directives/number-mask.directive"; | ||
export * from "./directives/number-mask-config.intf"; | ||
export * from "./directives/text-mask.constants"; | ||
export * from "./directives/text-mask.directive"; | ||
export * from "./directives/text-mask-config.intf"; | ||
export * from "./directives/timestamp-mask-config.intf"; | ||
export * from "./directives/timestamp-mask.directive"; | ||
export * from "./directives/timestamp-pipe.fn"; | ||
export * from "./directives/timestamp-mask-config.intf"; |
Oops, something went wrong.