@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
|
@@ -0,0 +1,746 @@
|
|
|
1
|
+
@use 'sass:map';
|
|
2
|
+
// Color palettes from the Material Design spec.
|
|
3
|
+
// See https://material.io/design/color/
|
|
4
|
+
//
|
|
5
|
+
// Contrast colors are hard-coded because it is too difficult (probably impossible) to
|
|
6
|
+
// calculate them. These contrast colors are pulled from the public Material Design spec swatches.
|
|
7
|
+
// While the contrast colors in the spec are not prescriptive, we use them for convenience.
|
|
8
|
+
|
|
9
|
+
// @deprecated renamed to $dark-primary-text.
|
|
10
|
+
// @breaking-change 8.0.0
|
|
11
|
+
$black-87-opacity: rgba(black, .87);
|
|
12
|
+
// @deprecated renamed to $light-primary-text.
|
|
13
|
+
// @breaking-change 8.0.0
|
|
14
|
+
$white-87-opacity: rgba(white, .87);
|
|
15
|
+
// @deprecated use $dark-[secondary-text,disabled-text,dividers,focused] instead.
|
|
16
|
+
// @breaking-change 8.0.0
|
|
17
|
+
$black-12-opacity: rgba(black, .12);
|
|
18
|
+
// @deprecated use $light-[secondary-text,disabled-text,dividers,focused] instead.
|
|
19
|
+
// @breaking-change 8.0.0
|
|
20
|
+
$white-12-opacity: rgba(white, .12);
|
|
21
|
+
// @deprecated use $dark-[secondary-text,disabled-text,dividers,focused] instead.
|
|
22
|
+
// @breaking-change 8.0.0
|
|
23
|
+
$black-6-opacity: rgba(black, .06);
|
|
24
|
+
// @deprecated use $light-[secondary-text,disabled-text,dividers,focused] instead.
|
|
25
|
+
// @breaking-change 8.0.0
|
|
26
|
+
$white-6-opacity: rgba(white, .06);
|
|
27
|
+
|
|
28
|
+
$dark-primary-text: rgba(black, .87);
|
|
29
|
+
$dark-secondary-text: rgba(black, .54);
|
|
30
|
+
$dark-disabled-text: rgba(black, .38);
|
|
31
|
+
$dark-dividers: rgba(black, .12);
|
|
32
|
+
$dark-focused: rgba(black, .12);
|
|
33
|
+
$light-primary-text: white;
|
|
34
|
+
$light-secondary-text: rgba(white, .7);
|
|
35
|
+
$light-disabled-text: rgba(white, .5);
|
|
36
|
+
$light-dividers: rgba(white, .12);
|
|
37
|
+
$light-focused: rgba(white, .12);
|
|
38
|
+
|
|
39
|
+
$red-palette: (
|
|
40
|
+
50: #ffebee,
|
|
41
|
+
100: #ffcdd2,
|
|
42
|
+
200: #ef9a9a,
|
|
43
|
+
300: #e57373,
|
|
44
|
+
400: #ef5350,
|
|
45
|
+
500: #f44336,
|
|
46
|
+
600: #e53935,
|
|
47
|
+
700: #d32f2f,
|
|
48
|
+
800: #c62828,
|
|
49
|
+
900: #b71c1c,
|
|
50
|
+
A100: #ff8a80,
|
|
51
|
+
A200: #ff5252,
|
|
52
|
+
A400: #ff1744,
|
|
53
|
+
A700: #d50000,
|
|
54
|
+
contrast: (
|
|
55
|
+
50: $dark-primary-text,
|
|
56
|
+
100: $dark-primary-text,
|
|
57
|
+
200: $dark-primary-text,
|
|
58
|
+
300: $dark-primary-text,
|
|
59
|
+
400: $dark-primary-text,
|
|
60
|
+
500: $light-primary-text,
|
|
61
|
+
600: $light-primary-text,
|
|
62
|
+
700: $light-primary-text,
|
|
63
|
+
800: $light-primary-text,
|
|
64
|
+
900: $light-primary-text,
|
|
65
|
+
A100: $dark-primary-text,
|
|
66
|
+
A200: $light-primary-text,
|
|
67
|
+
A400: $light-primary-text,
|
|
68
|
+
A700: $light-primary-text,
|
|
69
|
+
)
|
|
70
|
+
);
|
|
71
|
+
|
|
72
|
+
$pink-palette: (
|
|
73
|
+
50: #fce4ec,
|
|
74
|
+
100: #f8bbd0,
|
|
75
|
+
200: #f48fb1,
|
|
76
|
+
300: #f06292,
|
|
77
|
+
400: #ec407a,
|
|
78
|
+
500: #e91e63,
|
|
79
|
+
600: #d81b60,
|
|
80
|
+
700: #c2185b,
|
|
81
|
+
800: #ad1457,
|
|
82
|
+
900: #880e4f,
|
|
83
|
+
A100: #ff80ab,
|
|
84
|
+
A200: #ff4081,
|
|
85
|
+
A400: #f50057,
|
|
86
|
+
A700: #c51162,
|
|
87
|
+
contrast: (
|
|
88
|
+
50: $dark-primary-text,
|
|
89
|
+
100: $dark-primary-text,
|
|
90
|
+
200: $dark-primary-text,
|
|
91
|
+
300: $dark-primary-text,
|
|
92
|
+
400: $dark-primary-text,
|
|
93
|
+
500: $light-primary-text,
|
|
94
|
+
600: $light-primary-text,
|
|
95
|
+
700: $light-primary-text,
|
|
96
|
+
800: $light-primary-text,
|
|
97
|
+
900: $light-primary-text,
|
|
98
|
+
A100: $dark-primary-text,
|
|
99
|
+
A200: $light-primary-text,
|
|
100
|
+
A400: $light-primary-text,
|
|
101
|
+
A700: $light-primary-text,
|
|
102
|
+
)
|
|
103
|
+
);
|
|
104
|
+
|
|
105
|
+
$purple-palette: (
|
|
106
|
+
50: #f3e5f5,
|
|
107
|
+
100: #e1bee7,
|
|
108
|
+
200: #ce93d8,
|
|
109
|
+
300: #ba68c8,
|
|
110
|
+
400: #ab47bc,
|
|
111
|
+
500: #9c27b0,
|
|
112
|
+
600: #8e24aa,
|
|
113
|
+
700: #7b1fa2,
|
|
114
|
+
800: #6a1b9a,
|
|
115
|
+
900: #4a148c,
|
|
116
|
+
A100: #ea80fc,
|
|
117
|
+
A200: #e040fb,
|
|
118
|
+
A400: #d500f9,
|
|
119
|
+
A700: #a0f,
|
|
120
|
+
contrast: (
|
|
121
|
+
50: $dark-primary-text,
|
|
122
|
+
100: $dark-primary-text,
|
|
123
|
+
200: $dark-primary-text,
|
|
124
|
+
300: $light-primary-text,
|
|
125
|
+
400: $light-primary-text,
|
|
126
|
+
500: $light-primary-text,
|
|
127
|
+
600: $light-primary-text,
|
|
128
|
+
700: $light-primary-text,
|
|
129
|
+
800: $light-primary-text,
|
|
130
|
+
900: $light-primary-text,
|
|
131
|
+
A100: $dark-primary-text,
|
|
132
|
+
A200: $light-primary-text,
|
|
133
|
+
A400: $light-primary-text,
|
|
134
|
+
A700: $light-primary-text,
|
|
135
|
+
)
|
|
136
|
+
);
|
|
137
|
+
|
|
138
|
+
$deep-purple-palette: (
|
|
139
|
+
50: #ede7f6,
|
|
140
|
+
100: #d1c4e9,
|
|
141
|
+
200: #b39ddb,
|
|
142
|
+
300: #9575cd,
|
|
143
|
+
400: #7e57c2,
|
|
144
|
+
500: #673ab7,
|
|
145
|
+
600: #5e35b1,
|
|
146
|
+
700: #512da8,
|
|
147
|
+
800: #4527a0,
|
|
148
|
+
900: #311b92,
|
|
149
|
+
A100: #b388ff,
|
|
150
|
+
A200: #7c4dff,
|
|
151
|
+
A400: #651fff,
|
|
152
|
+
A700: #6200ea,
|
|
153
|
+
contrast: (
|
|
154
|
+
50: $dark-primary-text,
|
|
155
|
+
100: $dark-primary-text,
|
|
156
|
+
200: $dark-primary-text,
|
|
157
|
+
300: $light-primary-text,
|
|
158
|
+
400: $light-primary-text,
|
|
159
|
+
500: $light-primary-text,
|
|
160
|
+
600: $light-primary-text,
|
|
161
|
+
700: $light-primary-text,
|
|
162
|
+
800: $light-primary-text,
|
|
163
|
+
900: $light-primary-text,
|
|
164
|
+
A100: $dark-primary-text,
|
|
165
|
+
A200: $light-primary-text,
|
|
166
|
+
A400: $light-primary-text,
|
|
167
|
+
A700: $light-primary-text,
|
|
168
|
+
)
|
|
169
|
+
);
|
|
170
|
+
|
|
171
|
+
$indigo-palette: (
|
|
172
|
+
50: #e8eaf6,
|
|
173
|
+
100: #c5cae9,
|
|
174
|
+
200: #9fa8da,
|
|
175
|
+
300: #7986cb,
|
|
176
|
+
400: #5c6bc0,
|
|
177
|
+
500: #3f51b5,
|
|
178
|
+
600: #3949ab,
|
|
179
|
+
700: #303f9f,
|
|
180
|
+
800: #283593,
|
|
181
|
+
900: #1a237e,
|
|
182
|
+
A100: #8c9eff,
|
|
183
|
+
A200: #536dfe,
|
|
184
|
+
A400: #3d5afe,
|
|
185
|
+
A700: #304ffe,
|
|
186
|
+
contrast: (
|
|
187
|
+
50: $dark-primary-text,
|
|
188
|
+
100: $dark-primary-text,
|
|
189
|
+
200: $dark-primary-text,
|
|
190
|
+
300: $light-primary-text,
|
|
191
|
+
400: $light-primary-text,
|
|
192
|
+
500: $light-primary-text,
|
|
193
|
+
600: $light-primary-text,
|
|
194
|
+
700: $light-primary-text,
|
|
195
|
+
800: $light-primary-text,
|
|
196
|
+
900: $light-primary-text,
|
|
197
|
+
A100: $dark-primary-text,
|
|
198
|
+
A200: $light-primary-text,
|
|
199
|
+
A400: $light-primary-text,
|
|
200
|
+
A700: $light-primary-text,
|
|
201
|
+
)
|
|
202
|
+
);
|
|
203
|
+
|
|
204
|
+
$blue-palette: (
|
|
205
|
+
50: #e3f2fd,
|
|
206
|
+
100: #bbdefb,
|
|
207
|
+
200: #90caf9,
|
|
208
|
+
300: #64b5f6,
|
|
209
|
+
400: #42a5f5,
|
|
210
|
+
500: #2196f3,
|
|
211
|
+
600: #1e88e5,
|
|
212
|
+
700: #1976d2,
|
|
213
|
+
800: #1565c0,
|
|
214
|
+
900: #0d47a1,
|
|
215
|
+
A100: #82b1ff,
|
|
216
|
+
A200: #448aff,
|
|
217
|
+
A400: #2979ff,
|
|
218
|
+
A700: #2962ff,
|
|
219
|
+
contrast: (
|
|
220
|
+
50: $dark-primary-text,
|
|
221
|
+
100: $dark-primary-text,
|
|
222
|
+
200: $dark-primary-text,
|
|
223
|
+
300: $dark-primary-text,
|
|
224
|
+
400: $dark-primary-text,
|
|
225
|
+
500: $light-primary-text,
|
|
226
|
+
600: $light-primary-text,
|
|
227
|
+
700: $light-primary-text,
|
|
228
|
+
800: $light-primary-text,
|
|
229
|
+
900: $light-primary-text,
|
|
230
|
+
A100: $dark-primary-text,
|
|
231
|
+
A200: $light-primary-text,
|
|
232
|
+
A400: $light-primary-text,
|
|
233
|
+
A700: $light-primary-text,
|
|
234
|
+
)
|
|
235
|
+
);
|
|
236
|
+
|
|
237
|
+
$light-blue-palette: (
|
|
238
|
+
50: #e1f5fe,
|
|
239
|
+
100: #b3e5fc,
|
|
240
|
+
200: #81d4fa,
|
|
241
|
+
300: #4fc3f7,
|
|
242
|
+
400: #29b6f6,
|
|
243
|
+
500: #03a9f4,
|
|
244
|
+
600: #039be5,
|
|
245
|
+
700: #0288d1,
|
|
246
|
+
800: #0277bd,
|
|
247
|
+
900: #01579b,
|
|
248
|
+
A100: #80d8ff,
|
|
249
|
+
A200: #40c4ff,
|
|
250
|
+
A400: #00b0ff,
|
|
251
|
+
A700: #0091ea,
|
|
252
|
+
contrast: (
|
|
253
|
+
50: $dark-primary-text,
|
|
254
|
+
100: $dark-primary-text,
|
|
255
|
+
200: $dark-primary-text,
|
|
256
|
+
300: $dark-primary-text,
|
|
257
|
+
400: $dark-primary-text,
|
|
258
|
+
500: $light-primary-text,
|
|
259
|
+
600: $light-primary-text,
|
|
260
|
+
700: $light-primary-text,
|
|
261
|
+
800: $light-primary-text,
|
|
262
|
+
900: $light-primary-text,
|
|
263
|
+
A100: $dark-primary-text,
|
|
264
|
+
A200: $dark-primary-text,
|
|
265
|
+
A400: $dark-primary-text,
|
|
266
|
+
A700: $light-primary-text,
|
|
267
|
+
)
|
|
268
|
+
);
|
|
269
|
+
|
|
270
|
+
$cyan-palette: (
|
|
271
|
+
50: #e0f7fa,
|
|
272
|
+
100: #b2ebf2,
|
|
273
|
+
200: #80deea,
|
|
274
|
+
300: #4dd0e1,
|
|
275
|
+
400: #26c6da,
|
|
276
|
+
500: #00bcd4,
|
|
277
|
+
600: #00acc1,
|
|
278
|
+
700: #0097a7,
|
|
279
|
+
800: #00838f,
|
|
280
|
+
900: #006064,
|
|
281
|
+
A100: #84ffff,
|
|
282
|
+
A200: #18ffff,
|
|
283
|
+
A400: #00e5ff,
|
|
284
|
+
A700: #00b8d4,
|
|
285
|
+
contrast: (
|
|
286
|
+
50: $dark-primary-text,
|
|
287
|
+
100: $dark-primary-text,
|
|
288
|
+
200: $dark-primary-text,
|
|
289
|
+
300: $dark-primary-text,
|
|
290
|
+
400: $dark-primary-text,
|
|
291
|
+
500: $light-primary-text,
|
|
292
|
+
600: $light-primary-text,
|
|
293
|
+
700: $light-primary-text,
|
|
294
|
+
800: $light-primary-text,
|
|
295
|
+
900: $light-primary-text,
|
|
296
|
+
A100: $dark-primary-text,
|
|
297
|
+
A200: $dark-primary-text,
|
|
298
|
+
A400: $dark-primary-text,
|
|
299
|
+
A700: $dark-primary-text,
|
|
300
|
+
)
|
|
301
|
+
);
|
|
302
|
+
|
|
303
|
+
$teal-palette: (
|
|
304
|
+
50: #e0f2f1,
|
|
305
|
+
100: #b2dfdb,
|
|
306
|
+
200: #80cbc4,
|
|
307
|
+
300: #4db6ac,
|
|
308
|
+
400: #26a69a,
|
|
309
|
+
500: #009688,
|
|
310
|
+
600: #00897b,
|
|
311
|
+
700: #00796b,
|
|
312
|
+
800: #00695c,
|
|
313
|
+
900: #004d40,
|
|
314
|
+
A100: #a7ffeb,
|
|
315
|
+
A200: #64ffda,
|
|
316
|
+
A400: #1de9b6,
|
|
317
|
+
A700: #00bfa5,
|
|
318
|
+
contrast: (
|
|
319
|
+
50: $dark-primary-text,
|
|
320
|
+
100: $dark-primary-text,
|
|
321
|
+
200: $dark-primary-text,
|
|
322
|
+
300: $dark-primary-text,
|
|
323
|
+
400: $dark-primary-text,
|
|
324
|
+
500: $light-primary-text,
|
|
325
|
+
600: $light-primary-text,
|
|
326
|
+
700: $light-primary-text,
|
|
327
|
+
800: $light-primary-text,
|
|
328
|
+
900: $light-primary-text,
|
|
329
|
+
A100: $dark-primary-text,
|
|
330
|
+
A200: $dark-primary-text,
|
|
331
|
+
A400: $dark-primary-text,
|
|
332
|
+
A700: $dark-primary-text,
|
|
333
|
+
)
|
|
334
|
+
);
|
|
335
|
+
|
|
336
|
+
$green-palette: (
|
|
337
|
+
50: #e8f5e9,
|
|
338
|
+
100: #c8e6c9,
|
|
339
|
+
200: #a5d6a7,
|
|
340
|
+
300: #81c784,
|
|
341
|
+
400: #66bb6a,
|
|
342
|
+
500: #4caf50,
|
|
343
|
+
600: #43a047,
|
|
344
|
+
700: #388e3c,
|
|
345
|
+
800: #2e7d32,
|
|
346
|
+
900: #1b5e20,
|
|
347
|
+
A100: #b9f6ca,
|
|
348
|
+
A200: #69f0ae,
|
|
349
|
+
A400: #00e676,
|
|
350
|
+
A700: #00c853,
|
|
351
|
+
contrast: (
|
|
352
|
+
50: $dark-primary-text,
|
|
353
|
+
100: $dark-primary-text,
|
|
354
|
+
200: $dark-primary-text,
|
|
355
|
+
300: $dark-primary-text,
|
|
356
|
+
400: $dark-primary-text,
|
|
357
|
+
500: $dark-primary-text,
|
|
358
|
+
600: $light-primary-text,
|
|
359
|
+
700: $light-primary-text,
|
|
360
|
+
800: $light-primary-text,
|
|
361
|
+
900: $light-primary-text,
|
|
362
|
+
A100: $dark-primary-text,
|
|
363
|
+
A200: $dark-primary-text,
|
|
364
|
+
A400: $dark-primary-text,
|
|
365
|
+
A700: $dark-primary-text,
|
|
366
|
+
)
|
|
367
|
+
);
|
|
368
|
+
|
|
369
|
+
$light-green-palette: (
|
|
370
|
+
50: #f1f8e9,
|
|
371
|
+
100: #dcedc8,
|
|
372
|
+
200: #c5e1a5,
|
|
373
|
+
300: #aed581,
|
|
374
|
+
400: #9ccc65,
|
|
375
|
+
500: #8bc34a,
|
|
376
|
+
600: #7cb342,
|
|
377
|
+
700: #689f38,
|
|
378
|
+
800: #558b2f,
|
|
379
|
+
900: #33691e,
|
|
380
|
+
A100: #ccff90,
|
|
381
|
+
A200: #b2ff59,
|
|
382
|
+
A400: #76ff03,
|
|
383
|
+
A700: #64dd17,
|
|
384
|
+
contrast: (
|
|
385
|
+
50: $dark-primary-text,
|
|
386
|
+
100: $dark-primary-text,
|
|
387
|
+
200: $dark-primary-text,
|
|
388
|
+
300: $dark-primary-text,
|
|
389
|
+
400: $dark-primary-text,
|
|
390
|
+
500: $dark-primary-text,
|
|
391
|
+
600: $dark-primary-text,
|
|
392
|
+
700: $light-primary-text,
|
|
393
|
+
800: $light-primary-text,
|
|
394
|
+
900: $light-primary-text,
|
|
395
|
+
A100: $dark-primary-text,
|
|
396
|
+
A200: $dark-primary-text,
|
|
397
|
+
A400: $dark-primary-text,
|
|
398
|
+
A700: $dark-primary-text,
|
|
399
|
+
)
|
|
400
|
+
);
|
|
401
|
+
|
|
402
|
+
$lime-palette: (
|
|
403
|
+
50: #f9fbe7,
|
|
404
|
+
100: #f0f4c3,
|
|
405
|
+
200: #e6ee9c,
|
|
406
|
+
300: #dce775,
|
|
407
|
+
400: #d4e157,
|
|
408
|
+
500: #cddc39,
|
|
409
|
+
600: #c0ca33,
|
|
410
|
+
700: #afb42b,
|
|
411
|
+
800: #9e9d24,
|
|
412
|
+
900: #827717,
|
|
413
|
+
A100: #f4ff81,
|
|
414
|
+
A200: #eeff41,
|
|
415
|
+
A400: #c6ff00,
|
|
416
|
+
A700: #aeea00,
|
|
417
|
+
contrast: (
|
|
418
|
+
50: $dark-primary-text,
|
|
419
|
+
100: $dark-primary-text,
|
|
420
|
+
200: $dark-primary-text,
|
|
421
|
+
300: $dark-primary-text,
|
|
422
|
+
400: $dark-primary-text,
|
|
423
|
+
500: $dark-primary-text,
|
|
424
|
+
600: $dark-primary-text,
|
|
425
|
+
700: $dark-primary-text,
|
|
426
|
+
800: $dark-primary-text,
|
|
427
|
+
900: $light-primary-text,
|
|
428
|
+
A100: $dark-primary-text,
|
|
429
|
+
A200: $dark-primary-text,
|
|
430
|
+
A400: $dark-primary-text,
|
|
431
|
+
A700: $dark-primary-text,
|
|
432
|
+
)
|
|
433
|
+
);
|
|
434
|
+
|
|
435
|
+
$yellow-palette: (
|
|
436
|
+
50: #fffde7,
|
|
437
|
+
100: #fff9c4,
|
|
438
|
+
200: #fff59d,
|
|
439
|
+
300: #fff176,
|
|
440
|
+
400: #ffee58,
|
|
441
|
+
500: #ffeb3b,
|
|
442
|
+
600: #fdd835,
|
|
443
|
+
700: #fbc02d,
|
|
444
|
+
800: #f9a825,
|
|
445
|
+
900: #f57f17,
|
|
446
|
+
A100: #ffff8d,
|
|
447
|
+
A200: #ff0,
|
|
448
|
+
A400: #ffea00,
|
|
449
|
+
A700: #ffd600,
|
|
450
|
+
contrast: (
|
|
451
|
+
50: $dark-primary-text,
|
|
452
|
+
100: $dark-primary-text,
|
|
453
|
+
200: $dark-primary-text,
|
|
454
|
+
300: $dark-primary-text,
|
|
455
|
+
400: $dark-primary-text,
|
|
456
|
+
500: $dark-primary-text,
|
|
457
|
+
600: $dark-primary-text,
|
|
458
|
+
700: $dark-primary-text,
|
|
459
|
+
800: $dark-primary-text,
|
|
460
|
+
900: $dark-primary-text,
|
|
461
|
+
A100: $dark-primary-text,
|
|
462
|
+
A200: $dark-primary-text,
|
|
463
|
+
A400: $dark-primary-text,
|
|
464
|
+
A700: $dark-primary-text,
|
|
465
|
+
)
|
|
466
|
+
);
|
|
467
|
+
|
|
468
|
+
$amber-palette: (
|
|
469
|
+
50: #fff8e1,
|
|
470
|
+
100: #ffecb3,
|
|
471
|
+
200: #ffe082,
|
|
472
|
+
300: #ffd54f,
|
|
473
|
+
400: #ffca28,
|
|
474
|
+
500: #ffc107,
|
|
475
|
+
600: #ffb300,
|
|
476
|
+
700: #ffa000,
|
|
477
|
+
800: #ff8f00,
|
|
478
|
+
900: #ff6f00,
|
|
479
|
+
A100: #ffe57f,
|
|
480
|
+
A200: #ffd740,
|
|
481
|
+
A400: #ffc400,
|
|
482
|
+
A700: #ffab00,
|
|
483
|
+
contrast: (
|
|
484
|
+
50: $dark-primary-text,
|
|
485
|
+
100: $dark-primary-text,
|
|
486
|
+
200: $dark-primary-text,
|
|
487
|
+
300: $dark-primary-text,
|
|
488
|
+
400: $dark-primary-text,
|
|
489
|
+
500: $dark-primary-text,
|
|
490
|
+
600: $dark-primary-text,
|
|
491
|
+
700: $dark-primary-text,
|
|
492
|
+
800: $dark-primary-text,
|
|
493
|
+
900: $dark-primary-text,
|
|
494
|
+
A100: $dark-primary-text,
|
|
495
|
+
A200: $dark-primary-text,
|
|
496
|
+
A400: $dark-primary-text,
|
|
497
|
+
A700: $dark-primary-text,
|
|
498
|
+
)
|
|
499
|
+
);
|
|
500
|
+
|
|
501
|
+
$orange-palette: (
|
|
502
|
+
50: #fff3e0,
|
|
503
|
+
100: #ffe0b2,
|
|
504
|
+
200: #ffcc80,
|
|
505
|
+
300: #ffb74d,
|
|
506
|
+
400: #ffa726,
|
|
507
|
+
500: #ff9800,
|
|
508
|
+
600: #fb8c00,
|
|
509
|
+
700: #f57c00,
|
|
510
|
+
800: #ef6c00,
|
|
511
|
+
900: #e65100,
|
|
512
|
+
A100: #ffd180,
|
|
513
|
+
A200: #ffab40,
|
|
514
|
+
A400: #ff9100,
|
|
515
|
+
A700: #ff6d00,
|
|
516
|
+
contrast: (
|
|
517
|
+
50: $dark-primary-text,
|
|
518
|
+
100: $dark-primary-text,
|
|
519
|
+
200: $dark-primary-text,
|
|
520
|
+
300: $dark-primary-text,
|
|
521
|
+
400: $dark-primary-text,
|
|
522
|
+
500: $dark-primary-text,
|
|
523
|
+
600: $dark-primary-text,
|
|
524
|
+
700: $dark-primary-text,
|
|
525
|
+
800: $light-primary-text,
|
|
526
|
+
900: $light-primary-text,
|
|
527
|
+
A100: $dark-primary-text,
|
|
528
|
+
A200: $dark-primary-text,
|
|
529
|
+
A400: $dark-primary-text,
|
|
530
|
+
A700: black,
|
|
531
|
+
)
|
|
532
|
+
);
|
|
533
|
+
|
|
534
|
+
$deep-orange-palette: (
|
|
535
|
+
50: #fbe9e7,
|
|
536
|
+
100: #ffccbc,
|
|
537
|
+
200: #ffab91,
|
|
538
|
+
300: #ff8a65,
|
|
539
|
+
400: #ff7043,
|
|
540
|
+
500: #ff5722,
|
|
541
|
+
600: #f4511e,
|
|
542
|
+
700: #e64a19,
|
|
543
|
+
800: #d84315,
|
|
544
|
+
900: #bf360c,
|
|
545
|
+
A100: #ff9e80,
|
|
546
|
+
A200: #ff6e40,
|
|
547
|
+
A400: #ff3d00,
|
|
548
|
+
A700: #dd2c00,
|
|
549
|
+
contrast: (
|
|
550
|
+
50: $dark-primary-text,
|
|
551
|
+
100: $dark-primary-text,
|
|
552
|
+
200: $dark-primary-text,
|
|
553
|
+
300: $dark-primary-text,
|
|
554
|
+
400: $dark-primary-text,
|
|
555
|
+
500: $light-primary-text,
|
|
556
|
+
600: $light-primary-text,
|
|
557
|
+
700: $light-primary-text,
|
|
558
|
+
800: $light-primary-text,
|
|
559
|
+
900: $light-primary-text,
|
|
560
|
+
A100: $dark-primary-text,
|
|
561
|
+
A200: $dark-primary-text,
|
|
562
|
+
A400: $light-primary-text,
|
|
563
|
+
A700: $light-primary-text,
|
|
564
|
+
)
|
|
565
|
+
);
|
|
566
|
+
|
|
567
|
+
$brown-palette: (
|
|
568
|
+
50: #efebe9,
|
|
569
|
+
100: #d7ccc8,
|
|
570
|
+
200: #bcaaa4,
|
|
571
|
+
300: #a1887f,
|
|
572
|
+
400: #8d6e63,
|
|
573
|
+
500: #795548,
|
|
574
|
+
600: #6d4c41,
|
|
575
|
+
700: #5d4037,
|
|
576
|
+
800: #4e342e,
|
|
577
|
+
900: #3e2723,
|
|
578
|
+
A100: #d7ccc8,
|
|
579
|
+
A200: #bcaaa4,
|
|
580
|
+
A400: #8d6e63,
|
|
581
|
+
A700: #5d4037,
|
|
582
|
+
contrast: (
|
|
583
|
+
50: $dark-primary-text,
|
|
584
|
+
100: $dark-primary-text,
|
|
585
|
+
200: $dark-primary-text,
|
|
586
|
+
300: $light-primary-text,
|
|
587
|
+
400: $light-primary-text,
|
|
588
|
+
500: $light-primary-text,
|
|
589
|
+
600: $light-primary-text,
|
|
590
|
+
700: $light-primary-text,
|
|
591
|
+
800: $light-primary-text,
|
|
592
|
+
900: $light-primary-text,
|
|
593
|
+
A100: $dark-primary-text,
|
|
594
|
+
A200: $dark-primary-text,
|
|
595
|
+
A400: $light-primary-text,
|
|
596
|
+
A700: $light-primary-text,
|
|
597
|
+
)
|
|
598
|
+
);
|
|
599
|
+
|
|
600
|
+
$grey-palette: (
|
|
601
|
+
50: #fafafa,
|
|
602
|
+
100: #f5f5f5,
|
|
603
|
+
200: #eee,
|
|
604
|
+
300: #e0e0e0,
|
|
605
|
+
400: #bdbdbd,
|
|
606
|
+
500: #9e9e9e,
|
|
607
|
+
600: #757575,
|
|
608
|
+
700: #616161,
|
|
609
|
+
800: #424242,
|
|
610
|
+
900: #212121,
|
|
611
|
+
A100: #fff,
|
|
612
|
+
A200: #eee,
|
|
613
|
+
A400: #bdbdbd,
|
|
614
|
+
A700: #616161,
|
|
615
|
+
contrast: (
|
|
616
|
+
50: $dark-primary-text,
|
|
617
|
+
100: $dark-primary-text,
|
|
618
|
+
200: $dark-primary-text,
|
|
619
|
+
300: $dark-primary-text,
|
|
620
|
+
400: $dark-primary-text,
|
|
621
|
+
500: $dark-primary-text,
|
|
622
|
+
600: $light-primary-text,
|
|
623
|
+
700: $light-primary-text,
|
|
624
|
+
800: $light-primary-text,
|
|
625
|
+
900: $light-primary-text,
|
|
626
|
+
A100: $dark-primary-text,
|
|
627
|
+
A200: $dark-primary-text,
|
|
628
|
+
A400: $dark-primary-text,
|
|
629
|
+
A700: $light-primary-text,
|
|
630
|
+
)
|
|
631
|
+
);
|
|
632
|
+
|
|
633
|
+
// Alias for alternate spelling.
|
|
634
|
+
$gray-palette: $grey-palette;
|
|
635
|
+
|
|
636
|
+
$blue-grey-palette: (
|
|
637
|
+
50: #eceff1,
|
|
638
|
+
100: #cfd8dc,
|
|
639
|
+
200: #b0bec5,
|
|
640
|
+
300: #90a4ae,
|
|
641
|
+
400: #78909c,
|
|
642
|
+
500: #607d8b,
|
|
643
|
+
600: #546e7a,
|
|
644
|
+
700: #455a64,
|
|
645
|
+
800: #37474f,
|
|
646
|
+
900: #263238,
|
|
647
|
+
A100: #cfd8dc,
|
|
648
|
+
A200: #b0bec5,
|
|
649
|
+
A400: #78909c,
|
|
650
|
+
A700: #455a64,
|
|
651
|
+
contrast: (
|
|
652
|
+
50: $dark-primary-text,
|
|
653
|
+
100: $dark-primary-text,
|
|
654
|
+
200: $dark-primary-text,
|
|
655
|
+
300: $dark-primary-text,
|
|
656
|
+
400: $light-primary-text,
|
|
657
|
+
500: $light-primary-text,
|
|
658
|
+
600: $light-primary-text,
|
|
659
|
+
700: $light-primary-text,
|
|
660
|
+
800: $light-primary-text,
|
|
661
|
+
900: $light-primary-text,
|
|
662
|
+
A100: $dark-primary-text,
|
|
663
|
+
A200: $dark-primary-text,
|
|
664
|
+
A400: $light-primary-text,
|
|
665
|
+
A700: $light-primary-text,
|
|
666
|
+
)
|
|
667
|
+
);
|
|
668
|
+
|
|
669
|
+
// Alias for alternate spelling.
|
|
670
|
+
$blue-gray-palette: $blue-grey-palette;
|
|
671
|
+
|
|
672
|
+
// Background palette for light themes.
|
|
673
|
+
$light-theme-background-palette: (
|
|
674
|
+
status-bar: map.get($grey-palette, 300),
|
|
675
|
+
app-bar: map.get($grey-palette, 100),
|
|
676
|
+
background: map.get($grey-palette, 50),
|
|
677
|
+
hover: rgba(black, .04),
|
|
678
|
+
card: white,
|
|
679
|
+
dialog: white,
|
|
680
|
+
disabled-button: rgba(black, .12),
|
|
681
|
+
raised-button: white,
|
|
682
|
+
focused-button: $dark-focused,
|
|
683
|
+
selected-button: map.get($grey-palette, 300),
|
|
684
|
+
selected-disabled-button: map.get($grey-palette, 400),
|
|
685
|
+
disabled-button-toggle: map.get($grey-palette, 200),
|
|
686
|
+
unselected-chip: map.get($grey-palette, 300),
|
|
687
|
+
disabled-list-option: map.get($grey-palette, 200),
|
|
688
|
+
tooltip: map.get($grey-palette, 700),
|
|
689
|
+
);
|
|
690
|
+
|
|
691
|
+
// Background palette for dark themes.
|
|
692
|
+
$dark-theme-background-palette: (
|
|
693
|
+
status-bar: black,
|
|
694
|
+
app-bar: map.get($grey-palette, 900),
|
|
695
|
+
background: #303030,
|
|
696
|
+
hover: rgba(white, .04),
|
|
697
|
+
card: map.get($grey-palette, 800),
|
|
698
|
+
dialog: map.get($grey-palette, 800),
|
|
699
|
+
disabled-button: rgba(white, .12),
|
|
700
|
+
raised-button: map.get($grey-palette, 800),
|
|
701
|
+
focused-button: $light-focused,
|
|
702
|
+
selected-button: map.get($grey-palette, 900),
|
|
703
|
+
selected-disabled-button: map.get($grey-palette, 800),
|
|
704
|
+
disabled-button-toggle: black,
|
|
705
|
+
unselected-chip: map.get($grey-palette, 700),
|
|
706
|
+
disabled-list-option: black,
|
|
707
|
+
tooltip: map.get($grey-palette, 700),
|
|
708
|
+
);
|
|
709
|
+
|
|
710
|
+
// Foreground palette for light themes.
|
|
711
|
+
$light-theme-foreground-palette: (
|
|
712
|
+
base: black,
|
|
713
|
+
divider: $dark-dividers,
|
|
714
|
+
dividers: $dark-dividers,
|
|
715
|
+
disabled: $dark-disabled-text,
|
|
716
|
+
disabled-button: rgba(black, .26),
|
|
717
|
+
disabled-text: $dark-disabled-text,
|
|
718
|
+
elevation: black,
|
|
719
|
+
hint-text: $dark-disabled-text,
|
|
720
|
+
secondary-text: $dark-secondary-text,
|
|
721
|
+
icon: rgba(black, .54),
|
|
722
|
+
icons: rgba(black, .54),
|
|
723
|
+
text: rgba(black, .87),
|
|
724
|
+
slider-min: rgba(black, .87),
|
|
725
|
+
slider-off: rgba(black, .26),
|
|
726
|
+
slider-off-active: rgba(black, .38),
|
|
727
|
+
);
|
|
728
|
+
|
|
729
|
+
// Foreground palette for dark themes.
|
|
730
|
+
$dark-theme-foreground-palette: (
|
|
731
|
+
base: white,
|
|
732
|
+
divider: $light-dividers,
|
|
733
|
+
dividers: $light-dividers,
|
|
734
|
+
disabled: $light-disabled-text,
|
|
735
|
+
disabled-button: rgba(white, .3),
|
|
736
|
+
disabled-text: $light-disabled-text,
|
|
737
|
+
elevation: black,
|
|
738
|
+
hint-text: $light-disabled-text,
|
|
739
|
+
secondary-text: $light-secondary-text,
|
|
740
|
+
icon: white,
|
|
741
|
+
icons: white,
|
|
742
|
+
text: white,
|
|
743
|
+
slider-min: white,
|
|
744
|
+
slider-off: rgba(white, .3),
|
|
745
|
+
slider-off-active: rgba(white, .3),
|
|
746
|
+
);
|