@ng-matero/extensions 16.2.0 → 16.3.1
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/column-resize/column-resize-notifier.d.ts +1 -1
- package/column-resize/polyfill.d.ts +1 -3
- package/column-resize/resizable.d.ts +1 -0
- package/column-resize/resize-strategy.d.ts +4 -3
- package/core/tokens/m2/mtx/_grid.scss +5 -1
- package/esm2022/column-resize/column-resize-directives/column-resize-flex.mjs +3 -9
- package/esm2022/column-resize/column-resize-directives/column-resize.mjs +3 -9
- package/esm2022/column-resize/column-resize-directives/constants.mjs +1 -1
- package/esm2022/column-resize/column-resize-notifier.mjs +7 -2
- package/esm2022/column-resize/column-resize.mjs +3 -3
- package/esm2022/column-resize/event-dispatcher.mjs +5 -2
- package/esm2022/column-resize/polyfill.mjs +3 -19
- package/esm2022/column-resize/resizable.mjs +7 -7
- package/esm2022/column-resize/resize-ref.mjs +1 -1
- package/esm2022/column-resize/resize-strategy.mjs +16 -10
- package/esm2022/grid/cell.mjs +5 -6
- package/esm2022/grid/column-resize/column-resize-directives/common.mjs +1 -8
- package/esm2022/grid/column-resize/overlay-handle.mjs +11 -6
- package/esm2022/grid/column-resize/resizable-directives/common.mjs +1 -1
- package/esm2022/grid/column-resize/resizable-directives/resizable.mjs +3 -2
- package/esm2022/grid/column-resize/resize-strategy.mjs +10 -5
- package/esm2022/grid/grid-module.mjs +1 -6
- package/esm2022/grid/grid-utils.mjs +1 -11
- package/esm2022/grid/grid.mjs +11 -4
- package/esm2022/grid/public-api.mjs +1 -2
- package/esm2022/photoviewer/mtxPhotoviewer.mjs +5 -0
- package/esm2022/photoviewer/photoviewer-module.mjs +17 -0
- package/esm2022/photoviewer/photoviewer.mjs +63 -0
- package/esm2022/photoviewer/public-api.mjs +3 -0
- package/esm2022/popover/popover-interfaces.mjs +1 -1
- package/esm2022/popover/popover.mjs +13 -3
- package/esm2022/select/select.mjs +3 -3
- package/fesm2022/mtxColumnResize.mjs +38 -52
- package/fesm2022/mtxColumnResize.mjs.map +1 -1
- package/fesm2022/mtxGrid.mjs +33 -83
- package/fesm2022/mtxGrid.mjs.map +1 -1
- package/fesm2022/mtxPhotoviewer.mjs +84 -0
- package/fesm2022/mtxPhotoviewer.mjs.map +1 -0
- package/fesm2022/mtxPopover.mjs +12 -2
- package/fesm2022/mtxPopover.mjs.map +1 -1
- package/fesm2022/mtxSelect.mjs +2 -2
- package/fesm2022/mtxSelect.mjs.map +1 -1
- package/grid/_grid-theme.scss +0 -2
- package/grid/cell.scss +0 -1
- package/grid/column-resize/_column-resize.scss +88 -94
- package/grid/column-resize/column-resize-directives/common.d.ts +0 -7
- package/grid/column-resize/overlay-handle.d.ts +1 -0
- package/grid/column-resize/resize-strategy.d.ts +2 -2
- package/grid/grid-module.d.ts +21 -22
- package/grid/grid-utils.d.ts +0 -6
- package/grid/grid.d.ts +4 -1
- package/grid/public-api.d.ts +0 -1
- package/package.json +18 -12
- package/photoviewer/index.d.ts +5 -0
- package/photoviewer/photoviewer-module.d.ts +7 -0
- package/photoviewer/photoviewer.d.ts +17 -0
- package/photoviewer/public-api.d.ts +2 -0
- package/popover/popover-interfaces.d.ts +1 -0
- package/popover/popover.d.ts +6 -1
- package/popover/popover.scss +4 -0
- package/prebuilt-themes/deeppurple-amber.css +1 -1
- package/prebuilt-themes/indigo-pink.css +1 -1
- package/prebuilt-themes/pink-bluegrey.css +1 -1
- package/prebuilt-themes/purple-green.css +1 -1
- package/esm2022/grid/image-preview.mjs +0 -50
- package/grid/image-preview.d.ts +0 -13
|
@@ -1,127 +1,121 @@
|
|
|
1
1
|
@use 'sass:map';
|
|
2
|
-
@use '
|
|
3
|
-
@use '../../core/
|
|
4
|
-
@use '../../core/
|
|
5
|
-
|
|
6
|
-
@mixin color($config-or-theme) {
|
|
7
|
-
$config: theming.get-color-config($config-or-theme);
|
|
8
|
-
$primary: map.get($config, primary);
|
|
9
|
-
$foreground: map.get($config, foreground);
|
|
10
|
-
|
|
11
|
-
$non-resizable-hover-divider: theming.get-color-from-palette($foreground, divider);
|
|
12
|
-
$resizable-hover-divider: theming.get-color-from-palette($primary, 200);
|
|
13
|
-
$resizable-active-divider: theming.get-color-from-palette($primary, 500);
|
|
14
|
-
|
|
15
|
-
// Required for resizing to work properly.
|
|
16
|
-
.mat-column-resize-table.cdk-column-resize-with-resized-column {
|
|
17
|
-
table-layout: fixed;
|
|
18
|
-
}
|
|
2
|
+
@use '@angular/material' as mat;
|
|
3
|
+
@use '../../core/tokens/token-utils';
|
|
4
|
+
@use '../../core/tokens/m2/mtx/grid' as tokens-mtx-grid;
|
|
19
5
|
|
|
20
|
-
|
|
21
|
-
.mat-mdc-header-cell,
|
|
22
|
-
.mat-mdc-cell {
|
|
23
|
-
box-sizing: border-box;
|
|
24
|
-
min-width: 32px;
|
|
25
|
-
}
|
|
26
|
-
}
|
|
6
|
+
$_tokens: tokens-mtx-grid.$prefix, tokens-mtx-grid.get-token-slots();
|
|
27
7
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
8
|
+
// Required for resizing to work properly.
|
|
9
|
+
.mat-column-resize-table.cdk-column-resize-with-resized-column {
|
|
10
|
+
table-layout: fixed;
|
|
11
|
+
}
|
|
31
12
|
|
|
32
|
-
|
|
13
|
+
.mat-column-resize-flex {
|
|
14
|
+
.mat-mdc-header-cell,
|
|
15
|
+
.mat-mdc-cell {
|
|
33
16
|
box-sizing: border-box;
|
|
17
|
+
min-width: 32px;
|
|
34
18
|
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.mat-mdc-header-cell {
|
|
22
|
+
position: relative;
|
|
23
|
+
}
|
|
35
24
|
|
|
25
|
+
.mat-resizable {
|
|
26
|
+
box-sizing: border-box;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.mat-mdc-header-cell:not(.mat-resizable)::after,
|
|
30
|
+
.mat-resizable-handle {
|
|
31
|
+
position: absolute;
|
|
32
|
+
bottom: 0;
|
|
33
|
+
top: 0;
|
|
34
|
+
right: 0;
|
|
35
|
+
width: 1px;
|
|
36
|
+
background: transparent;
|
|
37
|
+
transition: background mat.$private-swift-ease-in-duration mat.$private-swift-ease-in-timing-function;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.mat-mdc-header-cell:not(.mat-resizable)::after {
|
|
41
|
+
content: '';
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
[dir='rtl'] {
|
|
36
45
|
.mat-mdc-header-cell:not(.mat-resizable)::after,
|
|
37
46
|
.mat-resizable-handle {
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
top: 0;
|
|
41
|
-
right: 0;
|
|
42
|
-
width: 1px;
|
|
43
|
-
background: transparent;
|
|
44
|
-
transition:
|
|
45
|
-
background variables.$swift-ease-in-duration
|
|
46
|
-
variables.$swift-ease-in-timing-function;
|
|
47
|
+
left: 0;
|
|
48
|
+
right: auto;
|
|
47
49
|
}
|
|
48
50
|
|
|
49
|
-
.mat-mdc-header-
|
|
50
|
-
|
|
51
|
+
.mat-mdc-header-row.cdk-column-resize-hover-or-active {
|
|
52
|
+
.mat-header-cell,
|
|
53
|
+
.mat-mdc-header-cell {
|
|
54
|
+
border-left: none;
|
|
55
|
+
}
|
|
51
56
|
}
|
|
57
|
+
}
|
|
52
58
|
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
right: auto;
|
|
59
|
+
.mat-mdc-header-row.cdk-column-resize-hover-or-active {
|
|
60
|
+
.mat-mdc-header-cell {
|
|
61
|
+
border-right: none;
|
|
57
62
|
}
|
|
58
63
|
|
|
59
|
-
|
|
64
|
+
@include token-utils.use-tokens($_tokens...) {
|
|
60
65
|
.mat-mdc-header-cell:not(.mat-resizable)::after {
|
|
61
|
-
background
|
|
66
|
+
@include token-utils.create-token-slot(background-color, resizable-handle-disabled-background-color);
|
|
62
67
|
}
|
|
63
68
|
|
|
64
69
|
.mat-resizable-handle {
|
|
65
|
-
background
|
|
70
|
+
@include token-utils.create-token-slot(background-color, resizable-handle-hover-background-color);
|
|
66
71
|
}
|
|
67
72
|
}
|
|
73
|
+
}
|
|
68
74
|
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
75
|
+
.mat-resizable.cdk-resizable-overlay-thumb-active>.mat-resizable-handle {
|
|
76
|
+
opacity: 0;
|
|
77
|
+
transition: none;
|
|
78
|
+
}
|
|
73
79
|
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
outline: none;
|
|
78
|
-
}
|
|
80
|
+
.mat-resizable-handle:focus,
|
|
81
|
+
.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-resizable-handle:focus {
|
|
82
|
+
outline: none;
|
|
79
83
|
|
|
80
|
-
.
|
|
81
|
-
background
|
|
82
|
-
cursor: col-resize;
|
|
83
|
-
height: 100%;
|
|
84
|
-
transition:
|
|
85
|
-
background variables.$swift-ease-in-duration
|
|
86
|
-
variables.$swift-ease-in-timing-function;
|
|
87
|
-
width: 100%;
|
|
88
|
-
@include vendor-prefixes.user-select(none);
|
|
89
|
-
|
|
90
|
-
&:active {
|
|
91
|
-
background:
|
|
92
|
-
linear-gradient(
|
|
93
|
-
90deg,
|
|
94
|
-
transparent,
|
|
95
|
-
transparent 7px,
|
|
96
|
-
$resizable-active-divider,
|
|
97
|
-
$resizable-active-divider 1px,
|
|
98
|
-
transparent 8px,
|
|
99
|
-
transparent
|
|
100
|
-
);
|
|
101
|
-
will-change: transform;
|
|
102
|
-
}
|
|
84
|
+
@include token-utils.use-tokens($_tokens...) {
|
|
85
|
+
@include token-utils.create-token-slot(background-color, resizable-handle-active-background-color);
|
|
103
86
|
}
|
|
104
87
|
}
|
|
105
88
|
|
|
106
|
-
|
|
89
|
+
.mat-column-resize-overlay-thumb {
|
|
90
|
+
background: transparent;
|
|
91
|
+
cursor: col-resize;
|
|
92
|
+
width: 100%;
|
|
93
|
+
height: 100%;
|
|
94
|
+
transition: background mat.$private-swift-ease-in-duration mat.$private-swift-ease-in-timing-function;
|
|
107
95
|
|
|
108
|
-
@
|
|
96
|
+
@include mat.private-user-select(none);
|
|
109
97
|
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
@include theming.private-check-duplicate-theme-styles($theme, 'mat-column-resize') {
|
|
113
|
-
$color: theming.get-color-config($theme);
|
|
114
|
-
$density: theming.get-density-config($theme);
|
|
115
|
-
$typography: theming.get-typography-config($theme);
|
|
98
|
+
&:active {
|
|
99
|
+
will-change: transform;
|
|
116
100
|
|
|
117
|
-
@
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
101
|
+
@include token-utils.use-tokens($_tokens...) {
|
|
102
|
+
$background-color: token-utils.get-token-variable(resizable-handle-active-background-color);
|
|
103
|
+
|
|
104
|
+
background: linear-gradient(90deg,
|
|
105
|
+
transparent, transparent 7px,
|
|
106
|
+
var($background-color) 7px, var($background-color) 9px,
|
|
107
|
+
transparent 9px, transparent);
|
|
108
|
+
|
|
109
|
+
.mat-column-resize-overlay-thumb-top {
|
|
110
|
+
background: linear-gradient(90deg,
|
|
111
|
+
transparent, transparent 4px,
|
|
112
|
+
var($background-color) 4px, var($background-color) 12px,
|
|
113
|
+
transparent 12px, transparent);
|
|
114
|
+
}
|
|
125
115
|
}
|
|
126
116
|
}
|
|
127
117
|
}
|
|
118
|
+
|
|
119
|
+
.mat-column-resize-overlay-thumb-top {
|
|
120
|
+
width: 100%;
|
|
121
|
+
}
|
|
@@ -1,10 +1,3 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Copyright Google LLC All Rights Reserved.
|
|
4
|
-
*
|
|
5
|
-
* Use of this source code is governed by an MIT-style license that can be
|
|
6
|
-
* found in the LICENSE file at https://angular.io/license
|
|
7
|
-
*/
|
|
8
1
|
import { Provider } from '@angular/core';
|
|
9
2
|
import { ColumnResize } from '@ng-matero/extensions/column-resize';
|
|
10
3
|
export declare const TABLE_PROVIDERS: Provider[];
|
|
@@ -25,6 +25,7 @@ export declare class MatColumnResizeOverlayHandle extends ResizeOverlayHandle {
|
|
|
25
25
|
protected readonly resizeRef: ResizeRef;
|
|
26
26
|
protected readonly styleScheduler: _CoalescedStyleScheduler;
|
|
27
27
|
protected readonly document: Document;
|
|
28
|
+
topElement: ElementRef<HTMLElement>;
|
|
28
29
|
constructor(columnDef: CdkColumnDef, columnResize: ColumnResize, directionality: Directionality, elementRef: ElementRef, eventDispatcher: HeaderRowEventDispatcher, ngZone: NgZone, resizeNotifier: ColumnResizeNotifierSource, resizeRef: ResizeRef, styleScheduler: _CoalescedStyleScheduler, document: any);
|
|
29
30
|
protected updateResizeActive(active: boolean): void;
|
|
30
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatColumnResizeOverlayHandle, never>;
|
|
@@ -14,9 +14,9 @@ export { TABLE_LAYOUT_FIXED_RESIZE_STRATEGY_PROVIDER };
|
|
|
14
14
|
* Overrides CdkFlexTableResizeStrategy to match mat-column elements.
|
|
15
15
|
*/
|
|
16
16
|
export declare class MatFlexTableResizeStrategy extends CdkFlexTableResizeStrategy {
|
|
17
|
-
constructor(columnResize: ColumnResize, styleScheduler: _CoalescedStyleScheduler, table: CdkTable<unknown>, document: any);
|
|
17
|
+
constructor(columnResize: ColumnResize, styleScheduler: _CoalescedStyleScheduler, table: CdkTable<unknown>, document: any, nonce?: string | null);
|
|
18
18
|
protected getColumnCssClass(cssFriendlyColumnName: string): string;
|
|
19
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatFlexTableResizeStrategy,
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MatFlexTableResizeStrategy, [null, null, null, null, { optional: true; }]>;
|
|
20
20
|
static ɵprov: i0.ɵɵInjectableDeclaration<MatFlexTableResizeStrategy>;
|
|
21
21
|
}
|
|
22
22
|
export declare const FLEX_RESIZE_STRATEGY_PROVIDER: Provider;
|
package/grid/grid-module.d.ts
CHANGED
|
@@ -3,29 +3,28 @@ import * as i1 from "./grid";
|
|
|
3
3
|
import * as i2 from "./cell";
|
|
4
4
|
import * as i3 from "./column-menu";
|
|
5
5
|
import * as i4 from "./expansion-toggle";
|
|
6
|
-
import * as i5 from "./
|
|
7
|
-
import * as i6 from "
|
|
8
|
-
import * as i7 from "@angular/
|
|
9
|
-
import * as i8 from "@angular/
|
|
10
|
-
import * as i9 from "@angular/material/
|
|
11
|
-
import * as i10 from "@angular/material/
|
|
12
|
-
import * as i11 from "@angular/material/
|
|
13
|
-
import * as i12 from "@angular/material/
|
|
14
|
-
import * as i13 from "@angular/material/
|
|
15
|
-
import * as i14 from "@angular/material/
|
|
16
|
-
import * as i15 from "@angular/material/
|
|
17
|
-
import * as i16 from "@angular/material/
|
|
18
|
-
import * as i17 from "@angular/material/
|
|
19
|
-
import * as i18 from "@angular/material/
|
|
20
|
-
import * as i19 from "@angular/material/
|
|
21
|
-
import * as i20 from "@angular/material/
|
|
22
|
-
import * as i21 from "@angular/
|
|
23
|
-
import * as i22 from "
|
|
24
|
-
import * as i23 from "
|
|
25
|
-
import * as i24 from "@ng-matero/extensions/
|
|
26
|
-
import * as i25 from "@ng-matero/extensions/core";
|
|
6
|
+
import * as i5 from "./grid-pipes";
|
|
7
|
+
import * as i6 from "@angular/common";
|
|
8
|
+
import * as i7 from "@angular/forms";
|
|
9
|
+
import * as i8 from "@angular/material/table";
|
|
10
|
+
import * as i9 from "@angular/material/sort";
|
|
11
|
+
import * as i10 from "@angular/material/paginator";
|
|
12
|
+
import * as i11 from "@angular/material/checkbox";
|
|
13
|
+
import * as i12 from "@angular/material/button";
|
|
14
|
+
import * as i13 from "@angular/material/progress-bar";
|
|
15
|
+
import * as i14 from "@angular/material/chips";
|
|
16
|
+
import * as i15 from "@angular/material/tooltip";
|
|
17
|
+
import * as i16 from "@angular/material/badge";
|
|
18
|
+
import * as i17 from "@angular/material/icon";
|
|
19
|
+
import * as i18 from "@angular/material/select";
|
|
20
|
+
import * as i19 from "@angular/material/form-field";
|
|
21
|
+
import * as i20 from "@angular/material/menu";
|
|
22
|
+
import * as i21 from "@angular/cdk/drag-drop";
|
|
23
|
+
import * as i22 from "./column-resize/column-resize-module";
|
|
24
|
+
import * as i23 from "@ng-matero/extensions/dialog";
|
|
25
|
+
import * as i24 from "@ng-matero/extensions/core";
|
|
27
26
|
export declare class MtxGridModule {
|
|
28
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtxGridModule, never>;
|
|
29
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MtxGridModule, [typeof i1.MtxGrid, typeof i2.MtxGridCell, typeof i3.MtxGridColumnMenu, typeof i4.MtxGridExpansionToggle, typeof
|
|
28
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MtxGridModule, [typeof i1.MtxGrid, typeof i2.MtxGridCell, typeof i3.MtxGridColumnMenu, typeof i4.MtxGridExpansionToggle, typeof i1.MtxGridSelectableCell, typeof i5.MtxGridRowClassPipe, typeof i5.MtxGridColClassPipe, typeof i5.MtxGridCellActionsPipe, typeof i5.MtxGridCellActionTooltipPipe, typeof i5.MtxGridCellActionBadgePipe, typeof i5.MtxGridCellActionDisablePipe, typeof i5.MtxGridCellSummaryPipe], [typeof i6.CommonModule, typeof i7.FormsModule, typeof i8.MatTableModule, typeof i9.MatSortModule, typeof i10.MatPaginatorModule, typeof i11.MatCheckboxModule, typeof i12.MatButtonModule, typeof i13.MatProgressBarModule, typeof i14.MatChipsModule, typeof i15.MatTooltipModule, typeof i16.MatBadgeModule, typeof i17.MatIconModule, typeof i18.MatSelectModule, typeof i19.MatFormFieldModule, typeof i20.MatMenuModule, typeof i21.DragDropModule, typeof i22.MatColumnResizeModule, typeof i23.MtxDialogModule, typeof i24.MtxPipesModule], [typeof i22.MatColumnResizeModule, typeof i1.MtxGrid, typeof i2.MtxGridCell, typeof i3.MtxGridColumnMenu, typeof i4.MtxGridExpansionToggle, typeof i1.MtxGridSelectableCell, typeof i5.MtxGridRowClassPipe, typeof i5.MtxGridColClassPipe, typeof i5.MtxGridCellActionsPipe, typeof i5.MtxGridCellActionTooltipPipe, typeof i5.MtxGridCellActionBadgePipe, typeof i5.MtxGridCellActionDisablePipe, typeof i5.MtxGridCellSummaryPipe]>;
|
|
30
29
|
static ɵinj: i0.ɵɵInjectorDeclaration<MtxGridModule>;
|
|
31
30
|
}
|
package/grid/grid-utils.d.ts
CHANGED
|
@@ -16,12 +16,6 @@ export declare class MtxGridUtils {
|
|
|
16
16
|
* @returns
|
|
17
17
|
*/
|
|
18
18
|
getColData(data: any[], colDef: MtxGridColumn): any[];
|
|
19
|
-
/**
|
|
20
|
-
* Remove white spaces in a string and convert string to array
|
|
21
|
-
* @param str
|
|
22
|
-
* @returns
|
|
23
|
-
*/
|
|
24
|
-
str2arr(str: string): string[];
|
|
25
19
|
/**
|
|
26
20
|
* Whether the value is empty (`null`, `undefined`, `''`, `[]`)
|
|
27
21
|
* @param value
|
package/grid/grid.d.ts
CHANGED
|
@@ -86,6 +86,8 @@ export declare class MtxGrid implements OnChanges, AfterViewInit, OnDestroy {
|
|
|
86
86
|
rowStriped: boolean;
|
|
87
87
|
/** Event emitted when the user clicks the row. */
|
|
88
88
|
rowClick: EventEmitter<any>;
|
|
89
|
+
/** Event emitted when the user attempts to open a context menu. */
|
|
90
|
+
rowContextMenu: EventEmitter<any>;
|
|
89
91
|
expansionRowStates: any[];
|
|
90
92
|
/** Whether the row is expandable. */
|
|
91
93
|
expandable: boolean;
|
|
@@ -221,8 +223,9 @@ export declare class MtxGrid implements OnChanges, AfterViewInit, OnDestroy {
|
|
|
221
223
|
_onPage(e: PageEvent): void;
|
|
222
224
|
scrollTop(value?: number): number | void;
|
|
223
225
|
scrollLeft(value?: number): number | void;
|
|
226
|
+
_contextmenu(event: MouseEvent, rowData: Record<string, any>, index: number): void;
|
|
224
227
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtxGrid, [null, null, { optional: true; }]>;
|
|
225
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MtxGrid, "mtx-grid", ["mtxGrid"], { "displayedColumns": { "alias": "displayedColumns"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "data": { "alias": "data"; "required": false; }; "length": { "alias": "length"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "trackBy": { "alias": "trackBy"; "required": false; }; "columnResizable": { "alias": "columnResizable"; "required": false; }; "emptyValuePlaceholder": { "alias": "emptyValuePlaceholder"; "required": false; }; "pageOnFront": { "alias": "pageOnFront"; "required": false; }; "showPaginator": { "alias": "showPaginator"; "required": false; }; "pageDisabled": { "alias": "pageDisabled"; "required": false; }; "showFirstLastButtons": { "alias": "showFirstLastButtons"; "required": false; }; "pageIndex": { "alias": "pageIndex"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; }; "hidePageSize": { "alias": "hidePageSize"; "required": false; }; "paginationTemplate": { "alias": "paginationTemplate"; "required": false; }; "sortOnFront": { "alias": "sortOnFront"; "required": false; }; "sortActive": { "alias": "sortActive"; "required": false; }; "sortDirection": { "alias": "sortDirection"; "required": false; }; "sortDisableClear": { "alias": "sortDisableClear"; "required": false; }; "sortDisabled": { "alias": "sortDisabled"; "required": false; }; "sortStart": { "alias": "sortStart"; "required": false; }; "rowHover": { "alias": "rowHover"; "required": false; }; "rowStriped": { "alias": "rowStriped"; "required": false; }; "expandable": { "alias": "expandable"; "required": false; }; "expansionTemplate": { "alias": "expansionTemplate"; "required": false; }; "multiSelectable": { "alias": "multiSelectable"; "required": false; }; "multiSelectionWithClick": { "alias": "multiSelectionWithClick"; "required": false; }; "rowSelectable": { "alias": "rowSelectable"; "required": false; }; "hideRowSelectionCheckbox": { "alias": "hideRowSelectionCheckbox"; "required": false; }; "disableRowClickSelection": { "alias": "disableRowClickSelection"; "required": false; }; "rowSelectionFormatter": { "alias": "rowSelectionFormatter"; "required": false; }; "rowClassFormatter": { "alias": "rowClassFormatter"; "required": false; }; "rowSelected": { "alias": "rowSelected"; "required": false; }; "cellSelectable": { "alias": "cellSelectable"; "required": false; }; "showToolbar": { "alias": "showToolbar"; "required": false; }; "toolbarTitle": { "alias": "toolbarTitle"; "required": false; }; "toolbarTemplate": { "alias": "toolbarTemplate"; "required": false; }; "columnHideable": { "alias": "columnHideable"; "required": false; }; "columnHideableChecked": { "alias": "columnHideableChecked"; "required": false; }; "columnSortable": { "alias": "columnSortable"; "required": false; }; "columnPinnable": { "alias": "columnPinnable"; "required": false; }; "columnPinOptions": { "alias": "columnPinOptions"; "required": false; }; "showColumnMenuButton": { "alias": "showColumnMenuButton"; "required": false; }; "columnMenuButtonText": { "alias": "columnMenuButtonText"; "required": false; }; "columnMenuButtonType": { "alias": "columnMenuButtonType"; "required": false; }; "columnMenuButtonColor": { "alias": "columnMenuButtonColor"; "required": false; }; "columnMenuButtonClass": { "alias": "columnMenuButtonClass"; "required": false; }; "columnMenuButtonIcon": { "alias": "columnMenuButtonIcon"; "required": false; }; "showColumnMenuHeader": { "alias": "showColumnMenuHeader"; "required": false; }; "columnMenuHeaderText": { "alias": "columnMenuHeaderText"; "required": false; }; "columnMenuHeaderTemplate": { "alias": "columnMenuHeaderTemplate"; "required": false; }; "showColumnMenuFooter": { "alias": "showColumnMenuFooter"; "required": false; }; "columnMenuFooterText": { "alias": "columnMenuFooterText"; "required": false; }; "columnMenuFooterTemplate": { "alias": "columnMenuFooterTemplate"; "required": false; }; "noResultText": { "alias": "noResultText"; "required": false; }; "noResultTemplate": { "alias": "noResultTemplate"; "required": false; }; "headerTemplate": { "alias": "headerTemplate"; "required": false; }; "headerExtraTemplate": { "alias": "headerExtraTemplate"; "required": false; }; "cellTemplate": { "alias": "cellTemplate"; "required": false; }; "useContentRowTemplate": { "alias": "useContentRowTemplate"; "required": false; }; "useContentHeaderRowTemplate": { "alias": "useContentHeaderRowTemplate"; "required": false; }; "useContentFooterRowTemplate": { "alias": "useContentFooterRowTemplate"; "required": false; }; "showSummary": { "alias": "showSummary"; "required": false; }; "summaryTemplate": { "alias": "summaryTemplate"; "required": false; }; "showSidebar": { "alias": "showSidebar"; "required": false; }; "sidebarTemplate": { "alias": "sidebarTemplate"; "required": false; }; "showStatusbar": { "alias": "showStatusbar"; "required": false; }; "statusbarTemplate": { "alias": "statusbarTemplate"; "required": false; }; }, { "page": "page"; "sortChange": "sortChange"; "rowClick": "rowClick"; "expansionChange": "expansionChange"; "rowSelectedChange": "rowSelectedChange"; "cellSelectedChange": "cellSelectedChange"; "columnChange": "columnChange"; }, ["rowDefs", "headerRowDefs", "footerRowDefs"], never, false, never>;
|
|
228
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MtxGrid, "mtx-grid", ["mtxGrid"], { "displayedColumns": { "alias": "displayedColumns"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "data": { "alias": "data"; "required": false; }; "length": { "alias": "length"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "trackBy": { "alias": "trackBy"; "required": false; }; "columnResizable": { "alias": "columnResizable"; "required": false; }; "emptyValuePlaceholder": { "alias": "emptyValuePlaceholder"; "required": false; }; "pageOnFront": { "alias": "pageOnFront"; "required": false; }; "showPaginator": { "alias": "showPaginator"; "required": false; }; "pageDisabled": { "alias": "pageDisabled"; "required": false; }; "showFirstLastButtons": { "alias": "showFirstLastButtons"; "required": false; }; "pageIndex": { "alias": "pageIndex"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; }; "hidePageSize": { "alias": "hidePageSize"; "required": false; }; "paginationTemplate": { "alias": "paginationTemplate"; "required": false; }; "sortOnFront": { "alias": "sortOnFront"; "required": false; }; "sortActive": { "alias": "sortActive"; "required": false; }; "sortDirection": { "alias": "sortDirection"; "required": false; }; "sortDisableClear": { "alias": "sortDisableClear"; "required": false; }; "sortDisabled": { "alias": "sortDisabled"; "required": false; }; "sortStart": { "alias": "sortStart"; "required": false; }; "rowHover": { "alias": "rowHover"; "required": false; }; "rowStriped": { "alias": "rowStriped"; "required": false; }; "expandable": { "alias": "expandable"; "required": false; }; "expansionTemplate": { "alias": "expansionTemplate"; "required": false; }; "multiSelectable": { "alias": "multiSelectable"; "required": false; }; "multiSelectionWithClick": { "alias": "multiSelectionWithClick"; "required": false; }; "rowSelectable": { "alias": "rowSelectable"; "required": false; }; "hideRowSelectionCheckbox": { "alias": "hideRowSelectionCheckbox"; "required": false; }; "disableRowClickSelection": { "alias": "disableRowClickSelection"; "required": false; }; "rowSelectionFormatter": { "alias": "rowSelectionFormatter"; "required": false; }; "rowClassFormatter": { "alias": "rowClassFormatter"; "required": false; }; "rowSelected": { "alias": "rowSelected"; "required": false; }; "cellSelectable": { "alias": "cellSelectable"; "required": false; }; "showToolbar": { "alias": "showToolbar"; "required": false; }; "toolbarTitle": { "alias": "toolbarTitle"; "required": false; }; "toolbarTemplate": { "alias": "toolbarTemplate"; "required": false; }; "columnHideable": { "alias": "columnHideable"; "required": false; }; "columnHideableChecked": { "alias": "columnHideableChecked"; "required": false; }; "columnSortable": { "alias": "columnSortable"; "required": false; }; "columnPinnable": { "alias": "columnPinnable"; "required": false; }; "columnPinOptions": { "alias": "columnPinOptions"; "required": false; }; "showColumnMenuButton": { "alias": "showColumnMenuButton"; "required": false; }; "columnMenuButtonText": { "alias": "columnMenuButtonText"; "required": false; }; "columnMenuButtonType": { "alias": "columnMenuButtonType"; "required": false; }; "columnMenuButtonColor": { "alias": "columnMenuButtonColor"; "required": false; }; "columnMenuButtonClass": { "alias": "columnMenuButtonClass"; "required": false; }; "columnMenuButtonIcon": { "alias": "columnMenuButtonIcon"; "required": false; }; "showColumnMenuHeader": { "alias": "showColumnMenuHeader"; "required": false; }; "columnMenuHeaderText": { "alias": "columnMenuHeaderText"; "required": false; }; "columnMenuHeaderTemplate": { "alias": "columnMenuHeaderTemplate"; "required": false; }; "showColumnMenuFooter": { "alias": "showColumnMenuFooter"; "required": false; }; "columnMenuFooterText": { "alias": "columnMenuFooterText"; "required": false; }; "columnMenuFooterTemplate": { "alias": "columnMenuFooterTemplate"; "required": false; }; "noResultText": { "alias": "noResultText"; "required": false; }; "noResultTemplate": { "alias": "noResultTemplate"; "required": false; }; "headerTemplate": { "alias": "headerTemplate"; "required": false; }; "headerExtraTemplate": { "alias": "headerExtraTemplate"; "required": false; }; "cellTemplate": { "alias": "cellTemplate"; "required": false; }; "useContentRowTemplate": { "alias": "useContentRowTemplate"; "required": false; }; "useContentHeaderRowTemplate": { "alias": "useContentHeaderRowTemplate"; "required": false; }; "useContentFooterRowTemplate": { "alias": "useContentFooterRowTemplate"; "required": false; }; "showSummary": { "alias": "showSummary"; "required": false; }; "summaryTemplate": { "alias": "summaryTemplate"; "required": false; }; "showSidebar": { "alias": "showSidebar"; "required": false; }; "sidebarTemplate": { "alias": "sidebarTemplate"; "required": false; }; "showStatusbar": { "alias": "showStatusbar"; "required": false; }; "statusbarTemplate": { "alias": "statusbarTemplate"; "required": false; }; }, { "page": "page"; "sortChange": "sortChange"; "rowClick": "rowClick"; "rowContextMenu": "rowContextMenu"; "expansionChange": "expansionChange"; "rowSelectedChange": "rowSelectedChange"; "cellSelectedChange": "cellSelectedChange"; "columnChange": "columnChange"; }, ["rowDefs", "headerRowDefs", "footerRowDefs"], never, false, never>;
|
|
226
229
|
}
|
|
227
230
|
export declare class MtxGridSelectableCell {
|
|
228
231
|
private _grid;
|
package/grid/public-api.d.ts
CHANGED
|
@@ -5,7 +5,6 @@ export * from './grid';
|
|
|
5
5
|
export * from './cell';
|
|
6
6
|
export * from './column-menu';
|
|
7
7
|
export * from './expansion-toggle';
|
|
8
|
-
export * from './image-preview';
|
|
9
8
|
export * from './interfaces';
|
|
10
9
|
export { TABLE_PROVIDERS as MAT_TABLE_PROVIDERS, FLEX_PROVIDERS as MAT_FLEX_PROVIDERS, TABLE_HOST_BINDINGS as MAT_TABLE_HOST_BINDINGS, FLEX_HOST_BINDINGS as MAT_FLEX_HOST_BINDINGS, AbstractMatColumnResize, } from './column-resize/column-resize-directives/common';
|
|
11
10
|
export { MatColumnResize } from './column-resize/column-resize-directives/column-resize';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ng-matero/extensions",
|
|
3
|
-
"version": "16.
|
|
3
|
+
"version": "16.3.1",
|
|
4
4
|
"description": "Angular Material Extensions",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -96,18 +96,18 @@
|
|
|
96
96
|
"esm": "./esm2022/core/mtxCore.mjs",
|
|
97
97
|
"default": "./fesm2022/mtxCore.mjs"
|
|
98
98
|
},
|
|
99
|
-
"./column-resize": {
|
|
100
|
-
"types": "./column-resize/index.d.ts",
|
|
101
|
-
"esm2022": "./esm2022/column-resize/mtxColumnResize.mjs",
|
|
102
|
-
"esm": "./esm2022/column-resize/mtxColumnResize.mjs",
|
|
103
|
-
"default": "./fesm2022/mtxColumnResize.mjs"
|
|
104
|
-
},
|
|
105
99
|
"./datetimepicker": {
|
|
106
100
|
"types": "./datetimepicker/index.d.ts",
|
|
107
101
|
"esm2022": "./esm2022/datetimepicker/mtxDatetimepicker.mjs",
|
|
108
102
|
"esm": "./esm2022/datetimepicker/mtxDatetimepicker.mjs",
|
|
109
103
|
"default": "./fesm2022/mtxDatetimepicker.mjs"
|
|
110
104
|
},
|
|
105
|
+
"./column-resize": {
|
|
106
|
+
"types": "./column-resize/index.d.ts",
|
|
107
|
+
"esm2022": "./esm2022/column-resize/mtxColumnResize.mjs",
|
|
108
|
+
"esm": "./esm2022/column-resize/mtxColumnResize.mjs",
|
|
109
|
+
"default": "./fesm2022/mtxColumnResize.mjs"
|
|
110
|
+
},
|
|
111
111
|
"./dialog": {
|
|
112
112
|
"types": "./dialog/index.d.ts",
|
|
113
113
|
"esm2022": "./esm2022/dialog/mtxDialog.mjs",
|
|
@@ -120,17 +120,23 @@
|
|
|
120
120
|
"esm": "./esm2022/drawer/mtxDrawer.mjs",
|
|
121
121
|
"default": "./fesm2022/mtxDrawer.mjs"
|
|
122
122
|
},
|
|
123
|
+
"./grid": {
|
|
124
|
+
"types": "./grid/index.d.ts",
|
|
125
|
+
"esm2022": "./esm2022/grid/mtxGrid.mjs",
|
|
126
|
+
"esm": "./esm2022/grid/mtxGrid.mjs",
|
|
127
|
+
"default": "./fesm2022/mtxGrid.mjs"
|
|
128
|
+
},
|
|
123
129
|
"./loader": {
|
|
124
130
|
"types": "./loader/index.d.ts",
|
|
125
131
|
"esm2022": "./esm2022/loader/mtxLoader.mjs",
|
|
126
132
|
"esm": "./esm2022/loader/mtxLoader.mjs",
|
|
127
133
|
"default": "./fesm2022/mtxLoader.mjs"
|
|
128
134
|
},
|
|
129
|
-
"./
|
|
130
|
-
"types": "./
|
|
131
|
-
"esm2022": "./esm2022/
|
|
132
|
-
"esm": "./esm2022/
|
|
133
|
-
"default": "./fesm2022/
|
|
135
|
+
"./photoviewer": {
|
|
136
|
+
"types": "./photoviewer/index.d.ts",
|
|
137
|
+
"esm2022": "./esm2022/photoviewer/mtxPhotoviewer.mjs",
|
|
138
|
+
"esm": "./esm2022/photoviewer/mtxPhotoviewer.mjs",
|
|
139
|
+
"default": "./fesm2022/mtxPhotoviewer.mjs"
|
|
134
140
|
},
|
|
135
141
|
"./popover": {
|
|
136
142
|
"types": "./popover/index.d.ts",
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./photoviewer";
|
|
3
|
+
export declare class MtxPhotoviewerModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxPhotoviewerModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MtxPhotoviewerModule, [typeof i1.MtxPhotoviewer], never, [typeof i1.MtxPhotoviewer]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MtxPhotoviewerModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ElementRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import PhotoViewer from 'photoviewer';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MtxPhotoviewer implements OnInit, OnDestroy {
|
|
5
|
+
private _elementRef;
|
|
6
|
+
images: PhotoViewer.Img[];
|
|
7
|
+
options?: PhotoViewer.Options;
|
|
8
|
+
embed: boolean;
|
|
9
|
+
photoviewerInstance?: PhotoViewer;
|
|
10
|
+
constructor(_elementRef: ElementRef<Element>);
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
ngOnDestroy(): void;
|
|
13
|
+
onClick(event: MouseEvent): void;
|
|
14
|
+
initPhotoViewer(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxPhotoviewer, never>;
|
|
16
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxPhotoviewer, "[mtxPhotoviewer]", ["mtxPhotoviewer"], { "images": { "alias": "mtxPhotoviewerItems"; "required": false; }; "options": { "alias": "mtxPhotoviewerOptions"; "required": false; }; "embed": { "alias": "mtxPhotoviewerEmbed"; "required": false; }; }, {}, never, never, false, never>;
|
|
17
|
+
}
|
package/popover/popover.d.ts
CHANGED
|
@@ -25,6 +25,7 @@ export declare class MtxPopover implements MtxPopoverPanel, OnInit, OnDestroy {
|
|
|
25
25
|
private _arrowHeight;
|
|
26
26
|
private _arrowOffsetX;
|
|
27
27
|
private _arrowOffsetY;
|
|
28
|
+
private _hideArrow;
|
|
28
29
|
private _closeOnPanelClick;
|
|
29
30
|
private _closeOnBackdropClick;
|
|
30
31
|
private _focusTrapEnabled;
|
|
@@ -89,6 +90,9 @@ export declare class MtxPopover implements MtxPopoverPanel, OnInit, OnDestroy {
|
|
|
89
90
|
/** Popover-arrow's Y offset. */
|
|
90
91
|
get arrowOffsetY(): number;
|
|
91
92
|
set arrowOffsetY(value: number);
|
|
93
|
+
/** Whether the popover arrow should be hidden. */
|
|
94
|
+
get hideArrow(): boolean;
|
|
95
|
+
set hideArrow(value: boolean);
|
|
92
96
|
/** Whether popover can be closed when click the popover-panel. */
|
|
93
97
|
get closeOnPanelClick(): boolean;
|
|
94
98
|
set closeOnPanelClick(value: boolean);
|
|
@@ -165,6 +169,7 @@ export declare class MtxPopover implements MtxPopoverPanel, OnInit, OnDestroy {
|
|
|
165
169
|
static ngAcceptInputType_focusTrapEnabled: BooleanInput;
|
|
166
170
|
static ngAcceptInputType_focusTrapAutoCaptureEnabled: BooleanInput;
|
|
167
171
|
static ngAcceptInputType_hasBackdrop: BooleanInput;
|
|
172
|
+
static ngAcceptInputType_hideArrow: BooleanInput;
|
|
168
173
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtxPopover, never>;
|
|
169
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MtxPopover, "mtx-popover", ["mtxPopover"], { "backdropClass": { "alias": "backdropClass"; "required": false; }; "ariaLabel": { "alias": "aria-label"; "required": false; }; "ariaLabelledby": { "alias": "aria-labelledby"; "required": false; }; "ariaDescribedby": { "alias": "aria-describedby"; "required": false; }; "triggerEvent": { "alias": "triggerEvent"; "required": false; }; "enterDelay": { "alias": "enterDelay"; "required": false; }; "leaveDelay": { "alias": "leaveDelay"; "required": false; }; "position": { "alias": "position"; "required": false; }; "xOffset": { "alias": "xOffset"; "required": false; }; "yOffset": { "alias": "yOffset"; "required": false; }; "arrowWidth": { "alias": "arrowWidth"; "required": false; }; "arrowHeight": { "alias": "arrowHeight"; "required": false; }; "arrowOffsetX": { "alias": "arrowOffsetX"; "required": false; }; "arrowOffsetY": { "alias": "arrowOffsetY"; "required": false; }; "closeOnPanelClick": { "alias": "closeOnPanelClick"; "required": false; }; "closeOnBackdropClick": { "alias": "closeOnBackdropClick"; "required": false; }; "focusTrapEnabled": { "alias": "focusTrapEnabled"; "required": false; }; "focusTrapAutoCaptureEnabled": { "alias": "focusTrapAutoCaptureEnabled"; "required": false; }; "hasBackdrop": { "alias": "hasBackdrop"; "required": false; }; "elevation": { "alias": "elevation"; "required": false; }; "panelClass": { "alias": "class"; "required": false; }; "classList": { "alias": "classList"; "required": false; }; }, { "closed": "closed"; }, ["lazyContent"], ["*"], false, never>;
|
|
174
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MtxPopover, "mtx-popover", ["mtxPopover"], { "backdropClass": { "alias": "backdropClass"; "required": false; }; "ariaLabel": { "alias": "aria-label"; "required": false; }; "ariaLabelledby": { "alias": "aria-labelledby"; "required": false; }; "ariaDescribedby": { "alias": "aria-describedby"; "required": false; }; "triggerEvent": { "alias": "triggerEvent"; "required": false; }; "enterDelay": { "alias": "enterDelay"; "required": false; }; "leaveDelay": { "alias": "leaveDelay"; "required": false; }; "position": { "alias": "position"; "required": false; }; "xOffset": { "alias": "xOffset"; "required": false; }; "yOffset": { "alias": "yOffset"; "required": false; }; "arrowWidth": { "alias": "arrowWidth"; "required": false; }; "arrowHeight": { "alias": "arrowHeight"; "required": false; }; "arrowOffsetX": { "alias": "arrowOffsetX"; "required": false; }; "arrowOffsetY": { "alias": "arrowOffsetY"; "required": false; }; "hideArrow": { "alias": "hideArrow"; "required": false; }; "closeOnPanelClick": { "alias": "closeOnPanelClick"; "required": false; }; "closeOnBackdropClick": { "alias": "closeOnBackdropClick"; "required": false; }; "focusTrapEnabled": { "alias": "focusTrapEnabled"; "required": false; }; "focusTrapAutoCaptureEnabled": { "alias": "focusTrapAutoCaptureEnabled"; "required": false; }; "hasBackdrop": { "alias": "hasBackdrop"; "required": false; }; "elevation": { "alias": "elevation"; "required": false; }; "panelClass": { "alias": "class"; "required": false; }; "classList": { "alias": "classList"; "required": false; }; }, { "closed": "closed"; }, ["lazyContent"], ["*"], false, never>;
|
|
170
175
|
}
|
package/popover/popover.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.mat-button-loading .mdc-button__label,.mat-button-loading .mat-icon{visibility:hidden}.mat-button-loading .mat-mdc-progress-spinner{position:absolute;top:calc(50% - 12px);left:calc(50% - 12px)}html{--mtx-alert-background-color:white;--mtx-alert-text-color:rgba(0, 0, 0, 0.87);--mtx-alert-info-background-color:#2196f3;--mtx-alert-info-text-color:white;--mtx-alert-success-background-color:#4caf50;--mtx-alert-success-text-color:white;--mtx-alert-warning-background-color:#ff9800;--mtx-alert-warning-text-color:white;--mtx-alert-danger-background-color:#f44336;--mtx-alert-danger-text-color:white}html{--mtx-colorpicker-toggle-active-state-icon-color:#673ab7;--mtx-colorpicker-toggle-icon-color:rgba(0, 0, 0, 0.54)}.mtx-colorpicker-toggle-active.mat-accent{--mtx-colorpicker-toggle-active-state-icon-color:#ffd740}.mtx-colorpicker-toggle-active.mat-warn{--mtx-colorpicker-toggle-active-state-icon-color:#f44336}html{--mtx-datetimepicker-calendar-header-background-color:#673ab7;--mtx-datetimepicker-calendar-date-selected-state-text-color:white;--mtx-datetimepicker-calendar-date-selected-state-background-color:#673ab7;--mtx-datetimepicker-calendar-date-selected-disabled-state-background-color:rgba(103, 58, 183, 0.4);--mtx-datetimepicker-calendar-date-today-selected-state-outline-color:white;--mtx-datetimepicker-calendar-date-focus-state-background-color:rgba(103, 58, 183, 0.3);--mtx-datetimepicker-calendar-date-hover-state-background-color:rgba(103, 58, 183, 0.3);--mtx-datetimepicker-clock-hand-background-color:#673ab7;--mtx-datetimepicker-clock-cell-selected-state-background-color:#673ab7;--mtx-datetimepicker-time-input-active-state-text-color:#673ab7;--mtx-datetimepicker-time-input-active-state-background-color:rgba(103, 58, 183, 0.2);--mtx-datetimepicker-time-input-focus-state-border-color:#673ab7;--mtx-datetimepicker-time-input-focus-state-placeholder-text-color:rgba(103, 58, 183, 0.6);--mtx-datetimepicker-toggle-active-state-icon-color:#673ab7;--mtx-datetimepicker-toggle-icon-color:rgba(0, 0, 0, 0.54);--mtx-datetimepicker-calendar-body-label-text-color:rgba(0, 0, 0, 0.54);--mtx-datetimepicker-calendar-header-text-color:white;--mtx-datetimepicker-calendar-header-divider-color:rgba(0, 0, 0, 0.12);--mtx-datetimepicker-calendar-table-header-text-color:rgba(0, 0, 0, 0.54);--mtx-datetimepicker-calendar-date-today-outline-color:rgba(0, 0, 0, 0.38);--mtx-datetimepicker-calendar-date-text-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-calendar-date-outline-color:transparent;--mtx-datetimepicker-calendar-date-disabled-state-text-color:rgba(0, 0, 0, 0.38);--mtx-datetimepicker-calendar-container-background-color:white;--mtx-datetimepicker-calendar-container-text-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-clock-dial-background-color:rgba(0, 0, 0, 0.12);--mtx-datetimepicker-clock-cell-text-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-clock-cell-hover-state-background-color:rgba(0, 0, 0, 0.04);--mtx-datetimepicker-clock-cell-disabled-state-text-color:rgba(0, 0, 0, 0.38);--mtx-datetimepicker-time-input-text-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-time-input-background-color:rgba(0, 0, 0, 0.12);--mtx-datetimepicker-time-input-focus-state-background-color:#fafafa;--mtx-datetimepicker-time-input-warn-state-border-color:#f44336;--mtx-datetimepicker-time-ampm-text-color:rgba(0, 0, 0, 0.75);--mtx-datetimepicker-time-ampm-border-color:rgba(0, 0, 0, 0.38);--mtx-datetimepicker-time-ampm-selected-state-text-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-time-ampm-selected-state-background-color:rgba(255, 215, 64, 0.2)}.mtx-datetimepicker-content.mat-accent{--mtx-datetimepicker-calendar-header-background-color:#ffd740;--mtx-datetimepicker-calendar-date-selected-state-text-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-calendar-date-selected-state-background-color:#ffd740;--mtx-datetimepicker-calendar-date-selected-disabled-state-background-color:rgba(255, 215, 64, 0.4);--mtx-datetimepicker-calendar-date-today-selected-state-outline-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-calendar-date-focus-state-background-color:rgba(255, 215, 64, 0.3);--mtx-datetimepicker-calendar-date-hover-state-background-color:rgba(255, 215, 64, 0.3);--mtx-datetimepicker-clock-hand-background-color:#ffd740;--mtx-datetimepicker-clock-cell-selected-state-background-color:#ffd740;--mtx-datetimepicker-time-input-active-state-text-color:#ffd740;--mtx-datetimepicker-time-input-active-state-background-color:rgba(255, 215, 64, 0.2);--mtx-datetimepicker-time-input-focus-state-border-color:#ffd740;--mtx-datetimepicker-time-input-focus-state-placeholder-text-color:rgba(255, 215, 64, 0.6)}.mtx-datetimepicker-content.mat-warn{--mtx-datetimepicker-calendar-header-background-color:#f44336;--mtx-datetimepicker-calendar-date-selected-state-text-color:white;--mtx-datetimepicker-calendar-date-selected-state-background-color:#f44336;--mtx-datetimepicker-calendar-date-selected-disabled-state-background-color:rgba(244, 67, 54, 0.4);--mtx-datetimepicker-calendar-date-today-selected-state-outline-color:white;--mtx-datetimepicker-calendar-date-focus-state-background-color:rgba(244, 67, 54, 0.3);--mtx-datetimepicker-calendar-date-hover-state-background-color:rgba(244, 67, 54, 0.3);--mtx-datetimepicker-clock-hand-background-color:#f44336;--mtx-datetimepicker-clock-cell-selected-state-background-color:#f44336;--mtx-datetimepicker-time-input-active-state-text-color:#f44336;--mtx-datetimepicker-time-input-active-state-background-color:rgba(244, 67, 54, 0.2);--mtx-datetimepicker-time-input-focus-state-border-color:#f44336;--mtx-datetimepicker-time-input-focus-state-placeholder-text-color:rgba(244, 67, 54, 0.6)}.mtx-datetimepicker-toggle-active.mat-accent{--mtx-datetimepicker-toggle-active-state-icon-color:#ffd740}.mtx-datetimepicker-toggle-active.mat-warn{--mtx-datetimepicker-toggle-active-state-icon-color:#f44336}html{--mtx-datetimepicker-calendar-text-font:Roboto, sans-serif;--mtx-datetimepicker-calendar-text-size:13px;--mtx-datetimepicker-calendar-body-label-text-size:14px;--mtx-datetimepicker-calendar-body-label-text-weight:500;--mtx-datetimepicker-calendar-period-button-text-size:14px;--mtx-datetimepicker-calendar-period-button-text-weight:500;--mtx-datetimepicker-calendar-table-header-text-size:11px;--mtx-datetimepicker-calendar-table-header-text-weight:400;--mtx-datetimepicker-clock-text-size:14px}html{--mtx-drawer-container-background-color:white;--mtx-drawer-container-text-color:rgba(0, 0, 0, 0.87)}html{--mtx-grid-outline-color:rgba(0, 0, 0, 0.2);--mtx-grid-column-menu-text-color:rgba(0, 0, 0, 0.87);--mtx-grid-column-menu-divider-color:rgba(0, 0, 0, 0.12);--mtx-grid-table-footer-background-color:whitesmoke;--mtx-grid-table-row-striped-background-color:#f5f5f5;--mtx-grid-table-row-hover-background-color:#e5e5e5;--mtx-grid-table-row-selected-background-color:#e5e5e5;--mtx-grid-table-cell-selected-outline-color:#ffd740}.mat-column-resize-table.cdk-column-resize-with-resized-column{table-layout:fixed}.mat-column-resize-flex .mat-mdc-header-cell,.mat-column-resize-flex .mat-mdc-cell{box-sizing:border-box;min-width:32px}.mat-mdc-header-cell{position:relative}.mat-resizable{box-sizing:border-box}.mat-mdc-header-cell:not(.mat-resizable)::after,.mat-resizable-handle{position:absolute;bottom:0;top:0;right:0;width:1px;background:rgba(0,0,0,0);transition:background 300ms cubic-bezier(0.55, 0, 0.55, 0.2)}.mat-mdc-header-cell:not(.mat-resizable)::after{content:""}[dir=rtl] .mat-mdc-header-cell:not(.mat-resizable)::after,[dir=rtl] .mat-resizable-handle{left:0;right:auto}.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-mdc-header-cell:not(.mat-resizable)::after{background:rgba(0,0,0,.12)}.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-resizable-handle{background:#b39ddb}.mat-resizable.cdk-resizable-overlay-thumb-active>.mat-resizable-handle{opacity:0;transition:none}.mat-resizable-handle:focus,.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-resizable-handle:focus{background:#673ab7;outline:none}.mat-column-resize-overlay-thumb{background:rgba(0,0,0,0);cursor:col-resize;height:100%;transition:background 300ms cubic-bezier(0.55, 0, 0.55, 0.2);width:100%;-webkit-user-select:none;user-select:none}.mat-column-resize-overlay-thumb:active{background:linear-gradient(90deg, transparent, transparent 7px, #673ab7, #673ab7 1px, transparent 8px, transparent);will-change:transform}html{--mtx-loader-backdrop-background-color:rgba(250, 250, 250, 0.75)}html{--mtx-popover-background-color:white;--mtx-popover-text-color:rgba(0, 0, 0, 0.87);--mtx-popover-arrow-outline-color:rgba(0, 0, 0, 0.12)}html{--mtx-progress-track-color:rgba(0, 0, 0, 0.04);--mtx-progress-indicator-color:rgba(0, 0, 0, 0.12);--mtx-progress-text-color:rgba(0, 0, 0, 0.87);--mtx-progress-info-indicator-color:#2196f3;--mtx-progress-info-text-color:white;--mtx-progress-success-indicator-color:#4caf50;--mtx-progress-success-text-color:white;--mtx-progress-warning-indicator-color:#ff9800;--mtx-progress-warning-text-color:white;--mtx-progress-danger-indicator-color:#f44336;--mtx-progress-danger-text-color:white}html{--mtx-select-option-selected-state-text-color:#673ab7;--mtx-select-container-text-color:rgba(0, 0, 0, 0.87);--mtx-select-placeholder-text-color:rgba(0, 0, 0, 0.38);--mtx-select-disabled-text-color:rgba(0, 0, 0, 0.38);--mtx-select-multiple-value-background-color:#e0e0e0;--mtx-select-multiple-value-border-color:rgba(0, 0, 0, 0.12);--mtx-select-multiple-value-icon-hover-background-color:rgba(0, 0, 0, 0.12);--mtx-select-clear-icon-color:rgba(0, 0, 0, 0.54);--mtx-select-clear-icon-hover-color:#f44336;--mtx-select-enabled-arrow-color:rgba(0, 0, 0, 0.54);--mtx-select-disabled-arrow-color:rgba(0, 0, 0, 0.38);--mtx-select-invalid-arrow-color:#f44336;--mtx-select-panel-background-color:white;--mtx-select-panel-divider-color:rgba(0, 0, 0, 0.12);--mtx-select-optgroup-label-text-color:rgba(0, 0, 0, 0.54);--mtx-select-option-label-text-color:rgba(0, 0, 0, 0.87);--mtx-select-option-selected-state-background-color:rgba(0, 0, 0, 0.04);--mtx-select-option-hover-state-background-color:rgba(0, 0, 0, 0.04);--mtx-select-option-disabled-state-text-color:rgba(0, 0, 0, 0.38)}.ng-dropdown-panel.mat-accent{--mtx-select-option-selected-state-text-color:#ffd740}.ng-dropdown-panel.mat-warn{--mtx-select-option-selected-state-text-color:#f44336}.mdc-text-field--outlined .ng-select{padding-top:16px;padding-bottom:16px;margin-top:-16px;margin-bottom:-16px}.ng-select{padding-top:24px;padding-bottom:8px;margin-top:-24px;margin-bottom:-8px}.mdc-text-field--no-label .ng-select{padding-top:16px;padding-bottom:16px;margin-top:-16px;margin-bottom:-16px}html{--mtx-split-gutter-hover-state-background-color:#673ab7;--mtx-split-gutter-background-color:rgba(0, 0, 0, 0.12)}.mtx-split>.mtx-split-gutter.mat-accent:hover{--mtx-split-gutter-hover-state-background-color:#ffd740}.mtx-split>.mtx-split-gutter.mat-warn:hover{--mtx-split-gutter-hover-state-background-color:#f44336}.mtx-mdc-tooltip{--mdc-plain-tooltip-container-color:#616161;--mdc-plain-tooltip-supporting-text-color:#fff}.mtx-mdc-tooltip{--mdc-plain-tooltip-supporting-text-font:Roboto, sans-serif;--mdc-plain-tooltip-supporting-text-size:12px;--mdc-plain-tooltip-supporting-text-weight:400;--mdc-plain-tooltip-supporting-text-tracking:0.0333333333em}
|
|
1
|
+
.mat-button-loading .mdc-button__label,.mat-button-loading .mat-icon{visibility:hidden}.mat-button-loading .mat-mdc-progress-spinner{position:absolute;top:calc(50% - 12px);left:calc(50% - 12px)}.mat-column-resize-table.cdk-column-resize-with-resized-column{table-layout:fixed}.mat-column-resize-flex .mat-mdc-header-cell,.mat-column-resize-flex .mat-mdc-cell{box-sizing:border-box;min-width:32px}.mat-mdc-header-cell{position:relative}.mat-resizable{box-sizing:border-box}.mat-mdc-header-cell:not(.mat-resizable)::after,.mat-resizable-handle{position:absolute;bottom:0;top:0;right:0;width:1px;background:rgba(0,0,0,0);transition:background 300ms cubic-bezier(0.55, 0, 0.55, 0.2)}.mat-mdc-header-cell:not(.mat-resizable)::after{content:""}[dir=rtl] .mat-mdc-header-cell:not(.mat-resizable)::after,[dir=rtl] .mat-resizable-handle{left:0;right:auto}[dir=rtl] .mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-header-cell,[dir=rtl] .mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-mdc-header-cell{border-left:none}.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-mdc-header-cell{border-right:none}.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-mdc-header-cell:not(.mat-resizable)::after{background-color:var(--mtx-grid-resizable-handle-disabled-background-color)}.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-resizable-handle{background-color:var(--mtx-grid-resizable-handle-hover-background-color)}.mat-resizable.cdk-resizable-overlay-thumb-active>.mat-resizable-handle{opacity:0;transition:none}.mat-resizable-handle:focus,.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-resizable-handle:focus{outline:none;background-color:var(--mtx-grid-resizable-handle-active-background-color)}.mat-column-resize-overlay-thumb{background:rgba(0,0,0,0);cursor:col-resize;width:100%;height:100%;transition:background 300ms cubic-bezier(0.55, 0, 0.55, 0.2);-webkit-user-select:none;user-select:none}.mat-column-resize-overlay-thumb:active{will-change:transform;background:linear-gradient(90deg, transparent, transparent 7px, var(--mtx-grid-resizable-handle-active-background-color) 7px, var(--mtx-grid-resizable-handle-active-background-color) 9px, transparent 9px, transparent)}.mat-column-resize-overlay-thumb:active .mat-column-resize-overlay-thumb-top{background:linear-gradient(90deg, transparent, transparent 4px, var(--mtx-grid-resizable-handle-active-background-color) 4px, var(--mtx-grid-resizable-handle-active-background-color) 12px, transparent 12px, transparent)}.mat-column-resize-overlay-thumb-top{width:100%}html{--mtx-alert-background-color:white;--mtx-alert-text-color:rgba(0, 0, 0, 0.87);--mtx-alert-info-background-color:#2196f3;--mtx-alert-info-text-color:white;--mtx-alert-success-background-color:#4caf50;--mtx-alert-success-text-color:white;--mtx-alert-warning-background-color:#ff9800;--mtx-alert-warning-text-color:white;--mtx-alert-danger-background-color:#f44336;--mtx-alert-danger-text-color:white}html{--mtx-colorpicker-toggle-active-state-icon-color:#673ab7;--mtx-colorpicker-toggle-icon-color:rgba(0, 0, 0, 0.54)}.mtx-colorpicker-toggle-active.mat-accent{--mtx-colorpicker-toggle-active-state-icon-color:#ffd740}.mtx-colorpicker-toggle-active.mat-warn{--mtx-colorpicker-toggle-active-state-icon-color:#f44336}html{--mtx-datetimepicker-calendar-header-background-color:#673ab7;--mtx-datetimepicker-calendar-date-selected-state-text-color:white;--mtx-datetimepicker-calendar-date-selected-state-background-color:#673ab7;--mtx-datetimepicker-calendar-date-selected-disabled-state-background-color:rgba(103, 58, 183, 0.4);--mtx-datetimepicker-calendar-date-today-selected-state-outline-color:white;--mtx-datetimepicker-calendar-date-focus-state-background-color:rgba(103, 58, 183, 0.3);--mtx-datetimepicker-calendar-date-hover-state-background-color:rgba(103, 58, 183, 0.3);--mtx-datetimepicker-clock-hand-background-color:#673ab7;--mtx-datetimepicker-clock-cell-selected-state-background-color:#673ab7;--mtx-datetimepicker-time-input-active-state-text-color:#673ab7;--mtx-datetimepicker-time-input-active-state-background-color:rgba(103, 58, 183, 0.2);--mtx-datetimepicker-time-input-focus-state-border-color:#673ab7;--mtx-datetimepicker-time-input-focus-state-placeholder-text-color:rgba(103, 58, 183, 0.6);--mtx-datetimepicker-toggle-active-state-icon-color:#673ab7;--mtx-datetimepicker-toggle-icon-color:rgba(0, 0, 0, 0.54);--mtx-datetimepicker-calendar-body-label-text-color:rgba(0, 0, 0, 0.54);--mtx-datetimepicker-calendar-header-text-color:white;--mtx-datetimepicker-calendar-header-divider-color:rgba(0, 0, 0, 0.12);--mtx-datetimepicker-calendar-table-header-text-color:rgba(0, 0, 0, 0.54);--mtx-datetimepicker-calendar-date-today-outline-color:rgba(0, 0, 0, 0.38);--mtx-datetimepicker-calendar-date-text-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-calendar-date-outline-color:transparent;--mtx-datetimepicker-calendar-date-disabled-state-text-color:rgba(0, 0, 0, 0.38);--mtx-datetimepicker-calendar-container-background-color:white;--mtx-datetimepicker-calendar-container-text-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-clock-dial-background-color:rgba(0, 0, 0, 0.12);--mtx-datetimepicker-clock-cell-text-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-clock-cell-hover-state-background-color:rgba(0, 0, 0, 0.04);--mtx-datetimepicker-clock-cell-disabled-state-text-color:rgba(0, 0, 0, 0.38);--mtx-datetimepicker-time-input-text-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-time-input-background-color:rgba(0, 0, 0, 0.12);--mtx-datetimepicker-time-input-focus-state-background-color:#fafafa;--mtx-datetimepicker-time-input-warn-state-border-color:#f44336;--mtx-datetimepicker-time-ampm-text-color:rgba(0, 0, 0, 0.75);--mtx-datetimepicker-time-ampm-border-color:rgba(0, 0, 0, 0.38);--mtx-datetimepicker-time-ampm-selected-state-text-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-time-ampm-selected-state-background-color:rgba(255, 215, 64, 0.2)}.mtx-datetimepicker-content.mat-accent{--mtx-datetimepicker-calendar-header-background-color:#ffd740;--mtx-datetimepicker-calendar-date-selected-state-text-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-calendar-date-selected-state-background-color:#ffd740;--mtx-datetimepicker-calendar-date-selected-disabled-state-background-color:rgba(255, 215, 64, 0.4);--mtx-datetimepicker-calendar-date-today-selected-state-outline-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-calendar-date-focus-state-background-color:rgba(255, 215, 64, 0.3);--mtx-datetimepicker-calendar-date-hover-state-background-color:rgba(255, 215, 64, 0.3);--mtx-datetimepicker-clock-hand-background-color:#ffd740;--mtx-datetimepicker-clock-cell-selected-state-background-color:#ffd740;--mtx-datetimepicker-time-input-active-state-text-color:#ffd740;--mtx-datetimepicker-time-input-active-state-background-color:rgba(255, 215, 64, 0.2);--mtx-datetimepicker-time-input-focus-state-border-color:#ffd740;--mtx-datetimepicker-time-input-focus-state-placeholder-text-color:rgba(255, 215, 64, 0.6)}.mtx-datetimepicker-content.mat-warn{--mtx-datetimepicker-calendar-header-background-color:#f44336;--mtx-datetimepicker-calendar-date-selected-state-text-color:white;--mtx-datetimepicker-calendar-date-selected-state-background-color:#f44336;--mtx-datetimepicker-calendar-date-selected-disabled-state-background-color:rgba(244, 67, 54, 0.4);--mtx-datetimepicker-calendar-date-today-selected-state-outline-color:white;--mtx-datetimepicker-calendar-date-focus-state-background-color:rgba(244, 67, 54, 0.3);--mtx-datetimepicker-calendar-date-hover-state-background-color:rgba(244, 67, 54, 0.3);--mtx-datetimepicker-clock-hand-background-color:#f44336;--mtx-datetimepicker-clock-cell-selected-state-background-color:#f44336;--mtx-datetimepicker-time-input-active-state-text-color:#f44336;--mtx-datetimepicker-time-input-active-state-background-color:rgba(244, 67, 54, 0.2);--mtx-datetimepicker-time-input-focus-state-border-color:#f44336;--mtx-datetimepicker-time-input-focus-state-placeholder-text-color:rgba(244, 67, 54, 0.6)}.mtx-datetimepicker-toggle-active.mat-accent{--mtx-datetimepicker-toggle-active-state-icon-color:#ffd740}.mtx-datetimepicker-toggle-active.mat-warn{--mtx-datetimepicker-toggle-active-state-icon-color:#f44336}html{--mtx-datetimepicker-calendar-text-font:Roboto, sans-serif;--mtx-datetimepicker-calendar-text-size:13px;--mtx-datetimepicker-calendar-body-label-text-size:14px;--mtx-datetimepicker-calendar-body-label-text-weight:500;--mtx-datetimepicker-calendar-period-button-text-size:14px;--mtx-datetimepicker-calendar-period-button-text-weight:500;--mtx-datetimepicker-calendar-table-header-text-size:11px;--mtx-datetimepicker-calendar-table-header-text-weight:400;--mtx-datetimepicker-clock-text-size:14px}html{--mtx-drawer-container-background-color:white;--mtx-drawer-container-text-color:rgba(0, 0, 0, 0.87)}html{--mtx-grid-outline-color:rgba(0, 0, 0, 0.2);--mtx-grid-column-menu-text-color:rgba(0, 0, 0, 0.87);--mtx-grid-column-menu-divider-color:rgba(0, 0, 0, 0.12);--mtx-grid-table-footer-background-color:whitesmoke;--mtx-grid-table-row-striped-background-color:#f5f5f5;--mtx-grid-table-row-hover-background-color:#e5e5e5;--mtx-grid-table-row-selected-background-color:#e5e5e5;--mtx-grid-table-cell-selected-outline-color:#ffd740;--mtx-grid-resizable-handle-active-background-color:#673ab7;--mtx-grid-resizable-handle-hover-background-color:#673ab7;--mtx-grid-resizable-handle-disabled-background-color:rgba(0, 0, 0, 0.12)}html{--mtx-loader-backdrop-background-color:rgba(250, 250, 250, 0.75)}html{--mtx-popover-background-color:white;--mtx-popover-text-color:rgba(0, 0, 0, 0.87);--mtx-popover-arrow-outline-color:rgba(0, 0, 0, 0.12)}html{--mtx-progress-track-color:rgba(0, 0, 0, 0.04);--mtx-progress-indicator-color:rgba(0, 0, 0, 0.12);--mtx-progress-text-color:rgba(0, 0, 0, 0.87);--mtx-progress-info-indicator-color:#2196f3;--mtx-progress-info-text-color:white;--mtx-progress-success-indicator-color:#4caf50;--mtx-progress-success-text-color:white;--mtx-progress-warning-indicator-color:#ff9800;--mtx-progress-warning-text-color:white;--mtx-progress-danger-indicator-color:#f44336;--mtx-progress-danger-text-color:white}html{--mtx-select-option-selected-state-text-color:#673ab7;--mtx-select-container-text-color:rgba(0, 0, 0, 0.87);--mtx-select-placeholder-text-color:rgba(0, 0, 0, 0.38);--mtx-select-disabled-text-color:rgba(0, 0, 0, 0.38);--mtx-select-multiple-value-background-color:#e0e0e0;--mtx-select-multiple-value-border-color:rgba(0, 0, 0, 0.12);--mtx-select-multiple-value-icon-hover-background-color:rgba(0, 0, 0, 0.12);--mtx-select-clear-icon-color:rgba(0, 0, 0, 0.54);--mtx-select-clear-icon-hover-color:#f44336;--mtx-select-enabled-arrow-color:rgba(0, 0, 0, 0.54);--mtx-select-disabled-arrow-color:rgba(0, 0, 0, 0.38);--mtx-select-invalid-arrow-color:#f44336;--mtx-select-panel-background-color:white;--mtx-select-panel-divider-color:rgba(0, 0, 0, 0.12);--mtx-select-optgroup-label-text-color:rgba(0, 0, 0, 0.54);--mtx-select-option-label-text-color:rgba(0, 0, 0, 0.87);--mtx-select-option-selected-state-background-color:rgba(0, 0, 0, 0.04);--mtx-select-option-hover-state-background-color:rgba(0, 0, 0, 0.04);--mtx-select-option-disabled-state-text-color:rgba(0, 0, 0, 0.38)}.ng-dropdown-panel.mat-accent{--mtx-select-option-selected-state-text-color:#ffd740}.ng-dropdown-panel.mat-warn{--mtx-select-option-selected-state-text-color:#f44336}.mdc-text-field--outlined .ng-select{padding-top:16px;padding-bottom:16px;margin-top:-16px;margin-bottom:-16px}.ng-select{padding-top:24px;padding-bottom:8px;margin-top:-24px;margin-bottom:-8px}.mdc-text-field--no-label .ng-select{padding-top:16px;padding-bottom:16px;margin-top:-16px;margin-bottom:-16px}html{--mtx-split-gutter-hover-state-background-color:#673ab7;--mtx-split-gutter-background-color:rgba(0, 0, 0, 0.12)}.mtx-split>.mtx-split-gutter.mat-accent:hover{--mtx-split-gutter-hover-state-background-color:#ffd740}.mtx-split>.mtx-split-gutter.mat-warn:hover{--mtx-split-gutter-hover-state-background-color:#f44336}.mtx-mdc-tooltip{--mdc-plain-tooltip-container-color:#616161;--mdc-plain-tooltip-supporting-text-color:#fff}.mtx-mdc-tooltip{--mdc-plain-tooltip-supporting-text-font:Roboto, sans-serif;--mdc-plain-tooltip-supporting-text-size:12px;--mdc-plain-tooltip-supporting-text-weight:400;--mdc-plain-tooltip-supporting-text-tracking:0.0333333333em}
|