@ng-matero/extensions 14.6.4 → 14.8.0

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.
Files changed (86) hide show
  1. package/_index.scss +4 -5
  2. package/_theming.scss +4 -5
  3. package/button/_button-theme.import.scss +2 -0
  4. package/button/_button-theme.scss +9 -0
  5. package/checkbox-group/checkbox-group.component.d.ts +6 -6
  6. package/{_all-color.scss → core/color/_all-color.scss} +2 -2
  7. package/core/pipes/index.d.ts +1 -0
  8. package/core/pipes/is-template-ref.pipe.d.ts +7 -0
  9. package/core/pipes/pipes.module.d.ts +3 -2
  10. package/core/theming/_all-theme.scss +53 -0
  11. package/core/theming/prebuilt/deeppurple-amber.scss +20 -0
  12. package/core/theming/prebuilt/indigo-pink.scss +20 -0
  13. package/core/theming/prebuilt/pink-bluegrey.scss +20 -0
  14. package/core/theming/prebuilt/purple-green.scss +20 -0
  15. package/datetimepicker/public-api.d.ts +1 -0
  16. package/esm2020/checkbox-group/checkbox-group.component.mjs +10 -11
  17. package/esm2020/core/pipes/index.mjs +2 -1
  18. package/esm2020/core/pipes/is-template-ref.pipe.mjs +14 -0
  19. package/esm2020/core/pipes/pipes.module.mjs +5 -4
  20. package/esm2020/datetimepicker/datetimepicker-input.mjs +1 -1
  21. package/esm2020/datetimepicker/public-api.mjs +2 -1
  22. package/esm2020/grid/cell.component.mjs +34 -48
  23. package/esm2020/grid/column-menu.component.mjs +3 -3
  24. package/esm2020/grid/grid.component.mjs +78 -69
  25. package/esm2020/grid/grid.interface.mjs +1 -1
  26. package/esm2020/grid/grid.module.mjs +24 -3
  27. package/esm2020/grid/grid.pipe.mjs +108 -0
  28. package/esm2020/grid/grid.service.mjs +22 -3
  29. package/esm2020/grid/public-api.mjs +2 -1
  30. package/esm2020/select/select.component.mjs +44 -33
  31. package/esm2020/split/interface.mjs +1 -1
  32. package/esm2020/split/split.component.mjs +24 -9
  33. package/esm2020/tooltip/tooltip-module.mjs +5 -4
  34. package/esm2020/tooltip/tooltip.mjs +24 -7
  35. package/fesm2015/mtxCheckboxGroup.mjs +7 -8
  36. package/fesm2015/mtxCheckboxGroup.mjs.map +1 -1
  37. package/fesm2015/mtxCore.mjs +17 -5
  38. package/fesm2015/mtxCore.mjs.map +1 -1
  39. package/fesm2015/mtxDatetimepicker.mjs +1 -1
  40. package/fesm2015/mtxDatetimepicker.mjs.map +1 -1
  41. package/fesm2015/mtxGrid.mjs +260 -119
  42. package/fesm2015/mtxGrid.mjs.map +1 -1
  43. package/fesm2015/mtxSelect.mjs +43 -31
  44. package/fesm2015/mtxSelect.mjs.map +1 -1
  45. package/fesm2015/mtxSplit.mjs +26 -8
  46. package/fesm2015/mtxSplit.mjs.map +1 -1
  47. package/fesm2015/mtxTooltip.mjs +27 -9
  48. package/fesm2015/mtxTooltip.mjs.map +1 -1
  49. package/fesm2020/mtxCheckboxGroup.mjs +7 -8
  50. package/fesm2020/mtxCheckboxGroup.mjs.map +1 -1
  51. package/fesm2020/mtxCore.mjs +17 -5
  52. package/fesm2020/mtxCore.mjs.map +1 -1
  53. package/fesm2020/mtxDatetimepicker.mjs +1 -1
  54. package/fesm2020/mtxDatetimepicker.mjs.map +1 -1
  55. package/fesm2020/mtxGrid.mjs +256 -119
  56. package/fesm2020/mtxGrid.mjs.map +1 -1
  57. package/fesm2020/mtxSelect.mjs +42 -31
  58. package/fesm2020/mtxSelect.mjs.map +1 -1
  59. package/fesm2020/mtxSplit.mjs +23 -8
  60. package/fesm2020/mtxSplit.mjs.map +1 -1
  61. package/fesm2020/mtxTooltip.mjs +27 -9
  62. package/fesm2020/mtxTooltip.mjs.map +1 -1
  63. package/form-group/_form-group-theme.scss +2 -2
  64. package/grid/_grid-theme.scss +5 -5
  65. package/grid/cell.component.d.ts +16 -12
  66. package/grid/cell.component.scss +1 -1
  67. package/grid/column-menu.component.d.ts +1 -1
  68. package/grid/grid.component.d.ts +23 -16
  69. package/grid/grid.interface.d.ts +63 -20
  70. package/grid/grid.module.d.ts +20 -19
  71. package/grid/grid.pipe.d.ts +31 -0
  72. package/grid/grid.service.d.ts +18 -3
  73. package/grid/public-api.d.ts +1 -0
  74. package/loader/_loader-theme.scss +1 -1
  75. package/package.json +17 -2
  76. package/prebuilt-themes/deeppurple-amber.css +1 -0
  77. package/prebuilt-themes/indigo-pink.css +1 -0
  78. package/prebuilt-themes/pink-bluegrey.css +1 -0
  79. package/prebuilt-themes/purple-green.css +1 -0
  80. package/select/select.component.d.ts +36 -15
  81. package/split/_split-theme.scss +1 -1
  82. package/split/interface.d.ts +12 -0
  83. package/split/split.component.d.ts +7 -4
  84. package/tooltip/tooltip-module.d.ts +3 -2
  85. package/tooltip/tooltip.d.ts +9 -2
  86. package/_all-theme.scss +0 -47
@@ -3,26 +3,27 @@ import * as i1 from "./grid.component";
3
3
  import * as i2 from "./cell.component";
4
4
  import * as i3 from "./column-menu.component";
5
5
  import * as i4 from "./expansion-toggle.directive";
6
- import * as i5 from "@angular/common";
7
- import * as i6 from "@angular/forms";
8
- import * as i7 from "@angular/material/table";
9
- import * as i8 from "@angular/material/sort";
10
- import * as i9 from "@angular/material/paginator";
11
- import * as i10 from "@angular/material/checkbox";
12
- import * as i11 from "@angular/material/button";
13
- import * as i12 from "@angular/material/progress-bar";
14
- import * as i13 from "@angular/material/chips";
15
- import * as i14 from "@angular/material/tooltip";
16
- import * as i15 from "@angular/material/icon";
17
- import * as i16 from "@angular/material/select";
18
- import * as i17 from "@angular/material/form-field";
19
- import * as i18 from "@angular/material/menu";
20
- import * as i19 from "@angular/cdk/drag-drop";
21
- import * as i20 from "@ng-matero/extensions/dialog";
22
- import * as i21 from "@ng-matero/extensions/core";
23
- import * as i22 from "./column-resize/column-resize-module";
6
+ import * as i5 from "./grid.pipe";
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/icon";
18
+ import * as i17 from "@angular/material/select";
19
+ import * as i18 from "@angular/material/form-field";
20
+ import * as i19 from "@angular/material/menu";
21
+ import * as i20 from "@angular/cdk/drag-drop";
22
+ import * as i21 from "@ng-matero/extensions/dialog";
23
+ import * as i22 from "@ng-matero/extensions/core";
24
+ import * as i23 from "./column-resize/column-resize-module";
24
25
  export declare class MtxGridModule {
25
26
  static ɵfac: i0.ɵɵFactoryDeclaration<MtxGridModule, never>;
26
- static ɵmod: i0.ɵɵNgModuleDeclaration<MtxGridModule, [typeof i1.MtxGridComponent, typeof i2.MtxGridCellComponent, typeof i3.MtxGridColumnMenuComponent, typeof i4.MtxGridExpansionToggleDirective, typeof i1.MtxGridCellSelectionDirective], [typeof i5.CommonModule, typeof i6.FormsModule, typeof i7.MatTableModule, typeof i8.MatSortModule, typeof i9.MatPaginatorModule, typeof i10.MatCheckboxModule, typeof i11.MatButtonModule, typeof i12.MatProgressBarModule, typeof i13.MatChipsModule, typeof i14.MatTooltipModule, typeof i15.MatIconModule, typeof i16.MatSelectModule, typeof i17.MatFormFieldModule, typeof i18.MatMenuModule, typeof i19.DragDropModule, typeof i20.MtxDialogModule, typeof i21.MtxPipesModule, typeof i22.MatColumnResizeModule], [typeof i1.MtxGridComponent, typeof i2.MtxGridCellComponent, typeof i3.MtxGridColumnMenuComponent, typeof i4.MtxGridExpansionToggleDirective, typeof i1.MtxGridCellSelectionDirective, typeof i22.MatColumnResizeModule]>;
27
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MtxGridModule, [typeof i1.MtxGridComponent, typeof i2.MtxGridCellComponent, typeof i3.MtxGridColumnMenuComponent, typeof i4.MtxGridExpansionToggleDirective, typeof i1.MtxGridCellSelectionDirective, typeof i5.MtxGridRowClassPipe, typeof i5.MtxGridColClassPipe, typeof i5.MtxGridCellActionTooltipPipe, 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.MatIconModule, typeof i17.MatSelectModule, typeof i18.MatFormFieldModule, typeof i19.MatMenuModule, typeof i20.DragDropModule, typeof i21.MtxDialogModule, typeof i22.MtxPipesModule, typeof i23.MatColumnResizeModule], [typeof i1.MtxGridComponent, typeof i2.MtxGridCellComponent, typeof i3.MtxGridColumnMenuComponent, typeof i4.MtxGridExpansionToggleDirective, typeof i1.MtxGridCellSelectionDirective, typeof i23.MatColumnResizeModule, typeof i5.MtxGridRowClassPipe, typeof i5.MtxGridColClassPipe, typeof i5.MtxGridCellActionTooltipPipe, typeof i5.MtxGridCellActionDisablePipe, typeof i5.MtxGridCellSummaryPipe]>;
27
28
  static ɵinj: i0.ɵɵInjectorDeclaration<MtxGridModule>;
28
29
  }
@@ -0,0 +1,31 @@
1
+ import { KeyValueChangeRecord, PipeTransform } from '@angular/core';
2
+ import { MtxGridService } from './grid.service';
3
+ import { MtxGridColumn, MtxGridColumnButton, MtxGridRowClassFormatter } from './grid.interface';
4
+ import * as i0 from "@angular/core";
5
+ export declare class MtxGridColClassPipe implements PipeTransform {
6
+ transform(colDef: MtxGridColumn, rowData?: Record<string, any>, rowChangeRecord?: KeyValueChangeRecord<string, any>, currentValue?: any): string;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtxGridColClassPipe, never>;
8
+ static ɵpipe: i0.ɵɵPipeDeclaration<MtxGridColClassPipe, "colClass", false>;
9
+ }
10
+ export declare class MtxGridRowClassPipe implements PipeTransform {
11
+ transform(rowData: Record<string, any>, index: number, dataIndex: number, rowClassFormatter?: MtxGridRowClassFormatter): string;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtxGridRowClassPipe, never>;
13
+ static ɵpipe: i0.ɵɵPipeDeclaration<MtxGridRowClassPipe, "rowClass", false>;
14
+ }
15
+ export declare class MtxGridCellActionTooltipPipe implements PipeTransform {
16
+ transform(btn: MtxGridColumnButton): import("./grid.interface").MtxGridColumnButtonTooltip;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtxGridCellActionTooltipPipe, never>;
18
+ static ɵpipe: i0.ɵɵPipeDeclaration<MtxGridCellActionTooltipPipe, "cellActionTooltip", false>;
19
+ }
20
+ export declare class MtxGridCellActionDisablePipe implements PipeTransform {
21
+ transform(btn: MtxGridColumnButton, rowData: Record<string, any>, rowChangeRecord?: KeyValueChangeRecord<string, any>, currentValue?: any): boolean;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtxGridCellActionDisablePipe, never>;
23
+ static ɵpipe: i0.ɵɵPipeDeclaration<MtxGridCellActionDisablePipe, "cellActionDisable", false>;
24
+ }
25
+ export declare class MtxGridCellSummaryPipe implements PipeTransform {
26
+ private gridSrv;
27
+ constructor(gridSrv: MtxGridService);
28
+ transform(data: any[], colDef: MtxGridColumn): any;
29
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtxGridCellSummaryPipe, never>;
30
+ static ɵpipe: i0.ɵɵPipeDeclaration<MtxGridCellSummaryPipe, "cellSummary", false>;
31
+ }
@@ -3,22 +3,37 @@ import * as i0 from "@angular/core";
3
3
  export declare class MtxGridService {
4
4
  constructor();
5
5
  /**
6
- * Get cell value from column key e.g. `a.b.c`
6
+ * Get cell's value based on the data and column's field (e.g. `a.b.c`)
7
7
  * @param rowData Row data
8
8
  * @param colDef Column definition
9
+ * @returns
9
10
  */
10
- getCellValue(rowData: any, colDef: MtxGridColumn): string;
11
+ getCellValue(rowData: Record<string, any>, colDef: MtxGridColumn): string;
11
12
  /**
12
13
  * Get all data of a col
13
14
  * @param data All data
14
15
  * @param colDef Column definition
16
+ * @returns
15
17
  */
16
18
  getColData(data: any[], colDef: MtxGridColumn): any[];
17
19
  /**
18
20
  * Remove white spaces in a string and convert string to array
19
- * @param str string
21
+ * @param str
22
+ * @returns
20
23
  */
21
24
  str2arr(str: string): string[];
25
+ /**
26
+ * Whether the value is empty (`null`, `undefined`, `''`, `[]`)
27
+ * @param value
28
+ * @returns
29
+ */
30
+ isEmpty(value: any): boolean;
31
+ /**
32
+ * Whether the value contain HTML
33
+ * @param value
34
+ * @returns
35
+ */
36
+ isContainHTML(value: string): boolean;
22
37
  static ɵfac: i0.ɵɵFactoryDeclaration<MtxGridService, never>;
23
38
  static ɵprov: i0.ɵɵInjectableDeclaration<MtxGridService>;
24
39
  }
