@ng-matero/extensions 12.7.0 → 13.0.2
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 +2 -16
- package/_all-color.scss +1 -1
- package/_index.scss +1 -1
- package/_theming.scss +1 -1
- package/alert/_alert-theme.scss +2 -2
- package/alert/alert.component.d.ts +3 -0
- package/alert/alert.module.d.ts +6 -0
- package/alert/mtxAlert.d.ts +1 -0
- package/alert/package.json +5 -6
- package/button/button-loading.directive.d.ts +3 -0
- package/button/button.module.d.ts +8 -0
- package/button/mtxButton.d.ts +1 -0
- package/button/package.json +5 -6
- package/checkbox-group/checkbox-group.component.d.ts +3 -0
- package/checkbox-group/checkbox-group.module.d.ts +9 -0
- package/checkbox-group/mtxCheckboxGroup.d.ts +1 -0
- package/checkbox-group/package.json +5 -6
- package/colorpicker/_colorpicker-theme.scss +2 -2
- package/colorpicker/colorpicker-input.d.ts +3 -0
- package/colorpicker/colorpicker-module.d.ts +13 -0
- package/colorpicker/colorpicker-toggle.d.ts +5 -0
- package/colorpicker/colorpicker.d.ts +6 -1
- package/colorpicker/mtxColorpicker.d.ts +1 -0
- package/colorpicker/package.json +5 -6
- package/column-resize/column-resize-directives/column-resize-flex.d.ts +3 -0
- package/column-resize/column-resize-directives/column-resize.d.ts +3 -0
- package/column-resize/column-resize-module.d.ts +6 -7
- package/column-resize/column-resize-notifier.d.ts +5 -7
- package/column-resize/column-resize.d.ts +3 -0
- package/column-resize/column-size-store.d.ts +3 -7
- package/column-resize/event-dispatcher.d.ts +3 -0
- package/column-resize/mtxColumnResize.d.ts +1 -0
- package/column-resize/overlay-handle.d.ts +3 -0
- package/column-resize/package.json +5 -6
- package/column-resize/resizable.d.ts +3 -0
- package/column-resize/resize-strategy.d.ts +7 -0
- package/core/datetime/datetime.module.d.ts +8 -0
- package/core/datetime/native-datetime-adapter.d.ts +3 -0
- package/core/density/private/_compatibility.scss +74 -0
- package/core/mtxCore.d.ts +1 -0
- package/core/package.json +5 -6
- package/{pipes/public-api.d.ts → core/pipes/index.d.ts} +0 -0
- package/core/pipes/pipes.module.d.ts +8 -0
- package/{pipes → core/pipes}/to-observable.pipe.d.ts +3 -0
- package/core/public-api.d.ts +1 -0
- package/core/style/_elevation.scss +197 -0
- package/core/style/_private.scss +41 -0
- package/core/style/_variables.scss +44 -0
- package/core/style/_vendor-prefixes.scss +60 -0
- package/core/theming/_palette.scss +746 -0
- package/core/theming/_theming.scss +430 -0
- package/core/typography/_typography-utils.scss +101 -0
- package/core/typography/_typography.scss +273 -0
- package/datetimepicker/_datetimepicker-theme.scss +5 -5
- package/datetimepicker/calendar-body.d.ts +3 -0
- package/datetimepicker/calendar-body.scss +5 -4
- package/datetimepicker/calendar.d.ts +4 -1
- package/datetimepicker/clock.d.ts +3 -0
- package/datetimepicker/datetimepicker-input.d.ts +3 -0
- package/datetimepicker/datetimepicker-module.d.ts +18 -0
- package/datetimepicker/datetimepicker-toggle.d.ts +5 -0
- package/datetimepicker/datetimepicker-types.d.ts +1 -0
- package/datetimepicker/datetimepicker.d.ts +7 -2
- package/datetimepicker/month-view.d.ts +4 -1
- package/datetimepicker/mtxDatetimepicker.d.ts +1 -0
- package/datetimepicker/multi-year-view.d.ts +4 -1
- package/datetimepicker/package.json +5 -6
- package/datetimepicker/public-api.d.ts +1 -0
- package/datetimepicker/year-view.d.ts +4 -1
- package/dialog/dialog.component.d.ts +3 -0
- package/dialog/dialog.d.ts +3 -0
- package/dialog/dialog.module.d.ts +10 -0
- package/dialog/mtxDialog.d.ts +1 -0
- package/dialog/package.json +5 -6
- package/esm2020/alert/alert.component.mjs +52 -0
- package/esm2020/alert/alert.module.mjs +18 -0
- package/{esm2015/alert/mtxAlert.js → esm2020/alert/mtxAlert.mjs} +0 -0
- package/{esm2015/alert/public-api.js → esm2020/alert/public-api.mjs} +0 -0
- package/esm2020/button/button-loading.directive.mjs +79 -0
- package/esm2020/button/button.module.mjs +20 -0
- package/{esm2015/button/mtxButton.js → esm2020/button/mtxButton.mjs} +0 -0
- package/{esm2015/button/public-api.js → esm2020/button/public-api.mjs} +0 -0
- package/esm2020/checkbox-group/checkbox-group.component.mjs +234 -0
- package/{esm2015/checkbox-group/checkbox-group.interface.js → esm2020/checkbox-group/checkbox-group.interface.mjs} +0 -0
- package/esm2020/checkbox-group/checkbox-group.module.mjs +21 -0
- package/{esm2015/checkbox-group/mtxCheckboxGroup.js → esm2020/checkbox-group/mtxCheckboxGroup.mjs} +0 -0
- package/{esm2015/checkbox-group/public-api.js → esm2020/checkbox-group/public-api.mjs} +0 -0
- package/{esm2015/colorpicker/colorpicker-animations.js → esm2020/colorpicker/colorpicker-animations.mjs} +0 -0
- package/esm2020/colorpicker/colorpicker-input.mjs +228 -0
- package/esm2020/colorpicker/colorpicker-module.mjs +65 -0
- package/esm2020/colorpicker/colorpicker-toggle.mjs +90 -0
- package/esm2020/colorpicker/colorpicker.mjs +363 -0
- package/{esm2015/colorpicker/mtxColorpicker.js → esm2020/colorpicker/mtxColorpicker.mjs} +0 -0
- package/{esm2015/colorpicker/public-api.js → esm2020/colorpicker/public-api.mjs} +0 -0
- package/esm2020/column-resize/column-resize-directives/column-resize-flex.mjs +45 -0
- package/esm2020/column-resize/column-resize-directives/column-resize.mjs +45 -0
- package/{esm2015/column-resize/column-resize-directives/constants.js → esm2020/column-resize/column-resize-directives/constants.mjs} +0 -0
- package/esm2020/column-resize/column-resize-module.mjs +28 -0
- package/esm2020/column-resize/column-resize-notifier.mjs +47 -0
- package/esm2020/column-resize/column-resize.mjs +82 -0
- package/esm2020/column-resize/column-size-store.mjs +20 -0
- package/esm2020/column-resize/event-dispatcher.mjs +67 -0
- package/{esm2015/column-resize/mtxColumnResize.js → esm2020/column-resize/mtxColumnResize.mjs} +0 -0
- package/esm2020/column-resize/overlay-handle.mjs +146 -0
- package/{esm2015/column-resize/polyfill.js → esm2020/column-resize/polyfill.mjs} +0 -0
- package/{esm2015/column-resize/public-api.js → esm2020/column-resize/public-api.mjs} +0 -0
- package/esm2020/column-resize/resizable.mjs +199 -0
- package/{esm2015/column-resize/resize-ref.js → esm2020/column-resize/resize-ref.mjs} +0 -0
- package/esm2020/column-resize/resize-strategy.mjs +232 -0
- package/{esm2015/column-resize/selectors.js → esm2020/column-resize/selectors.mjs} +0 -0
- package/{esm2015/core/datetime/datetime-adapter.js → esm2020/core/datetime/datetime-adapter.mjs} +0 -0
- package/{esm2015/core/datetime/datetime-formats.js → esm2020/core/datetime/datetime-formats.mjs} +0 -0
- package/esm2020/core/datetime/datetime.module.mjs +42 -0
- package/{esm2015/core/datetime/index.js → esm2020/core/datetime/index.mjs} +0 -0
- package/esm2020/core/datetime/native-datetime-adapter.mjs +138 -0
- package/{esm2015/core/datetime/native-datetime-formats.js → esm2020/core/datetime/native-datetime-formats.mjs} +0 -0
- package/{esm2015/core/mtxCore.js → esm2020/core/mtxCore.mjs} +0 -0
- package/esm2020/core/pipes/index.mjs +3 -0
- package/esm2020/core/pipes/pipes.module.mjs +18 -0
- package/esm2020/core/pipes/to-observable.pipe.mjs +15 -0
- package/{esm2015/core/public-api.js → esm2020/core/public-api.mjs} +2 -1
- package/esm2020/datetimepicker/calendar-body.mjs +78 -0
- package/esm2020/datetimepicker/calendar.mjs +618 -0
- package/esm2020/datetimepicker/clock.mjs +277 -0
- package/{esm2015/datetimepicker/datetimepicker-animations.js → esm2020/datetimepicker/datetimepicker-animations.mjs} +0 -0
- package/{esm2015/datetimepicker/datetimepicker-errors.js → esm2020/datetimepicker/datetimepicker-errors.mjs} +0 -0
- package/{esm2015/datetimepicker/datetimepicker-filtertype.js → esm2020/datetimepicker/datetimepicker-filtertype.mjs} +0 -0
- package/esm2020/datetimepicker/datetimepicker-input.mjs +344 -0
- package/esm2020/datetimepicker/datetimepicker-module.mjs +75 -0
- package/esm2020/datetimepicker/datetimepicker-toggle.mjs +94 -0
- package/esm2020/datetimepicker/datetimepicker-types.mjs +2 -0
- package/esm2020/datetimepicker/datetimepicker.mjs +492 -0
- package/esm2020/datetimepicker/month-view.mjs +148 -0
- package/{esm2015/datetimepicker/mtxDatetimepicker.js → esm2020/datetimepicker/mtxDatetimepicker.mjs} +0 -0
- package/esm2020/datetimepicker/multi-year-view.mjs +214 -0
- package/{esm2015/datetimepicker/public-api.js → esm2020/datetimepicker/public-api.mjs} +2 -1
- package/esm2020/datetimepicker/year-view.mjs +138 -0
- package/{esm2015/dialog/dialog-config.js → esm2020/dialog/dialog-config.mjs} +0 -0
- package/esm2020/dialog/dialog.component.mjs +33 -0
- package/esm2020/dialog/dialog.mjs +74 -0
- package/esm2020/dialog/dialog.module.mjs +24 -0
- package/{esm2015/dialog/mtxDialog.js → esm2020/dialog/mtxDialog.mjs} +0 -0
- package/{esm2015/dialog/public-api.js → esm2020/dialog/public-api.mjs} +0 -0
- package/esm2020/form-group/form-group.component.mjs +37 -0
- package/esm2020/form-group/form-group.module.mjs +18 -0
- package/{esm2015/form-group/mtxFormGroup.js → esm2020/form-group/mtxFormGroup.mjs} +0 -0
- package/{esm2015/form-group/public-api.js → esm2020/form-group/public-api.mjs} +0 -0
- package/esm2020/grid/cell.component.mjs +108 -0
- package/esm2020/grid/column-menu.component.mjs +95 -0
- package/esm2020/grid/column-resize/column-resize-directives/column-resize-flex.mjs +37 -0
- package/esm2020/grid/column-resize/column-resize-directives/column-resize.mjs +37 -0
- package/{esm2015/grid/column-resize/column-resize-directives/common.js → esm2020/grid/column-resize/column-resize-directives/common.mjs} +0 -0
- package/esm2020/grid/column-resize/column-resize-module.mjs +42 -0
- package/esm2020/grid/column-resize/overlay-handle.mjs +60 -0
- package/{esm2015/grid/column-resize/resizable-directives/common.js → esm2020/grid/column-resize/resizable-directives/common.mjs} +0 -0
- package/esm2020/grid/column-resize/resizable-directives/resizable.mjs +62 -0
- package/esm2020/grid/column-resize/resize-strategy.mjs +42 -0
- package/esm2020/grid/expansion-toggle.directive.mjs +64 -0
- package/esm2020/grid/grid.component.mjs +556 -0
- package/{esm2015/grid/grid.interface.js → esm2020/grid/grid.interface.mjs} +0 -0
- package/esm2020/grid/grid.module.mjs +117 -0
- package/esm2020/grid/grid.service.mjs +44 -0
- package/{esm2015/grid/mtxGrid.js → esm2020/grid/mtxGrid.mjs} +0 -0
- package/esm2020/grid/public-api.mjs +16 -0
- package/esm2020/loader/loader.component.mjs +63 -0
- package/esm2020/loader/loader.module.mjs +20 -0
- package/{esm2015/loader/mtxLoader.js → esm2020/loader/mtxLoader.mjs} +0 -0
- package/{esm2015/loader/public-api.js → esm2020/loader/public-api.mjs} +0 -0
- package/esm2020/ng-matero-extensions.mjs +5 -0
- package/{esm2015/popover/mtxPopover.js → esm2020/popover/mtxPopover.mjs} +0 -0
- package/{esm2015/popover/popover-animations.js → esm2020/popover/popover-animations.mjs} +0 -0
- package/{esm2015/popover/popover-errors.js → esm2020/popover/popover-errors.mjs} +0 -0
- package/{esm2015/popover/popover-interfaces.js → esm2020/popover/popover-interfaces.mjs} +0 -0
- package/esm2020/popover/popover-module.mjs +22 -0
- package/esm2020/popover/popover-target.mjs +17 -0
- package/esm2020/popover/popover-trigger.mjs +441 -0
- package/{esm2015/popover/popover-types.js → esm2020/popover/popover-types.mjs} +0 -0
- package/esm2020/popover/popover.mjs +334 -0
- package/{esm2015/popover/public-api.js → esm2020/popover/public-api.mjs} +0 -0
- package/{esm2015/progress/mtxProgress.js → esm2020/progress/mtxProgress.mjs} +0 -0
- package/esm2020/progress/progress.component.mjs +55 -0
- package/esm2020/progress/progress.module.mjs +18 -0
- package/{esm2015/progress/public-api.js → esm2020/progress/public-api.mjs} +0 -0
- package/esm2020/public-api.mjs +5 -0
- package/{esm2015/select/mtxSelect.js → esm2020/select/mtxSelect.mjs} +0 -0
- package/{esm2015/select/option.component.js → esm2020/select/option.component.mjs} +18 -26
- package/{esm2015/select/public-api.js → esm2020/select/public-api.mjs} +0 -0
- package/esm2020/select/select.component.mjs +459 -0
- package/esm2020/select/select.module.mjs +74 -0
- package/esm2020/select/templates.directive.mjs +124 -0
- package/{esm2015/slider/mtxSlider.js → esm2020/slider/mtxSlider.mjs} +0 -0
- package/{esm2015/slider/public-api.js → esm2020/slider/public-api.mjs} +0 -0
- package/esm2020/slider/slider-module.mjs +19 -0
- package/esm2020/slider/slider.mjs +1115 -0
- package/{esm2015/split/interface.js → esm2020/split/interface.mjs} +0 -0
- package/{esm2015/split/mtxSplit.js → esm2020/split/mtxSplit.mjs} +0 -0
- package/{esm2015/split/public-api.js → esm2020/split/public-api.mjs} +0 -0
- package/esm2020/split/split-pane.directive.mjs +149 -0
- package/esm2020/split/split.component.mjs +619 -0
- package/esm2020/split/split.module.mjs +19 -0
- package/{esm2015/split/utils.js → esm2020/split/utils.mjs} +0 -0
- package/{esm2015/text3d/mtxText3d.js → esm2020/text3d/mtxText3d.mjs} +0 -0
- package/{esm2015/text3d/public-api.js → esm2020/text3d/public-api.mjs} +0 -0
- package/esm2020/text3d/text3d.component.mjs +45 -0
- package/esm2020/text3d/text3d.module.mjs +18 -0
- package/{esm2015/tooltip/mtxTooltip.js → esm2020/tooltip/mtxTooltip.mjs} +0 -0
- package/{esm2015/tooltip/public-api.js → esm2020/tooltip/public-api.mjs} +0 -0
- package/{esm2015/tooltip/tooltip-animations.js → esm2020/tooltip/tooltip-animations.mjs} +0 -0
- package/esm2020/tooltip/tooltip-module.mjs +23 -0
- package/esm2020/tooltip/tooltip.mjs +674 -0
- package/fesm2015/mtxAlert.mjs +74 -0
- package/fesm2015/mtxAlert.mjs.map +1 -0
- package/fesm2015/mtxButton.mjs +102 -0
- package/fesm2015/mtxButton.mjs.map +1 -0
- package/fesm2015/mtxCheckboxGroup.mjs +257 -0
- package/fesm2015/mtxCheckboxGroup.mjs.map +1 -0
- package/fesm2015/mtxColorpicker.mjs +754 -0
- package/fesm2015/mtxColorpicker.mjs.map +1 -0
- package/fesm2015/{mtxColumnResize.js → mtxColumnResize.mjs} +108 -145
- package/fesm2015/mtxColumnResize.mjs.map +1 -0
- package/fesm2015/mtxCore.mjs +362 -0
- package/fesm2015/mtxCore.mjs.map +1 -0
- package/fesm2015/mtxDatetimepicker.mjs +2474 -0
- package/fesm2015/mtxDatetimepicker.mjs.map +1 -0
- package/fesm2015/mtxDialog.mjs +128 -0
- package/fesm2015/mtxDialog.mjs.map +1 -0
- package/fesm2015/mtxFormGroup.mjs +59 -0
- package/fesm2015/mtxFormGroup.mjs.map +1 -0
- package/fesm2015/mtxGrid.mjs +1271 -0
- package/fesm2015/mtxGrid.mjs.map +1 -0
- package/fesm2015/mtxLoader.mjs +87 -0
- package/fesm2015/mtxLoader.mjs.map +1 -0
- package/fesm2015/mtxPopover.mjs +865 -0
- package/fesm2015/mtxPopover.mjs.map +1 -0
- package/fesm2015/mtxProgress.mjs +77 -0
- package/fesm2015/mtxProgress.mjs.map +1 -0
- package/fesm2015/mtxSelect.mjs +713 -0
- package/fesm2015/mtxSelect.mjs.map +1 -0
- package/fesm2015/mtxSlider.mjs +1139 -0
- package/fesm2015/mtxSlider.mjs.map +1 -0
- package/fesm2015/{mtxSplit.js → mtxSplit.mjs} +75 -85
- package/fesm2015/mtxSplit.mjs.map +1 -0
- package/fesm2015/mtxText3d.mjs +67 -0
- package/fesm2015/mtxText3d.mjs.map +1 -0
- package/fesm2015/{mtxTooltip.js → mtxTooltip.mjs} +83 -86
- package/fesm2015/mtxTooltip.mjs.map +1 -0
- package/fesm2015/ng-matero-extensions.mjs +9 -0
- package/fesm2015/ng-matero-extensions.mjs.map +1 -0
- package/fesm2020/mtxAlert.mjs +74 -0
- package/fesm2020/mtxAlert.mjs.map +1 -0
- package/fesm2020/mtxButton.mjs +102 -0
- package/fesm2020/mtxButton.mjs.map +1 -0
- package/fesm2020/mtxCheckboxGroup.mjs +257 -0
- package/fesm2020/mtxCheckboxGroup.mjs.map +1 -0
- package/{fesm2015/mtxColorpicker.js → fesm2020/mtxColorpicker.mjs} +420 -413
- package/fesm2020/mtxColorpicker.mjs.map +1 -0
- package/fesm2020/mtxColumnResize.mjs +953 -0
- package/fesm2020/mtxColumnResize.mjs.map +1 -0
- package/{fesm2015/mtxCore.js → fesm2020/mtxCore.mjs} +75 -42
- package/fesm2020/mtxCore.mjs.map +1 -0
- package/{fesm2015/mtxDatetimepicker.js → fesm2020/mtxDatetimepicker.mjs} +1300 -1306
- package/fesm2020/mtxDatetimepicker.mjs.map +1 -0
- package/fesm2020/mtxDialog.mjs +129 -0
- package/fesm2020/mtxDialog.mjs.map +1 -0
- package/fesm2020/mtxFormGroup.mjs +59 -0
- package/fesm2020/mtxFormGroup.mjs.map +1 -0
- package/fesm2020/mtxGrid.mjs +1259 -0
- package/fesm2020/mtxGrid.mjs.map +1 -0
- package/fesm2020/mtxLoader.mjs +87 -0
- package/fesm2020/mtxLoader.mjs.map +1 -0
- package/{fesm2015/mtxPopover.js → fesm2020/mtxPopover.mjs} +120 -111
- package/fesm2020/mtxPopover.mjs.map +1 -0
- package/fesm2020/mtxProgress.mjs +77 -0
- package/fesm2020/mtxProgress.mjs.map +1 -0
- package/fesm2020/mtxSelect.mjs +710 -0
- package/fesm2020/mtxSelect.mjs.map +1 -0
- package/{fesm2015/mtxSlider.js → fesm2020/mtxSlider.mjs} +97 -94
- package/fesm2020/mtxSlider.mjs.map +1 -0
- package/fesm2020/mtxSplit.mjs +1007 -0
- package/fesm2020/mtxSplit.mjs.map +1 -0
- package/fesm2020/mtxText3d.mjs +67 -0
- package/fesm2020/mtxText3d.mjs.map +1 -0
- package/fesm2020/mtxTooltip.mjs +718 -0
- package/fesm2020/mtxTooltip.mjs.map +1 -0
- package/fesm2020/ng-matero-extensions.mjs +9 -0
- package/fesm2020/ng-matero-extensions.mjs.map +1 -0
- package/form-group/_form-group-theme.scss +1 -1
- package/form-group/form-group.component.d.ts +3 -0
- package/form-group/form-group.module.d.ts +6 -0
- package/form-group/mtxFormGroup.d.ts +1 -0
- package/form-group/package.json +5 -6
- package/grid/_grid-theme.scss +1 -1
- package/grid/cell.component.d.ts +3 -0
- package/grid/column-menu.component.d.ts +3 -0
- package/grid/column-menu.component.scss +1 -1
- package/grid/column-resize/_column-resize.scss +3 -3
- package/grid/column-resize/column-resize-directives/column-resize-flex.d.ts +3 -0
- package/grid/column-resize/column-resize-directives/column-resize.d.ts +3 -0
- package/grid/column-resize/column-resize-module.d.ts +12 -7
- package/grid/column-resize/overlay-handle.d.ts +3 -0
- package/grid/column-resize/resizable-directives/resizable.d.ts +3 -0
- package/grid/column-resize/resize-strategy.d.ts +3 -0
- package/grid/expansion-toggle.directive.d.ts +3 -0
- package/grid/grid.component.d.ts +20 -1
- package/grid/grid.module.d.ts +26 -0
- package/grid/grid.service.d.ts +3 -0
- package/grid/mtxGrid.d.ts +1 -0
- package/grid/package.json +5 -6
- package/grid/public-api.d.ts +0 -1
- package/loader/_loader-theme.scss +1 -1
- package/loader/loader.component.d.ts +3 -0
- package/loader/loader.module.d.ts +8 -0
- package/loader/mtxLoader.d.ts +1 -0
- package/loader/package.json +5 -6
- package/{extensions.d.ts → ng-matero-extensions.d.ts} +1 -0
- package/package.json +178 -15
- package/popover/_popover-theme.scss +1 -1
- package/popover/mtxPopover.d.ts +1 -0
- package/popover/package.json +5 -6
- package/popover/popover-module.d.ts +10 -0
- package/popover/popover-target.d.ts +3 -0
- package/popover/popover-trigger.d.ts +3 -0
- package/popover/popover.d.ts +3 -0
- package/progress/_progress-theme.scss +2 -2
- package/progress/mtxProgress.d.ts +1 -0
- package/progress/package.json +5 -6
- package/progress/progress.component.d.ts +3 -0
- package/progress/progress.module.d.ts +6 -0
- package/public-api.d.ts +2 -19
- package/select/_select-theme.scss +1 -1
- package/select/mtxSelect.d.ts +1 -0
- package/select/option.component.d.ts +3 -0
- package/select/package.json +5 -6
- package/select/select.component.d.ts +3 -0
- package/select/select.component.scss +1 -1
- package/select/select.module.d.ts +10 -0
- package/select/templates.directive.d.ts +23 -0
- package/slider/_slider-theme.scss +4 -4
- package/slider/mtxSlider.d.ts +1 -0
- package/slider/package.json +5 -6
- package/slider/slider-module.d.ts +7 -0
- package/slider/slider.d.ts +4 -1
- package/slider/slider.scss +7 -7
- package/split/_split-theme.scss +1 -1
- package/split/mtxSplit.d.ts +1 -0
- package/split/package.json +5 -6
- package/split/split-pane.directive.d.ts +3 -0
- package/split/split.component.d.ts +4 -1
- package/split/split.module.d.ts +7 -0
- package/text3d/_text3d-theme.scss +2 -2
- package/text3d/mtxText3d.d.ts +1 -0
- package/text3d/package.json +5 -6
- package/text3d/text3d.component.d.ts +3 -0
- package/text3d/text3d.module.d.ts +6 -0
- package/tooltip/_tooltip-theme.scss +3 -3
- package/tooltip/mtxTooltip.d.ts +1 -0
- package/tooltip/package.json +5 -6
- package/tooltip/tooltip-module.d.ts +10 -0
- package/tooltip/tooltip.d.ts +5 -0
- package/tooltip/tooltip.scss +1 -1
- package/alert/mtxAlert.metadata.json +0 -1
- package/bundles/extensions.umd.js +0 -164
- package/bundles/extensions.umd.js.map +0 -1
- package/bundles/mtxAlert.umd.js +0 -101
- package/bundles/mtxAlert.umd.js.map +0 -1
- package/bundles/mtxButton.umd.js +0 -119
- package/bundles/mtxButton.umd.js.map +0 -1
- package/bundles/mtxCheckboxGroup.umd.js +0 -284
- package/bundles/mtxCheckboxGroup.umd.js.map +0 -1
- package/bundles/mtxColorpicker.umd.js +0 -1123
- package/bundles/mtxColorpicker.umd.js.map +0 -1
- package/bundles/mtxColumnResize.umd.js +0 -1339
- package/bundles/mtxColumnResize.umd.js.map +0 -1
- package/bundles/mtxCore.umd.js +0 -670
- package/bundles/mtxCore.umd.js.map +0 -1
- package/bundles/mtxDatetimepicker.umd.js +0 -3045
- package/bundles/mtxDatetimepicker.umd.js.map +0 -1
- package/bundles/mtxDialog.umd.js +0 -158
- package/bundles/mtxDialog.umd.js.map +0 -1
- package/bundles/mtxFormGroup.umd.js +0 -73
- package/bundles/mtxFormGroup.umd.js.map +0 -1
- package/bundles/mtxGrid.umd.js +0 -1581
- package/bundles/mtxGrid.umd.js.map +0 -1
- package/bundles/mtxLoader.umd.js +0 -107
- package/bundles/mtxLoader.umd.js.map +0 -1
- package/bundles/mtxPipes.umd.js +0 -44
- package/bundles/mtxPipes.umd.js.map +0 -1
- package/bundles/mtxPopover.umd.js +0 -1260
- package/bundles/mtxPopover.umd.js.map +0 -1
- package/bundles/mtxProgress.umd.js +0 -92
- package/bundles/mtxProgress.umd.js.map +0 -1
- package/bundles/mtxSelect.umd.js +0 -1097
- package/bundles/mtxSelect.umd.js.map +0 -1
- package/bundles/mtxSlider.umd.js +0 -1551
- package/bundles/mtxSlider.umd.js.map +0 -1
- package/bundles/mtxSplit.umd.js +0 -1431
- package/bundles/mtxSplit.umd.js.map +0 -1
- package/bundles/mtxText3d.umd.js +0 -84
- package/bundles/mtxText3d.umd.js.map +0 -1
- package/bundles/mtxTooltip.umd.js +0 -1083
- package/bundles/mtxTooltip.umd.js.map +0 -1
- package/button/mtxButton.metadata.json +0 -1
- package/checkbox-group/mtxCheckboxGroup.metadata.json +0 -1
- package/colorpicker/mtxColorpicker.metadata.json +0 -1
- package/column-resize/mtxColumnResize.metadata.json +0 -1
- package/core/mtxCore.metadata.json +0 -1
- package/datetimepicker/mtxDatetimepicker.metadata.json +0 -1
- package/dialog/mtxDialog.metadata.json +0 -1
- package/esm2015/alert/alert.component.js +0 -63
- package/esm2015/alert/alert.module.js +0 -14
- package/esm2015/button/button-loading.directive.js +0 -89
- package/esm2015/button/button.module.js +0 -16
- package/esm2015/checkbox-group/checkbox-group.component.js +0 -235
- package/esm2015/checkbox-group/checkbox-group.module.js +0 -17
- package/esm2015/colorpicker/colorpicker-input.js +0 -228
- package/esm2015/colorpicker/colorpicker-module.js +0 -41
- package/esm2015/colorpicker/colorpicker-toggle.js +0 -97
- package/esm2015/colorpicker/colorpicker.js +0 -372
- package/esm2015/column-resize/column-resize-directives/column-resize-flex.js +0 -54
- package/esm2015/column-resize/column-resize-directives/column-resize.js +0 -54
- package/esm2015/column-resize/column-resize-module.js +0 -24
- package/esm2015/column-resize/column-resize-notifier.js +0 -54
- package/esm2015/column-resize/column-resize.js +0 -80
- package/esm2015/column-resize/column-size-store.js +0 -18
- package/esm2015/column-resize/event-dispatcher.js +0 -75
- package/esm2015/column-resize/overlay-handle.js +0 -144
- package/esm2015/column-resize/resizable.js +0 -197
- package/esm2015/column-resize/resize-strategy.js +0 -245
- package/esm2015/core/datetime/datetime.module.js +0 -32
- package/esm2015/core/datetime/native-datetime-adapter.js +0 -144
- package/esm2015/datetimepicker/calendar-body.js +0 -76
- package/esm2015/datetimepicker/calendar.js +0 -614
- package/esm2015/datetimepicker/clock.js +0 -283
- package/esm2015/datetimepicker/datetimepicker-input.js +0 -336
- package/esm2015/datetimepicker/datetimepicker-module.js +0 -52
- package/esm2015/datetimepicker/datetimepicker-toggle.js +0 -103
- package/esm2015/datetimepicker/datetimepicker.js +0 -490
- package/esm2015/datetimepicker/month-view.js +0 -150
- package/esm2015/datetimepicker/multi-year-view.js +0 -215
- package/esm2015/datetimepicker/year-view.js +0 -141
- package/esm2015/dialog/dialog.component.js +0 -40
- package/esm2015/dialog/dialog.js +0 -81
- package/esm2015/dialog/dialog.module.js +0 -21
- package/esm2015/extensions-experimental.module.js +0 -13
- package/esm2015/extensions.js +0 -5
- package/esm2015/extensions.module.js +0 -40
- package/esm2015/form-group/form-group.component.js +0 -40
- package/esm2015/form-group/form-group.module.js +0 -14
- package/esm2015/grid/cell-selection.directive.js +0 -62
- package/esm2015/grid/cell.component.js +0 -115
- package/esm2015/grid/column-menu.component.js +0 -72
- package/esm2015/grid/column-resize/column-resize-directives/column-resize-flex.js +0 -47
- package/esm2015/grid/column-resize/column-resize-directives/column-resize.js +0 -47
- package/esm2015/grid/column-resize/column-resize-module.js +0 -36
- package/esm2015/grid/column-resize/overlay-handle.js +0 -68
- package/esm2015/grid/column-resize/resizable-directives/resizable.js +0 -75
- package/esm2015/grid/column-resize/resize-strategy.js +0 -45
- package/esm2015/grid/expansion-toggle.directive.js +0 -62
- package/esm2015/grid/grid.component.js +0 -418
- package/esm2015/grid/grid.module.js +0 -69
- package/esm2015/grid/grid.service.js +0 -50
- package/esm2015/grid/public-api.js +0 -17
- package/esm2015/loader/loader.component.js +0 -69
- package/esm2015/loader/loader.module.js +0 -16
- package/esm2015/pipes/mtxPipes.js +0 -5
- package/esm2015/pipes/pipes.module.js +0 -14
- package/esm2015/pipes/public-api.js +0 -3
- package/esm2015/pipes/to-observable.pipe.js +0 -12
- package/esm2015/popover/popover-module.js +0 -18
- package/esm2015/popover/popover-target.js +0 -24
- package/esm2015/popover/popover-trigger.js +0 -434
- package/esm2015/popover/popover.js +0 -326
- package/esm2015/progress/progress.component.js +0 -54
- package/esm2015/progress/progress.module.js +0 -14
- package/esm2015/public-api.js +0 -23
- package/esm2015/select/select.component.js +0 -380
- package/esm2015/select/select.module.js +0 -46
- package/esm2015/select/templates.directive.js +0 -211
- package/esm2015/slider/slider-module.js +0 -15
- package/esm2015/slider/slider.js +0 -1115
- package/esm2015/split/split-pane.directive.js +0 -156
- package/esm2015/split/split.component.js +0 -624
- package/esm2015/split/split.module.js +0 -15
- package/esm2015/text3d/text3d.component.js +0 -45
- package/esm2015/text3d/text3d.module.js +0 -14
- package/esm2015/tooltip/tooltip-module.js +0 -20
- package/esm2015/tooltip/tooltip.js +0 -683
- package/extensions-experimental.module.d.ts +0 -2
- package/extensions.metadata.json +0 -1
- package/extensions.module.d.ts +0 -2
- package/fesm2015/extensions.js +0 -80
- package/fesm2015/extensions.js.map +0 -1
- package/fesm2015/mtxAlert.js +0 -82
- package/fesm2015/mtxAlert.js.map +0 -1
- package/fesm2015/mtxButton.js +0 -108
- package/fesm2015/mtxButton.js.map +0 -1
- package/fesm2015/mtxCheckboxGroup.js +0 -255
- package/fesm2015/mtxCheckboxGroup.js.map +0 -1
- package/fesm2015/mtxColorpicker.js.map +0 -1
- package/fesm2015/mtxColumnResize.js.map +0 -1
- package/fesm2015/mtxCore.js.map +0 -1
- package/fesm2015/mtxDatetimepicker.js.map +0 -1
- package/fesm2015/mtxDialog.js +0 -141
- package/fesm2015/mtxDialog.js.map +0 -1
- package/fesm2015/mtxFormGroup.js +0 -59
- package/fesm2015/mtxFormGroup.js.map +0 -1
- package/fesm2015/mtxGrid.js +0 -1186
- package/fesm2015/mtxGrid.js.map +0 -1
- package/fesm2015/mtxLoader.js +0 -90
- package/fesm2015/mtxLoader.js.map +0 -1
- package/fesm2015/mtxPipes.js +0 -31
- package/fesm2015/mtxPipes.js.map +0 -1
- package/fesm2015/mtxPopover.js.map +0 -1
- package/fesm2015/mtxProgress.js +0 -73
- package/fesm2015/mtxProgress.js.map +0 -1
- package/fesm2015/mtxSelect.js +0 -700
- package/fesm2015/mtxSelect.js.map +0 -1
- package/fesm2015/mtxSlider.js.map +0 -1
- package/fesm2015/mtxSplit.js.map +0 -1
- package/fesm2015/mtxText3d.js +0 -64
- package/fesm2015/mtxText3d.js.map +0 -1
- package/fesm2015/mtxTooltip.js.map +0 -1
- package/form-group/mtxFormGroup.metadata.json +0 -1
- package/grid/cell-selection.directive.d.ts +0 -17
- package/grid/mtxGrid.metadata.json +0 -1
- package/loader/mtxLoader.metadata.json +0 -1
- package/pipes/mtxPipes.d.ts +0 -4
- package/pipes/mtxPipes.metadata.json +0 -1
- package/pipes/package.json +0 -11
- package/pipes/pipes.module.d.ts +0 -2
- package/popover/mtxPopover.metadata.json +0 -1
- package/progress/mtxProgress.metadata.json +0 -1
- package/select/mtxSelect.metadata.json +0 -1
- package/slider/mtxSlider.metadata.json +0 -1
- package/split/mtxSplit.metadata.json +0 -1
- package/text3d/mtxText3d.metadata.json +0 -1
- package/tooltip/mtxTooltip.metadata.json +0 -1
package/README.md
CHANGED
|
@@ -23,21 +23,7 @@ $ npm install @ng-matero/extensions --save
|
|
|
23
23
|
|
|
24
24
|
## Setup
|
|
25
25
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
```ts
|
|
29
|
-
import { MaterialExtensionsModule, MaterialExtensionsExperimentalModule } from '@ng-matero/extensions';
|
|
30
|
-
|
|
31
|
-
@NgModule({
|
|
32
|
-
...
|
|
33
|
-
imports: [MaterialExtensionsModule, MaterialExtensionsExperimentalModule, ...],
|
|
34
|
-
...
|
|
35
|
-
})
|
|
36
|
-
export class YourAppModule {
|
|
37
|
-
}
|
|
38
|
-
```
|
|
39
|
-
|
|
40
|
-
Alternatively you could only import modules you need, e.g. data-grid and select.
|
|
26
|
+
Import the modules you need, e.g. data-grid and select.
|
|
41
27
|
|
|
42
28
|
```ts
|
|
43
29
|
import { MtxGridModule } from '@ng-matero/extensions/grid';
|
|
@@ -57,7 +43,7 @@ export class YourAppModule {
|
|
|
57
43
|
After import modules, you must define a theme. [More details about theming](https://material.angular.io/guide/theming).
|
|
58
44
|
|
|
59
45
|
```scss
|
|
60
|
-
@use '
|
|
46
|
+
@use '@ng-matero/extensions' as mtx;
|
|
61
47
|
|
|
62
48
|
@include mtx.all-component-themes($theme);
|
|
63
49
|
@include mtx.all-experimental-component-themes($theme);
|
package/_all-color.scss
CHANGED
package/_index.scss
CHANGED
package/_theming.scss
CHANGED
package/alert/_alert-theme.scss
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@use 'sass:map';
|
|
2
|
-
@use '
|
|
3
|
-
@use '
|
|
2
|
+
@use '../core/theming/theming';
|
|
3
|
+
@use '../core/theming/palette';
|
|
4
4
|
|
|
5
5
|
@mixin color($config-or-theme) {
|
|
6
6
|
$config: theming.get-color-config($config-or-theme);
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { EventEmitter, ChangeDetectorRef } from '@angular/core';
|
|
2
2
|
import { BooleanInput } from '@angular/cdk/coercion';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare type MtxAlertType = 'default' | 'info' | 'success' | 'warning' | 'danger';
|
|
4
5
|
export declare class MtxAlertComponent {
|
|
5
6
|
private _changeDetectorRef;
|
|
@@ -17,4 +18,6 @@ export declare class MtxAlertComponent {
|
|
|
17
18
|
constructor(_changeDetectorRef: ChangeDetectorRef);
|
|
18
19
|
_onClosed(): void;
|
|
19
20
|
static ngAcceptInputType_dismissible: BooleanInput;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxAlertComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MtxAlertComponent, "mtx-alert", ["mtxAlert"], { "type": "type"; "dismissible": "dismissible"; "elevation": "elevation"; }, { "closed": "closed"; }, never, ["*"]>;
|
|
20
23
|
}
|
package/alert/alert.module.d.ts
CHANGED
|
@@ -1,2 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./alert.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
1
4
|
export declare class MtxAlertModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxAlertModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MtxAlertModule, [typeof i1.MtxAlertComponent], [typeof i2.CommonModule], [typeof i1.MtxAlertComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MtxAlertModule>;
|
|
2
8
|
}
|
package/alert/mtxAlert.d.ts
CHANGED
package/alert/package.json
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"fesm2015": "../fesm2015/mtxAlert.
|
|
2
|
+
"module": "../fesm2015/mtxAlert.mjs",
|
|
3
|
+
"es2020": "../fesm2020/mtxAlert.mjs",
|
|
4
|
+
"esm2020": "../esm2020/alert/mtxAlert.mjs",
|
|
5
|
+
"fesm2020": "../fesm2020/mtxAlert.mjs",
|
|
6
|
+
"fesm2015": "../fesm2015/mtxAlert.mjs",
|
|
7
7
|
"typings": "mtxAlert.d.ts",
|
|
8
|
-
"metadata": "mtxAlert.metadata.json",
|
|
9
8
|
"sideEffects": false,
|
|
10
9
|
"name": "@ng-matero/extensions/alert"
|
|
11
10
|
}
|
|
@@ -2,6 +2,7 @@ import { ComponentFactoryResolver, OnChanges, Renderer2, SimpleChanges, ViewCont
|
|
|
2
2
|
import { BooleanInput } from '@angular/cdk/coercion';
|
|
3
3
|
import { ThemePalette } from '@angular/material/core';
|
|
4
4
|
import { MatButton } from '@angular/material/button';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class MatButtonLoadingDirective implements OnChanges {
|
|
6
7
|
private matButton;
|
|
7
8
|
private componentFactoryResolver;
|
|
@@ -22,4 +23,6 @@ export declare class MatButtonLoadingDirective implements OnChanges {
|
|
|
22
23
|
private destroySpinner;
|
|
23
24
|
static ngAcceptInputType_loading: BooleanInput;
|
|
24
25
|
static ngAcceptInputType_disabled: BooleanInput;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MatButtonLoadingDirective, never>;
|
|
27
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MatButtonLoadingDirective, "button[mat-button][loading], button[mat-raised-button][loading], button[mat-stroked-button][loading], button[mat-flat-button][loading], button[mat-icon-button][loading], button[mat-fab][loading], button[mat-mini-fab][loading]", never, { "loading": "loading"; "disabled": "disabled"; "color": "color"; }, {}, never>;
|
|
25
28
|
}
|
|
@@ -1,2 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./button-loading.directive";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/material/button";
|
|
5
|
+
import * as i4 from "@angular/material/progress-spinner";
|
|
1
6
|
export declare class MtxButtonModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxButtonModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MtxButtonModule, [typeof i1.MatButtonLoadingDirective], [typeof i2.CommonModule, typeof i3.MatButtonModule, typeof i4.MatProgressSpinnerModule], [typeof i1.MatButtonLoadingDirective]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MtxButtonModule>;
|
|
2
10
|
}
|
package/button/mtxButton.d.ts
CHANGED
package/button/package.json
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"fesm2015": "../fesm2015/mtxButton.
|
|
2
|
+
"module": "../fesm2015/mtxButton.mjs",
|
|
3
|
+
"es2020": "../fesm2020/mtxButton.mjs",
|
|
4
|
+
"esm2020": "../esm2020/button/mtxButton.mjs",
|
|
5
|
+
"fesm2020": "../fesm2020/mtxButton.mjs",
|
|
6
|
+
"fesm2015": "../fesm2015/mtxButton.mjs",
|
|
7
7
|
"typings": "mtxButton.d.ts",
|
|
8
|
-
"metadata": "mtxButton.metadata.json",
|
|
9
8
|
"sideEffects": false,
|
|
10
9
|
"name": "@ng-matero/extensions/button"
|
|
11
10
|
}
|
|
@@ -4,6 +4,7 @@ import { BooleanInput } from '@angular/cdk/coercion';
|
|
|
4
4
|
import { MatCheckbox, MatCheckboxChange } from '@angular/material/checkbox';
|
|
5
5
|
import { MtxCheckboxGroupOption } from './checkbox-group.interface';
|
|
6
6
|
import { FocusMonitor } from '@angular/cdk/a11y';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
7
8
|
export declare class MtxCheckboxBase {
|
|
8
9
|
label?: any;
|
|
9
10
|
value?: any;
|
|
@@ -77,4 +78,6 @@ export declare class MtxCheckboxGroupComponent implements AfterViewInit, OnDestr
|
|
|
77
78
|
_updateMasterCheckboxState(e: MatCheckboxChange, index: number): void;
|
|
78
79
|
static ngAcceptInputType_showSelectAll: BooleanInput;
|
|
79
80
|
static ngAcceptInputType_disabled: BooleanInput;
|
|
81
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxCheckboxGroupComponent, never>;
|
|
82
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MtxCheckboxGroupComponent, "mtx-checkbox-group", ["mtxCheckboxGroup"], { "items": "items"; "bindLabel": "bindLabel"; "bindValue": "bindValue"; "showSelectAll": "showSelectAll"; "selectAllLabel": "selectAllLabel"; "compareWith": "compareWith"; "disabled": "disabled"; }, { "change": "change"; }, ["_checkboxes"], never>;
|
|
80
83
|
}
|
|
@@ -1,2 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./checkbox-group.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/forms";
|
|
5
|
+
import * as i4 from "@angular/material/checkbox";
|
|
6
|
+
import * as i5 from "@ng-matero/extensions/core";
|
|
1
7
|
export declare class MtxCheckboxGroupModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxCheckboxGroupModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MtxCheckboxGroupModule, [typeof i1.MtxCheckboxGroupComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.MatCheckboxModule, typeof i5.MtxPipesModule], [typeof i1.MtxCheckboxGroupComponent, typeof i5.MtxPipesModule]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MtxCheckboxGroupModule>;
|
|
2
11
|
}
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"fesm2015": "../fesm2015/mtxCheckboxGroup.
|
|
2
|
+
"module": "../fesm2015/mtxCheckboxGroup.mjs",
|
|
3
|
+
"es2020": "../fesm2020/mtxCheckboxGroup.mjs",
|
|
4
|
+
"esm2020": "../esm2020/checkbox-group/mtxCheckboxGroup.mjs",
|
|
5
|
+
"fesm2020": "../fesm2020/mtxCheckboxGroup.mjs",
|
|
6
|
+
"fesm2015": "../fesm2015/mtxCheckboxGroup.mjs",
|
|
7
7
|
"typings": "mtxCheckboxGroup.d.ts",
|
|
8
|
-
"metadata": "mtxCheckboxGroup.metadata.json",
|
|
9
8
|
"sideEffects": false,
|
|
10
9
|
"name": "@ng-matero/extensions/checkbox-group"
|
|
11
10
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@use 'sass:map';
|
|
2
|
-
@use '
|
|
3
|
-
@use '
|
|
2
|
+
@use '../core/theming/theming';
|
|
3
|
+
@use '../core/theming/palette';
|
|
4
4
|
|
|
5
5
|
@mixin color($config-or-theme) {
|
|
6
6
|
$config: theming.get-color-config($config-or-theme);
|
|
@@ -4,6 +4,7 @@ import { AbstractControl, ControlValueAccessor, ValidationErrors } from '@angula
|
|
|
4
4
|
import { ThemePalette } from '@angular/material/core';
|
|
5
5
|
import { MatFormField } from '@angular/material/form-field';
|
|
6
6
|
import { MtxColorpicker } from './colorpicker';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
7
8
|
export declare class MtxColorPickerInputEvent {
|
|
8
9
|
/** Reference to the colorpicker input component that emitted the event. */
|
|
9
10
|
target: MtxColorpickerInput;
|
|
@@ -86,4 +87,6 @@ export declare class MtxColorpickerInput implements ControlValueAccessor, AfterV
|
|
|
86
87
|
private _formatValue;
|
|
87
88
|
static ngAcceptInputType_value: any;
|
|
88
89
|
static ngAcceptInputType_disabled: BooleanInput;
|
|
90
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxColorpickerInput, [null, { optional: true; }]>;
|
|
91
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxColorpickerInput, "input[mtxColorpicker]", ["mtxColorpickerInput"], { "mtxColorpicker": "mtxColorpicker"; "disabled": "disabled"; "value": "value"; "format": "format"; }, { "colorChange": "colorChange"; "colorInput": "colorInput"; }, never>;
|
|
89
92
|
}
|
|
@@ -1,2 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./colorpicker";
|
|
3
|
+
import * as i2 from "./colorpicker-input";
|
|
4
|
+
import * as i3 from "./colorpicker-toggle";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
6
|
+
import * as i5 from "@angular/cdk/overlay";
|
|
7
|
+
import * as i6 from "@angular/cdk/a11y";
|
|
8
|
+
import * as i7 from "@angular/cdk/portal";
|
|
9
|
+
import * as i8 from "@angular/material/button";
|
|
10
|
+
import * as i9 from "ngx-color/chrome";
|
|
1
11
|
export declare class MtxColorpickerModule {
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxColorpickerModule, never>;
|
|
13
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MtxColorpickerModule, [typeof i1.MtxColorpicker, typeof i1.MtxColorpickerContent, typeof i2.MtxColorpickerInput, typeof i3.MtxColorpickerToggle, typeof i3.MtxColorpickerToggleIcon], [typeof i4.CommonModule, typeof i5.OverlayModule, typeof i6.A11yModule, typeof i7.PortalModule, typeof i8.MatButtonModule, typeof i9.ColorChromeModule], [typeof i1.MtxColorpicker, typeof i1.MtxColorpickerContent, typeof i2.MtxColorpickerInput, typeof i3.MtxColorpickerToggle, typeof i3.MtxColorpickerToggleIcon]>;
|
|
14
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MtxColorpickerModule>;
|
|
2
15
|
}
|
|
@@ -2,8 +2,11 @@ import { BooleanInput } from '@angular/cdk/coercion';
|
|
|
2
2
|
import { AfterContentInit, ChangeDetectorRef, OnChanges, OnDestroy, SimpleChanges } from '@angular/core';
|
|
3
3
|
import { MatButton } from '@angular/material/button';
|
|
4
4
|
import { MtxColorpicker } from './colorpicker';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
/** Can be used to override the icon of a `mtxColorpickerToggle`. */
|
|
6
7
|
export declare class MtxColorpickerToggleIcon {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxColorpickerToggleIcon, never>;
|
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxColorpickerToggleIcon, "[mtxColorpickerToggleIcon]", never, {}, {}, never>;
|
|
7
10
|
}
|
|
8
11
|
export declare class MtxColorpickerToggle implements AfterContentInit, OnChanges, OnDestroy {
|
|
9
12
|
private _changeDetectorRef;
|
|
@@ -30,4 +33,6 @@ export declare class MtxColorpickerToggle implements AfterContentInit, OnChanges
|
|
|
30
33
|
private _watchStateChanges;
|
|
31
34
|
static ngAcceptInputType_disabled: BooleanInput;
|
|
32
35
|
static ngAcceptInputType_disableRipple: BooleanInput;
|
|
36
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxColorpickerToggle, never>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MtxColorpickerToggle, "mtx-colorpicker-toggle", ["mtxColorpickerToggle"], { "picker": "for"; "tabIndex": "tabIndex"; "disabled": "disabled"; "disableRipple": "disableRipple"; }, {}, ["_customIcon"], ["[mtxColorpickerToggleIcon]"]>;
|
|
33
38
|
}
|
|
@@ -6,6 +6,7 @@ import { CanColor, ThemePalette } from '@angular/material/core';
|
|
|
6
6
|
import { Subject } from 'rxjs';
|
|
7
7
|
import { ColorFormat, MtxColorpickerInput } from './colorpicker-input';
|
|
8
8
|
import { ColorEvent } from 'ngx-color';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
9
10
|
/** Injection token that determines the scroll handling while the panel is open. */
|
|
10
11
|
export declare const MTX_COLORPICKER_SCROLL_STRATEGY: InjectionToken<() => ScrollStrategy>;
|
|
11
12
|
export declare function MTX_COLORPICKER_SCROLL_STRATEGY_FACTORY(overlay: Overlay): () => ScrollStrategy;
|
|
@@ -19,7 +20,7 @@ export declare const MTX_COLORPICKER_SCROLL_STRATEGY_FACTORY_PROVIDER: {
|
|
|
19
20
|
useFactory: typeof MTX_COLORPICKER_SCROLL_STRATEGY_FACTORY;
|
|
20
21
|
};
|
|
21
22
|
/** @docs-private */
|
|
22
|
-
declare const _MtxColorpickerContentBase: import("@angular/material/core
|
|
23
|
+
declare const _MtxColorpickerContentBase: import("@angular/material/core")._Constructor<CanColor> & import("@angular/material/core")._AbstractConstructor<CanColor> & {
|
|
23
24
|
new (_elementRef: ElementRef): {
|
|
24
25
|
_elementRef: ElementRef;
|
|
25
26
|
};
|
|
@@ -35,6 +36,8 @@ export declare class MtxColorpickerContent extends _MtxColorpickerContentBase im
|
|
|
35
36
|
_startExitAnimation(): void;
|
|
36
37
|
ngOnDestroy(): void;
|
|
37
38
|
getColorString(e: ColorEvent): string;
|
|
39
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxColorpickerContent, never>;
|
|
40
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MtxColorpickerContent, "mtx-colorpicker-content", ["mtxColorpickerContent"], { "color": "color"; }, {}, never, never>;
|
|
38
41
|
}
|
|
39
42
|
export declare class MtxColorpicker implements OnChanges, OnDestroy {
|
|
40
43
|
private _overlay;
|
|
@@ -122,5 +125,7 @@ export declare class MtxColorpicker implements OnChanges, OnDestroy {
|
|
|
122
125
|
/** Gets an observable that will emit when the overlay is supposed to be closed. */
|
|
123
126
|
private _getCloseStream;
|
|
124
127
|
static ngAcceptInputType_disabled: BooleanInput;
|
|
128
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxColorpicker, [null, null, null, null, { optional: true; }, { optional: true; }]>;
|
|
129
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MtxColorpicker, "mtx-colorpicker", ["mtxColorpicker"], { "content": "content"; "disabled": "disabled"; "xPosition": "xPosition"; "yPosition": "yPosition"; "restoreFocus": "restoreFocus"; "opened": "opened"; "color": "color"; "format": "format"; }, { "openedStream": "opened"; "closedStream": "closed"; }, never, never>;
|
|
125
130
|
}
|
|
126
131
|
export {};
|
package/colorpicker/package.json
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"fesm2015": "../fesm2015/mtxColorpicker.
|
|
2
|
+
"module": "../fesm2015/mtxColorpicker.mjs",
|
|
3
|
+
"es2020": "../fesm2020/mtxColorpicker.mjs",
|
|
4
|
+
"esm2020": "../esm2020/colorpicker/mtxColorpicker.mjs",
|
|
5
|
+
"fesm2020": "../fesm2020/mtxColorpicker.mjs",
|
|
6
|
+
"fesm2015": "../fesm2015/mtxColorpicker.mjs",
|
|
7
7
|
"typings": "mtxColorpicker.d.ts",
|
|
8
|
-
"metadata": "mtxColorpicker.metadata.json",
|
|
9
8
|
"sideEffects": false,
|
|
10
9
|
"name": "@ng-matero/extensions/colorpicker"
|
|
11
10
|
}
|
|
@@ -10,6 +10,7 @@ import { CdkTable } from '@angular/cdk/table';
|
|
|
10
10
|
import { ColumnResize } from '../column-resize';
|
|
11
11
|
import { ColumnResizeNotifier, ColumnResizeNotifierSource } from '../column-resize-notifier';
|
|
12
12
|
import { HeaderRowEventDispatcher } from '../event-dispatcher';
|
|
13
|
+
import * as i0 from "@angular/core";
|
|
13
14
|
/**
|
|
14
15
|
* Explicitly enables column resizing for a flexbox-based cdk-table.
|
|
15
16
|
* Individual columns must be annotated specifically.
|
|
@@ -22,4 +23,6 @@ export declare class CdkColumnResizeFlex extends ColumnResize {
|
|
|
22
23
|
protected readonly notifier: ColumnResizeNotifierSource;
|
|
23
24
|
protected readonly table: CdkTable<unknown>;
|
|
24
25
|
constructor(columnResizeNotifier: ColumnResizeNotifier, elementRef: ElementRef<HTMLElement>, eventDispatcher: HeaderRowEventDispatcher, ngZone: NgZone, notifier: ColumnResizeNotifierSource, table: CdkTable<unknown>);
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CdkColumnResizeFlex, never>;
|
|
27
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CdkColumnResizeFlex, "cdk-table[columnResize]", never, {}, {}, never>;
|
|
25
28
|
}
|
|
@@ -10,6 +10,7 @@ import { CdkTable } from '@angular/cdk/table';
|
|
|
10
10
|
import { ColumnResize } from '../column-resize';
|
|
11
11
|
import { ColumnResizeNotifier, ColumnResizeNotifierSource } from '../column-resize-notifier';
|
|
12
12
|
import { HeaderRowEventDispatcher } from '../event-dispatcher';
|
|
13
|
+
import * as i0 from "@angular/core";
|
|
13
14
|
/**
|
|
14
15
|
* Explicitly enables column resizing for a table-based cdk-table.
|
|
15
16
|
* Individual columns must be annotated specifically.
|
|
@@ -22,4 +23,6 @@ export declare class CdkColumnResize extends ColumnResize {
|
|
|
22
23
|
protected readonly notifier: ColumnResizeNotifierSource;
|
|
23
24
|
protected readonly table: CdkTable<unknown>;
|
|
24
25
|
constructor(columnResizeNotifier: ColumnResizeNotifier, elementRef: ElementRef<HTMLElement>, eventDispatcher: HeaderRowEventDispatcher, ngZone: NgZone, notifier: ColumnResizeNotifierSource, table: CdkTable<unknown>);
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CdkColumnResize, never>;
|
|
27
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CdkColumnResize, "table[cdk-table][columnResize]", never, {}, {}, never>;
|
|
25
28
|
}
|
|
@@ -1,13 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
*
|
|
3
|
-
*
|
|
4
|
-
*
|
|
5
|
-
* Use of this source code is governed by an MIT-style license that can be
|
|
6
|
-
* found in the LICENSE file at https://angular.io/license
|
|
7
|
-
*/
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./column-resize-directives/column-resize";
|
|
3
|
+
import * as i2 from "./column-resize-directives/column-resize-flex";
|
|
8
4
|
/**
|
|
9
5
|
* One of two NgModules for use with CdkColumnResize.
|
|
10
6
|
* When using this module, columns are not resizable by default.
|
|
11
7
|
*/
|
|
12
8
|
export declare class CdkColumnResizeModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CdkColumnResizeModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CdkColumnResizeModule, [typeof i1.CdkColumnResize, typeof i2.CdkColumnResizeFlex], never, [typeof i1.CdkColumnResize, typeof i2.CdkColumnResizeFlex]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<CdkColumnResizeModule>;
|
|
13
12
|
}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Copyright Google LLC All Rights Reserved.
|
|
4
|
-
*
|
|
5
|
-
* Use of this source code is governed by an MIT-style license that can be
|
|
6
|
-
* found in the LICENSE file at https://angular.io/license
|
|
7
|
-
*/
|
|
8
1
|
import { Observable, Subject } from 'rxjs';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
9
3
|
/** Indicates the width of a column. */
|
|
10
4
|
export interface ColumnSize {
|
|
11
5
|
/** The ID/name of the column, as defined in CdkColumnDef. */
|
|
@@ -39,6 +33,8 @@ export declare class ColumnResizeNotifierSource {
|
|
|
39
33
|
readonly resizeCompleted: Subject<ColumnSize>;
|
|
40
34
|
/** Triggers a resize action. */
|
|
41
35
|
readonly triggerResize: Subject<ColumnSizeAction>;
|
|
36
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ColumnResizeNotifierSource, never>;
|
|
37
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ColumnResizeNotifierSource>;
|
|
42
38
|
}
|
|
43
39
|
/** Service for triggering column resizes imperatively or being notified of them. */
|
|
44
40
|
export declare class ColumnResizeNotifier {
|
|
@@ -48,4 +44,6 @@ export declare class ColumnResizeNotifier {
|
|
|
48
44
|
constructor(_source: ColumnResizeNotifierSource);
|
|
49
45
|
/** Instantly resizes the specified column. */
|
|
50
46
|
resize(columnId: string, size: number): void;
|
|
47
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ColumnResizeNotifier, never>;
|
|
48
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ColumnResizeNotifier>;
|
|
51
49
|
}
|
|
@@ -9,6 +9,7 @@ import { AfterViewInit, ElementRef, NgZone, OnDestroy } from '@angular/core';
|
|
|
9
9
|
import { Subject } from 'rxjs';
|
|
10
10
|
import { ColumnResizeNotifier, ColumnResizeNotifierSource } from './column-resize-notifier';
|
|
11
11
|
import { HeaderRowEventDispatcher } from './event-dispatcher';
|
|
12
|
+
import * as i0 from "@angular/core";
|
|
12
13
|
/**
|
|
13
14
|
* Base class for ColumnResize directives which attach to mat-table elements to
|
|
14
15
|
* provide common events and services for column resizing.
|
|
@@ -33,4 +34,6 @@ export declare abstract class ColumnResize implements AfterViewInit, OnDestroy {
|
|
|
33
34
|
private _listenForRowHoverEvents;
|
|
34
35
|
private _listenForResizeActivity;
|
|
35
36
|
private _listenForHoverActivity;
|
|
37
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ColumnResize, never>;
|
|
38
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ColumnResize, never, never, {}, {}, never>;
|
|
36
39
|
}
|
|
@@ -1,10 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
* @license
|
|
3
|
-
* Copyright Google LLC All Rights Reserved.
|
|
4
|
-
*
|
|
5
|
-
* Use of this source code is governed by an MIT-style license that can be
|
|
6
|
-
* found in the LICENSE file at https://angular.io/license
|
|
7
|
-
*/
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
8
2
|
/**
|
|
9
3
|
* Can be provided by the host application to enable persistence of column resize state.
|
|
10
4
|
*/
|
|
@@ -13,4 +7,6 @@ export declare abstract class ColumnSizeStore {
|
|
|
13
7
|
abstract getSize(tableId: string, columnId: string): number;
|
|
14
8
|
/** Persists the size of the specified column in the specified table. */
|
|
15
9
|
abstract setSize(tableId: string, columnId: string): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ColumnSizeStore, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ColumnSizeStore>;
|
|
16
12
|
}
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
*/
|
|
8
8
|
import { NgZone } from '@angular/core';
|
|
9
9
|
import { Observable, Subject } from 'rxjs';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
10
11
|
/** Coordinates events between the column resize directives. */
|
|
11
12
|
export declare class HeaderRowEventDispatcher {
|
|
12
13
|
private readonly _ngZone;
|
|
@@ -38,4 +39,6 @@ export declare class HeaderRowEventDispatcher {
|
|
|
38
39
|
*/
|
|
39
40
|
resizeOverlayVisibleForHeaderRow(row: Element): Observable<boolean>;
|
|
40
41
|
private _enterZone;
|
|
42
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderRowEventDispatcher, never>;
|
|
43
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<HeaderRowEventDispatcher>;
|
|
41
44
|
}
|
|
@@ -12,6 +12,7 @@ import { Subject } from 'rxjs';
|
|
|
12
12
|
import { ColumnResizeNotifierSource } from './column-resize-notifier';
|
|
13
13
|
import { HeaderRowEventDispatcher } from './event-dispatcher';
|
|
14
14
|
import { ResizeRef } from './resize-ref';
|
|
15
|
+
import * as i0 from "@angular/core";
|
|
15
16
|
/**
|
|
16
17
|
* Base class for a component shown over the edge of a resizable column that is responsible
|
|
17
18
|
* for handling column resize mouse events and displaying any visible UI on the column edge.
|
|
@@ -37,4 +38,6 @@ export declare abstract class ResizeOverlayHandle implements AfterViewInit, OnDe
|
|
|
37
38
|
private _updateOverlayOffset;
|
|
38
39
|
private _isLtr;
|
|
39
40
|
private _notifyResizeEnded;
|
|
41
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ResizeOverlayHandle, never>;
|
|
42
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ResizeOverlayHandle, never, never, {}, {}, never>;
|
|
40
43
|
}
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"fesm2015": "../fesm2015/mtxColumnResize.
|
|
2
|
+
"module": "../fesm2015/mtxColumnResize.mjs",
|
|
3
|
+
"es2020": "../fesm2020/mtxColumnResize.mjs",
|
|
4
|
+
"esm2020": "../esm2020/column-resize/mtxColumnResize.mjs",
|
|
5
|
+
"fesm2020": "../fesm2020/mtxColumnResize.mjs",
|
|
6
|
+
"fesm2015": "../fesm2015/mtxColumnResize.mjs",
|
|
7
7
|
"typings": "mtxColumnResize.d.ts",
|
|
8
|
-
"metadata": "mtxColumnResize.metadata.json",
|
|
9
8
|
"sideEffects": false,
|
|
10
9
|
"name": "@ng-matero/extensions/column-resize"
|
|
11
10
|
}
|
|
@@ -8,6 +8,7 @@ import { ColumnResize } from './column-resize';
|
|
|
8
8
|
import { ColumnResizeNotifierSource } from './column-resize-notifier';
|
|
9
9
|
import { HeaderRowEventDispatcher } from './event-dispatcher';
|
|
10
10
|
import { ResizeStrategy } from './resize-strategy';
|
|
11
|
+
import * as i0 from "@angular/core";
|
|
11
12
|
/**
|
|
12
13
|
* Base class for Resizable directives which are applied to column headers to make those columns
|
|
13
14
|
* resizable.
|
|
@@ -56,4 +57,6 @@ export declare abstract class Resizable<HandleComponent extends ResizeOverlayHan
|
|
|
56
57
|
private _applyMinWidthPx;
|
|
57
58
|
private _applyMaxWidthPx;
|
|
58
59
|
private _appendInlineHandle;
|
|
60
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<Resizable<any>, never>;
|
|
61
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<Resizable<any>, never, never, {}, {}, never>;
|
|
59
62
|
}
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
import { OnDestroy, Provider } from '@angular/core';
|
|
9
9
|
import { CdkTable, _CoalescedStyleScheduler } from '@angular/cdk/table';
|
|
10
10
|
import { ColumnResize } from './column-resize';
|
|
11
|
+
import * as i0 from "@angular/core";
|
|
11
12
|
/**
|
|
12
13
|
* Provides an implementation for resizing a column.
|
|
13
14
|
* The details of how resizing works for tables for flex mat-tables are quite different.
|
|
@@ -25,6 +26,8 @@ export declare abstract class ResizeStrategy {
|
|
|
25
26
|
abstract applyMaxColumnSize(cssFriendlyColumnName: string, columnHeader: HTMLElement, minSizeInPx: number): void;
|
|
26
27
|
/** Adjusts the width of the table element by the specified delta. */
|
|
27
28
|
protected updateTableWidthAndStickyColumns(delta: number): void;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ResizeStrategy, never>;
|
|
30
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ResizeStrategy>;
|
|
28
31
|
}
|
|
29
32
|
/**
|
|
30
33
|
* The optimially performing resize strategy for <table> elements with table-layout: fixed.
|
|
@@ -41,6 +44,8 @@ export declare class TableLayoutFixedResizeStrategy extends ResizeStrategy {
|
|
|
41
44
|
applyColumnSize(_: string, columnHeader: HTMLElement, sizeInPx: number, previousSizeInPx?: number): void;
|
|
42
45
|
applyMinColumnSize(_: string, columnHeader: HTMLElement, sizeInPx: number): void;
|
|
43
46
|
applyMaxColumnSize(_: string, columnHeader: HTMLElement, sizeInPx: number): void;
|
|
47
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TableLayoutFixedResizeStrategy, never>;
|
|
48
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TableLayoutFixedResizeStrategy>;
|
|
44
49
|
}
|
|
45
50
|
/**
|
|
46
51
|
* The optimally performing resize strategy for flex mat-tables.
|
|
@@ -71,6 +76,8 @@ export declare class CdkFlexTableResizeStrategy extends ResizeStrategy implement
|
|
|
71
76
|
private _getStyleSheet;
|
|
72
77
|
private _getColumnPropertiesMap;
|
|
73
78
|
private _applySizeCss;
|
|
79
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CdkFlexTableResizeStrategy, never>;
|
|
80
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CdkFlexTableResizeStrategy>;
|
|
74
81
|
}
|
|
75
82
|
export declare const TABLE_LAYOUT_FIXED_RESIZE_STRATEGY_PROVIDER: Provider;
|
|
76
83
|
export declare const FLEX_RESIZE_STRATEGY_PROVIDER: Provider;
|
|
@@ -1,4 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/material/core";
|
|
1
3
|
export declare class NativeDatetimeModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NativeDatetimeModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NativeDatetimeModule, never, [typeof i1.NativeDateModule], never>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<NativeDatetimeModule>;
|
|
2
7
|
}
|
|
3
8
|
export declare class MtxNativeDatetimeModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxNativeDatetimeModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MtxNativeDatetimeModule, never, [typeof NativeDatetimeModule, typeof i1.MatNativeDateModule], never>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MtxNativeDatetimeModule>;
|
|
4
12
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { DateAdapter } from '@angular/material/core';
|
|
2
2
|
import { DatetimeAdapter } from './datetime-adapter';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class NativeDatetimeAdapter extends DatetimeAdapter<Date> {
|
|
4
5
|
constructor(matDateLocale: string, _delegate: DateAdapter<Date>);
|
|
5
6
|
clone(date: Date): Date;
|
|
@@ -33,4 +34,6 @@ export declare class NativeDatetimeAdapter extends DatetimeAdapter<Date> {
|
|
|
33
34
|
private _2digit;
|
|
34
35
|
/** Creates a date but allows the month and date to overflow. */
|
|
35
36
|
private _createDateWithOverflow;
|
|
37
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NativeDatetimeAdapter, [{ optional: true; }, null]>;
|
|
38
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<NativeDatetimeAdapter>;
|
|
36
39
|
}
|