@ng-matero/extensions 14.6.3 → 15.0.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/README.md +0 -1
- package/_index.scss +3 -4
- package/_theming.scss +3 -4
- package/alert/_alert-theme.import.scss +1 -1
- package/alert/_alert-theme.scss +2 -2
- package/alert/{alert.module.d.ts → alert-module.d.ts} +2 -2
- package/alert/{alert.component.d.ts → alert.d.ts} +4 -4
- package/alert/{alert.component.scss → alert.scss} +0 -0
- package/alert/public-api.d.ts +2 -2
- package/button/button-loading.d.ts +25 -0
- package/button/button-loading.scss +5 -4
- package/button/{button.module.d.ts → button-module.d.ts} +2 -2
- package/button/public-api.d.ts +2 -2
- package/checkbox-group/{checkbox-group.module.d.ts → checkbox-group-module.d.ts} +2 -2
- package/checkbox-group/{checkbox-group.component.d.ts → checkbox-group.d.ts} +4 -4
- package/checkbox-group/checkbox-group.scss +0 -0
- package/checkbox-group/{checkbox-group.interface.d.ts → interfaces.d.ts} +0 -0
- package/checkbox-group/public-api.d.ts +3 -3
- package/colorpicker/_colorpicker-theme.import.scss +1 -1
- package/colorpicker/_colorpicker-theme.scss +2 -2
- package/colorpicker/colorpicker-input.d.ts +1 -1
- package/colorpicker/colorpicker-toggle.d.ts +2 -2
- package/colorpicker/colorpicker.d.ts +2 -2
- package/column-resize/column-resize-directives/column-resize-flex.d.ts +1 -1
- package/column-resize/column-resize-directives/column-resize.d.ts +1 -1
- package/column-resize/column-resize.d.ts +1 -1
- package/column-resize/overlay-handle.d.ts +1 -1
- package/column-resize/resizable.d.ts +1 -1
- package/core/color/_all-color.scss +28 -0
- package/core/density/_all-density.scss +24 -0
- package/core/style/_elevation.scss +20 -126
- package/core/style/_private.scss +9 -18
- package/core/style/_variables.scss +1 -1
- package/core/style/_vendor-prefixes.scss +8 -21
- package/core/theming/_all-theme.scss +38 -0
- package/core/theming/_palette.scss +1 -1
- package/core/theming/_theming.scss +55 -22
- package/core/typography/_typography.scss +195 -17
- package/datetimepicker/_datetimepicker-theme.import.scss +1 -1
- package/datetimepicker/_datetimepicker-theme.scss +3 -4
- package/datetimepicker/calendar-body.d.ts +1 -1
- package/datetimepicker/calendar.d.ts +3 -4
- package/datetimepicker/calendar.scss +3 -0
- package/datetimepicker/clock.d.ts +7 -3
- package/datetimepicker/datetimepicker-input.d.ts +1 -1
- package/datetimepicker/datetimepicker-toggle.d.ts +2 -2
- package/datetimepicker/datetimepicker.d.ts +2 -2
- package/datetimepicker/month-view.d.ts +1 -1
- package/datetimepicker/multi-year-view.d.ts +1 -1
- package/datetimepicker/time.d.ts +2 -2
- package/datetimepicker/time.scss +1 -1
- package/datetimepicker/year-view.d.ts +1 -1
- package/dialog/dialog-container.d.ts +12 -0
- package/dialog/dialog-container.scss +48 -0
- package/dialog/{dialog.module.d.ts → dialog-module.d.ts} +2 -2
- package/dialog/public-api.d.ts +2 -2
- package/drawer/_drawer-theme.import.scss +1 -1
- package/drawer/_drawer-theme.scss +2 -2
- package/drawer/drawer-container.d.ts +1 -1
- package/esm2020/alert/alert-module.mjs +18 -0
- package/esm2020/alert/alert.mjs +52 -0
- package/esm2020/alert/public-api.mjs +3 -3
- package/esm2020/button/button-loading.mjs +76 -0
- package/esm2020/button/button-module.mjs +20 -0
- package/esm2020/button/public-api.mjs +3 -3
- package/esm2020/checkbox-group/{checkbox-group.module.mjs → checkbox-group-module.mjs} +8 -8
- package/esm2020/checkbox-group/checkbox-group.mjs +234 -0
- package/esm2020/checkbox-group/interfaces.mjs +2 -0
- package/esm2020/checkbox-group/public-api.mjs +4 -4
- package/esm2020/colorpicker/colorpicker-input.mjs +3 -3
- package/esm2020/colorpicker/colorpicker-module.mjs +4 -4
- package/esm2020/colorpicker/colorpicker-toggle.mjs +6 -6
- package/esm2020/colorpicker/colorpicker.mjs +6 -6
- package/esm2020/column-resize/column-resize-directives/column-resize-flex.mjs +3 -3
- package/esm2020/column-resize/column-resize-directives/column-resize.mjs +3 -3
- package/esm2020/column-resize/column-resize-module.mjs +4 -4
- package/esm2020/column-resize/column-resize-notifier.mjs +7 -7
- package/esm2020/column-resize/column-resize.mjs +3 -3
- package/esm2020/column-resize/column-size-store.mjs +3 -3
- package/esm2020/column-resize/event-dispatcher.mjs +3 -3
- package/esm2020/column-resize/overlay-handle.mjs +3 -3
- package/esm2020/column-resize/resizable.mjs +3 -3
- package/esm2020/column-resize/resize-strategy.mjs +9 -9
- package/esm2020/core/datetime/datetime.module.mjs +8 -8
- package/esm2020/core/datetime/native-datetime-adapter.mjs +3 -3
- package/esm2020/core/pipes/pipes.module.mjs +4 -4
- package/esm2020/core/pipes/to-observable.pipe.mjs +3 -3
- package/esm2020/datetimepicker/calendar-body.mjs +3 -3
- package/esm2020/datetimepicker/calendar.mjs +17 -15
- package/esm2020/datetimepicker/clock.mjs +41 -22
- package/esm2020/datetimepicker/datetimepicker-input.mjs +3 -3
- package/esm2020/datetimepicker/datetimepicker-intl.mjs +3 -3
- package/esm2020/datetimepicker/datetimepicker-module.mjs +4 -4
- package/esm2020/datetimepicker/datetimepicker-toggle.mjs +6 -6
- package/esm2020/datetimepicker/datetimepicker.mjs +9 -8
- package/esm2020/datetimepicker/month-view.mjs +3 -3
- package/esm2020/datetimepicker/multi-year-view.mjs +3 -3
- package/esm2020/datetimepicker/time.mjs +16 -14
- package/esm2020/datetimepicker/year-view.mjs +3 -3
- package/esm2020/dialog/dialog-container.mjs +35 -0
- package/esm2020/dialog/{dialog.module.mjs → dialog-module.mjs} +8 -8
- package/esm2020/dialog/dialog.mjs +7 -7
- package/esm2020/dialog/public-api.mjs +3 -3
- package/esm2020/drawer/drawer-container.mjs +3 -3
- package/esm2020/drawer/drawer-module.mjs +4 -4
- package/esm2020/drawer/drawer.mjs +4 -4
- package/esm2020/grid/cell.mjs +130 -0
- package/esm2020/grid/column-menu.mjs +112 -0
- package/esm2020/grid/column-resize/column-resize-directives/column-resize-flex.mjs +3 -3
- package/esm2020/grid/column-resize/column-resize-directives/column-resize.mjs +3 -3
- package/esm2020/grid/column-resize/column-resize-module.mjs +8 -8
- package/esm2020/grid/column-resize/overlay-handle.mjs +3 -3
- package/esm2020/grid/column-resize/resizable-directives/resizable.mjs +3 -3
- package/esm2020/grid/column-resize/resize-strategy.mjs +3 -3
- package/esm2020/grid/expansion-toggle.mjs +64 -0
- package/esm2020/grid/grid-module.mjs +115 -0
- package/esm2020/grid/grid-utils.mjs +44 -0
- package/esm2020/grid/grid.mjs +619 -0
- package/esm2020/grid/interfaces.mjs +2 -0
- package/esm2020/grid/public-api.mjs +8 -8
- package/esm2020/loader/loader-module.mjs +20 -0
- package/esm2020/loader/loader.mjs +69 -0
- package/esm2020/loader/public-api.mjs +3 -3
- package/esm2020/popover/popover-content.mjs +6 -6
- package/esm2020/popover/popover-module.mjs +4 -4
- package/esm2020/popover/popover-target.mjs +3 -3
- package/esm2020/popover/popover-trigger.mjs +3 -3
- package/esm2020/popover/popover.mjs +3 -3
- package/esm2020/progress/progress-module.mjs +18 -0
- package/esm2020/progress/progress.mjs +55 -0
- package/esm2020/progress/public-api.mjs +3 -3
- package/esm2020/select/option.mjs +57 -0
- package/esm2020/select/public-api.mjs +5 -5
- package/esm2020/select/select-module.mjs +74 -0
- package/esm2020/select/select.mjs +550 -0
- package/esm2020/select/templates.mjs +124 -0
- package/esm2020/slider/slider-module.mjs +4 -4
- package/esm2020/slider/slider.mjs +4 -4
- package/esm2020/split/interfaces.mjs +2 -0
- package/esm2020/split/public-api.mjs +5 -5
- package/esm2020/split/split-module.mjs +19 -0
- package/esm2020/split/split-pane.mjs +149 -0
- package/esm2020/split/split.mjs +619 -0
- package/esm2020/split/utils.mjs +4 -4
- package/esm2020/tooltip/tooltip-module.mjs +4 -4
- package/esm2020/tooltip/tooltip.mjs +6 -6
- package/fesm2015/mtxAlert.mjs +12 -11
- package/fesm2015/mtxAlert.mjs.map +1 -1
- package/fesm2015/mtxButton.mjs +31 -31
- package/fesm2015/mtxButton.mjs.map +1 -1
- package/fesm2015/mtxCheckboxGroup.mjs +16 -15
- package/fesm2015/mtxCheckboxGroup.mjs.map +1 -1
- package/fesm2015/mtxColorpicker.mjs +20 -19
- package/fesm2015/mtxColorpicker.mjs.map +1 -1
- package/fesm2015/mtxColumnResize.mjs +41 -40
- package/fesm2015/mtxColumnResize.mjs.map +1 -1
- package/fesm2015/mtxCore.mjs +19 -18
- package/fesm2015/mtxDatetimepicker.mjs +107 -83
- package/fesm2015/mtxDatetimepicker.mjs.map +1 -1
- package/fesm2015/mtxDialog.mjs +20 -17
- package/fesm2015/mtxDialog.mjs.map +1 -1
- package/fesm2015/mtxDrawer.mjs +11 -10
- package/fesm2015/mtxDrawer.mjs.map +1 -1
- package/fesm2015/mtxGrid.mjs +91 -90
- package/fesm2015/mtxGrid.mjs.map +1 -1
- package/fesm2015/mtxLoader.mjs +13 -12
- package/fesm2015/mtxLoader.mjs.map +1 -1
- package/fesm2015/mtxPopover.mjs +20 -19
- package/fesm2015/mtxProgress.mjs +12 -11
- package/fesm2015/mtxProgress.mjs.map +1 -1
- package/fesm2015/mtxSelect.mjs +123 -121
- package/fesm2015/mtxSelect.mjs.map +1 -1
- package/fesm2015/mtxSlider.mjs +9 -8
- package/fesm2015/mtxSlider.mjs.map +1 -1
- package/fesm2015/mtxSplit.mjs +19 -18
- package/fesm2015/mtxSplit.mjs.map +1 -1
- package/fesm2015/mtxTooltip.mjs +11 -10
- package/fesm2015/ng-matero-extensions.mjs +1 -0
- package/fesm2020/mtxAlert.mjs +12 -11
- package/fesm2020/mtxAlert.mjs.map +1 -1
- package/fesm2020/mtxButton.mjs +31 -31
- package/fesm2020/mtxButton.mjs.map +1 -1
- package/fesm2020/mtxCheckboxGroup.mjs +16 -15
- package/fesm2020/mtxCheckboxGroup.mjs.map +1 -1
- package/fesm2020/mtxColorpicker.mjs +20 -19
- package/fesm2020/mtxColorpicker.mjs.map +1 -1
- package/fesm2020/mtxColumnResize.mjs +41 -40
- package/fesm2020/mtxColumnResize.mjs.map +1 -1
- package/fesm2020/mtxCore.mjs +19 -18
- package/fesm2020/mtxDatetimepicker.mjs +107 -83
- package/fesm2020/mtxDatetimepicker.mjs.map +1 -1
- package/fesm2020/mtxDialog.mjs +20 -17
- package/fesm2020/mtxDialog.mjs.map +1 -1
- package/fesm2020/mtxDrawer.mjs +11 -10
- package/fesm2020/mtxDrawer.mjs.map +1 -1
- package/fesm2020/mtxGrid.mjs +91 -90
- package/fesm2020/mtxGrid.mjs.map +1 -1
- package/fesm2020/mtxLoader.mjs +13 -12
- package/fesm2020/mtxLoader.mjs.map +1 -1
- package/fesm2020/mtxPopover.mjs +20 -19
- package/fesm2020/mtxProgress.mjs +12 -11
- package/fesm2020/mtxProgress.mjs.map +1 -1
- package/fesm2020/mtxSelect.mjs +123 -121
- package/fesm2020/mtxSelect.mjs.map +1 -1
- package/fesm2020/mtxSlider.mjs +9 -8
- package/fesm2020/mtxSlider.mjs.map +1 -1
- package/fesm2020/mtxSplit.mjs +19 -18
- package/fesm2020/mtxSplit.mjs.map +1 -1
- package/fesm2020/mtxTooltip.mjs +11 -10
- package/fesm2020/ng-matero-extensions.mjs +1 -0
- package/grid/_grid-theme.import.scss +1 -1
- package/grid/_grid-theme.scss +16 -16
- package/grid/{cell.component.d.ts → cell.d.ts} +8 -8
- package/grid/{cell.component.scss → cell.scss} +0 -0
- package/grid/{column-menu.component.d.ts → column-menu.d.ts} +4 -4
- package/grid/{column-menu.component.scss → column-menu.scss} +6 -10
- package/grid/column-resize/_column-resize.scss +9 -9
- package/grid/column-resize/column-resize-directives/column-resize-flex.d.ts +1 -1
- package/grid/column-resize/column-resize-directives/column-resize.d.ts +1 -1
- package/grid/column-resize/overlay-handle.d.ts +1 -1
- package/grid/column-resize/resizable-directives/resizable.d.ts +1 -1
- package/grid/{expansion-toggle.directive.d.ts → expansion-toggle.d.ts} +4 -4
- package/grid/{grid.module.d.ts → grid-module.d.ts} +5 -5
- package/grid/{grid.service.d.ts → grid-utils.d.ts} +4 -4
- package/grid/{grid.component.d.ts → grid.d.ts} +18 -17
- package/grid/{grid.component.scss → grid.scss} +17 -29
- package/grid/{grid.interface.d.ts → interfaces.d.ts} +0 -6
- package/grid/public-api.d.ts +7 -7
- package/loader/_loader-theme.import.scss +1 -1
- package/loader/_loader-theme.scss +2 -2
- package/loader/{loader.module.d.ts → loader-module.d.ts} +2 -2
- package/loader/{loader.component.d.ts → loader.d.ts} +3 -3
- package/loader/{loader.component.scss → loader.scss} +2 -2
- package/loader/public-api.d.ts +2 -2
- package/package.json +8 -24
- package/popover/_popover-theme.import.scss +1 -1
- package/popover/_popover-theme.scss +2 -2
- package/popover/popover-content.d.ts +2 -2
- package/popover/popover-target.d.ts +1 -1
- package/popover/popover-trigger.d.ts +1 -1
- package/popover/popover.d.ts +1 -1
- package/progress/_progress-theme.import.scss +1 -1
- package/progress/_progress-theme.scss +2 -2
- package/progress/{progress.module.d.ts → progress-module.d.ts} +2 -2
- package/progress/{progress.component.d.ts → progress.d.ts} +3 -3
- package/progress/{progress.component.scss → progress.scss} +0 -0
- package/progress/public-api.d.ts +2 -2
- package/select/_select-density.scss +68 -0
- package/select/_select-theme.import.scss +2 -1
- package/select/_select-theme.scss +6 -2
- package/select/{option.component.d.ts → option.d.ts} +3 -3
- package/select/public-api.d.ts +4 -4
- package/select/select-module.d.ts +12 -0
- package/select/{select.component.d.ts → select.d.ts} +5 -5
- package/select/{select.component.scss → select.scss} +14 -22
- package/select/{templates.directive.d.ts → templates.d.ts} +33 -33
- package/slider/_slider-theme.import.scss +1 -1
- package/slider/_slider-theme.scss +3 -4
- package/slider/slider.d.ts +1 -1
- package/slider/slider.scss +3 -3
- package/split/_split-theme.import.scss +1 -1
- package/split/_split-theme.scss +2 -2
- package/split/{interface.d.ts → interfaces.d.ts} +2 -2
- package/split/public-api.d.ts +4 -4
- package/split/{split.module.d.ts → split-module.d.ts} +3 -3
- package/split/{split-pane.directive.d.ts → split-pane.d.ts} +5 -5
- package/split/{split.component.d.ts → split.d.ts} +11 -11
- package/split/{split.component.scss → split.scss} +0 -0
- package/split/utils.d.ts +4 -1
- package/tooltip/_tooltip-theme.import.scss +1 -1
- package/tooltip/_tooltip-theme.scss +3 -4
- package/tooltip/tooltip.d.ts +2 -2
- package/_all-color.scss +0 -47
- package/_all-theme.scss +0 -47
- package/button/button-loading.directive.d.ts +0 -26
- package/checkbox-group/checkbox-group.component.scss +0 -12
- package/core/density/private/_compatibility.scss +0 -74
- package/dialog/dialog.component.d.ts +0 -12
- package/dialog/dialog.component.scss +0 -27
- package/esm2020/alert/alert.component.mjs +0 -52
- package/esm2020/alert/alert.module.mjs +0 -18
- package/esm2020/button/button-loading.directive.mjs +0 -77
- package/esm2020/button/button.module.mjs +0 -20
- package/esm2020/checkbox-group/checkbox-group.component.mjs +0 -234
- package/esm2020/checkbox-group/checkbox-group.interface.mjs +0 -2
- package/esm2020/dialog/dialog.component.mjs +0 -33
- package/esm2020/form-group/form-group.component.mjs +0 -37
- package/esm2020/form-group/form-group.module.mjs +0 -18
- package/esm2020/form-group/mtxFormGroup.mjs +0 -5
- package/esm2020/form-group/public-api.mjs +0 -3
- package/esm2020/grid/cell.component.mjs +0 -130
- package/esm2020/grid/column-menu.component.mjs +0 -112
- package/esm2020/grid/expansion-toggle.directive.mjs +0 -64
- package/esm2020/grid/grid.component.mjs +0 -619
- package/esm2020/grid/grid.interface.mjs +0 -2
- package/esm2020/grid/grid.module.mjs +0 -115
- package/esm2020/grid/grid.service.mjs +0 -44
- package/esm2020/loader/loader.component.mjs +0 -69
- package/esm2020/loader/loader.module.mjs +0 -20
- package/esm2020/progress/progress.component.mjs +0 -55
- package/esm2020/progress/progress.module.mjs +0 -18
- package/esm2020/select/option.component.mjs +0 -57
- package/esm2020/select/select.component.mjs +0 -549
- package/esm2020/select/select.module.mjs +0 -74
- package/esm2020/select/templates.directive.mjs +0 -124
- package/esm2020/split/interface.mjs +0 -2
- package/esm2020/split/split-pane.directive.mjs +0 -149
- package/esm2020/split/split.component.mjs +0 -619
- package/esm2020/split/split.module.mjs +0 -19
- package/esm2020/text3d/mtxText3d.mjs +0 -5
- package/esm2020/text3d/public-api.mjs +0 -3
- package/esm2020/text3d/text3d.component.mjs +0 -45
- package/esm2020/text3d/text3d.module.mjs +0 -18
- package/fesm2015/mtxFormGroup.mjs +0 -59
- package/fesm2015/mtxFormGroup.mjs.map +0 -1
- package/fesm2015/mtxText3d.mjs +0 -67
- package/fesm2015/mtxText3d.mjs.map +0 -1
- package/fesm2020/mtxFormGroup.mjs +0 -59
- package/fesm2020/mtxFormGroup.mjs.map +0 -1
- package/fesm2020/mtxText3d.mjs +0 -67
- package/fesm2020/mtxText3d.mjs.map +0 -1
- package/form-group/_form-group-theme.import.scss +0 -2
- package/form-group/_form-group-theme.scss +0 -95
- package/form-group/form-group.component.d.ts +0 -15
- package/form-group/form-group.component.scss +0 -103
- package/form-group/form-group.module.d.ts +0 -8
- package/form-group/index.d.ts +0 -5
- package/form-group/public-api.d.ts +0 -2
- package/select/select.module.d.ts +0 -12
- package/text3d/_text3d-theme.import.scss +0 -2
- package/text3d/_text3d-theme.scss +0 -48
- package/text3d/index.d.ts +0 -5
- package/text3d/public-api.d.ts +0 -2
- package/text3d/text3d.component.d.ts +0 -14
- package/text3d/text3d.component.scss +0 -21
- package/text3d/text3d.module.d.ts +0 -8
|
@@ -34,12 +34,6 @@
|
|
|
34
34
|
transition: transform 250ms cubic-bezier(0, 0, .2, 1);
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
|
-
|
|
38
|
-
&.cdk-drop-list {
|
|
39
|
-
.mtx-grid-column-menu-item-label {
|
|
40
|
-
padding: 0 4px;
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
37
|
}
|
|
44
38
|
|
|
45
39
|
.mtx-grid-column-menu-item {
|
|
@@ -71,10 +65,10 @@
|
|
|
71
65
|
}
|
|
72
66
|
}
|
|
73
67
|
|
|
74
|
-
.mtx-grid-column-pin-button.mat-icon-button {
|
|
75
|
-
width:
|
|
76
|
-
height:
|
|
77
|
-
|
|
68
|
+
.mtx-grid-column-pin-button.mat-mdc-icon-button {
|
|
69
|
+
width: 40px;
|
|
70
|
+
height: 40px;
|
|
71
|
+
padding: 8px;
|
|
78
72
|
}
|
|
79
73
|
|
|
80
74
|
.mtx-grid-column-pin-option.mat-menu-item {
|
|
@@ -88,10 +82,12 @@
|
|
|
88
82
|
width: 20px;
|
|
89
83
|
height: 20px;
|
|
90
84
|
line-height: 20px;
|
|
85
|
+
vertical-align: middle;
|
|
91
86
|
}
|
|
92
87
|
|
|
93
88
|
.mtx-grid-column-pin-option-text {
|
|
94
89
|
padding: 0 8px;
|
|
90
|
+
vertical-align: middle;
|
|
95
91
|
}
|
|
96
92
|
|
|
97
93
|
.mtx-grid-column-drag-handle-icon:hover {
|
|
@@ -18,14 +18,14 @@
|
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
.mat-column-resize-flex {
|
|
21
|
-
.mat-header-cell,
|
|
22
|
-
.mat-cell {
|
|
21
|
+
.mat-mdc-header-cell,
|
|
22
|
+
.mat-mdc-cell {
|
|
23
23
|
box-sizing: border-box;
|
|
24
24
|
min-width: 32px;
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
27
|
|
|
28
|
-
.mat-header-cell {
|
|
28
|
+
.mat-mdc-header-cell {
|
|
29
29
|
position: relative;
|
|
30
30
|
}
|
|
31
31
|
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
box-sizing: border-box;
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
-
.mat-header-cell:not(.mat-resizable)::after,
|
|
36
|
+
.mat-mdc-header-cell:not(.mat-resizable)::after,
|
|
37
37
|
.mat-resizable-handle {
|
|
38
38
|
position: absolute;
|
|
39
39
|
bottom: 0;
|
|
@@ -46,18 +46,18 @@
|
|
|
46
46
|
variables.$swift-ease-in-timing-function;
|
|
47
47
|
}
|
|
48
48
|
|
|
49
|
-
.mat-header-cell:not(.mat-resizable)::after {
|
|
49
|
+
.mat-mdc-header-cell:not(.mat-resizable)::after {
|
|
50
50
|
content: '';
|
|
51
51
|
}
|
|
52
52
|
|
|
53
|
-
[dir='rtl'] .mat-header-cell:not(.mat-resizable)::after,
|
|
53
|
+
[dir='rtl'] .mat-mdc-header-cell:not(.mat-resizable)::after,
|
|
54
54
|
[dir='rtl'] .mat-resizable-handle {
|
|
55
55
|
left: 0;
|
|
56
56
|
right: auto;
|
|
57
57
|
}
|
|
58
58
|
|
|
59
|
-
.mat-header-row.cdk-column-resize-hover-or-active {
|
|
60
|
-
.mat-header-cell:not(.mat-resizable)::after {
|
|
59
|
+
.mat-mdc-header-row.cdk-column-resize-hover-or-active {
|
|
60
|
+
.mat-mdc-header-cell:not(.mat-resizable)::after {
|
|
61
61
|
background: $non-resizable-hover-divider;
|
|
62
62
|
}
|
|
63
63
|
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
}
|
|
73
73
|
|
|
74
74
|
.mat-resizable-handle:focus,
|
|
75
|
-
.mat-header-row.cdk-column-resize-hover-or-active .mat-resizable-handle:focus {
|
|
75
|
+
.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-resizable-handle:focus {
|
|
76
76
|
background: $resizable-active-divider;
|
|
77
77
|
outline: none;
|
|
78
78
|
}
|
|
@@ -21,5 +21,5 @@ export declare class MatColumnResizeFlex extends AbstractMatColumnResize {
|
|
|
21
21
|
protected readonly notifier: ColumnResizeNotifierSource;
|
|
22
22
|
constructor(columnResizeNotifier: ColumnResizeNotifier, elementRef: ElementRef<HTMLElement>, eventDispatcher: HeaderRowEventDispatcher, ngZone: NgZone, notifier: ColumnResizeNotifierSource);
|
|
23
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatColumnResizeFlex, never>;
|
|
24
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatColumnResizeFlex, "mat-table[columnResize]", never, {}, {}, never, never, false>;
|
|
24
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MatColumnResizeFlex, "mat-table[columnResize]", never, {}, {}, never, never, false, never>;
|
|
25
25
|
}
|
|
@@ -21,5 +21,5 @@ export declare class MatColumnResize extends AbstractMatColumnResize {
|
|
|
21
21
|
protected readonly notifier: ColumnResizeNotifierSource;
|
|
22
22
|
constructor(columnResizeNotifier: ColumnResizeNotifier, elementRef: ElementRef<HTMLElement>, eventDispatcher: HeaderRowEventDispatcher, ngZone: NgZone, notifier: ColumnResizeNotifierSource);
|
|
23
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatColumnResize, never>;
|
|
24
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatColumnResize, "table[mat-table][columnResize]", never, {}, {}, never, never, false>;
|
|
24
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MatColumnResize, "table[mat-table][columnResize]", never, {}, {}, never, never, false, never>;
|
|
25
25
|
}
|
|
@@ -28,5 +28,5 @@ export declare class MatColumnResizeOverlayHandle extends ResizeOverlayHandle {
|
|
|
28
28
|
constructor(columnDef: CdkColumnDef, columnResize: ColumnResize, directionality: Directionality, elementRef: ElementRef, eventDispatcher: HeaderRowEventDispatcher, ngZone: NgZone, resizeNotifier: ColumnResizeNotifierSource, resizeRef: ResizeRef, styleScheduler: _CoalescedStyleScheduler, document: any);
|
|
29
29
|
protected updateResizeActive(active: boolean): void;
|
|
30
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatColumnResizeOverlayHandle, never>;
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatColumnResizeOverlayHandle, "ng-component", never, {}, {}, never, never, false>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MatColumnResizeOverlayHandle, "ng-component", never, {}, {}, never, never, false, never>;
|
|
32
32
|
}
|
|
@@ -29,5 +29,5 @@ export declare class MatResizable extends AbstractMatResizable {
|
|
|
29
29
|
protected readonly document: Document;
|
|
30
30
|
constructor(columnDef: CdkColumnDef, columnResize: ColumnResize, directionality: Directionality, document: any, elementRef: ElementRef, eventDispatcher: HeaderRowEventDispatcher, injector: Injector, ngZone: NgZone, overlay: Overlay, resizeNotifier: ColumnResizeNotifierSource, resizeStrategy: ResizeStrategy, styleScheduler: _CoalescedStyleScheduler, viewContainerRef: ViewContainerRef, changeDetectorRef: ChangeDetectorRef);
|
|
31
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatResizable, never>;
|
|
32
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatResizable, "mat-header-cell[resizable], th[mat-header-cell][resizable]", never, { "minWidthPx": "matResizableMinWidthPx"; "maxWidthPx": "matResizableMaxWidthPx"; "resizable": "resizable"; }, {}, never, never, false>;
|
|
32
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MatResizable, "mat-header-cell[resizable], th[mat-header-cell][resizable]", never, { "minWidthPx": "matResizableMinWidthPx"; "maxWidthPx": "matResizableMaxWidthPx"; "resizable": "resizable"; }, {}, never, never, false, never>;
|
|
33
33
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EventEmitter, TemplateRef } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class MtxGridExpansionToggle {
|
|
4
4
|
private _opened;
|
|
5
5
|
private _row;
|
|
6
6
|
private _tplRef;
|
|
@@ -10,10 +10,10 @@ export declare class MtxGridExpansionToggleDirective {
|
|
|
10
10
|
get expanded(): boolean;
|
|
11
11
|
set expandableRow(value: any);
|
|
12
12
|
set template(value: TemplateRef<any>);
|
|
13
|
-
toggleChange: EventEmitter<
|
|
13
|
+
toggleChange: EventEmitter<MtxGridExpansionToggle>;
|
|
14
14
|
constructor();
|
|
15
15
|
onClick(event: MouseEvent): void;
|
|
16
16
|
toggle(): void;
|
|
17
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
18
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxGridExpansionToggle, never>;
|
|
18
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxGridExpansionToggle, "[mtx-grid-expansion-toggle]", never, { "opened": "opened"; "expandableRow": "expandableRow"; "template": "expansionRowTpl"; }, { "openedChange": "openedChange"; "toggleChange": "toggleChange"; }, never, never, false, never>;
|
|
19
19
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./grid
|
|
3
|
-
import * as i2 from "./cell
|
|
4
|
-
import * as i3 from "./column-menu
|
|
5
|
-
import * as i4 from "./expansion-toggle
|
|
2
|
+
import * as i1 from "./grid";
|
|
3
|
+
import * as i2 from "./cell";
|
|
4
|
+
import * as i3 from "./column-menu";
|
|
5
|
+
import * as i4 from "./expansion-toggle";
|
|
6
6
|
import * as i5 from "@angular/common";
|
|
7
7
|
import * as i6 from "@angular/forms";
|
|
8
8
|
import * as i7 from "@angular/material/table";
|
|
@@ -23,6 +23,6 @@ import * as i21 from "@ng-matero/extensions/core";
|
|
|
23
23
|
import * as i22 from "./column-resize/column-resize-module";
|
|
24
24
|
export declare class MtxGridModule {
|
|
25
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtxGridModule, never>;
|
|
26
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MtxGridModule, [typeof i1.
|
|
26
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MtxGridModule, [typeof i1.MtxGrid, typeof i2.MtxGridCell, typeof i3.MtxGridColumnMenu, typeof i4.MtxGridExpansionToggle, typeof i1.MtxGridSelectableCell], [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.MtxGrid, typeof i2.MtxGridCell, typeof i3.MtxGridColumnMenu, typeof i4.MtxGridExpansionToggle, typeof i1.MtxGridSelectableCell, typeof i22.MatColumnResizeModule]>;
|
|
27
27
|
static ɵinj: i0.ɵɵInjectorDeclaration<MtxGridModule>;
|
|
28
28
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { MtxGridColumn } from './
|
|
1
|
+
import { MtxGridColumn } from './interfaces';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class MtxGridUtils {
|
|
4
4
|
constructor();
|
|
5
5
|
/**
|
|
6
6
|
* Get cell value from column key e.g. `a.b.c`
|
|
@@ -19,6 +19,6 @@ export declare class MtxGridService {
|
|
|
19
19
|
* @param str string
|
|
20
20
|
*/
|
|
21
21
|
str2arr(str: string): string[];
|
|
22
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
23
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxGridUtils, never>;
|
|
23
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MtxGridUtils>;
|
|
24
24
|
}
|
|
@@ -4,12 +4,13 @@ import { MatFooterRowDef, MatHeaderRowDef, MatRowDef, MatTable, MatTableDataSour
|
|
|
4
4
|
import { MatPaginator, PageEvent } from '@angular/material/paginator';
|
|
5
5
|
import { Sort, MatSort, SortDirection } from '@angular/material/sort';
|
|
6
6
|
import { ThemePalette } from '@angular/material/core';
|
|
7
|
-
import { MtxGridColumn, MtxGridCellTemplate, MtxGridRowSelectionFormatter, MtxGridRowClassFormatter,
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
7
|
+
import { MtxGridColumn, MtxGridCellTemplate, MtxGridRowSelectionFormatter, MtxGridRowClassFormatter, MtxGridButtonType, MtxGridColumnPinOption } from './interfaces';
|
|
8
|
+
import { MtxGridExpansionToggle } from './expansion-toggle';
|
|
9
|
+
import { MtxGridUtils } from './grid-utils';
|
|
10
|
+
import { MtxGridColumnMenu } from './column-menu';
|
|
10
11
|
import * as i0 from "@angular/core";
|
|
11
|
-
export declare class
|
|
12
|
-
private
|
|
12
|
+
export declare class MtxGrid implements OnChanges, AfterViewInit, OnDestroy {
|
|
13
|
+
private _utils;
|
|
13
14
|
private _changeDetectorRef;
|
|
14
15
|
table: MatTable<any>;
|
|
15
16
|
paginator: MatPaginator;
|
|
@@ -19,7 +20,7 @@ export declare class MtxGridComponent implements OnChanges, AfterViewInit, OnDes
|
|
|
19
20
|
footerRowDefs: QueryList<MatFooterRowDef>;
|
|
20
21
|
columnMenu: MtxGridColumnMenu;
|
|
21
22
|
tableContainer: ElementRef<HTMLDivElement>;
|
|
22
|
-
dataSource: MatTableDataSource<unknown>;
|
|
23
|
+
dataSource: MatTableDataSource<unknown, import("@angular/material/table").MatTableDataSourcePaginator>;
|
|
23
24
|
/** The grid's displayed columns. */
|
|
24
25
|
displayedColumns: string[];
|
|
25
26
|
/** The grid's columns. */
|
|
@@ -182,7 +183,7 @@ export declare class MtxGridComponent implements OnChanges, AfterViewInit, OnDes
|
|
|
182
183
|
showStatusbar: boolean;
|
|
183
184
|
/** The template for the status bar. */
|
|
184
185
|
statusbarTemplate: TemplateRef<any>;
|
|
185
|
-
constructor(
|
|
186
|
+
constructor(_utils: MtxGridUtils, _changeDetectorRef: ChangeDetectorRef);
|
|
186
187
|
detectChanges(): void;
|
|
187
188
|
_isTemplateRef(obj: any): boolean;
|
|
188
189
|
_getColData(data: any[], colDef: MtxGridColumn): any[];
|
|
@@ -194,9 +195,9 @@ export declare class MtxGridComponent implements OnChanges, AfterViewInit, OnDes
|
|
|
194
195
|
_getIndex(index: number, dataIndex: number): number;
|
|
195
196
|
_onSortChange(sort: Sort): void;
|
|
196
197
|
/** Expansion change event */
|
|
197
|
-
_onExpansionChange(expansionRef:
|
|
198
|
+
_onExpansionChange(expansionRef: MtxGridExpansionToggle, rowData: any, column: any, index: number): void;
|
|
198
199
|
/** Cell select event */
|
|
199
|
-
_selectCell(cellRef:
|
|
200
|
+
_selectCell(cellRef: MtxGridSelectableCell, rowData: any, colDef: any): void;
|
|
200
201
|
/** Row select event */
|
|
201
202
|
_selectRow(event: MouseEvent, rowData: any, index: number): void;
|
|
202
203
|
/** Whether the number of selected elements matches the total number of rows. */
|
|
@@ -214,23 +215,23 @@ export declare class MtxGridComponent implements OnChanges, AfterViewInit, OnDes
|
|
|
214
215
|
_onPage(e: PageEvent): void;
|
|
215
216
|
scrollTop(value?: number): number | void;
|
|
216
217
|
scrollLeft(value?: number): number | void;
|
|
217
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
218
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
218
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxGrid, never>;
|
|
219
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MtxGrid, "mtx-grid", ["mtxGrid"], { "displayedColumns": "displayedColumns"; "columns": "columns"; "data": "data"; "length": "length"; "loading": "loading"; "trackBy": "trackBy"; "columnResizable": "columnResizable"; "emptyValuePlaceholder": "emptyValuePlaceholder"; "pageOnFront": "pageOnFront"; "showPaginator": "showPaginator"; "pageDisabled": "pageDisabled"; "showFirstLastButtons": "showFirstLastButtons"; "pageIndex": "pageIndex"; "pageSize": "pageSize"; "pageSizeOptions": "pageSizeOptions"; "hidePageSize": "hidePageSize"; "paginationTemplate": "paginationTemplate"; "sortOnFront": "sortOnFront"; "sortActive": "sortActive"; "sortDirection": "sortDirection"; "sortDisableClear": "sortDisableClear"; "sortDisabled": "sortDisabled"; "sortStart": "sortStart"; "rowHover": "rowHover"; "rowStriped": "rowStriped"; "expandable": "expandable"; "expansionTemplate": "expansionTemplate"; "multiSelectable": "multiSelectable"; "multiSelectionWithClick": "multiSelectionWithClick"; "rowSelected": "rowSelected"; "rowSelectable": "rowSelectable"; "hideRowSelectionCheckbox": "hideRowSelectionCheckbox"; "rowSelectionFormatter": "rowSelectionFormatter"; "rowClassFormatter": "rowClassFormatter"; "cellSelectable": "cellSelectable"; "showToolbar": "showToolbar"; "toolbarTitle": "toolbarTitle"; "toolbarTemplate": "toolbarTemplate"; "columnHideable": "columnHideable"; "columnHideableChecked": "columnHideableChecked"; "columnSortable": "columnSortable"; "columnPinnable": "columnPinnable"; "columnPinOptions": "columnPinOptions"; "showColumnMenuButton": "showColumnMenuButton"; "columnMenuButtonText": "columnMenuButtonText"; "columnMenuButtonType": "columnMenuButtonType"; "columnMenuButtonColor": "columnMenuButtonColor"; "columnMenuButtonClass": "columnMenuButtonClass"; "columnMenuButtonIcon": "columnMenuButtonIcon"; "showColumnMenuHeader": "showColumnMenuHeader"; "columnMenuHeaderText": "columnMenuHeaderText"; "columnMenuHeaderTemplate": "columnMenuHeaderTemplate"; "showColumnMenuFooter": "showColumnMenuFooter"; "columnMenuFooterText": "columnMenuFooterText"; "columnMenuFooterTemplate": "columnMenuFooterTemplate"; "noResultText": "noResultText"; "noResultTemplate": "noResultTemplate"; "headerTemplate": "headerTemplate"; "headerExtraTemplate": "headerExtraTemplate"; "cellTemplate": "cellTemplate"; "useContentRowTemplate": "useContentRowTemplate"; "useContentHeaderRowTemplate": "useContentHeaderRowTemplate"; "useContentFooterRowTemplate": "useContentFooterRowTemplate"; "showSummary": "showSummary"; "summaryTemplate": "summaryTemplate"; "showSidebar": "showSidebar"; "sidebarTemplate": "sidebarTemplate"; "showStatusbar": "showStatusbar"; "statusbarTemplate": "statusbarTemplate"; }, { "page": "page"; "sortChange": "sortChange"; "rowClick": "rowClick"; "expansionChange": "expansionChange"; "rowSelectionChange": "rowSelectionChange"; "cellSelectionChange": "cellSelectionChange"; "columnChange": "columnChange"; }, ["rowDefs", "headerRowDefs", "footerRowDefs"], never, false, never>;
|
|
219
220
|
}
|
|
220
|
-
export declare class
|
|
221
|
-
private
|
|
221
|
+
export declare class MtxGridSelectableCell {
|
|
222
|
+
private _grid;
|
|
222
223
|
private _selected;
|
|
223
224
|
private _rowData;
|
|
224
225
|
ctrlKeyPressed: boolean;
|
|
225
226
|
shiftKeyPressed: boolean;
|
|
226
227
|
get selected(): boolean;
|
|
227
228
|
set mtxSelectableRowData(value: any);
|
|
228
|
-
cellSelectionChange: EventEmitter<
|
|
229
|
-
constructor(
|
|
229
|
+
cellSelectionChange: EventEmitter<MtxGridSelectableCell>;
|
|
230
|
+
constructor(_grid: MtxGrid);
|
|
230
231
|
onClick(event: MouseEvent): void;
|
|
231
232
|
select(): void;
|
|
232
233
|
deselect(): void;
|
|
233
234
|
toggle(): void;
|
|
234
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
235
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
|
235
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxGridSelectableCell, never>;
|
|
236
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxGridSelectableCell, "[mtx-grid-selectable-cell]", never, { "mtxSelectableRowData": "mtxSelectableRowData"; }, { "cellSelectionChange": "cellSelectionChange"; }, never, never, false, never>;
|
|
236
237
|
}
|
|
@@ -12,13 +12,13 @@
|
|
|
12
12
|
}
|
|
13
13
|
}
|
|
14
14
|
|
|
15
|
-
.mat-table:not(.mat-column-resize-table) {
|
|
15
|
+
.mat-mdc-table:not(.mat-column-resize-table) {
|
|
16
16
|
min-width: 100%;
|
|
17
17
|
border-collapse: separate;
|
|
18
18
|
|
|
19
|
-
.mat-header-cell,
|
|
20
|
-
.mat-footer-cell,
|
|
21
|
-
.mat-cell {
|
|
19
|
+
.mat-mdc-header-cell,
|
|
20
|
+
.mat-mdc-footer-cell,
|
|
21
|
+
.mat-mdc-cell {
|
|
22
22
|
&:not(.mtx-grid-checkbox-cell) {
|
|
23
23
|
min-width: 80px;
|
|
24
24
|
}
|
|
@@ -47,9 +47,9 @@
|
|
|
47
47
|
}
|
|
48
48
|
}
|
|
49
49
|
|
|
50
|
-
.mat-header-cell,
|
|
51
|
-
.mat-footer-cell,
|
|
52
|
-
.mat-cell {
|
|
50
|
+
.mat-mdc-header-cell,
|
|
51
|
+
.mat-mdc-footer-cell,
|
|
52
|
+
.mat-mdc-cell {
|
|
53
53
|
padding: 4px 10px;
|
|
54
54
|
box-sizing: border-box;
|
|
55
55
|
|
|
@@ -82,17 +82,17 @@
|
|
|
82
82
|
}
|
|
83
83
|
}
|
|
84
84
|
|
|
85
|
-
.mat-row {
|
|
85
|
+
.mat-mdc-row {
|
|
86
86
|
&.mtx-grid-expansion {
|
|
87
87
|
height: 0;
|
|
88
88
|
overflow: hidden;
|
|
89
89
|
|
|
90
|
-
.mat-cell {
|
|
90
|
+
.mat-mdc-cell {
|
|
91
91
|
padding-top: 0;
|
|
92
92
|
padding-bottom: 0;
|
|
93
93
|
}
|
|
94
94
|
|
|
95
|
-
&.collapsed .mat-cell {
|
|
95
|
+
&.collapsed .mat-mdc-cell {
|
|
96
96
|
border-bottom-width: 0;
|
|
97
97
|
}
|
|
98
98
|
}
|
|
@@ -114,17 +114,6 @@
|
|
|
114
114
|
.mat-paginator-hidden {
|
|
115
115
|
display: none;
|
|
116
116
|
}
|
|
117
|
-
|
|
118
|
-
.mat-icon-button i,
|
|
119
|
-
.mat-icon-button .mat-icon {
|
|
120
|
-
line-height: 20px;
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
.mat-icon {
|
|
124
|
-
width: 20px;
|
|
125
|
-
height: 20px;
|
|
126
|
-
font-size: 20px;
|
|
127
|
-
}
|
|
128
117
|
}
|
|
129
118
|
|
|
130
119
|
.mtx-grid-progress {
|
|
@@ -217,17 +206,16 @@
|
|
|
217
206
|
}
|
|
218
207
|
|
|
219
208
|
.mtx-grid-row-expand-button {
|
|
220
|
-
width:
|
|
221
|
-
height:
|
|
222
|
-
|
|
209
|
+
width: 36px !important;
|
|
210
|
+
height: 36px !important;
|
|
211
|
+
padding: 6px !important;
|
|
212
|
+
vertical-align: middle;
|
|
223
213
|
|
|
224
214
|
&.expanded .mtx-grid-row-expand-icon {
|
|
225
215
|
transform: rotate(90deg);
|
|
226
216
|
}
|
|
227
|
-
}
|
|
228
217
|
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
font-size: 20px;
|
|
218
|
+
+ mtx-grid-cell {
|
|
219
|
+
vertical-align: middle;
|
|
220
|
+
}
|
|
233
221
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { TemplateRef } from '@angular/core';
|
|
2
2
|
import { ThemePalette } from '@angular/material/core';
|
|
3
|
-
import { MatMenu, MatMenuTrigger } from '@angular/material/menu';
|
|
4
3
|
import { TooltipPosition, TooltipTouchGestures } from '@angular/material/tooltip';
|
|
5
4
|
import { Observable } from 'rxjs';
|
|
6
5
|
/** Column definition of grid. */
|
|
@@ -109,10 +108,5 @@ export interface MtxGridRowSelectionFormatter {
|
|
|
109
108
|
export interface MtxGridRowClassFormatter {
|
|
110
109
|
[className: string]: (rowData: any, index?: number) => boolean;
|
|
111
110
|
}
|
|
112
|
-
/** Column menu component. */
|
|
113
|
-
export interface MtxGridColumnMenu {
|
|
114
|
-
menuPanel: MatMenu;
|
|
115
|
-
menuTrigger: MatMenuTrigger;
|
|
116
|
-
}
|
|
117
111
|
/** Possible button type values. */
|
|
118
112
|
export declare type MtxGridButtonType = 'raised' | 'stroked' | 'flat' | 'icon' | 'fab' | 'mini-fab';
|
package/grid/public-api.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export * from './grid
|
|
2
|
-
export * from './grid
|
|
3
|
-
export * from './grid
|
|
4
|
-
export * from './
|
|
5
|
-
export * from './
|
|
6
|
-
export * from './
|
|
7
|
-
export * from './
|
|
1
|
+
export * from './grid-module';
|
|
2
|
+
export * from './grid-utils';
|
|
3
|
+
export * from './grid';
|
|
4
|
+
export * from './cell';
|
|
5
|
+
export * from './column-menu';
|
|
6
|
+
export * from './expansion-toggle';
|
|
7
|
+
export * from './interfaces';
|
|
8
8
|
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';
|
|
9
9
|
export { MatColumnResize } from './column-resize/column-resize-directives/column-resize';
|
|
10
10
|
export { MatColumnResizeFlex } from './column-resize/column-resize-directives/column-resize-flex';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
@forward 'loader-theme' hide color, theme, typography;
|
|
2
|
-
@forward 'loader-theme' as mtx-loader
|
|
2
|
+
@forward 'loader-theme' as mtx-loader-*;
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
@mixin typography($config-or-theme) {}
|
|
16
16
|
|
|
17
|
-
@mixin
|
|
17
|
+
@mixin density($config-or-theme) {}
|
|
18
18
|
|
|
19
19
|
@mixin theme($theme-or-color-config) {
|
|
20
20
|
$theme: theming.private-legacy-get-theme($theme-or-color-config);
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
@include color($color);
|
|
28
28
|
}
|
|
29
29
|
@if $density != null {
|
|
30
|
-
@include
|
|
30
|
+
@include density($density);
|
|
31
31
|
}
|
|
32
32
|
@if $typography != null {
|
|
33
33
|
@include typography($typography);
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./loader
|
|
2
|
+
import * as i1 from "./loader";
|
|
3
3
|
import * as i2 from "@angular/common";
|
|
4
4
|
import * as i3 from "@angular/material/progress-spinner";
|
|
5
5
|
import * as i4 from "@angular/material/progress-bar";
|
|
6
6
|
export declare class MtxLoaderModule {
|
|
7
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtxLoaderModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MtxLoaderModule, [typeof i1.
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MtxLoaderModule, [typeof i1.MtxLoader], [typeof i2.CommonModule, typeof i3.MatProgressSpinnerModule, typeof i4.MatProgressBarModule], [typeof i1.MtxLoader]>;
|
|
9
9
|
static ɵinj: i0.ɵɵInjectorDeclaration<MtxLoaderModule>;
|
|
10
10
|
}
|
|
@@ -5,7 +5,7 @@ import { ProgressBarMode } from '@angular/material/progress-bar';
|
|
|
5
5
|
import { ProgressSpinnerMode } from '@angular/material/progress-spinner';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare type MtxLoaderType = 'spinner' | 'progressbar';
|
|
8
|
-
export declare class
|
|
8
|
+
export declare class MtxLoader {
|
|
9
9
|
private _changeDetectorRef;
|
|
10
10
|
/** The loader's type. Can be `spinner` or `progressbar` */
|
|
11
11
|
type: MtxLoaderType;
|
|
@@ -32,6 +32,6 @@ export declare class MtxLoaderComponent {
|
|
|
32
32
|
constructor(_changeDetectorRef: ChangeDetectorRef);
|
|
33
33
|
static ngAcceptInputType_loading: BooleanInput;
|
|
34
34
|
static ngAcceptInputType_hasBackdrop: BooleanInput;
|
|
35
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
36
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
35
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxLoader, never>;
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MtxLoader, "mtx-loader", ["mtxLoader"], { "type": "type"; "color": "color"; "mode": "mode"; "strokeWidth": "strokeWidth"; "diameter": "diameter"; "bufferValue": "bufferValue"; "value": "value"; "loading": "loading"; "hasBackdrop": "hasBackdrop"; }, {}, never, ["*"], false, never>;
|
|
37
37
|
}
|
package/loader/public-api.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './loader
|
|
2
|
-
export * from './loader
|
|
1
|
+
export * from './loader-module';
|
|
2
|
+
export * from './loader';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ng-matero/extensions",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "15.0.1",
|
|
4
4
|
"description": "Angular Material Extensions",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -125,14 +125,6 @@
|
|
|
125
125
|
"node": "./fesm2015/mtxDrawer.mjs",
|
|
126
126
|
"default": "./fesm2020/mtxDrawer.mjs"
|
|
127
127
|
},
|
|
128
|
-
"./form-group": {
|
|
129
|
-
"types": "./form-group/index.d.ts",
|
|
130
|
-
"esm2020": "./esm2020/form-group/mtxFormGroup.mjs",
|
|
131
|
-
"es2020": "./fesm2020/mtxFormGroup.mjs",
|
|
132
|
-
"es2015": "./fesm2015/mtxFormGroup.mjs",
|
|
133
|
-
"node": "./fesm2015/mtxFormGroup.mjs",
|
|
134
|
-
"default": "./fesm2020/mtxFormGroup.mjs"
|
|
135
|
-
},
|
|
136
128
|
"./grid": {
|
|
137
129
|
"types": "./grid/index.d.ts",
|
|
138
130
|
"esm2020": "./esm2020/grid/mtxGrid.mjs",
|
|
@@ -189,14 +181,6 @@
|
|
|
189
181
|
"node": "./fesm2015/mtxSplit.mjs",
|
|
190
182
|
"default": "./fesm2020/mtxSplit.mjs"
|
|
191
183
|
},
|
|
192
|
-
"./text3d": {
|
|
193
|
-
"types": "./text3d/index.d.ts",
|
|
194
|
-
"esm2020": "./esm2020/text3d/mtxText3d.mjs",
|
|
195
|
-
"es2020": "./fesm2020/mtxText3d.mjs",
|
|
196
|
-
"es2015": "./fesm2015/mtxText3d.mjs",
|
|
197
|
-
"node": "./fesm2015/mtxText3d.mjs",
|
|
198
|
-
"default": "./fesm2020/mtxText3d.mjs"
|
|
199
|
-
},
|
|
200
184
|
"./tooltip": {
|
|
201
185
|
"types": "./tooltip/index.d.ts",
|
|
202
186
|
"esm2020": "./esm2020/tooltip/mtxTooltip.mjs",
|
|
@@ -207,17 +191,17 @@
|
|
|
207
191
|
}
|
|
208
192
|
},
|
|
209
193
|
"dependencies": {
|
|
210
|
-
"@ng-select/ng-select": "^
|
|
194
|
+
"@ng-select/ng-select": "^10.0.0",
|
|
211
195
|
"ngx-color": "^8.0.0",
|
|
212
196
|
"photoviewer": "^3.6.0",
|
|
213
|
-
"tslib": "^2.
|
|
197
|
+
"tslib": "^2.4.0"
|
|
214
198
|
},
|
|
215
199
|
"peerDependencies": {
|
|
216
|
-
"@angular/animations": ">=
|
|
217
|
-
"@angular/cdk": ">=
|
|
218
|
-
"@angular/common": ">=
|
|
219
|
-
"@angular/core": ">=
|
|
220
|
-
"@angular/material": ">=
|
|
200
|
+
"@angular/animations": ">=15.0.0",
|
|
201
|
+
"@angular/cdk": ">=15.0.0",
|
|
202
|
+
"@angular/common": ">=15.0.0",
|
|
203
|
+
"@angular/core": ">=15.0.0",
|
|
204
|
+
"@angular/material": ">=15.0.0"
|
|
221
205
|
},
|
|
222
206
|
"sideEffects": false,
|
|
223
207
|
"module": "fesm2015/ng-matero-extensions.mjs",
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
@forward 'popover-theme' hide color, theme, typography;
|
|
2
|
-
@forward 'popover-theme' as mtx-popover
|
|
2
|
+
@forward 'popover-theme' as mtx-popover-*;
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
|
|
49
49
|
@mixin typography($config-or-theme) {}
|
|
50
50
|
|
|
51
|
-
@mixin
|
|
51
|
+
@mixin density($config-or-theme) {}
|
|
52
52
|
|
|
53
53
|
@mixin theme($theme-or-color-config) {
|
|
54
54
|
$theme: theming.private-legacy-get-theme($theme-or-color-config);
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
@include color($color);
|
|
62
62
|
}
|
|
63
63
|
@if $density != null {
|
|
64
|
-
@include
|
|
64
|
+
@include density($density);
|
|
65
65
|
}
|
|
66
66
|
@if $typography != null {
|
|
67
67
|
@include typography($typography);
|
|
@@ -32,12 +32,12 @@ export declare abstract class _MtxPopoverContentBase implements OnDestroy {
|
|
|
32
32
|
detach(): void;
|
|
33
33
|
ngOnDestroy(): void;
|
|
34
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<_MtxPopoverContentBase, never>;
|
|
35
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<_MtxPopoverContentBase, never, never, {}, {}, never, never, false>;
|
|
35
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<_MtxPopoverContentBase, never, never, {}, {}, never, never, false, never>;
|
|
36
36
|
}
|
|
37
37
|
/**
|
|
38
38
|
* Popover content that will be rendered lazily once the popover is opened.
|
|
39
39
|
*/
|
|
40
40
|
export declare class MtxPopoverContent extends _MtxPopoverContentBase {
|
|
41
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtxPopoverContent, never>;
|
|
42
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxPopoverContent, "ng-template[mtxPopoverContent]", never, {}, {}, never, never, false>;
|
|
42
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxPopoverContent, "ng-template[mtxPopoverContent]", never, {}, {}, never, never, false, never>;
|
|
43
43
|
}
|
|
@@ -4,5 +4,5 @@ export declare class MtxPopoverTarget {
|
|
|
4
4
|
elementRef: ElementRef;
|
|
5
5
|
constructor(elementRef: ElementRef);
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtxPopoverTarget, never>;
|
|
7
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxPopoverTarget, "mtx-popover-target, [mtxPopoverTarget]", ["mtxPopoverTarget"], {}, {}, never, never, false>;
|
|
7
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxPopoverTarget, "mtx-popover-target, [mtxPopoverTarget]", ["mtxPopoverTarget"], {}, {}, never, never, false, never>;
|
|
8
8
|
}
|
|
@@ -120,5 +120,5 @@ export declare class MtxPopoverTrigger implements AfterContentInit, OnDestroy {
|
|
|
120
120
|
/** Gets the portal that should be attached to the overlay. */
|
|
121
121
|
private _getPortal;
|
|
122
122
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtxPopoverTrigger, [null, null, null, null, { optional: true; }, null, null]>;
|
|
123
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxPopoverTrigger, "[mtx-popover-trigger-for], [mtxPopoverTriggerFor]", ["mtxPopoverTrigger"], { "popover": "mtxPopoverTriggerFor"; "popoverData": "mtxPopoverTriggerData"; "targetElement": "mtxPopoverTargetAt"; "triggerEvent": "mtxPopoverTriggerOn"; }, { "popoverOpened": "popoverOpened"; "popoverClosed": "popoverClosed"; }, never, never, false>;
|
|
123
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxPopoverTrigger, "[mtx-popover-trigger-for], [mtxPopoverTriggerFor]", ["mtxPopoverTrigger"], { "popover": "mtxPopoverTriggerFor"; "popoverData": "mtxPopoverTriggerData"; "targetElement": "mtxPopoverTargetAt"; "triggerEvent": "mtxPopoverTriggerOn"; }, { "popoverOpened": "popoverOpened"; "popoverClosed": "popoverClosed"; }, never, never, false, never>;
|
|
124
124
|
}
|