@@ -1,6 +1,7 @@
1
1
  export * from './grid.module';
2
2
  export * from './grid.interface';
3
3
  export * from './grid.service';
4
+ export * from './grid.pipe';
4
5
  export * from './grid.component';
5
6
  export * from './cell.component';
6
7
  export * from './column-menu.component';
@@ -8,7 +8,7 @@
8
8
  $background: map.get($config, background);
9
9
 
10
10
  .mtx-loader-backdrop {
11
- background-color: rgba(theming.get-color-from-palette($background, background), .75);
11
+ background-color: theming.get-color-from-palette($background, background, .75);
12
12
  }
13
13
  }
14
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ng-matero/extensions",
3
- "version": "14.6.4",
3
+ "version": "14.8.0",
4
4
  "description": "Angular Material Extensions",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -50,6 +50,21 @@
50
50
  "./_theming": {
51
51
  "sass": "./_theming.scss"
52
52
  },
53
+ "./prebuilt-themes/indigo-pink.css": {
54
+ "style": "./prebuilt-themes/indigo-pink.css"
55
+ },
56
+ "./prebuilt-themes/deeppurple-amber.css": {
57
+ "style": "./prebuilt-themes/deeppurple-amber.css"
58
+ },
59
+ "./prebuilt-themes/pink-bluegrey.css": {
60
+ "style": "./prebuilt-themes/pink-bluegrey.css"
61
+ },
62
+ "./prebuilt-themes/purple-green.css": {
63
+ "style": "./prebuilt-themes/purple-green.css"
64
+ },
65
+ "./prebuilt-themes/*": {
66
+ "style": "./prebuilt-themes/*.css"
67
+ },
53
68
  "./package.json": {
54
69
  "default": "./package.json"
55
70
  },
@@ -209,7 +224,7 @@
209
224
  "dependencies": {
210
225
  "@ng-select/ng-select": "^9.0.0",
211
226
  "ngx-color": "^8.0.0",
212
- "photoviewer": "^3.6.0",
227
+ "photoviewer": "^3.7.0",
213
228
  "tslib": "^2.3.0"
214
229
  },
