cmat 0.0.3 → 0.0.4
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/components/breadcrumb/breadcrumb.component.d.ts +18 -20
- package/components/card/card.component.d.ts +0 -5
- package/components/cascade/cascade-list/cascade-list.component.d.ts +12 -9
- package/components/cascade/cascade-menu/cascade-menu.component.d.ts +0 -1
- package/components/chip-input/chip-input.component.d.ts +34 -0
- package/components/chip-input/index.d.ts +5 -0
- package/components/chip-input/public-api.d.ts +1 -0
- package/components/date-range/date-range.component.d.ts +3 -2
- package/components/json-editor/index.d.ts +5 -0
- package/components/json-editor/json-editor.component.d.ts +25 -0
- package/components/json-editor/public-api.d.ts +1 -0
- package/components/navigation/vertical/components/aside/aside.component.d.ts +2 -5
- package/components/navigation/vertical/components/basic/basic.component.d.ts +2 -5
- package/components/navigation/vertical/components/collapsable/collapsable.component.d.ts +2 -5
- package/components/navigation/vertical/components/divider/divider.component.d.ts +2 -5
- package/components/navigation/vertical/components/group/group.component.d.ts +2 -5
- package/components/navigation/vertical/components/spacer/spacer.component.d.ts +2 -5
- package/components/navigation/vertical/vertical.component.d.ts +1 -4
- package/components/progress-bar/progress-bar.component.d.ts +3 -2
- package/components/rating/rating.component.d.ts +3 -2
- package/components/select-search/select-search.component.d.ts +1 -2
- package/components/select-tree/select-tree.component.d.ts +5 -12
- package/components/timeline/timeline-item/timeline-item.component.d.ts +1 -1
- package/components/transfer-picker/interface.d.ts +1 -1
- package/components/transfer-picker/transfer-picker-source/transfer-picker-source.component.d.ts +4 -4
- package/components/transfer-picker/transfer-picker.service.d.ts +2 -1
- package/directives/autofocus/autofocus.directive.d.ts +1 -3
- package/directives/debounce/debounce-keyup.directive.d.ts +1 -1
- package/directives/digit-only/digit-only.directive.d.ts +2 -0
- package/esm2022/animations/dropdown.mjs +26 -0
- package/esm2022/animations/public-api.mjs +2 -2
- package/esm2022/components/adapter/dayjs-date-adapter.mjs +3 -3
- package/esm2022/components/adapter/dayjs-datetime-adapter.mjs +3 -3
- package/esm2022/components/adapter/native-datetime-adapter.mjs +3 -3
- package/esm2022/components/breadcrumb/breadcrumb-item.directive.mjs +3 -3
- package/esm2022/components/breadcrumb/breadcrumb.component.mjs +16 -17
- package/esm2022/components/breadcrumb/breadcrumb.service.mjs +4 -4
- package/esm2022/components/card/card.component.mjs +5 -14
- package/esm2022/components/cascade/cascade-bottom-sheet/cascade-bottom-sheet.component.mjs +5 -6
- package/esm2022/components/cascade/cascade-list/cascade-list.component.mjs +65 -39
- package/esm2022/components/cascade/cascade-menu/cascade-menu.component.mjs +5 -9
- package/esm2022/components/chip-input/chip-input.component.mjs +144 -0
- package/esm2022/components/chip-input/cmat-components-chip-input.mjs +5 -0
- package/esm2022/components/chip-input/public-api.mjs +2 -0
- package/esm2022/components/date-range/date-range.component.mjs +13 -9
- package/esm2022/components/drawer/drawer.component.mjs +4 -4
- package/esm2022/components/drawer/drawer.service.mjs +3 -3
- package/esm2022/components/fullscreen/fullscreen.component.mjs +3 -3
- package/esm2022/components/highlight/highlight.component.mjs +3 -3
- package/esm2022/components/highlight/highlight.service.mjs +3 -3
- package/esm2022/components/json-editor/cmat-components-json-editor.mjs +5 -0
- package/esm2022/components/json-editor/json-editor.component.mjs +176 -0
- package/esm2022/components/json-editor/public-api.mjs +2 -0
- package/esm2022/components/masonry/masonry.component.mjs +3 -3
- package/esm2022/components/material-color-picker/material-color-picker.component.mjs +6 -6
- package/esm2022/components/material-datetimepicker/calendar-body.mjs +5 -6
- package/esm2022/components/material-datetimepicker/calendar.mjs +7 -8
- package/esm2022/components/material-datetimepicker/clock.mjs +6 -6
- package/esm2022/components/material-datetimepicker/datetimepicker-input.mjs +3 -3
- package/esm2022/components/material-datetimepicker/datetimepicker-intl.mjs +3 -3
- package/esm2022/components/material-datetimepicker/datetimepicker-toggle.mjs +8 -9
- package/esm2022/components/material-datetimepicker/datetimepicker.mjs +7 -7
- package/esm2022/components/material-datetimepicker/month-view.mjs +5 -6
- package/esm2022/components/material-datetimepicker/multi-year-view.mjs +3 -3
- package/esm2022/components/material-datetimepicker/time.mjs +8 -9
- package/esm2022/components/material-datetimepicker/year-view.mjs +3 -3
- package/esm2022/components/navigation/horizontal/components/basic/basic.component.mjs +6 -6
- package/esm2022/components/navigation/horizontal/components/branch/branch.component.mjs +7 -8
- package/esm2022/components/navigation/horizontal/components/divider/divider.component.mjs +3 -3
- package/esm2022/components/navigation/horizontal/components/spacer/spacer.component.mjs +3 -3
- package/esm2022/components/navigation/horizontal/horizontal.component.mjs +5 -6
- package/esm2022/components/navigation/navigation.service.mjs +3 -3
- package/esm2022/components/navigation/vertical/components/aside/aside.component.mjs +8 -17
- package/esm2022/components/navigation/vertical/components/basic/basic.component.mjs +7 -15
- package/esm2022/components/navigation/vertical/components/collapsable/collapsable.component.mjs +8 -19
- package/esm2022/components/navigation/vertical/components/divider/divider.component.mjs +6 -15
- package/esm2022/components/navigation/vertical/components/group/group.component.mjs +9 -19
- package/esm2022/components/navigation/vertical/components/spacer/spacer.component.mjs +6 -15
- package/esm2022/components/navigation/vertical/vertical.component.mjs +7 -18
- package/esm2022/components/pagination/pagination.component.mjs +6 -7
- package/esm2022/components/pagination/pagination.directive.mjs +3 -3
- package/esm2022/components/pagination/pagination.pipe.mjs +5 -5
- package/esm2022/components/pagination/pagination.service.mjs +3 -3
- package/esm2022/components/password-strength/mat-pass-toggle-visibility/mat-pass-toggle-visibility.component.mjs +3 -3
- package/esm2022/components/password-strength/mat-password-strength/mat-password-strength.component.mjs +6 -6
- package/esm2022/components/password-strength/mat-password-strength-info/mat-password-strength-info.component.mjs +8 -9
- package/esm2022/components/popover/popover.component.mjs +5 -5
- package/esm2022/components/progress-bar/progress-bar.component.mjs +11 -8
- package/esm2022/components/rating/rating.component.mjs +14 -6
- package/esm2022/components/select-search/select-no-entries-found.directive.mjs +3 -3
- package/esm2022/components/select-search/select-search-clear.directive.mjs +3 -3
- package/esm2022/components/select-search/select-search.component.mjs +8 -11
- package/esm2022/components/select-tree/select-tree.component.mjs +13 -29
- package/esm2022/components/timeline/timeline-item/timeline-item.component.mjs +18 -16
- package/esm2022/components/timeline/timeline.component.mjs +3 -3
- package/esm2022/components/toast/toast-modal.component.mjs +7 -7
- package/esm2022/components/toast/toast.component.mjs +6 -6
- package/esm2022/components/toast/toast.service.mjs +3 -3
- package/esm2022/components/transfer-picker/filter/filter.component.mjs +17 -8
- package/esm2022/components/transfer-picker/interface.mjs +1 -1
- package/esm2022/components/transfer-picker/search/search.component.mjs +9 -5
- package/esm2022/components/transfer-picker/transfer-picker-source/transfer-picker-source.component.mjs +44 -21
- package/esm2022/components/transfer-picker/transfer-picker-target/transfer-picker-target.component.mjs +7 -6
- package/esm2022/components/transfer-picker/transfer-picker.component.mjs +9 -7
- package/esm2022/components/transfer-picker/transfer-picker.service.mjs +10 -7
- package/esm2022/directives/animate-on-scroll/animate-on-scroll.directive.mjs +3 -3
- package/esm2022/directives/animate-on-scroll/scroll.service.mjs +3 -3
- package/esm2022/directives/autofocus/autofocus.directive.mjs +7 -7
- package/esm2022/directives/debounce/abstract-debounce.directive.mjs +3 -3
- package/esm2022/directives/debounce/debounce-click.directive.mjs +3 -3
- package/esm2022/directives/debounce/debounce-keyup.directive.mjs +5 -5
- package/esm2022/directives/digit-only/digit-only.directive.mjs +20 -4
- package/esm2022/directives/digit-only/mask.directive.mjs +3 -3
- package/esm2022/directives/digit-only/public-api.mjs +1 -1
- package/esm2022/directives/equal-validator/equal-validator.directive.mjs +3 -3
- package/esm2022/lib/mock-api/mock-api.interceptor.mjs +3 -3
- package/esm2022/lib/mock-api/mock-api.service.mjs +3 -3
- package/esm2022/pipes/bytes/bytes.pipe.mjs +3 -3
- package/esm2022/pipes/date-format/date-format.pipe.mjs +3 -3
- package/esm2022/pipes/find-by-key/find-by-key.pipe.mjs +3 -3
- package/esm2022/pipes/group-by/group-by.pipe.mjs +3 -3
- package/esm2022/pipes/keys/keys.pipe.mjs +3 -3
- package/esm2022/pipes/secure/secure-pipe.mjs +5 -5
- package/esm2022/pipes/uppercase/uppercase.pipe.mjs +3 -3
- package/esm2022/services/alert/alert.service.mjs +16 -16
- package/esm2022/services/config/config.constants.mjs +1 -1
- package/esm2022/services/config/config.service.mjs +3 -3
- package/esm2022/services/config/urlStateConfig.service.mjs +4 -4
- package/esm2022/services/confirmation/confirmation.service.mjs +3 -3
- package/esm2022/services/confirmation/dialog/dialog.component.mjs +6 -6
- package/esm2022/services/data/data.service.mjs +4 -4
- package/esm2022/services/loading/loading.interceptor.mjs +3 -3
- package/esm2022/services/loading/loading.service.mjs +3 -3
- package/esm2022/services/local-storage/local-storage.service.mjs +3 -3
- package/esm2022/services/media-watcher/media-watcher.service.mjs +3 -3
- package/esm2022/services/platform/platform.service.mjs +3 -3
- package/esm2022/services/splash-screen/splash-screen.service.mjs +3 -3
- package/esm2022/services/title/title.service.mjs +3 -3
- package/esm2022/services/translation/translation.service.mjs +3 -3
- package/esm2022/services/utils/utils.service.mjs +3 -3
- package/fesm2022/cmat-animations.mjs.map +1 -1
- package/fesm2022/cmat-components-adapter.mjs +9 -9
- package/fesm2022/cmat-components-breadcrumb.mjs +21 -22
- package/fesm2022/cmat-components-breadcrumb.mjs.map +1 -1
- package/fesm2022/cmat-components-card.mjs +4 -13
- package/fesm2022/cmat-components-card.mjs.map +1 -1
- package/fesm2022/cmat-components-cascade.mjs +72 -49
- package/fesm2022/cmat-components-cascade.mjs.map +1 -1
- package/fesm2022/cmat-components-chip-input.mjs +151 -0
- package/fesm2022/cmat-components-chip-input.mjs.map +1 -0
- package/fesm2022/cmat-components-date-range.mjs +12 -8
- package/fesm2022/cmat-components-date-range.mjs.map +1 -1
- package/fesm2022/cmat-components-drawer.mjs +7 -7
- package/fesm2022/cmat-components-drawer.mjs.map +1 -1
- package/fesm2022/cmat-components-fullscreen.mjs +3 -3
- package/fesm2022/cmat-components-highlight.mjs +6 -6
- package/fesm2022/cmat-components-json-editor.mjs +183 -0
- package/fesm2022/cmat-components-json-editor.mjs.map +1 -0
- package/fesm2022/cmat-components-masonry.mjs +3 -3
- package/fesm2022/cmat-components-material-color-picker.mjs +5 -5
- package/fesm2022/cmat-components-material-color-picker.mjs.map +1 -1
- package/fesm2022/cmat-components-material-datetimepicker.mjs +51 -52
- package/fesm2022/cmat-components-material-datetimepicker.mjs.map +1 -1
- package/fesm2022/cmat-components-navigation.mjs +58 -125
- package/fesm2022/cmat-components-navigation.mjs.map +1 -1
- package/fesm2022/cmat-components-pagination.mjs +15 -16
- package/fesm2022/cmat-components-pagination.mjs.map +1 -1
- package/fesm2022/cmat-components-password-strength.mjs +14 -15
- package/fesm2022/cmat-components-password-strength.mjs.map +1 -1
- package/fesm2022/cmat-components-popover.mjs +4 -4
- package/fesm2022/cmat-components-popover.mjs.map +1 -1
- package/fesm2022/cmat-components-progress-bar.mjs +10 -7
- package/fesm2022/cmat-components-progress-bar.mjs.map +1 -1
- package/fesm2022/cmat-components-rating.mjs +13 -5
- package/fesm2022/cmat-components-rating.mjs.map +1 -1
- package/fesm2022/cmat-components-select-search.mjs +13 -16
- package/fesm2022/cmat-components-select-search.mjs.map +1 -1
- package/fesm2022/cmat-components-select-tree.mjs +12 -28
- package/fesm2022/cmat-components-select-tree.mjs.map +1 -1
- package/fesm2022/cmat-components-timeline.mjs +21 -19
- package/fesm2022/cmat-components-timeline.mjs.map +1 -1
- package/fesm2022/cmat-components-toast.mjs +13 -13
- package/fesm2022/cmat-components-toast.mjs.map +1 -1
- package/fesm2022/cmat-components-transfer-picker.mjs +81 -45
- package/fesm2022/cmat-components-transfer-picker.mjs.map +1 -1
- package/fesm2022/cmat-directives-animate-on-scroll.mjs +6 -6
- package/fesm2022/cmat-directives-autofocus.mjs +6 -6
- package/fesm2022/cmat-directives-autofocus.mjs.map +1 -1
- package/fesm2022/cmat-directives-debounce.mjs +10 -10
- package/fesm2022/cmat-directives-debounce.mjs.map +1 -1
- package/fesm2022/cmat-directives-digit-only.mjs +22 -6
- package/fesm2022/cmat-directives-digit-only.mjs.map +1 -1
- package/fesm2022/cmat-directives-equal-validator.mjs +3 -3
- package/fesm2022/cmat-lib-mock-api.mjs +6 -6
- package/fesm2022/cmat-pipes-bytes.mjs +3 -3
- package/fesm2022/cmat-pipes-date-format.mjs +3 -3
- package/fesm2022/cmat-pipes-find-by-key.mjs +3 -3
- package/fesm2022/cmat-pipes-group-by.mjs +3 -3
- package/fesm2022/cmat-pipes-keys.mjs +3 -3
- package/fesm2022/cmat-pipes-secure.mjs +4 -4
- package/fesm2022/cmat-pipes-secure.mjs.map +1 -1
- package/fesm2022/cmat-pipes-uppercase.mjs +3 -3
- package/fesm2022/cmat-services-alert.mjs +15 -15
- package/fesm2022/cmat-services-alert.mjs.map +1 -1
- package/fesm2022/cmat-services-config.mjs +6 -6
- package/fesm2022/cmat-services-config.mjs.map +1 -1
- package/fesm2022/cmat-services-confirmation.mjs +8 -8
- package/fesm2022/cmat-services-confirmation.mjs.map +1 -1
- package/fesm2022/cmat-services-data.mjs +3 -3
- package/fesm2022/cmat-services-data.mjs.map +1 -1
- package/fesm2022/cmat-services-loading.mjs +6 -6
- package/fesm2022/cmat-services-local-storage.mjs +3 -3
- package/fesm2022/cmat-services-media-watcher.mjs +3 -3
- package/fesm2022/cmat-services-platform.mjs +3 -3
- package/fesm2022/cmat-services-splash-screen.mjs +3 -3
- package/fesm2022/cmat-services-title.mjs +3 -3
- package/fesm2022/cmat-services-translation.mjs +3 -3
- package/fesm2022/cmat-services-utils.mjs +3 -3
- package/package.json +75 -65
- package/pipes/secure/secure-pipe.d.ts +1 -1
- package/services/alert/alert.service.d.ts +4 -4
- package/services/config/config.constants.d.ts +1 -1
- package/services/config/urlStateConfig.service.d.ts +3 -2
- package/styles/components/bundle.scss +559 -0
- package/styles/overrides/angular-material.scss +16 -16
- package/styles/styles.scss +6 -1
- package/styles/tailwind.scss +4 -2
- package/components/breadcrumb/breadcrumb.component.scss +0 -18
- package/components/card/card.component.scss +0 -63
- package/components/cascade/cascade-bottom-sheet/cascade-bottom-sheet.component.scss +0 -43
- package/components/cascade/cascade-list/cascade-list.component.scss +0 -22
- package/components/cascade/cascade-menu/cascade-menu.component.scss +0 -48
- package/components/date-range/date-range.component.scss +0 -232
- package/components/drawer/drawer.component.scss +0 -133
- package/components/highlight/highlight.component.scss +0 -3
- package/components/material-color-picker/material-color-picker.component.scss +0 -5
- package/components/material-datetimepicker/calendar-body.scss +0 -58
- package/components/material-datetimepicker/calendar.scss +0 -194
- package/components/material-datetimepicker/clock.scss +0 -90
- package/components/material-datetimepicker/datetimepicker-content.scss +0 -151
- package/components/material-datetimepicker/datetimepicker.scss +0 -145
- package/components/material-datetimepicker/time.scss +0 -82
- package/components/navigation/horizontal/horizontal.component.scss +0 -167
- package/components/navigation/vertical/styles/appearances/compact.scss +0 -103
- package/components/navigation/vertical/styles/appearances/default.scss +0 -550
- package/components/navigation/vertical/styles/appearances/dense.scss +0 -171
- package/components/navigation/vertical/styles/appearances/thin.scss +0 -91
- package/components/navigation/vertical/vertical.component.scss +0 -4
- package/components/password-strength/mat-password-strength-info/mat-password-strength-info.component.scss +0 -19
- package/components/popover/popover.component.scss +0 -174
- package/components/progress-bar/progress-bar.component.scss +0 -7
- package/components/rating/rating.component.scss +0 -33
- package/components/select-search/select-search.component.scss +0 -126
- package/components/select-tree/select-tree.component.scss +0 -54
- package/components/timeline/timeline-item/timeline-item.component.scss +0 -329
- package/components/timeline/timeline.component.scss +0 -42
- package/components/toast/toast-modal.component.scss +0 -119
- package/components/toast/toast.component.scss +0 -62
- package/components/transfer-picker/filter/filter.component.scss +0 -40
- package/components/transfer-picker/search/search.component.scss +0 -7
- package/components/transfer-picker/transfer-picker-source/transfer-picker-source.component.scss +0 -25
- package/components/transfer-picker/transfer-picker-target/transfer-picker-target.component.scss +0 -27
- package/components/transfer-picker/transfer-picker.component.scss +0 -8
- package/esm2022/animations/drop.mjs +0 -26
- package/styles/main.scss +0 -9
- /package/animations/{drop.d.ts → dropdown.d.ts} +0 -0
|
@@ -1,91 +0,0 @@
|
|
|
1
|
-
/* Variables */
|
|
2
|
-
$cmat-vertical-navigation-thin-width: 80;
|
|
3
|
-
|
|
4
|
-
cmat-vertical-navigation {
|
|
5
|
-
/* Thin appearance overrides */
|
|
6
|
-
&.cmat-vertical-navigation-appearance-thin {
|
|
7
|
-
width: #{$cmat-vertical-navigation-thin-width}px;
|
|
8
|
-
min-width: #{$cmat-vertical-navigation-thin-width}px;
|
|
9
|
-
max-width: #{$cmat-vertical-navigation-thin-width}px;
|
|
10
|
-
|
|
11
|
-
/* Left positioned */
|
|
12
|
-
&.cmat-vertical-navigation-position-left {
|
|
13
|
-
&.cmat-vertical-navigation-mode-side {
|
|
14
|
-
margin-left: -#{$cmat-vertical-navigation-thin-width}px;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
&.cmat-vertical-navigation-opened {
|
|
18
|
-
margin-left: 0;
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
/* Right positioned */
|
|
23
|
-
&.cmat-vertical-navigation-position-right {
|
|
24
|
-
&.cmat-vertical-navigation-mode-side {
|
|
25
|
-
margin-right: -#{$cmat-vertical-navigation-thin-width}px;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
&.cmat-vertical-navigation-opened {
|
|
29
|
-
margin-right: 0;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.cmat-vertical-navigation-aside-wrapper {
|
|
33
|
-
left: auto;
|
|
34
|
-
right: #{$cmat-vertical-navigation-thin-width}px;
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
/* Wrapper */
|
|
39
|
-
.cmat-vertical-navigation-wrapper {
|
|
40
|
-
/* Content */
|
|
41
|
-
.cmat-vertical-navigation-content {
|
|
42
|
-
> cmat-vertical-navigation-aside-item,
|
|
43
|
-
> cmat-vertical-navigation-basic-item {
|
|
44
|
-
flex-direction: column;
|
|
45
|
-
justify-content: center;
|
|
46
|
-
height: 64px;
|
|
47
|
-
min-height: 64px;
|
|
48
|
-
max-height: 64px;
|
|
49
|
-
padding: 0 16px;
|
|
50
|
-
|
|
51
|
-
.cmat-vertical-navigation-item-wrapper {
|
|
52
|
-
display: flex;
|
|
53
|
-
align-items: center;
|
|
54
|
-
justify-content: center;
|
|
55
|
-
|
|
56
|
-
.cmat-vertical-navigation-item {
|
|
57
|
-
justify-content: center;
|
|
58
|
-
padding: 12px;
|
|
59
|
-
border-radius: 4px;
|
|
60
|
-
|
|
61
|
-
.cmat-vertical-navigation-item-icon {
|
|
62
|
-
margin: 0;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
.cmat-vertical-navigation-item-arrow,
|
|
66
|
-
.cmat-vertical-navigation-item-badge-content,
|
|
67
|
-
.cmat-vertical-navigation-item-title-wrapper {
|
|
68
|
-
display: none;
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
> cmat-vertical-navigation-collapsable-item {
|
|
75
|
-
display: none;
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
> cmat-vertical-navigation-group-item {
|
|
79
|
-
> .cmat-vertical-navigation-item-wrapper {
|
|
80
|
-
display: none;
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
/* Aside wrapper */
|
|
87
|
-
.cmat-vertical-navigation-aside-wrapper {
|
|
88
|
-
left: #{$cmat-vertical-navigation-thin-width}px;
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
cmat-password-strength-info {
|
|
2
|
-
margin-top: 20px;
|
|
3
|
-
|
|
4
|
-
.mat-mdc-card {
|
|
5
|
-
@apply flex flex-row flex-1 m-2 box-border place-content-stretch items-stretch;
|
|
6
|
-
|
|
7
|
-
.mat-mdc-card-content {
|
|
8
|
-
@apply flex flex-col box-border max-w-full place-content-stretch items-stretch;
|
|
9
|
-
|
|
10
|
-
.mat-icon {
|
|
11
|
-
@apply mr-4;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.info-row {
|
|
15
|
-
@apply flex flex-row box-border items-center;
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
}
|
|
@@ -1,174 +0,0 @@
|
|
|
1
|
-
$arrow-size: 1em; // 16px default
|
|
2
|
-
|
|
3
|
-
.cmat-popover-panel {
|
|
4
|
-
max-height: calc(100vh - 48px);
|
|
5
|
-
@apply p-2 rounded-lg text-lg bg-card;
|
|
6
|
-
|
|
7
|
-
&[class*='cmat-popover-below'] {
|
|
8
|
-
margin-top: calc(#{$arrow-size * .5} + 2px);
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
&[class*='cmat-popover-above'] {
|
|
12
|
-
margin-bottom: calc(#{$arrow-size * .5} + 2px);
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
&[class*='cmat-popover-before'] {
|
|
16
|
-
margin-right: calc(#{$arrow-size * .5} + 2px);
|
|
17
|
-
|
|
18
|
-
[dir='rtl'] & {
|
|
19
|
-
@apply mr-auto;
|
|
20
|
-
margin-left: calc(#{$arrow-size * .5} + 2px);
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
&[class*='cmat-popover-after'] {
|
|
25
|
-
margin-left: calc(#{$arrow-size * .5} + 2px);
|
|
26
|
-
|
|
27
|
-
[dir='rtl'] & {
|
|
28
|
-
@apply ml-auto;
|
|
29
|
-
margin-right: calc(#{$arrow-size * .5} + 2px);
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.cmat-popover-direction-arrow {
|
|
35
|
-
@apply absolute;
|
|
36
|
-
|
|
37
|
-
&::before,
|
|
38
|
-
&::after {
|
|
39
|
-
@apply absolute inline-block border-solid;
|
|
40
|
-
content: "";
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
&::before {
|
|
44
|
-
border-width: $arrow-size * .5;
|
|
45
|
-
border-color: var(--cmat-divider);
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
&::after {
|
|
49
|
-
border-width: calc(#{$arrow-size * .5} - 1px);
|
|
50
|
-
border-color: var(--cmat-bg-card);
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
// Arrow up and down
|
|
55
|
-
|
|
56
|
-
[class*='cmat-popover-below'],
|
|
57
|
-
[class*='cmat-popover-above'] {
|
|
58
|
-
.cmat-popover-direction-arrow {
|
|
59
|
-
width: $arrow-size;
|
|
60
|
-
|
|
61
|
-
&::after {
|
|
62
|
-
left: 1px;
|
|
63
|
-
|
|
64
|
-
[dir='rtl'] & {
|
|
65
|
-
right: 1px;
|
|
66
|
-
left: auto;
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
&::before,
|
|
71
|
-
&::after {
|
|
72
|
-
border-left-color: transparent;
|
|
73
|
-
border-right-color: transparent;
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
[class*='cmat-popover-below'] {
|
|
79
|
-
.cmat-popover-direction-arrow {
|
|
80
|
-
@apply top-0;
|
|
81
|
-
|
|
82
|
-
&::before,
|
|
83
|
-
&::after {
|
|
84
|
-
@apply bottom-0 border-t-0;
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
[class*='cmat-popover-above'] {
|
|
90
|
-
.cmat-popover-direction-arrow {
|
|
91
|
-
@apply bottom-0;
|
|
92
|
-
|
|
93
|
-
&::before,
|
|
94
|
-
&::after {
|
|
95
|
-
@apply top-0 border-b-0;
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
// Arrow left and right
|
|
101
|
-
|
|
102
|
-
[class*='cmat-popover-before'],
|
|
103
|
-
[class*='cmat-popover-after'] {
|
|
104
|
-
.cmat-popover-direction-arrow {
|
|
105
|
-
height: $arrow-size;
|
|
106
|
-
|
|
107
|
-
&::after {
|
|
108
|
-
top: 1px;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
&::before,
|
|
112
|
-
&::after {
|
|
113
|
-
border-top-color: transparent;
|
|
114
|
-
border-bottom-color: transparent;
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
[class*='cmat-popover-before'] {
|
|
120
|
-
.cmat-popover-direction-arrow {
|
|
121
|
-
@apply right-0;
|
|
122
|
-
|
|
123
|
-
&::before,
|
|
124
|
-
&::after {
|
|
125
|
-
@apply left-0 border-r-0;
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
[dir='rtl'] & {
|
|
129
|
-
@apply right-auto left-0;
|
|
130
|
-
|
|
131
|
-
&::before,
|
|
132
|
-
&::after {
|
|
133
|
-
@apply left-auto right-0 border-l-0;
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
&::before {
|
|
137
|
-
border-right-width: $arrow-size * .5;
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
&::after {
|
|
141
|
-
border-right-width: calc(#{$arrow-size * .5} - 1px);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
[class*='cmat-popover-after'] {
|
|
148
|
-
.cmat-popover-direction-arrow {
|
|
149
|
-
@apply left-0;
|
|
150
|
-
|
|
151
|
-
&::before,
|
|
152
|
-
&::after {
|
|
153
|
-
@apply right-0 border-l-0;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
[dir='rtl'] & {
|
|
157
|
-
@apply left-auto right-0;
|
|
158
|
-
|
|
159
|
-
&::before,
|
|
160
|
-
&::after {
|
|
161
|
-
@apply right-auto left-0 border-r-0;
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
&::before {
|
|
165
|
-
border-left-width: $arrow-size * .5;
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
&::after {
|
|
169
|
-
border-left-width: calc(#{$arrow-size * .5} - 1px);
|
|
170
|
-
}
|
|
171
|
-
}
|
|
172
|
-
}
|
|
173
|
-
}
|
|
174
|
-
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
cmat-rating {
|
|
2
|
-
display: flex;
|
|
3
|
-
align-items: center;
|
|
4
|
-
|
|
5
|
-
.cmat-rating-item {
|
|
6
|
-
position: relative;
|
|
7
|
-
cursor: pointer;
|
|
8
|
-
line-height: 0;
|
|
9
|
-
|
|
10
|
-
div {
|
|
11
|
-
display: inline-block;
|
|
12
|
-
font-size: 1rem;
|
|
13
|
-
padding: 0 0.1rem;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.cmat-rating-half {
|
|
17
|
-
position: absolute;
|
|
18
|
-
top: 0;
|
|
19
|
-
left: 0;
|
|
20
|
-
width: 45%;
|
|
21
|
-
z-index: 10;
|
|
22
|
-
opacity: 0;
|
|
23
|
-
overflow: hidden;
|
|
24
|
-
padding-right: 0;
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.cmat-rating-readonly {
|
|
29
|
-
.cmat-rating-item {
|
|
30
|
-
cursor: not-allowed;
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
}
|
|
@@ -1,126 +0,0 @@
|
|
|
1
|
-
$clear-button-width: 40px;
|
|
2
|
-
$multiple-check-width: 33px;
|
|
3
|
-
$mat-option-height: 48px;
|
|
4
|
-
$mat-select-search-clear-x: 4px;
|
|
5
|
-
$mat-select-search-spinner-x: 16px;
|
|
6
|
-
$mat-select-search-toggle-all-checkbox-x: 5px;
|
|
7
|
-
|
|
8
|
-
cmat-select-search {
|
|
9
|
-
.cmat-select-search-hidden {
|
|
10
|
-
visibility: hidden;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.cmat-select-search-inner {
|
|
14
|
-
position: absolute;
|
|
15
|
-
top: 0;
|
|
16
|
-
left: 0;
|
|
17
|
-
width: 100%;
|
|
18
|
-
z-index: 100;
|
|
19
|
-
font-size: inherit;
|
|
20
|
-
box-shadow: none;
|
|
21
|
-
display: flex;
|
|
22
|
-
border-bottom-width: 1px;
|
|
23
|
-
border-bottom-style: solid;
|
|
24
|
-
|
|
25
|
-
&.cmat-select-search-inner-multiple {
|
|
26
|
-
&.cmat-select-search-inner-toggle-all {
|
|
27
|
-
display: flex;
|
|
28
|
-
align-items: center;
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.cmat-input-element {
|
|
33
|
-
flex-basis: auto;
|
|
34
|
-
vertical-align: middle !important;
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
.cmat-select-search-input {
|
|
39
|
-
box-sizing: border-box;
|
|
40
|
-
width: 100%;
|
|
41
|
-
border: none;
|
|
42
|
-
font-family: inherit;
|
|
43
|
-
font-size: inherit;
|
|
44
|
-
color: currentColor;
|
|
45
|
-
outline: none;
|
|
46
|
-
background: none;
|
|
47
|
-
padding: 0 $clear-button-width + $mat-select-search-clear-x 0 16px;
|
|
48
|
-
height: calc($mat-option-height - 1px);
|
|
49
|
-
line-height: calc($mat-option-height - 1px);
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
:host-context([dir="rtl"]) & {
|
|
53
|
-
padding-right: 16px;
|
|
54
|
-
padding-left: $clear-button-width + $mat-select-search-clear-x;
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
.cmat-select-search-no-entries-found {
|
|
59
|
-
padding-top: 8px;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
.cmat-select-search-clear {
|
|
63
|
-
position: absolute;
|
|
64
|
-
right: $mat-select-search-clear-x;
|
|
65
|
-
top: 5px;
|
|
66
|
-
|
|
67
|
-
:host-context([dir="rtl"]) & {
|
|
68
|
-
right: auto;
|
|
69
|
-
left: $mat-select-search-clear-x;
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
.cmat-select-search-spinner {
|
|
74
|
-
position: absolute;
|
|
75
|
-
right: $mat-select-search-spinner-x;
|
|
76
|
-
top: calc(50% - 8px);
|
|
77
|
-
|
|
78
|
-
:host-context([dir="rtl"]) & {
|
|
79
|
-
right: auto;
|
|
80
|
-
left: $mat-select-search-spinner-x;
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
.cmat-select-search-toggle-all-checkbox {
|
|
85
|
-
padding-left: $mat-select-search-toggle-all-checkbox-x;
|
|
86
|
-
padding-bottom: 2px;
|
|
87
|
-
|
|
88
|
-
:host-context([dir="rtl"]) & {
|
|
89
|
-
padding-left: 0;
|
|
90
|
-
padding-right: $mat-select-search-toggle-all-checkbox-x;
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
.mat-mdc-option[aria-disabled="true"].contains-cmat-select-search {
|
|
96
|
-
position: sticky;
|
|
97
|
-
top: 0;
|
|
98
|
-
z-index: 1;
|
|
99
|
-
opacity: 1;
|
|
100
|
-
pointer-events: all;
|
|
101
|
-
background: var(--mat-select-panel-background-color);
|
|
102
|
-
|
|
103
|
-
.mat-icon {
|
|
104
|
-
margin-right: 0;
|
|
105
|
-
margin-left: 0;
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
mat-pseudo-checkbox {
|
|
109
|
-
display: none;
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
.mdc-list-item__primary-text {
|
|
113
|
-
opacity: 1;
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
&.cmat-select-search-no-entries-found {
|
|
117
|
-
height: 2 * $mat-option-height;
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
.cmat-select-search-panel {
|
|
122
|
-
transform: none !important;
|
|
123
|
-
overflow-x: hidden;
|
|
124
|
-
position: relative;
|
|
125
|
-
padding: 0 !important;
|
|
126
|
-
}
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
cmat-select-tree {
|
|
2
|
-
display: block;
|
|
3
|
-
z-index: 101;
|
|
4
|
-
|
|
5
|
-
&.hidden {
|
|
6
|
-
display: none;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.cmat-select-search-inner {
|
|
10
|
-
overflow: hidden;
|
|
11
|
-
position: fixed;
|
|
12
|
-
line-height: 45px;
|
|
13
|
-
@apply flex flex-row;
|
|
14
|
-
|
|
15
|
-
span {
|
|
16
|
-
@apply flex place-items-center;
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.cmat-select-search-no-entries-found {
|
|
21
|
-
@apply w-full text-center bg-card rounded;
|
|
22
|
-
box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .35);
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.cmat-select-search-input {
|
|
26
|
-
padding-top: 0;
|
|
27
|
-
padding-bottom: 0;
|
|
28
|
-
height: 48px;
|
|
29
|
-
line-height: 48px;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.cmat-select-search-clear {
|
|
33
|
-
top: 3px;
|
|
34
|
-
margin: 0 10px;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.cmat-select-search-icon {
|
|
38
|
-
margin-right: 0;
|
|
39
|
-
margin-left: 10px;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.mat-mdc-option-pseudo-checkbox {
|
|
43
|
-
display: none;
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.mat-tree-node {
|
|
48
|
-
@apply hover:bg-hover cursor-pointer;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
.selected {
|
|
52
|
-
@apply text-primary bg-hover #{!important};
|
|
53
|
-
}
|
|
54
|
-
|