cmat 0.0.3 → 0.0.5
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 -2
- package/components/navigation/vertical/components/basic/basic.component.d.ts +2 -2
- package/components/navigation/vertical/components/collapsable/collapsable.component.d.ts +2 -2
- package/components/navigation/vertical/components/divider/divider.component.d.ts +2 -2
- package/components/navigation/vertical/components/group/group.component.d.ts +2 -2
- package/components/navigation/vertical/components/spacer/spacer.component.d.ts +2 -2
- package/components/navigation/vertical/vertical.component.d.ts +2 -2
- 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 +9 -9
- package/esm2022/components/navigation/vertical/components/basic/basic.component.mjs +8 -7
- package/esm2022/components/navigation/vertical/components/collapsable/collapsable.component.mjs +9 -11
- package/esm2022/components/navigation/vertical/components/divider/divider.component.mjs +6 -6
- package/esm2022/components/navigation/vertical/components/group/group.component.mjs +10 -11
- package/esm2022/components/navigation/vertical/components/spacer/spacer.component.mjs +7 -7
- package/esm2022/components/navigation/vertical/vertical.component.mjs +9 -11
- 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 +5 -5
- 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 +70 -74
- 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 +7 -7
- 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 +46 -36
- 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,10 +1,11 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
|
+
import { IUrlStateConfig } from './config.constants';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class CmatUrlStateConfigService {
|
|
4
5
|
private _config;
|
|
5
6
|
constructor();
|
|
6
|
-
get config$(): Observable<
|
|
7
|
-
|
|
7
|
+
get config$(): Observable<IUrlStateConfig>;
|
|
8
|
+
config(value: IUrlStateConfig): void;
|
|
8
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<CmatUrlStateConfigService, never>;
|
|
9
10
|
static ɵprov: i0.ɵɵInjectableDeclaration<CmatUrlStateConfigService>;
|
|
10
11
|
}
|
|
@@ -0,0 +1,559 @@
|
|
|
1
|
+
cmat-card {
|
|
2
|
+
@apply border shadow bg-card m-2 hover:shadow-lg;
|
|
3
|
+
|
|
4
|
+
&.cmat-card-flippable {
|
|
5
|
+
@apply shadow-none;
|
|
6
|
+
|
|
7
|
+
.cmat-card-front,
|
|
8
|
+
.cmat-card-back {
|
|
9
|
+
@apply shadow bg-card;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.cmat-cascade-bottom-sheet {
|
|
15
|
+
.sheet-header {
|
|
16
|
+
.sheet-title {
|
|
17
|
+
@apply text-secondary;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.menu-item {
|
|
22
|
+
@apply outline-none;
|
|
23
|
+
|
|
24
|
+
&.disabled {
|
|
25
|
+
@apply text-disabled;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
&.active {
|
|
29
|
+
@apply text-primary bg-hover;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
&:focus:not(:active),
|
|
33
|
+
&:hover,
|
|
34
|
+
&.active:hover {
|
|
35
|
+
@apply bg-hover;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.cmat-cascade-list {
|
|
41
|
+
&.disabled .cascade-label {
|
|
42
|
+
@apply text-disabled;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.cascade-label {
|
|
46
|
+
span {
|
|
47
|
+
@apply text-secondary;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
cmat-cascade-menu {
|
|
53
|
+
@apply bg-dialog;
|
|
54
|
+
|
|
55
|
+
.menu-item {
|
|
56
|
+
@apply bg-dialog outline-none;
|
|
57
|
+
|
|
58
|
+
&.disabled {
|
|
59
|
+
@apply text-disabled;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
&.active {
|
|
63
|
+
@apply text-primary bg-hover;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
&:focus:not(:active),
|
|
67
|
+
&:hover {
|
|
68
|
+
@apply bg-hover;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
&.active:hover {
|
|
72
|
+
@apply bg-hover;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
&.selected {
|
|
76
|
+
@apply text-secondary bg-default;
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
$control-width: calc((100% - 32px) / 2);
|
|
82
|
+
|
|
83
|
+
cmat-date-range {
|
|
84
|
+
.range {
|
|
85
|
+
.start,
|
|
86
|
+
.end {
|
|
87
|
+
@screen sm {
|
|
88
|
+
max-width: $control-width;
|
|
89
|
+
min-width: $control-width;
|
|
90
|
+
width: $control-width;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
@apply shadow-sm bg-white border-slate-300 dark:bg-black dark:bg-opacity-5 dark:border-slate-500 #{!important};
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.separator {
|
|
98
|
+
@screen sm {
|
|
99
|
+
margin: 0 12px;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.cmat-date-range-panel {
|
|
105
|
+
@apply shadow-2xl bg-card;
|
|
106
|
+
|
|
107
|
+
.start,
|
|
108
|
+
.end {
|
|
109
|
+
.month {
|
|
110
|
+
.month-header {
|
|
111
|
+
.previous-button,
|
|
112
|
+
.next-button {
|
|
113
|
+
.mat-icon {
|
|
114
|
+
@apply icon-size-5;
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.month-label {
|
|
119
|
+
@apply text-secondary;
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
mat-month-view {
|
|
124
|
+
.mat-calendar-table {
|
|
125
|
+
tbody {
|
|
126
|
+
tr {
|
|
127
|
+
td {
|
|
128
|
+
.cmat-date-range {
|
|
129
|
+
&:before {
|
|
130
|
+
@apply bg-primary-200 #{!important};
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.cmat-date-range-start,
|
|
136
|
+
.cmat-date-range-end {
|
|
137
|
+
.mat-calendar-body-cell-content {
|
|
138
|
+
@apply bg-primary text-on-primary #{!important};
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
cmat-drawer {
|
|
150
|
+
@apply bg-card;
|
|
151
|
+
|
|
152
|
+
.cmat-drawer-content {
|
|
153
|
+
@apply bg-card;
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.cmat-datetimepicker-content {
|
|
158
|
+
@apply bg-card text-hint #{'!important'};
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
@mixin landscape-calendar-header {
|
|
162
|
+
.cmat-datetimepicker-calendar {
|
|
163
|
+
display: flex;
|
|
164
|
+
|
|
165
|
+
.cmat-datetimepicker-calendar-header {
|
|
166
|
+
width: 150px;
|
|
167
|
+
min-width: 150px;
|
|
168
|
+
padding: 16px 8px;
|
|
169
|
+
border-radius: 4px 0 0 4px;
|
|
170
|
+
|
|
171
|
+
[dir='rtl'] & {
|
|
172
|
+
border-radius: 0 4px 4px 0;
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.cmat-datetimepicker-calendar-header-year+.cmat-datetimepicker-calendar-header-date-time,
|
|
177
|
+
.cmat-datetimepicker-calendar-header-date+.cmat-datetimepicker-calendar-header-time {
|
|
178
|
+
margin-top: 12px;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.cmat-datetimepicker-calendar-header-date-time {
|
|
182
|
+
font-size: 28px;
|
|
183
|
+
flex-direction: column;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.cmat-datetimepicker-calendar-header-time {
|
|
187
|
+
display: flex;
|
|
188
|
+
flex-direction: column;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.cmat-datetimepicker-calendar-header-ampm-container {
|
|
192
|
+
flex-direction: row;
|
|
193
|
+
font-size: 24px;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.cmat-datetimepicker-calendar-header-ampm {
|
|
197
|
+
padding: 4px;
|
|
198
|
+
|
|
199
|
+
+.cmat-datetimepicker-calendar-header-ampm {
|
|
200
|
+
margin: 0 8px;
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
@mixin landscape-calendar-size {
|
|
207
|
+
.cmat-datetimepicker-calendar {
|
|
208
|
+
width: 446px;
|
|
209
|
+
height: 350px;
|
|
210
|
+
|
|
211
|
+
&.cmat-datetimepicker-calendar-with-time-input {
|
|
212
|
+
height: 412px;
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
[mode='landscape'] {
|
|
218
|
+
@include landscape-calendar-header;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
@media all and (orientation: landscape) {
|
|
222
|
+
[mode='auto'] {
|
|
223
|
+
@include landscape-calendar-header;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.cmat-datetimepicker-content[mode='auto'] {
|
|
227
|
+
@include landscape-calendar-size;
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.cmat-datetimepicker-content[mode='landscape'] {
|
|
232
|
+
@include landscape-calendar-size;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.cmat-datetimepicker-calendar-header {
|
|
236
|
+
@apply bg-primary;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.cmat-datetimepicker-body-label {
|
|
240
|
+
@apply text-secondary;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.cmat-datetimepicker-calendar-table-header {
|
|
244
|
+
@apply text-hint;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.cmat-datetimepicker-calendar-body-cell-content {
|
|
248
|
+
@apply text-default;
|
|
249
|
+
|
|
250
|
+
&.cmat-datetimepicker-calendar-body-selected {
|
|
251
|
+
@apply bg-primary;
|
|
252
|
+
|
|
253
|
+
&.cmat-datetimepicker-calendar-body-today {
|
|
254
|
+
@apply shadow;
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
.cmat-datetimepicker-clock-center {
|
|
260
|
+
@apply bg-primary;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.cmat-datetimepicker-clock-hand {
|
|
264
|
+
@apply bg-primary;
|
|
265
|
+
|
|
266
|
+
&::before {
|
|
267
|
+
@apply bg-primary;
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
.cmat-datetimepicker-clock-cell {
|
|
272
|
+
@apply text-default;
|
|
273
|
+
|
|
274
|
+
&.cmat-datetimepicker-clock-cell-selected {
|
|
275
|
+
@apply bg-primary;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
&:not(.cmat-datetimepicker-clock-cell-selected, .cmat-datetimepicker-clock-cell-disabled):hover {
|
|
279
|
+
@apply bg-hover;
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
.cmat-datetimepicker-datetimepicker-toggle-active {
|
|
285
|
+
@apply text-primary;
|
|
286
|
+
|
|
287
|
+
&.mat-accent {
|
|
288
|
+
@apply text-accent;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
&.mat-warn {
|
|
292
|
+
@apply text-warn;
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
.cmat-datetimepicker-time-input {
|
|
297
|
+
@apply text-primary;
|
|
298
|
+
|
|
299
|
+
&.cmat-datetimepicker-time-input-active {
|
|
300
|
+
@apply text-primary;
|
|
301
|
+
}
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.cmat-datetimepicker-content {
|
|
305
|
+
@apply shadow border-slate-300 bg-card dark:bg-black dark:bg-opacity-5 dark:border-slate-500;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
.cmat-confirmation-dialog-panel {
|
|
309
|
+
@apply md:w-128;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
/* Root navigation specific */
|
|
314
|
+
cmat-horizontal-navigation {
|
|
315
|
+
.cmat-horizontal-navigation-wrapper {
|
|
316
|
+
/* Basic, Branch */
|
|
317
|
+
cmat-horizontal-navigation-basic-item,
|
|
318
|
+
cmat-horizontal-navigation-branch-item {
|
|
319
|
+
@screen sm {
|
|
320
|
+
&:hover {
|
|
321
|
+
.cmat-horizontal-navigation-item-wrapper {
|
|
322
|
+
@apply bg-hover;
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
/* Basic - When item active (current link) */
|
|
329
|
+
cmat-horizontal-navigation-basic-item {
|
|
330
|
+
.cmat-horizontal-navigation-item-active,
|
|
331
|
+
.cmat-horizontal-navigation-item-active-forced {
|
|
332
|
+
.cmat-horizontal-navigation-item-title {
|
|
333
|
+
@apply text-primary #{'!important'};
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.cmat-horizontal-navigation-item-subtitle {
|
|
337
|
+
@apply text-primary-400 #{'!important'};
|
|
338
|
+
|
|
339
|
+
.dark & {
|
|
340
|
+
@apply text-primary-600 #{'!important'};
|
|
341
|
+
}
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.cmat-horizontal-navigation-item-icon {
|
|
345
|
+
@apply text-primary #{'!important'};
|
|
346
|
+
}
|
|
347
|
+
}
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
/* Branch - When menu open */
|
|
351
|
+
cmat-horizontal-navigation-branch-item {
|
|
352
|
+
.cmat-horizontal-navigation-menu-active,
|
|
353
|
+
.cmat-horizontal-navigation-menu-active-forced {
|
|
354
|
+
.cmat-horizontal-navigation-item-wrapper {
|
|
355
|
+
@apply bg-hover;
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
/* Navigation menu item common */
|
|
363
|
+
.cmat-horizontal-navigation-menu-item {
|
|
364
|
+
/* Basic - When item active (current link) */
|
|
365
|
+
cmat-horizontal-navigation-basic-item {
|
|
366
|
+
.cmat-horizontal-navigation-item-active,
|
|
367
|
+
.cmat-horizontal-navigation-item-active-forced {
|
|
368
|
+
.cmat-horizontal-navigation-item-title {
|
|
369
|
+
@apply text-primary #{'!important'};
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
.cmat-horizontal-navigation-item-subtitle {
|
|
373
|
+
@apply text-primary-400 #{'!important'};
|
|
374
|
+
|
|
375
|
+
.dark & {
|
|
376
|
+
@apply text-primary-600 #{'!important'};
|
|
377
|
+
}
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
.cmat-horizontal-navigation-item-icon {
|
|
381
|
+
@apply text-primary #{'!important'};
|
|
382
|
+
}
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
cmat-vertical-navigation-aside-item,
|
|
388
|
+
cmat-vertical-navigation-basic-item,
|
|
389
|
+
cmat-vertical-navigation-collapsable-item,
|
|
390
|
+
cmat-vertical-navigation-group-item {
|
|
391
|
+
.cmat-vertical-navigation-item-wrapper {
|
|
392
|
+
.cmat-vertical-navigation-item {
|
|
393
|
+
color: currentColor;
|
|
394
|
+
|
|
395
|
+
.cmat-vertical-navigation-item-icon {
|
|
396
|
+
@apply text-current opacity-60;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
.cmat-vertical-navigation-item-title-wrapper {
|
|
400
|
+
.cmat-vertical-navigation-item-title {
|
|
401
|
+
@apply text-current opacity-80;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.cmat-vertical-navigation-item-subtitle {
|
|
405
|
+
@apply text-current opacity-50;
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
}
|
|
409
|
+
}
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
/* Aside, Basic, Collapsable */
|
|
413
|
+
cmat-vertical-navigation-aside-item,
|
|
414
|
+
cmat-vertical-navigation-basic-item,
|
|
415
|
+
cmat-vertical-navigation-collapsable-item {
|
|
416
|
+
> .cmat-vertical-navigation-item-wrapper {
|
|
417
|
+
.cmat-vertical-navigation-item {
|
|
418
|
+
/* Active state */
|
|
419
|
+
&:not(.cmat-vertical-navigation-item-disabled) {
|
|
420
|
+
&.cmat-vertical-navigation-item-active,
|
|
421
|
+
&.cmat-vertical-navigation-item-active-forced {
|
|
422
|
+
@apply bg-gray-800 bg-opacity-5 dark:bg-white dark:bg-opacity-12;
|
|
423
|
+
|
|
424
|
+
.cmat-vertical-navigation-item-icon {
|
|
425
|
+
@apply opacity-100;
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
.cmat-vertical-navigation-item-title {
|
|
429
|
+
@apply opacity-100;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
.cmat-vertical-navigation-item-subtitle {
|
|
433
|
+
@apply opacity-100;
|
|
434
|
+
}
|
|
435
|
+
}
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
/* Hover state */
|
|
439
|
+
&:not(.cmat-vertical-navigation-item-active-forced):not(.cmat-vertical-navigation-item-active):not(.cmat-vertical-navigation-item-disabled) {
|
|
440
|
+
&:hover {
|
|
441
|
+
@apply bg-gray-800 bg-opacity-5 dark:bg-white dark:bg-opacity-12;
|
|
442
|
+
|
|
443
|
+
.cmat-vertical-navigation-item-icon {
|
|
444
|
+
@apply opacity-100;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
.cmat-vertical-navigation-item-title,
|
|
448
|
+
.cmat-vertical-navigation-item-arrow {
|
|
449
|
+
@apply opacity-100;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
.cmat-vertical-navigation-item-subtitle {
|
|
453
|
+
@apply opacity-100;
|
|
454
|
+
}
|
|
455
|
+
}
|
|
456
|
+
}
|
|
457
|
+
}
|
|
458
|
+
}
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
/* Collapsable */
|
|
462
|
+
cmat-vertical-navigation-collapsable-item {
|
|
463
|
+
/* Expanded state */
|
|
464
|
+
&.cmat-vertical-navigation-item-expanded {
|
|
465
|
+
> .cmat-vertical-navigation-item-wrapper {
|
|
466
|
+
.cmat-vertical-navigation-item {
|
|
467
|
+
.cmat-vertical-navigation-item-icon {
|
|
468
|
+
@apply opacity-100;
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
.cmat-vertical-navigation-item-title,
|
|
472
|
+
.cmat-vertical-navigation-item-arrow {
|
|
473
|
+
@apply opacity-100;
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
.cmat-vertical-navigation-item-subtitle {
|
|
477
|
+
@apply opacity-100;
|
|
478
|
+
}
|
|
479
|
+
}
|
|
480
|
+
}
|
|
481
|
+
}
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
/* Group */
|
|
485
|
+
cmat-vertical-navigation-group-item {
|
|
486
|
+
> .cmat-vertical-navigation-item-wrapper {
|
|
487
|
+
.cmat-vertical-navigation-item {
|
|
488
|
+
.cmat-vertical-navigation-item-title-wrapper {
|
|
489
|
+
.cmat-vertical-navigation-item-title {
|
|
490
|
+
@apply opacity-100 text-primary-600 dark:text-primary-400;
|
|
491
|
+
}
|
|
492
|
+
}
|
|
493
|
+
}
|
|
494
|
+
}
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
.cmat-popover-panel{
|
|
498
|
+
@apply bg-card;
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
.cmat-select-search-panel {
|
|
503
|
+
.cmat-select-search-no-entries-found {
|
|
504
|
+
@apply bg-card;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
.mat-tree-node {
|
|
508
|
+
cursor: pointer;
|
|
509
|
+
@apply hover:bg-hover;
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
.selected {
|
|
513
|
+
background-color: var(--mat-option-focus-state-layer-color);
|
|
514
|
+
color: var(--mat-option-selected-state-label-text-color);
|
|
515
|
+
|
|
516
|
+
.mdc-form-field{
|
|
517
|
+
color:currentColor;
|
|
518
|
+
.mdc-label{
|
|
519
|
+
color:currentColor;
|
|
520
|
+
}
|
|
521
|
+
}
|
|
522
|
+
}
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
cmat-transfer-picker {
|
|
526
|
+
@apply flex-col md:flex-row;
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
.transfer-picker-filter-panel {
|
|
530
|
+
.chip-list {
|
|
531
|
+
.chip-wrapper {
|
|
532
|
+
.chip {
|
|
533
|
+
@apply text-secondary bg-default;
|
|
534
|
+
|
|
535
|
+
&.selected {
|
|
536
|
+
@apply bg-primary bg-opacity-50;
|
|
537
|
+
}
|
|
538
|
+
}
|
|
539
|
+
}
|
|
540
|
+
}
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
.transfer-picker-source {
|
|
544
|
+
@apply shadow;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
.transfer-picker-target {
|
|
548
|
+
@apply shadow bg-card;
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
|
|
553
|
+
|
|
554
|
+
|
|
555
|
+
|
|
556
|
+
|
|
557
|
+
|
|
558
|
+
|
|
559
|
+
|
|
@@ -335,6 +335,10 @@
|
|
|
335
335
|
font-weight: 500 !important;
|
|
336
336
|
}
|
|
337
337
|
|
|
338
|
+
.mdc-evolution-chip-set__chips{
|
|
339
|
+
align-items: center;
|
|
340
|
+
}
|
|
341
|
+
|
|
338
342
|
/* -------------------------------------------------------------------------- */
|
|
339
343
|
/* @ Dialog
|
|
340
344
|
/* -------------------------------------------------------------------------- */
|
|
@@ -436,7 +440,7 @@
|
|
|
436
440
|
|
|
437
441
|
/* Default style tweaks and enhancements */
|
|
438
442
|
.mat-mdc-text-field-wrapper {
|
|
439
|
-
padding:
|
|
443
|
+
padding:0;
|
|
440
444
|
border-radius: 6px;
|
|
441
445
|
border-width: 1px;
|
|
442
446
|
border-style: solid;
|
|
@@ -458,7 +462,7 @@
|
|
|
458
462
|
display: flex;
|
|
459
463
|
align-items: stretch;
|
|
460
464
|
border-radius: 6px;
|
|
461
|
-
padding:
|
|
465
|
+
padding:0 16px;
|
|
462
466
|
|
|
463
467
|
.mat-mdc-form-field-icon-prefix,
|
|
464
468
|
.mat-mdc-form-field-text-prefix {
|
|
@@ -477,7 +481,7 @@
|
|
|
477
481
|
margin-right: 10px;
|
|
478
482
|
}
|
|
479
483
|
|
|
480
|
-
>.mat-datepicker-toggle {
|
|
484
|
+
>.mat-datepicker-toggle,.cmat-datetimepicker-toggle {
|
|
481
485
|
margin-left: -8px;
|
|
482
486
|
}
|
|
483
487
|
}
|
|
@@ -499,7 +503,7 @@
|
|
|
499
503
|
margin-left: 10px;
|
|
500
504
|
}
|
|
501
505
|
|
|
502
|
-
>.mat-datepicker-toggle
|
|
506
|
+
>.mat-datepicker-toggle,.cmat-datetimepicker-toggle{
|
|
503
507
|
margin-right: -8px;
|
|
504
508
|
}
|
|
505
509
|
}
|
|
@@ -688,11 +692,11 @@
|
|
|
688
692
|
margin-right: 8px;
|
|
689
693
|
}
|
|
690
694
|
|
|
691
|
-
>.mat-datepicker-toggle {
|
|
695
|
+
>.mat-datepicker-toggle,.cmat-datetimepicker-toggle {
|
|
692
696
|
margin-right: 4px;
|
|
693
697
|
}
|
|
694
698
|
|
|
695
|
-
>*:not(.mat-icon):not(.mat-mdc-icon-button):not(.mat-mdc-select):not(.mat-datepicker-toggle) {
|
|
699
|
+
>*:not(.mat-icon):not(.mat-mdc-icon-button):not(.mat-mdc-select):not(.mat-datepicker-toggle):not(.cmat-datetimepicker-toggle) {
|
|
696
700
|
margin-right: 12px;
|
|
697
701
|
}
|
|
698
702
|
}
|
|
@@ -713,11 +717,11 @@
|
|
|
713
717
|
margin-left: 12px !important;
|
|
714
718
|
}
|
|
715
719
|
|
|
716
|
-
>.mat-datepicker-toggle {
|
|
720
|
+
>.mat-datepicker-toggle,.cmat-datetimepicker-toggle {
|
|
717
721
|
margin-left: 4px !important;
|
|
718
722
|
}
|
|
719
723
|
|
|
720
|
-
>*:not(.mat-icon):not(.mat-mdc-icon-button):not(.mat-mdc-select):not(.mat-datepicker-toggle) {
|
|
724
|
+
>*:not(.mat-icon):not(.mat-mdc-icon-button):not(.mat-mdc-select):not(.mat-datepicker-toggle):not(.cmat-datetimepicker-toggle) {
|
|
721
725
|
margin-left: 12px !important;
|
|
722
726
|
}
|
|
723
727
|
}
|
|
@@ -849,11 +853,11 @@
|
|
|
849
853
|
margin-right: 12px !important;
|
|
850
854
|
}
|
|
851
855
|
|
|
852
|
-
>.mat-datepicker-toggle {
|
|
856
|
+
>.mat-datepicker-toggle,.cmat-datetimepicker-toggle {
|
|
853
857
|
margin-right: 8px;
|
|
854
858
|
}
|
|
855
859
|
|
|
856
|
-
>*:not(.mat-icon):not(.mat-mdc-icon-button):not(.mat-mdc-select):not(.mat-datepicker-toggle) {
|
|
860
|
+
>*:not(.mat-icon):not(.mat-mdc-icon-button):not(.mat-mdc-select):not(.mat-datepicker-toggle):not(.cmat-datetimepicker-toggle) {
|
|
857
861
|
margin-right: 16px;
|
|
858
862
|
}
|
|
859
863
|
}
|
|
@@ -879,11 +883,11 @@
|
|
|
879
883
|
margin: 0 -4px 0 16px !important;
|
|
880
884
|
}
|
|
881
885
|
|
|
882
|
-
>.mat-datepicker-toggle {
|
|
886
|
+
>.mat-datepicker-toggle,.cmat-datetimepicker-toggle {
|
|
883
887
|
margin-left: 8px;
|
|
884
888
|
}
|
|
885
889
|
|
|
886
|
-
>*:not(.mat-icon):not(.mat-mdc-icon-button):not(.mat-mdc-select):not(.mat-datepicker-toggle) {
|
|
890
|
+
>*:not(.mat-icon):not(.mat-mdc-icon-button):not(.mat-mdc-select):not(.mat-datepicker-toggle):not(.cmat-datetimepicker-toggle) {
|
|
887
891
|
margin-left: 16px;
|
|
888
892
|
}
|
|
889
893
|
}
|
|
@@ -1083,10 +1087,6 @@
|
|
|
1083
1087
|
align-items: center;
|
|
1084
1088
|
}
|
|
1085
1089
|
|
|
1086
|
-
&.mat-mdc-menu-item-submenu-trigger {
|
|
1087
|
-
padding-right: 40px;
|
|
1088
|
-
}
|
|
1089
|
-
|
|
1090
1090
|
.mat-icon {
|
|
1091
1091
|
margin-right: 12px;
|
|
1092
1092
|
}
|
package/styles/styles.scss
CHANGED
package/styles/tailwind.scss
CHANGED
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
border-bottom-width: 1px;
|
|
44
44
|
}
|
|
45
45
|
|
|
46
|
-
input[disabled] {
|
|
46
|
+
input[disabled]:not(.mdc-checkbox__native-control) {
|
|
47
47
|
opacity: 1;
|
|
48
48
|
-webkit-text-fill-color: currentColor;
|
|
49
49
|
}
|
|
@@ -83,4 +83,6 @@
|
|
|
83
83
|
}
|
|
84
84
|
}
|
|
85
85
|
|
|
86
|
-
@tailwind components;
|
|
86
|
+
@tailwind components;
|
|
87
|
+
|
|
88
|
+
@tailwind utilities;
|