215
230
  "peerDependencies": {
@@ -0,0 +1 @@
1
+ .mat-button-loading .mat-button-wrapper{visibility:hidden}.mat-button-loading .mat-progress-spinner{position:absolute;top:calc(50% - 10px);left:calc(50% - 10px)}.mtx-alert{background-color:#fff}.mtx-alert-info.mtx-alert{background-color:#2196f3;color:#fff}.mtx-alert-success.mtx-alert{background-color:#4caf50;color:#fff}.mtx-alert-warning.mtx-alert{background-color:#ff9800;color:#fff}.mtx-alert-danger.mtx-alert{background-color:#f44336;color:#fff}.mtx-colorpicker-toggle-active{color:#673ab7}.mtx-colorpicker-toggle-active.mat-accent{color:#ffd740}.mtx-colorpicker-toggle-active.mat-warn{color:#f44336}.mtx-datetimepicker-content{background-color:#fff;color:rgba(0,0,0,.87);box-shadow:0px 5px 5px -3px rgba(0, 0, 0, 0.2),0px 8px 10px 1px rgba(0, 0, 0, 0.14),0px 3px 14px 2px rgba(0, 0, 0, 0.12)}.mtx-calendar-header{background-color:#673ab7;color:#fff}.mtx-calendar-body-label{color:rgba(0,0,0,.54)}.mtx-calendar-table-header{color:rgba(0,0,0,.38)}.mtx-calendar-body-cell-content{color:rgba(0,0,0,.87)}.mtx-calendar-body-cell-content.mtx-calendar-body-selected{background-color:#673ab7;color:#fff}.mtx-calendar-body-cell-content.mtx-calendar-body-selected.mtx-calendar-body-today{box-shadow:inset 0 0 0 1px #fff}.mtx-calendar-body-cell-content:not(.mtx-calendar-body-selected).mtx-calendar-body-today{border-color:rgba(0,0,0,.38)}.mtx-calendar-body-cell:not(.mtx-calendar-body-disabled):hover>.mtx-calendar-body-cell-content:not(.mtx-calendar-body-selected),.mtx-calendar-body-active>.mtx-calendar-body-cell-content:not(.mtx-calendar-body-selected){background-color:rgba(103,58,183,.3)}.mtx-calendar-body-disabled>.mtx-calendar-body-cell-content:not(.mtx-calendar-body-selected){color:rgba(0,0,0,.38)}.mtx-calendar-body-disabled>.mtx-calendar-body-today:not(.mtx-calendar-body-selected){border-color:rgba(0,0,0,.38)}.mtx-calendar-body-disabled>.mtx-calendar-body-selected{background-color:rgba(103,58,183,.4)}.mtx-calendar-previous-button.disabled,.mtx-calendar-next-button.disabled{color:rgba(0,0,0,.38)}.mtx-clock-wrapper{background-color:rgba(0,0,0,.12)}.mtx-clock-center{background-color:#673ab7}.mtx-clock-hand{background-color:#673ab7}.mtx-clock-hand::before{background-color:#673ab7}.mtx-clock-cell{color:rgba(0,0,0,.87)}.mtx-clock-cell.mtx-clock-cell-selected{background-color:#673ab7;color:#fff}.mtx-clock-cell:not(.mtx-clock-cell-selected,.mtx-clock-cell-disabled):hover{background-color:rgba(0,0,0,.04)}.mtx-clock-cell.mtx-clock-cell-disabled{color:rgba(0,0,0,.38)}.mtx-datetimepicker-toggle-active{color:#673ab7}.mtx-datetimepicker-toggle-active.mat-accent{color:#ffd740}.mtx-datetimepicker-toggle-active.mat-warn{color:#f44336}.mtx-time-input{color:rgba(0,0,0,.87);background-color:rgba(0,0,0,.12)}.mtx-time-input.mtx-time-input-active{color:#673ab7;background-color:rgba(103,58,183,.2)}.mtx-time-input.mtx-time-input-active:focus{border-color:#673ab7;background-color:#fafafa}.mtx-time-input.mtx-time-input-active:focus::placeholder{color:rgba(103,58,183,.6)}.mtx-time-input.mtx-time-input-warning{border-color:#f44336}.mtx-time-ampm .mtx-time-am,.mtx-time-ampm .mtx-time-pm{color:rgba(0,0,0,.75);border-color:rgba(0,0,0,.38)}.mtx-time-ampm .mtx-time-am.mtx-time-ampm-active,.mtx-time-ampm .mtx-time-pm.mtx-time-ampm-active{color:rgba(0,0,0,.87);background-color:rgba(255,215,64,.2);font-weight:500}.mtx-calendar{font-family:Roboto, "Helvetica Neue", sans-serif}.mtx-calendar-body{font-size:13px}.mtx-calendar-body-label,.mtx-calendar-period-button{font-size:14px;font-weight:500}.mtx-calendar-table-header th{font-size:11px;font-weight:400}.mtx-clock{font-size:14px}.mtx-drawer-container{box-shadow:0px 8px 10px -5px rgba(0, 0, 0, 0.2),0px 16px 24px 2px rgba(0, 0, 0, 0.14),0px 6px 30px 5px rgba(0, 0, 0, 0.12);background:#fff;color:rgba(0,0,0,.87)}.mtx-grid{border:1px solid rgba(0,0,0,.2)}.mtx-grid .mat-table-sticky-left,.mtx-grid .mat-table-sticky-right{border-color:rgba(0,0,0,.12)}.mtx-grid .mat-table.mat-table-striped .mat-row-odd{background-color:#f5f5f5}.mtx-grid .mat-table.mat-table-hover .mat-row:hover{background-color:#e5e5e5}.mtx-grid .mat-row.selected,.mtx-grid .mat-row.mat-row-odd.selected{background-color:#e5e5e5}.mtx-grid .mat-cell.selected{box-shadow:inset 0 0 0 1px #ffd740}.mtx-grid .mat-footer-row .mat-footer-cell{border-top:1px solid rgba(0,0,0,.12);border-bottom-width:0;background-color:#f5f5f5}.mtx-grid .mat-paginator{border-top:1px solid rgba(0,0,0,.2)}.mtx-grid-toolbar{border-bottom:1px solid rgba(0,0,0,.2)}.mtx-grid-sidebar{border-color:rgba(0,0,0,.2)}.mtx-grid-statusbar{border-top:1px solid rgba(0,0,0,.2)}.mtx-grid-column-menu-item{color:rgba(0,0,0,.87)}.mtx-grid-column-menu-header,.mtx-grid-column-menu-footer{color:rgba(0,0,0,.87);background-color:#fff}.mtx-grid-column-menu-header{border-bottom:1px solid rgba(0,0,0,.12)}.mtx-grid-column-menu-footer{border-top:1px solid rgba(0,0,0,.12)}.mat-column-resize-table.cdk-column-resize-with-resized-column{table-layout:fixed}.mat-column-resize-flex .mat-header-cell,.mat-column-resize-flex .mat-cell{box-sizing:border-box;min-width:32px}.mat-header-cell{position:relative}.mat-resizable{box-sizing:border-box}.mat-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-header-cell:not(.mat-resizable)::after{content:""}[dir=rtl] .mat-header-cell:not(.mat-resizable)::after,[dir=rtl] .mat-resizable-handle{left:0;right:auto}.mat-header-row.cdk-column-resize-hover-or-active .mat-header-cell:not(.mat-resizable)::after{background:rgba(0,0,0,.12)}.mat-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-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;-moz-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}.mtx-loader-backdrop{background-color:rgba(250,250,250,.75)}.mtx-popover-panel{color:rgba(0,0,0,.87);background-color:#fff}[class*=mtx-popover] .mtx-popover-direction-arrow::before{border-color:rgba(0,0,0,.12)}[class*=mtx-popover] .mtx-popover-direction-arrow::after{border-color:#fff}[class*=mtx-popover-below] .mtx-popover-direction-arrow::before,[class*=mtx-popover-below] .mtx-popover-direction-arrow::after,[class*=mtx-popover-above] .mtx-popover-direction-arrow::before,[class*=mtx-popover-above] .mtx-popover-direction-arrow::after{border-left-color:rgba(0,0,0,0);border-right-color:rgba(0,0,0,0)}[class*=mtx-popover-before] .mtx-popover-direction-arrow::before,[class*=mtx-popover-before] .mtx-popover-direction-arrow::after,[class*=mtx-popover-after] .mtx-popover-direction-arrow::before,[class*=mtx-popover-after] .mtx-popover-direction-arrow::after{border-top-color:rgba(0,0,0,0);border-bottom-color:rgba(0,0,0,0)}.mtx-progress{background-color:rgba(0,0,0,.04)}.mtx-progress-fill-info{background-color:#2196f3;color:#fff}.mtx-progress-fill-success{background-color:#4caf50;color:#fff}.mtx-progress-fill-warning{background-color:#ff9800;color:#fff}.mtx-progress-fill-danger{background-color:#f44336;color:#fff}.ng-select .ng-select-container{color:rgba(0,0,0,.87)}.ng-select .ng-select-container .ng-value-container .ng-placeholder{color:rgba(0,0,0,.38)}.ng-select .ng-select-container .ng-value-container .ng-input>input{color:rgba(0,0,0,.87)}.ng-select.ng-select-disabled .ng-value{color:rgba(0,0,0,.38)}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value{color:rgba(0,0,0,.87);background-color:#e0e0e0}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled{opacity:.4}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon:hover{background-color:rgba(0,0,0,.12)}.ng-select .ng-clear-wrapper{color:rgba(0,0,0,.54)}.ng-select .ng-clear-wrapper:hover .ng-clear{color:#f44336}.ng-select .ng-arrow-wrapper .ng-arrow{border-color:rgba(0,0,0,.54) rgba(0,0,0,0) rgba(0,0,0,0)}.ng-select.ng-select-invalid .ng-arrow-wrapper .ng-arrow{border-color:#f44336 rgba(0,0,0,0) rgba(0,0,0,0)}.ng-select.ng-select-opened .ng-arrow-wrapper .ng-arrow{border-color:rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,.54)}.ng-select.ng-select-opened.ng-select-invalid .ng-arrow-wrapper .ng-arrow{border-color:rgba(0,0,0,0) rgba(0,0,0,0) #f44336}.ng-dropdown-panel{background-color:#fff}.ng-dropdown-panel.multiple .ng-option.selected{background:rgba(0,0,0,.12)}.ng-dropdown-panel.multiple .ng-option.marked{background:rgba(0,0,0,.04)}.ng-dropdown-panel .ng-dropdown-header{border-bottom:1px solid rgba(0,0,0,.12)}.ng-dropdown-panel .ng-dropdown-footer{border-top:1px solid rgba(0,0,0,.12)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup{color:rgba(0,0,0,.54)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-marked{background:rgba(0,0,0,.04)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-selected{background:rgba(0,0,0,.12)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option{color:rgba(0,0,0,.87)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-marked{background:rgba(0,0,0,.04)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected{background:rgba(0,0,0,.12)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-disabled{color:rgba(0,0,0,.38)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option .ng-tag-label{color:rgba(0,0,0,.38)}.mtx-slider-thumb{box-shadow:0px 3px 1px -2px rgba(0, 0, 0, 0.2),0px 2px 2px 0px rgba(0, 0, 0, 0.14),0px 1px 5px 0px rgba(0, 0, 0, 0.12)}.mtx-slider-track-background{background-color:#bdbdbd}.mat-primary .mtx-slider-track-fill,.mat-primary .mtx-slider-thumb,.mat-primary .mtx-slider-thumb-label{background-color:#673ab7}.mat-primary .mtx-slider-thumb-label-text{color:#fff}.mat-primary .mtx-slider-focus-ring{background-color:rgba(103,58,183,.2)}.mat-accent .mtx-slider-track-fill,.mat-accent .mtx-slider-thumb,.mat-accent .mtx-slider-thumb-label{background-color:#ffd740}.mat-accent .mtx-slider-thumb-label-text{color:rgba(0,0,0,.87)}.mat-accent .mtx-slider-focus-ring{background-color:rgba(255,215,64,.2)}.mat-warn .mtx-slider-track-fill,.mat-warn .mtx-slider-thumb,.mat-warn .mtx-slider-thumb-label{background-color:#f44336}.mat-warn .mtx-slider-thumb-label-text{color:#fff}.mat-warn .mtx-slider-focus-ring{background-color:rgba(244,67,54,.2)}.mtx-slider:hover .mtx-slider-track-background,.mtx-slider.cdk-focused .mtx-slider-track-background{background-color:rgba(0,0,0,.38)}.mtx-slider-disabled .mtx-slider-track-background{background-color:rgba(189,189,189,.54)}.mtx-slider-disabled .mtx-slider-track-fill,.mtx-slider-disabled .mtx-slider-thumb{background-color:#bdbdbd}.mtx-slider-disabled:hover .mtx-slider-track-background,.mtx-slider-disabled.cdk-focused .mtx-slider-track-background{background-color:rgba(189,189,189,.54)}.mtx-slider-min-value .mtx-slider-focus-ring{background-color:rgba(0,0,0,.12)}.mtx-slider-min-value.mtx-slider-thumb-label-showing:not(.mtx-range-slider) .mtx-slider-thumb,.mtx-slider-min-value.mtx-slider-thumb-label-showing:not(.mtx-range-slider) .mtx-slider-thumb-label{background-color:rgba(0,0,0,.87)}.mtx-slider-min-value.mtx-slider-thumb-label-showing:not(.mtx-range-slider).cdk-focused .mtx-slider-thumb,.mtx-slider-min-value.mtx-slider-thumb-label-showing:not(.mtx-range-slider).cdk-focused .mtx-slider-thumb-label{background-color:rgba(0,0,0,.26)}.mtx-slider-min-value:not(.mtx-slider-thumb-label-showing,.mtx-range-slider) .mtx-slider-thumb{background-color:#bdbdbd}.mtx-slider-min-value:not(.mtx-slider-thumb-label-showing,.mtx-range-slider):hover .mtx-slider-thumb,.mtx-slider-min-value:not(.mtx-slider-thumb-label-showing,.mtx-range-slider).cdk-focused .mtx-slider-thumb{background-color:rgba(0,0,0,.38)}.mtx-slider-min-value:not(.mtx-slider-thumb-label-showing,.mtx-range-slider):hover.mtx-slider-disabled .mtx-slider-thumb,.mtx-slider-min-value:not(.mtx-slider-thumb-label-showing,.mtx-range-slider).cdk-focused.mtx-slider-disabled .mtx-slider-thumb{border-color:#bdbdbd}.mtx-slider-has-ticks .mtx-slider-wrapper::after{border-color:rgba(0,0,0,.7)}.mtx-slider-horizontal .mtx-slider-ticks{background-image:repeating-linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);background-image:repeating-linear-gradient(0.0001deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent)}.mtx-slider-vertical .mtx-slider-ticks{background-image:repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent)}.mtx-slider-thumb-label-text{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:12px;font-weight:500}.mtx-split>.mtx-split-gutter{background-color:rgba(0,0,0,.12)}.mtx-split>.mtx-split-gutter:hover{background-color:#673ab7}.mtx-split>.mtx-split-gutter.mat-accent:hover{background-color:#ffd740}.mtx-split>.mtx-split-gutter.mat-warn:hover{background-color:#f44336}.mtx-tooltip{background:rgba(97,97,97,.9)}.mtx-tooltip{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:12px;padding-top:5px;padding-bottom:5px}.mtx-tooltip-handset{font-size:14px;padding-top:8px;padding-bottom:8px}
@@ -0,0 +1 @@
1
+ .mat-button-loading .mat-button-wrapper{visibility:hidden}.mat-button-loading .mat-progress-spinner{position:absolute;top:calc(50% - 10px);left:calc(50% - 10px)}.mtx-alert{background-color:#fff}.mtx-alert-info.mtx-alert{background-color:#2196f3;color:#fff}.mtx-alert-success.mtx-alert{background-color:#4caf50;color:#fff}.mtx-alert-warning.mtx-alert{background-color:#ff9800;color:#fff}.mtx-alert-danger.mtx-alert{background-color:#f44336;color:#fff}.mtx-colorpicker-toggle-active{color:#3f51b5}.mtx-colorpicker-toggle-active.mat-accent{color:#ff4081}.mtx-colorpicker-toggle-active.mat-warn{color:#f44336}.mtx-datetimepicker-content{background-color:#fff;color:rgba(0,0,0,.87);box-shadow:0px 5px 5px -3px rgba(0, 0, 0, 0.2),0px 8px 10px 1px rgba(0, 0, 0, 0.14),0px 3px 14px 2px rgba(0, 0, 0, 0.12)}.mtx-calendar-header{background-color:#3f51b5;color:#fff}.mtx-calendar-body-label{color:rgba(0,0,0,.54)}.mtx-calendar-table-header{color:rgba(0,0,0,.38)}.mtx-calendar-body-cell-content{color:rgba(0,0,0,.87)}.mtx-calendar-body-cell-content.mtx-calendar-body-selected{background-color:#3f51b5;color:#fff}.mtx-calendar-body-cell-content.mtx-calendar-body-selected.mtx-calendar-body-today{box-shadow:inset 0 0 0 1px #fff}.mtx-calendar-body-cell-content:not(.mtx-calendar-body-selected).mtx-calendar-body-today{border-color:rgba(0,0,0,.38)}.mtx-calendar-body-cell:not(.mtx-calendar-body-disabled):hover>.mtx-calendar-body-cell-content:not(.mtx-calendar-body-selected),.mtx-calendar-body-active>.mtx-calendar-body-cell-content:not(.mtx-calendar-body-selected){background-color:rgba(63,81,181,.3)}.mtx-calendar-body-disabled>.mtx-calendar-body-cell-content:not(.mtx-calendar-body-selected){color:rgba(0,0,0,.38)}.mtx-calendar-body-disabled>.mtx-calendar-body-today:not(.mtx-calendar-body-selected){border-color:rgba(0,0,0,.38)}.mtx-calendar-body-disabled>.mtx-calendar-body-selected{background-color:rgba(63,81,181,.4)}.mtx-calendar-previous-button.disabled,.mtx-calendar-next-button.disabled{color:rgba(0,0,0,.38)}.mtx-clock-wrapper{background-color:rgba(0,0,0,.12)}.mtx-clock-center{background-color:#3f51b5}.mtx-clock-hand{background-color:#3f51b5}.mtx-clock-hand::before{background-color:#3f51b5}.mtx-clock-cell{color:rgba(0,0,0,.87)}.mtx-clock-cell.mtx-clock-cell-selected{background-color:#3f51b5;color:#fff}.mtx-clock-cell:not(.mtx-clock-cell-selected,.mtx-clock-cell-disabled):hover{background-color:rgba(0,0,0,.04)}.mtx-clock-cell.mtx-clock-cell-disabled{color:rgba(0,0,0,.38)}.mtx-datetimepicker-toggle-active{color:#3f51b5}.mtx-datetimepicker-toggle-active.mat-accent{color:#ff4081}.mtx-datetimepicker-toggle-active.mat-warn{color:#f44336}.mtx-time-input{color:rgba(0,0,0,.87);background-color:rgba(0,0,0,.12)}.mtx-time-input.mtx-time-input-active{color:#3f51b5;background-color:rgba(63,81,181,.2)}.mtx-time-input.mtx-time-input-active:focus{border-color:#3f51b5;background-color:#fafafa}.mtx-time-input.mtx-time-input-active:focus::placeholder{color:rgba(63,81,181,.6)}.mtx-time-input.mtx-time-input-warning{border-color:#f44336}.mtx-time-ampm .mtx-time-am,.mtx-time-ampm .mtx-time-pm{color:rgba(0,0,0,.75);border-color:rgba(0,0,0,.38)}.mtx-time-ampm .mtx-time-am.mtx-time-ampm-active,.mtx-time-ampm .mtx-time-pm.mtx-time-ampm-active{color:rgba(0,0,0,.87);background-color:rgba(255,64,129,.2);font-weight:500}.mtx-calendar{font-family:Roboto, "Helvetica Neue", sans-serif}.mtx-calendar-body{font-size:13px}.mtx-calendar-body-label,.mtx-calendar-period-button{font-size:14px;font-weight:500}.mtx-calendar-table-header th{font-size:11px;font-weight:400}.mtx-clock{font-size:14px}.mtx-drawer-container{box-shadow:0px 8px 10px -5px rgba(0, 0, 0, 0.2),0px 16px 24px 2px rgba(0, 0, 0, 0.14),0px 6px 30px 5px rgba(0, 0, 0, 0.12);background:#fff;color:rgba(0,0,0,.87)}.mtx-grid{border:1px solid rgba(0,0,0,.2)}.mtx-grid .mat-table-sticky-left,.mtx-grid .mat-table-sticky-right{border-color:rgba(0,0,0,.12)}.mtx-grid .mat-table.mat-table-striped .mat-row-odd{background-color:#f5f5f5}.mtx-grid .mat-table.mat-table-hover .mat-row:hover{background-color:#e5e5e5}.mtx-grid .mat-row.selected,.mtx-grid .mat-row.mat-row-odd.selected{background-color:#e5e5e5}.mtx-grid .mat-cell.selected{box-shadow:inset 0 0 0 1px #ff4081}.mtx-grid .mat-footer-row .mat-footer-cell{border-top:1px solid rgba(0,0,0,.12);border-bottom-width:0;background-color:#f5f5f5}.mtx-grid .mat-paginator{border-top:1px solid rgba(0,0,0,.2)}.mtx-grid-toolbar{border-bottom:1px solid rgba(0,0,0,.2)}.mtx-grid-sidebar{border-color:rgba(0,0,0,.2)}.mtx-grid-statusbar{border-top:1px solid rgba(0,0,0,.2)}.mtx-grid-column-menu-item{color:rgba(0,0,0,.87)}.mtx-grid-column-menu-header,.mtx-grid-column-menu-footer{color:rgba(0,0,0,.87);background-color:#fff}.mtx-grid-column-menu-header{border-bottom:1px solid rgba(0,0,0,.12)}.mtx-grid-column-menu-footer{border-top:1px solid rgba(0,0,0,.12)}.mat-column-resize-table.cdk-column-resize-with-resized-column{table-layout:fixed}.mat-column-resize-flex .mat-header-cell,.mat-column-resize-flex .mat-cell{box-sizing:border-box;min-width:32px}.mat-header-cell{position:relative}.mat-resizable{box-sizing:border-box}.mat-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-header-cell:not(.mat-resizable)::after{content:""}[dir=rtl] .mat-header-cell:not(.mat-resizable)::after,[dir=rtl] .mat-resizable-handle{left:0;right:auto}.mat-header-row.cdk-column-resize-hover-or-active .mat-header-cell:not(.mat-resizable)::after{background:rgba(0,0,0,.12)}.mat-header-row.cdk-column-resize-hover-or-active .mat-resizable-handle{background:#9fa8da}.mat-resizable.cdk-resizable-overlay-thumb-active>.mat-resizable-handle{opacity:0;transition:none}.mat-resizable-handle:focus,.mat-header-row.cdk-column-resize-hover-or-active .mat-resizable-handle:focus{background:#3f51b5;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;-moz-user-select:none;user-select:none}.mat-column-resize-overlay-thumb:active{background:linear-gradient(90deg, transparent, transparent 7px, #3f51b5, #3f51b5 1px, transparent 8px, transparent);will-change:transform}.mtx-loader-backdrop{background-color:rgba(250,250,250,.75)}.mtx-popover-panel{color:rgba(0,0,0,.87);background-color:#fff}[class*=mtx-popover] .mtx-popover-direction-arrow::before{border-color:rgba(0,0,0,.12)}[class*=mtx-popover] .mtx-popover-direction-arrow::after{border-color:#fff}[class*=mtx-popover-below] .mtx-popover-direction-arrow::before,[class*=mtx-popover-below] .mtx-popover-direction-arrow::after,[class*=mtx-popover-above] .mtx-popover-direction-arrow::before,[class*=mtx-popover-above] .mtx-popover-direction-arrow::after{border-left-color:rgba(0,0,0,0);border-right-color:rgba(0,0,0,0)}[class*=mtx-popover-before] .mtx-popover-direction-arrow::before,[class*=mtx-popover-before] .mtx-popover-direction-arrow::after,[class*=mtx-popover-after] .mtx-popover-direction-arrow::before,[class*=mtx-popover-after] .mtx-popover-direction-arrow::after{border-top-color:rgba(0,0,0,0);border-bottom-color:rgba(0,0,0,0)}.mtx-progress{background-color:rgba(0,0,0,.04)}.mtx-progress-fill-info{background-color:#2196f3;color:#fff}.mtx-progress-fill-success{background-color:#4caf50;color:#fff}.mtx-progress-fill-warning{background-color:#ff9800;color:#fff}.mtx-progress-fill-danger{background-color:#f44336;color:#fff}.ng-select .ng-select-container{color:rgba(0,0,0,.87)}.ng-select .ng-select-container .ng-value-container .ng-placeholder{color:rgba(0,0,0,.38)}.ng-select .ng-select-container .ng-value-container .ng-input>input{color:rgba(0,0,0,.87)}.ng-select.ng-select-disabled .ng-value{color:rgba(0,0,0,.38)}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value{color:rgba(0,0,0,.87);background-color:#e0e0e0}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled{opacity:.4}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon:hover{background-color:rgba(0,0,0,.12)}.ng-select .ng-clear-wrapper{color:rgba(0,0,0,.54)}.ng-select .ng-clear-wrapper:hover .ng-clear{color:#f44336}.ng-select .ng-arrow-wrapper .ng-arrow{border-color:rgba(0,0,0,.54) rgba(0,0,0,0) rgba(0,0,0,0)}.ng-select.ng-select-invalid .ng-arrow-wrapper .ng-arrow{border-color:#f44336 rgba(0,0,0,0) rgba(0,0,0,0)}.ng-select.ng-select-opened .ng-arrow-wrapper .ng-arrow{border-color:rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,.54)}.ng-select.ng-select-opened.ng-select-invalid .ng-arrow-wrapper .ng-arrow{border-color:rgba(0,0,0,0) rgba(0,0,0,0) #f44336}.ng-dropdown-panel{background-color:#fff}.ng-dropdown-panel.multiple .ng-option.selected{background:rgba(0,0,0,.12)}.ng-dropdown-panel.multiple .ng-option.marked{background:rgba(0,0,0,.04)}.ng-dropdown-panel .ng-dropdown-header{border-bottom:1px solid rgba(0,0,0,.12)}.ng-dropdown-panel .ng-dropdown-footer{border-top:1px solid rgba(0,0,0,.12)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup{color:rgba(0,0,0,.54)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-marked{background:rgba(0,0,0,.04)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-selected{background:rgba(0,0,0,.12)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option{color:rgba(0,0,0,.87)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-marked{background:rgba(0,0,0,.04)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected{background:rgba(0,0,0,.12)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-disabled{color:rgba(0,0,0,.38)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option .ng-tag-label{color:rgba(0,0,0,.38)}.mtx-slider-thumb{box-shadow:0px 3px 1px -2px rgba(0, 0, 0, 0.2),0px 2px 2px 0px rgba(0, 0, 0, 0.14),0px 1px 5px 0px rgba(0, 0, 0, 0.12)}.mtx-slider-track-background{background-color:#bdbdbd}.mat-primary .mtx-slider-track-fill,.mat-primary .mtx-slider-thumb,.mat-primary .mtx-slider-thumb-label{background-color:#3f51b5}.mat-primary .mtx-slider-thumb-label-text{color:#fff}.mat-primary .mtx-slider-focus-ring{background-color:rgba(63,81,181,.2)}.mat-accent .mtx-slider-track-fill,.mat-accent .mtx-slider-thumb,.mat-accent .mtx-slider-thumb-label{background-color:#ff4081}.mat-accent .mtx-slider-thumb-label-text{color:#fff}.mat-accent .mtx-slider-focus-ring{background-color:rgba(255,64,129,.2)}.mat-warn .mtx-slider-track-fill,.mat-warn .mtx-slider-thumb,.mat-warn .mtx-slider-thumb-label{background-color:#f44336}.mat-warn .mtx-slider-thumb-label-text{color:#fff}.mat-warn .mtx-slider-focus-ring{background-color:rgba(244,67,54,.2)}.mtx-slider:hover .mtx-slider-track-background,.mtx-slider.cdk-focused .mtx-slider-track-background{background-color:rgba(0,0,0,.38)}.mtx-slider-disabled .mtx-slider-track-background{background-color:rgba(189,189,189,.54)}.mtx-slider-disabled .mtx-slider-track-fill,.mtx-slider-disabled .mtx-slider-thumb{background-color:#bdbdbd}.mtx-slider-disabled:hover .mtx-slider-track-background,.mtx-slider-disabled.cdk-focused .mtx-slider-track-background{background-color:rgba(189,189,189,.54)}.mtx-slider-min-value .mtx-slider-focus-ring{background-color:rgba(0,0,0,.12)}.mtx-slider-min-value.mtx-slider-thumb-label-showing:not(.mtx-range-slider) .mtx-slider-thumb,.mtx-slider-min-value.mtx-slider-thumb-label-showing:not(.mtx-range-slider) .mtx-slider-thumb-label{background-color:rgba(0,0,0,.87)}.mtx-slider-min-value.mtx-slider-thumb-label-showing:not(.mtx-range-slider).cdk-focused .mtx-slider-thumb,.mtx-slider-min-value.mtx-slider-thumb-label-showing:not(.mtx-range-slider).cdk-focused .mtx-slider-thumb-label{background-color:rgba(0,0,0,.26)}.mtx-slider-min-value:not(.mtx-slider-thumb-label-showing,.mtx-range-slider) .mtx-slider-thumb{background-color:#bdbdbd}.mtx-slider-min-value:not(.mtx-slider-thumb-label-showing,.mtx-range-slider):hover .mtx-slider-thumb,.mtx-slider-min-value:not(.mtx-slider-thumb-label-showing,.mtx-range-slider).cdk-focused .mtx-slider-thumb{background-color:rgba(0,0,0,.38)}.mtx-slider-min-value:not(.mtx-slider-thumb-label-showing,.mtx-range-slider):hover.mtx-slider-disabled .mtx-slider-thumb,.mtx-slider-min-value:not(.mtx-slider-thumb-label-showing,.mtx-range-slider).cdk-focused.mtx-slider-disabled .mtx-slider-thumb{border-color:#bdbdbd}.mtx-slider-has-ticks .mtx-slider-wrapper::after{border-color:rgba(0,0,0,.7)}.mtx-slider-horizontal .mtx-slider-ticks{background-image:repeating-linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);background-image:repeating-linear-gradient(0.0001deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent)}.mtx-slider-vertical .mtx-slider-ticks{background-image:repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent)}.mtx-slider-thumb-label-text{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:12px;font-weight:500}.mtx-split>.mtx-split-gutter{background-color:rgba(0,0,0,.12)}.mtx-split>.mtx-split-gutter:hover{background-color:#3f51b5}.mtx-split>.mtx-split-gutter.mat-accent:hover{background-color:#ff4081}.mtx-split>.mtx-split-gutter.mat-warn:hover{background-color:#f44336}.mtx-tooltip{background:rgba(97,97,97,.9)}.mtx-tooltip{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:12px;padding-top:5px;padding-bottom:5px}.mtx-tooltip-handset{font-size:14px;padding-top:8px;padding-bottom:8px}
@@ -0,0 +1 @@
1
+ .mat-button-loading .mat-button-wrapper{visibility:hidden}.mat-button-loading .mat-progress-spinner{position:absolute;top:calc(50% - 10px);left:calc(50% - 10px)}.mtx-alert{background-color:#424242}.mtx-alert-info.mtx-alert{background-color:#2196f3;color:#fff}.mtx-alert-success.mtx-alert{background-color:#4caf50;color:#fff}.mtx-alert-warning.mtx-alert{background-color:#ff9800;color:#fff}.mtx-alert-danger.mtx-alert{background-color:#f44336;color:#fff}.mtx-colorpicker-toggle-active{color:#c2185b}.mtx-colorpicker-toggle-active.mat-accent{color:#b0bec5}.mtx-colorpicker-toggle-active.mat-warn{color:#f44336}.mtx-datetimepicker-content{background-color:#424242;color:#fff;box-shadow:0px 5px 5px -3px rgba(0, 0, 0, 0.2),0px 8px 10px 1px rgba(0, 0, 0, 0.14),0px 3px 14px 2px rgba(0, 0, 0, 0.12)}.mtx-calendar-header{background-color:#c2185b;color:#fff}.mtx-calendar-body-label{color:rgba(255,255,255,.7)}.mtx-calendar-table-header{color:rgba(255,255,255,.5)}.mtx-calendar-body-cell-content{color:#fff}.mtx-calendar-body-cell-content.mtx-calendar-body-selected{background-color:#c2185b;color:#fff}.mtx-calendar-body-cell-content.mtx-calendar-body-selected.mtx-calendar-body-today{box-shadow:inset 0 0 0 1px #fff}.mtx-calendar-body-cell-content:not(.mtx-calendar-body-selected).mtx-calendar-body-today{border-color:rgba(255,255,255,.5)}.mtx-calendar-body-cell:not(.mtx-calendar-body-disabled):hover>.mtx-calendar-body-cell-content:not(.mtx-calendar-body-selected),.mtx-calendar-body-active>.mtx-calendar-body-cell-content:not(.mtx-calendar-body-selected){background-color:rgba(194,24,91,.3)}.mtx-calendar-body-disabled>.mtx-calendar-body-cell-content:not(.mtx-calendar-body-selected){color:rgba(255,255,255,.5)}.mtx-calendar-body-disabled>.mtx-calendar-body-today:not(.mtx-calendar-body-selected){border-color:rgba(255,255,255,.5)}.mtx-calendar-body-disabled>.mtx-calendar-body-selected{background-color:rgba(194,24,91,.4)}.mtx-calendar-previous-button.disabled,.mtx-calendar-next-button.disabled{color:rgba(255,255,255,.5)}.mtx-clock-wrapper{background-color:rgba(255,255,255,.12)}.mtx-clock-center{background-color:#c2185b}.mtx-clock-hand{background-color:#c2185b}.mtx-clock-hand::before{background-color:#c2185b}.mtx-clock-cell{color:#fff}.mtx-clock-cell.mtx-clock-cell-selected{background-color:#c2185b;color:#fff}.mtx-clock-cell:not(.mtx-clock-cell-selected,.mtx-clock-cell-disabled):hover{background-color:rgba(255,255,255,.04)}.mtx-clock-cell.mtx-clock-cell-disabled{color:rgba(255,255,255,.5)}.mtx-datetimepicker-toggle-active{color:#c2185b}.mtx-datetimepicker-toggle-active.mat-accent{color:#b0bec5}.mtx-datetimepicker-toggle-active.mat-warn{color:#f44336}.mtx-time-input{color:#fff;background-color:rgba(255,255,255,.12)}.mtx-time-input.mtx-time-input-active{color:#c2185b;background-color:rgba(194,24,91,.2)}.mtx-time-input.mtx-time-input-active:focus{border-color:#c2185b;background-color:#303030}.mtx-time-input.mtx-time-input-active:focus::placeholder{color:rgba(194,24,91,.6)}.mtx-time-input.mtx-time-input-warning{border-color:#f44336}.mtx-time-ampm .mtx-time-am,.mtx-time-ampm .mtx-time-pm{color:rgba(255,255,255,.75);border-color:rgba(255,255,255,.5)}.mtx-time-ampm .mtx-time-am.mtx-time-ampm-active,.mtx-time-ampm .mtx-time-pm.mtx-time-ampm-active{color:#fff;background-color:rgba(176,190,197,.2);font-weight:500}.mtx-calendar{font-family:Roboto, "Helvetica Neue", sans-serif}.mtx-calendar-body{font-size:13px}.mtx-calendar-body-label,.mtx-calendar-period-button{font-size:14px;font-weight:500}.mtx-calendar-table-header th{font-size:11px;font-weight:400}.mtx-clock{font-size:14px}.mtx-drawer-container{box-shadow:0px 8px 10px -5px rgba(0, 0, 0, 0.2),0px 16px 24px 2px rgba(0, 0, 0, 0.14),0px 6px 30px 5px rgba(0, 0, 0, 0.12);background:#424242;color:#fff}.mtx-grid{border:1px solid rgba(255,255,255,.2)}.mtx-grid .mat-table-sticky-left,.mtx-grid .mat-table-sticky-right{border-color:rgba(255,255,255,.12)}.mtx-grid .mat-table.mat-table-striped .mat-row-odd{background-color:#3a3a3a}.mtx-grid .mat-table.mat-table-hover .mat-row:hover{background-color:#2a2a2a}.mtx-grid .mat-row.selected,.mtx-grid .mat-row.mat-row-odd.selected{background-color:#2a2a2a}.mtx-grid .mat-cell.selected{box-shadow:inset 0 0 0 1px #b0bec5}.mtx-grid .mat-footer-row .mat-footer-cell{border-top:1px solid rgba(255,255,255,.12);border-bottom-width:0;background-color:#212121}.mtx-grid .mat-paginator{border-top:1px solid rgba(255,255,255,.2)}.mtx-grid-toolbar{border-bottom:1px solid rgba(255,255,255,.2)}.mtx-grid-sidebar{border-color:rgba(255,255,255,.2)}.mtx-grid-statusbar{border-top:1px solid rgba(255,255,255,.2)}.mtx-grid-column-menu-item{color:#fff}.mtx-grid-column-menu-header,.mtx-grid-column-menu-footer{color:#fff;background-color:#424242}.mtx-grid-column-menu-header{border-bottom:1px solid rgba(255,255,255,.12)}.mtx-grid-column-menu-footer{border-top:1px solid rgba(255,255,255,.12)}.mat-column-resize-table.cdk-column-resize-with-resized-column{table-layout:fixed}.mat-column-resize-flex .mat-header-cell,.mat-column-resize-flex .mat-cell{box-sizing:border-box;min-width:32px}.mat-header-cell{position:relative}.mat-resizable{box-sizing:border-box}.mat-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-header-cell:not(.mat-resizable)::after{content:""}[dir=rtl] .mat-header-cell:not(.mat-resizable)::after,[dir=rtl] .mat-resizable-handle{left:0;right:auto}.mat-header-row.cdk-column-resize-hover-or-active .mat-header-cell:not(.mat-resizable)::after{background:rgba(255,255,255,.12)}.mat-header-row.cdk-column-resize-hover-or-active .mat-resizable-handle{background:#f48fb1}.mat-resizable.cdk-resizable-overlay-thumb-active>.mat-resizable-handle{opacity:0;transition:none}.mat-resizable-handle:focus,.mat-header-row.cdk-column-resize-hover-or-active .mat-resizable-handle:focus{background:#e91e63;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;-moz-user-select:none;user-select:none}.mat-column-resize-overlay-thumb:active{background:linear-gradient(90deg, transparent, transparent 7px, #e91e63, #e91e63 1px, transparent 8px, transparent);will-change:transform}.mtx-loader-backdrop{background-color:rgba(48,48,48,.75)}.mtx-popover-panel{color:#fff;background-color:#424242}[class*=mtx-popover] .mtx-popover-direction-arrow::before{border-color:rgba(255,255,255,.12)}[class*=mtx-popover] .mtx-popover-direction-arrow::after{border-color:#424242}[class*=mtx-popover-below] .mtx-popover-direction-arrow::before,[class*=mtx-popover-below] .mtx-popover-direction-arrow::after,[class*=mtx-popover-above] .mtx-popover-direction-arrow::before,[class*=mtx-popover-above] .mtx-popover-direction-arrow::after{border-left-color:rgba(0,0,0,0);border-right-color:rgba(0,0,0,0)}[class*=mtx-popover-before] .mtx-popover-direction-arrow::before,[class*=mtx-popover-before] .mtx-popover-direction-arrow::after,[class*=mtx-popover-after] .mtx-popover-direction-arrow::before,[class*=mtx-popover-after] .mtx-popover-direction-arrow::after{border-top-color:rgba(0,0,0,0);border-bottom-color:rgba(0,0,0,0)}.mtx-progress{background-color:rgba(255,255,255,.04)}.mtx-progress-fill-info{background-color:#2196f3;color:#fff}.mtx-progress-fill-success{background-color:#4caf50;color:#fff}.mtx-progress-fill-warning{background-color:#ff9800;color:#fff}.mtx-progress-fill-danger{background-color:#f44336;color:#fff}.ng-select .ng-select-container{color:#fff}.ng-select .ng-select-container .ng-value-container .ng-placeholder{color:rgba(255,255,255,.5)}.ng-select .ng-select-container .ng-value-container .ng-input>input{color:#fff}.ng-select.ng-select-disabled .ng-value{color:rgba(255,255,255,.5)}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value{color:#fff;background-color:#616161}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled{opacity:.4}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon:hover{background-color:rgba(255,255,255,.12)}.ng-select .ng-clear-wrapper{color:rgba(255,255,255,.7)}.ng-select .ng-clear-wrapper:hover .ng-clear{color:#f44336}.ng-select .ng-arrow-wrapper .ng-arrow{border-color:rgba(255,255,255,.7) rgba(0,0,0,0) rgba(0,0,0,0)}.ng-select.ng-select-invalid .ng-arrow-wrapper .ng-arrow{border-color:#f44336 rgba(0,0,0,0) rgba(0,0,0,0)}.ng-select.ng-select-opened .ng-arrow-wrapper .ng-arrow{border-color:rgba(0,0,0,0) rgba(0,0,0,0) rgba(255,255,255,.7)}.ng-select.ng-select-opened.ng-select-invalid .ng-arrow-wrapper .ng-arrow{border-color:rgba(0,0,0,0) rgba(0,0,0,0) #f44336}.ng-dropdown-panel{background-color:#424242}.ng-dropdown-panel.multiple .ng-option.selected{background:rgba(255,255,255,.12)}.ng-dropdown-panel.multiple .ng-option.marked{background:rgba(255,255,255,.04)}.ng-dropdown-panel .ng-dropdown-header{border-bottom:1px solid rgba(255,255,255,.12)}.ng-dropdown-panel .ng-dropdown-footer{border-top:1px solid rgba(255,255,255,.12)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup{color:rgba(255,255,255,.7)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-marked{background:rgba(255,255,255,.04)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-selected{background:rgba(255,255,255,.12)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option{color:#fff}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-marked{background:rgba(255,255,255,.04)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected{background:rgba(255,255,255,.12)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-disabled{color:rgba(255,255,255,.5)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option .ng-tag-label{color:rgba(255,255,255,.5)}.mtx-slider-thumb{box-shadow:0px 3px 1px -2px rgba(0, 0, 0, 0.2),0px 2px 2px 0px rgba(0, 0, 0, 0.14),0px 1px 5px 0px rgba(0, 0, 0, 0.12)}.mtx-slider-track-background{background-color:#bdbdbd}.mat-primary .mtx-slider-track-fill,.mat-primary .mtx-slider-thumb,.mat-primary .mtx-slider-thumb-label{background-color:#c2185b}.mat-primary .mtx-slider-thumb-label-text{color:#fff}.mat-primary .mtx-slider-focus-ring{background-color:rgba(194,24,91,.2)}.mat-accent .mtx-slider-track-fill,.mat-accent .mtx-slider-thumb,.mat-accent .mtx-slider-thumb-label{background-color:#b0bec5}.mat-accent .mtx-slider-thumb-label-text{color:rgba(0,0,0,.87)}.mat-accent .mtx-slider-focus-ring{background-color:rgba(176,190,197,.2)}.mat-warn .mtx-slider-track-fill,.mat-warn .mtx-slider-thumb,.mat-warn .mtx-slider-thumb-label{background-color:#f44336}.mat-warn .mtx-slider-thumb-label-text{color:#fff}.mat-warn .mtx-slider-focus-ring{background-color:rgba(244,67,54,.2)}.mtx-slider:hover .mtx-slider-track-background,.mtx-slider.cdk-focused .mtx-slider-track-background{background-color:rgba(255,255,255,.3)}.mtx-slider-disabled .mtx-slider-track-background{background-color:rgba(189,189,189,.54)}.mtx-slider-disabled .mtx-slider-track-fill,.mtx-slider-disabled .mtx-slider-thumb{background-color:#bdbdbd}.mtx-slider-disabled:hover .mtx-slider-track-background,.mtx-slider-disabled.cdk-focused .mtx-slider-track-background{background-color:rgba(189,189,189,.54)}.mtx-slider-min-value .mtx-slider-focus-ring{background-color:rgba(255,255,255,.12)}.mtx-slider-min-value.mtx-slider-thumb-label-showing:not(.mtx-range-slider) .mtx-slider-thumb,.mtx-slider-min-value.mtx-slider-thumb-label-showing:not(.mtx-range-slider) .mtx-slider-thumb-label{background-color:#fff}.mtx-slider-min-value.mtx-slider-thumb-label-showing:not(.mtx-range-slider).cdk-focused .mtx-slider-thumb,.mtx-slider-min-value.mtx-slider-thumb-label-showing:not(.mtx-range-slider).cdk-focused .mtx-slider-thumb-label{background-color:rgba(255,255,255,.3)}.mtx-slider-min-value:not(.mtx-slider-thumb-label-showing,.mtx-range-slider) .mtx-slider-thumb{background-color:#bdbdbd}.mtx-slider-min-value:not(.mtx-slider-thumb-label-showing,.mtx-range-slider):hover .mtx-slider-thumb,.mtx-slider-min-value:not(.mtx-slider-thumb-label-showing,.mtx-range-slider).cdk-focused .mtx-slider-thumb{background-color:rgba(255,255,255,.3)}.mtx-slider-min-value:not(.mtx-slider-thumb-label-showing,.mtx-range-slider):hover.mtx-slider-disabled .mtx-slider-thumb,.mtx-slider-min-value:not(.mtx-slider-thumb-label-showing,.mtx-range-slider).cdk-focused.mtx-slider-disabled .mtx-slider-thumb{border-color:#bdbdbd}.mtx-slider-has-ticks .mtx-slider-wrapper::after{border-color:rgba(255,255,255,.7)}.mtx-slider-horizontal .mtx-slider-ticks{background-image:repeating-linear-gradient(to right, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7) 2px, transparent 0, transparent);background-image:repeating-linear-gradient(0.0001deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7) 2px, transparent 0, transparent)}.mtx-slider-vertical .mtx-slider-ticks{background-image:repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7) 2px, transparent 0, transparent)}.mtx-slider-thumb-label-text{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:12px;font-weight:500}.mtx-split>.mtx-split-gutter{background-color:rgba(255,255,255,.12)}.mtx-split>.mtx-split-gutter:hover{background-color:#c2185b}.mtx-split>.mtx-split-gutter.mat-accent:hover{background-color:#b0bec5}.mtx-split>.mtx-split-gutter.mat-warn:hover{background-color:#f44336}.mtx-tooltip{background:rgba(97,97,97,.9)}.mtx-tooltip{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:12px;padding-top:5px;padding-bottom:5px}.mtx-tooltip-handset{font-size:14px;padding-top:8px;padding-bottom:8px}
@@ -0,0 +1 @@
1
+ .mat-button-loading .mat-button-wrapper{visibility:hidden}.mat-button-loading .mat-progress-spinner{position:absolute;top:calc(50% - 10px);left:calc(50% - 10px)}.mtx-alert{background-color:#424242}.mtx-alert-info.mtx-alert{background-color:#2196f3;color:#fff}.mtx-alert-success.mtx-alert{background-color:#4caf50;color:#fff}.mtx-alert-warning.mtx-alert{background-color:#ff9800;color:#fff}.mtx-alert-danger.mtx-alert{background-color:#f44336;color:#fff}.mtx-colorpicker-toggle-active{color:#7b1fa2}.mtx-colorpicker-toggle-active.mat-accent{color:#69f0ae}.mtx-colorpicker-toggle-active.mat-warn{color:#f44336}.mtx-datetimepicker-content{background-color:#424242;color:#fff;box-shadow:0px 5px 5px -3px rgba(0, 0, 0, 0.2),0px 8px 10px 1px rgba(0, 0, 0, 0.14),0px 3px 14px 2px rgba(0, 0, 0, 0.12)}.mtx-calendar-header{background-color:#7b1fa2;color:#fff}.mtx-calendar-body-label{color:rgba(255,255,255,.7)}.mtx-calendar-table-header{color:rgba(255,255,255,.5)}.mtx-calendar-body-cell-content{color:#fff}.mtx-calendar-body-cell-content.mtx-calendar-body-selected{background-color:#7b1fa2;color:#fff}.mtx-calendar-body-cell-content.mtx-calendar-body-selected.mtx-calendar-body-today{box-shadow:inset 0 0 0 1px #fff}.mtx-calendar-body-cell-content:not(.mtx-calendar-body-selected).mtx-calendar-body-today{border-color:rgba(255,255,255,.5)}.mtx-calendar-body-cell:not(.mtx-calendar-body-disabled):hover>.mtx-calendar-body-cell-content:not(.mtx-calendar-body-selected),.mtx-calendar-body-active>.mtx-calendar-body-cell-content:not(.mtx-calendar-body-selected){background-color:rgba(123,31,162,.3)}.mtx-calendar-body-disabled>.mtx-calendar-body-cell-content:not(.mtx-calendar-body-selected){color:rgba(255,255,255,.5)}.mtx-calendar-body-disabled>.mtx-calendar-body-today:not(.mtx-calendar-body-selected){border-color:rgba(255,255,255,.5)}.mtx-calendar-body-disabled>.mtx-calendar-body-selected{background-color:rgba(123,31,162,.4)}.mtx-calendar-previous-button.disabled,.mtx-calendar-next-button.disabled{color:rgba(255,255,255,.5)}.mtx-clock-wrapper{background-color:rgba(255,255,255,.12)}.mtx-clock-center{background-color:#7b1fa2}.mtx-clock-hand{background-color:#7b1fa2}.mtx-clock-hand::before{background-color:#7b1fa2}.mtx-clock-cell{color:#fff}.mtx-clock-cell.mtx-clock-cell-selected{background-color:#7b1fa2;color:#fff}.mtx-clock-cell:not(.mtx-clock-cell-selected,.mtx-clock-cell-disabled):hover{background-color:rgba(255,255,255,.04)}.mtx-clock-cell.mtx-clock-cell-disabled{color:rgba(255,255,255,.5)}.mtx-datetimepicker-toggle-active{color:#7b1fa2}.mtx-datetimepicker-toggle-active.mat-accent{color:#69f0ae}.mtx-datetimepicker-toggle-active.mat-warn{color:#f44336}.mtx-time-input{color:#fff;background-color:rgba(255,255,255,.12)}.mtx-time-input.mtx-time-input-active{color:#7b1fa2;background-color:rgba(123,31,162,.2)}.mtx-time-input.mtx-time-input-active:focus{border-color:#7b1fa2;background-color:#303030}.mtx-time-input.mtx-time-input-active:focus::placeholder{color:rgba(123,31,162,.6)}.mtx-time-input.mtx-time-input-warning{border-color:#f44336}.mtx-time-ampm .mtx-time-am,.mtx-time-ampm .mtx-time-pm{color:rgba(255,255,255,.75);border-color:rgba(255,255,255,.5)}.mtx-time-ampm .mtx-time-am.mtx-time-ampm-active,.mtx-time-ampm .mtx-time-pm.mtx-time-ampm-active{color:#fff;background-color:rgba(105,240,174,.2);font-weight:500}.mtx-calendar{font-family:Roboto, "Helvetica Neue", sans-serif}.mtx-calendar-body{font-size:13px}.mtx-calendar-body-label,.mtx-calendar-period-button{font-size:14px;font-weight:500}.mtx-calendar-table-header th{font-size:11px;font-weight:400}.mtx-clock{font-size:14px}.mtx-drawer-container{box-shadow:0px 8px 10px -5px rgba(0, 0, 0, 0.2),0px 16px 24px 2px rgba(0, 0, 0, 0.14),0px 6px 30px 5px rgba(0, 0, 0, 0.12);background:#424242;color:#fff}.mtx-grid{border:1px solid rgba(255,255,255,.2)}.mtx-grid .mat-table-sticky-left,.mtx-grid .mat-table-sticky-right{border-color:rgba(255,255,255,.12)}.mtx-grid .mat-table.mat-table-striped .mat-row-odd{background-color:#3a3a3a}.mtx-grid .mat-table.mat-table-hover .mat-row:hover{background-color:#2a2a2a}.mtx-grid .mat-row.selected,.mtx-grid .mat-row.mat-row-odd.selected{background-color:#2a2a2a}.mtx-grid .mat-cell.selected{box-shadow:inset 0 0 0 1px #69f0ae}.mtx-grid .mat-footer-row .mat-footer-cell{border-top:1px solid rgba(255,255,255,.12);border-bottom-width:0;background-color:#212121}.mtx-grid .mat-paginator{border-top:1px solid rgba(255,255,255,.2)}.mtx-grid-toolbar{border-bottom:1px solid rgba(255,255,255,.2)}.mtx-grid-sidebar{border-color:rgba(255,255,255,.2)}.mtx-grid-statusbar{border-top:1px solid rgba(255,255,255,.2)}.mtx-grid-column-menu-item{color:#fff}.mtx-grid-column-menu-header,.mtx-grid-column-menu-footer{color:#fff;background-color:#424242}.mtx-grid-column-menu-header{border-bottom:1px solid rgba(255,255,255,.12)}.mtx-grid-column-menu-footer{border-top:1px solid rgba(255,255,255,.12)}.mat-column-resize-table.cdk-column-resize-with-resized-column{table-layout:fixed}.mat-column-resize-flex .mat-header-cell,.mat-column-resize-flex .mat-cell{box-sizing:border-box;min-width:32px}.mat-header-cell{position:relative}.mat-resizable{box-sizing:border-box}.mat-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-header-cell:not(.mat-resizable)::after{content:""}[dir=rtl] .mat-header-cell:not(.mat-resizable)::after,[dir=rtl] .mat-resizable-handle{left:0;right:auto}.mat-header-row.cdk-column-resize-hover-or-active .mat-header-cell:not(.mat-resizable)::after{background:rgba(255,255,255,.12)}.mat-header-row.cdk-column-resize-hover-or-active .mat-resizable-handle{background:#ce93d8}.mat-resizable.cdk-resizable-overlay-thumb-active>.mat-resizable-handle{opacity:0;transition:none}.mat-resizable-handle:focus,.mat-header-row.cdk-column-resize-hover-or-active .mat-resizable-handle:focus{background:#9c27b0;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;-moz-user-select:none;user-select:none}.mat-column-resize-overlay-thumb:active{background:linear-gradient(90deg, transparent, transparent 7px, #9c27b0, #9c27b0 1px, transparent 8px, transparent);will-change:transform}.mtx-loader-backdrop{background-color:rgba(48,48,48,.75)}.mtx-popover-panel{color:#fff;background-color:#424242}[class*=mtx-popover] .mtx-popover-direction-arrow::before{border-color:rgba(255,255,255,.12)}[class*=mtx-popover] .mtx-popover-direction-arrow::after{border-color:#424242}[class*=mtx-popover-below] .mtx-popover-direction-arrow::before,[class*=mtx-popover-below] .mtx-popover-direction-arrow::after,[class*=mtx-popover-above] .mtx-popover-direction-arrow::before,[class*=mtx-popover-above] .mtx-popover-direction-arrow::after{border-left-color:rgba(0,0,0,0);border-right-color:rgba(0,0,0,0)}[class*=mtx-popover-before] .mtx-popover-direction-arrow::before,[class*=mtx-popover-before] .mtx-popover-direction-arrow::after,[class*=mtx-popover-after] .mtx-popover-direction-arrow::before,[class*=mtx-popover-after] .mtx-popover-direction-arrow::after{border-top-color:rgba(0,0,0,0);border-bottom-color:rgba(0,0,0,0)}.mtx-progress{background-color:rgba(255,255,255,.04)}.mtx-progress-fill-info{background-color:#2196f3;color:#fff}.mtx-progress-fill-success{background-color:#4caf50;color:#fff}.mtx-progress-fill-warning{background-color:#ff9800;color:#fff}.mtx-progress-fill-danger{background-color:#f44336;color:#fff}.ng-select .ng-select-container{color:#fff}.ng-select .ng-select-container .ng-value-container .ng-placeholder{color:rgba(255,255,255,.5)}.ng-select .ng-select-container .ng-value-container .ng-input>input{color:#fff}.ng-select.ng-select-disabled .ng-value{color:rgba(255,255,255,.5)}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value{color:#fff;background-color:#616161}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled{opacity:.4}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon:hover{background-color:rgba(255,255,255,.12)}.ng-select .ng-clear-wrapper{color:rgba(255,255,255,.7)}.ng-select .ng-clear-wrapper:hover .ng-clear{color:#f44336}.ng-select .ng-arrow-wrapper .ng-arrow{border-color:rgba(255,255,255,.7) rgba(0,0,0,0) rgba(0,0,0,0)}.ng-select.ng-select-invalid .ng-arrow-wrapper .ng-arrow{border-color:#f44336 rgba(0,0,0,0) rgba(0,0,0,0)}.ng-select.ng-select-opened .ng-arrow-wrapper .ng-arrow{border-color:rgba(0,0,0,0) rgba(0,0,0,0) rgba(255,255,255,.7)}.ng-select.ng-select-opened.ng-select-invalid .ng-arrow-wrapper .ng-arrow{border-color:rgba(0,0,0,0) rgba(0,0,0,0) #f44336}.ng-dropdown-panel{background-color:#424242}.ng-dropdown-panel.multiple .ng-option.selected{background:rgba(255,255,255,.12)}.ng-dropdown-panel.multiple .ng-option.marked{background:rgba(255,255,255,.04)}.ng-dropdown-panel .ng-dropdown-header{border-bottom:1px solid rgba(255,255,255,.12)}.ng-dropdown-panel .ng-dropdown-footer{border-top:1px solid rgba(255,255,255,.12)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup{color:rgba(255,255,255,.7)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-marked{background:rgba(255,255,255,.04)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-selected{background:rgba(255,255,255,.12)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option{color:#fff}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-marked{background:rgba(255,255,255,.04)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected{background:rgba(255,255,255,.12)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-disabled{color:rgba(255,255,255,.5)}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option .ng-tag-label{color:rgba(255,255,255,.5)}.mtx-slider-thumb{box-shadow:0px 3px 1px -2px rgba(0, 0, 0, 0.2),0px 2px 2px 0px rgba(0, 0, 0, 0.14),0px 1px 5px 0px rgba(0, 0, 0, 0.12)}.mtx-slider-track-background{background-color:#bdbdbd}.mat-primary .mtx-slider-track-fill,.mat-primary .mtx-slider-thumb,.mat-primary .mtx-slider-thumb-label{background-color:#7b1fa2}.mat-primary .mtx-slider-thumb-label-text{color:#fff}.mat-primary .mtx-slider-focus-ring{background-color:rgba(123,31,162,.2)}.mat-accent .mtx-slider-track-fill,.mat-accent .mtx-slider-thumb,.mat-accent .mtx-slider-thumb-label{background-color:#69f0ae}.mat-accent .mtx-slider-thumb-label-text{color:rgba(0,0,0,.87)}.mat-accent .mtx-slider-focus-ring{background-color:rgba(105,240,174,.2)}.mat-warn .mtx-slider-track-fill,.mat-warn .mtx-slider-thumb,.mat-warn .mtx-slider-thumb-label{background-color:#f44336}.mat-warn .mtx-slider-thumb-label-text{color:#fff}.mat-warn .mtx-slider-focus-ring{background-color:rgba(244,67,54,.2)}.mtx-slider:hover .mtx-slider-track-background,.mtx-slider.cdk-focused .mtx-slider-track-background{background-color:rgba(255,255,255,.3)}.mtx-slider-disabled .mtx-slider-track-background{background-color:rgba(189,189,189,.54)}.mtx-slider-disabled .mtx-slider-track-fill,.mtx-slider-disabled .mtx-slider-thumb{background-color:#bdbdbd}.mtx-slider-disabled:hover .mtx-slider-track-background,.mtx-slider-disabled.cdk-focused .mtx-slider-track-background{background-color:rgba(189,189,189,.54)}.mtx-slider-min-value .mtx-slider-focus-ring{background-color:rgba(255,255,255,.12)}.mtx-slider-min-value.mtx-slider-thumb-label-showing:not(.mtx-range-slider) .mtx-slider-thumb,.mtx-slider-min-value.mtx-slider-thumb-label-showing:not(.mtx-range-slider) .mtx-slider-thumb-label{background-color:#fff}.mtx-slider-min-value.mtx-slider-thumb-label-showing:not(.mtx-range-slider).cdk-focused .mtx-slider-thumb,.mtx-slider-min-value.mtx-slider-thumb-label-showing:not(.mtx-range-slider).cdk-focused .mtx-slider-thumb-label{background-color:rgba(255,255,255,.3)}.mtx-slider-min-value:not(.mtx-slider-thumb-label-showing,.mtx-range-slider) .mtx-slider-thumb{background-color:#bdbdbd}.mtx-slider-min-value:not(.mtx-slider-thumb-label-showing,.mtx-range-slider):hover .mtx-slider-thumb,.mtx-slider-min-value:not(.mtx-slider-thumb-label-showing,.mtx-range-slider).cdk-focused .mtx-slider-thumb{background-color:rgba(255,255,255,.3)}.mtx-slider-min-value:not(.mtx-slider-thumb-label-showing,.mtx-range-slider):hover.mtx-slider-disabled .mtx-slider-thumb,.mtx-slider-min-value:not(.mtx-slider-thumb-label-showing,.mtx-range-slider).cdk-focused.mtx-slider-disabled .mtx-slider-thumb{border-color:#bdbdbd}.mtx-slider-has-ticks .mtx-slider-wrapper::after{border-color:rgba(255,255,255,.7)}.mtx-slider-horizontal .mtx-slider-ticks{background-image:repeating-linear-gradient(to right, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7) 2px, transparent 0, transparent);background-image:repeating-linear-gradient(0.0001deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7) 2px, transparent 0, transparent)}.mtx-slider-vertical .mtx-slider-ticks{background-image:repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7) 2px, transparent 0, transparent)}.mtx-slider-thumb-label-text{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:12px;font-weight:500}.mtx-split>.mtx-split-gutter{background-color:rgba(255,255,255,.12)}.mtx-split>.mtx-split-gutter:hover{background-color:#7b1fa2}.mtx-split>.mtx-split-gutter.mat-accent:hover{background-color:#69f0ae}.mtx-split>.mtx-split-gutter.mat-warn:hover{background-color:#f44336}.mtx-tooltip{background:rgba(97,97,97,.9)}.mtx-tooltip{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:12px;padding-top:5px;padding-bottom:5px}.mtx-tooltip-handset{font-size:14px;padding-top:8px;padding-bottom:8px}
@@ -1,11 +1,11 @@
1
1
  import { FocusMonitor } from '@angular/cdk/a11y';
2
2
  import { BooleanInput } from '@angular/cdk/coercion';
3
- import { AfterViewInit, ChangeDetectorRef, DoCheck, ElementRef, EventEmitter, OnDestroy, OnInit, QueryList, TemplateRef } from '@angular/core';
4
- import { ErrorStateMatcher } from '@angular/material/core';
3
+ import { AfterViewInit, ChangeDetectorRef, DoCheck, ElementRef, EventEmitter, InjectionToken, OnDestroy, OnInit, QueryList, TemplateRef } from '@angular/core';
5
4
  import { ControlValueAccessor, FormGroupDirective, NgControl, NgForm } from '@angular/forms';
5
+ import { CanDisable, ErrorStateMatcher } from '@angular/material/core';
6
6
  import { MatFormField, MatFormFieldControl } from '@angular/material/form-field';
7
- import { Subject } from 'rxjs';
8
7
  import { NgSelectComponent } from '@ng-select/ng-select';
8
+ import { Subject } from 'rxjs';
9
9
  import { MtxOptionComponent } from './option.component';
10
10
  import * as i0 from "@angular/core";
11
11
  export declare type DropdownPosition = 'bottom' | 'top' | 'auto';
@@ -14,8 +14,27 @@ export declare type CompareWithFn = (a: any, b: any) => boolean;
14
14
  export declare type GroupValueFn = (key: string | Record<string, any>, children: any[]) => string | Record<string, any>;
15
15
  export declare type SearchFn = (term: string, item: any) => boolean;
16
16
  export declare type TrackByFn = (item: any) => any;
17
+ /**
18
+ * Represents the default options for the select that can be configured
19
+ * using the `MTX_SELECT_DEFAULT_OPTIONS` injection token.
20
+ */
21
+ export interface MtxSelectDefaultOptions {
22
+ placeholder?: string;
23
+ notFoundText?: string;
24
+ typeToSearchText?: string;
25
+ addTagText?: string;
26
+ loadingText?: string;
27
+ clearAllText?: string;
28
+ appendTo?: string;
29
+ bindValue?: string;
30
+ bindLabel?: string;
31
+ openOnEnter?: boolean;
32
+ clearSearchOnAdd?: boolean;
33
+ }
34
+ /** Injection token that can be used to specify default select options. */
35
+ export declare const MTX_SELECT_DEFAULT_OPTIONS: InjectionToken<MtxSelectDefaultOptions>;
17
36
  /** @docs-private */
18
- declare const _MtxSelectMixinBase: import("@angular/material/core")._Constructor<import("@angular/material/core").CanUpdateErrorState> & import("@angular/material/core")._AbstractConstructor<import("@angular/material/core").CanUpdateErrorState> & {
37
+ declare const _MtxSelectMixinBase: import("@angular/material/core")._Constructor<CanDisable> & import("@angular/material/core")._AbstractConstructor<CanDisable> & import("@angular/material/core")._Constructor<import("@angular/material/core").CanUpdateErrorState> & import("@angular/material/core")._AbstractConstructor<import("@angular/material/core").CanUpdateErrorState> & {
19
38
  new (_defaultErrorStateMatcher: ErrorStateMatcher, _parentForm: NgForm, _parentFormGroup: FormGroupDirective, ngControl: NgControl): {
20
39
  /**
21
40
  * Emits whenever the component state changes and should cause the parent
@@ -34,11 +53,12 @@ declare const _MtxSelectMixinBase: import("@angular/material/core")._Constructor
34
53
  ngControl: NgControl;
35
54
  };
36
55
  };
37
- export declare class MtxSelectComponent extends _MtxSelectMixinBase implements OnInit, OnDestroy, DoCheck, AfterViewInit, ControlValueAccessor, MatFormFieldControl<any> {
56
+ export declare class MtxSelectComponent extends _MtxSelectMixinBase implements OnInit, OnDestroy, DoCheck, AfterViewInit, ControlValueAccessor, CanDisable, MatFormFieldControl<any> {
38
57
  protected _changeDetectorRef: ChangeDetectorRef;
39
58
  protected _elementRef: ElementRef;
40
59
  protected _focusMonitor: FocusMonitor;
41
60
  protected _parentFormField?: MatFormField | undefined;
61
+ protected _defaultOptions?: MtxSelectDefaultOptions | undefined;
42
62
  ngSelect: NgSelectComponent;
43
63
  optionTemplate: TemplateRef<any>;
44
64
  optgroupTemplate: TemplateRef<any>;
@@ -56,8 +76,8 @@ export declare class MtxSelectComponent extends _MtxSelectMixinBase implements O
56
76
  addTagText: string;
57
77
  appearance: string;
58
78
  appendTo: string;
59
- bindLabel: string;
60
- bindValue: string;
79
+ bindLabel: string | undefined;
80
+ bindValue: string | undefined;
61
81
  closeOnSelect: boolean;
62
82
  clearAllText: string;
63
83
  clearable: boolean;
@@ -113,7 +133,7 @@ export declare class MtxSelectComponent extends _MtxSelectMixinBase implements O
113
133
  scrollToEnd: EventEmitter<any>;
114
134
  get clearSearchOnAdd(): boolean;
115
135
  set clearSearchOnAdd(value: boolean);
116
- private _clearSearchOnAdd?;
136
+ private _clearSearchOnAdd;
117
137
  get items(): any[];
118
138
  set items(value: any[]);
119
139
  private _items;
@@ -150,10 +170,6 @@ export declare class MtxSelectComponent extends _MtxSelectMixinBase implements O
150
170
  get required(): boolean;
151
171
  set required(value: boolean);
152
172
  private _required;
153
- /** Whether the select is disabled. */
154
- get disabled(): boolean;
155
- set disabled(value: boolean);
156
- private _disabled;
157
173
  /** Object used to control when error messages are shown. */
158
174
  errorStateMatcher: ErrorStateMatcher;
159
175
  /** Aria label of the select. */
@@ -172,7 +188,12 @@ export declare class MtxSelectComponent extends _MtxSelectMixinBase implements O
172
188
  _valueId: string;
173
189
  /** Whether or not the overlay panel is open. */
174
190
  get panelOpen(): boolean;
175
- constructor(_changeDetectorRef: ChangeDetectorRef, _elementRef: ElementRef, _focusMonitor: FocusMonitor, _defaultErrorStateMatcher: ErrorStateMatcher, _parentForm: NgForm, _parentFormGroup: FormGroupDirective, ngControl: NgControl, _parentFormField?: MatFormField | undefined);
191
+ /**
192
+ * Keeps track of the previous form control assigned to the select.
193
+ * Used to detect if it has changed.
194
+ */
195
+ private _previousControl;
196
+ constructor(_changeDetectorRef: ChangeDetectorRef, _elementRef: ElementRef, _focusMonitor: FocusMonitor, _defaultErrorStateMatcher: ErrorStateMatcher, _parentForm: NgForm, _parentFormGroup: FormGroupDirective, ngControl: NgControl, _parentFormField?: MatFormField | undefined, _defaultOptions?: MtxSelectDefaultOptions | undefined);
176
197
  ngOnInit(): void;
177
198
  ngAfterViewInit(): void;
178
199
  ngDoCheck(): void;
@@ -221,7 +242,7 @@ export declare class MtxSelectComponent extends _MtxSelectMixinBase implements O
221
242
  blur(): void;
222
243
  static ngAcceptInputType_required: BooleanInput;
223
244
  static ngAcceptInputType_disabled: BooleanInput;
224
- static ɵfac: i0.ɵɵFactoryDeclaration<MtxSelectComponent, [null, null, null, null, { optional: true; }, { optional: true; }, { optional: true; self: true; }, { optional: true; }]>;
225
- static ɵcmp: i0.ɵɵComponentDeclaration<MtxSelectComponent, "mtx-select", ["mtxSelect"], { "addTag": "addTag"; "addTagText": "addTagText"; "appearance": "appearance"; "appendTo": "appendTo"; "bindLabel": "bindLabel"; "bindValue": "bindValue"; "closeOnSelect": "closeOnSelect"; "clearAllText": "clearAllText"; "clearable": "clearable"; "clearOnBackspace": "clearOnBackspace"; "compareWith": "compareWith"; "dropdownPosition": "dropdownPosition"; "groupBy": "groupBy"; "groupValue": "groupValue"; "selectableGroup": "selectableGroup"; "selectableGroupAsModel": "selectableGroupAsModel"; "hideSelected": "hideSelected"; "isOpen": "isOpen"; "loading": "loading"; "loadingText": "loadingText"; "labelForId": "labelForId"; "markFirst": "markFirst"; "maxSelectedItems": "maxSelectedItems"; "multiple": "multiple"; "notFoundText": "notFoundText"; "searchable": "searchable"; "readonly": "readonly"; "searchFn": "searchFn"; "searchWhileComposing": "searchWhileComposing"; "selectOnTab": "selectOnTab"; "trackByFn": "trackByFn"; "inputAttrs": "inputAttrs"; "tabIndex": "tabIndex"; "openOnEnter": "openOnEnter"; "minTermLength": "minTermLength"; "editableSearchTerm": "editableSearchTerm"; "keyDownFn": "keyDownFn"; "virtualScroll": "virtualScroll"; "typeToSearchText": "typeToSearchText"; "typeahead": "typeahead"; "clearSearchOnAdd": "clearSearchOnAdd"; "items": "items"; "value": "value"; "id": "id"; "placeholder": "placeholder"; "required": "required"; "disabled": "disabled"; "errorStateMatcher": "errorStateMatcher"; "ariaLabel": "aria-label"; "ariaLabelledby": "aria-labelledby"; }, { "blurEvent": "blur"; "focusEvent": "focus"; "changeEvent": "change"; "openEvent": "open"; "closeEvent": "close"; "searchEvent": "search"; "clearEvent": "clear"; "addEvent": "add"; "removeEvent": "remove"; "scroll": "scroll"; "scrollToEnd": "scrollToEnd"; }, ["optionTemplate", "optgroupTemplate", "labelTemplate", "multiLabelTemplate", "headerTemplate", "footerTemplate", "notFoundTemplate", "typeToSearchTemplate", "loadingTextTemplate", "tagTemplate", "loadingSpinnerTemplate", "mtxOptions"], never, false>;
245
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtxSelectComponent, [null, null, null, null, { optional: true; }, { optional: true; }, { optional: true; self: true; }, { optional: true; }, { optional: true; }]>;
246
+ static ɵcmp: i0.ɵɵComponentDeclaration<MtxSelectComponent, "mtx-select", ["mtxSelect"], { "disabled": "disabled"; "addTag": "addTag"; "addTagText": "addTagText"; "appearance": "appearance"; "appendTo": "appendTo"; "bindLabel": "bindLabel"; "bindValue": "bindValue"; "closeOnSelect": "closeOnSelect"; "clearAllText": "clearAllText"; "clearable": "clearable"; "clearOnBackspace": "clearOnBackspace"; "compareWith": "compareWith"; "dropdownPosition": "dropdownPosition"; "groupBy": "groupBy"; "groupValue": "groupValue"; "selectableGroup": "selectableGroup"; "selectableGroupAsModel": "selectableGroupAsModel"; "hideSelected": "hideSelected"; "isOpen": "isOpen"; "loading": "loading"; "loadingText": "loadingText"; "labelForId": "labelForId"; "markFirst": "markFirst"; "maxSelectedItems": "maxSelectedItems"; "multiple": "multiple"; "notFoundText": "notFoundText"; "searchable": "searchable"; "readonly": "readonly"; "searchFn": "searchFn"; "searchWhileComposing": "searchWhileComposing"; "selectOnTab": "selectOnTab"; "trackByFn": "trackByFn"; "inputAttrs": "inputAttrs"; "tabIndex": "tabIndex"; "openOnEnter": "openOnEnter"; "minTermLength": "minTermLength"; "editableSearchTerm": "editableSearchTerm"; "keyDownFn": "keyDownFn"; "virtualScroll": "virtualScroll"; "typeToSearchText": "typeToSearchText"; "typeahead": "typeahead"; "clearSearchOnAdd": "clearSearchOnAdd"; "items": "items"; "value": "value"; "id": "id"; "placeholder": "placeholder"; "required": "required"; "errorStateMatcher": "errorStateMatcher"; "ariaLabel": "aria-label"; "ariaLabelledby": "aria-labelledby"; }, { "blurEvent": "blur"; "focusEvent": "focus"; "changeEvent": "change"; "openEvent": "open"; "closeEvent": "close"; "searchEvent": "search"; "clearEvent": "clear"; "addEvent": "add"; "removeEvent": "remove"; "scroll": "scroll"; "scrollToEnd": "scrollToEnd"; }, ["optionTemplate", "optgroupTemplate", "labelTemplate", "multiLabelTemplate", "headerTemplate", "footerTemplate", "notFoundTemplate", "typeToSearchTemplate", "loadingTextTemplate", "tagTemplate", "loadingSpinnerTemplate", "mtxOptions"], never, false>;
226
247
  }
227
248
  export {};
@@ -7,7 +7,7 @@
7
7
 
8
8
  .mtx-split {
9
9
  > .mtx-split-gutter {
10
- background-color: rgba(theming.get-color-from-palette($foreground, divider), .12);
10
+ background-color: theming.get-color-from-palette($foreground, divider, .12);
11
11
 
12
12
  &:hover {
13
13
  background-color: theming.get-color-from-palette(map.get($config, primary), text);
@@ -1,3 +1,4 @@
1
+ import { ThemePalette } from '@angular/material/core';
1
2
  import { MtxSplitPaneDirective } from './split-pane.directive';
2
3
  export interface MtxSplitPoint {
3
4
  x: number;
@@ -38,3 +39,14 @@ export interface MtxSplitOutputData {
38
39
  sizes: MtxSplitOutputAreaSizes;
39
40
  }
40
41
  export declare type MtxSplitOutputAreaSizes = Array<number | '*'>;
42
+ export interface MtxSplitDefaultOptions {
43
+ color?: ThemePalette;
44
+ dir?: 'ltr' | 'rtl';
45
+ direction?: 'horizontal' | 'vertical';
46
+ unit?: 'percent' | 'pixel';
47
+ gutterDblClickDuration?: number;
48
+ gutterSize?: number;
49
+ gutterStep?: number;
50
+ restrictMove?: boolean;
51
+ useTransition?: boolean;
52
+ }
@@ -1,9 +1,11 @@
1
- import { ChangeDetectorRef, Renderer2, AfterViewInit, OnDestroy, ElementRef, NgZone, EventEmitter } from '@angular/core';
1
+ import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, InjectionToken, NgZone, OnDestroy, Renderer2 } from '@angular/core';
2
2
  import { CanColor } from '@angular/material/core';
3
3
  import { Observable } from 'rxjs';
4
- import { MtxSplitArea, MtxSplitOutputData, MtxSplitOutputAreaSizes } from './interface';
4
+ import { MtxSplitArea, MtxSplitDefaultOptions, MtxSplitOutputAreaSizes, MtxSplitOutputData } from './interface';
5
5
  import { MtxSplitPaneDirective } from './split-pane.directive';
6
6
  import * as i0 from "@angular/core";
7
+ /** Injection token that can be used to specify default split options. */
8
+ export declare const MTX_SPLIT_DEFAULT_OPTIONS: InjectionToken<MtxSplitDefaultOptions>;
7
9
  /** @docs-private */
8
10
  declare const _MtxSplitComponentBase: import("@angular/material/core")._Constructor<CanColor> & import("@angular/material/core")._AbstractConstructor<CanColor> & {
9
11
  new (_elementRef: ElementRef): {
@@ -44,6 +46,7 @@ export declare class MtxSplitComponent extends _MtxSplitComponentBase implements
44
46
  private elRef;
45
47
  private cdRef;
46
48
  private renderer;
49
+ protected _defaultOptions?: MtxSplitDefaultOptions | undefined;
47
50
  private _direction;
48
51
  set direction(v: 'horizontal' | 'vertical');
49
52
  get direction(): 'horizontal' | 'vertical';
@@ -87,7 +90,7 @@ export declare class MtxSplitComponent extends _MtxSplitComponentBase implements
87
90
  readonly displayedAreas: Array<MtxSplitArea>;
88
91
  private readonly hidedAreas;
89
92
  private gutterEls;
90
- constructor(ngZone: NgZone, elRef: ElementRef, cdRef: ChangeDetectorRef, renderer: Renderer2);
93
+ constructor(ngZone: NgZone, elRef: ElementRef, cdRef: ChangeDetectorRef, renderer: Renderer2, _defaultOptions?: MtxSplitDefaultOptions | undefined);
91
94
  ngAfterViewInit(): void;
92
95
  private getNbGutters;
93
96
  addArea(component: MtxSplitPaneDirective): void;
@@ -106,7 +109,7 @@ export declare class MtxSplitComponent extends _MtxSplitComponentBase implements
106
109
  private stopDragging;
107
110
  notify(type: 'start' | 'progress' | 'end' | 'click' | 'dblclick' | 'transitionEnd', gutterNum: number): void;
108
111
  ngOnDestroy(): void;
109
- static ɵfac: i0.ɵɵFactoryDeclaration<MtxSplitComponent, never>;
112
+ static ɵfac: i0.ɵɵFactoryDeclaration<MtxSplitComponent, [null, null, null, null, { optional: true; }]>;
110
113
  static ɵcmp: i0.ɵɵComponentDeclaration<MtxSplitComponent, "mtx-split", ["mtxSplit"], { "color": "color"; "direction": "direction"; "unit": "unit"; "gutterSize": "gutterSize"; "gutterStep": "gutterStep"; "restrictMove": "restrictMove"; "useTransition": "useTransition"; "disabled": "disabled"; "dir": "dir"; "gutterDblClickDuration": "gutterDblClickDuration"; }, { "dragStart": "dragStart"; "dragEnd": "dragEnd"; "gutterClick": "gutterClick"; "gutterDblClick": "gutterDblClick"; "transitionEnd": "transitionEnd"; }, never, ["*"], false>;
111
114
  }
112
115
  export {};
@@ -4,9 +4,10 @@ import * as i2 from "@angular/cdk/a11y";
4
4
  import * as i3 from "@angular/common";
5
5
  import * as i4 from "@angular/cdk/overlay";
6
6
  import * as i5 from "@angular/material/core";
7
- import * as i6 from "@angular/cdk/scrolling";
7
+ import * as i6 from "@ng-matero/extensions/core";
8
+ import * as i7 from "@angular/cdk/scrolling";
8
9
  export declare class MtxTooltipModule {
9
10
  static ɵfac: i0.ɵɵFactoryDeclaration<MtxTooltipModule, never>;
10
- static ɵmod: i0.ɵɵNgModuleDeclaration<MtxTooltipModule, [typeof i1.MtxTooltip, typeof i1.TooltipComponent], [typeof i2.A11yModule, typeof i3.CommonModule, typeof i4.OverlayModule, typeof i5.MatCommonModule], [typeof i1.MtxTooltip, typeof i1.TooltipComponent, typeof i5.MatCommonModule, typeof i6.CdkScrollableModule]>;
11
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MtxTooltipModule, [typeof i1.MtxTooltip, typeof i1.TooltipComponent], [typeof i2.A11yModule, typeof i3.CommonModule, typeof i4.OverlayModule, typeof i5.MatCommonModule, typeof i6.MtxPipesModule], [typeof i1.MtxTooltip, typeof i1.TooltipComponent, typeof i5.MatCommonModule, typeof i7.CdkScrollableModule]>;
11
12
  static ɵinj: i0.ɵɵInjectorDeclaration<MtxTooltipModule>;
12
13
  }
@@ -104,6 +104,10 @@ export declare class MtxTooltip implements OnDestroy, AfterViewInit {
104
104
  get message(): string | TemplateRef<any>;
105
105
  set message(value: string | TemplateRef<any>);
106
106
  private _message;
107
+ /** Context to be passed to the tooltip. */
108
+ get tooltipContext(): any;
109
+ set tooltipContext(value: any);
110
+ private _tooltipContext;
107
111
  /** Classes to be passed to the tooltip. Supports the same syntax as `ngClass`. */
108
112
  get tooltipClass(): string | string[] | Set<string> | {
109
113
  [key: string]: any;
@@ -157,6 +161,8 @@ export declare class MtxTooltip implements OnDestroy, AfterViewInit {
157
161
  };
158
162
  /** Updates the tooltip message and repositions the overlay according to the new message length */
159
163
  private _updateTooltipMessage;
164
+ /** Updates the tooltip context */
165
+ private _setTooltipContext;
160
166
  /** Updates the tooltip class */
161
167
  private _setTooltipClass;
162
168
  /** Inverts an overlay position. */
@@ -172,7 +178,7 @@ export declare class MtxTooltip implements OnDestroy, AfterViewInit {
172
178
  static ngAcceptInputType_hideDelay: NumberInput;
173
179
  static ngAcceptInputType_showDelay: NumberInput;
174
180
  static ɵfac: i0.ɵɵFactoryDeclaration<MtxTooltip, [null, null, null, null, null, null, null, null, null, { optional: true; }, { optional: true; }]>;
175
- static ɵdir: i0.ɵɵDirectiveDeclaration<MtxTooltip, "[mtxTooltip]", ["mtxTooltip"], { "position": "mtxTooltipPosition"; "disabled": "mtxTooltipDisabled"; "showDelay": "mtxTooltipShowDelay"; "hideDelay": "mtxTooltipHideDelay"; "touchGestures": "mtxTooltipTouchGestures"; "message": "mtxTooltip"; "tooltipClass": "mtxTooltipClass"; }, {}, never, never, false>;
181
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MtxTooltip, "[mtxTooltip]", ["mtxTooltip"], { "position": "mtxTooltipPosition"; "disabled": "mtxTooltipDisabled"; "showDelay": "mtxTooltipShowDelay"; "hideDelay": "mtxTooltipHideDelay"; "touchGestures": "mtxTooltipTouchGestures"; "message": "mtxTooltip"; "tooltipContext": "mtxTooltipContext"; "tooltipClass": "mtxTooltipClass"; }, {}, never, never, false>;
176
182
  }
177
183
  /**
178
184
  * Internal component that wraps the tooltip's content.
@@ -183,6 +189,8 @@ export declare class TooltipComponent implements OnDestroy {
183
189
  private _breakpointObserver;
184
190
  /** Message to display in the tooltip */
185
191
  message: string | TemplateRef<any>;
192
+ /** Context to be added to the tooltip */
193
+ tooltipContext: any;
186
194
  /** Classes to be added to the tooltip. Supports the same syntax as `ngClass`. */
187
195
  tooltipClass: string | string[] | Set<string> | {
188
196
  [key: string]: any;
@@ -199,7 +207,6 @@ export declare class TooltipComponent implements OnDestroy {
199
207
  private readonly _onHide;
200
208
  /** Stream that emits whether the user has a handset-sized display. */
201
209
  _isHandset: Observable<BreakpointState>;
202
- _isTemplateRef(obj: any): boolean;
203
210
  constructor(_changeDetectorRef: ChangeDetectorRef, _breakpointObserver: BreakpointObserver);
204
211
  /**
205
212
  * Shows the tooltip with an animation originating from the provided origin
package/_all-theme.scss DELETED
@@ -1,47 +0,0 @@
1
- // Import all the theming functionality.
2
- @use './alert/alert-theme';
3
- @use './colorpicker/colorpicker-theme';
4
- @use './datetimepicker/datetimepicker-theme';
5
- @use './drawer/drawer-theme';
6
- @use './grid/grid-theme';
7
- @use './loader/loader-theme';
8
- @use './popover/popover-theme';
9
- @use './progress/progress-theme';
10
- @use './select/select-theme';
11
- @use './slider/slider-theme';
12
- @use './split/split-theme';
13
- @use './tooltip/tooltip-theme';
14
- @use './form-group/form-group-theme';
15
- @use './text3d/text3d-theme';
16
-
17
- // Create a theme.
18
- @mixin all-component-themes($theme) {
19
- @include alert-theme.theme($theme);
20
- @include colorpicker-theme.theme($theme);
21
- @include datetimepicker-theme.theme($theme);
22
- @include drawer-theme.theme($theme);
23
- @include grid-theme.theme($theme);
24
- @include loader-theme.theme($theme);
25
- @include popover-theme.theme($theme);
26
- @include progress-theme.theme($theme);
27
- @include select-theme.theme($theme);
28
- @include slider-theme.theme($theme);
29
- @include split-theme.theme($theme);
30
- @include tooltip-theme.theme($theme);
31
- }
32
-
33
- // @deprecated Use `all-component-themes`.
34
- @mixin material-extensions-theme($theme) {
35
- @include all-component-themes($theme);
36
- }
37
-
38
- // Create a experimental theme.
39
- @mixin all-experimental-component-themes($theme) {
40
- @include form-group-theme.theme($theme);
41
- @include text3d-theme.theme($theme);
42
- }
43
-
44
- // @deprecated Use `all-experimental-component-themes`.
45
- @mixin material-extensions-experimental-theme($theme) {
46
- @include all-experimental-component-themes($theme);
47
- }