cmat 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -0
- package/animations/defaults.d.ts +11 -0
- package/animations/drop.d.ts +2 -0
- package/animations/expand-collapse.d.ts +2 -0
- package/animations/fade.d.ts +11 -0
- package/animations/index.d.ts +5 -0
- package/animations/public-api.d.ts +1 -0
- package/animations/shake.d.ts +2 -0
- package/animations/slide.d.ts +9 -0
- package/animations/transform.d.ts +2 -0
- package/animations/zoom.d.ts +3 -0
- package/components/adapter/datetime-adapter.d.ts +45 -0
- package/components/adapter/datetime-formats.d.ts +22 -0
- package/components/adapter/dayjs-date-adapter.d.ts +63 -0
- package/components/adapter/dayjs-date-formats.d.ts +2 -0
- package/components/adapter/dayjs-datetime-adapter.d.ts +22 -0
- package/components/adapter/dayjs-datetime-formats.d.ts +2 -0
- package/components/adapter/index.d.ts +5 -0
- package/components/adapter/native-datetime-adapter.d.ts +31 -0
- package/components/adapter/native-datetime-formats.d.ts +2 -0
- package/components/adapter/public-api.d.ts +8 -0
- package/components/breadcrumb/breadcrumb-item.directive.d.ts +10 -0
- package/components/breadcrumb/breadcrumb.component.d.ts +57 -0
- package/components/breadcrumb/breadcrumb.component.scss +18 -0
- package/components/breadcrumb/breadcrumb.service.d.ts +126 -0
- package/components/breadcrumb/index.d.ts +5 -0
- package/components/breadcrumb/public-api.d.ts +3 -0
- package/components/breadcrumb/types/breadcrumb.config.d.ts +33 -0
- package/components/breadcrumb/types/breadcrumb.d.ts +23 -0
- package/components/card/card.component.d.ts +20 -0
- package/components/card/card.component.scss +63 -0
- package/components/card/card.types.d.ts +1 -0
- package/components/card/index.d.ts +5 -0
- package/components/card/public-api.d.ts +1 -0
- package/components/cascade/cascade-bottom-sheet/cascade-bottom-sheet.component.d.ts +14 -0
- package/components/cascade/cascade-bottom-sheet/cascade-bottom-sheet.component.scss +43 -0
- package/components/cascade/cascade-list/cascade-list.component.d.ts +52 -0
- package/components/cascade/cascade-list/cascade-list.component.scss +22 -0
- package/components/cascade/cascade-menu/cascade-menu.component.d.ts +10 -0
- package/components/cascade/cascade-menu/cascade-menu.component.scss +48 -0
- package/components/cascade/index.d.ts +5 -0
- package/components/cascade/options.interface.d.ts +8 -0
- package/components/cascade/public-api.d.ts +2 -0
- package/components/date-range/date-range.component.d.ts +134 -0
- package/components/date-range/date-range.component.scss +232 -0
- package/components/date-range/index.d.ts +5 -0
- package/components/date-range/public-api.d.ts +1 -0
- package/components/drawer/drawer.component.d.ts +75 -0
- package/components/drawer/drawer.component.scss +133 -0
- package/components/drawer/drawer.service.d.ts +26 -0
- package/components/drawer/drawer.types.d.ts +2 -0
- package/components/drawer/index.d.ts +5 -0
- package/components/drawer/public-api.d.ts +3 -0
- package/components/fullscreen/fullscreen.component.d.ts +18 -0
- package/components/fullscreen/fullscreen.types.d.ts +13 -0
- package/components/fullscreen/index.d.ts +5 -0
- package/components/fullscreen/public-api.d.ts +2 -0
- package/components/highlight/highlight.component.d.ts +21 -0
- package/components/highlight/highlight.component.scss +3 -0
- package/components/highlight/highlight.service.d.ts +7 -0
- package/components/highlight/index.d.ts +5 -0
- package/components/highlight/public-api.d.ts +2 -0
- package/components/masonry/index.d.ts +5 -0
- package/components/masonry/masonry.component.d.ts +13 -0
- package/components/masonry/public-api.d.ts +1 -0
- package/components/material-color-picker/base-color.d.ts +1 -0
- package/components/material-color-picker/index.d.ts +5 -0
- package/components/material-color-picker/material-color-picker.component.d.ts +35 -0
- package/components/material-color-picker/material-color-picker.component.scss +5 -0
- package/components/material-color-picker/public-api.d.ts +2 -0
- package/components/material-color-picker/selected-color.d.ts +5 -0
- package/components/material-datetimepicker/calendar-body.d.ts +43 -0
- package/components/material-datetimepicker/calendar-body.scss +58 -0
- package/components/material-datetimepicker/calendar.d.ts +146 -0
- package/components/material-datetimepicker/calendar.scss +194 -0
- package/components/material-datetimepicker/clock.d.ts +74 -0
- package/components/material-datetimepicker/clock.scss +90 -0
- package/components/material-datetimepicker/datetimepicker-animations.d.ts +4 -0
- package/components/material-datetimepicker/datetimepicker-content.scss +151 -0
- package/components/material-datetimepicker/datetimepicker-errors.d.ts +1 -0
- package/components/material-datetimepicker/datetimepicker-filtertype.d.ts +5 -0
- package/components/material-datetimepicker/datetimepicker-input.d.ts +106 -0
- package/components/material-datetimepicker/datetimepicker-intl.d.ts +51 -0
- package/components/material-datetimepicker/datetimepicker-toggle.d.ts +40 -0
- package/components/material-datetimepicker/datetimepicker-types.d.ts +13 -0
- package/components/material-datetimepicker/datetimepicker.d.ts +195 -0
- package/components/material-datetimepicker/datetimepicker.scss +145 -0
- package/components/material-datetimepicker/index.d.ts +5 -0
- package/components/material-datetimepicker/month-view.d.ts +64 -0
- package/components/material-datetimepicker/multi-year-view.d.ts +74 -0
- package/components/material-datetimepicker/public-api.d.ts +9 -0
- package/components/material-datetimepicker/time.d.ts +129 -0
- package/components/material-datetimepicker/time.scss +82 -0
- package/components/material-datetimepicker/year-view.d.ts +56 -0
- package/components/navigation/horizontal/components/basic/basic.component.d.ts +27 -0
- package/components/navigation/horizontal/components/branch/branch.component.d.ts +39 -0
- package/components/navigation/horizontal/components/divider/divider.component.d.ts +23 -0
- package/components/navigation/horizontal/components/spacer/spacer.component.d.ts +23 -0
- package/components/navigation/horizontal/horizontal.component.d.ts +43 -0
- package/components/navigation/horizontal/horizontal.component.scss +167 -0
- package/components/navigation/index.d.ts +5 -0
- package/components/navigation/navigation.service.d.ts +71 -0
- package/components/navigation/navigation.types.d.ts +34 -0
- package/components/navigation/public-api.d.ts +4 -0
- package/components/navigation/vertical/components/aside/aside.component.d.ts +63 -0
- package/components/navigation/vertical/components/basic/basic.component.d.ts +30 -0
- package/components/navigation/vertical/components/collapsable/collapsable.component.d.ts +74 -0
- package/components/navigation/vertical/components/divider/divider.component.d.ts +26 -0
- package/components/navigation/vertical/components/group/group.component.d.ts +36 -0
- package/components/navigation/vertical/components/spacer/spacer.component.d.ts +26 -0
- package/components/navigation/vertical/styles/appearances/compact.scss +103 -0
- package/components/navigation/vertical/styles/appearances/default.scss +550 -0
- package/components/navigation/vertical/styles/appearances/dense.scss +171 -0
- package/components/navigation/vertical/styles/appearances/thin.scss +91 -0
- package/components/navigation/vertical/vertical.component.d.ts +176 -0
- package/components/navigation/vertical/vertical.component.scss +4 -0
- package/components/pagination/index.d.ts +5 -0
- package/components/pagination/pagination.component.d.ts +24 -0
- package/components/pagination/pagination.directive.d.ts +40 -0
- package/components/pagination/pagination.instance.d.ts +11 -0
- package/components/pagination/pagination.pipe.d.ts +29 -0
- package/components/pagination/pagination.service.d.ts +20 -0
- package/components/pagination/public-api.d.ts +4 -0
- package/components/password-strength/animations/index.d.ts +4 -0
- package/components/password-strength/enum.d.ts +13 -0
- package/components/password-strength/index.d.ts +5 -0
- package/components/password-strength/mat-pass-toggle-visibility/mat-pass-toggle-visibility.component.d.ts +11 -0
- package/components/password-strength/mat-password-strength/mat-password-strength.component.d.ts +52 -0
- package/components/password-strength/mat-password-strength-info/mat-password-strength-info.component.d.ts +16 -0
- package/components/password-strength/mat-password-strength-info/mat-password-strength-info.component.scss +19 -0
- package/components/password-strength/mat-password-strength-validator.d.ts +6 -0
- package/components/password-strength/public-api.d.ts +3 -0
- package/components/password-strength/regexp.class.d.ts +6 -0
- package/components/popover/index.d.ts +5 -0
- package/components/popover/popover.component.d.ts +139 -0
- package/components/popover/popover.component.scss +174 -0
- package/components/popover/popover.errors.d.ts +14 -0
- package/components/popover/popover.interfaces.d.ts +44 -0
- package/components/popover/popover.type.d.ts +5 -0
- package/components/popover/public-api.d.ts +1 -0
- package/components/progress-bar/index.d.ts +5 -0
- package/components/progress-bar/progress-bar.component.d.ts +17 -0
- package/components/progress-bar/progress-bar.component.scss +7 -0
- package/components/progress-bar/public-api.d.ts +1 -0
- package/components/rating/index.d.ts +5 -0
- package/components/rating/public-api.d.ts +1 -0
- package/components/rating/rating.component.d.ts +28 -0
- package/components/rating/rating.component.scss +33 -0
- package/components/select-search/default-options.d.ts +8 -0
- package/components/select-search/index.d.ts +5 -0
- package/components/select-search/public-api.d.ts +2 -0
- package/components/select-search/select-no-entries-found.directive.d.ts +5 -0
- package/components/select-search/select-search-clear.directive.d.ts +5 -0
- package/components/select-search/select-search.component.d.ts +91 -0
- package/components/select-search/select-search.component.scss +126 -0
- package/components/select-tree/index.d.ts +5 -0
- package/components/select-tree/public-api.d.ts +1 -0
- package/components/select-tree/select-tree.component.d.ts +85 -0
- package/components/select-tree/select-tree.component.scss +54 -0
- package/components/select-tree/select-tree.flatnode.d.ts +6 -0
- package/components/select-tree/select-tree.node.d.ts +5 -0
- package/components/timeline/index.d.ts +5 -0
- package/components/timeline/public-api.d.ts +2 -0
- package/components/timeline/timeline-item/timeline-item.component.d.ts +25 -0
- package/components/timeline/timeline-item/timeline-item.component.scss +329 -0
- package/components/timeline/timeline.component.d.ts +32 -0
- package/components/timeline/timeline.component.scss +42 -0
- package/components/toast/index.d.ts +5 -0
- package/components/toast/models/global-config.model.d.ts +12 -0
- package/components/toast/models/toast.model.d.ts +6 -0
- package/components/toast/models/type.model.d.ts +12 -0
- package/components/toast/public-api.d.ts +2 -0
- package/components/toast/toast-modal.component.d.ts +18 -0
- package/components/toast/toast-modal.component.scss +119 -0
- package/components/toast/toast.component.d.ts +17 -0
- package/components/toast/toast.component.scss +62 -0
- package/components/toast/toast.service.d.ts +26 -0
- package/components/transfer-picker/filter/filter.component.d.ts +24 -0
- package/components/transfer-picker/filter/filter.component.scss +40 -0
- package/components/transfer-picker/index.d.ts +5 -0
- package/components/transfer-picker/interface.d.ts +42 -0
- package/components/transfer-picker/public-api.d.ts +7 -0
- package/components/transfer-picker/search/search.component.d.ts +14 -0
- package/components/transfer-picker/search/search.component.scss +7 -0
- package/components/transfer-picker/transfer-picker-source/transfer-picker-source.component.d.ts +49 -0
- package/components/transfer-picker/transfer-picker-source/transfer-picker-source.component.scss +25 -0
- package/components/transfer-picker/transfer-picker-target/transfer-picker-target.component.d.ts +12 -0
- package/components/transfer-picker/transfer-picker-target/transfer-picker-target.component.scss +27 -0
- package/components/transfer-picker/transfer-picker.component.d.ts +28 -0
- package/components/transfer-picker/transfer-picker.component.scss +8 -0
- package/components/transfer-picker/transfer-picker.service.d.ts +31 -0
- package/directives/animate-on-scroll/animate-on-scroll.directive.d.ts +29 -0
- package/directives/animate-on-scroll/index.d.ts +5 -0
- package/directives/animate-on-scroll/public-api.d.ts +1 -0
- package/directives/animate-on-scroll/scroll.service.d.ts +15 -0
- package/directives/autofocus/autofocus.directive.d.ts +10 -0
- package/directives/autofocus/index.d.ts +5 -0
- package/directives/autofocus/public-api.d.ts +1 -0
- package/directives/debounce/abstract-debounce.directive.d.ts +15 -0
- package/directives/debounce/debounce-click.directive.d.ts +8 -0
- package/directives/debounce/debounce-keyup.directive.d.ts +8 -0
- package/directives/debounce/index.d.ts +5 -0
- package/directives/debounce/public-api.d.ts +2 -0
- package/directives/digit-only/digit-only.directive.d.ts +34 -0
- package/directives/digit-only/index.d.ts +5 -0
- package/directives/digit-only/mask.directive.d.ts +14 -0
- package/directives/digit-only/public-api.d.ts +2 -0
- package/directives/equal-validator/equal-validator.directive.d.ts +14 -0
- package/directives/equal-validator/index.d.ts +5 -0
- package/directives/equal-validator/public-api.d.ts +1 -0
- package/esm2022/animations/cmat-animations.mjs +5 -0
- package/esm2022/animations/defaults.mjs +12 -0
- package/esm2022/animations/drop.mjs +26 -0
- package/esm2022/animations/expand-collapse.mjs +17 -0
- package/esm2022/animations/fade.mjs +170 -0
- package/esm2022/animations/public-api.mjs +19 -0
- package/esm2022/animations/shake.mjs +59 -0
- package/esm2022/animations/slide.mjs +124 -0
- package/esm2022/animations/transform.mjs +16 -0
- package/esm2022/animations/zoom.mjs +38 -0
- package/esm2022/cmat.mjs +5 -0
- package/esm2022/components/adapter/cmat-components-adapter.mjs +5 -0
- package/esm2022/components/adapter/datetime-adapter.mjs +127 -0
- package/esm2022/components/adapter/datetime-formats.mjs +3 -0
- package/esm2022/components/adapter/dayjs-date-adapter.mjs +198 -0
- package/esm2022/components/adapter/dayjs-date-formats.mjs +12 -0
- package/esm2022/components/adapter/dayjs-datetime-adapter.mjs +100 -0
- package/esm2022/components/adapter/dayjs-datetime-formats.mjs +21 -0
- package/esm2022/components/adapter/native-datetime-adapter.mjs +130 -0
- package/esm2022/components/adapter/native-datetime-formats.mjs +15 -0
- package/esm2022/components/adapter/public-api.mjs +9 -0
- package/esm2022/components/breadcrumb/breadcrumb-item.directive.mjs +19 -0
- package/esm2022/components/breadcrumb/breadcrumb.component.mjs +95 -0
- package/esm2022/components/breadcrumb/breadcrumb.service.mjs +336 -0
- package/esm2022/components/breadcrumb/cmat-components-breadcrumb.mjs +5 -0
- package/esm2022/components/breadcrumb/public-api.mjs +4 -0
- package/esm2022/components/breadcrumb/types/breadcrumb.config.mjs +2 -0
- package/esm2022/components/breadcrumb/types/breadcrumb.mjs +2 -0
- package/esm2022/components/card/card.component.mjs +58 -0
- package/esm2022/components/card/card.types.mjs +2 -0
- package/esm2022/components/card/cmat-components-card.mjs +5 -0
- package/esm2022/components/card/public-api.mjs +2 -0
- package/esm2022/components/cascade/cascade-bottom-sheet/cascade-bottom-sheet.component.mjs +53 -0
- package/esm2022/components/cascade/cascade-list/cascade-list.component.mjs +263 -0
- package/esm2022/components/cascade/cascade-menu/cascade-menu.component.mjs +29 -0
- package/esm2022/components/cascade/cmat-components-cascade.mjs +5 -0
- package/esm2022/components/cascade/options.interface.mjs +2 -0
- package/esm2022/components/cascade/public-api.mjs +3 -0
- package/esm2022/components/date-range/cmat-components-date-range.mjs +5 -0
- package/esm2022/components/date-range/date-range.component.mjs +540 -0
- package/esm2022/components/date-range/public-api.mjs +2 -0
- package/esm2022/components/drawer/cmat-components-drawer.mjs +5 -0
- package/esm2022/components/drawer/drawer.component.mjs +301 -0
- package/esm2022/components/drawer/drawer.service.mjs +41 -0
- package/esm2022/components/drawer/drawer.types.mjs +2 -0
- package/esm2022/components/drawer/public-api.mjs +4 -0
- package/esm2022/components/fullscreen/cmat-components-fullscreen.mjs +5 -0
- package/esm2022/components/fullscreen/fullscreen.component.mjs +101 -0
- package/esm2022/components/fullscreen/fullscreen.types.mjs +2 -0
- package/esm2022/components/fullscreen/public-api.mjs +3 -0
- package/esm2022/components/highlight/cmat-components-highlight.mjs +5 -0
- package/esm2022/components/highlight/highlight.component.mjs +80 -0
- package/esm2022/components/highlight/highlight.service.mjs +47 -0
- package/esm2022/components/highlight/public-api.mjs +3 -0
- package/esm2022/components/masonry/cmat-components-masonry.mjs +5 -0
- package/esm2022/components/masonry/masonry.component.mjs +54 -0
- package/esm2022/components/masonry/public-api.mjs +2 -0
- package/esm2022/components/material-color-picker/base-color.mjs +13 -0
- package/esm2022/components/material-color-picker/cmat-components-material-color-picker.mjs +5 -0
- package/esm2022/components/material-color-picker/material-color-picker.component.mjs +138 -0
- package/esm2022/components/material-color-picker/public-api.mjs +3 -0
- package/esm2022/components/material-color-picker/selected-color.mjs +3 -0
- package/esm2022/components/material-datetimepicker/calendar-body.mjs +80 -0
- package/esm2022/components/material-datetimepicker/calendar.mjs +678 -0
- package/esm2022/components/material-datetimepicker/clock.mjs +293 -0
- package/esm2022/components/material-datetimepicker/cmat-components-material-datetimepicker.mjs +5 -0
- package/esm2022/components/material-datetimepicker/datetimepicker-animations.mjs +34 -0
- package/esm2022/components/material-datetimepicker/datetimepicker-errors.mjs +6 -0
- package/esm2022/components/material-datetimepicker/datetimepicker-filtertype.mjs +8 -0
- package/esm2022/components/material-datetimepicker/datetimepicker-input.mjs +340 -0
- package/esm2022/components/material-datetimepicker/datetimepicker-intl.mjs +63 -0
- package/esm2022/components/material-datetimepicker/datetimepicker-toggle.mjs +88 -0
- package/esm2022/components/material-datetimepicker/datetimepicker-types.mjs +2 -0
- package/esm2022/components/material-datetimepicker/datetimepicker.mjs +534 -0
- package/esm2022/components/material-datetimepicker/month-view.mjs +146 -0
- package/esm2022/components/material-datetimepicker/multi-year-view.mjs +198 -0
- package/esm2022/components/material-datetimepicker/public-api.mjs +10 -0
- package/esm2022/components/material-datetimepicker/time.mjs +456 -0
- package/esm2022/components/material-datetimepicker/year-view.mjs +125 -0
- package/esm2022/components/navigation/cmat-components-navigation.mjs +5 -0
- package/esm2022/components/navigation/horizontal/components/basic/basic.component.mjs +70 -0
- package/esm2022/components/navigation/horizontal/components/branch/branch.component.mjs +83 -0
- package/esm2022/components/navigation/horizontal/components/divider/divider.component.mjs +47 -0
- package/esm2022/components/navigation/horizontal/components/spacer/spacer.component.mjs +47 -0
- package/esm2022/components/navigation/horizontal/horizontal.component.mjs +88 -0
- package/esm2022/components/navigation/navigation.service.mjs +140 -0
- package/esm2022/components/navigation/navigation.types.mjs +3 -0
- package/esm2022/components/navigation/public-api.mjs +5 -0
- package/esm2022/components/navigation/vertical/components/aside/aside.component.mjs +162 -0
- package/esm2022/components/navigation/vertical/components/basic/basic.component.mjs +76 -0
- package/esm2022/components/navigation/vertical/components/collapsable/collapsable.component.mjs +279 -0
- package/esm2022/components/navigation/vertical/components/divider/divider.component.mjs +56 -0
- package/esm2022/components/navigation/vertical/components/group/group.component.mjs +79 -0
- package/esm2022/components/navigation/vertical/components/spacer/spacer.component.mjs +56 -0
- package/esm2022/components/navigation/vertical/vertical.component.mjs +586 -0
- package/esm2022/components/pagination/cmat-components-pagination.mjs +5 -0
- package/esm2022/components/pagination/pagination.component.mjs +71 -0
- package/esm2022/components/pagination/pagination.directive.mjs +197 -0
- package/esm2022/components/pagination/pagination.instance.mjs +2 -0
- package/esm2022/components/pagination/pagination.pipe.mjs +100 -0
- package/esm2022/components/pagination/pagination.service.mjs +90 -0
- package/esm2022/components/pagination/public-api.mjs +5 -0
- package/esm2022/components/password-strength/animations/index.mjs +48 -0
- package/esm2022/components/password-strength/cmat-components-password-strength.mjs +5 -0
- package/esm2022/components/password-strength/enum.mjs +17 -0
- package/esm2022/components/password-strength/mat-pass-toggle-visibility/mat-pass-toggle-visibility.component.mjs +27 -0
- package/esm2022/components/password-strength/mat-password-strength/mat-password-strength.component.mjs +206 -0
- package/esm2022/components/password-strength/mat-password-strength-info/mat-password-strength-info.component.mjs +151 -0
- package/esm2022/components/password-strength/mat-password-strength-validator.mjs +36 -0
- package/esm2022/components/password-strength/public-api.mjs +4 -0
- package/esm2022/components/password-strength/regexp.class.mjs +8 -0
- package/esm2022/components/popover/cmat-components-popover.mjs +5 -0
- package/esm2022/components/popover/popover.component.mjs +350 -0
- package/esm2022/components/popover/popover.errors.mjs +27 -0
- package/esm2022/components/popover/popover.interfaces.mjs +2 -0
- package/esm2022/components/popover/popover.type.mjs +2 -0
- package/esm2022/components/popover/public-api.mjs +2 -0
- package/esm2022/components/progress-bar/cmat-components-progress-bar.mjs +5 -0
- package/esm2022/components/progress-bar/progress-bar.component.mjs +55 -0
- package/esm2022/components/progress-bar/public-api.mjs +2 -0
- package/esm2022/components/rating/cmat-components-rating.mjs +5 -0
- package/esm2022/components/rating/public-api.mjs +2 -0
- package/esm2022/components/rating/rating.component.mjs +91 -0
- package/esm2022/components/select-search/cmat-components-select-search.mjs +5 -0
- package/esm2022/components/select-search/default-options.mjs +16 -0
- package/esm2022/components/select-search/public-api.mjs +3 -0
- package/esm2022/components/select-search/select-no-entries-found.directive.mjs +14 -0
- package/esm2022/components/select-search/select-search-clear.directive.mjs +14 -0
- package/esm2022/components/select-search/select-search.component.mjs +488 -0
- package/esm2022/components/select-tree/cmat-components-select-tree.mjs +5 -0
- package/esm2022/components/select-tree/public-api.mjs +2 -0
- package/esm2022/components/select-tree/select-tree.component.mjs +458 -0
- package/esm2022/components/select-tree/select-tree.flatnode.mjs +3 -0
- package/esm2022/components/select-tree/select-tree.node.mjs +3 -0
- package/esm2022/components/timeline/cmat-components-timeline.mjs +5 -0
- package/esm2022/components/timeline/public-api.mjs +3 -0
- package/esm2022/components/timeline/timeline-item/timeline-item.component.mjs +68 -0
- package/esm2022/components/timeline/timeline.component.mjs +114 -0
- package/esm2022/components/toast/cmat-components-toast.mjs +5 -0
- package/esm2022/components/toast/models/global-config.model.mjs +2 -0
- package/esm2022/components/toast/models/toast.model.mjs +2 -0
- package/esm2022/components/toast/models/type.model.mjs +2 -0
- package/esm2022/components/toast/public-api.mjs +3 -0
- package/esm2022/components/toast/toast-modal.component.mjs +53 -0
- package/esm2022/components/toast/toast.component.mjs +30 -0
- package/esm2022/components/toast/toast.service.mjs +122 -0
- package/esm2022/components/transfer-picker/cmat-components-transfer-picker.mjs +5 -0
- package/esm2022/components/transfer-picker/filter/filter.component.mjs +85 -0
- package/esm2022/components/transfer-picker/interface.mjs +17 -0
- package/esm2022/components/transfer-picker/public-api.mjs +8 -0
- package/esm2022/components/transfer-picker/search/search.component.mjs +34 -0
- package/esm2022/components/transfer-picker/transfer-picker-source/transfer-picker-source.component.mjs +178 -0
- package/esm2022/components/transfer-picker/transfer-picker-target/transfer-picker-target.component.mjs +34 -0
- package/esm2022/components/transfer-picker/transfer-picker.component.mjs +82 -0
- package/esm2022/components/transfer-picker/transfer-picker.service.mjs +134 -0
- package/esm2022/directives/animate-on-scroll/animate-on-scroll.directive.mjs +126 -0
- package/esm2022/directives/animate-on-scroll/cmat-directives-animate-on-scroll.mjs +5 -0
- package/esm2022/directives/animate-on-scroll/public-api.mjs +2 -0
- package/esm2022/directives/animate-on-scroll/scroll.service.mjs +38 -0
- package/esm2022/directives/autofocus/autofocus.directive.mjs +20 -0
- package/esm2022/directives/autofocus/cmat-directives-autofocus.mjs +5 -0
- package/esm2022/directives/autofocus/public-api.mjs +2 -0
- package/esm2022/directives/debounce/abstract-debounce.directive.mjs +34 -0
- package/esm2022/directives/debounce/cmat-directives-debounce.mjs +5 -0
- package/esm2022/directives/debounce/debounce-click.directive.mjs +25 -0
- package/esm2022/directives/debounce/debounce-keyup.directive.mjs +25 -0
- package/esm2022/directives/debounce/public-api.mjs +3 -0
- package/esm2022/directives/digit-only/cmat-directives-digit-only.mjs +5 -0
- package/esm2022/directives/digit-only/digit-only.directive.mjs +282 -0
- package/esm2022/directives/digit-only/mask.directive.mjs +69 -0
- package/esm2022/directives/digit-only/public-api.mjs +3 -0
- package/esm2022/directives/equal-validator/cmat-directives-equal-validator.mjs +5 -0
- package/esm2022/directives/equal-validator/equal-validator.directive.mjs +54 -0
- package/esm2022/directives/equal-validator/public-api.mjs +2 -0
- package/esm2022/lib/mock-api/cmat-lib-mock-api.mjs +5 -0
- package/esm2022/lib/mock-api/mock-api.constants.mjs +3 -0
- package/esm2022/lib/mock-api/mock-api.interceptor.mjs +73 -0
- package/esm2022/lib/mock-api/mock-api.request-handler.mjs +48 -0
- package/esm2022/lib/mock-api/mock-api.service.mjs +93 -0
- package/esm2022/lib/mock-api/mock-api.types.mjs +2 -0
- package/esm2022/lib/mock-api/mock-api.utils.mjs +17 -0
- package/esm2022/lib/mock-api/public-api.mjs +6 -0
- package/esm2022/pipes/bytes/bytes.pipe.mjs +25 -0
- package/esm2022/pipes/bytes/cmat-pipes-bytes.mjs +5 -0
- package/esm2022/pipes/bytes/public-api.mjs +2 -0
- package/esm2022/pipes/date-format/cmat-pipes-date-format.mjs +5 -0
- package/esm2022/pipes/date-format/date-format.pipe.mjs +18 -0
- package/esm2022/pipes/date-format/public-api.mjs +2 -0
- package/esm2022/pipes/find-by-key/cmat-pipes-find-by-key.mjs +5 -0
- package/esm2022/pipes/find-by-key/find-by-key.pipe.mjs +23 -0
- package/esm2022/pipes/find-by-key/public-api.mjs +2 -0
- package/esm2022/pipes/group-by/cmat-pipes-group-by.mjs +5 -0
- package/esm2022/pipes/group-by/group-by.pipe.mjs +29 -0
- package/esm2022/pipes/group-by/public-api.mjs +2 -0
- package/esm2022/pipes/keys/cmat-pipes-keys.mjs +5 -0
- package/esm2022/pipes/keys/keys.pipe.mjs +26 -0
- package/esm2022/pipes/keys/public-api.mjs +2 -0
- package/esm2022/pipes/secure/cmat-pipes-secure.mjs +5 -0
- package/esm2022/pipes/secure/public-api.mjs +2 -0
- package/esm2022/pipes/secure/secure-pipe.mjs +43 -0
- package/esm2022/pipes/uppercase/cmat-pipes-uppercase.mjs +5 -0
- package/esm2022/pipes/uppercase/public-api.mjs +2 -0
- package/esm2022/pipes/uppercase/uppercase.pipe.mjs +17 -0
- package/esm2022/public-api.mjs +2 -0
- package/esm2022/services/alert/alert.dialog.mjs +12 -0
- package/esm2022/services/alert/alert.message.mjs +9 -0
- package/esm2022/services/alert/alert.service.mjs +165 -0
- package/esm2022/services/alert/cmat-services-alert.mjs +5 -0
- package/esm2022/services/alert/enum.mjs +15 -0
- package/esm2022/services/alert/public-api.mjs +5 -0
- package/esm2022/services/config/cmat-services-config.mjs +5 -0
- package/esm2022/services/config/config.constants.mjs +3 -0
- package/esm2022/services/config/config.service.mjs +35 -0
- package/esm2022/services/config/public-api.mjs +4 -0
- package/esm2022/services/config/urlStateConfig.service.mjs +30 -0
- package/esm2022/services/confirmation/cmat-services-confirmation.mjs +5 -0
- package/esm2022/services/confirmation/confirmation.service.mjs +51 -0
- package/esm2022/services/confirmation/confirmation.types.mjs +2 -0
- package/esm2022/services/confirmation/dialog/dialog.component.mjs +25 -0
- package/esm2022/services/confirmation/public-api.mjs +3 -0
- package/esm2022/services/data/cmat-services-data.mjs +5 -0
- package/esm2022/services/data/data.service.mjs +169 -0
- package/esm2022/services/data/public-api.mjs +2 -0
- package/esm2022/services/loading/cmat-services-loading.mjs +5 -0
- package/esm2022/services/loading/loading.interceptor.mjs +29 -0
- package/esm2022/services/loading/loading.service.mjs +72 -0
- package/esm2022/services/loading/public-api.mjs +3 -0
- package/esm2022/services/local-storage/cmat-services-local-storage.mjs +5 -0
- package/esm2022/services/local-storage/local-storage.service.mjs +22 -0
- package/esm2022/services/local-storage/public-api.mjs +2 -0
- package/esm2022/services/media-watcher/cmat-services-media-watcher.mjs +5 -0
- package/esm2022/services/media-watcher/media-watcher.service.mjs +55 -0
- package/esm2022/services/media-watcher/public-api.mjs +2 -0
- package/esm2022/services/platform/cmat-services-platform.mjs +5 -0
- package/esm2022/services/platform/platform.service.mjs +46 -0
- package/esm2022/services/platform/public-api.mjs +2 -0
- package/esm2022/services/splash-screen/cmat-services-splash-screen.mjs +5 -0
- package/esm2022/services/splash-screen/public-api.mjs +2 -0
- package/esm2022/services/splash-screen/splash-screen.service.mjs +42 -0
- package/esm2022/services/title/cmat-services-title.mjs +5 -0
- package/esm2022/services/title/public-api.mjs +2 -0
- package/esm2022/services/title/title.service.mjs +46 -0
- package/esm2022/services/translation/cmat-services-translation.mjs +5 -0
- package/esm2022/services/translation/public-api.mjs +2 -0
- package/esm2022/services/translation/translation.service.mjs +62 -0
- package/esm2022/services/utils/cmat-services-utils.mjs +5 -0
- package/esm2022/services/utils/public-api.mjs +2 -0
- package/esm2022/services/utils/utils.service.mjs +391 -0
- package/esm2022/validators/cmat-validators.mjs +5 -0
- package/esm2022/validators/public-api.mjs +2 -0
- package/esm2022/validators/validators.mjs +33 -0
- package/esm2022/version/cmat-version.mjs +5 -0
- package/esm2022/version/public-api.mjs +2 -0
- package/esm2022/version/version.mjs +11 -0
- package/fesm2022/cmat-animations.mjs +466 -0
- package/fesm2022/cmat-animations.mjs.map +1 -0
- package/fesm2022/cmat-components-adapter.mjs +600 -0
- package/fesm2022/cmat-components-adapter.mjs.map +1 -0
- package/fesm2022/cmat-components-breadcrumb.mjs +449 -0
- package/fesm2022/cmat-components-breadcrumb.mjs.map +1 -0
- package/fesm2022/cmat-components-card.mjs +65 -0
- package/fesm2022/cmat-components-card.mjs.map +1 -0
- package/fesm2022/cmat-components-cascade.mjs +334 -0
- package/fesm2022/cmat-components-cascade.mjs.map +1 -0
- package/fesm2022/cmat-components-date-range.mjs +547 -0
- package/fesm2022/cmat-components-date-range.mjs.map +1 -0
- package/fesm2022/cmat-components-drawer.mjs +346 -0
- package/fesm2022/cmat-components-drawer.mjs.map +1 -0
- package/fesm2022/cmat-components-fullscreen.mjs +108 -0
- package/fesm2022/cmat-components-fullscreen.mjs.map +1 -0
- package/fesm2022/cmat-components-highlight.mjs +131 -0
- package/fesm2022/cmat-components-highlight.mjs.map +1 -0
- package/fesm2022/cmat-components-masonry.mjs +61 -0
- package/fesm2022/cmat-components-masonry.mjs.map +1 -0
- package/fesm2022/cmat-components-material-color-picker.mjs +160 -0
- package/fesm2022/cmat-components-material-color-picker.mjs.map +1 -0
- package/fesm2022/cmat-components-material-datetimepicker.mjs +2976 -0
- package/fesm2022/cmat-components-material-datetimepicker.mjs.map +1 -0
- package/fesm2022/cmat-components-navigation.mjs +1656 -0
- package/fesm2022/cmat-components-navigation.mjs.map +1 -0
- package/fesm2022/cmat-components-pagination.mjs +455 -0
- package/fesm2022/cmat-components-pagination.mjs.map +1 -0
- package/fesm2022/cmat-components-password-strength.mjs +489 -0
- package/fesm2022/cmat-components-password-strength.mjs.map +1 -0
- package/fesm2022/cmat-components-popover.mjs +383 -0
- package/fesm2022/cmat-components-popover.mjs.map +1 -0
- package/fesm2022/cmat-components-progress-bar.mjs +62 -0
- package/fesm2022/cmat-components-progress-bar.mjs.map +1 -0
- package/fesm2022/cmat-components-rating.mjs +98 -0
- package/fesm2022/cmat-components-rating.mjs.map +1 -0
- package/fesm2022/cmat-components-select-search.mjs +531 -0
- package/fesm2022/cmat-components-select-search.mjs.map +1 -0
- package/fesm2022/cmat-components-select-tree.mjs +467 -0
- package/fesm2022/cmat-components-select-tree.mjs.map +1 -0
- package/fesm2022/cmat-components-timeline.mjs +186 -0
- package/fesm2022/cmat-components-timeline.mjs.map +1 -0
- package/fesm2022/cmat-components-toast.mjs +205 -0
- package/fesm2022/cmat-components-toast.mjs.map +1 -0
- package/fesm2022/cmat-components-transfer-picker.mjs +536 -0
- package/fesm2022/cmat-components-transfer-picker.mjs.map +1 -0
- package/fesm2022/cmat-directives-animate-on-scroll.mjs +166 -0
- package/fesm2022/cmat-directives-animate-on-scroll.mjs.map +1 -0
- package/fesm2022/cmat-directives-autofocus.mjs +27 -0
- package/fesm2022/cmat-directives-autofocus.mjs.map +1 -0
- package/fesm2022/cmat-directives-debounce.mjs +85 -0
- package/fesm2022/cmat-directives-debounce.mjs.map +1 -0
- package/fesm2022/cmat-directives-digit-only.mjs +356 -0
- package/fesm2022/cmat-directives-digit-only.mjs.map +1 -0
- package/fesm2022/cmat-directives-equal-validator.mjs +61 -0
- package/fesm2022/cmat-directives-equal-validator.mjs.map +1 -0
- package/fesm2022/cmat-lib-mock-api.mjs +232 -0
- package/fesm2022/cmat-lib-mock-api.mjs.map +1 -0
- package/fesm2022/cmat-pipes-bytes.mjs +32 -0
- package/fesm2022/cmat-pipes-bytes.mjs.map +1 -0
- package/fesm2022/cmat-pipes-date-format.mjs +25 -0
- package/fesm2022/cmat-pipes-date-format.mjs.map +1 -0
- package/fesm2022/cmat-pipes-find-by-key.mjs +30 -0
- package/fesm2022/cmat-pipes-find-by-key.mjs.map +1 -0
- package/fesm2022/cmat-pipes-group-by.mjs +36 -0
- package/fesm2022/cmat-pipes-group-by.mjs.map +1 -0
- package/fesm2022/cmat-pipes-keys.mjs +33 -0
- package/fesm2022/cmat-pipes-keys.mjs.map +1 -0
- package/fesm2022/cmat-pipes-secure.mjs +50 -0
- package/fesm2022/cmat-pipes-secure.mjs.map +1 -0
- package/fesm2022/cmat-pipes-uppercase.mjs +24 -0
- package/fesm2022/cmat-pipes-uppercase.mjs.map +1 -0
- package/fesm2022/cmat-services-alert.mjs +207 -0
- package/fesm2022/cmat-services-alert.mjs.map +1 -0
- package/fesm2022/cmat-services-config.mjs +69 -0
- package/fesm2022/cmat-services-config.mjs.map +1 -0
- package/fesm2022/cmat-services-confirmation.mjs +79 -0
- package/fesm2022/cmat-services-confirmation.mjs.map +1 -0
- package/fesm2022/cmat-services-data.mjs +176 -0
- package/fesm2022/cmat-services-data.mjs.map +1 -0
- package/fesm2022/cmat-services-loading.mjs +104 -0
- package/fesm2022/cmat-services-loading.mjs.map +1 -0
- package/fesm2022/cmat-services-local-storage.mjs +29 -0
- package/fesm2022/cmat-services-local-storage.mjs.map +1 -0
- package/fesm2022/cmat-services-media-watcher.mjs +62 -0
- package/fesm2022/cmat-services-media-watcher.mjs.map +1 -0
- package/fesm2022/cmat-services-platform.mjs +53 -0
- package/fesm2022/cmat-services-platform.mjs.map +1 -0
- package/fesm2022/cmat-services-splash-screen.mjs +49 -0
- package/fesm2022/cmat-services-splash-screen.mjs.map +1 -0
- package/fesm2022/cmat-services-title.mjs +53 -0
- package/fesm2022/cmat-services-title.mjs.map +1 -0
- package/fesm2022/cmat-services-translation.mjs +69 -0
- package/fesm2022/cmat-services-translation.mjs.map +1 -0
- package/fesm2022/cmat-services-utils.mjs +398 -0
- package/fesm2022/cmat-services-utils.mjs.map +1 -0
- package/fesm2022/cmat-validators.mjs +39 -0
- package/fesm2022/cmat-validators.mjs.map +1 -0
- package/fesm2022/cmat-version.mjs +17 -0
- package/fesm2022/cmat-version.mjs.map +1 -0
- package/fesm2022/cmat.mjs +4 -0
- package/fesm2022/cmat.mjs.map +1 -0
- package/icons/CSV.svg +3 -0
- package/icons/EXCEL.svg +3 -0
- package/icons/FILE.svg +3 -0
- package/icons/GIF.svg +3 -0
- package/icons/JPG.svg +3 -0
- package/icons/PDF.svg +3 -0
- package/icons/PNG.svg +3 -0
- package/icons/PPT.svg +3 -0
- package/icons/TEXT.svg +3 -0
- package/icons/VIDEO.svg +3 -0
- package/icons/WORD.svg +3 -0
- package/icons/ZIP.svg +3 -0
- package/icons/arrow-cursor.svg +3 -0
- package/icons/material-icons/heroicons-outline.svg +893 -0
- package/icons/material-icons/heroicons-solid.svg +958 -0
- package/icons/material-icons/material-outline.svg +3586 -0
- package/icons/material-icons/material-solid.svg +3586 -0
- package/index.d.ts +5 -0
- package/lib/mock-api/index.d.ts +5 -0
- package/lib/mock-api/mock-api.constants.d.ts +2 -0
- package/lib/mock-api/mock-api.interceptor.d.ts +12 -0
- package/lib/mock-api/mock-api.request-handler.d.ts +18 -0
- package/lib/mock-api/mock-api.service.d.ts +22 -0
- package/lib/mock-api/mock-api.types.d.ts +9 -0
- package/lib/mock-api/mock-api.utils.d.ts +3 -0
- package/lib/mock-api/public-api.d.ts +5 -0
- package/package.json +344 -0
- package/pipes/bytes/bytes.pipe.d.ts +7 -0
- package/pipes/bytes/index.d.ts +5 -0
- package/pipes/bytes/public-api.d.ts +1 -0
- package/pipes/date-format/date-format.pipe.d.ts +7 -0
- package/pipes/date-format/index.d.ts +5 -0
- package/pipes/date-format/public-api.d.ts +1 -0
- package/pipes/find-by-key/find-by-key.pipe.d.ts +7 -0
- package/pipes/find-by-key/index.d.ts +5 -0
- package/pipes/find-by-key/public-api.d.ts +1 -0
- package/pipes/group-by/group-by.pipe.d.ts +7 -0
- package/pipes/group-by/index.d.ts +5 -0
- package/pipes/group-by/public-api.d.ts +1 -0
- package/pipes/keys/index.d.ts +5 -0
- package/pipes/keys/keys.pipe.d.ts +7 -0
- package/pipes/keys/public-api.d.ts +1 -0
- package/pipes/secure/index.d.ts +5 -0
- package/pipes/secure/public-api.d.ts +1 -0
- package/pipes/secure/secure-pipe.d.ts +18 -0
- package/pipes/uppercase/index.d.ts +5 -0
- package/pipes/uppercase/public-api.d.ts +1 -0
- package/pipes/uppercase/uppercase.pipe.d.ts +7 -0
- package/public-api.d.ts +1 -0
- package/services/alert/alert.dialog.d.ts +11 -0
- package/services/alert/alert.message.d.ts +8 -0
- package/services/alert/alert.service.d.ts +37 -0
- package/services/alert/enum.d.ts +12 -0
- package/services/alert/index.d.ts +5 -0
- package/services/alert/public-api.d.ts +4 -0
- package/services/config/config.constants.d.ts +6 -0
- package/services/config/config.service.d.ts +11 -0
- package/services/config/index.d.ts +5 -0
- package/services/config/public-api.d.ts +3 -0
- package/services/config/urlStateConfig.service.d.ts +10 -0
- package/services/confirmation/confirmation.service.d.ts +12 -0
- package/services/confirmation/confirmation.types.d.ts +21 -0
- package/services/confirmation/dialog/dialog.component.d.ts +10 -0
- package/services/confirmation/index.d.ts +5 -0
- package/services/confirmation/public-api.d.ts +2 -0
- package/services/data/data.service.d.ts +20 -0
- package/services/data/index.d.ts +5 -0
- package/services/data/public-api.d.ts +1 -0
- package/services/loading/index.d.ts +5 -0
- package/services/loading/loading.interceptor.d.ts +12 -0
- package/services/loading/loading.service.d.ts +24 -0
- package/services/loading/public-api.d.ts +2 -0
- package/services/local-storage/index.d.ts +5 -0
- package/services/local-storage/local-storage.service.d.ts +8 -0
- package/services/local-storage/public-api.d.ts +1 -0
- package/services/media-watcher/index.d.ts +5 -0
- package/services/media-watcher/media-watcher.service.d.ts +20 -0
- package/services/media-watcher/public-api.d.ts +1 -0
- package/services/platform/index.d.ts +5 -0
- package/services/platform/platform.service.d.ts +9 -0
- package/services/platform/public-api.d.ts +1 -0
- package/services/splash-screen/index.d.ts +5 -0
- package/services/splash-screen/public-api.d.ts +1 -0
- package/services/splash-screen/splash-screen.service.d.ts +14 -0
- package/services/title/index.d.ts +5 -0
- package/services/title/public-api.d.ts +1 -0
- package/services/title/title.service.d.ts +13 -0
- package/services/translation/index.d.ts +5 -0
- package/services/translation/public-api.d.ts +1 -0
- package/services/translation/translation.service.d.ts +20 -0
- package/services/utils/index.d.ts +5 -0
- package/services/utils/public-api.d.ts +1 -0
- package/services/utils/utils.service.d.ts +57 -0
- package/styles/components/input.scss +42 -0
- package/styles/main.scss +9 -0
- package/styles/overrides/angular-material.scss +1403 -0
- package/styles/overrides/fullcalendar.scss +550 -0
- package/styles/overrides/highlightjs.scss +81 -0
- package/styles/styles.scss +3 -0
- package/styles/tailwind.scss +86 -0
- package/styles/themes.scss +164 -0
- package/styles/user-themes.scss +1 -0
- package/tailwind/plugins/icon-size.js +49 -0
- package/tailwind/plugins/theming.js +256 -0
- package/tailwind/plugins/utilities.js +66 -0
- package/tailwind/utils/generate-contrasts.js +29 -0
- package/tailwind/utils/generate-palette.js +100 -0
- package/tailwind/utils/json-to-sass-map.js +67 -0
- package/validators/index.d.ts +5 -0
- package/validators/public-api.d.ts +1 -0
- package/validators/validators.d.ts +5 -0
- package/version/index.d.ts +5 -0
- package/version/public-api.d.ts +1 -0
- package/version/version.d.ts +9 -0
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
export class CmatValidators {
|
|
2
|
+
static isEmptyInputValue(value) {
|
|
3
|
+
return value == null || value.length === 0;
|
|
4
|
+
}
|
|
5
|
+
static mustMatch(controlPath, matchingControlPath) {
|
|
6
|
+
return (formGroup) => {
|
|
7
|
+
// Get the control and matching control
|
|
8
|
+
const control = formGroup.get(controlPath);
|
|
9
|
+
const matchingControl = formGroup.get(matchingControlPath);
|
|
10
|
+
// Return if control or matching control doesn't exist
|
|
11
|
+
if (!control || !matchingControl) {
|
|
12
|
+
return null;
|
|
13
|
+
}
|
|
14
|
+
// Delete the mustMatch error to reset the error on the matching control
|
|
15
|
+
if (matchingControl.hasError('mustMatch')) {
|
|
16
|
+
delete matchingControl.errors?.['mustMatch'];
|
|
17
|
+
matchingControl.updateValueAndValidity();
|
|
18
|
+
}
|
|
19
|
+
// Don't validate empty values on the matching control
|
|
20
|
+
// Don't validate if values are matching
|
|
21
|
+
if (this.isEmptyInputValue(matchingControl.value) || control.value === matchingControl.value) {
|
|
22
|
+
return null;
|
|
23
|
+
}
|
|
24
|
+
// Prepare the validation errors
|
|
25
|
+
const errors = { mustMatch: true };
|
|
26
|
+
// Set the validation error on the matching control
|
|
27
|
+
matchingControl.setErrors(errors);
|
|
28
|
+
// Return the errors
|
|
29
|
+
return errors;
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmFsaWRhdG9ycy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL2NtYXQvdmFsaWRhdG9ycy92YWxpZGF0b3JzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUVBLE1BQU0sT0FBTyxjQUFjO0lBQ3ZCLE1BQU0sQ0FBQyxpQkFBaUIsQ0FBQyxLQUFVO1FBQy9CLE9BQU8sS0FBSyxJQUFJLElBQUksSUFBSSxLQUFLLENBQUMsTUFBTSxLQUFLLENBQUMsQ0FBQztJQUMvQyxDQUFDO0lBRUQsTUFBTSxDQUFDLFNBQVMsQ0FBQyxXQUFtQixFQUFFLG1CQUEyQjtRQUM3RCxPQUFPLENBQUMsU0FBMEIsRUFBMkIsRUFBRTtZQUUzRCx1Q0FBdUM7WUFDdkMsTUFBTSxPQUFPLEdBQUcsU0FBUyxDQUFDLEdBQUcsQ0FBQyxXQUFXLENBQUMsQ0FBQztZQUMzQyxNQUFNLGVBQWUsR0FBRyxTQUFTLENBQUMsR0FBRyxDQUFDLG1CQUFtQixDQUFDLENBQUM7WUFFM0Qsc0RBQXNEO1lBQ3RELElBQUksQ0FBQyxPQUFPLElBQUksQ0FBQyxlQUFlLEVBQUU7Z0JBQzlCLE9BQU8sSUFBSSxDQUFDO2FBQ2Y7WUFFRCx3RUFBd0U7WUFDeEUsSUFBSSxlQUFlLENBQUMsUUFBUSxDQUFDLFdBQVcsQ0FBQyxFQUFFO2dCQUN2QyxPQUFPLGVBQWUsQ0FBQyxNQUFNLEVBQUUsQ0FBQyxXQUFXLENBQUMsQ0FBQztnQkFDN0MsZUFBZSxDQUFDLHNCQUFzQixFQUFFLENBQUM7YUFDNUM7WUFFRCxzREFBc0Q7WUFDdEQsd0NBQXdDO1lBQ3hDLElBQUksSUFBSSxDQUFDLGlCQUFpQixDQUFDLGVBQWUsQ0FBQyxLQUFLLENBQUMsSUFBSSxPQUFPLENBQUMsS0FBSyxLQUFLLGVBQWUsQ0FBQyxLQUFLLEVBQUU7Z0JBQzFGLE9BQU8sSUFBSSxDQUFDO2FBQ2Y7WUFFRCxnQ0FBZ0M7WUFDaEMsTUFBTSxNQUFNLEdBQUcsRUFBRSxTQUFTLEVBQUUsSUFBSSxFQUFFLENBQUM7WUFFbkMsbURBQW1EO1lBQ25ELGVBQWUsQ0FBQyxTQUFTLENBQUMsTUFBTSxDQUFDLENBQUM7WUFFbEMsb0JBQW9CO1lBQ3BCLE9BQU8sTUFBTSxDQUFDO1FBQ2xCLENBQUMsQ0FBQztJQUNOLENBQUM7Q0FDSiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFic3RyYWN0Q29udHJvbCwgVmFsaWRhdGlvbkVycm9ycywgVmFsaWRhdG9yRm4gfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XHJcblxyXG5leHBvcnQgY2xhc3MgQ21hdFZhbGlkYXRvcnMge1xyXG4gICAgc3RhdGljIGlzRW1wdHlJbnB1dFZhbHVlKHZhbHVlOiBhbnkpOiBib29sZWFuIHtcclxuICAgICAgICByZXR1cm4gdmFsdWUgPT0gbnVsbCB8fCB2YWx1ZS5sZW5ndGggPT09IDA7XHJcbiAgICB9XHJcblxyXG4gICAgc3RhdGljIG11c3RNYXRjaChjb250cm9sUGF0aDogc3RyaW5nLCBtYXRjaGluZ0NvbnRyb2xQYXRoOiBzdHJpbmcpOiBWYWxpZGF0b3JGbiB7XHJcbiAgICAgICAgcmV0dXJuIChmb3JtR3JvdXA6IEFic3RyYWN0Q29udHJvbCk6IFZhbGlkYXRpb25FcnJvcnMgfCBudWxsID0+IHtcclxuXHJcbiAgICAgICAgICAgIC8vIEdldCB0aGUgY29udHJvbCBhbmQgbWF0Y2hpbmcgY29udHJvbFxyXG4gICAgICAgICAgICBjb25zdCBjb250cm9sID0gZm9ybUdyb3VwLmdldChjb250cm9sUGF0aCk7XHJcbiAgICAgICAgICAgIGNvbnN0IG1hdGNoaW5nQ29udHJvbCA9IGZvcm1Hcm91cC5nZXQobWF0Y2hpbmdDb250cm9sUGF0aCk7XHJcblxyXG4gICAgICAgICAgICAvLyBSZXR1cm4gaWYgY29udHJvbCBvciBtYXRjaGluZyBjb250cm9sIGRvZXNuJ3QgZXhpc3RcclxuICAgICAgICAgICAgaWYgKCFjb250cm9sIHx8ICFtYXRjaGluZ0NvbnRyb2wpIHtcclxuICAgICAgICAgICAgICAgIHJldHVybiBudWxsO1xyXG4gICAgICAgICAgICB9XHJcblxyXG4gICAgICAgICAgICAvLyBEZWxldGUgdGhlIG11c3RNYXRjaCBlcnJvciB0byByZXNldCB0aGUgZXJyb3Igb24gdGhlIG1hdGNoaW5nIGNvbnRyb2xcclxuICAgICAgICAgICAgaWYgKG1hdGNoaW5nQ29udHJvbC5oYXNFcnJvcignbXVzdE1hdGNoJykpIHtcclxuICAgICAgICAgICAgICAgIGRlbGV0ZSBtYXRjaGluZ0NvbnRyb2wuZXJyb3JzPy5bJ211c3RNYXRjaCddO1xyXG4gICAgICAgICAgICAgICAgbWF0Y2hpbmdDb250cm9sLnVwZGF0ZVZhbHVlQW5kVmFsaWRpdHkoKTtcclxuICAgICAgICAgICAgfVxyXG5cclxuICAgICAgICAgICAgLy8gRG9uJ3QgdmFsaWRhdGUgZW1wdHkgdmFsdWVzIG9uIHRoZSBtYXRjaGluZyBjb250cm9sXHJcbiAgICAgICAgICAgIC8vIERvbid0IHZhbGlkYXRlIGlmIHZhbHVlcyBhcmUgbWF0Y2hpbmdcclxuICAgICAgICAgICAgaWYgKHRoaXMuaXNFbXB0eUlucHV0VmFsdWUobWF0Y2hpbmdDb250cm9sLnZhbHVlKSB8fCBjb250cm9sLnZhbHVlID09PSBtYXRjaGluZ0NvbnRyb2wudmFsdWUpIHtcclxuICAgICAgICAgICAgICAgIHJldHVybiBudWxsO1xyXG4gICAgICAgICAgICB9XHJcblxyXG4gICAgICAgICAgICAvLyBQcmVwYXJlIHRoZSB2YWxpZGF0aW9uIGVycm9yc1xyXG4gICAgICAgICAgICBjb25zdCBlcnJvcnMgPSB7IG11c3RNYXRjaDogdHJ1ZSB9O1xyXG5cclxuICAgICAgICAgICAgLy8gU2V0IHRoZSB2YWxpZGF0aW9uIGVycm9yIG9uIHRoZSBtYXRjaGluZyBjb250cm9sXHJcbiAgICAgICAgICAgIG1hdGNoaW5nQ29udHJvbC5zZXRFcnJvcnMoZXJyb3JzKTtcclxuXHJcbiAgICAgICAgICAgIC8vIFJldHVybiB0aGUgZXJyb3JzXHJcbiAgICAgICAgICAgIHJldHVybiBlcnJvcnM7XHJcbiAgICAgICAgfTtcclxuICAgIH1cclxufVxyXG4iXX0=
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
export * from './public-api';
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY21hdC12ZXJzaW9uLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vcHJvamVjdHMvY21hdC92ZXJzaW9uL2NtYXQtdmVyc2lvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './version';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL2NtYXQvdmVyc2lvbi9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsV0FBVyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi92ZXJzaW9uJztcclxuIl19
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export class Version {
|
|
2
|
+
constructor(version) {
|
|
3
|
+
this.version = version;
|
|
4
|
+
this.full = version;
|
|
5
|
+
this.major = version.split('.')[0];
|
|
6
|
+
this.minor = version.split('.')[1];
|
|
7
|
+
this.patch = version.split('.').slice(2).join('.');
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
export const CMAT_VERSION = new Version('1.0.0').full;
|
|
11
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmVyc2lvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL2NtYXQvdmVyc2lvbi92ZXJzaW9uLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE1BQU0sT0FBTyxPQUFPO0lBT2hCLFlBQW1CLE9BQWU7UUFBZixZQUFPLEdBQVAsT0FBTyxDQUFRO1FBRTlCLElBQUksQ0FBQyxJQUFJLEdBQUcsT0FBTyxDQUFDO1FBQ3BCLElBQUksQ0FBQyxLQUFLLEdBQUcsT0FBTyxDQUFDLEtBQUssQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQztRQUNuQyxJQUFJLENBQUMsS0FBSyxHQUFHLE9BQU8sQ0FBQyxLQUFLLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUM7UUFDbkMsSUFBSSxDQUFDLEtBQUssR0FBRyxPQUFPLENBQUMsS0FBSyxDQUFDLEdBQUcsQ0FBQyxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUM7SUFDdkQsQ0FBQztDQUNKO0FBRUQsTUFBTSxDQUFDLE1BQU0sWUFBWSxHQUFHLElBQUksT0FBTyxDQUFDLE9BQU8sQ0FBQyxDQUFDLElBQUksQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBjbGFzcyBWZXJzaW9uXHJcbntcclxuICAgIHB1YmxpYyByZWFkb25seSBmdWxsOiBzdHJpbmc7XHJcbiAgICBwdWJsaWMgcmVhZG9ubHkgbWFqb3I6IHN0cmluZztcclxuICAgIHB1YmxpYyByZWFkb25seSBtaW5vcjogc3RyaW5nO1xyXG4gICAgcHVibGljIHJlYWRvbmx5IHBhdGNoOiBzdHJpbmc7XHJcblxyXG4gICAgY29uc3RydWN0b3IocHVibGljIHZlcnNpb246IHN0cmluZylcclxuICAgIHtcclxuICAgICAgICB0aGlzLmZ1bGwgPSB2ZXJzaW9uO1xyXG4gICAgICAgIHRoaXMubWFqb3IgPSB2ZXJzaW9uLnNwbGl0KCcuJylbMF07XHJcbiAgICAgICAgdGhpcy5taW5vciA9IHZlcnNpb24uc3BsaXQoJy4nKVsxXTtcclxuICAgICAgICB0aGlzLnBhdGNoID0gdmVyc2lvbi5zcGxpdCgnLicpLnNsaWNlKDIpLmpvaW4oJy4nKTtcclxuICAgIH1cclxufVxyXG5cclxuZXhwb3J0IGNvbnN0IENNQVRfVkVSU0lPTiA9IG5ldyBWZXJzaW9uKCcxLjAuMCcpLmZ1bGw7XHJcbiJdfQ==
|
|
@@ -0,0 +1,466 @@
|
|
|
1
|
+
import { style, state, animate, transition, trigger, keyframes } from '@angular/animations';
|
|
2
|
+
|
|
3
|
+
const dropdown = trigger('dropdown', [
|
|
4
|
+
state('*', style({
|
|
5
|
+
opacity: 0,
|
|
6
|
+
height: 0,
|
|
7
|
+
border: 0,
|
|
8
|
+
padding: 0,
|
|
9
|
+
visibility: 'hidden',
|
|
10
|
+
})),
|
|
11
|
+
state('false', style({
|
|
12
|
+
opacity: 0,
|
|
13
|
+
height: 0,
|
|
14
|
+
border: 0,
|
|
15
|
+
padding: 0,
|
|
16
|
+
visibility: 'hidden',
|
|
17
|
+
})),
|
|
18
|
+
state('true', style({
|
|
19
|
+
opacity: 1,
|
|
20
|
+
height: '*',
|
|
21
|
+
border: '*',
|
|
22
|
+
padding: '*',
|
|
23
|
+
visibility: 'inherit',
|
|
24
|
+
})),
|
|
25
|
+
transition('* => *', animate('250ms ease-out'))
|
|
26
|
+
]);
|
|
27
|
+
|
|
28
|
+
class CmatAnimationCurves {
|
|
29
|
+
static { this.standard = 'cubic-bezier(0.4, 0.0, 0.2, 1)'; }
|
|
30
|
+
static { this.deceleration = 'cubic-bezier(0.0, 0.0, 0.2, 1)'; }
|
|
31
|
+
static { this.acceleration = 'cubic-bezier(0.4, 0.0, 1, 1)'; }
|
|
32
|
+
static { this.sharp = 'cubic-bezier(0.4, 0.0, 0.6, 1)'; }
|
|
33
|
+
}
|
|
34
|
+
class CmatAnimationDurations {
|
|
35
|
+
static { this.complex = '375ms'; }
|
|
36
|
+
static { this.entering = '225ms'; }
|
|
37
|
+
static { this.exiting = '195ms'; }
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
const expandCollapse = trigger('expandCollapse', [
|
|
41
|
+
state('void, collapsed', style({
|
|
42
|
+
height: '0'
|
|
43
|
+
})),
|
|
44
|
+
state('*, expanded', style('*')),
|
|
45
|
+
// Prevent the transition if the state is false
|
|
46
|
+
transition('void <=> false, collapsed <=> false, expanded <=> false', []),
|
|
47
|
+
transition('void <=> *, collapsed <=> expanded', animate('{{timings}}'), {
|
|
48
|
+
params: {
|
|
49
|
+
timings: `${CmatAnimationDurations.entering} ${CmatAnimationCurves.deceleration}`
|
|
50
|
+
}
|
|
51
|
+
})
|
|
52
|
+
]);
|
|
53
|
+
|
|
54
|
+
const fadeIn = trigger('fadeIn', [
|
|
55
|
+
state('void', style({
|
|
56
|
+
opacity: 0
|
|
57
|
+
})),
|
|
58
|
+
state('*', style({
|
|
59
|
+
opacity: 1
|
|
60
|
+
})),
|
|
61
|
+
// Prevent the transition if the state is false
|
|
62
|
+
transition('void => false', []),
|
|
63
|
+
transition('void => *', animate('{{timings}}'), {
|
|
64
|
+
params: {
|
|
65
|
+
timings: `${CmatAnimationDurations.entering} ${CmatAnimationCurves.deceleration}`
|
|
66
|
+
}
|
|
67
|
+
})
|
|
68
|
+
]);
|
|
69
|
+
const fadeInTop = trigger('fadeInTop', [
|
|
70
|
+
state('void', style({
|
|
71
|
+
opacity: 0,
|
|
72
|
+
transform: 'translate3d(0, -100%, 0)'
|
|
73
|
+
})),
|
|
74
|
+
state('*', style({
|
|
75
|
+
opacity: 1,
|
|
76
|
+
transform: 'translate3d(0, 0, 0)'
|
|
77
|
+
})),
|
|
78
|
+
// Prevent the transition if the state is false
|
|
79
|
+
transition('void => false', []),
|
|
80
|
+
transition('void => *', animate('{{timings}}'), {
|
|
81
|
+
params: {
|
|
82
|
+
timings: `${CmatAnimationDurations.entering} ${CmatAnimationCurves.deceleration}`
|
|
83
|
+
}
|
|
84
|
+
})
|
|
85
|
+
]);
|
|
86
|
+
const fadeInBottom = trigger('fadeInBottom', [
|
|
87
|
+
state('void', style({
|
|
88
|
+
opacity: 0,
|
|
89
|
+
transform: 'translate3d(0, 100%, 0)'
|
|
90
|
+
})),
|
|
91
|
+
state('*', style({
|
|
92
|
+
opacity: 1,
|
|
93
|
+
transform: 'translate3d(0, 0, 0)'
|
|
94
|
+
})),
|
|
95
|
+
// Prevent the transition if the state is false
|
|
96
|
+
transition('void => false', []),
|
|
97
|
+
transition('void => *', animate('{{timings}}'), {
|
|
98
|
+
params: {
|
|
99
|
+
timings: `${CmatAnimationDurations.entering} ${CmatAnimationCurves.deceleration}`
|
|
100
|
+
}
|
|
101
|
+
})
|
|
102
|
+
]);
|
|
103
|
+
const fadeInLeft = trigger('fadeInLeft', [
|
|
104
|
+
state('void', style({
|
|
105
|
+
opacity: 0,
|
|
106
|
+
transform: 'translate3d(-100%, 0, 0)'
|
|
107
|
+
})),
|
|
108
|
+
state('*', style({
|
|
109
|
+
opacity: 1,
|
|
110
|
+
transform: 'translate3d(0, 0, 0)'
|
|
111
|
+
})),
|
|
112
|
+
// Prevent the transition if the state is false
|
|
113
|
+
transition('void => false', []),
|
|
114
|
+
transition('void => *', animate('{{timings}}'), {
|
|
115
|
+
params: {
|
|
116
|
+
timings: `${CmatAnimationDurations.entering} ${CmatAnimationCurves.deceleration}`
|
|
117
|
+
}
|
|
118
|
+
})
|
|
119
|
+
]);
|
|
120
|
+
const fadeInRight = trigger('fadeInRight', [
|
|
121
|
+
state('void', style({
|
|
122
|
+
opacity: 0,
|
|
123
|
+
transform: 'translate3d(100%, 0, 0)'
|
|
124
|
+
})),
|
|
125
|
+
state('*', style({
|
|
126
|
+
opacity: 1,
|
|
127
|
+
transform: 'translate3d(0, 0, 0)'
|
|
128
|
+
})),
|
|
129
|
+
// Prevent the transition if the state is false
|
|
130
|
+
transition('void => false', []),
|
|
131
|
+
transition('void => *', animate('{{timings}}'), {
|
|
132
|
+
params: {
|
|
133
|
+
timings: `${CmatAnimationDurations.entering} ${CmatAnimationCurves.deceleration}`
|
|
134
|
+
}
|
|
135
|
+
})
|
|
136
|
+
]);
|
|
137
|
+
const fadeOut = trigger('fadeOut', [
|
|
138
|
+
state('*', style({
|
|
139
|
+
opacity: 1
|
|
140
|
+
})),
|
|
141
|
+
state('void', style({
|
|
142
|
+
opacity: 0
|
|
143
|
+
})),
|
|
144
|
+
// Prevent the transition if the state is false
|
|
145
|
+
transition('false => void', []),
|
|
146
|
+
transition('* => void', animate('{{timings}}'), {
|
|
147
|
+
params: {
|
|
148
|
+
timings: `${CmatAnimationDurations.exiting} ${CmatAnimationCurves.acceleration}`
|
|
149
|
+
}
|
|
150
|
+
})
|
|
151
|
+
]);
|
|
152
|
+
const fadeOutTop = trigger('fadeOutTop', [
|
|
153
|
+
state('*', style({
|
|
154
|
+
opacity: 1,
|
|
155
|
+
transform: 'translate3d(0, 0, 0)'
|
|
156
|
+
})),
|
|
157
|
+
state('void', style({
|
|
158
|
+
opacity: 0,
|
|
159
|
+
transform: 'translate3d(0, -100%, 0)'
|
|
160
|
+
})),
|
|
161
|
+
// Prevent the transition if the state is false
|
|
162
|
+
transition('false => void', []),
|
|
163
|
+
transition('* => void', animate('{{timings}}'), {
|
|
164
|
+
params: {
|
|
165
|
+
timings: `${CmatAnimationDurations.exiting} ${CmatAnimationCurves.acceleration}`
|
|
166
|
+
}
|
|
167
|
+
})
|
|
168
|
+
]);
|
|
169
|
+
const fadeOutBottom = trigger('fadeOutBottom', [
|
|
170
|
+
state('*', style({
|
|
171
|
+
opacity: 1,
|
|
172
|
+
transform: 'translate3d(0, 0, 0)'
|
|
173
|
+
})),
|
|
174
|
+
state('void', style({
|
|
175
|
+
opacity: 0,
|
|
176
|
+
transform: 'translate3d(0, 100%, 0)'
|
|
177
|
+
})),
|
|
178
|
+
// Prevent the transition if the state is false
|
|
179
|
+
transition('false => void', []),
|
|
180
|
+
transition('* => void', animate('{{timings}}'), {
|
|
181
|
+
params: {
|
|
182
|
+
timings: `${CmatAnimationDurations.exiting} ${CmatAnimationCurves.acceleration}`
|
|
183
|
+
}
|
|
184
|
+
})
|
|
185
|
+
]);
|
|
186
|
+
const fadeOutLeft = trigger('fadeOutLeft', [
|
|
187
|
+
state('*', style({
|
|
188
|
+
opacity: 1,
|
|
189
|
+
transform: 'translate3d(0, 0, 0)'
|
|
190
|
+
})),
|
|
191
|
+
state('void', style({
|
|
192
|
+
opacity: 0,
|
|
193
|
+
transform: 'translate3d(-100%, 0, 0)'
|
|
194
|
+
})),
|
|
195
|
+
// Prevent the transition if the state is false
|
|
196
|
+
transition('false => void', []),
|
|
197
|
+
transition('* => void', animate('{{timings}}'), {
|
|
198
|
+
params: {
|
|
199
|
+
timings: `${CmatAnimationDurations.exiting} ${CmatAnimationCurves.acceleration}`
|
|
200
|
+
}
|
|
201
|
+
})
|
|
202
|
+
]);
|
|
203
|
+
const fadeOutRight = trigger('fadeOutRight', [
|
|
204
|
+
state('*', style({
|
|
205
|
+
opacity: 1,
|
|
206
|
+
transform: 'translate3d(0, 0, 0)'
|
|
207
|
+
})),
|
|
208
|
+
state('void', style({
|
|
209
|
+
opacity: 0,
|
|
210
|
+
transform: 'translate3d(100%, 0, 0)'
|
|
211
|
+
})),
|
|
212
|
+
// Prevent the transition if the state is false
|
|
213
|
+
transition('false => void', []),
|
|
214
|
+
transition('* => void', animate('{{timings}}'), {
|
|
215
|
+
params: {
|
|
216
|
+
timings: `${CmatAnimationDurations.exiting} ${CmatAnimationCurves.acceleration}`
|
|
217
|
+
}
|
|
218
|
+
})
|
|
219
|
+
]);
|
|
220
|
+
|
|
221
|
+
const shake = trigger('shake', [
|
|
222
|
+
// Prevent the transition if the state is false
|
|
223
|
+
transition('void => false', []),
|
|
224
|
+
transition('void => *, * => true', [
|
|
225
|
+
animate('{{timings}}', keyframes([
|
|
226
|
+
style({
|
|
227
|
+
transform: 'translate3d(0, 0, 0)',
|
|
228
|
+
offset: 0
|
|
229
|
+
}),
|
|
230
|
+
style({
|
|
231
|
+
transform: 'translate3d(-10px, 0, 0)',
|
|
232
|
+
offset: 0.1
|
|
233
|
+
}),
|
|
234
|
+
style({
|
|
235
|
+
transform: 'translate3d(10px, 0, 0)',
|
|
236
|
+
offset: 0.2
|
|
237
|
+
}),
|
|
238
|
+
style({
|
|
239
|
+
transform: 'translate3d(-10px, 0, 0)',
|
|
240
|
+
offset: 0.3
|
|
241
|
+
}),
|
|
242
|
+
style({
|
|
243
|
+
transform: 'translate3d(10px, 0, 0)',
|
|
244
|
+
offset: 0.4
|
|
245
|
+
}),
|
|
246
|
+
style({
|
|
247
|
+
transform: 'translate3d(-10px, 0, 0)',
|
|
248
|
+
offset: 0.5
|
|
249
|
+
}),
|
|
250
|
+
style({
|
|
251
|
+
transform: 'translate3d(10px, 0, 0)',
|
|
252
|
+
offset: 0.6
|
|
253
|
+
}),
|
|
254
|
+
style({
|
|
255
|
+
transform: 'translate3d(-10px, 0, 0)',
|
|
256
|
+
offset: 0.7
|
|
257
|
+
}),
|
|
258
|
+
style({
|
|
259
|
+
transform: 'translate3d(10px, 0, 0)',
|
|
260
|
+
offset: 0.8
|
|
261
|
+
}),
|
|
262
|
+
style({
|
|
263
|
+
transform: 'translate3d(-10px, 0, 0)',
|
|
264
|
+
offset: 0.9
|
|
265
|
+
}),
|
|
266
|
+
style({
|
|
267
|
+
transform: 'translate3d(0, 0, 0)',
|
|
268
|
+
offset: 1
|
|
269
|
+
})
|
|
270
|
+
]))
|
|
271
|
+
], {
|
|
272
|
+
params: {
|
|
273
|
+
timings: '0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955)'
|
|
274
|
+
}
|
|
275
|
+
})
|
|
276
|
+
]);
|
|
277
|
+
|
|
278
|
+
const slideInTop = trigger('slideInTop', [
|
|
279
|
+
state('void', style({
|
|
280
|
+
transform: 'translate3d(0, -100%, 0)'
|
|
281
|
+
})),
|
|
282
|
+
state('*', style({
|
|
283
|
+
transform: 'translate3d(0, 0, 0)'
|
|
284
|
+
})),
|
|
285
|
+
// Prevent the transition if the state is false
|
|
286
|
+
transition('void => false', []),
|
|
287
|
+
transition('void => *', animate('{{timings}}'), {
|
|
288
|
+
params: {
|
|
289
|
+
timings: `${CmatAnimationDurations.entering} ${CmatAnimationCurves.deceleration}`
|
|
290
|
+
}
|
|
291
|
+
})
|
|
292
|
+
]);
|
|
293
|
+
const slideInBottom = trigger('slideInBottom', [
|
|
294
|
+
state('void', style({
|
|
295
|
+
transform: 'translate3d(0, 100%, 0)'
|
|
296
|
+
})),
|
|
297
|
+
state('*', style({
|
|
298
|
+
transform: 'translate3d(0, 0, 0)'
|
|
299
|
+
})),
|
|
300
|
+
// Prevent the transition if the state is false
|
|
301
|
+
transition('void => false', []),
|
|
302
|
+
transition('void => *', animate('{{timings}}'), {
|
|
303
|
+
params: {
|
|
304
|
+
timings: `${CmatAnimationDurations.entering} ${CmatAnimationCurves.deceleration}`
|
|
305
|
+
}
|
|
306
|
+
})
|
|
307
|
+
]);
|
|
308
|
+
const slideInLeft = trigger('slideInLeft', [
|
|
309
|
+
state('void', style({
|
|
310
|
+
transform: 'translate3d(-100%, 0, 0)'
|
|
311
|
+
})),
|
|
312
|
+
state('*', style({
|
|
313
|
+
transform: 'translate3d(0, 0, 0)'
|
|
314
|
+
})),
|
|
315
|
+
// Prevent the transition if the state is false
|
|
316
|
+
transition('void => false', []),
|
|
317
|
+
transition('void => *', animate('{{timings}}'), {
|
|
318
|
+
params: {
|
|
319
|
+
timings: `${CmatAnimationDurations.entering} ${CmatAnimationCurves.deceleration}`
|
|
320
|
+
}
|
|
321
|
+
})
|
|
322
|
+
]);
|
|
323
|
+
const slideInRight = trigger('slideInRight', [
|
|
324
|
+
state('void', style({
|
|
325
|
+
transform: 'translate3d(100%, 0, 0)'
|
|
326
|
+
})),
|
|
327
|
+
state('*', style({
|
|
328
|
+
transform: 'translate3d(0, 0, 0)'
|
|
329
|
+
})),
|
|
330
|
+
// Prevent the transition if the state is false
|
|
331
|
+
transition('void => false', []),
|
|
332
|
+
transition('void => *', animate('{{timings}}'), {
|
|
333
|
+
params: {
|
|
334
|
+
timings: `${CmatAnimationDurations.entering} ${CmatAnimationCurves.deceleration}`
|
|
335
|
+
}
|
|
336
|
+
})
|
|
337
|
+
]);
|
|
338
|
+
const slideOutTop = trigger('slideOutTop', [
|
|
339
|
+
state('*', style({
|
|
340
|
+
transform: 'translate3d(0, 0, 0)'
|
|
341
|
+
})),
|
|
342
|
+
state('void', style({
|
|
343
|
+
transform: 'translate3d(0, -100%, 0)'
|
|
344
|
+
})),
|
|
345
|
+
// Prevent the transition if the state is false
|
|
346
|
+
transition('false => void', []),
|
|
347
|
+
transition('* => void', animate('{{timings}}'), {
|
|
348
|
+
params: {
|
|
349
|
+
timings: `${CmatAnimationDurations.exiting} ${CmatAnimationCurves.acceleration}`
|
|
350
|
+
}
|
|
351
|
+
})
|
|
352
|
+
]);
|
|
353
|
+
const slideOutBottom = trigger('slideOutBottom', [
|
|
354
|
+
state('*', style({
|
|
355
|
+
transform: 'translate3d(0, 0, 0)'
|
|
356
|
+
})),
|
|
357
|
+
state('void', style({
|
|
358
|
+
transform: 'translate3d(0, 100%, 0)'
|
|
359
|
+
})),
|
|
360
|
+
// Prevent the transition if the state is false
|
|
361
|
+
transition('false => void', []),
|
|
362
|
+
transition('* => void', animate('{{timings}}'), {
|
|
363
|
+
params: {
|
|
364
|
+
timings: `${CmatAnimationDurations.exiting} ${CmatAnimationCurves.acceleration}`
|
|
365
|
+
}
|
|
366
|
+
})
|
|
367
|
+
]);
|
|
368
|
+
const slideOutLeft = trigger('slideOutLeft', [
|
|
369
|
+
state('*', style({
|
|
370
|
+
transform: 'translate3d(0, 0, 0)'
|
|
371
|
+
})),
|
|
372
|
+
state('void', style({
|
|
373
|
+
transform: 'translate3d(-100%, 0, 0)'
|
|
374
|
+
})),
|
|
375
|
+
// Prevent the transition if the state is false
|
|
376
|
+
transition('false => void', []),
|
|
377
|
+
transition('* => void', animate('{{timings}}'), {
|
|
378
|
+
params: {
|
|
379
|
+
timings: `${CmatAnimationDurations.exiting} ${CmatAnimationCurves.acceleration}`
|
|
380
|
+
}
|
|
381
|
+
})
|
|
382
|
+
]);
|
|
383
|
+
const slideOutRight = trigger('slideOutRight', [
|
|
384
|
+
state('*', style({
|
|
385
|
+
transform: 'translate3d(0, 0, 0)'
|
|
386
|
+
})),
|
|
387
|
+
state('void', style({
|
|
388
|
+
transform: 'translate3d(100%, 0, 0)'
|
|
389
|
+
})),
|
|
390
|
+
// Prevent the transition if the state is false
|
|
391
|
+
transition('false => void', []),
|
|
392
|
+
transition('* => void', animate('{{timings}}'), {
|
|
393
|
+
params: {
|
|
394
|
+
timings: `${CmatAnimationDurations.exiting} ${CmatAnimationCurves.acceleration}`
|
|
395
|
+
}
|
|
396
|
+
})
|
|
397
|
+
]);
|
|
398
|
+
|
|
399
|
+
const zoomIn = trigger('zoomIn', [
|
|
400
|
+
state('void', style({
|
|
401
|
+
opacity: 0,
|
|
402
|
+
transform: 'scale(0.5)'
|
|
403
|
+
})),
|
|
404
|
+
state('*', style({
|
|
405
|
+
opacity: 1,
|
|
406
|
+
transform: 'scale(1)'
|
|
407
|
+
})),
|
|
408
|
+
// Prevent the transition if the state is false
|
|
409
|
+
transition('void => false', []),
|
|
410
|
+
transition('void => *', animate('{{timings}}'), {
|
|
411
|
+
params: {
|
|
412
|
+
timings: `${CmatAnimationDurations.entering} ${CmatAnimationCurves.deceleration}`
|
|
413
|
+
}
|
|
414
|
+
})
|
|
415
|
+
]);
|
|
416
|
+
const zoomOut = trigger('zoomOut', [
|
|
417
|
+
state('*', style({
|
|
418
|
+
opacity: 1,
|
|
419
|
+
transform: 'scale(1)'
|
|
420
|
+
})),
|
|
421
|
+
state('void', style({
|
|
422
|
+
opacity: 0,
|
|
423
|
+
transform: 'scale(0.5)'
|
|
424
|
+
})),
|
|
425
|
+
// Prevent the transition if the state is false
|
|
426
|
+
transition('false => void', []),
|
|
427
|
+
transition('* => void', animate('{{timings}}'), {
|
|
428
|
+
params: {
|
|
429
|
+
timings: `${CmatAnimationDurations.exiting} ${CmatAnimationCurves.acceleration}`
|
|
430
|
+
}
|
|
431
|
+
})
|
|
432
|
+
]);
|
|
433
|
+
|
|
434
|
+
const transform = trigger('transform', [
|
|
435
|
+
state('enter', style({
|
|
436
|
+
opacity: 1,
|
|
437
|
+
transform: 'scale(1)',
|
|
438
|
+
})),
|
|
439
|
+
transition('void => *', [
|
|
440
|
+
style({
|
|
441
|
+
opacity: 0,
|
|
442
|
+
transform: 'scale(0)',
|
|
443
|
+
}),
|
|
444
|
+
animate('200ms cubic-bezier(0.25, 0.8, 0.25, 1)'),
|
|
445
|
+
]),
|
|
446
|
+
transition('* => void', [animate('50ms 100ms linear', style({ opacity: 0 }))]),
|
|
447
|
+
]);
|
|
448
|
+
|
|
449
|
+
const cmatAnimations = [
|
|
450
|
+
expandCollapse,
|
|
451
|
+
fadeIn, fadeInTop, fadeInBottom, fadeInLeft, fadeInRight,
|
|
452
|
+
fadeOut, fadeOutTop, fadeOutBottom, fadeOutLeft, fadeOutRight,
|
|
453
|
+
shake,
|
|
454
|
+
slideInTop, slideInBottom, slideInLeft, slideInRight,
|
|
455
|
+
slideOutTop, slideOutBottom, slideOutLeft, slideOutRight,
|
|
456
|
+
zoomIn, zoomOut,
|
|
457
|
+
dropdown,
|
|
458
|
+
transform
|
|
459
|
+
];
|
|
460
|
+
|
|
461
|
+
/**
|
|
462
|
+
* Generated bundle index. Do not edit.
|
|
463
|
+
*/
|
|
464
|
+
|
|
465
|
+
export { cmatAnimations };
|
|
466
|
+
//# sourceMappingURL=cmat-animations.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cmat-animations.mjs","sources":["../../../projects/cmat/animations/drop.ts","../../../projects/cmat/animations/defaults.ts","../../../projects/cmat/animations/expand-collapse.ts","../../../projects/cmat/animations/fade.ts","../../../projects/cmat/animations/shake.ts","../../../projects/cmat/animations/slide.ts","../../../projects/cmat/animations/zoom.ts","../../../projects/cmat/animations/transform.ts","../../../projects/cmat/animations/public-api.ts","../../../projects/cmat/animations/cmat-animations.ts"],"sourcesContent":["import {animate, AnimationTriggerMetadata, state, style, transition, trigger} from '@angular/animations';\n\nexport const dropdown: AnimationTriggerMetadata = trigger(\n 'dropdown', [\n state('*', style({\n opacity: 0,\n height: 0,\n border: 0,\n padding: 0,\n visibility: 'hidden',\n })),\n state('false', style({\n opacity: 0,\n height: 0,\n border: 0,\n padding: 0,\n visibility: 'hidden',\n })),\n state('true', style({\n opacity: 1,\n height: '*',\n border: '*',\n padding: '*',\n visibility: 'inherit',\n })),\n transition('* => *', animate('250ms ease-out'))\n ]\n);\n","export class CmatAnimationCurves {\r\n static standard = 'cubic-bezier(0.4, 0.0, 0.2, 1)';\r\n static deceleration = 'cubic-bezier(0.0, 0.0, 0.2, 1)';\r\n static acceleration = 'cubic-bezier(0.4, 0.0, 1, 1)';\r\n static sharp = 'cubic-bezier(0.4, 0.0, 0.6, 1)';\r\n}\r\n\r\nexport class CmatAnimationDurations {\r\n static complex = '375ms';\r\n static entering = '225ms';\r\n static exiting = '195ms';\r\n}\r\n","import {animate, state, style, transition, trigger} from '@angular/animations';\r\nimport {CmatAnimationCurves, CmatAnimationDurations} from './defaults';\r\n\r\nconst expandCollapse = trigger('expandCollapse',\r\n [\r\n state('void, collapsed',\r\n style({\r\n height: '0'\r\n })\r\n ),\r\n\r\n state('*, expanded',\r\n style('*')\r\n ),\r\n\r\n // Prevent the transition if the state is false\r\n transition('void <=> false, collapsed <=> false, expanded <=> false', []),\r\n\r\n transition('void <=> *, collapsed <=> expanded',\r\n animate('{{timings}}'),\r\n {\r\n params: {\r\n timings: `${CmatAnimationDurations.entering} ${CmatAnimationCurves.deceleration}`\r\n }\r\n }\r\n )\r\n ]\r\n);\r\n\r\nexport {expandCollapse};\r\n","import {animate, state, style, transition, trigger} from '@angular/animations';\r\nimport {CmatAnimationCurves, CmatAnimationDurations} from './defaults';\r\n\r\nconst fadeIn = trigger('fadeIn',\r\n [\r\n state('void',\r\n style({\r\n opacity: 0\r\n })\r\n ),\r\n\r\n state('*',\r\n style({\r\n opacity: 1\r\n })\r\n ),\r\n\r\n // Prevent the transition if the state is false\r\n transition('void => false', []),\r\n\r\n transition('void => *', animate('{{timings}}'),\r\n {\r\n params: {\r\n timings: `${CmatAnimationDurations.entering} ${CmatAnimationCurves.deceleration}`\r\n }\r\n }\r\n )\r\n ]\r\n);\r\n\r\nconst fadeInTop = trigger('fadeInTop',\r\n [\r\n state('void',\r\n style({\r\n opacity: 0,\r\n transform: 'translate3d(0, -100%, 0)'\r\n })\r\n ),\r\n\r\n state('*',\r\n style({\r\n opacity: 1,\r\n transform: 'translate3d(0, 0, 0)'\r\n })\r\n ),\r\n\r\n // Prevent the transition if the state is false\r\n transition('void => false', []),\r\n\r\n transition('void => *', animate('{{timings}}'),\r\n {\r\n params: {\r\n timings: `${CmatAnimationDurations.entering} ${CmatAnimationCurves.deceleration}`\r\n }\r\n }\r\n )\r\n ]\r\n);\r\n\r\nconst fadeInBottom = trigger('fadeInBottom',\r\n [\r\n state('void',\r\n style({\r\n opacity: 0,\r\n transform: 'translate3d(0, 100%, 0)'\r\n })\r\n ),\r\n\r\n state('*',\r\n style({\r\n opacity: 1,\r\n transform: 'translate3d(0, 0, 0)'\r\n })\r\n ),\r\n\r\n // Prevent the transition if the state is false\r\n transition('void => false', []),\r\n\r\n transition('void => *', animate('{{timings}}'),\r\n {\r\n params: {\r\n timings: `${CmatAnimationDurations.entering} ${CmatAnimationCurves.deceleration}`\r\n }\r\n }\r\n )\r\n ]\r\n);\r\n\r\nconst fadeInLeft = trigger('fadeInLeft',\r\n [\r\n state('void',\r\n style({\r\n opacity: 0,\r\n transform: 'translate3d(-100%, 0, 0)'\r\n })\r\n ),\r\n\r\n state('*',\r\n style({\r\n opacity: 1,\r\n transform: 'translate3d(0, 0, 0)'\r\n })\r\n ),\r\n\r\n // Prevent the transition if the state is false\r\n transition('void => false', []),\r\n\r\n transition('void => *', animate('{{timings}}'),\r\n {\r\n params: {\r\n timings: `${CmatAnimationDurations.entering} ${CmatAnimationCurves.deceleration}`\r\n }\r\n }\r\n )\r\n ]\r\n);\r\n\r\nconst fadeInRight = trigger('fadeInRight',\r\n [\r\n state('void',\r\n style({\r\n opacity: 0,\r\n transform: 'translate3d(100%, 0, 0)'\r\n })\r\n ),\r\n\r\n state('*',\r\n style({\r\n opacity: 1,\r\n transform: 'translate3d(0, 0, 0)'\r\n })\r\n ),\r\n\r\n // Prevent the transition if the state is false\r\n transition('void => false', []),\r\n\r\n transition('void => *', animate('{{timings}}'),\r\n {\r\n params: {\r\n timings: `${CmatAnimationDurations.entering} ${CmatAnimationCurves.deceleration}`\r\n }\r\n }\r\n )\r\n ]\r\n);\r\n\r\nconst fadeOut = trigger('fadeOut',\r\n [\r\n state('*',\r\n style({\r\n opacity: 1\r\n })\r\n ),\r\n\r\n state('void',\r\n style({\r\n opacity: 0\r\n })\r\n ),\r\n\r\n // Prevent the transition if the state is false\r\n transition('false => void', []),\r\n\r\n transition('* => void', animate('{{timings}}'),\r\n {\r\n params: {\r\n timings: `${CmatAnimationDurations.exiting} ${CmatAnimationCurves.acceleration}`\r\n }\r\n }\r\n )\r\n ]\r\n);\r\n\r\nconst fadeOutTop = trigger('fadeOutTop',\r\n [\r\n state('*',\r\n style({\r\n opacity: 1,\r\n transform: 'translate3d(0, 0, 0)'\r\n })\r\n ),\r\n\r\n state('void',\r\n style({\r\n opacity: 0,\r\n transform: 'translate3d(0, -100%, 0)'\r\n })\r\n ),\r\n\r\n // Prevent the transition if the state is false\r\n transition('false => void', []),\r\n\r\n transition('* => void', animate('{{timings}}'),\r\n {\r\n params: {\r\n timings: `${CmatAnimationDurations.exiting} ${CmatAnimationCurves.acceleration}`\r\n }\r\n }\r\n )\r\n ]\r\n);\r\n\r\nconst fadeOutBottom = trigger('fadeOutBottom',\r\n [\r\n state('*',\r\n style({\r\n opacity: 1,\r\n transform: 'translate3d(0, 0, 0)'\r\n })\r\n ),\r\n\r\n state('void',\r\n style({\r\n opacity: 0,\r\n transform: 'translate3d(0, 100%, 0)'\r\n })\r\n ),\r\n\r\n // Prevent the transition if the state is false\r\n transition('false => void', []),\r\n\r\n transition('* => void', animate('{{timings}}'),\r\n {\r\n params: {\r\n timings: `${CmatAnimationDurations.exiting} ${CmatAnimationCurves.acceleration}`\r\n }\r\n }\r\n )\r\n ]\r\n);\r\n\r\nconst fadeOutLeft = trigger('fadeOutLeft',\r\n [\r\n state('*',\r\n style({\r\n opacity: 1,\r\n transform: 'translate3d(0, 0, 0)'\r\n })\r\n ),\r\n\r\n state('void',\r\n style({\r\n opacity: 0,\r\n transform: 'translate3d(-100%, 0, 0)'\r\n })\r\n ),\r\n\r\n // Prevent the transition if the state is false\r\n transition('false => void', []),\r\n\r\n transition('* => void', animate('{{timings}}'),\r\n {\r\n params: {\r\n timings: `${CmatAnimationDurations.exiting} ${CmatAnimationCurves.acceleration}`\r\n }\r\n }\r\n )\r\n ]\r\n);\r\n\r\nconst fadeOutRight = trigger('fadeOutRight',\r\n [\r\n state('*',\r\n style({\r\n opacity: 1,\r\n transform: 'translate3d(0, 0, 0)'\r\n })\r\n ),\r\n\r\n state('void',\r\n style({\r\n opacity: 0,\r\n transform: 'translate3d(100%, 0, 0)'\r\n })\r\n ),\r\n\r\n // Prevent the transition if the state is false\r\n transition('false => void', []),\r\n\r\n transition('* => void', animate('{{timings}}'),\r\n {\r\n params: {\r\n timings: `${CmatAnimationDurations.exiting} ${CmatAnimationCurves.acceleration}`\r\n }\r\n }\r\n )\r\n ]\r\n);\r\n\r\nexport {fadeIn, fadeInTop, fadeInBottom, fadeInLeft, fadeInRight, fadeOut, fadeOutTop, fadeOutBottom, fadeOutLeft, fadeOutRight};\r\n","import {animate, keyframes, style, transition, trigger} from '@angular/animations';\r\n\r\nconst shake = trigger('shake',\r\n [\r\n\r\n // Prevent the transition if the state is false\r\n transition('void => false', []),\r\n\r\n transition('void => *, * => true',\r\n [\r\n animate('{{timings}}',\r\n keyframes([\r\n style({\r\n transform: 'translate3d(0, 0, 0)',\r\n offset: 0\r\n }),\r\n style({\r\n transform: 'translate3d(-10px, 0, 0)',\r\n offset: 0.1\r\n }),\r\n style({\r\n transform: 'translate3d(10px, 0, 0)',\r\n offset: 0.2\r\n }),\r\n style({\r\n transform: 'translate3d(-10px, 0, 0)',\r\n offset: 0.3\r\n }),\r\n style({\r\n transform: 'translate3d(10px, 0, 0)',\r\n offset: 0.4\r\n }),\r\n style({\r\n transform: 'translate3d(-10px, 0, 0)',\r\n offset: 0.5\r\n }),\r\n style({\r\n transform: 'translate3d(10px, 0, 0)',\r\n offset: 0.6\r\n }),\r\n style({\r\n transform: 'translate3d(-10px, 0, 0)',\r\n offset: 0.7\r\n }),\r\n style({\r\n transform: 'translate3d(10px, 0, 0)',\r\n offset: 0.8\r\n }),\r\n style({\r\n transform: 'translate3d(-10px, 0, 0)',\r\n offset: 0.9\r\n }),\r\n style({\r\n transform: 'translate3d(0, 0, 0)',\r\n offset: 1\r\n })\r\n ])\r\n )\r\n ],\r\n {\r\n params: {\r\n timings: '0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955)'\r\n }\r\n }\r\n )\r\n ]\r\n);\r\n\r\nexport {shake};\r\n","import {animate, state, style, transition, trigger} from '@angular/animations';\r\nimport {CmatAnimationCurves, CmatAnimationDurations} from './defaults';\r\n\r\nconst slideInTop = trigger('slideInTop',\r\n [\r\n state('void',\r\n style({\r\n transform: 'translate3d(0, -100%, 0)'\r\n })\r\n ),\r\n\r\n state('*',\r\n style({\r\n transform: 'translate3d(0, 0, 0)'\r\n })\r\n ),\r\n\r\n // Prevent the transition if the state is false\r\n transition('void => false', []),\r\n\r\n transition('void => *', animate('{{timings}}'),\r\n {\r\n params: {\r\n timings: `${CmatAnimationDurations.entering} ${CmatAnimationCurves.deceleration}`\r\n }\r\n }\r\n )\r\n ]\r\n);\r\n\r\nconst slideInBottom = trigger('slideInBottom',\r\n [\r\n state('void',\r\n style({\r\n transform: 'translate3d(0, 100%, 0)'\r\n })\r\n ),\r\n\r\n state('*',\r\n style({\r\n transform: 'translate3d(0, 0, 0)'\r\n })\r\n ),\r\n\r\n // Prevent the transition if the state is false\r\n transition('void => false', []),\r\n\r\n transition('void => *', animate('{{timings}}'),\r\n {\r\n params: {\r\n timings: `${CmatAnimationDurations.entering} ${CmatAnimationCurves.deceleration}`\r\n }\r\n }\r\n )\r\n ]\r\n);\r\n\r\nconst slideInLeft = trigger('slideInLeft',\r\n [\r\n state('void',\r\n style({\r\n transform: 'translate3d(-100%, 0, 0)'\r\n })\r\n ),\r\n\r\n state('*',\r\n style({\r\n transform: 'translate3d(0, 0, 0)'\r\n })\r\n ),\r\n\r\n // Prevent the transition if the state is false\r\n transition('void => false', []),\r\n\r\n transition('void => *', animate('{{timings}}'),\r\n {\r\n params: {\r\n timings: `${CmatAnimationDurations.entering} ${CmatAnimationCurves.deceleration}`\r\n }\r\n }\r\n )\r\n ]\r\n);\r\n\r\nconst slideInRight = trigger('slideInRight',\r\n [\r\n state('void',\r\n style({\r\n transform: 'translate3d(100%, 0, 0)'\r\n })\r\n ),\r\n\r\n state('*',\r\n style({\r\n transform: 'translate3d(0, 0, 0)'\r\n })\r\n ),\r\n\r\n // Prevent the transition if the state is false\r\n transition('void => false', []),\r\n\r\n transition('void => *', animate('{{timings}}'),\r\n {\r\n params: {\r\n timings: `${CmatAnimationDurations.entering} ${CmatAnimationCurves.deceleration}`\r\n }\r\n }\r\n )\r\n ]\r\n);\r\n\r\nconst slideOutTop = trigger('slideOutTop',\r\n [\r\n state('*',\r\n style({\r\n transform: 'translate3d(0, 0, 0)'\r\n })\r\n ),\r\n\r\n state('void',\r\n style({\r\n transform: 'translate3d(0, -100%, 0)'\r\n })\r\n ),\r\n\r\n // Prevent the transition if the state is false\r\n transition('false => void', []),\r\n\r\n transition('* => void', animate('{{timings}}'),\r\n {\r\n params: {\r\n timings: `${CmatAnimationDurations.exiting} ${CmatAnimationCurves.acceleration}`\r\n }\r\n }\r\n )\r\n ]\r\n);\r\n\r\nconst slideOutBottom = trigger('slideOutBottom',\r\n [\r\n state('*',\r\n style({\r\n transform: 'translate3d(0, 0, 0)'\r\n })\r\n ),\r\n\r\n state('void',\r\n style({\r\n transform: 'translate3d(0, 100%, 0)'\r\n })\r\n ),\r\n\r\n // Prevent the transition if the state is false\r\n transition('false => void', []),\r\n\r\n transition('* => void', animate('{{timings}}'),\r\n {\r\n params: {\r\n timings: `${CmatAnimationDurations.exiting} ${CmatAnimationCurves.acceleration}`\r\n }\r\n }\r\n )\r\n ]\r\n);\r\n\r\nconst slideOutLeft = trigger('slideOutLeft',\r\n [\r\n state('*',\r\n style({\r\n transform: 'translate3d(0, 0, 0)'\r\n })\r\n ),\r\n\r\n state('void',\r\n style({\r\n transform: 'translate3d(-100%, 0, 0)'\r\n })\r\n ),\r\n\r\n // Prevent the transition if the state is false\r\n transition('false => void', []),\r\n\r\n transition('* => void', animate('{{timings}}'),\r\n {\r\n params: {\r\n timings: `${CmatAnimationDurations.exiting} ${CmatAnimationCurves.acceleration}`\r\n }\r\n }\r\n )\r\n ]\r\n);\r\n\r\nconst slideOutRight = trigger('slideOutRight',\r\n [\r\n state('*',\r\n style({\r\n transform: 'translate3d(0, 0, 0)'\r\n })\r\n ),\r\n\r\n state('void',\r\n style({\r\n transform: 'translate3d(100%, 0, 0)'\r\n })\r\n ),\r\n\r\n // Prevent the transition if the state is false\r\n transition('false => void', []),\r\n\r\n transition('* => void', animate('{{timings}}'),\r\n {\r\n params: {\r\n timings: `${CmatAnimationDurations.exiting} ${CmatAnimationCurves.acceleration}`\r\n }\r\n }\r\n )\r\n ]\r\n);\r\n\r\nexport {slideInTop, slideInBottom, slideInLeft, slideInRight, slideOutTop, slideOutBottom, slideOutLeft, slideOutRight};\r\n","import {animate, state, style, transition, trigger} from '@angular/animations';\r\nimport {CmatAnimationCurves, CmatAnimationDurations} from './defaults';\r\n\r\nconst zoomIn = trigger('zoomIn',\r\n [\r\n\r\n state('void',\r\n style({\r\n opacity: 0,\r\n transform: 'scale(0.5)'\r\n })\r\n ),\r\n\r\n state('*',\r\n style({\r\n opacity: 1,\r\n transform: 'scale(1)'\r\n })\r\n ),\r\n\r\n // Prevent the transition if the state is false\r\n transition('void => false', []),\r\n\r\n transition('void => *', animate('{{timings}}'),\r\n {\r\n params: {\r\n timings: `${CmatAnimationDurations.entering} ${CmatAnimationCurves.deceleration}`\r\n }\r\n }\r\n )\r\n ]\r\n);\r\n\r\nconst zoomOut = trigger('zoomOut',\r\n [\r\n\r\n state('*',\r\n style({\r\n opacity: 1,\r\n transform: 'scale(1)'\r\n })\r\n ),\r\n\r\n state('void',\r\n style({\r\n opacity: 0,\r\n transform: 'scale(0.5)'\r\n })\r\n ),\r\n\r\n // Prevent the transition if the state is false\r\n transition('false => void', []),\r\n\r\n transition('* => void', animate('{{timings}}'),\r\n {\r\n params: {\r\n timings: `${CmatAnimationDurations.exiting} ${CmatAnimationCurves.acceleration}`\r\n }\r\n }\r\n )\r\n ]\r\n);\r\n\r\nexport {zoomIn, zoomOut};\r\n\r\n","import {animate, AnimationTriggerMetadata, state, style, transition, trigger} from '@angular/animations';\r\n\r\nexport const transform: AnimationTriggerMetadata = trigger('transform', [\r\n state(\r\n 'enter',\r\n style({\r\n opacity: 1,\r\n transform: 'scale(1)',\r\n })\r\n ),\r\n transition('void => *', [\r\n style({\r\n opacity: 0,\r\n transform: 'scale(0)',\r\n }),\r\n animate('200ms cubic-bezier(0.25, 0.8, 0.25, 1)'),\r\n ]),\r\n transition('* => void', [animate('50ms 100ms linear', style({opacity: 0}))]),\r\n]);\r\n","import {dropdown} from './drop';\r\nimport {expandCollapse} from './expand-collapse';\r\nimport {\r\n fadeIn,\r\n fadeInBottom,\r\n fadeInLeft,\r\n fadeInRight,\r\n fadeInTop,\r\n fadeOut,\r\n fadeOutBottom,\r\n fadeOutLeft,\r\n fadeOutRight,\r\n fadeOutTop\r\n} from './fade';\r\nimport {shake} from './shake';\r\nimport {\r\n slideInBottom,\r\n slideInLeft,\r\n slideInRight,\r\n slideInTop,\r\n slideOutBottom,\r\n slideOutLeft,\r\n slideOutRight,\r\n slideOutTop\r\n} from './slide';\r\nimport {zoomIn, zoomOut} from './zoom';\r\nimport {transform} from './transform';\r\n\r\nexport const cmatAnimations = [\r\n expandCollapse,\r\n fadeIn, fadeInTop, fadeInBottom, fadeInLeft, fadeInRight,\r\n fadeOut, fadeOutTop, fadeOutBottom, fadeOutLeft, fadeOutRight,\r\n shake,\r\n slideInTop, slideInBottom, slideInLeft, slideInRight,\r\n slideOutTop, slideOutBottom, slideOutLeft, slideOutRight,\r\n zoomIn, zoomOut,\r\n dropdown,\r\n transform\r\n];\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|