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,1403 @@
|
|
|
1
|
+
/* ----------------------------------------------------------------------------------------------------- */
|
|
2
|
+
/* @ Angular Material CDK helpers & overrides
|
|
3
|
+
/* ----------------------------------------------------------------------------------------------------- */
|
|
4
|
+
|
|
5
|
+
.cdk-global-scrollblock {
|
|
6
|
+
position: initial;
|
|
7
|
+
overflow-y: hidden;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
/* ----------------------------------------------------------------------------------------------------- */
|
|
11
|
+
/* @ Overlay
|
|
12
|
+
/* ----------------------------------------------------------------------------------------------------- */
|
|
13
|
+
.cmat-backdrop-on-mobile {
|
|
14
|
+
@apply bg-black bg-opacity-60 sm:bg-transparent #{!important};
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
/* -------------------------------------------------------------------------- */
|
|
18
|
+
/* @ Font smoothing
|
|
19
|
+
/* -------------------------------------------------------------------------- */
|
|
20
|
+
*[class*=mat-],
|
|
21
|
+
*[class*=mat-mdc-] {
|
|
22
|
+
-webkit-font-smoothing: auto !important;
|
|
23
|
+
-moz-osx-font-smoothing: auto !important;
|
|
24
|
+
|
|
25
|
+
* {
|
|
26
|
+
-webkit-font-smoothing: auto !important;
|
|
27
|
+
-moz-osx-font-smoothing: auto !important;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
/* ----------------------------------------------------------------------------------------------------- */
|
|
32
|
+
/* @ Angular Material helpers & overrides
|
|
33
|
+
/* ----------------------------------------------------------------------------------------------------- */
|
|
34
|
+
|
|
35
|
+
/* ----------------------------------------------------------------------------------------------------- */
|
|
36
|
+
/* @ Accordion
|
|
37
|
+
/* ----------------------------------------------------------------------------------------------------- */
|
|
38
|
+
.mat-accordion {
|
|
39
|
+
.mat-expansion-panel {
|
|
40
|
+
margin-bottom: 24px;
|
|
41
|
+
border-radius: 8px !important;
|
|
42
|
+
transition: box-shadow 225ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
43
|
+
@apply shadow #{!important};
|
|
44
|
+
|
|
45
|
+
&:last-child {
|
|
46
|
+
margin-bottom: 0;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
&.mat-expanded,
|
|
50
|
+
&:hover {
|
|
51
|
+
@apply shadow-lg #{!important};
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
&:not(.mat-expanded) {
|
|
55
|
+
.mat-expansion-panel-header {
|
|
56
|
+
&:not([aria-disabled="true"]) {
|
|
57
|
+
|
|
58
|
+
&.cdk-keyboard-focused,
|
|
59
|
+
&.cdk-program-focused,
|
|
60
|
+
&:hover {
|
|
61
|
+
background: transparent !important;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.mat-expansion-panel-header {
|
|
68
|
+
font-size: 14px;
|
|
69
|
+
|
|
70
|
+
&[aria-disabled="true"] {
|
|
71
|
+
.mat-expansion-panel-header-description {
|
|
72
|
+
margin-right: 28px;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.mat-expansion-indicator {
|
|
77
|
+
display: inline-flex;
|
|
78
|
+
align-items: center;
|
|
79
|
+
justify-content: center;
|
|
80
|
+
width: 12px;
|
|
81
|
+
height: 12px;
|
|
82
|
+
|
|
83
|
+
/* Do not override the border color of the expansion panel indicator */
|
|
84
|
+
&:after {
|
|
85
|
+
border-color: currentColor !important;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.mat-expansion-panel-body {
|
|
91
|
+
line-height: 1.7;
|
|
92
|
+
@apply text-secondary #{!important};
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
/* -------------------------------------------------------------------------- */
|
|
98
|
+
/* @ Buttons
|
|
99
|
+
/* -------------------------------------------------------------------------- */
|
|
100
|
+
.mat-mdc-button,
|
|
101
|
+
.mat-mdc-raised-button,
|
|
102
|
+
.mat-mdc-outlined-button,
|
|
103
|
+
.mat-mdc-unelevated-button,
|
|
104
|
+
.mat-mdc-icon-button,
|
|
105
|
+
.mat-mdc-fab,
|
|
106
|
+
.mat-mdc-mini-fab {
|
|
107
|
+
height: 40px;
|
|
108
|
+
min-height: 40px;
|
|
109
|
+
max-height: 40px;
|
|
110
|
+
line-height: 1 !important;
|
|
111
|
+
|
|
112
|
+
/* Large button */
|
|
113
|
+
&.cmat-button-large {
|
|
114
|
+
height: 48px;
|
|
115
|
+
min-height: 48px;
|
|
116
|
+
max-height: 48px;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
/* Lower the icon opacity on disabled buttons */
|
|
120
|
+
&[disabled=true] {
|
|
121
|
+
|
|
122
|
+
.mat-icon {
|
|
123
|
+
opacity: 0.38 !important;
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
/* Icon buttons */
|
|
129
|
+
.mat-mdc-icon-button {
|
|
130
|
+
display: inline-flex !important;
|
|
131
|
+
align-items: center;
|
|
132
|
+
justify-content: center;
|
|
133
|
+
width: 40px !important;
|
|
134
|
+
padding: 0 !important;
|
|
135
|
+
|
|
136
|
+
svg,
|
|
137
|
+
img {
|
|
138
|
+
height: auto !important;
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
/* FAB buttons */
|
|
143
|
+
.mat-mdc-fab {
|
|
144
|
+
max-height: 56px;
|
|
145
|
+
border-radius: 16px !important;
|
|
146
|
+
|
|
147
|
+
&:not(.mdc-fab--extended) .mdc-fab__ripple {
|
|
148
|
+
border-radius: 16px !important;
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
/* Mini FAB buttons */
|
|
153
|
+
.mat-mdc-mini-fab {
|
|
154
|
+
border-radius: 12px !important;
|
|
155
|
+
|
|
156
|
+
&:not(.mdc-fab--extended) .mdc-fab__ripple {
|
|
157
|
+
border-radius: 12px !important;
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
/* Rounded design */
|
|
162
|
+
.mat-mdc-button,
|
|
163
|
+
.mat-mdc-raised-button,
|
|
164
|
+
.mat-mdc-outlined-button,
|
|
165
|
+
.mat-mdc-unelevated-button {
|
|
166
|
+
padding: 0 20px !important;
|
|
167
|
+
border-radius: 9999px !important;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
/* Fix the alignment of icons when used within buttons */
|
|
172
|
+
.mat-mdc-button,
|
|
173
|
+
.mat-mdc-raised-button,
|
|
174
|
+
.mat-mdc-outlined-button,
|
|
175
|
+
.mat-mdc-unelevated-button {
|
|
176
|
+
|
|
177
|
+
&>.mat-icon {
|
|
178
|
+
margin-left: 0 !important;
|
|
179
|
+
margin-right: 0 !important;
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
/* Adjust the color of mat-progress-spinner when used within buttons */
|
|
184
|
+
.mat-mdc-button,
|
|
185
|
+
.mat-mdc-raised-button,
|
|
186
|
+
.mat-mdc-outlined-button,
|
|
187
|
+
.mat-mdc-unelevated-button,
|
|
188
|
+
.mat-mdc-icon-button,
|
|
189
|
+
.mat-mdc-fab,
|
|
190
|
+
.mat-mdc-mini-fab {
|
|
191
|
+
|
|
192
|
+
.mat-mdc-progress-spinner {
|
|
193
|
+
|
|
194
|
+
.mdc-circular-progress__indeterminate-container {
|
|
195
|
+
|
|
196
|
+
circle {
|
|
197
|
+
stroke: currentColor !important;
|
|
198
|
+
animation-duration: 6000ms;
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
/* Adjust the focus, ripple and icon colors of colored background buttons */
|
|
205
|
+
.mat-mdc-raised-button,
|
|
206
|
+
.mat-mdc-unelevated-button,
|
|
207
|
+
.mat-mdc-fab,
|
|
208
|
+
.mat-mdc-mini-fab {
|
|
209
|
+
|
|
210
|
+
--mat-mdc-button-persistent-ripple-color: theme('colors.gray[400]') !important;
|
|
211
|
+
--mat-mdc-button-ripple-color: rgba(0, 0, 0, 0.1) !important;
|
|
212
|
+
|
|
213
|
+
.dark & {
|
|
214
|
+
--mat-mdc-button-persistent-ripple-color: theme('colors.black') !important;
|
|
215
|
+
--mat-mdc-button-ripple-color: rgba(0, 0, 0, 0.1) !important;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.mat-icon {
|
|
219
|
+
color: currentColor !important;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.mat-ripple-element {
|
|
223
|
+
@apply bg-black/10 #{'!important'};
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
/* Color the icons of transparent background buttons */
|
|
228
|
+
.mat-mdc-button,
|
|
229
|
+
.mat-mdc-icon-button,
|
|
230
|
+
.mat-mdc-outlined-button {
|
|
231
|
+
|
|
232
|
+
&:not([disabled=true]) {
|
|
233
|
+
|
|
234
|
+
/* Apply primary color */
|
|
235
|
+
&.mat-primary {
|
|
236
|
+
|
|
237
|
+
.mat-icon {
|
|
238
|
+
@apply text-primary #{'!important'};
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
/* Apply accent color */
|
|
243
|
+
&.mat-accent {
|
|
244
|
+
|
|
245
|
+
.mat-icon {
|
|
246
|
+
@apply text-accent #{'!important'};
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
/* Apply warn color */
|
|
251
|
+
&.mat-warn {
|
|
252
|
+
|
|
253
|
+
.mat-icon {
|
|
254
|
+
@apply text-warn #{'!important'};
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
/* Adjust the border color of outlined buttons */
|
|
261
|
+
.mat-mdc-outlined-button {
|
|
262
|
+
|
|
263
|
+
/* Not disabled */
|
|
264
|
+
&:not([disabled=true]) {
|
|
265
|
+
@apply border-gray-300 dark:border-gray-500 #{'!important'};
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
/* Disabled */
|
|
269
|
+
&[disabled=true] {
|
|
270
|
+
@apply border-gray-300/70 dark:border-gray-600 #{'!important'};
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
/* Don't wrap the button label text */
|
|
275
|
+
.mdc-button {
|
|
276
|
+
|
|
277
|
+
.mdc-button__label {
|
|
278
|
+
white-space: nowrap;
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
.mat-mdc-icon-button{
|
|
283
|
+
&:hover{
|
|
284
|
+
@apply animate-wiggle #{!important};
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
/* ----------------------------------------------------------------------------------------------------- */
|
|
288
|
+
/* @ Button Toggle
|
|
289
|
+
/* ----------------------------------------------------------------------------------------------------- */
|
|
290
|
+
.mat-button-toggle-group {
|
|
291
|
+
border: none !important;
|
|
292
|
+
@apply space-x-1;
|
|
293
|
+
|
|
294
|
+
&.mat-button-toggle-group-appearance-standard {
|
|
295
|
+
.mat-button-toggle+.mat-button-toggle {
|
|
296
|
+
background-clip: padding-box;
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.mat-button-toggle {
|
|
301
|
+
border-radius: 9999px;
|
|
302
|
+
overflow: hidden;
|
|
303
|
+
border: none !important;
|
|
304
|
+
font-weight: 500;
|
|
305
|
+
|
|
306
|
+
&.mat-button-toggle-checked {
|
|
307
|
+
.mat-button-toggle-label-content {
|
|
308
|
+
@apply text-default #{!important};
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.mat-button-toggle-label-content {
|
|
313
|
+
padding: 0 20px;
|
|
314
|
+
line-height: 40px !important;
|
|
315
|
+
@apply text-secondary;
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
/* -------------------------------------------------------------------------- */
|
|
321
|
+
/* @ Checkbox
|
|
322
|
+
/* -------------------------------------------------------------------------- */
|
|
323
|
+
.mat-mdc-checkbox {
|
|
324
|
+
display: inline-flex !important;
|
|
325
|
+
|
|
326
|
+
.mdc-form-field {
|
|
327
|
+
padding-right: 12px;
|
|
328
|
+
}
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
/* -------------------------------------------------------------------------- */
|
|
332
|
+
/* @ Chip
|
|
333
|
+
/* -------------------------------------------------------------------------- */
|
|
334
|
+
.mat-mdc-chip {
|
|
335
|
+
font-weight: 500 !important;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
/* -------------------------------------------------------------------------- */
|
|
339
|
+
/* @ Dialog
|
|
340
|
+
/* -------------------------------------------------------------------------- */
|
|
341
|
+
.mat-mdc-dialog-container {
|
|
342
|
+
|
|
343
|
+
.mdc-dialog__surface {
|
|
344
|
+
border-radius: 16px !important;
|
|
345
|
+
}
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
/* -------------------------------------------------------------------------- */
|
|
349
|
+
/* @ Drawer
|
|
350
|
+
/* -------------------------------------------------------------------------- */
|
|
351
|
+
.mat-drawer-backdrop.mat-drawer-shown {
|
|
352
|
+
background-color: rgba(0, 0, 0, 0.6) !important;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
/* -------------------------------------------------------------------------- */
|
|
356
|
+
/* @ Form fields
|
|
357
|
+
/* -------------------------------------------------------------------------- */
|
|
358
|
+
|
|
359
|
+
/* "fill" appearance */
|
|
360
|
+
.mat-mdc-form-field.mat-form-field-appearance-fill {
|
|
361
|
+
|
|
362
|
+
/* Disabled */
|
|
363
|
+
&.mat-form-field-disabled {
|
|
364
|
+
opacity: 0.7 !important;
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
/* Invalid */
|
|
368
|
+
&.mat-form-field-invalid {
|
|
369
|
+
|
|
370
|
+
/* Border color */
|
|
371
|
+
.mat-mdc-text-field-wrapper {
|
|
372
|
+
@apply border-warn dark:border-warn #{'!important'};
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
/* Select */
|
|
376
|
+
.mat-mdc-select {
|
|
377
|
+
|
|
378
|
+
/* Placeholder color */
|
|
379
|
+
.mat-mdc-select-placeholder {
|
|
380
|
+
@apply text-warn #{'!important'};
|
|
381
|
+
}
|
|
382
|
+
}
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
/* Hover */
|
|
386
|
+
&:hover {
|
|
387
|
+
|
|
388
|
+
.mat-mdc-form-field-focus-overlay {
|
|
389
|
+
opacity: 0 !important;
|
|
390
|
+
}
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
/* Focused */
|
|
394
|
+
&.mat-focused {
|
|
395
|
+
|
|
396
|
+
.mat-mdc-form-field-focus-overlay {
|
|
397
|
+
opacity: 0 !important;
|
|
398
|
+
}
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
/* Focused and valid fields */
|
|
402
|
+
&.mat-focused:not(.mat-form-field-invalid) {
|
|
403
|
+
|
|
404
|
+
/* Border color */
|
|
405
|
+
.mat-mdc-text-field-wrapper {
|
|
406
|
+
@apply border-primary dark:border-primary #{'!important'};
|
|
407
|
+
}
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
/* Remove the default arrow for native select */
|
|
411
|
+
&.mat-mdc-form-field-type-mat-native-select {
|
|
412
|
+
|
|
413
|
+
.mat-mdc-form-field-infix {
|
|
414
|
+
|
|
415
|
+
select {
|
|
416
|
+
top: auto;
|
|
417
|
+
margin-top: 0;
|
|
418
|
+
margin-bottom: 0;
|
|
419
|
+
padding-top: 0;
|
|
420
|
+
padding-right: 18px;
|
|
421
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2364748B' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
|
|
422
|
+
background-repeat: no-repeat;
|
|
423
|
+
background-position: right -7px center;
|
|
424
|
+
background-size: 24px;
|
|
425
|
+
|
|
426
|
+
.dark & {
|
|
427
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2397a6ba' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
|
|
428
|
+
}
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
&:after {
|
|
432
|
+
display: none;
|
|
433
|
+
}
|
|
434
|
+
}
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
/* Default style tweaks and enhancements */
|
|
438
|
+
.mat-mdc-text-field-wrapper {
|
|
439
|
+
padding: 0;
|
|
440
|
+
border-radius: 6px;
|
|
441
|
+
border-width: 1px;
|
|
442
|
+
border-style: solid;
|
|
443
|
+
@apply shadow-sm bg-white border-gray-300 dark:bg-black dark:bg-opacity-5 dark:border-gray-500 #{'!important'};
|
|
444
|
+
|
|
445
|
+
/* Adjust the top spacing and overflow when mat-label present */
|
|
446
|
+
&:not(.mdc-text-field--no-label) {
|
|
447
|
+
margin-top: 24px;
|
|
448
|
+
overflow: visible;
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
.mat-mdc-form-field-focus-overlay {
|
|
452
|
+
border-radius: 6px;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
/* Form field */
|
|
456
|
+
.mat-mdc-form-field-flex {
|
|
457
|
+
position: relative;
|
|
458
|
+
display: flex;
|
|
459
|
+
align-items: stretch;
|
|
460
|
+
border-radius: 6px;
|
|
461
|
+
padding: 0 16px;
|
|
462
|
+
|
|
463
|
+
.mat-mdc-form-field-icon-prefix,
|
|
464
|
+
.mat-mdc-form-field-text-prefix {
|
|
465
|
+
padding: 0 !important;
|
|
466
|
+
|
|
467
|
+
>.mat-icon {
|
|
468
|
+
margin-right: 12px;
|
|
469
|
+
padding: 0 !important;
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
>.mat-mdc-icon-button {
|
|
473
|
+
margin: 0 4px 0 -10px;
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
>.mat-mdc-select {
|
|
477
|
+
margin-right: 10px;
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
>.mat-datepicker-toggle {
|
|
481
|
+
margin-left: -8px;
|
|
482
|
+
}
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
.mat-mdc-form-field-icon-suffix,
|
|
486
|
+
.mat-mdc-form-field-text-suffix {
|
|
487
|
+
padding: 0 !important;
|
|
488
|
+
|
|
489
|
+
>.mat-icon {
|
|
490
|
+
margin-left: 12px;
|
|
491
|
+
padding: 0 !important;
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
>.mat-mdc-icon-button {
|
|
495
|
+
margin: 0 -10px 0 4px;
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
>.mat-mdc-select {
|
|
499
|
+
margin-left: 10px;
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
>.mat-datepicker-toggle {
|
|
503
|
+
margin-right: -8px;
|
|
504
|
+
}
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
.mat-mdc-form-field-icon-prefix,
|
|
508
|
+
.mat-mdc-form-field-text-prefix,
|
|
509
|
+
.mat-mdc-form-field-icon-suffix,
|
|
510
|
+
.mat-mdc-form-field-text-suffix {
|
|
511
|
+
display: inline-flex;
|
|
512
|
+
align-items: center;
|
|
513
|
+
justify-content: center;
|
|
514
|
+
@apply text-hint #{'!important'};
|
|
515
|
+
|
|
516
|
+
.mat-mdc-icon-button {
|
|
517
|
+
width: 40px;
|
|
518
|
+
min-width: 40px;
|
|
519
|
+
height: 40px;
|
|
520
|
+
min-height: 40px;
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
.mat-icon,
|
|
524
|
+
.mat-mdc-icon-button:not([disabled]),
|
|
525
|
+
.mat-mdc-select-value {
|
|
526
|
+
@apply text-hint;
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
/* Datepicker default icon size */
|
|
530
|
+
.mat-datepicker-toggle-default-icon {
|
|
531
|
+
@apply icon-size-6;
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
/* Make mat-select usable as prefix and suffix */
|
|
535
|
+
.mat-mdc-select {
|
|
536
|
+
display: flex;
|
|
537
|
+
align-items: center;
|
|
538
|
+
|
|
539
|
+
&:focus {
|
|
540
|
+
|
|
541
|
+
.mat-mdc-select-trigger {
|
|
542
|
+
|
|
543
|
+
.mat-mdc-select-value {
|
|
544
|
+
@apply text-primary #{'!important'};
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
.mat-mdc-select-arrow-wrapper {
|
|
548
|
+
|
|
549
|
+
.mat-mdc-select-arrow {
|
|
550
|
+
border-top-color: var(--cmat-primary) !important;
|
|
551
|
+
}
|
|
552
|
+
}
|
|
553
|
+
}
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
.mat-mdc-select-trigger {
|
|
557
|
+
display: flex;
|
|
558
|
+
align-items: center;
|
|
559
|
+
|
|
560
|
+
.mat-mdc-select-value {
|
|
561
|
+
display: flex;
|
|
562
|
+
max-width: none;
|
|
563
|
+
|
|
564
|
+
mat-mdc-select-trigger {
|
|
565
|
+
|
|
566
|
+
.mat-icon {
|
|
567
|
+
margin: 0 !important;
|
|
568
|
+
}
|
|
569
|
+
}
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
.mat-mdc-select-arrow-wrapper {
|
|
573
|
+
display: flex;
|
|
574
|
+
align-items: center;
|
|
575
|
+
transform: none;
|
|
576
|
+
margin-left: 4px;
|
|
577
|
+
|
|
578
|
+
.mat-mdc-select-arrow {
|
|
579
|
+
min-height: 0;
|
|
580
|
+
@apply text-gray-500 dark:text-gray-400 #{'!important'};
|
|
581
|
+
}
|
|
582
|
+
}
|
|
583
|
+
}
|
|
584
|
+
}
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
/* Infix */
|
|
588
|
+
.mat-mdc-form-field-infix {
|
|
589
|
+
position: static;
|
|
590
|
+
display: flex;
|
|
591
|
+
align-items: center;
|
|
592
|
+
width: 88px;
|
|
593
|
+
min-height: 48px;
|
|
594
|
+
padding: 0;
|
|
595
|
+
border: 0;
|
|
596
|
+
|
|
597
|
+
/* Floating label - disable floating action */
|
|
598
|
+
.mat-mdc-floating-label {
|
|
599
|
+
top: -25px !important;
|
|
600
|
+
left: 0 !important;
|
|
601
|
+
width: 100% !important;
|
|
602
|
+
transform: none !important;
|
|
603
|
+
pointer-events: auto;
|
|
604
|
+
font-weight: 500;
|
|
605
|
+
@apply text-default #{'!important'};
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
/* Textarea */
|
|
609
|
+
textarea.mat-mdc-input-element {
|
|
610
|
+
margin: 12px 0;
|
|
611
|
+
padding: 0 6px 0 0;
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
/* Chips */
|
|
615
|
+
.mat-mdc-chip-set {
|
|
616
|
+
width: 100%;
|
|
617
|
+
margin: 0 -8px;
|
|
618
|
+
}
|
|
619
|
+
}
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
/* Remove the underline */
|
|
623
|
+
.mdc-line-ripple {
|
|
624
|
+
display: none;
|
|
625
|
+
}
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
/* Subscript tweaks */
|
|
629
|
+
.mat-mdc-form-field-subscript-wrapper {
|
|
630
|
+
font-size: 12px;
|
|
631
|
+
font-weight: 500;
|
|
632
|
+
|
|
633
|
+
.mat-mdc-form-field-hint-wrapper,
|
|
634
|
+
.mat-mdc-form-field-error-wrapper {
|
|
635
|
+
padding: 0;
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
.mat-mdc-form-field-hint {
|
|
639
|
+
@apply text-hint #{'!important'};
|
|
640
|
+
}
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
/* Adds better alignment for textarea inputs */
|
|
644
|
+
&:has(textarea.mat-mdc-input-element) {
|
|
645
|
+
|
|
646
|
+
.mat-mdc-text-field-wrapper {
|
|
647
|
+
|
|
648
|
+
.mat-mdc-form-field-flex {
|
|
649
|
+
|
|
650
|
+
.mat-mdc-form-field-icon-prefix,
|
|
651
|
+
.mat-mdc-form-field-text-prefix,
|
|
652
|
+
.mat-mdc-form-field-icon-suffix,
|
|
653
|
+
.mat-mdc-form-field-text-suffix {
|
|
654
|
+
align-self: flex-start;
|
|
655
|
+
padding-top: 14px !important;
|
|
656
|
+
}
|
|
657
|
+
}
|
|
658
|
+
}
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
/* Rounded */
|
|
662
|
+
&.cmat-rounded {
|
|
663
|
+
|
|
664
|
+
.mat-mdc-text-field-wrapper {
|
|
665
|
+
border-radius: 24px;
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
/* Emphasized affix */
|
|
669
|
+
&.cmat-emphasized-affix {
|
|
670
|
+
|
|
671
|
+
.mat-mdc-text-field-wrapper {
|
|
672
|
+
|
|
673
|
+
.mat-mdc-form-field-flex {
|
|
674
|
+
|
|
675
|
+
.mat-mdc-form-field-icon-prefix,
|
|
676
|
+
.mat-mdc-form-field-text-prefix {
|
|
677
|
+
border-radius: 24px 0 0 24px;
|
|
678
|
+
|
|
679
|
+
>.mat-icon {
|
|
680
|
+
margin-right: 12px;
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
>.mat-mdc-icon-button {
|
|
684
|
+
margin: 0 2px 0 -10px !important;
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
>.mat-mdc-select {
|
|
688
|
+
margin-right: 8px;
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
>.mat-datepicker-toggle {
|
|
692
|
+
margin-right: 4px;
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
>*:not(.mat-icon):not(.mat-mdc-icon-button):not(.mat-mdc-select):not(.mat-datepicker-toggle) {
|
|
696
|
+
margin-right: 12px;
|
|
697
|
+
}
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
.mat-mdc-form-field-icon-suffix,
|
|
701
|
+
.mat-mdc-form-field-text-suffix {
|
|
702
|
+
border-radius: 0 24px 24px 0;
|
|
703
|
+
|
|
704
|
+
>.mat-icon {
|
|
705
|
+
margin-left: 12px !important;
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
>.mat-mdc-icon-button {
|
|
709
|
+
margin: 0 -10px 0 2px !important;
|
|
710
|
+
}
|
|
711
|
+
|
|
712
|
+
>.mat-mdc-select {
|
|
713
|
+
margin-left: 12px !important;
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
>.mat-datepicker-toggle {
|
|
717
|
+
margin-left: 4px !important;
|
|
718
|
+
}
|
|
719
|
+
|
|
720
|
+
>*:not(.mat-icon):not(.mat-mdc-icon-button):not(.mat-mdc-select):not(.mat-datepicker-toggle) {
|
|
721
|
+
margin-left: 12px !important;
|
|
722
|
+
}
|
|
723
|
+
}
|
|
724
|
+
}
|
|
725
|
+
}
|
|
726
|
+
}
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
/* Dense */
|
|
730
|
+
&.cmat-dense {
|
|
731
|
+
|
|
732
|
+
.mat-mdc-text-field-wrapper {
|
|
733
|
+
|
|
734
|
+
.mat-mdc-form-field-flex {
|
|
735
|
+
|
|
736
|
+
.mat-mdc-form-field-icon-prefix,
|
|
737
|
+
.mat-mdc-form-field-text-prefix,
|
|
738
|
+
.mat-mdc-form-field-icon-suffix,
|
|
739
|
+
.mat-mdc-form-field-text-suffix {
|
|
740
|
+
|
|
741
|
+
.mat-mdc-icon-button {
|
|
742
|
+
width: 32px !important;
|
|
743
|
+
min-width: 32px;
|
|
744
|
+
height: 32px;
|
|
745
|
+
min-height: 32px;
|
|
746
|
+
}
|
|
747
|
+
}
|
|
748
|
+
|
|
749
|
+
.mat-mdc-form-field-icon-prefix,
|
|
750
|
+
.mat-mdc-form-field-text-prefix {
|
|
751
|
+
|
|
752
|
+
>.mat-mdc-icon-button {
|
|
753
|
+
margin-left: -6px;
|
|
754
|
+
margin-right: 12px;
|
|
755
|
+
}
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
.mat-mdc-form-field-icon-suffix,
|
|
759
|
+
.mat-mdc-form-field-text-suffix {
|
|
760
|
+
|
|
761
|
+
>.mat-mdc-icon-button {
|
|
762
|
+
margin-left: 12px;
|
|
763
|
+
margin-right: -6px;
|
|
764
|
+
}
|
|
765
|
+
}
|
|
766
|
+
|
|
767
|
+
.mat-mdc-form-field-infix {
|
|
768
|
+
min-height: 40px;
|
|
769
|
+
|
|
770
|
+
/* Textarea */
|
|
771
|
+
textarea.mat-mdc-input-element {
|
|
772
|
+
margin: 8px 0;
|
|
773
|
+
}
|
|
774
|
+
}
|
|
775
|
+
}
|
|
776
|
+
}
|
|
777
|
+
|
|
778
|
+
/* Adds better alignment for textarea inputs */
|
|
779
|
+
&:has(textarea.mat-mdc-input-element) {
|
|
780
|
+
|
|
781
|
+
.mat-mdc-text-field-wrapper {
|
|
782
|
+
|
|
783
|
+
.mat-mdc-form-field-flex {
|
|
784
|
+
|
|
785
|
+
.mat-mdc-form-field-icon-prefix,
|
|
786
|
+
.mat-mdc-form-field-text-prefix,
|
|
787
|
+
.mat-mdc-form-field-icon-suffix,
|
|
788
|
+
.mat-mdc-form-field-text-suffix {
|
|
789
|
+
padding-top: 10px !important;
|
|
790
|
+
}
|
|
791
|
+
}
|
|
792
|
+
}
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
/* Rounded */
|
|
796
|
+
&.cmat-rounded {
|
|
797
|
+
|
|
798
|
+
.mat-mdc-text-field-wrapper {
|
|
799
|
+
border-radius: 20px;
|
|
800
|
+
}
|
|
801
|
+
|
|
802
|
+
/* Emphasized affix */
|
|
803
|
+
&.cmat-emphasized-affix {
|
|
804
|
+
|
|
805
|
+
.mat-mdc-text-field-wrapper {
|
|
806
|
+
|
|
807
|
+
.mat-mdc-form-field-flex {
|
|
808
|
+
|
|
809
|
+
.mat-mdc-form-field-icon-prefix,
|
|
810
|
+
.mat-mdc-form-field-text-prefix {
|
|
811
|
+
border-radius: 20px 0 0 20px !important;
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
.mat-mdc-form-field-icon-suffix,
|
|
815
|
+
.mat-mdc-form-field-text-suffix {
|
|
816
|
+
border-radius: 0 20px 20px 0 !important;
|
|
817
|
+
}
|
|
818
|
+
}
|
|
819
|
+
}
|
|
820
|
+
}
|
|
821
|
+
}
|
|
822
|
+
}
|
|
823
|
+
|
|
824
|
+
/* Emphasized affix */
|
|
825
|
+
&.cmat-emphasized-affix {
|
|
826
|
+
|
|
827
|
+
.mat-mdc-text-field-wrapper {
|
|
828
|
+
|
|
829
|
+
.mat-mdc-form-field-flex {
|
|
830
|
+
|
|
831
|
+
.mat-mdc-form-field-icon-prefix,
|
|
832
|
+
.mat-mdc-form-field-text-prefix {
|
|
833
|
+
align-self: stretch !important;
|
|
834
|
+
margin: 0 16px 0 -16px !important;
|
|
835
|
+
padding-left: 16px !important;
|
|
836
|
+
border-radius: 6px 0 0 6px;
|
|
837
|
+
border-right-width: 1px;
|
|
838
|
+
border-style: solid;
|
|
839
|
+
|
|
840
|
+
>.mat-icon {
|
|
841
|
+
margin-right: 16px;
|
|
842
|
+
}
|
|
843
|
+
|
|
844
|
+
>.mat-mdc-icon-button {
|
|
845
|
+
margin: 0 6px 0 -10px !important;
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
>.mat-mdc-select {
|
|
849
|
+
margin-right: 12px !important;
|
|
850
|
+
}
|
|
851
|
+
|
|
852
|
+
>.mat-datepicker-toggle {
|
|
853
|
+
margin-right: 8px;
|
|
854
|
+
}
|
|
855
|
+
|
|
856
|
+
>*:not(.mat-icon):not(.mat-mdc-icon-button):not(.mat-mdc-select):not(.mat-datepicker-toggle) {
|
|
857
|
+
margin-right: 16px;
|
|
858
|
+
}
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
.mat-mdc-form-field-icon-suffix,
|
|
862
|
+
.mat-mdc-form-field-text-suffix {
|
|
863
|
+
align-self: stretch !important;
|
|
864
|
+
margin: 0 -16px 0 16px !important;
|
|
865
|
+
padding-right: 16px !important;
|
|
866
|
+
border-radius: 0 6px 6px 0;
|
|
867
|
+
border-left-width: 1px;
|
|
868
|
+
border-style: solid;
|
|
869
|
+
|
|
870
|
+
>.mat-icon {
|
|
871
|
+
margin-left: 16px;
|
|
872
|
+
}
|
|
873
|
+
|
|
874
|
+
>.mat-mdc-icon-button {
|
|
875
|
+
margin: 0 -10px 0 6px !important;
|
|
876
|
+
}
|
|
877
|
+
|
|
878
|
+
>.mat-mdc-select {
|
|
879
|
+
margin: 0 -4px 0 16px !important;
|
|
880
|
+
}
|
|
881
|
+
|
|
882
|
+
>.mat-datepicker-toggle {
|
|
883
|
+
margin-left: 8px;
|
|
884
|
+
}
|
|
885
|
+
|
|
886
|
+
>*:not(.mat-icon):not(.mat-mdc-icon-button):not(.mat-mdc-select):not(.mat-datepicker-toggle) {
|
|
887
|
+
margin-left: 16px;
|
|
888
|
+
}
|
|
889
|
+
}
|
|
890
|
+
|
|
891
|
+
.mat-mdc-form-field-icon-prefix,
|
|
892
|
+
.mat-mdc-form-field-text-prefix,
|
|
893
|
+
.mat-mdc-form-field-icon-suffix,
|
|
894
|
+
.mat-mdc-form-field-text-suffix {
|
|
895
|
+
@apply bg-default border-gray-300 dark:border-gray-500 #{'!important'};
|
|
896
|
+
}
|
|
897
|
+
}
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
/* with Textarea */
|
|
901
|
+
&:has(textarea.mat-mdc-input-element) {
|
|
902
|
+
|
|
903
|
+
.mat-mdc-text-field-wrapper {
|
|
904
|
+
|
|
905
|
+
.mat-mdc-form-field-flex {
|
|
906
|
+
|
|
907
|
+
.mat-mdc-form-field-icon-prefix,
|
|
908
|
+
.mat-mdc-form-field-text-prefix,
|
|
909
|
+
.mat-mdc-form-field-icon-suffix,
|
|
910
|
+
.mat-mdc-form-field-text-suffix {
|
|
911
|
+
align-items: flex-start;
|
|
912
|
+
}
|
|
913
|
+
}
|
|
914
|
+
}
|
|
915
|
+
}
|
|
916
|
+
}
|
|
917
|
+
|
|
918
|
+
/* Bolder border width */
|
|
919
|
+
&.cmat-bold {
|
|
920
|
+
|
|
921
|
+
.mat-mdc-text-field-wrapper {
|
|
922
|
+
border-width: 2px !important;
|
|
923
|
+
}
|
|
924
|
+
}
|
|
925
|
+
}
|
|
926
|
+
|
|
927
|
+
/* "outline" appearance */
|
|
928
|
+
.mat-mdc-form-field.mat-form-field-appearance-outline {
|
|
929
|
+
|
|
930
|
+
/* Invalid */
|
|
931
|
+
&.mat-form-field-invalid {
|
|
932
|
+
|
|
933
|
+
.mdc-notched-outline__leading,
|
|
934
|
+
.mdc-notched-outline__notch,
|
|
935
|
+
.mdc-notched-outline__trailing {
|
|
936
|
+
border-color: var(--cmat-warn) !important;
|
|
937
|
+
}
|
|
938
|
+
}
|
|
939
|
+
|
|
940
|
+
/* Focused */
|
|
941
|
+
&.mat-focused:not(.mat-form-field-invalid) {
|
|
942
|
+
|
|
943
|
+
/* Primary */
|
|
944
|
+
&.mat-primary {
|
|
945
|
+
|
|
946
|
+
.mdc-notched-outline__leading,
|
|
947
|
+
.mdc-notched-outline__notch,
|
|
948
|
+
.mdc-notched-outline__trailing {
|
|
949
|
+
border-color: var(--cmat-primary) !important;
|
|
950
|
+
}
|
|
951
|
+
}
|
|
952
|
+
|
|
953
|
+
/* Accent */
|
|
954
|
+
&.mat-accent {
|
|
955
|
+
|
|
956
|
+
.mdc-notched-outline__leading,
|
|
957
|
+
.mdc-notched-outline__notch,
|
|
958
|
+
.mdc-notched-outline__trailing {
|
|
959
|
+
border-color: var(--cmat-accent) !important;
|
|
960
|
+
}
|
|
961
|
+
}
|
|
962
|
+
}
|
|
963
|
+
|
|
964
|
+
&:not(.mat-focused):not(.mat-form-field-invalid) {
|
|
965
|
+
|
|
966
|
+
.mat-mdc-text-field-wrapper {
|
|
967
|
+
|
|
968
|
+
.mat-mdc-form-field-flex {
|
|
969
|
+
|
|
970
|
+
.mdc-notched-outline {
|
|
971
|
+
|
|
972
|
+
.mdc-notched-outline__leading,
|
|
973
|
+
.mdc-notched-outline__notch,
|
|
974
|
+
.mdc-notched-outline__trailing {
|
|
975
|
+
@apply border-slate-300 dark:border-slate-500 #{'!important'};
|
|
976
|
+
}
|
|
977
|
+
}
|
|
978
|
+
}
|
|
979
|
+
}
|
|
980
|
+
}
|
|
981
|
+
|
|
982
|
+
/* Remove the extra border on the right side of the notch */
|
|
983
|
+
/* Tailwind's global border setter causes this issue */
|
|
984
|
+
.mat-mdc-text-field-wrapper {
|
|
985
|
+
|
|
986
|
+
.mat-mdc-form-field-flex {
|
|
987
|
+
|
|
988
|
+
.mdc-notched-outline {
|
|
989
|
+
|
|
990
|
+
.mdc-notched-outline__notch {
|
|
991
|
+
border-right-style: none !important;
|
|
992
|
+
}
|
|
993
|
+
}
|
|
994
|
+
}
|
|
995
|
+
}
|
|
996
|
+
}
|
|
997
|
+
|
|
998
|
+
/* -------------------------------------------------------------------------- */
|
|
999
|
+
/* @ Datepicker
|
|
1000
|
+
/* -------------------------------------------------------------------------- */
|
|
1001
|
+
|
|
1002
|
+
|
|
1003
|
+
/* -------------------------------------------------------------------------- */
|
|
1004
|
+
/* @ Icon
|
|
1005
|
+
/* -------------------------------------------------------------------------- */
|
|
1006
|
+
.mat-icon {
|
|
1007
|
+
display: inline-flex !important;
|
|
1008
|
+
align-items: center;
|
|
1009
|
+
justify-content: center;
|
|
1010
|
+
width: 24px;
|
|
1011
|
+
min-width: 24px;
|
|
1012
|
+
height: 24px;
|
|
1013
|
+
min-height: 24px;
|
|
1014
|
+
font-size: 24px;
|
|
1015
|
+
line-height: 24px;
|
|
1016
|
+
-webkit-appearance: none !important;
|
|
1017
|
+
}
|
|
1018
|
+
|
|
1019
|
+
/* -------------------------------------------------------------------------- */
|
|
1020
|
+
/* @ Inputs
|
|
1021
|
+
/* -------------------------------------------------------------------------- */
|
|
1022
|
+
.mat-mdc-input-element {
|
|
1023
|
+
|
|
1024
|
+
&::placeholder {
|
|
1025
|
+
transition: none !important;
|
|
1026
|
+
@apply text-hint #{'!important'};
|
|
1027
|
+
}
|
|
1028
|
+
|
|
1029
|
+
&::-moz-placeholder {
|
|
1030
|
+
transition: none !important;
|
|
1031
|
+
@apply text-hint #{'!important'};
|
|
1032
|
+
}
|
|
1033
|
+
|
|
1034
|
+
&::-webkit-input-placeholder {
|
|
1035
|
+
transition: none !important;
|
|
1036
|
+
@apply text-hint #{'!important'};
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1039
|
+
&:-ms-input-placeholder {
|
|
1040
|
+
transition: none !important;
|
|
1041
|
+
@apply text-hint #{'!important'};
|
|
1042
|
+
}
|
|
1043
|
+
}
|
|
1044
|
+
|
|
1045
|
+
/* Invalid */
|
|
1046
|
+
.mat-form-field-invalid {
|
|
1047
|
+
|
|
1048
|
+
.mat-mdc-input-element {
|
|
1049
|
+
|
|
1050
|
+
/* Placeholder color */
|
|
1051
|
+
&::placeholder {
|
|
1052
|
+
@apply text-warn #{'!important'};
|
|
1053
|
+
}
|
|
1054
|
+
|
|
1055
|
+
&::-moz-placeholder {
|
|
1056
|
+
@apply text-warn #{'!important'};
|
|
1057
|
+
}
|
|
1058
|
+
|
|
1059
|
+
&::-webkit-input-placeholder {
|
|
1060
|
+
@apply text-warn #{'!important'};
|
|
1061
|
+
}
|
|
1062
|
+
|
|
1063
|
+
&:-ms-input-placeholder {
|
|
1064
|
+
@apply text-warn #{'!important'};
|
|
1065
|
+
}
|
|
1066
|
+
}
|
|
1067
|
+
}
|
|
1068
|
+
|
|
1069
|
+
/* -------------------------------------------------------------------------- */
|
|
1070
|
+
/* @ Menu
|
|
1071
|
+
/* -------------------------------------------------------------------------- */
|
|
1072
|
+
.mat-mdc-menu-panel {
|
|
1073
|
+
min-width: 144px !important;
|
|
1074
|
+
|
|
1075
|
+
.mat-mdc-menu-content {
|
|
1076
|
+
|
|
1077
|
+
.mat-mdc-menu-item {
|
|
1078
|
+
display: flex;
|
|
1079
|
+
align-items: center;
|
|
1080
|
+
|
|
1081
|
+
>span {
|
|
1082
|
+
display: inline-flex;
|
|
1083
|
+
align-items: center;
|
|
1084
|
+
}
|
|
1085
|
+
|
|
1086
|
+
&.mat-mdc-menu-item-submenu-trigger {
|
|
1087
|
+
padding-right: 40px;
|
|
1088
|
+
}
|
|
1089
|
+
|
|
1090
|
+
.mat-icon {
|
|
1091
|
+
margin-right: 12px;
|
|
1092
|
+
}
|
|
1093
|
+
|
|
1094
|
+
.mat-icon-no-color {
|
|
1095
|
+
--tw-text-opacity: 1;
|
|
1096
|
+
color: rgba(var(--cmat-icon-rgb), var(--tw-text-opacity));
|
|
1097
|
+
}
|
|
1098
|
+
}
|
|
1099
|
+
|
|
1100
|
+
/* Divider within mat-menu */
|
|
1101
|
+
mat-divider {
|
|
1102
|
+
margin: 8px 0;
|
|
1103
|
+
}
|
|
1104
|
+
}
|
|
1105
|
+
}
|
|
1106
|
+
|
|
1107
|
+
/* -------------------------------------------------------------------------- */
|
|
1108
|
+
/* @ Paginator
|
|
1109
|
+
/* -------------------------------------------------------------------------- */
|
|
1110
|
+
.mat-mdc-paginator {
|
|
1111
|
+
|
|
1112
|
+
.mat-mdc-paginator-container {
|
|
1113
|
+
padding: 8px 16px;
|
|
1114
|
+
justify-content: space-between;
|
|
1115
|
+
|
|
1116
|
+
@screen sm {
|
|
1117
|
+
justify-content: normal;
|
|
1118
|
+
}
|
|
1119
|
+
|
|
1120
|
+
/* Page size select */
|
|
1121
|
+
.mat-mdc-paginator-page-size {
|
|
1122
|
+
align-items: center;
|
|
1123
|
+
min-height: 40px;
|
|
1124
|
+
margin: 8px;
|
|
1125
|
+
|
|
1126
|
+
.mat-mdc-paginator-page-size-label {
|
|
1127
|
+
display: none;
|
|
1128
|
+
margin-right: 12px;
|
|
1129
|
+
|
|
1130
|
+
@screen sm {
|
|
1131
|
+
display: block;
|
|
1132
|
+
}
|
|
1133
|
+
}
|
|
1134
|
+
|
|
1135
|
+
.mat-mdc-paginator-page-size-select {
|
|
1136
|
+
margin: 0;
|
|
1137
|
+
|
|
1138
|
+
.mat-mdc-text-field-wrapper {
|
|
1139
|
+
padding: 0 10px;
|
|
1140
|
+
|
|
1141
|
+
.mat-form-field-flex {
|
|
1142
|
+
min-height: 32px;
|
|
1143
|
+
}
|
|
1144
|
+
}
|
|
1145
|
+
}
|
|
1146
|
+
}
|
|
1147
|
+
|
|
1148
|
+
/* Range actions */
|
|
1149
|
+
.mat-mdc-paginator-range-actions {
|
|
1150
|
+
margin: 8px 0;
|
|
1151
|
+
|
|
1152
|
+
.mat-mdc-paginator-range-label {
|
|
1153
|
+
margin-right: 16px;
|
|
1154
|
+
}
|
|
1155
|
+
}
|
|
1156
|
+
}
|
|
1157
|
+
}
|
|
1158
|
+
|
|
1159
|
+
/* -------------------------------------------------------------------------- */
|
|
1160
|
+
/* @ Select
|
|
1161
|
+
/* -------------------------------------------------------------------------- */
|
|
1162
|
+
.mat-mdc-select {
|
|
1163
|
+
display: inline-flex !important;
|
|
1164
|
+
|
|
1165
|
+
.mat-mdc-select-placeholder {
|
|
1166
|
+
transition: none !important;
|
|
1167
|
+
@apply text-hint #{'!important'};
|
|
1168
|
+
}
|
|
1169
|
+
|
|
1170
|
+
.mat-mdc-select-trigger {
|
|
1171
|
+
|
|
1172
|
+
.mat-mdc-select-value {
|
|
1173
|
+
position: relative;
|
|
1174
|
+
display: flex;
|
|
1175
|
+
max-width: none;
|
|
1176
|
+
|
|
1177
|
+
.mat-mdc-select-value-text {
|
|
1178
|
+
display: inline-flex;
|
|
1179
|
+
|
|
1180
|
+
>* {
|
|
1181
|
+
overflow: hidden;
|
|
1182
|
+
white-space: nowrap;
|
|
1183
|
+
text-overflow: ellipsis;
|
|
1184
|
+
}
|
|
1185
|
+
}
|
|
1186
|
+
}
|
|
1187
|
+
}
|
|
1188
|
+
|
|
1189
|
+
.mat-mdc-select-arrow-wrapper {
|
|
1190
|
+
transform: translateY(0) !important;
|
|
1191
|
+
|
|
1192
|
+
.mat-mdc-select-arrow {
|
|
1193
|
+
margin: 0 0 0 8px;
|
|
1194
|
+
}
|
|
1195
|
+
}
|
|
1196
|
+
}
|
|
1197
|
+
|
|
1198
|
+
/* -------------------------------------------------------------------------- */
|
|
1199
|
+
/* @ Slide Toggle
|
|
1200
|
+
/* -------------------------------------------------------------------------- */
|
|
1201
|
+
|
|
1202
|
+
|
|
1203
|
+
/* -------------------------------------------------------------------------- */
|
|
1204
|
+
/* @ Stepper
|
|
1205
|
+
/* -------------------------------------------------------------------------- */
|
|
1206
|
+
.mat-step-icon {
|
|
1207
|
+
|
|
1208
|
+
/* Do not override the mat-icon color */
|
|
1209
|
+
.mat-icon {
|
|
1210
|
+
color: currentColor !important;
|
|
1211
|
+
}
|
|
1212
|
+
}
|
|
1213
|
+
|
|
1214
|
+
.mat-step-label,
|
|
1215
|
+
.mat-step-label-selected {
|
|
1216
|
+
font-weight: 500 !important;
|
|
1217
|
+
}
|
|
1218
|
+
|
|
1219
|
+
/* -------------------------------------------------------------------------- */
|
|
1220
|
+
/* @ Table
|
|
1221
|
+
/* -------------------------------------------------------------------------- */
|
|
1222
|
+
.mat-mdc-table tbody, .mat-mdc-table tfoot, .mat-mdc-table thead, .mat-mdc-cell, .mat-mdc-footer-cell, .mat-mdc-header-row, .mat-mdc-row, .mat-mdc-footer-row, .mat-mdc-table .mat-mdc-header-cell{
|
|
1223
|
+
background: initial !important;
|
|
1224
|
+
}
|
|
1225
|
+
.mat-mdc-table {
|
|
1226
|
+
.mat-mdc-header-row{
|
|
1227
|
+
@apply shadow text-md font-bold text-secondary;
|
|
1228
|
+
|
|
1229
|
+
.mat-mdc-header-cell{
|
|
1230
|
+
@apply bg-gray-50 dark:bg-black dark:bg-opacity-5 #{'!important'};
|
|
1231
|
+
}
|
|
1232
|
+
}
|
|
1233
|
+
|
|
1234
|
+
.mat-mdc-row{
|
|
1235
|
+
&:nth-child(even) {
|
|
1236
|
+
@apply bg-slate-50 dark:bg-black dark:bg-opacity-5 #{'!important'};
|
|
1237
|
+
}
|
|
1238
|
+
&:hover{
|
|
1239
|
+
@apply bg-slate-100 dark:bg-black dark:bg-opacity-10 #{'!important'};
|
|
1240
|
+
}
|
|
1241
|
+
}
|
|
1242
|
+
}
|
|
1243
|
+
|
|
1244
|
+
/* -------------------------------------------------------------------------- */
|
|
1245
|
+
/* @ Tabs
|
|
1246
|
+
/* -------------------------------------------------------------------------- */
|
|
1247
|
+
.mat-mdc-tab-group {
|
|
1248
|
+
|
|
1249
|
+
/* No header */
|
|
1250
|
+
&.cmat-no-header {
|
|
1251
|
+
|
|
1252
|
+
.mat-mdc-tab-header {
|
|
1253
|
+
height: 0 !important;
|
|
1254
|
+
max-height: 0 !important;
|
|
1255
|
+
border: none !important;
|
|
1256
|
+
visibility: hidden !important;
|
|
1257
|
+
opacity: 0 !important;
|
|
1258
|
+
}
|
|
1259
|
+
}
|
|
1260
|
+
|
|
1261
|
+
&:not(.mat-background-primary):not(.mat-background-accent) {
|
|
1262
|
+
|
|
1263
|
+
.mat-mdc-tab-header {
|
|
1264
|
+
|
|
1265
|
+
.mat-mdc-tab-label-container {
|
|
1266
|
+
box-shadow: inset 0 -1px var(--cmat-border);
|
|
1267
|
+
}
|
|
1268
|
+
}
|
|
1269
|
+
}
|
|
1270
|
+
}
|
|
1271
|
+
|
|
1272
|
+
.tab-custom-overflow .mat-mdc-tab-body-wrapper {
|
|
1273
|
+
overflow: visible !important;
|
|
1274
|
+
height: 100%;
|
|
1275
|
+
}
|
|
1276
|
+
.tab-custom-overflow .mat-mdc-tab-body-active {
|
|
1277
|
+
overflow: visible !important;
|
|
1278
|
+
}
|
|
1279
|
+
.tab-custom-overflow .mat-mdc-tab-body-content {
|
|
1280
|
+
overflow: visible !important;
|
|
1281
|
+
padding-bottom: 0 !important;
|
|
1282
|
+
}
|
|
1283
|
+
.mat-mdc-tab-header.mat-mdc-tab-nav-bar-stretch-tabs .mat-mdc-tab-link {
|
|
1284
|
+
flex-grow:0 !important;
|
|
1285
|
+
}
|
|
1286
|
+
|
|
1287
|
+
/* -------------------------------------------------------------------------- */
|
|
1288
|
+
/* @ Textarea
|
|
1289
|
+
/* -------------------------------------------------------------------------- */
|
|
1290
|
+
textarea.mat-mdc-input-element {
|
|
1291
|
+
box-sizing: content-box !important;
|
|
1292
|
+
}
|
|
1293
|
+
|
|
1294
|
+
/* -------------------------------------------------------------------------- */
|
|
1295
|
+
/* @ Toolbar
|
|
1296
|
+
/* -------------------------------------------------------------------------- */
|
|
1297
|
+
.mat-toolbar {
|
|
1298
|
+
|
|
1299
|
+
/* Apply primary contrast color */
|
|
1300
|
+
&.mat-primary {
|
|
1301
|
+
|
|
1302
|
+
.mat-icon {
|
|
1303
|
+
@apply text-on-primary #{'!important'};
|
|
1304
|
+
}
|
|
1305
|
+
|
|
1306
|
+
.text-secondary {
|
|
1307
|
+
@apply text-on-primary text-opacity-60 #{'!important'};
|
|
1308
|
+
}
|
|
1309
|
+
|
|
1310
|
+
.text-hint {
|
|
1311
|
+
@apply text-on-primary text-opacity-38 #{'!important'};
|
|
1312
|
+
}
|
|
1313
|
+
|
|
1314
|
+
.text-disabled {
|
|
1315
|
+
@apply text-on-primary text-opacity-38 #{'!important'};
|
|
1316
|
+
}
|
|
1317
|
+
|
|
1318
|
+
.divider {
|
|
1319
|
+
@apply text-on-primary text-opacity-12 #{'!important'};
|
|
1320
|
+
}
|
|
1321
|
+
}
|
|
1322
|
+
|
|
1323
|
+
/* Apply accent contrast color */
|
|
1324
|
+
&.mat-accent {
|
|
1325
|
+
|
|
1326
|
+
.mat-icon {
|
|
1327
|
+
@apply text-on-accent #{'!important'};
|
|
1328
|
+
}
|
|
1329
|
+
|
|
1330
|
+
.text-secondary {
|
|
1331
|
+
@apply text-on-accent text-opacity-60 #{'!important'};
|
|
1332
|
+
}
|
|
1333
|
+
|
|
1334
|
+
.text-hint {
|
|
1335
|
+
@apply text-on-accent text-opacity-38 #{'!important'};
|
|
1336
|
+
}
|
|
1337
|
+
|
|
1338
|
+
.text-disabled {
|
|
1339
|
+
@apply text-on-accent text-opacity-38 #{'!important'};
|
|
1340
|
+
}
|
|
1341
|
+
|
|
1342
|
+
.divider {
|
|
1343
|
+
@apply text-on-accent text-opacity-12 #{'!important'};
|
|
1344
|
+
}
|
|
1345
|
+
}
|
|
1346
|
+
|
|
1347
|
+
/* Apply warn contrast color */
|
|
1348
|
+
&.mat-warn {
|
|
1349
|
+
|
|
1350
|
+
.mat-icon {
|
|
1351
|
+
@apply text-on-warn #{'!important'};
|
|
1352
|
+
}
|
|
1353
|
+
|
|
1354
|
+
.text-secondary {
|
|
1355
|
+
@apply text-on-warn text-opacity-60 #{'!important'};
|
|
1356
|
+
}
|
|
1357
|
+
|
|
1358
|
+
.text-hint {
|
|
1359
|
+
@apply text-on-warn text-opacity-38 #{'!important'};
|
|
1360
|
+
}
|
|
1361
|
+
|
|
1362
|
+
.text-disabled {
|
|
1363
|
+
@apply text-on-warn text-opacity-38 #{'!important'};
|
|
1364
|
+
}
|
|
1365
|
+
|
|
1366
|
+
.divider {
|
|
1367
|
+
@apply text-on-warn text-opacity-12 #{'!important'};
|
|
1368
|
+
}
|
|
1369
|
+
}
|
|
1370
|
+
}
|
|
1371
|
+
|
|
1372
|
+
.mat-mdc-list{
|
|
1373
|
+
.mdc-list-item__content{
|
|
1374
|
+
height: 100%;
|
|
1375
|
+
|
|
1376
|
+
.mdc-list-item__primary-text{
|
|
1377
|
+
width:100%;
|
|
1378
|
+
height: 100%;
|
|
1379
|
+
display: flex;
|
|
1380
|
+
flex-direction: column;
|
|
1381
|
+
justify-content: center;
|
|
1382
|
+
color:currentColor;
|
|
1383
|
+
}
|
|
1384
|
+
}
|
|
1385
|
+
}
|
|
1386
|
+
|
|
1387
|
+
.mat-mdc-nav-list{
|
|
1388
|
+
.mdc-list-item__content{
|
|
1389
|
+
height: 100%;
|
|
1390
|
+
|
|
1391
|
+
.mdc-list-item__primary-text{
|
|
1392
|
+
width: 100%;
|
|
1393
|
+
height: 100%;
|
|
1394
|
+
display: flex;
|
|
1395
|
+
align-items: center;
|
|
1396
|
+
color:currentColor;
|
|
1397
|
+
}
|
|
1398
|
+
}
|
|
1399
|
+
}
|
|
1400
|
+
|
|
1401
|
+
.mat-mdc-header-cell{
|
|
1402
|
+
z-index: 10 !important;
|
|
1403
|
+
}
|