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
package/components/transfer-picker/transfer-picker-target/transfer-picker-target.component.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { CmatTransferItemFlatNode } from '../interface';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CmatTransferPickerTargetComponent {
|
|
5
|
+
selectedList: Array<CmatTransferItemFlatNode>;
|
|
6
|
+
clearItemChange: EventEmitter<CmatTransferItemFlatNode>;
|
|
7
|
+
constructor();
|
|
8
|
+
clearItem(item: CmatTransferItemFlatNode): void;
|
|
9
|
+
trackByFn(index: number, item: CmatTransferItemFlatNode): any;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CmatTransferPickerTargetComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CmatTransferPickerTargetComponent, "cmat-transfer-picker-target", ["cmatTransferPickerTarget"], { "selectedList": { "alias": "selectedList"; "required": false; }; }, { "clearItemChange": "clearItemChange"; }, never, never, true, never>;
|
|
12
|
+
}
|
package/components/transfer-picker/transfer-picker-target/transfer-picker-target.component.scss
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
.transfer-picker-target {
|
|
2
|
+
@apply h-full p-0 shadow bg-card;
|
|
3
|
+
width: 276px;
|
|
4
|
+
|
|
5
|
+
.mat-mdc-card-header {
|
|
6
|
+
margin-bottom: -8px;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
&-title {
|
|
10
|
+
@apply text-lg mb-0;
|
|
11
|
+
padding: 12px 0;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
&-item {
|
|
15
|
+
@apply w-full;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
&-scroll-wrapper {
|
|
19
|
+
height: 356px;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
&-empty {
|
|
23
|
+
@apply text-center;
|
|
24
|
+
margin-top: 20px;
|
|
25
|
+
color: rgba(0,0,0,0.25);
|
|
26
|
+
}
|
|
27
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { CmatTransferFilterItem, CmatTransferItemFlatNode, CmatTransferItemNode } from './interface';
|
|
3
|
+
import { CmatTransferPickerService } from './transfer-picker.service';
|
|
4
|
+
import { CmatTransferPickerSourceComponent } from './transfer-picker-source/transfer-picker-source.component';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class CmatTransferPickerComponent implements OnInit, AfterViewInit {
|
|
7
|
+
private _service;
|
|
8
|
+
private _changeDetectorRef;
|
|
9
|
+
title: string;
|
|
10
|
+
filterable: boolean;
|
|
11
|
+
searchable: boolean;
|
|
12
|
+
searchPlaceholder: string;
|
|
13
|
+
dataSource: Array<CmatTransferItemNode>;
|
|
14
|
+
filters: Array<CmatTransferFilterItem>;
|
|
15
|
+
selectedValues: Array<string>;
|
|
16
|
+
selectChange: EventEmitter<Array<CmatTransferItemFlatNode>>;
|
|
17
|
+
source: CmatTransferPickerSourceComponent;
|
|
18
|
+
selectedList: Array<CmatTransferItemFlatNode>;
|
|
19
|
+
constructor(_service: CmatTransferPickerService, _changeDetectorRef: ChangeDetectorRef);
|
|
20
|
+
ngOnInit(): void;
|
|
21
|
+
ngAfterViewInit(): void;
|
|
22
|
+
pick(): void;
|
|
23
|
+
reset(): void;
|
|
24
|
+
onClearItemChange(item: CmatTransferItemFlatNode): void;
|
|
25
|
+
private _emitterChange;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CmatTransferPickerComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CmatTransferPickerComponent, "cmat-transfer-picker", ["cmatTransferPicker"], { "title": { "alias": "title"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "searchable": { "alias": "searchable"; "required": false; }; "searchPlaceholder": { "alias": "searchPlaceholder"; "required": false; }; "dataSource": { "alias": "dataSource"; "required": false; }; "filters": { "alias": "filters"; "required": false; }; "selectedValues": { "alias": "selectedValues"; "required": false; }; }, { "selectChange": "selectChange"; }, never, never, true, never>;
|
|
28
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { BehaviorSubject } from 'rxjs';
|
|
2
|
+
import { CmatSourceOptions, CmatTransferFilterData, CmatTransferFilterItem, CmatTransferItemNode } from './interface';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CmatTransferPickerService {
|
|
5
|
+
dataSourceChange: BehaviorSubject<Array<CmatTransferItemNode>>;
|
|
6
|
+
filtersChange: BehaviorSubject<Array<CmatTransferFilterItem>>;
|
|
7
|
+
sourceOptionsChange: BehaviorSubject<CmatSourceOptions | void>;
|
|
8
|
+
selectedValuesChange: BehaviorSubject<Array<string>>;
|
|
9
|
+
private _dataSource;
|
|
10
|
+
private _filterData;
|
|
11
|
+
private _keyword;
|
|
12
|
+
private _originalDataSource;
|
|
13
|
+
private _filteredDataSource;
|
|
14
|
+
private _compareMap;
|
|
15
|
+
private _conditionMap;
|
|
16
|
+
constructor();
|
|
17
|
+
get dataSource(): Array<CmatTransferItemNode>;
|
|
18
|
+
set dataSource(data: Array<CmatTransferItemNode>);
|
|
19
|
+
set sourceOptions(value: CmatSourceOptions);
|
|
20
|
+
set selectedValues(value: Array<string>);
|
|
21
|
+
filterDataSource({ filterData, keyword }: {
|
|
22
|
+
filterData?: CmatTransferFilterData;
|
|
23
|
+
keyword?: string;
|
|
24
|
+
}): void;
|
|
25
|
+
resetDataSource(): void;
|
|
26
|
+
private _filterDataSourceByType;
|
|
27
|
+
private _setFilteredDataSourceByFilters;
|
|
28
|
+
private _setFilteredDataSourceByKeyword;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CmatTransferPickerService, never>;
|
|
30
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CmatTransferPickerService>;
|
|
31
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef, OnDestroy, OnInit, Renderer2 } from '@angular/core';
|
|
2
|
+
import { ScrollService } from './scroll.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CmatAnimationOnScrollDirective implements OnInit, OnDestroy, AfterViewInit {
|
|
5
|
+
private elementRef;
|
|
6
|
+
private renderer;
|
|
7
|
+
private scroll;
|
|
8
|
+
animationName: string | null;
|
|
9
|
+
offset: number;
|
|
10
|
+
useScroll?: boolean;
|
|
11
|
+
threshold?: number;
|
|
12
|
+
private _offsetTop;
|
|
13
|
+
private _isVisible;
|
|
14
|
+
private _winHeight;
|
|
15
|
+
private _scrollSub;
|
|
16
|
+
private _resizeSub;
|
|
17
|
+
constructor(elementRef: ElementRef, renderer: Renderer2, scroll: ScrollService);
|
|
18
|
+
private get id();
|
|
19
|
+
ngOnInit(): void;
|
|
20
|
+
ngAfterViewInit(): void;
|
|
21
|
+
ngOnDestroy(): void;
|
|
22
|
+
private manageVisibility;
|
|
23
|
+
private addAnimationClass;
|
|
24
|
+
private setClass;
|
|
25
|
+
private getWinHeight;
|
|
26
|
+
private getOffsetTop;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CmatAnimationOnScrollDirective, never>;
|
|
28
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CmatAnimationOnScrollDirective, "[cmatAnimateOnScroll]", never, { "animationName": { "alias": "animationName"; "required": false; }; "offset": { "alias": "offset"; "required": false; }; "useScroll": { "alias": "useScroll"; "required": false; }; "threshold": { "alias": "threshold"; "required": false; }; }, {}, never, never, true, never>;
|
|
29
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './animate-on-scroll.directive';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { OnDestroy } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ScrollService implements OnDestroy {
|
|
5
|
+
scrollObs: Observable<any>;
|
|
6
|
+
resizeObs: Observable<any>;
|
|
7
|
+
pos: number;
|
|
8
|
+
private _scrollSub;
|
|
9
|
+
private _resizeSub;
|
|
10
|
+
constructor();
|
|
11
|
+
ngOnDestroy(): void;
|
|
12
|
+
private manageScrollPos;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ScrollService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ScrollService>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { FocusableOption } from '@angular/cdk/a11y';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class CmatAutofocusDirective implements FocusableOption {
|
|
5
|
+
element: ElementRef;
|
|
6
|
+
constructor(element: ElementRef);
|
|
7
|
+
focus(): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CmatAutofocusDirective, never>;
|
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CmatAutofocusDirective, "[cmatAutofocus]", never, {}, {}, never, never, true, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './autofocus.directive';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { Subject } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare abstract class AbstractDebounceDirective implements OnInit, OnDestroy {
|
|
5
|
+
debounceTime: number;
|
|
6
|
+
emitChanged: EventEmitter<any>;
|
|
7
|
+
emitEvent$: Subject<any>;
|
|
8
|
+
subscription$: Subject<void>;
|
|
9
|
+
constructor();
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
emitChange(value: any): void;
|
|
12
|
+
ngOnDestroy(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AbstractDebounceDirective, never>;
|
|
14
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractDebounceDirective, never, never, { "debounceTime": { "alias": "debounceTime"; "required": false; }; }, { "emitChanged": "emitChanged"; }, never, never, false, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { AbstractDebounceDirective } from './abstract-debounce.directive';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CmatDebounceClickDirective extends AbstractDebounceDirective {
|
|
4
|
+
constructor();
|
|
5
|
+
onKeyUp(event: any): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CmatDebounceClickDirective, never>;
|
|
7
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CmatDebounceClickDirective, "[cmatDebounceClick]", never, {}, {}, never, never, true, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { AbstractDebounceDirective } from './abstract-debounce.directive';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CmatDebounceKeyupDirective extends AbstractDebounceDirective {
|
|
4
|
+
constructor();
|
|
5
|
+
onKeyUp(event: any): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CmatDebounceKeyupDirective, never>;
|
|
7
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CmatDebounceKeyupDirective, "input[cmatDebounceKeyUp]", never, {}, {}, never, never, true, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { ElementRef, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CmatDigitOnlyDirective implements OnChanges {
|
|
4
|
+
el: ElementRef;
|
|
5
|
+
decimal: boolean;
|
|
6
|
+
decimalSeparator: string;
|
|
7
|
+
allowNegatives: boolean;
|
|
8
|
+
allowPaste: boolean;
|
|
9
|
+
negativeSign: string;
|
|
10
|
+
min: number;
|
|
11
|
+
max: number;
|
|
12
|
+
pattern?: string | RegExp;
|
|
13
|
+
inputElement: HTMLInputElement;
|
|
14
|
+
private _regex;
|
|
15
|
+
private _hasDecimalPoint;
|
|
16
|
+
private _hasNegativeSign;
|
|
17
|
+
private _navigationKeys;
|
|
18
|
+
constructor(el: ElementRef);
|
|
19
|
+
onBeforeInput(e: InputEvent): any;
|
|
20
|
+
onKeyDown(e: KeyboardEvent): any;
|
|
21
|
+
onPaste(event: any): void;
|
|
22
|
+
onDrop(event: DragEvent): void;
|
|
23
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
24
|
+
private _pasteData;
|
|
25
|
+
private _insertAtCursor;
|
|
26
|
+
private _triggerEvent;
|
|
27
|
+
private _sanitizeInput;
|
|
28
|
+
private _getNegativeSignRegExp;
|
|
29
|
+
private _isValidDecimal;
|
|
30
|
+
private _getSelection;
|
|
31
|
+
private _forecastValue;
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CmatDigitOnlyDirective, never>;
|
|
33
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CmatDigitOnlyDirective, "[cmatDigitOnly]", never, { "decimal": { "alias": "decimal"; "required": false; }; "decimalSeparator": { "alias": "decimalSeparator"; "required": false; }; "allowNegatives": { "alias": "allowNegatives"; "required": false; }; "allowPaste": { "alias": "allowPaste"; "required": false; }; "negativeSign": { "alias": "negativeSign"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; }, {}, never, never, true, never>;
|
|
34
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ElementRef, OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CmatMaskDirective implements OnInit {
|
|
4
|
+
el: ElementRef;
|
|
5
|
+
inputElement: HTMLInputElement;
|
|
6
|
+
regex: RegExp;
|
|
7
|
+
private _navigationKeys;
|
|
8
|
+
constructor(el: ElementRef);
|
|
9
|
+
onKeyDown(e: KeyboardEvent): void;
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
private _forecastValue;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CmatMaskDirective, never>;
|
|
13
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CmatMaskDirective, "[cmatMask]", never, {}, {}, never, never, true, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Validator, AbstractControl } from '@angular/forms';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CmatEqualValidatorDirective implements Validator {
|
|
4
|
+
private _validateEqual;
|
|
5
|
+
private _reverse;
|
|
6
|
+
constructor(_validateEqual: string, _reverse: string);
|
|
7
|
+
private static _validateNoReverse;
|
|
8
|
+
private static _validateReverse;
|
|
9
|
+
validate(c: AbstractControl): {
|
|
10
|
+
[key: string]: any;
|
|
11
|
+
} | null;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CmatEqualValidatorDirective, [{ attribute: "cmatValidateEqual"; }, { attribute: "reverse"; }]>;
|
|
13
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CmatEqualValidatorDirective, "[cmatValidateEqual][formControlName],[cmatValidateEqual][formControl],[cmatValidateEqual][ngModel]", never, {}, {}, never, never, true, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './equal-validator.directive';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
export * from './public-api';
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY21hdC1hbmltYXRpb25zLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vcHJvamVjdHMvY21hdC9hbmltYXRpb25zL2NtYXQtYW5pbWF0aW9ucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuIl19
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export class CmatAnimationCurves {
|
|
2
|
+
static { this.standard = 'cubic-bezier(0.4, 0.0, 0.2, 1)'; }
|
|
3
|
+
static { this.deceleration = 'cubic-bezier(0.0, 0.0, 0.2, 1)'; }
|
|
4
|
+
static { this.acceleration = 'cubic-bezier(0.4, 0.0, 1, 1)'; }
|
|
5
|
+
static { this.sharp = 'cubic-bezier(0.4, 0.0, 0.6, 1)'; }
|
|
6
|
+
}
|
|
7
|
+
export class CmatAnimationDurations {
|
|
8
|
+
static { this.complex = '375ms'; }
|
|
9
|
+
static { this.entering = '225ms'; }
|
|
10
|
+
static { this.exiting = '195ms'; }
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVmYXVsdHMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9jbWF0L2FuaW1hdGlvbnMvZGVmYXVsdHMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsTUFBTSxPQUFPLG1CQUFtQjthQUNyQixhQUFRLEdBQUcsZ0NBQWdDLENBQUM7YUFDNUMsaUJBQVksR0FBRyxnQ0FBZ0MsQ0FBQzthQUNoRCxpQkFBWSxHQUFHLDhCQUE4QixDQUFDO2FBQzlDLFVBQUssR0FBRyxnQ0FBZ0MsQ0FBQzs7QUFHcEQsTUFBTSxPQUFPLHNCQUFzQjthQUN4QixZQUFPLEdBQUcsT0FBTyxDQUFDO2FBQ2xCLGFBQVEsR0FBRyxPQUFPLENBQUM7YUFDbkIsWUFBTyxHQUFHLE9BQU8sQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBjbGFzcyBDbWF0QW5pbWF0aW9uQ3VydmVzIHtcclxuICAgIHN0YXRpYyBzdGFuZGFyZCA9ICdjdWJpYy1iZXppZXIoMC40LCAwLjAsIDAuMiwgMSknO1xyXG4gICAgc3RhdGljIGRlY2VsZXJhdGlvbiA9ICdjdWJpYy1iZXppZXIoMC4wLCAwLjAsIDAuMiwgMSknO1xyXG4gICAgc3RhdGljIGFjY2VsZXJhdGlvbiA9ICdjdWJpYy1iZXppZXIoMC40LCAwLjAsIDEsIDEpJztcclxuICAgIHN0YXRpYyBzaGFycCA9ICdjdWJpYy1iZXppZXIoMC40LCAwLjAsIDAuNiwgMSknO1xyXG59XHJcblxyXG5leHBvcnQgY2xhc3MgQ21hdEFuaW1hdGlvbkR1cmF0aW9ucyB7XHJcbiAgICBzdGF0aWMgY29tcGxleCA9ICczNzVtcyc7XHJcbiAgICBzdGF0aWMgZW50ZXJpbmcgPSAnMjI1bXMnO1xyXG4gICAgc3RhdGljIGV4aXRpbmcgPSAnMTk1bXMnO1xyXG59XHJcbiJdfQ==
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { animate, state, style, transition, trigger } from '@angular/animations';
|
|
2
|
+
export const dropdown = trigger('dropdown', [
|
|
3
|
+
state('*', style({
|
|
4
|
+
opacity: 0,
|
|
5
|
+
height: 0,
|
|
6
|
+
border: 0,
|
|
7
|
+
padding: 0,
|
|
8
|
+
visibility: 'hidden',
|
|
9
|
+
})),
|
|
10
|
+
state('false', style({
|
|
11
|
+
opacity: 0,
|
|
12
|
+
height: 0,
|
|
13
|
+
border: 0,
|
|
14
|
+
padding: 0,
|
|
15
|
+
visibility: 'hidden',
|
|
16
|
+
})),
|
|
17
|
+
state('true', style({
|
|
18
|
+
opacity: 1,
|
|
19
|
+
height: '*',
|
|
20
|
+
border: '*',
|
|
21
|
+
padding: '*',
|
|
22
|
+
visibility: 'inherit',
|
|
23
|
+
})),
|
|
24
|
+
transition('* => *', animate('250ms ease-out'))
|
|
25
|
+
]);
|
|
26
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZHJvcC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL2NtYXQvYW5pbWF0aW9ucy9kcm9wLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxPQUFPLEVBQTRCLEtBQUssRUFBRSxLQUFLLEVBQUUsVUFBVSxFQUFFLE9BQU8sRUFBQyxNQUFNLHFCQUFxQixDQUFDO0FBRXpHLE1BQU0sQ0FBQyxNQUFNLFFBQVEsR0FBNkIsT0FBTyxDQUNyRCxVQUFVLEVBQUU7SUFDUixLQUFLLENBQUMsR0FBRyxFQUFFLEtBQUssQ0FBQztRQUNiLE9BQU8sRUFBRSxDQUFDO1FBQ1YsTUFBTSxFQUFFLENBQUM7UUFDVCxNQUFNLEVBQUUsQ0FBQztRQUNULE9BQU8sRUFBRSxDQUFDO1FBQ1YsVUFBVSxFQUFFLFFBQVE7S0FDdkIsQ0FBQyxDQUFDO0lBQ0gsS0FBSyxDQUFDLE9BQU8sRUFBRSxLQUFLLENBQUM7UUFDakIsT0FBTyxFQUFFLENBQUM7UUFDVixNQUFNLEVBQUUsQ0FBQztRQUNULE1BQU0sRUFBRSxDQUFDO1FBQ1QsT0FBTyxFQUFFLENBQUM7UUFDVixVQUFVLEVBQUUsUUFBUTtLQUN2QixDQUFDLENBQUM7SUFDSCxLQUFLLENBQUMsTUFBTSxFQUFFLEtBQUssQ0FBQztRQUNoQixPQUFPLEVBQUUsQ0FBQztRQUNWLE1BQU0sRUFBRSxHQUFHO1FBQ1gsTUFBTSxFQUFFLEdBQUc7UUFDWCxPQUFPLEVBQUUsR0FBRztRQUNaLFVBQVUsRUFBRSxTQUFTO0tBQ3hCLENBQUMsQ0FBQztJQUNILFVBQVUsQ0FBQyxRQUFRLEVBQUUsT0FBTyxDQUFDLGdCQUFnQixDQUFDLENBQUM7Q0FDbEQsQ0FDSixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHthbmltYXRlLCBBbmltYXRpb25UcmlnZ2VyTWV0YWRhdGEsIHN0YXRlLCBzdHlsZSwgdHJhbnNpdGlvbiwgdHJpZ2dlcn0gZnJvbSAnQGFuZ3VsYXIvYW5pbWF0aW9ucyc7XG5cbmV4cG9ydCBjb25zdCBkcm9wZG93bjogQW5pbWF0aW9uVHJpZ2dlck1ldGFkYXRhID0gdHJpZ2dlcihcbiAgICAnZHJvcGRvd24nLCBbXG4gICAgICAgIHN0YXRlKCcqJywgc3R5bGUoe1xuICAgICAgICAgICAgb3BhY2l0eTogMCxcbiAgICAgICAgICAgIGhlaWdodDogMCxcbiAgICAgICAgICAgIGJvcmRlcjogMCxcbiAgICAgICAgICAgIHBhZGRpbmc6IDAsXG4gICAgICAgICAgICB2aXNpYmlsaXR5OiAnaGlkZGVuJyxcbiAgICAgICAgfSkpLFxuICAgICAgICBzdGF0ZSgnZmFsc2UnLCBzdHlsZSh7XG4gICAgICAgICAgICBvcGFjaXR5OiAwLFxuICAgICAgICAgICAgaGVpZ2h0OiAwLFxuICAgICAgICAgICAgYm9yZGVyOiAwLFxuICAgICAgICAgICAgcGFkZGluZzogMCxcbiAgICAgICAgICAgIHZpc2liaWxpdHk6ICdoaWRkZW4nLFxuICAgICAgICB9KSksXG4gICAgICAgIHN0YXRlKCd0cnVlJywgc3R5bGUoe1xuICAgICAgICAgICAgb3BhY2l0eTogMSxcbiAgICAgICAgICAgIGhlaWdodDogJyonLFxuICAgICAgICAgICAgYm9yZGVyOiAnKicsXG4gICAgICAgICAgICBwYWRkaW5nOiAnKicsXG4gICAgICAgICAgICB2aXNpYmlsaXR5OiAnaW5oZXJpdCcsXG4gICAgICAgIH0pKSxcbiAgICAgICAgdHJhbnNpdGlvbignKiA9PiAqJywgYW5pbWF0ZSgnMjUwbXMgZWFzZS1vdXQnKSlcbiAgICBdXG4pO1xuIl19
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { animate, state, style, transition, trigger } from '@angular/animations';
|
|
2
|
+
import { CmatAnimationCurves, CmatAnimationDurations } from './defaults';
|
|
3
|
+
const expandCollapse = trigger('expandCollapse', [
|
|
4
|
+
state('void, collapsed', style({
|
|
5
|
+
height: '0'
|
|
6
|
+
})),
|
|
7
|
+
state('*, expanded', style('*')),
|
|
8
|
+
// Prevent the transition if the state is false
|
|
9
|
+
transition('void <=> false, collapsed <=> false, expanded <=> false', []),
|
|
10
|
+
transition('void <=> *, collapsed <=> expanded', animate('{{timings}}'), {
|
|
11
|
+
params: {
|
|
12
|
+
timings: `${CmatAnimationDurations.entering} ${CmatAnimationCurves.deceleration}`
|
|
13
|
+
}
|
|
14
|
+
})
|
|
15
|
+
]);
|
|
16
|
+
export { expandCollapse };
|
|
17
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXhwYW5kLWNvbGxhcHNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vcHJvamVjdHMvY21hdC9hbmltYXRpb25zL2V4cGFuZC1jb2xsYXBzZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsT0FBTyxFQUFFLEtBQUssRUFBRSxLQUFLLEVBQUUsVUFBVSxFQUFFLE9BQU8sRUFBQyxNQUFNLHFCQUFxQixDQUFDO0FBQy9FLE9BQU8sRUFBQyxtQkFBbUIsRUFBRSxzQkFBc0IsRUFBQyxNQUFNLFlBQVksQ0FBQztBQUV2RSxNQUFNLGNBQWMsR0FBRyxPQUFPLENBQUMsZ0JBQWdCLEVBQzNDO0lBQ0ksS0FBSyxDQUFDLGlCQUFpQixFQUNuQixLQUFLLENBQUM7UUFDRixNQUFNLEVBQUUsR0FBRztLQUNkLENBQUMsQ0FDTDtJQUVELEtBQUssQ0FBQyxhQUFhLEVBQ2YsS0FBSyxDQUFDLEdBQUcsQ0FBQyxDQUNiO0lBRUQsK0NBQStDO0lBQy9DLFVBQVUsQ0FBQyx5REFBeUQsRUFBRSxFQUFFLENBQUM7SUFFekUsVUFBVSxDQUFDLG9DQUFvQyxFQUMzQyxPQUFPLENBQUMsYUFBYSxDQUFDLEVBQ3RCO1FBQ0ksTUFBTSxFQUFFO1lBQ0osT0FBTyxFQUFFLEdBQUcsc0JBQXNCLENBQUMsUUFBUSxJQUFJLG1CQUFtQixDQUFDLFlBQVksRUFBRTtTQUNwRjtLQUNKLENBQ0o7Q0FDSixDQUNKLENBQUM7QUFFRixPQUFPLEVBQUMsY0FBYyxFQUFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge2FuaW1hdGUsIHN0YXRlLCBzdHlsZSwgdHJhbnNpdGlvbiwgdHJpZ2dlcn0gZnJvbSAnQGFuZ3VsYXIvYW5pbWF0aW9ucyc7XHJcbmltcG9ydCB7Q21hdEFuaW1hdGlvbkN1cnZlcywgQ21hdEFuaW1hdGlvbkR1cmF0aW9uc30gZnJvbSAnLi9kZWZhdWx0cyc7XHJcblxyXG5jb25zdCBleHBhbmRDb2xsYXBzZSA9IHRyaWdnZXIoJ2V4cGFuZENvbGxhcHNlJyxcclxuICAgIFtcclxuICAgICAgICBzdGF0ZSgndm9pZCwgY29sbGFwc2VkJyxcclxuICAgICAgICAgICAgc3R5bGUoe1xyXG4gICAgICAgICAgICAgICAgaGVpZ2h0OiAnMCdcclxuICAgICAgICAgICAgfSlcclxuICAgICAgICApLFxyXG5cclxuICAgICAgICBzdGF0ZSgnKiwgZXhwYW5kZWQnLFxyXG4gICAgICAgICAgICBzdHlsZSgnKicpXHJcbiAgICAgICAgKSxcclxuXHJcbiAgICAgICAgLy8gUHJldmVudCB0aGUgdHJhbnNpdGlvbiBpZiB0aGUgc3RhdGUgaXMgZmFsc2VcclxuICAgICAgICB0cmFuc2l0aW9uKCd2b2lkIDw9PiBmYWxzZSwgY29sbGFwc2VkIDw9PiBmYWxzZSwgZXhwYW5kZWQgPD0+IGZhbHNlJywgW10pLFxyXG5cclxuICAgICAgICB0cmFuc2l0aW9uKCd2b2lkIDw9PiAqLCBjb2xsYXBzZWQgPD0+IGV4cGFuZGVkJyxcclxuICAgICAgICAgICAgYW5pbWF0ZSgne3t0aW1pbmdzfX0nKSxcclxuICAgICAgICAgICAge1xyXG4gICAgICAgICAgICAgICAgcGFyYW1zOiB7XHJcbiAgICAgICAgICAgICAgICAgICAgdGltaW5nczogYCR7Q21hdEFuaW1hdGlvbkR1cmF0aW9ucy5lbnRlcmluZ30gJHtDbWF0QW5pbWF0aW9uQ3VydmVzLmRlY2VsZXJhdGlvbn1gXHJcbiAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgIH1cclxuICAgICAgICApXHJcbiAgICBdXHJcbik7XHJcblxyXG5leHBvcnQge2V4cGFuZENvbGxhcHNlfTtcclxuIl19
|
|
@@ -0,0 +1,170 @@
|
|
|
1
|
+
import { animate, state, style, transition, trigger } from '@angular/animations';
|
|
2
|
+
import { CmatAnimationCurves, CmatAnimationDurations } from './defaults';
|
|
3
|
+
const fadeIn = trigger('fadeIn', [
|
|
4
|
+
state('void', style({
|
|
5
|
+
opacity: 0
|
|
6
|
+
})),
|
|
7
|
+
state('*', style({
|
|
8
|
+
opacity: 1
|
|
9
|
+
})),
|
|
10
|
+
// Prevent the transition if the state is false
|
|
11
|
+
transition('void => false', []),
|
|
12
|
+
transition('void => *', animate('{{timings}}'), {
|
|
13
|
+
params: {
|
|
14
|
+
timings: `${CmatAnimationDurations.entering} ${CmatAnimationCurves.deceleration}`
|
|
15
|
+
}
|
|
16
|
+
})
|
|
17
|
+
]);
|
|
18
|
+
const fadeInTop = trigger('fadeInTop', [
|
|
19
|
+
state('void', style({
|
|
20
|
+
opacity: 0,
|
|
21
|
+
transform: 'translate3d(0, -100%, 0)'
|
|
22
|
+
})),
|
|
23
|
+
state('*', style({
|
|
24
|
+
opacity: 1,
|
|
25
|
+
transform: 'translate3d(0, 0, 0)'
|
|
26
|
+
})),
|
|
27
|
+
// Prevent the transition if the state is false
|
|
28
|
+
transition('void => false', []),
|
|
29
|
+
transition('void => *', animate('{{timings}}'), {
|
|
30
|
+
params: {
|
|
31
|
+
timings: `${CmatAnimationDurations.entering} ${CmatAnimationCurves.deceleration}`
|
|
32
|
+
}
|
|
33
|
+
})
|
|
34
|
+
]);
|
|
35
|
+
const fadeInBottom = trigger('fadeInBottom', [
|
|
36
|
+
state('void', style({
|
|
37
|
+
opacity: 0,
|
|
38
|
+
transform: 'translate3d(0, 100%, 0)'
|
|
39
|
+
})),
|
|
40
|
+
state('*', style({
|
|
41
|
+
opacity: 1,
|
|
42
|
+
transform: 'translate3d(0, 0, 0)'
|
|
43
|
+
})),
|
|
44
|
+
// Prevent the transition if the state is false
|
|
45
|
+
transition('void => false', []),
|
|
46
|
+
transition('void => *', animate('{{timings}}'), {
|
|
47
|
+
params: {
|
|
48
|
+
timings: `${CmatAnimationDurations.entering} ${CmatAnimationCurves.deceleration}`
|
|
49
|
+
}
|
|
50
|
+
})
|
|
51
|
+
]);
|
|
52
|
+
const fadeInLeft = trigger('fadeInLeft', [
|
|
53
|
+
state('void', style({
|
|
54
|
+
opacity: 0,
|
|
55
|
+
transform: 'translate3d(-100%, 0, 0)'
|
|
56
|
+
})),
|
|
57
|
+
state('*', style({
|
|
58
|
+
opacity: 1,
|
|
59
|
+
transform: 'translate3d(0, 0, 0)'
|
|
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 fadeInRight = trigger('fadeInRight', [
|
|
70
|
+
state('void', style({
|
|
71
|
+
opacity: 0,
|
|
72
|
+
transform: 'translate3d(100%, 0, 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 fadeOut = trigger('fadeOut', [
|
|
87
|
+
state('*', style({
|
|
88
|
+
opacity: 1
|
|
89
|
+
})),
|
|
90
|
+
state('void', style({
|
|
91
|
+
opacity: 0
|
|
92
|
+
})),
|
|
93
|
+
// Prevent the transition if the state is false
|
|
94
|
+
transition('false => void', []),
|
|
95
|
+
transition('* => void', animate('{{timings}}'), {
|
|
96
|
+
params: {
|
|
97
|
+
timings: `${CmatAnimationDurations.exiting} ${CmatAnimationCurves.acceleration}`
|
|
98
|
+
}
|
|
99
|
+
})
|
|
100
|
+
]);
|
|
101
|
+
const fadeOutTop = trigger('fadeOutTop', [
|
|
102
|
+
state('*', style({
|
|
103
|
+
opacity: 1,
|
|
104
|
+
transform: 'translate3d(0, 0, 0)'
|
|
105
|
+
})),
|
|
106
|
+
state('void', style({
|
|
107
|
+
opacity: 0,
|
|
108
|
+
transform: 'translate3d(0, -100%, 0)'
|
|
109
|
+
})),
|
|
110
|
+
// Prevent the transition if the state is false
|
|
111
|
+
transition('false => void', []),
|
|
112
|
+
transition('* => void', animate('{{timings}}'), {
|
|
113
|
+
params: {
|
|
114
|
+
timings: `${CmatAnimationDurations.exiting} ${CmatAnimationCurves.acceleration}`
|
|
115
|
+
}
|
|
116
|
+
})
|
|
117
|
+
]);
|
|
118
|
+
const fadeOutBottom = trigger('fadeOutBottom', [
|
|
119
|
+
state('*', style({
|
|
120
|
+
opacity: 1,
|
|
121
|
+
transform: 'translate3d(0, 0, 0)'
|
|
122
|
+
})),
|
|
123
|
+
state('void', style({
|
|
124
|
+
opacity: 0,
|
|
125
|
+
transform: 'translate3d(0, 100%, 0)'
|
|
126
|
+
})),
|
|
127
|
+
// Prevent the transition if the state is false
|
|
128
|
+
transition('false => void', []),
|
|
129
|
+
transition('* => void', animate('{{timings}}'), {
|
|
130
|
+
params: {
|
|
131
|
+
timings: `${CmatAnimationDurations.exiting} ${CmatAnimationCurves.acceleration}`
|
|
132
|
+
}
|
|
133
|
+
})
|
|
134
|
+
]);
|
|
135
|
+
const fadeOutLeft = trigger('fadeOutLeft', [
|
|
136
|
+
state('*', style({
|
|
137
|
+
opacity: 1,
|
|
138
|
+
transform: 'translate3d(0, 0, 0)'
|
|
139
|
+
})),
|
|
140
|
+
state('void', style({
|
|
141
|
+
opacity: 0,
|
|
142
|
+
transform: 'translate3d(-100%, 0, 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 fadeOutRight = trigger('fadeOutRight', [
|
|
153
|
+
state('*', style({
|
|
154
|
+
opacity: 1,
|
|
155
|
+
transform: 'translate3d(0, 0, 0)'
|
|
156
|
+
})),
|
|
157
|
+
state('void', style({
|
|
158
|
+
opacity: 0,
|
|
159
|
+
transform: 'translate3d(100%, 0, 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
|
+
export { fadeIn, fadeInTop, fadeInBottom, fadeInLeft, fadeInRight, fadeOut, fadeOutTop, fadeOutBottom, fadeOutLeft, fadeOutRight };
|
|
170
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmFkZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL2NtYXQvYW5pbWF0aW9ucy9mYWRlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxPQUFPLEVBQUUsS0FBSyxFQUFFLEtBQUssRUFBRSxVQUFVLEVBQUUsT0FBTyxFQUFDLE1BQU0scUJBQXFCLENBQUM7QUFDL0UsT0FBTyxFQUFDLG1CQUFtQixFQUFFLHNCQUFzQixFQUFDLE1BQU0sWUFBWSxDQUFDO0FBRXZFLE1BQU0sTUFBTSxHQUFHLE9BQU8sQ0FBQyxRQUFRLEVBQzNCO0lBQ0ksS0FBSyxDQUFDLE1BQU0sRUFDUixLQUFLLENBQUM7UUFDRixPQUFPLEVBQUUsQ0FBQztLQUNiLENBQUMsQ0FDTDtJQUVELEtBQUssQ0FBQyxHQUFHLEVBQ0wsS0FBSyxDQUFDO1FBQ0YsT0FBTyxFQUFFLENBQUM7S0FDYixDQUFDLENBQ0w7SUFFRCwrQ0FBK0M7SUFDL0MsVUFBVSxDQUFDLGVBQWUsRUFBRSxFQUFFLENBQUM7SUFFL0IsVUFBVSxDQUFDLFdBQVcsRUFBRSxPQUFPLENBQUMsYUFBYSxDQUFDLEVBQzFDO1FBQ0ksTUFBTSxFQUFFO1lBQ0osT0FBTyxFQUFFLEdBQUcsc0JBQXNCLENBQUMsUUFBUSxJQUFJLG1CQUFtQixDQUFDLFlBQVksRUFBRTtTQUNwRjtLQUNKLENBQ0o7Q0FDSixDQUNKLENBQUM7QUFFRixNQUFNLFNBQVMsR0FBRyxPQUFPLENBQUMsV0FBVyxFQUNqQztJQUNJLEtBQUssQ0FBQyxNQUFNLEVBQ1IsS0FBSyxDQUFDO1FBQ0YsT0FBTyxFQUFFLENBQUM7UUFDVixTQUFTLEVBQUUsMEJBQTBCO0tBQ3hDLENBQUMsQ0FDTDtJQUVELEtBQUssQ0FBQyxHQUFHLEVBQ0wsS0FBSyxDQUFDO1FBQ0YsT0FBTyxFQUFFLENBQUM7UUFDVixTQUFTLEVBQUUsc0JBQXNCO0tBQ3BDLENBQUMsQ0FDTDtJQUVELCtDQUErQztJQUMv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QUMsWUFBWSxFQUFFO1NBQ25GO0tBQ0osQ0FDSjtDQUNKLENBQ0osQ0FBQztBQUVGLE9BQU8sRUFBQyxNQUFNLEVBQUUsU0FBUyxFQUFFLFlBQVksRUFBRSxVQUFVLEVBQUUsV0FBVyxFQUFFLE9BQU8sRUFBRSxVQUFVLEVBQUUsYUFBYSxFQUFFLFdBQVcsRUFBRSxZQUFZLEVBQUMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7YW5pbWF0ZSwgc3RhdGUsIHN0eWxlLCB0cmFuc2l0aW9uLCB0cmlnZ2VyfSBmcm9tICdAYW5ndWxhci9hbmltYXRpb25zJztcclxuaW1wb3J0IHtDbWF0QW5pbWF0aW9uQ3VydmVzLCBDbWF0QW5pbWF0aW9uRHVyYXRpb25zfSBmcm9tICcuL2RlZmF1bHRzJztcclxuXHJcbmNvbnN0IGZhZGVJbiA9IHRyaWdnZXIoJ2ZhZGVJbicsXHJcbiAgICBbXHJcbiAgICAgICAgc3RhdGUoJ3ZvaWQnLFxyXG4gICAgICAgICAgICBzdHlsZSh7XHJcbiAgICAgICAgICAgICAgICBvcGFjaXR5OiAwXHJcbiAgICAgICAgICAgIH0pXHJcbiAgICAgICAgKSxcclxuXHJcbiAgICAgICAgc3RhdGUoJyonLFxyXG4gICAgICAgICAgICBzdHlsZSh7XHJcbiAgICAgICAgICAgICAgICBvcGFjaXR5OiAxXHJcbiAgICAgICAgICAgIH0pXHJcbiAgICAgICAgKSxcclxuXHJcbiAgICAgICAgLy8gUHJldmVudCB0aGUgdHJhbnNpdGlvbiBpZiB0aGUgc3RhdGUgaXMgZmFsc2VcclxuICAgICAgICB0cmFuc2l0aW9uKCd2b2lkID0+IGZhbHNlJywgW10pLFxyXG5cclxuICAgICAgICB0cmFuc2l0aW9uKCd2b2lkID0+IConLCBhbmltYXRlKCd7e3RpbWluZ3N9fScpLFxyXG4gICAgICAgICAgICB7XHJcbiAgICAgICAgICAgICAgICBwYXJhbXM6IHtcclxuICAgICAgICAgICAgICAgICAgICB0aW1pbmdzOiBgJHtDbWF0QW5pbWF0aW9uRHVyYXRpb25zLmVudGVyaW5nfSAke0NtYXRBbmltYXRpb25DdXJ2ZXMuZGVjZWxlcmF0aW9ufWBcclxuICAgICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgfVxyXG4gICAgICAgIClcclxuICAgIF1cclxuKTtcclxuXHJcbmNvbnN0IGZhZGVJblRvcCA9IHRyaWdnZXIoJ2ZhZGVJblRvcCcsXHJcbiAgICBbXHJcbiAgICAgICAgc3RhdGUoJ3ZvaWQnLFxyXG4gICAgICAgICAgICBzdHlsZSh7XHJcbiAgICAgICAgICAgICAgICBvcGFjaXR5OiAwLFxyXG4gICAgICAgICAgICAgICAgdHJhbnNmb3JtOiAndHJhbnNsYXRlM2QoMCwgLTEwMCUsIDApJ1xyXG4gICAgICAgICAgICB9KVxyXG4gICAgICAgICksXHJcblxyXG4gICAgICAgIHN0YXRlKCcqJyxcclxuICAgICAgICAgICAgc3R5bGUoe1xyXG4gICAgICAgICAgICAgICAgb3BhY2l0eTogMSxcclxuICAgICAgICAgICAgICAgIHRyYW5zZm9ybTogJ3RyYW5zbGF0ZTNkKDAsIDAsIDApJ1xyXG4gICAgICAgICAgICB9KVxyXG4gICAgICAgICksXHJcblxyXG4gICAgICAgIC8vIFByZXZlbnQgdGhlIHRyYW5zaXRpb24gaWYgdGhlIHN0YXRlIGlzIGZhbHNlXHJcbiAgICAgICAgdHJhbnNpdGlvbigndm9pZCA9PiBmYWxzZScsIFtdKSxcclxuXHJcbiAgICAgICAgdHJhbnNpdGlvbigndm9pZCA9PiAqJywgYW5pbWF0ZSgne3t0aW1pbmdzfX0nKSxcclxuICAgICAgICAgICAge1xyXG4gICAgICAgICAgICAgICAgcGFyYW1zOiB7XHJcbiAgICAgICAgICAgICAgICAgICAgdGltaW5nczogYCR7Q21hdEFuaW1hdGlvbkR1cmF0aW9ucy5lbnRlcmluZ30gJHtDbWF0QW5pbWF0aW9uQ3VydmVzLmRlY2VsZXJhdGlvbn1gXHJcbiAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgIH1cclxuICAgICAgICApXHJcbiAgICBdXHJcbik7XHJcblxyXG5jb25zdCBmYWRlSW5Cb3R0b20gPSB0cmlnZ2VyKCdmYWRlSW5Cb3R0b20nLFxyXG4gICAgW1xyXG4gICAgICAgIHN0YXRlKCd2b2lkJyxcclxuICAgICAgICAgICAgc3R5bGUoe1xyXG4gICAgICAgICAgICAgICAgb3BhY2l0eTogMCxcclxuICAgICAgICAgICAgICAgIHRyYW5zZm9ybTogJ3RyYW5zbGF0ZTNkKDAsIDEwMCUsIDApJ1xyXG4gICAgICAgICAgICB9KVxyXG4gICAgICAgICksXHJcblxyXG4gICAgICAgIHN0YXRlKCcqJyxcclxuICAgICAgICAgICAgc3R5bGUoe1xyXG4gICAgICAgICAgICAgICAgb3BhY2l0eTogMSxcclxuICAgICAgICAgICAgICAgIHRyYW5zZm9ybTogJ3RyYW5zbGF0ZTNkKDAsIDAsIDApJ1xyXG4gICAgICAgICAgICB9KVxyXG4gICAgICAgICksXHJcblxyXG4gICAgICAgIC8vIFByZXZlbnQgdGhlIHRyYW5zaXRpb24gaWYgdGhlIHN0YXRlIGlzIGZhbHNlXHJcbiAgICAgICAgdHJhbnNpdGlvbigndm9pZCA9PiBmYWxzZScsIFtdKSxcclxuXHJcbiAgICAgICAgdHJhbnNpdGlvbigndm9pZCA9PiAqJywgYW5pbWF0ZSgne3t0aW1pbmdzfX0nKSxcclxuICAgICAgICAgICAge1xyXG4gICAgICAgICAgICAgICAgcGFyYW1zOiB7XHJcbiAgICAgICAgICAgICAgICAgICAgdGltaW5nczogYCR7Q21hdEFuaW1hdGlvbkR1cmF0aW9ucy5lbnRlcmluZ30gJHtDbWF0QW5pbWF0aW9uQ3VydmVzLmRlY2VsZXJhdGlvbn1gXHJcbiAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgIH1cclxuICAgICAgICApXHJcbiAgICBdXHJcbik7XHJcblxyXG5jb25zdCBmYWRlSW5MZWZ0ID0gdHJpZ2dlcignZmFkZUluTGVmdCcsXHJcbiAgICBbXHJcbiAgICAgICAgc3RhdGUoJ3ZvaWQnLFxyXG4gICAgICAgICAgICBzdHlsZSh7XHJcbiAgICAgICAgICAgICAgICBvcGFjaXR5OiAwLFxyXG4gICAgICAgICAgICAgICAgdHJhbnNmb3JtOiAndHJhbnNsYXRlM2QoLTEwMCUsIDAsIDApJ1xyXG4gICAgICAgICAgICB9KVxyXG4gICAgICAgICksXHJcblxyXG4gICAgICAgIHN0YXRlKCcqJyxcclxuICAgICAgICAgICAgc3R5bGUoe1xyXG4gICAgICAgICAgICAgICAgb3BhY2l0eTogMSxcclxuICAgICAgICAgICAgICAgIHRyYW5zZm9ybTogJ3RyYW5zbGF0ZTNkKDAsIDAsIDApJ1xyXG4gICAgICAgICAgICB9KVxyXG4gICAgICAgICksXHJcblxyXG4gICAgICAgIC8vIFByZXZlbnQgdGhlIHRyYW5zaXRpb24gaWYgdGhlIHN0YXRlIGlzIGZhbHNlXHJcbiAgICAgICAgdHJhbnNpdGlvbigndm9pZCA9PiBmYWxzZScsIFtdKSxcclxuXHJcbiAgICAgICAgdHJhbnNpdGlvbigndm9pZCA9PiAqJywgYW5pbWF0ZSgne3t0aW1pbmdzfX0nKSxcclxuICAgICAgICAgICAge1xyXG4gICAgICAgICAgICAgICAgcGFyYW1zOiB7XHJcbiAgICAgICAgICAgICAgICAgICAgdGltaW5nczogYCR7Q21hdEFuaW1hdGlvbkR1cmF0aW9ucy5lbnRlcmluZ30gJHtDbWF0QW5pbWF0aW9uQ3VydmVzLmRlY2VsZXJhdGlvbn1gXHJcbiAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgIH1cclxuICAgICAgICApXHJcbiAgICBdXHJcbik7XHJcblxyXG5jb25zdCBmYWRlSW5SaWdodCA9IHRyaWdnZXIoJ2ZhZGVJblJpZ2h0JyxcclxuICAgIFtcclxuICAgICAgICBzdGF0ZSgndm9pZCcsXHJcbiAgICAgICAgICAgIHN0eWxlKHtcclxuICAgICAgICAgICAgICAgIG9wYWNpdHk6IDAsXHJcbiAgICAgICAgICAgICAgICB0cmFuc2Zvcm06ICd0cmFuc2xhdGUzZCgxMDAlLCAwLCAwKSdcclxuICAgICAgICAgICAgfSlcclxuICAgICAgICApLFxyXG5cclxuICAgICAgICBzdGF0ZSgnKicsXHJcbiAgICAgICAgICAgIHN0eWxlKHtcclxuICAgICAgICAgICAgICAgIG9wYWNpdHk6IDEsXHJcbiAgICAgICAgICAgICAgICB0cmFuc2Zvcm06ICd0cmFuc2xhdGUzZCgwLCAwLCAwKSdcclxuICAgICAgICAgICAgfSlcclxuICAgICAgICApLFxyXG5cclxuICAgICAgICAvLyBQcmV2ZW50IHRoZSB0cmFuc2l0aW9uIGlmIHRoZSBzdGF0ZSBpcyBmYWxzZVxyXG4gICAgICAgIHRyYW5zaXRpb24oJ3ZvaWQgPT4gZmFsc2UnLCBbXSksXHJcblxyXG4gICAgICAgIHRyYW5zaXRpb24oJ3ZvaWQgPT4gKicsIGFuaW1hdGUoJ3t7dGltaW5nc319JyksXHJcbiAgICAgICAgICAgIHtcclxuICAgICAgICAgICAgICAgIHBhcmFtczoge1xyXG4gICAgICAgICAgICAgICAgICAgIHRpbWluZ3M6IGAke0NtYXRBbmltYXRpb25EdXJhdGlvbnMuZW50ZXJpbmd9ICR7Q21hdEFuaW1hdGlvbkN1cnZlcy5kZWNlbGVyYXRpb259YFxyXG4gICAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICB9XHJcbiAgICAgICAgKVxyXG4gICAgXVxyXG4pO1xyXG5cclxuY29uc3QgZmFkZU91dCA9IHRyaWdnZXIoJ2ZhZGVPdXQnLFxyXG4gICAgW1xyXG4gICAgICAgIHN0YXRlKCcqJyxcclxuICAgICAgICAgICAgc3R5bGUoe1xyXG4gICAgICAgICAgICAgICAgb3BhY2l0eTogMVxyXG4gICAgICAgICAgICB9KVxyXG4gICAgICAgICksXHJcblxyXG4gICAgICAgIHN0YXRlKCd2b2lkJyxcclxuICAgICAgICAgICAgc3R5bGUoe1xyXG4gICAgICAgICAgICAgICAgb3BhY2l0eTogMFxyXG4gICAgICAgICAgICB9KVxyXG4gICAgICAgICksXHJcblxyXG4gICAgICAgIC8vIFByZXZlbnQgdGhlIHRyYW5zaXRpb24gaWYgdGhlIHN0YXRlIGlzIGZhbHNlXHJcbiAgICAgICAgdHJhbnNpdGlvbignZmFsc2UgPT4gdm9pZCcsIFtdKSxcclxuXHJcbiAgICAgICAgdHJhbnNpdGlvbignKiA9PiB2b2lkJywgYW5pbWF0ZSgne3t0aW1pbmdzfX0nKSxcclxuICAgICAgICAgICAge1xyXG4gICAgICAgICAgICAgICAgcGFyYW1zOiB7XHJcbiAgICAgICAgICAgICAgICAgICAgdGltaW5nczogYCR7Q21hdEFuaW1hdGlvbkR1cmF0aW9ucy5leGl0aW5nfSAke0NtYXRBbmltYXRpb25DdXJ2ZXMuYWNjZWxlcmF0aW9ufWBcclxuICAgICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgfVxyXG4gICAgICAgIClcclxuICAgIF1cclxuKTtcclxuXHJcbmNvbnN0IGZhZGVPdXRUb3AgPSB0cmlnZ2VyKCdmYWRlT3V0VG9wJyxcclxuICAgIFtcclxuICAgICAgICBzdGF0ZSgnKicsXHJcbiAgICAgICAgICAgIHN0eWxlKHtcclxuICAgICAgICAgICAgICAgIG9wYWNpdHk6IDEsXHJcbiAgICAgICAgICAgICAgICB0cmFuc2Zvcm06ICd0cmFuc2xhdGUzZCgwLCAwLCAwKSdcclxuICAgICAgICAgICAgfSlcclxuICAgICAgICApLFxyXG5cclxuICAgICAgICBzdGF0ZSgndm9pZCcsXHJcbiAgICAgICAgICAgIHN0eWxlKHtcclxuICAgICAgICAgICAgICAgIG9wYWNpdHk6IDAsXHJcbiAgICAgICAgICAgICAgICB0cmFuc2Zvcm06ICd0cmFuc2xhdGUzZCgwLCAtMTAwJSwgMCknXHJcbiAgICAgICAgICAgIH0pXHJcbiAgICAgICAgKSxcclxuXHJcbiAgICAgICAgLy8gUHJldmVudCB0aGUgdHJhbnNpdGlvbiBpZiB0aGUgc3RhdGUgaXMgZmFsc2VcclxuICAgICAgICB0cmFuc2l0aW9uKCdmYWxzZSA9PiB2b2lkJywgW10pLFxyXG5cclxuICAgICAgICB0cmFuc2l0aW9uKCcqID0+IHZvaWQnLCBhbmltYXRlKCd7e3RpbWluZ3N9fScpLFxyXG4gICAgICAgICAgICB7XHJcbiAgICAgICAgICAgICAgICBwYXJhbXM6IHtcclxuICAgICAgICAgICAgICAgICAgICB0aW1pbmdzOiBgJHtDbWF0QW5pbWF0aW9uRHVyYXRpb25zLmV4aXRpbmd9ICR7Q21hdEFuaW1hdGlvbkN1cnZlcy5hY2NlbGVyYXRpb259YFxyXG4gICAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICB9XHJcbiAgICAgICAgKVxyXG4gICAgXVxyXG4pO1xyXG5cclxuY29uc3QgZmFkZU91dEJvdHRvbSA9IHRyaWdnZXIoJ2ZhZGVPdXRCb3R0b20nLFxyXG4gICAgW1xyXG4gICAgICAgIHN0YXRlKCcqJyxcclxuICAgICAgICAgICAgc3R5bGUoe1xyXG4gICAgICAgICAgICAgICAgb3BhY2l0eTogMSxcclxuICAgICAgICAgICAgICAgIHRyYW5zZm9ybTogJ3RyYW5zbGF0ZTNkKDAsIDAsIDApJ1xyXG4gICAgICAgICAgICB9KVxyXG4gICAgICAgICksXHJcblxyXG4gICAgICAgIHN0YXRlKCd2b2lkJyxcclxuICAgICAgICAgICAgc3R5bGUoe1xyXG4gICAgICAgICAgICAgICAgb3BhY2l0eTogMCxcclxuICAgICAgICAgICAgICAgIHRyYW5zZm9ybTogJ3RyYW5zbGF0ZTNkKDAsIDEwMCUsIDApJ1xyXG4gICAgICAgICAgICB9KVxyXG4gICAgICAgICksXHJcblxyXG4gICAgICAgIC8vIFByZXZlbnQgdGhlIHRyYW5zaXRpb24gaWYgdGhlIHN0YXRlIGlzIGZhbHNlXHJcbiAgICAgICAgdHJhbnNpdGlvbignZmFsc2UgPT4gdm9pZCcsIFtdKSxcclxuXHJcbiAgICAgICAgdHJhbnNpdGlvbignKiA9PiB2b2lkJywgYW5pbWF0ZSgne3t0aW1pbmdzfX0nKSxcclxuICAgICAgICAgICAge1xyXG4gICAgICAgICAgICAgICAgcGFyYW1zOiB7XHJcbiAgICAgICAgICAgICAgICAgICAgdGltaW5nczogYCR7Q21hdEFuaW1hdGlvbkR1cmF0aW9ucy5leGl0aW5nfSAke0NtYXRBbmltYXRpb25DdXJ2ZXMuYWNjZWxlcmF0aW9ufWBcclxuICAgICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgfVxyXG4gICAgICAgIClcclxuICAgIF1cclxuKTtcclxuXHJcbmNvbnN0IGZhZGVPdXRMZWZ0ID0gdHJpZ2dlcignZmFkZU91dExlZnQnLFxyXG4gICAgW1xyXG4gICAgICAgIHN0YXRlKCcqJyxcclxuICAgICAgICAgICAgc3R5bGUoe1xyXG4gICAgICAgICAgICAgICAgb3BhY2l0eTogMSxcclxuICAgICAgICAgICAgICAgIHRyYW5zZm9ybTogJ3RyYW5zbGF0ZTNkKDAsIDAsIDApJ1xyXG4gICAgICAgICAgICB9KVxyXG4gICAgICAgICksXHJcblxyXG4gICAgICAgIHN0YXRlKCd2b2lkJyxcclxuICAgICAgICAgICAgc3R5bGUoe1xyXG4gICAgICAgICAgICAgICAgb3BhY2l0eTogMCxcclxuICAgICAgICAgICAgICAgIHRyYW5zZm9ybTogJ3RyYW5zbGF0ZTNkKC0xMDAlLCAwLCAwKSdcclxuICAgICAgICAgICAgfSlcclxuICAgICAgICApLFxyXG5cclxuICAgICAgICAvLyBQcmV2ZW50IHRoZSB0cmFuc2l0aW9uIGlmIHRoZSBzdGF0ZSBpcyBmYWxzZVxyXG4gICAgICAgIHRyYW5zaXRpb24oJ2ZhbHNlID0+IHZvaWQnLCBbXSksXHJcblxyXG4gICAgICAgIHRyYW5zaXRpb24oJyogPT4gdm9pZCcsIGFuaW1hdGUoJ3t7dGltaW5nc319JyksXHJcbiAgICAgICAgICAgIHtcclxuICAgICAgICAgICAgICAgIHBhcmFtczoge1xyXG4gICAgICAgICAgICAgICAgICAgIHRpbWluZ3M6IGAke0NtYXRBbmltYXRpb25EdXJhdGlvbnMuZXhpdGluZ30gJHtDbWF0QW5pbWF0aW9uQ3VydmVzLmFjY2VsZXJhdGlvbn1gXHJcbiAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgIH1cclxuICAgICAgICApXHJcbiAgICBdXHJcbik7XHJcblxyXG5jb25zdCBmYWRlT3V0UmlnaHQgPSB0cmlnZ2VyKCdmYWRlT3V0UmlnaHQnLFxyXG4gICAgW1xyXG4gICAgICAgIHN0YXRlKCcqJyxcclxuICAgICAgICAgICAgc3R5bGUoe1xyXG4gICAgICAgICAgICAgICAgb3BhY2l0eTogMSxcclxuICAgICAgICAgICAgICAgIHRyYW5zZm9ybTogJ3RyYW5zbGF0ZTNkKDAsIDAsIDApJ1xyXG4gICAgICAgICAgICB9KVxyXG4gICAgICAgICksXHJcblxyXG4gICAgICAgIHN0YXRlKCd2b2lkJyxcclxuICAgICAgICAgICAgc3R5bGUoe1xyXG4gICAgICAgICAgICAgICAgb3BhY2l0eTogMCxcclxuICAgICAgICAgICAgICAgIHRyYW5zZm9ybTogJ3RyYW5zbGF0ZTNkKDEwMCUsIDAsIDApJ1xyXG4gICAgICAgICAgICB9KVxyXG4gICAgICAgICksXHJcblxyXG4gICAgICAgIC8vIFByZXZlbnQgdGhlIHRyYW5zaXRpb24gaWYgdGhlIHN0YXRlIGlzIGZhbHNlXHJcbiAgICAgICAgdHJhbnNpdGlvbignZmFsc2UgPT4gdm9pZCcsIFtdKSxcclxuXHJcbiAgICAgICAgdHJhbnNpdGlvbignKiA9PiB2b2lkJywgYW5pbWF0ZSgne3t0aW1pbmdzfX0nKSxcclxuICAgICAgICAgICAge1xyXG4gICAgICAgICAgICAgICAgcGFyYW1zOiB7XHJcbiAgICAgICAgICAgICAgICAgICAgdGltaW5nczogYCR7Q21hdEFuaW1hdGlvbkR1cmF0aW9ucy5leGl0aW5nfSAke0NtYXRBbmltYXRpb25DdXJ2ZXMuYWNjZWxlcmF0aW9ufWBcclxuICAgICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgfVxyXG4gICAgICAgIClcclxuICAgIF1cclxuKTtcclxuXHJcbmV4cG9ydCB7ZmFkZUluLCBmYWRlSW5Ub3AsIGZhZGVJbkJvdHRvbSwgZmFkZUluTGVmdCwgZmFkZUluUmlnaHQsIGZhZGVPdXQsIGZhZGVPdXRUb3AsIGZhZGVPdXRCb3R0b20sIGZhZGVPdXRMZWZ0LCBmYWRlT3V0UmlnaHR9O1xyXG4iXX0=
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { dropdown } from './drop';
|
|
2
|
+
import { expandCollapse } from './expand-collapse';
|
|
3
|
+
import { fadeIn, fadeInBottom, fadeInLeft, fadeInRight, fadeInTop, fadeOut, fadeOutBottom, fadeOutLeft, fadeOutRight, fadeOutTop } from './fade';
|
|
4
|
+
import { shake } from './shake';
|
|
5
|
+
import { slideInBottom, slideInLeft, slideInRight, slideInTop, slideOutBottom, slideOutLeft, slideOutRight, slideOutTop } from './slide';
|
|
6
|
+
import { zoomIn, zoomOut } from './zoom';
|
|
7
|
+
import { transform } from './transform';
|
|
8
|
+
export const cmatAnimations = [
|
|
9
|
+
expandCollapse,
|
|
10
|
+
fadeIn, fadeInTop, fadeInBottom, fadeInLeft, fadeInRight,
|
|
11
|
+
fadeOut, fadeOutTop, fadeOutBottom, fadeOutLeft, fadeOutRight,
|
|
12
|
+
shake,
|
|
13
|
+
slideInTop, slideInBottom, slideInLeft, slideInRight,
|
|
14
|
+
slideOutTop, slideOutBottom, slideOutLeft, slideOutRight,
|
|
15
|
+
zoomIn, zoomOut,
|
|
16
|
+
dropdown,
|
|
17
|
+
transform
|
|
18
|
+
];
|
|
19
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL2NtYXQvYW5pbWF0aW9ucy9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxRQUFRLENBQUM7QUFDaEMsT0FBTyxFQUFDLGNBQWMsRUFBQyxNQUFNLG1CQUFtQixDQUFDO0FBQ2pELE9BQU8sRUFDSCxNQUFNLEVBQ04sWUFBWSxFQUNaLFVBQVUsRUFDVixXQUFXLEVBQ1gsU0FBUyxFQUNULE9BQU8sRUFDUCxhQUFhLEVBQ2IsV0FBVyxFQUNYLFlBQVksRUFDWixVQUFVLEVBQ2IsTUFBTSxRQUFRLENBQUM7QUFDaEIsT0FBTyxFQUFDLEtBQUssRUFBQyxNQUFNLFNBQVMsQ0FBQztBQUM5QixPQUFPLEVBQ0gsYUFBYSxFQUNiLFdBQVcsRUFDWCxZQUFZLEVBQ1osVUFBVSxFQUNWLGNBQWMsRUFDZCxZQUFZLEVBQ1osYUFBYSxFQUNiLFdBQVcsRUFDZCxNQUFNLFNBQVMsQ0FBQztBQUNqQixPQUFPLEVBQUMsTUFBTSxFQUFFLE9BQU8sRUFBQyxNQUFNLFFBQVEsQ0FBQztBQUN2QyxPQUFPLEVBQUMsU0FBUyxFQUFDLE1BQU0sYUFBYSxDQUFDO0FBRXRDLE1BQU0sQ0FBQyxNQUFNLGNBQWMsR0FBRztJQUMxQixjQUFjO0lBQ2QsTUFBTSxFQUFFLFNBQVMsRUFBRSxZQUFZLEVBQUUsVUFBVSxFQUFFLFdBQVc7SUFDeEQsT0FBTyxFQUFFLFVBQVUsRUFBRSxhQUFhLEVBQUUsV0FBVyxFQUFFLFlBQVk7SUFDN0QsS0FBSztJQUNMLFVBQVUsRUFBRSxhQUFhLEVBQUUsV0FBVyxFQUFFLFlBQVk7SUFDcEQsV0FBVyxFQUFFLGNBQWMsRUFBRSxZQUFZLEVBQUUsYUFBYTtJQUN4RCxNQUFNLEVBQUUsT0FBTztJQUNmLFFBQVE7SUFDUixTQUFTO0NBQ1osQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7ZHJvcGRvd259IGZyb20gJy4vZHJvcCc7XHJcbmltcG9ydCB7ZXhwYW5kQ29sbGFwc2V9IGZyb20gJy4vZXhwYW5kLWNvbGxhcHNlJztcclxuaW1wb3J0IHtcclxuICAgIGZhZGVJbixcclxuICAgIGZhZGVJbkJvdHRvbSxcclxuICAgIGZhZGVJbkxlZnQsXHJcbiAgICBmYWRlSW5SaWdodCxcclxuICAgIGZhZGVJblRvcCxcclxuICAgIGZhZGVPdXQsXHJcbiAgICBmYWRlT3V0Qm90dG9tLFxyXG4gICAgZmFkZU91dExlZnQsXHJcbiAgICBmYWRlT3V0UmlnaHQsXHJcbiAgICBmYWRlT3V0VG9wXHJcbn0gZnJvbSAnLi9mYWRlJztcclxuaW1wb3J0IHtzaGFrZX0gZnJvbSAnLi9zaGFrZSc7XHJcbmltcG9ydCB7XHJcbiAgICBzbGlkZUluQm90dG9tLFxyXG4gICAgc2xpZGVJbkxlZnQsXHJcbiAgICBzbGlkZUluUmlnaHQsXHJcbiAgICBzbGlkZUluVG9wLFxyXG4gICAgc2xpZGVPdXRCb3R0b20sXHJcbiAgICBzbGlkZU91dExlZnQsXHJcbiAgICBzbGlkZU91dFJpZ2h0LFxyXG4gICAgc2xpZGVPdXRUb3BcclxufSBmcm9tICcuL3NsaWRlJztcclxuaW1wb3J0IHt6b29tSW4sIHpvb21PdXR9IGZyb20gJy4vem9vbSc7XHJcbmltcG9ydCB7dHJhbnNmb3JtfSBmcm9tICcuL3RyYW5zZm9ybSc7XHJcblxyXG5leHBvcnQgY29uc3QgY21hdEFuaW1hdGlvbnMgPSBbXHJcbiAgICBleHBhbmRDb2xsYXBzZSxcclxuICAgIGZhZGVJbiwgZmFkZUluVG9wLCBmYWRlSW5Cb3R0b20sIGZhZGVJbkxlZnQsIGZhZGVJblJpZ2h0LFxyXG4gICAgZmFkZU91dCwgZmFkZU91dFRvcCwgZmFkZU91dEJvdHRvbSwgZmFkZU91dExlZnQsIGZhZGVPdXRSaWdodCxcclxuICAgIHNoYWtlLFxyXG4gICAgc2xpZGVJblRvcCwgc2xpZGVJbkJvdHRvbSwgc2xpZGVJbkxlZnQsIHNsaWRlSW5SaWdodCxcclxuICAgIHNsaWRlT3V0VG9wLCBzbGlkZU91dEJvdHRvbSwgc2xpZGVPdXRMZWZ0LCBzbGlkZU91dFJpZ2h0LFxyXG4gICAgem9vbUluLCB6b29tT3V0LFxyXG4gICAgZHJvcGRvd24sXHJcbiAgICB0cmFuc2Zvcm1cclxuXTtcclxuIl19
|