@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
package/popover/popover.d.ts
CHANGED
|
@@ -166,5 +166,5 @@ export declare class MtxPopover implements MtxPopoverPanel, OnInit, OnDestroy {
|
|
|
166
166
|
static ngAcceptInputType_focusTrapAutoCaptureEnabled: BooleanInput;
|
|
167
167
|
static ngAcceptInputType_hasBackdrop: BooleanInput;
|
|
168
168
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtxPopover, never>;
|
|
169
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MtxPopover, "mtx-popover", ["mtxPopover"], { "backdropClass": "backdropClass"; "ariaLabel": "aria-label"; "ariaLabelledby": "aria-labelledby"; "ariaDescribedby": "aria-describedby"; "triggerEvent": "triggerEvent"; "enterDelay": "enterDelay"; "leaveDelay": "leaveDelay"; "position": "position"; "xOffset": "xOffset"; "yOffset": "yOffset"; "arrowWidth": "arrowWidth"; "arrowHeight": "arrowHeight"; "arrowOffsetX": "arrowOffsetX"; "arrowOffsetY": "arrowOffsetY"; "closeOnPanelClick": "closeOnPanelClick"; "closeOnBackdropClick": "closeOnBackdropClick"; "focusTrapEnabled": "focusTrapEnabled"; "focusTrapAutoCaptureEnabled": "focusTrapAutoCaptureEnabled"; "hasBackdrop": "hasBackdrop"; "elevation": "elevation"; "panelClass": "class"; "classList": "classList"; }, { "closed": "closed"; }, ["lazyContent"], ["*"], false>;
|
|
169
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MtxPopover, "mtx-popover", ["mtxPopover"], { "backdropClass": "backdropClass"; "ariaLabel": "aria-label"; "ariaLabelledby": "aria-labelledby"; "ariaDescribedby": "aria-describedby"; "triggerEvent": "triggerEvent"; "enterDelay": "enterDelay"; "leaveDelay": "leaveDelay"; "position": "position"; "xOffset": "xOffset"; "yOffset": "yOffset"; "arrowWidth": "arrowWidth"; "arrowHeight": "arrowHeight"; "arrowOffsetX": "arrowOffsetX"; "arrowOffsetY": "arrowOffsetY"; "closeOnPanelClick": "closeOnPanelClick"; "closeOnBackdropClick": "closeOnBackdropClick"; "focusTrapEnabled": "focusTrapEnabled"; "focusTrapAutoCaptureEnabled": "focusTrapAutoCaptureEnabled"; "hasBackdrop": "hasBackdrop"; "elevation": "elevation"; "panelClass": "class"; "classList": "classList"; }, { "closed": "closed"; }, ["lazyContent"], ["*"], false, never>;
|
|
170
170
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
@forward 'progress-theme' hide color, theme, typography;
|
|
2
|
-
@forward 'progress-theme' as mtx-progress
|
|
2
|
+
@forward 'progress-theme' as mtx-progress-*;
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
|
|
34
34
|
@mixin typography($config-or-theme) {}
|
|
35
35
|
|
|
36
|
-
@mixin
|
|
36
|
+
@mixin density($config-or-theme) {}
|
|
37
37
|
|
|
38
38
|
@mixin theme($theme-or-color-config) {
|
|
39
39
|
$theme: theming.private-legacy-get-theme($theme-or-color-config);
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
@include color($color);
|
|
47
47
|
}
|
|
48
48
|
@if $density != null {
|
|
49
|
-
@include
|
|
49
|
+
@include density($density);
|
|
50
50
|
}
|
|
51
51
|
@if $typography != null {
|
|
52
52
|
@include typography($typography);
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./progress
|
|
2
|
+
import * as i1 from "./progress";
|
|
3
3
|
import * as i2 from "@angular/common";
|
|
4
4
|
export declare class MtxProgressModule {
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtxProgressModule, never>;
|
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MtxProgressModule, [typeof i1.
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MtxProgressModule, [typeof i1.MtxProgress], [typeof i2.CommonModule], [typeof i1.MtxProgress]>;
|
|
7
7
|
static ɵinj: i0.ɵɵInjectorDeclaration<MtxProgressModule>;
|
|
8
8
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { BooleanInput } from '@angular/cdk/coercion';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare type MtxProgressType = 'default' | 'info' | 'success' | 'warning' | 'danger';
|
|
4
|
-
export declare class
|
|
4
|
+
export declare class MtxProgress {
|
|
5
5
|
/** The progress's type. Can be `default`, `info`, `success`, `warning` or `danger`. */
|
|
6
6
|
type: MtxProgressType;
|
|
7
7
|
/** The value of the progress. */
|
|
@@ -24,6 +24,6 @@ export declare class MtxProgressComponent {
|
|
|
24
24
|
private _animate;
|
|
25
25
|
static ngAcceptInputType_striped: BooleanInput;
|
|
26
26
|
static ngAcceptInputType_animate: BooleanInput;
|
|
27
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
28
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxProgress, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MtxProgress, "mtx-progress", ["mtxProgress"], { "type": "type"; "value": "value"; "height": "height"; "color": "color"; "foreground": "foreground"; "background": "background"; "striped": "striped"; "animate": "animate"; }, {}, never, ["*"], false, never>;
|
|
29
29
|
}
|
|
File without changes
|
package/progress/public-api.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './progress
|
|
2
|
-
export * from './progress
|
|
1
|
+
export * from './progress-module';
|
|
2
|
+
export * from './progress';
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
@use 'sass:map';
|
|
2
|
+
@use 'sass:math';
|
|
3
|
+
@use '@material/density' as mdc-density;
|
|
4
|
+
@use '@material/textfield' as mdc-textfield;
|
|
5
|
+
@use '../core/theming/theming';
|
|
6
|
+
|
|
7
|
+
@mixin _infix-vertical-spacing-filled($with-label-padding, $no-label-padding) {
|
|
8
|
+
.ng-select {
|
|
9
|
+
padding-top: map.get($with-label-padding, top);
|
|
10
|
+
padding-bottom: map.get($with-label-padding, bottom);
|
|
11
|
+
margin-top: - map.get($with-label-padding, top);
|
|
12
|
+
margin-bottom: - map.get($with-label-padding, bottom);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.mdc-text-field--no-label .ng-select {
|
|
16
|
+
padding-top: map.get($no-label-padding, top);
|
|
17
|
+
padding-bottom: map.get($no-label-padding, bottom);
|
|
18
|
+
margin-top: - map.get($no-label-padding, top);
|
|
19
|
+
margin-bottom: - map.get($no-label-padding, bottom);
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
@mixin _infix-vertical-spacing-outlined($padding) {
|
|
24
|
+
.mdc-text-field--outlined .ng-select {
|
|
25
|
+
padding-top: map.get($padding, top);
|
|
26
|
+
padding-bottom: map.get($padding, bottom);
|
|
27
|
+
margin-top: - map.get($padding, top);
|
|
28
|
+
margin-bottom: - map.get($padding, bottom);
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
@mixin private-select-density($config-or-theme) {
|
|
33
|
+
$density-scale: theming.get-density-config($config-or-theme);
|
|
34
|
+
// Height of the form field that is based on the current density scale.
|
|
35
|
+
$height: mdc-density.prop-value(
|
|
36
|
+
$density-config: mdc-textfield.$density-config,
|
|
37
|
+
$density-scale: $density-scale,
|
|
38
|
+
$property-name: height,
|
|
39
|
+
);
|
|
40
|
+
// Whether floating labels for filled form fields should be hidden. MDC hides the label in
|
|
41
|
+
// their density styles when the height decreases too much. We match their density styles.
|
|
42
|
+
$hide-filled-floating-label: $height < mdc-textfield.$minimum-height-for-filled-label;
|
|
43
|
+
// We computed the desired height of the form-field using the density configuration. The
|
|
44
|
+
// spec only describes vertical spacing/alignment in non-dense mode. This means that we
|
|
45
|
+
// cannot update the spacing to explicit numbers based on the density scale. Instead, we
|
|
46
|
+
// determine the height reduction and equally subtract it from the default `top` and `bottom`
|
|
47
|
+
// padding that is provided by the Material Design specification.
|
|
48
|
+
$vertical-deduction: math.div(mdc-textfield.$height - $height, 2);
|
|
49
|
+
// Map that describes the padding for form-fields with label.
|
|
50
|
+
$with-label-padding: (
|
|
51
|
+
top: 24px - $vertical-deduction,
|
|
52
|
+
bottom: 8px - $vertical-deduction,
|
|
53
|
+
);
|
|
54
|
+
// Map that describes the padding for form-fields without label.
|
|
55
|
+
$no-label-padding: (
|
|
56
|
+
top: 16px - $vertical-deduction,
|
|
57
|
+
bottom: 16px - $vertical-deduction,
|
|
58
|
+
);
|
|
59
|
+
|
|
60
|
+
@include _infix-vertical-spacing-outlined($no-label-padding);
|
|
61
|
+
|
|
62
|
+
@if $hide-filled-floating-label {
|
|
63
|
+
@include _infix-vertical-spacing-filled($no-label-padding, $no-label-padding);
|
|
64
|
+
}
|
|
65
|
+
@else {
|
|
66
|
+
@include _infix-vertical-spacing-filled($with-label-padding, $no-label-padding);
|
|
67
|
+
}
|
|
68
|
+
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
@use 'sass:map';
|
|
2
2
|
@use '../core/theming/theming';
|
|
3
|
+
@use './select-density';
|
|
3
4
|
|
|
4
5
|
@mixin color($config-or-theme) {
|
|
5
6
|
$config: theming.get-color-config($config-or-theme);
|
|
@@ -36,6 +37,7 @@
|
|
|
36
37
|
.ng-value {
|
|
37
38
|
color: theming.get-color-from-palette($foreground, text);
|
|
38
39
|
background-color: theming.get-color-from-palette($background, unselected-chip);
|
|
40
|
+
border: 1px solid theming.get-color-from-palette($foreground, divider);
|
|
39
41
|
|
|
40
42
|
&.ng-value-disabled {
|
|
41
43
|
opacity: .4;
|
|
@@ -143,7 +145,9 @@
|
|
|
143
145
|
|
|
144
146
|
@mixin typography($config-or-theme) {}
|
|
145
147
|
|
|
146
|
-
@mixin
|
|
148
|
+
@mixin density($config-or-theme) {
|
|
149
|
+
@include select-density.private-select-density($config-or-theme);
|
|
150
|
+
}
|
|
147
151
|
|
|
148
152
|
@mixin theme($theme-or-color-config) {
|
|
149
153
|
$theme: theming.private-legacy-get-theme($theme-or-color-config);
|
|
@@ -156,7 +160,7 @@
|
|
|
156
160
|
@include color($color);
|
|
157
161
|
}
|
|
158
162
|
@if $density != null {
|
|
159
|
-
@include
|
|
163
|
+
@include density($density);
|
|
160
164
|
}
|
|
161
165
|
@if $typography != null {
|
|
162
166
|
@include typography($typography);
|
|
@@ -2,7 +2,7 @@ import { BooleanInput } from '@angular/cdk/coercion';
|
|
|
2
2
|
import { AfterViewChecked, ElementRef, OnChanges, OnDestroy, SimpleChanges } from '@angular/core';
|
|
3
3
|
import { Subject } from 'rxjs';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class
|
|
5
|
+
export declare class MtxOption implements OnChanges, AfterViewChecked, OnDestroy {
|
|
6
6
|
elementRef: ElementRef<HTMLElement>;
|
|
7
7
|
value: any;
|
|
8
8
|
get disabled(): boolean;
|
|
@@ -20,6 +20,6 @@ export declare class MtxOptionComponent implements OnChanges, AfterViewChecked,
|
|
|
20
20
|
ngAfterViewChecked(): void;
|
|
21
21
|
ngOnDestroy(): void;
|
|
22
22
|
static ngAcceptInputType_disabled: BooleanInput;
|
|
23
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxOption, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MtxOption, "mtx-option", ["mtxOption"], { "value": "value"; "disabled": "disabled"; }, {}, never, ["*"], false, never>;
|
|
25
25
|
}
|
package/select/public-api.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from './select
|
|
2
|
-
export * from './select
|
|
3
|
-
export * from './option
|
|
4
|
-
export * from './templates
|
|
1
|
+
export * from './select-module';
|
|
2
|
+
export * from './select';
|
|
3
|
+
export * from './option';
|
|
4
|
+
export * from './templates';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./select";
|
|
3
|
+
import * as i2 from "./option";
|
|
4
|
+
import * as i3 from "./templates";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
6
|
+
import * as i5 from "@angular/forms";
|
|
7
|
+
import * as i6 from "@ng-select/ng-select";
|
|
8
|
+
export declare class MtxSelectModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxSelectModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MtxSelectModule, [typeof i1.MtxSelect, typeof i2.MtxOption, typeof i3.MtxSelectOptgroupTemplate, typeof i3.MtxSelectOptionTemplate, typeof i3.MtxSelectLabelTemplate, typeof i3.MtxSelectMultiLabelTemplate, typeof i3.MtxSelectHeaderTemplate, typeof i3.MtxSelectFooterTemplate, typeof i3.MtxSelectNotFoundTemplate, typeof i3.MtxSelectTypeToSearchTemplate, typeof i3.MtxSelectLoadingTextTemplate, typeof i3.MtxSelectTagTemplate, typeof i3.MtxSelectLoadingSpinnerTemplate], [typeof i4.CommonModule, typeof i5.FormsModule, typeof i5.ReactiveFormsModule, typeof i6.NgSelectModule], [typeof i1.MtxSelect, typeof i2.MtxOption, typeof i3.MtxSelectOptgroupTemplate, typeof i3.MtxSelectOptionTemplate, typeof i3.MtxSelectLabelTemplate, typeof i3.MtxSelectMultiLabelTemplate, typeof i3.MtxSelectHeaderTemplate, typeof i3.MtxSelectFooterTemplate, typeof i3.MtxSelectNotFoundTemplate, typeof i3.MtxSelectTypeToSearchTemplate, typeof i3.MtxSelectLoadingTextTemplate, typeof i3.MtxSelectTagTemplate, typeof i3.MtxSelectLoadingSpinnerTemplate]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MtxSelectModule>;
|
|
12
|
+
}
|
|
@@ -6,7 +6,7 @@ import { ControlValueAccessor, FormGroupDirective, NgControl, NgForm } from '@an
|
|
|
6
6
|
import { MatFormField, MatFormFieldControl } from '@angular/material/form-field';
|
|
7
7
|
import { Subject } from 'rxjs';
|
|
8
8
|
import { NgSelectComponent } from '@ng-select/ng-select';
|
|
9
|
-
import {
|
|
9
|
+
import { MtxOption } from './option';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
11
|
export declare type DropdownPosition = 'bottom' | 'top' | 'auto';
|
|
12
12
|
export declare type AddTagFn = (term: string) => any | Promise<any>;
|
|
@@ -34,7 +34,7 @@ declare const _MtxSelectMixinBase: import("@angular/material/core")._Constructor
|
|
|
34
34
|
ngControl: NgControl;
|
|
35
35
|
};
|
|
36
36
|
};
|
|
37
|
-
export declare class
|
|
37
|
+
export declare class MtxSelect extends _MtxSelectMixinBase implements OnInit, OnDestroy, DoCheck, AfterViewInit, ControlValueAccessor, MatFormFieldControl<any> {
|
|
38
38
|
protected _changeDetectorRef: ChangeDetectorRef;
|
|
39
39
|
protected _elementRef: ElementRef;
|
|
40
40
|
protected _focusMonitor: FocusMonitor;
|
|
@@ -51,7 +51,7 @@ export declare class MtxSelectComponent extends _MtxSelectMixinBase implements O
|
|
|
51
51
|
loadingTextTemplate: TemplateRef<any>;
|
|
52
52
|
tagTemplate: TemplateRef<any>;
|
|
53
53
|
loadingSpinnerTemplate: TemplateRef<any>;
|
|
54
|
-
mtxOptions: QueryList<
|
|
54
|
+
mtxOptions: QueryList<MtxOption>;
|
|
55
55
|
addTag: boolean | AddTagFn;
|
|
56
56
|
addTagText: string;
|
|
57
57
|
appearance: string;
|
|
@@ -221,7 +221,7 @@ export declare class MtxSelectComponent extends _MtxSelectMixinBase implements O
|
|
|
221
221
|
blur(): void;
|
|
222
222
|
static ngAcceptInputType_required: BooleanInput;
|
|
223
223
|
static ngAcceptInputType_disabled: BooleanInput;
|
|
224
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
225
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
224
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxSelect, [null, null, null, null, { optional: true; }, { optional: true; }, { optional: true; self: true; }, { optional: true; }]>;
|
|
225
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MtxSelect, "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, never>;
|
|
226
226
|
}
|
|
227
227
|
export {};
|
|
@@ -7,20 +7,10 @@
|
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
.ng-select {
|
|
10
|
-
padding-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
margin-
|
|
14
|
-
|
|
15
|
-
.mat-form-field-appearance-fill & {
|
|
16
|
-
padding: .25em .75em .75em;
|
|
17
|
-
margin: -.25em -.75em -.75em;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.mat-form-field-appearance-outline & {
|
|
21
|
-
padding: 1em .75em;
|
|
22
|
-
margin: -1em -.75em;
|
|
23
|
-
}
|
|
10
|
+
padding-right: 16px;
|
|
11
|
+
padding-left: 16px;
|
|
12
|
+
margin-right: -16px;
|
|
13
|
+
margin-left: -16px;
|
|
24
14
|
|
|
25
15
|
.ng-select-container {
|
|
26
16
|
align-items: center;
|
|
@@ -38,13 +28,11 @@
|
|
|
38
28
|
}
|
|
39
29
|
|
|
40
30
|
.ng-placeholder {
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
opacity: 0;
|
|
44
|
-
}
|
|
31
|
+
transition: opacity 200ms;
|
|
32
|
+
opacity: 1;
|
|
45
33
|
|
|
46
|
-
.mat-form-field-
|
|
47
|
-
opacity:
|
|
34
|
+
.mat-form-field-hide-placeholder & {
|
|
35
|
+
opacity: 0;
|
|
48
36
|
}
|
|
49
37
|
}
|
|
50
38
|
|
|
@@ -90,11 +78,16 @@
|
|
|
90
78
|
margin: -4px 0;
|
|
91
79
|
|
|
92
80
|
.ng-value {
|
|
93
|
-
margin: 4px;
|
|
81
|
+
margin-right: 4px;
|
|
94
82
|
border-radius: 16px;
|
|
95
83
|
font-size: .875em;
|
|
96
84
|
line-height: 18px;
|
|
97
85
|
|
|
86
|
+
@include rtl {
|
|
87
|
+
margin-right: auto;
|
|
88
|
+
margin-left: 4px;
|
|
89
|
+
}
|
|
90
|
+
|
|
98
91
|
.ng-value-label {
|
|
99
92
|
display: inline-block;
|
|
100
93
|
margin: 0 8px;
|
|
@@ -131,7 +124,6 @@
|
|
|
131
124
|
}
|
|
132
125
|
|
|
133
126
|
.ng-clear-wrapper {
|
|
134
|
-
height: 18px;
|
|
135
127
|
text-align: center;
|
|
136
128
|
}
|
|
137
129
|
|
|
@@ -1,68 +1,68 @@
|
|
|
1
1
|
import { TemplateRef } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class MtxSelectOptionTemplate {
|
|
4
4
|
template: TemplateRef<any>;
|
|
5
5
|
constructor(template: TemplateRef<any>);
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
7
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxSelectOptionTemplate, never>;
|
|
7
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxSelectOptionTemplate, "[ng-option-tmp]", never, {}, {}, never, never, false, never>;
|
|
8
8
|
}
|
|
9
|
-
export declare class
|
|
9
|
+
export declare class MtxSelectOptgroupTemplate {
|
|
10
10
|
template: TemplateRef<any>;
|
|
11
11
|
constructor(template: TemplateRef<any>);
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
13
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxSelectOptgroupTemplate, never>;
|
|
13
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxSelectOptgroupTemplate, "[ng-optgroup-tmp]", never, {}, {}, never, never, false, never>;
|
|
14
14
|
}
|
|
15
|
-
export declare class
|
|
15
|
+
export declare class MtxSelectLabelTemplate {
|
|
16
16
|
template: TemplateRef<any>;
|
|
17
17
|
constructor(template: TemplateRef<any>);
|
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
19
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxSelectLabelTemplate, never>;
|
|
19
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxSelectLabelTemplate, "[ng-label-tmp]", never, {}, {}, never, never, false, never>;
|
|
20
20
|
}
|
|
21
|
-
export declare class
|
|
21
|
+
export declare class MtxSelectMultiLabelTemplate {
|
|
22
22
|
template: TemplateRef<any>;
|
|
23
23
|
constructor(template: TemplateRef<any>);
|
|
24
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxSelectMultiLabelTemplate, never>;
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxSelectMultiLabelTemplate, "[ng-multi-label-tmp]", never, {}, {}, never, never, false, never>;
|
|
26
26
|
}
|
|
27
|
-
export declare class
|
|
27
|
+
export declare class MtxSelectHeaderTemplate {
|
|
28
28
|
template: TemplateRef<any>;
|
|
29
29
|
constructor(template: TemplateRef<any>);
|
|
30
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
31
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxSelectHeaderTemplate, never>;
|
|
31
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxSelectHeaderTemplate, "[ng-header-tmp]", never, {}, {}, never, never, false, never>;
|
|
32
32
|
}
|
|
33
|
-
export declare class
|
|
33
|
+
export declare class MtxSelectFooterTemplate {
|
|
34
34
|
template: TemplateRef<any>;
|
|
35
35
|
constructor(template: TemplateRef<any>);
|
|
36
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
37
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
|
36
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxSelectFooterTemplate, never>;
|
|
37
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxSelectFooterTemplate, "[ng-footer-tmp]", never, {}, {}, never, never, false, never>;
|
|
38
38
|
}
|
|
39
|
-
export declare class
|
|
39
|
+
export declare class MtxSelectNotFoundTemplate {
|
|
40
40
|
template: TemplateRef<any>;
|
|
41
41
|
constructor(template: TemplateRef<any>);
|
|
42
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
43
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
|
42
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxSelectNotFoundTemplate, never>;
|
|
43
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxSelectNotFoundTemplate, "[ng-notfound-tmp]", never, {}, {}, never, never, false, never>;
|
|
44
44
|
}
|
|
45
|
-
export declare class
|
|
45
|
+
export declare class MtxSelectTypeToSearchTemplate {
|
|
46
46
|
template: TemplateRef<any>;
|
|
47
47
|
constructor(template: TemplateRef<any>);
|
|
48
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
49
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
|
48
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxSelectTypeToSearchTemplate, never>;
|
|
49
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxSelectTypeToSearchTemplate, "[ng-typetosearch-tmp]", never, {}, {}, never, never, false, never>;
|
|
50
50
|
}
|
|
51
|
-
export declare class
|
|
51
|
+
export declare class MtxSelectLoadingTextTemplate {
|
|
52
52
|
template: TemplateRef<any>;
|
|
53
53
|
constructor(template: TemplateRef<any>);
|
|
54
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
55
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
|
54
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxSelectLoadingTextTemplate, never>;
|
|
55
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxSelectLoadingTextTemplate, "[ng-loadingtext-tmp]", never, {}, {}, never, never, false, never>;
|
|
56
56
|
}
|
|
57
|
-
export declare class
|
|
57
|
+
export declare class MtxSelectTagTemplate {
|
|
58
58
|
template: TemplateRef<any>;
|
|
59
59
|
constructor(template: TemplateRef<any>);
|
|
60
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
61
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
|
60
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxSelectTagTemplate, never>;
|
|
61
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxSelectTagTemplate, "[ng-tag-tmp]", never, {}, {}, never, never, false, never>;
|
|
62
62
|
}
|
|
63
|
-
export declare class
|
|
63
|
+
export declare class MtxSelectLoadingSpinnerTemplate {
|
|
64
64
|
template: TemplateRef<any>;
|
|
65
65
|
constructor(template: TemplateRef<any>);
|
|
66
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
67
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
|
66
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxSelectLoadingSpinnerTemplate, never>;
|
|
67
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxSelectLoadingSpinnerTemplate, "[ng-loadingspinner-tmp]", never, {}, {}, never, never, false, never>;
|
|
68
68
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
@forward 'slider-theme' hide color, theme, typography;
|
|
2
|
-
@forward 'slider-theme' as mtx-slider-* hide mtx-slider-
|
|
2
|
+
@forward 'slider-theme' as mtx-slider-* hide mtx-slider-inner-content-theme;
|
|
@@ -210,21 +210,20 @@
|
|
|
210
210
|
}
|
|
211
211
|
}
|
|
212
212
|
|
|
213
|
-
@mixin
|
|
213
|
+
@mixin density($config-or-theme) {}
|
|
214
214
|
|
|
215
215
|
@mixin theme($theme-or-color-config) {
|
|
216
216
|
$theme: theming.private-legacy-get-theme($theme-or-color-config);
|
|
217
217
|
@include theming.private-check-duplicate-theme-styles($theme, 'mtx-slider') {
|
|
218
218
|
$color: theming.get-color-config($theme);
|
|
219
219
|
$density: theming.get-density-config($theme);
|
|
220
|
-
$typography
|
|
221
|
-
$typography: theming.get-typography-config($theme, $typography-default);
|
|
220
|
+
$typography: theming.get-typography-config($theme);
|
|
222
221
|
|
|
223
222
|
@if $color != null {
|
|
224
223
|
@include color($color);
|
|
225
224
|
}
|
|
226
225
|
@if $density != null {
|
|
227
|
-
@include
|
|
226
|
+
@include density($density);
|
|
228
227
|
}
|
|
229
228
|
@if $typography != null {
|
|
230
229
|
@include typography($typography);
|
package/slider/slider.d.ts
CHANGED
|
@@ -272,6 +272,6 @@ export declare class MtxSlider extends _MtxSliderBase implements ControlValueAcc
|
|
|
272
272
|
static ngAcceptInputType_disabled: BooleanInput;
|
|
273
273
|
static ngAcceptInputType_tabIndex: NumberInput;
|
|
274
274
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtxSlider, [null, null, null, { optional: true; }, { attribute: "tabindex"; }, { optional: true; }, null]>;
|
|
275
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MtxSlider, "mtx-slider", ["mtxSlider"], { "disabled": "disabled"; "color": "color"; "tabIndex": "tabIndex"; "invert": "invert"; "max": "max"; "min": "min"; "step": "step"; "thumbLabel": "thumbLabel"; "tickInterval": "tickInterval"; "value": "value"; "displayWith": "displayWith"; "valueText": "valueText"; "vertical": "vertical"; }, { "change": "change"; "input": "input"; "valueChange": "valueChange"; }, never, never, false>;
|
|
275
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MtxSlider, "mtx-slider", ["mtxSlider"], { "disabled": "disabled"; "color": "color"; "tabIndex": "tabIndex"; "invert": "invert"; "max": "max"; "min": "min"; "step": "step"; "thumbLabel": "thumbLabel"; "tickInterval": "tickInterval"; "value": "value"; "displayWith": "displayWith"; "valueText": "valueText"; "vertical": "vertical"; }, { "change": "change"; "input": "input"; "valueChange": "valueChange"; }, never, never, false, never>;
|
|
276
276
|
}
|
|
277
277
|
export {};
|
package/slider/slider.scss
CHANGED
|
@@ -37,13 +37,13 @@ $focus-ring-size: 30px !default;
|
|
|
37
37
|
|
|
38
38
|
&:not(.mtx-slider-disabled):active,
|
|
39
39
|
&.mtx-slider-sliding:not(.mtx-slider-disabled) {
|
|
40
|
-
|
|
40
|
+
cursor: grabbing;
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
.mtx-slider-wrapper {
|
|
45
45
|
// force browser to show background-color when using the print function
|
|
46
|
-
@include vendor-prefixes.
|
|
46
|
+
@include vendor-prefixes.color-adjust(exact);
|
|
47
47
|
|
|
48
48
|
position: absolute;
|
|
49
49
|
}
|
|
@@ -123,7 +123,7 @@ $focus-ring-size: 30px !default;
|
|
|
123
123
|
|
|
124
124
|
%_mtx-slider-cursor {
|
|
125
125
|
.mtx-slider:not(.mtx-slider-disabled, .mtx-slider-sliding) & {
|
|
126
|
-
|
|
126
|
+
cursor: grab;
|
|
127
127
|
}
|
|
128
128
|
}
|
|
129
129
|
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
@forward 'split-theme' hide color, theme, typography;
|
|
2
|
-
@forward 'split-theme' as mtx-split
|
|
2
|
+
@forward 'split-theme' as mtx-split-*;
|
package/split/_split-theme.scss
CHANGED
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
|
|
27
27
|
@mixin typography($config-or-theme) {}
|
|
28
28
|
|
|
29
|
-
@mixin
|
|
29
|
+
@mixin density($config-or-theme) {}
|
|
30
30
|
|
|
31
31
|
@mixin theme($theme-or-color-config) {
|
|
32
32
|
$theme: theming.private-legacy-get-theme($theme-or-color-config);
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
@include color($color);
|
|
40
40
|
}
|
|
41
41
|
@if $density != null {
|
|
42
|
-
@include
|
|
42
|
+
@include density($density);
|
|
43
43
|
}
|
|
44
44
|
@if $typography != null {
|
|
45
45
|
@include typography($typography);
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { MtxSplitPane } from './split-pane';
|
|
2
2
|
export interface MtxSplitPoint {
|
|
3
3
|
x: number;
|
|
4
4
|
y: number;
|
|
5
5
|
}
|
|
6
6
|
export interface MtxSplitArea {
|
|
7
|
-
component:
|
|
7
|
+
component: MtxSplitPane;
|
|
8
8
|
order: number;
|
|
9
9
|
size: number | null;
|
|
10
10
|
minSize: number | null;
|
package/split/public-api.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from './
|
|
1
|
+
export * from './interfaces';
|
|
2
2
|
export * from './utils';
|
|
3
|
-
export * from './split
|
|
4
|
-
export * from './split
|
|
5
|
-
export * from './split-pane
|
|
3
|
+
export * from './split-module';
|
|
4
|
+
export * from './split';
|
|
5
|
+
export * from './split-pane';
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./split
|
|
3
|
-
import * as i2 from "./split-pane
|
|
2
|
+
import * as i1 from "./split";
|
|
3
|
+
import * as i2 from "./split-pane";
|
|
4
4
|
import * as i3 from "@angular/common";
|
|
5
5
|
export declare class MtxSplitModule {
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtxSplitModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MtxSplitModule, [typeof i1.
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MtxSplitModule, [typeof i1.MtxSplit, typeof i2.MtxSplitPane], [typeof i3.CommonModule], [typeof i1.MtxSplit, typeof i2.MtxSplitPane]>;
|
|
8
8
|
static ɵinj: i0.ɵɵInjectorDeclaration<MtxSplitModule>;
|
|
9
9
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ElementRef, Renderer2, OnInit, OnDestroy, NgZone } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { MtxSplit } from './split';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class
|
|
4
|
+
export declare class MtxSplitPane implements OnInit, OnDestroy {
|
|
5
5
|
private ngZone;
|
|
6
6
|
elRef: ElementRef;
|
|
7
7
|
private renderer;
|
|
@@ -26,13 +26,13 @@ export declare class MtxSplitPaneDirective implements OnInit, OnDestroy {
|
|
|
26
26
|
get visible(): boolean;
|
|
27
27
|
private transitionListener;
|
|
28
28
|
private readonly lockListeners;
|
|
29
|
-
constructor(ngZone: NgZone, elRef: ElementRef, renderer: Renderer2, split:
|
|
29
|
+
constructor(ngZone: NgZone, elRef: ElementRef, renderer: Renderer2, split: MtxSplit);
|
|
30
30
|
ngOnInit(): void;
|
|
31
31
|
setStyleOrder(value: number): void;
|
|
32
32
|
setStyleFlex(grow: number, shrink: number, basis: string, isMin: boolean, isMax: boolean): void;
|
|
33
33
|
lockEvents(): void;
|
|
34
34
|
unlockEvents(): void;
|
|
35
35
|
ngOnDestroy(): void;
|
|
36
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
37
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<
|
|
36
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxSplitPane, never>;
|
|
37
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxSplitPane, "mtx-split-pane, [mtx-split-pane]", ["mtxSplitPane"], { "order": "order"; "size": "size"; "minSize": "minSize"; "maxSize": "maxSize"; "lockSize": "lockSize"; "visible": "visible"; }, {}, never, never, false, never>;
|
|
38
38
|
}
|