@angular/material 17.1.0-next.0 → 17.1.0-next.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/autocomplete/_autocomplete-theme.scss +47 -14
- package/autocomplete/index.d.ts +14 -10
- package/badge/_badge-theme.scss +67 -35
- package/badge/index.d.ts +5 -5
- package/bottom-sheet/_bottom-sheet-theme.scss +51 -18
- package/bottom-sheet/index.d.ts +6 -6
- package/button/_button-theme.scss +4 -1
- package/button/_fab-theme.scss +65 -32
- package/button/_icon-button-theme.scss +89 -56
- package/button/index.d.ts +13 -13
- package/button-toggle/_button-toggle-theme.scss +66 -32
- package/button-toggle/index.d.ts +5 -5
- package/card/index.d.ts +18 -18
- package/checkbox/_checkbox-theme.scss +5 -10
- package/checkbox/index.d.ts +29 -6
- package/chips/_chips-theme.scss +64 -32
- package/chips/index.d.ts +46 -73
- package/core/_core-theme.scss +1 -3
- package/core/index.d.ts +62 -31
- package/core/internal-form-field/_internal-form-field-theme.scss +37 -0
- package/core/option/_optgroup-theme.scss +47 -16
- package/core/option/_option-theme.scss +54 -23
- package/core/selection/pseudo-checkbox/_pseudo-checkbox-theme.scss +18 -58
- package/core/tokens/m2/_index.scss +38 -0
- package/core/tokens/m2/mat/_full-pseudo-checkbox.scss +49 -0
- package/core/tokens/m2/mat/_minimal-pseudo-checkbox.scss +43 -0
- package/core/tokens/m2/mdc/_form-field.scss +46 -0
- package/datepicker/_datepicker-theme.scss +70 -38
- package/datepicker/index.d.ts +88 -86
- package/dialog/_dialog-theme.scss +48 -17
- package/divider/_divider-theme.scss +49 -16
- package/divider/index.d.ts +4 -4
- package/esm2022/autocomplete/autocomplete-origin.mjs +5 -4
- package/esm2022/autocomplete/autocomplete-trigger.mjs +27 -11
- package/esm2022/autocomplete/autocomplete.mjs +6 -6
- package/esm2022/autocomplete/module.mjs +23 -7
- package/esm2022/autocomplete/public-api.mjs +3 -1
- package/esm2022/autocomplete/testing/autocomplete-harness.mjs +1 -1
- package/esm2022/badge/badge-module.mjs +6 -7
- package/esm2022/badge/badge.mjs +5 -4
- package/esm2022/badge/testing/badge-harness.mjs +1 -1
- package/esm2022/bottom-sheet/bottom-sheet-container.mjs +6 -6
- package/esm2022/bottom-sheet/bottom-sheet-module.mjs +8 -7
- package/esm2022/bottom-sheet/bottom-sheet-ref.mjs +1 -1
- package/esm2022/bottom-sheet/bottom-sheet.mjs +5 -6
- package/esm2022/button/button-base.mjs +7 -7
- package/esm2022/button/button.mjs +9 -9
- package/esm2022/button/fab.mjs +17 -17
- package/esm2022/button/icon-button.mjs +9 -9
- package/esm2022/button/module.mjs +16 -12
- package/esm2022/button/testing/button-harness.mjs +1 -1
- package/esm2022/button-toggle/button-toggle-module.mjs +6 -7
- package/esm2022/button-toggle/button-toggle.mjs +10 -9
- package/esm2022/button-toggle/testing/button-toggle-harness.mjs +1 -1
- package/esm2022/card/card.mjs +57 -46
- package/esm2022/card/module.mjs +7 -8
- package/esm2022/checkbox/checkbox-required-validator.mjs +12 -4
- package/esm2022/checkbox/checkbox.mjs +39 -8
- package/esm2022/checkbox/module.mjs +17 -15
- package/esm2022/checkbox/testing/checkbox-harness.mjs +1 -1
- package/esm2022/chips/chip-action.mjs +5 -4
- package/esm2022/chips/chip-edit-input.mjs +5 -4
- package/esm2022/chips/chip-grid.mjs +39 -51
- package/esm2022/chips/chip-icons.mjs +13 -10
- package/esm2022/chips/chip-input.mjs +5 -4
- package/esm2022/chips/chip-listbox.mjs +5 -5
- package/esm2022/chips/chip-option.mjs +7 -7
- package/esm2022/chips/chip-row.mjs +7 -8
- package/esm2022/chips/chip-set.mjs +5 -5
- package/esm2022/chips/chip.mjs +5 -6
- package/esm2022/chips/module.mjs +7 -8
- package/esm2022/chips/testing/chip-edit-input-harness.mjs +1 -1
- package/esm2022/chips/testing/chip-input-harness.mjs +1 -1
- package/esm2022/chips/testing/chip-listbox-harness.mjs +1 -1
- package/esm2022/chips/testing/chip-option-harness.mjs +1 -1
- package/esm2022/chips/testing/chip-row-harness.mjs +1 -1
- package/esm2022/chips/tokens.mjs +8 -2
- package/esm2022/core/common-behaviors/color.mjs +1 -1
- package/esm2022/core/common-behaviors/common-module.mjs +5 -5
- package/esm2022/core/common-behaviors/error-state.mjs +50 -11
- package/esm2022/core/common-behaviors/index.mjs +2 -2
- package/esm2022/core/common-behaviors/initialized.mjs +1 -1
- package/esm2022/core/datetime/date-adapter.mjs +1 -1
- package/esm2022/core/datetime/index.mjs +9 -9
- package/esm2022/core/datetime/native-date-adapter.mjs +4 -4
- package/esm2022/core/error/error-options.mjs +7 -7
- package/esm2022/core/internal-form-field/internal-form-field.mjs +29 -0
- package/esm2022/core/line/line.mjs +10 -10
- package/esm2022/core/option/index.mjs +6 -7
- package/esm2022/core/option/optgroup.mjs +5 -5
- package/esm2022/core/option/option.mjs +9 -9
- package/esm2022/core/private/ripple-loader.mjs +4 -4
- package/esm2022/core/public-api.mjs +2 -1
- package/esm2022/core/ripple/index.mjs +6 -7
- package/esm2022/core/ripple/ripple-event-manager.mjs +1 -1
- package/esm2022/core/ripple/ripple-renderer.mjs +1 -1
- package/esm2022/core/ripple/ripple.mjs +5 -4
- package/esm2022/core/selection/pseudo-checkbox/pseudo-checkbox-module.mjs +6 -7
- package/esm2022/core/selection/pseudo-checkbox/pseudo-checkbox.mjs +5 -5
- package/esm2022/core/version.mjs +1 -1
- package/esm2022/datepicker/aria-accessible-name.mjs +1 -1
- package/esm2022/datepicker/calendar-body.mjs +6 -6
- package/esm2022/datepicker/calendar.mjs +12 -16
- package/esm2022/datepicker/date-range-input-parts.mjs +41 -20
- package/esm2022/datepicker/date-range-input.mjs +7 -7
- package/esm2022/datepicker/date-range-picker.mjs +5 -4
- package/esm2022/datepicker/date-range-selection-strategy.mjs +4 -4
- package/esm2022/datepicker/date-selection-model.mjs +10 -10
- package/esm2022/datepicker/datepicker-actions.mjs +13 -11
- package/esm2022/datepicker/datepicker-base.mjs +23 -20
- package/esm2022/datepicker/datepicker-input-base.mjs +6 -5
- package/esm2022/datepicker/datepicker-input.mjs +5 -4
- package/esm2022/datepicker/datepicker-intl.mjs +4 -4
- package/esm2022/datepicker/datepicker-module.mjs +18 -16
- package/esm2022/datepicker/datepicker-toggle.mjs +10 -10
- package/esm2022/datepicker/datepicker.mjs +5 -4
- package/esm2022/datepicker/month-view.mjs +5 -6
- package/esm2022/datepicker/multi-year-view.mjs +5 -6
- package/esm2022/datepicker/testing/calendar-harness.mjs +1 -1
- package/esm2022/datepicker/testing/datepicker-input-harness-base.mjs +1 -1
- package/esm2022/datepicker/testing/datepicker-input-harness.mjs +1 -1
- package/esm2022/datepicker/testing/datepicker-trigger-harness-base.mjs +1 -1
- package/esm2022/datepicker/year-view.mjs +5 -6
- package/esm2022/dialog/dialog-container.mjs +7 -8
- package/esm2022/dialog/dialog-content-directives.mjs +13 -13
- package/esm2022/dialog/dialog-ref.mjs +1 -1
- package/esm2022/dialog/dialog.mjs +4 -4
- package/esm2022/dialog/module.mjs +5 -5
- package/esm2022/dialog/testing/dialog-opener.mjs +3 -3
- package/esm2022/divider/divider-module.mjs +6 -7
- package/esm2022/divider/divider.mjs +5 -5
- package/esm2022/expansion/accordion.mjs +5 -4
- package/esm2022/expansion/expansion-module.mjs +16 -9
- package/esm2022/expansion/expansion-panel-content.mjs +5 -4
- package/esm2022/expansion/expansion-panel-header.mjs +13 -11
- package/esm2022/expansion/expansion-panel.mjs +11 -11
- package/esm2022/expansion/testing/expansion-harness.mjs +1 -1
- package/esm2022/form-field/directives/error.mjs +5 -4
- package/esm2022/form-field/directives/floating-label.mjs +5 -4
- package/esm2022/form-field/directives/hint.mjs +5 -4
- package/esm2022/form-field/directives/label.mjs +5 -4
- package/esm2022/form-field/directives/line-ripple.mjs +5 -4
- package/esm2022/form-field/directives/notched-outline.mjs +5 -5
- package/esm2022/form-field/directives/prefix.mjs +5 -4
- package/esm2022/form-field/directives/suffix.mjs +5 -4
- package/esm2022/form-field/form-field-control.mjs +4 -4
- package/esm2022/form-field/form-field.mjs +14 -13
- package/esm2022/form-field/module.mjs +16 -18
- package/esm2022/form-field/testing/form-field-harness.mjs +1 -1
- package/esm2022/grid-list/grid-list-module.mjs +15 -11
- package/esm2022/grid-list/grid-list.mjs +5 -5
- package/esm2022/grid-list/grid-tile.mjs +21 -18
- package/esm2022/grid-list/testing/grid-list-harness.mjs +1 -1
- package/esm2022/grid-list/tile-coordinator.mjs +1 -1
- package/esm2022/grid-list/tile-styler.mjs +1 -1
- package/esm2022/icon/icon-module.mjs +6 -7
- package/esm2022/icon/icon-registry.mjs +4 -4
- package/esm2022/icon/icon.mjs +5 -5
- package/esm2022/icon/testing/fake-icon-registry.mjs +8 -8
- package/esm2022/icon/testing/icon-harness.mjs +1 -1
- package/esm2022/icon/trusted-types.mjs +1 -1
- package/esm2022/input/input.mjs +28 -30
- package/esm2022/input/module.mjs +6 -7
- package/esm2022/input/public-api.mjs +3 -1
- package/esm2022/input/testing/input-harness.mjs +1 -1
- package/esm2022/input/testing/native-select-harness.mjs +1 -1
- package/esm2022/list/action-list.mjs +5 -5
- package/esm2022/list/list-base.mjs +9 -7
- package/esm2022/list/list-item-sections.mjs +25 -19
- package/esm2022/list/list-module.mjs +15 -16
- package/esm2022/list/list-option.mjs +8 -8
- package/esm2022/list/list.mjs +10 -10
- package/esm2022/list/nav-list.mjs +5 -5
- package/esm2022/list/selection-list.mjs +5 -5
- package/esm2022/list/subheader.mjs +5 -4
- package/esm2022/list/testing/list-harness-base.mjs +1 -1
- package/esm2022/list/testing/list-item-harness-base.mjs +1 -1
- package/esm2022/list/testing/selection-list-harness.mjs +1 -1
- package/esm2022/menu/menu-content.mjs +5 -4
- package/esm2022/menu/menu-item.mjs +6 -6
- package/esm2022/menu/menu-trigger.mjs +12 -5
- package/esm2022/menu/menu.mjs +6 -6
- package/esm2022/menu/module.mjs +25 -7
- package/esm2022/menu/testing/menu-harness.mjs +1 -1
- package/esm2022/paginator/module.mjs +6 -7
- package/esm2022/paginator/paginator-intl.mjs +4 -4
- package/esm2022/paginator/paginator.mjs +10 -11
- package/esm2022/paginator/testing/paginator-harness.mjs +1 -1
- package/esm2022/progress-bar/module.mjs +6 -6
- package/esm2022/progress-bar/progress-bar.mjs +5 -5
- package/esm2022/progress-spinner/module.mjs +6 -7
- package/esm2022/progress-spinner/progress-spinner.mjs +6 -6
- package/esm2022/radio/module.mjs +6 -7
- package/esm2022/radio/radio.mjs +13 -9
- package/esm2022/radio/testing/radio-harness.mjs +1 -1
- package/esm2022/select/module.mjs +21 -7
- package/esm2022/select/public-api.mjs +5 -1
- package/esm2022/select/select.mjs +51 -42
- package/esm2022/select/testing/select-harness.mjs +1 -1
- package/esm2022/sidenav/drawer.mjs +13 -12
- package/esm2022/sidenav/sidenav-module.mjs +14 -10
- package/esm2022/sidenav/sidenav.mjs +13 -12
- package/esm2022/sidenav/testing/drawer-harness.mjs +1 -1
- package/esm2022/slide-toggle/module.mjs +17 -15
- package/esm2022/slide-toggle/slide-toggle-required-validator.mjs +12 -4
- package/esm2022/slide-toggle/slide-toggle.mjs +39 -8
- package/esm2022/slide-toggle/testing/slide-toggle-harness.mjs +1 -1
- package/esm2022/slider/module.mjs +19 -7
- package/esm2022/slider/slider-input.mjs +11 -8
- package/esm2022/slider/slider-thumb.mjs +5 -6
- package/esm2022/slider/slider.mjs +8 -8
- package/esm2022/slider/testing/slider-harness.mjs +1 -1
- package/esm2022/snack-bar/module.mjs +6 -6
- package/esm2022/snack-bar/simple-snack-bar.mjs +6 -8
- package/esm2022/snack-bar/snack-bar-container.mjs +7 -8
- package/esm2022/snack-bar/snack-bar-content.mjs +10 -10
- package/esm2022/snack-bar/snack-bar-ref.mjs +1 -1
- package/esm2022/snack-bar/snack-bar.mjs +4 -4
- package/esm2022/snack-bar/testing/snack-bar-harness.mjs +1 -1
- package/esm2022/sort/sort-header-intl.mjs +4 -4
- package/esm2022/sort/sort-header.mjs +5 -5
- package/esm2022/sort/sort-module.mjs +6 -7
- package/esm2022/sort/sort.mjs +5 -4
- package/esm2022/sort/testing/sort-harness.mjs +1 -1
- package/esm2022/sort/testing/sort-header-harness.mjs +1 -1
- package/esm2022/stepper/step-content.mjs +5 -4
- package/esm2022/stepper/step-header.mjs +8 -8
- package/esm2022/stepper/step-label.mjs +5 -4
- package/esm2022/stepper/stepper-button.mjs +9 -7
- package/esm2022/stepper/stepper-icon.mjs +5 -4
- package/esm2022/stepper/stepper-intl.mjs +4 -4
- package/esm2022/stepper/stepper-module.mjs +17 -16
- package/esm2022/stepper/stepper.mjs +14 -16
- package/esm2022/stepper/testing/step-harness.mjs +1 -1
- package/esm2022/stepper/testing/stepper-harness.mjs +1 -1
- package/esm2022/table/cell.mjs +29 -22
- package/esm2022/table/module.mjs +7 -8
- package/esm2022/table/row.mjs +33 -24
- package/esm2022/table/table-data-source.mjs +1 -1
- package/esm2022/table/table.mjs +11 -11
- package/esm2022/table/testing/cell-harness.mjs +1 -1
- package/esm2022/table/testing/table-harness.mjs +1 -1
- package/esm2022/table/text-column.mjs +8 -6
- package/esm2022/tabs/ink-bar.mjs +1 -1
- package/esm2022/tabs/module.mjs +10 -43
- package/esm2022/tabs/paginated-tab-header.mjs +4 -4
- package/esm2022/tabs/tab-body.mjs +10 -8
- package/esm2022/tabs/tab-content.mjs +5 -4
- package/esm2022/tabs/tab-group.mjs +20 -13
- package/esm2022/tabs/tab-header.mjs +7 -7
- package/esm2022/tabs/tab-label-wrapper.mjs +5 -4
- package/esm2022/tabs/tab-label.mjs +5 -4
- package/esm2022/tabs/tab-nav-bar/tab-nav-bar.mjs +17 -17
- package/esm2022/tabs/tab.mjs +5 -5
- package/esm2022/tabs/testing/tab-group-harness.mjs +1 -1
- package/esm2022/tabs/testing/tab-nav-bar-harness.mjs +1 -1
- package/esm2022/toolbar/toolbar-module.mjs +6 -7
- package/esm2022/toolbar/toolbar.mjs +9 -8
- package/esm2022/tooltip/module.mjs +6 -7
- package/esm2022/tooltip/tooltip.mjs +18 -12
- package/esm2022/tree/data-source/flat-data-source.mjs +1 -1
- package/esm2022/tree/node.mjs +13 -10
- package/esm2022/tree/outlet.mjs +5 -4
- package/esm2022/tree/padding.mjs +5 -4
- package/esm2022/tree/testing/node-harness.mjs +1 -1
- package/esm2022/tree/testing/tree-harness.mjs +1 -1
- package/esm2022/tree/toggle.mjs +5 -4
- package/esm2022/tree/tree-module.mjs +7 -8
- package/esm2022/tree/tree.mjs +5 -6
- package/expansion/_expansion-theme.scss +56 -22
- package/expansion/index.d.ts +15 -15
- package/fesm2022/autocomplete/testing.mjs.map +1 -1
- package/fesm2022/autocomplete.mjs +60 -27
- package/fesm2022/autocomplete.mjs.map +1 -1
- package/fesm2022/badge/testing.mjs.map +1 -1
- package/fesm2022/badge.mjs +9 -9
- package/fesm2022/badge.mjs.map +1 -1
- package/fesm2022/bottom-sheet.mjs +25 -26
- package/fesm2022/bottom-sheet.mjs.map +1 -1
- package/fesm2022/button/testing.mjs.map +1 -1
- package/fesm2022/button-toggle/testing.mjs.map +1 -1
- package/fesm2022/button-toggle.mjs +14 -15
- package/fesm2022/button-toggle.mjs.map +1 -1
- package/fesm2022/button.mjs +53 -49
- package/fesm2022/button.mjs.map +1 -1
- package/fesm2022/card.mjs +62 -52
- package/fesm2022/card.mjs.map +1 -1
- package/fesm2022/checkbox/testing.mjs.map +1 -1
- package/fesm2022/checkbox.mjs +63 -22
- package/fesm2022/checkbox.mjs.map +1 -1
- package/fesm2022/chips/testing.mjs.map +1 -1
- package/fesm2022/chips.mjs +94 -96
- package/fesm2022/chips.mjs.map +1 -1
- package/fesm2022/core.mjs +135 -78
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/datepicker/testing.mjs.map +1 -1
- package/fesm2022/datepicker.mjs +178 -146
- package/fesm2022/datepicker.mjs.map +1 -1
- package/fesm2022/dialog/testing.mjs +2 -2
- package/fesm2022/dialog/testing.mjs.map +1 -1
- package/fesm2022/dialog.mjs +25 -26
- package/fesm2022/dialog.mjs.map +1 -1
- package/fesm2022/divider.mjs +9 -10
- package/fesm2022/divider.mjs.map +1 -1
- package/fesm2022/expansion/testing.mjs.map +1 -1
- package/fesm2022/expansion.mjs +47 -36
- package/fesm2022/expansion.mjs.map +1 -1
- package/fesm2022/form-field/testing.mjs.map +1 -1
- package/fesm2022/form-field.mjs +61 -48
- package/fesm2022/form-field.mjs.map +1 -1
- package/fesm2022/grid-list/testing.mjs.map +1 -1
- package/fesm2022/grid-list.mjs +38 -31
- package/fesm2022/grid-list.mjs.map +1 -1
- package/fesm2022/icon/testing.mjs +7 -7
- package/fesm2022/icon/testing.mjs.map +1 -1
- package/fesm2022/icon.mjs +12 -13
- package/fesm2022/icon.mjs.map +1 -1
- package/fesm2022/input/testing.mjs.map +1 -1
- package/fesm2022/input.mjs +33 -35
- package/fesm2022/input.mjs.map +1 -1
- package/fesm2022/list/testing.mjs.map +1 -1
- package/fesm2022/list.mjs +77 -71
- package/fesm2022/list.mjs.map +1 -1
- package/fesm2022/menu/testing.mjs.map +1 -1
- package/fesm2022/menu.mjs +51 -27
- package/fesm2022/menu.mjs.map +1 -1
- package/fesm2022/paginator/testing.mjs.map +1 -1
- package/fesm2022/paginator.mjs +17 -22
- package/fesm2022/paginator.mjs.map +1 -1
- package/fesm2022/progress-bar.mjs +9 -9
- package/fesm2022/progress-bar.mjs.map +1 -1
- package/fesm2022/progress-spinner.mjs +10 -12
- package/fesm2022/progress-spinner.mjs.map +1 -1
- package/fesm2022/radio/testing.mjs.map +1 -1
- package/fesm2022/radio.mjs +18 -16
- package/fesm2022/radio.mjs.map +1 -1
- package/fesm2022/select/testing.mjs.map +1 -1
- package/fesm2022/select.mjs +72 -48
- package/fesm2022/select.mjs.map +1 -1
- package/fesm2022/sidenav/testing.mjs.map +1 -1
- package/fesm2022/sidenav.mjs +37 -31
- package/fesm2022/sidenav.mjs.map +1 -1
- package/fesm2022/slide-toggle/testing.mjs.map +1 -1
- package/fesm2022/slide-toggle.mjs +63 -23
- package/fesm2022/slide-toggle.mjs.map +1 -1
- package/fesm2022/slider/testing.mjs.map +1 -1
- package/fesm2022/slider.mjs +40 -26
- package/fesm2022/slider.mjs.map +1 -1
- package/fesm2022/snack-bar/testing.mjs.map +1 -1
- package/fesm2022/snack-bar.mjs +32 -34
- package/fesm2022/snack-bar.mjs.map +1 -1
- package/fesm2022/sort/testing.mjs.map +1 -1
- package/fesm2022/sort.mjs +16 -16
- package/fesm2022/sort.mjs.map +1 -1
- package/fesm2022/stepper/testing.mjs.map +1 -1
- package/fesm2022/stepper.mjs +58 -55
- package/fesm2022/stepper.mjs.map +1 -1
- package/fesm2022/table/testing.mjs.map +1 -1
- package/fesm2022/table.mjs +81 -63
- package/fesm2022/table.mjs.map +1 -1
- package/fesm2022/tabs/testing.mjs.map +1 -1
- package/fesm2022/tabs.mjs +408 -424
- package/fesm2022/tabs.mjs.map +1 -1
- package/fesm2022/toolbar.mjs +13 -13
- package/fesm2022/toolbar.mjs.map +1 -1
- package/fesm2022/tooltip.mjs +22 -17
- package/fesm2022/tooltip.mjs.map +1 -1
- package/fesm2022/tree/testing.mjs.map +1 -1
- package/fesm2022/tree.mjs +34 -29
- package/fesm2022/tree.mjs.map +1 -1
- package/form-field/index.d.ts +33 -45
- package/grid-list/index.d.ts +10 -10
- package/icon/_icon-theme.scss +55 -23
- package/icon/index.d.ts +4 -4
- package/input/index.d.ts +33 -32
- package/list/index.d.ts +36 -36
- package/menu/_menu-theme.scss +50 -18
- package/menu/index.d.ts +12 -12
- package/package.json +2 -2
- package/paginator/_paginator-theme.scss +62 -29
- package/paginator/index.d.ts +6 -6
- package/prebuilt-themes/deeppurple-amber.css +1 -1
- package/prebuilt-themes/indigo-pink.css +1 -1
- package/prebuilt-themes/pink-bluegrey.css +1 -1
- package/prebuilt-themes/purple-green.css +1 -1
- package/progress-bar/index.d.ts +2 -2
- package/progress-spinner/index.d.ts +4 -4
- package/radio/_radio-theme.scss +5 -10
- package/radio/index.d.ts +8 -6
- package/schematics/ng-add/fonts/material-fonts.js +1 -1
- package/schematics/ng-add/fonts/material-fonts.mjs +1 -1
- package/schematics/ng-add/index.js +2 -2
- package/schematics/ng-add/index.mjs +2 -2
- package/schematics/ng-add/package-config.js +1 -1
- package/schematics/ng-add/package-config.mjs +1 -1
- package/schematics/ng-add/setup-project.js +1 -1
- package/schematics/ng-add/setup-project.mjs +1 -1
- package/schematics/ng-add/theming/theming.js +1 -1
- package/schematics/ng-add/theming/theming.mjs +1 -1
- package/schematics/ng-generate/address-form/index.js +1 -1
- package/schematics/ng-generate/address-form/index.mjs +1 -1
- package/schematics/ng-generate/dashboard/index.js +1 -1
- package/schematics/ng-generate/dashboard/index.mjs +1 -1
- package/schematics/ng-generate/mdc-migration/index_bundled.js +596 -361
- package/schematics/ng-generate/mdc-migration/index_bundled.js.map +4 -4
- package/schematics/ng-generate/navigation/index.js +1 -1
- package/schematics/ng-generate/navigation/index.mjs +1 -1
- package/schematics/ng-generate/table/index.js +1 -1
- package/schematics/ng-generate/table/index.mjs +1 -1
- package/schematics/ng-generate/tree/index.js +1 -1
- package/schematics/ng-generate/tree/index.mjs +1 -1
- package/schematics/ng-update/index_bundled.js +41 -37
- package/schematics/ng-update/index_bundled.js.map +2 -2
- package/select/_select-theme.scss +71 -38
- package/select/index.d.ts +47 -35
- package/sidenav/_sidenav-theme.scss +49 -16
- package/sidenav/index.d.ts +11 -11
- package/slide-toggle/_slide-toggle-theme.scss +5 -4
- package/slide-toggle/index.d.ts +31 -7
- package/slider/index.d.ts +9 -9
- package/sort/index.d.ts +6 -6
- package/stepper/index.d.ts +29 -29
- package/table/index.d.ts +24 -24
- package/tabs/index.d.ts +18 -43
- package/toolbar/index.d.ts +5 -5
- package/tooltip/index.d.ts +8 -8
- package/tree/index.d.ts +15 -15
package/grid-list/index.d.ts
CHANGED
|
@@ -3,19 +3,19 @@ import { AfterContentInit } from '@angular/core';
|
|
|
3
3
|
import { Directionality } from '@angular/cdk/bidi';
|
|
4
4
|
import { ElementRef } from '@angular/core';
|
|
5
5
|
import * as i0 from '@angular/core';
|
|
6
|
-
import * as
|
|
6
|
+
import * as i1 from '@angular/material/core';
|
|
7
7
|
import { MatLine } from '@angular/material/core';
|
|
8
8
|
import { NumberInput } from '@angular/cdk/coercion';
|
|
9
9
|
import { OnInit } from '@angular/core';
|
|
10
10
|
import { QueryList } from '@angular/core';
|
|
11
11
|
|
|
12
|
-
declare namespace
|
|
12
|
+
declare namespace i2 {
|
|
13
13
|
export {
|
|
14
14
|
MatGridList
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
-
declare namespace
|
|
18
|
+
declare namespace i3 {
|
|
19
19
|
export {
|
|
20
20
|
MatGridTile,
|
|
21
21
|
MatGridTileText,
|
|
@@ -31,7 +31,7 @@ declare namespace i2 {
|
|
|
31
31
|
*/
|
|
32
32
|
export declare class MatGridAvatarCssMatStyler {
|
|
33
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatGridAvatarCssMatStyler, never>;
|
|
34
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatGridAvatarCssMatStyler, "[mat-grid-avatar], [matGridAvatar]", never, {}, {}, never, never,
|
|
34
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MatGridAvatarCssMatStyler, "[mat-grid-avatar], [matGridAvatar]", never, {}, {}, never, never, true, never>;
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
export declare class MatGridList implements MatGridListBase, OnInit, AfterContentChecked, TileStyleTarget {
|
|
@@ -81,7 +81,7 @@ export declare class MatGridList implements MatGridListBase, OnInit, AfterConten
|
|
|
81
81
|
/** Sets style on the main grid-list element, given the style name and value. */
|
|
82
82
|
_setListStyle(style: [string, string | null] | null): void;
|
|
83
83
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatGridList, [null, { optional: true; }]>;
|
|
84
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatGridList, "mat-grid-list", ["matGridList"], { "cols": { "alias": "cols"; "required": false; }; "gutterSize": { "alias": "gutterSize"; "required": false; }; "rowHeight": { "alias": "rowHeight"; "required": false; }; }, {}, ["_tiles"], ["*"],
|
|
84
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MatGridList, "mat-grid-list", ["matGridList"], { "cols": { "alias": "cols"; "required": false; }; "gutterSize": { "alias": "gutterSize"; "required": false; }; "rowHeight": { "alias": "rowHeight"; "required": false; }; }, {}, ["_tiles"], ["*"], true, never>;
|
|
85
85
|
}
|
|
86
86
|
|
|
87
87
|
/**
|
|
@@ -96,7 +96,7 @@ declare interface MatGridListBase {
|
|
|
96
96
|
|
|
97
97
|
export declare class MatGridListModule {
|
|
98
98
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatGridListModule, never>;
|
|
99
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatGridListModule, [typeof i1.
|
|
99
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MatGridListModule, never, [typeof i1.MatLineModule, typeof i1.MatCommonModule, typeof i2.MatGridList, typeof i3.MatGridTile, typeof i3.MatGridTileText, typeof i3.MatGridTileHeaderCssMatStyler, typeof i3.MatGridTileFooterCssMatStyler, typeof i3.MatGridAvatarCssMatStyler], [typeof i2.MatGridList, typeof i3.MatGridTile, typeof i3.MatGridTileText, typeof i1.MatLineModule, typeof i1.MatCommonModule, typeof i3.MatGridTileHeaderCssMatStyler, typeof i3.MatGridTileFooterCssMatStyler, typeof i3.MatGridAvatarCssMatStyler]>;
|
|
100
100
|
static ɵinj: i0.ɵɵInjectorDeclaration<MatGridListModule>;
|
|
101
101
|
}
|
|
102
102
|
|
|
@@ -118,7 +118,7 @@ export declare class MatGridTile {
|
|
|
118
118
|
*/
|
|
119
119
|
_setStyle(property: string, value: any): void;
|
|
120
120
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatGridTile, [null, { optional: true; }]>;
|
|
121
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatGridTile, "mat-grid-tile", ["matGridTile"], { "rowspan": { "alias": "rowspan"; "required": false; }; "colspan": { "alias": "colspan"; "required": false; }; }, {}, never, ["*"],
|
|
121
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MatGridTile, "mat-grid-tile", ["matGridTile"], { "rowspan": { "alias": "rowspan"; "required": false; }; "colspan": { "alias": "colspan"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
122
122
|
}
|
|
123
123
|
|
|
124
124
|
/**
|
|
@@ -127,7 +127,7 @@ export declare class MatGridTile {
|
|
|
127
127
|
*/
|
|
128
128
|
export declare class MatGridTileFooterCssMatStyler {
|
|
129
129
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatGridTileFooterCssMatStyler, never>;
|
|
130
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatGridTileFooterCssMatStyler, "mat-grid-tile-footer", never, {}, {}, never, never,
|
|
130
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MatGridTileFooterCssMatStyler, "mat-grid-tile-footer", never, {}, {}, never, never, true, never>;
|
|
131
131
|
}
|
|
132
132
|
|
|
133
133
|
/**
|
|
@@ -136,7 +136,7 @@ export declare class MatGridTileFooterCssMatStyler {
|
|
|
136
136
|
*/
|
|
137
137
|
export declare class MatGridTileHeaderCssMatStyler {
|
|
138
138
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatGridTileHeaderCssMatStyler, never>;
|
|
139
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatGridTileHeaderCssMatStyler, "mat-grid-tile-header", never, {}, {}, never, never,
|
|
139
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MatGridTileHeaderCssMatStyler, "mat-grid-tile-header", never, {}, {}, never, never, true, never>;
|
|
140
140
|
}
|
|
141
141
|
|
|
142
142
|
export declare class MatGridTileText implements AfterContentInit {
|
|
@@ -145,7 +145,7 @@ export declare class MatGridTileText implements AfterContentInit {
|
|
|
145
145
|
constructor(_element: ElementRef<HTMLElement>);
|
|
146
146
|
ngAfterContentInit(): void;
|
|
147
147
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatGridTileText, never>;
|
|
148
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatGridTileText, "mat-grid-tile-header, mat-grid-tile-footer", never, {}, {}, ["_lines"], ["[mat-grid-avatar], [matGridAvatar]", "[mat-line], [matLine]", "*"],
|
|
148
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MatGridTileText, "mat-grid-tile-header, mat-grid-tile-footer", never, {}, {}, ["_lines"], ["[mat-grid-avatar], [matGridAvatar]", "[mat-line], [matLine]", "*"], true, never>;
|
|
149
149
|
}
|
|
150
150
|
|
|
151
151
|
|
package/icon/_icon-theme.scss
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@use 'sass:map';
|
|
1
2
|
@use '../core/theming/theming';
|
|
2
3
|
@use '../core/theming/inspection';
|
|
3
4
|
@use '../core/tokens/m2/mat/icon' as tokens-mat-icon;
|
|
@@ -10,45 +11,76 @@
|
|
|
10
11
|
@include token-utils.create-token-values(tokens-mat-icon.$prefix, $tokens);
|
|
11
12
|
}
|
|
12
13
|
|
|
13
|
-
@mixin base($theme) {
|
|
14
|
+
@mixin base($theme) {
|
|
15
|
+
@if inspection.get-theme-version($theme) == 1 {
|
|
16
|
+
@include _theme-from-tokens(inspection.get-theme-tokens($theme, base));
|
|
17
|
+
}
|
|
18
|
+
@else {}
|
|
19
|
+
}
|
|
14
20
|
|
|
15
21
|
@mixin color($theme) {
|
|
16
|
-
@
|
|
17
|
-
@include
|
|
18
|
-
tokens-mat-icon.get-color-tokens($theme));
|
|
22
|
+
@if inspection.get-theme-version($theme) == 1 {
|
|
23
|
+
@include _theme-from-tokens(inspection.get-theme-tokens($theme, color));
|
|
19
24
|
}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
25
|
+
@else {
|
|
26
|
+
@include sass-utils.current-selector-or-root() {
|
|
27
|
+
@include token-utils.create-token-values(tokens-mat-icon.$prefix,
|
|
28
|
+
tokens-mat-icon.get-color-tokens($theme));
|
|
24
29
|
}
|
|
25
30
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
31
|
+
.mat-icon {
|
|
32
|
+
&.mat-primary {
|
|
33
|
+
@include _palette-colors($theme, primary);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
&.mat-accent {
|
|
37
|
+
@include _palette-colors($theme, accent);
|
|
38
|
+
}
|
|
29
39
|
|
|
30
|
-
|
|
31
|
-
|
|
40
|
+
&.mat-warn {
|
|
41
|
+
@include _palette-colors($theme, warn);
|
|
42
|
+
}
|
|
32
43
|
}
|
|
33
44
|
}
|
|
34
45
|
}
|
|
35
46
|
|
|
36
|
-
@mixin typography($theme) {
|
|
47
|
+
@mixin typography($theme) {
|
|
48
|
+
@if inspection.get-theme-version($theme) == 1 {
|
|
49
|
+
@include _theme-from-tokens(inspection.get-theme-tokens($theme, typography));
|
|
50
|
+
}
|
|
51
|
+
@else {}
|
|
52
|
+
}
|
|
37
53
|
|
|
38
|
-
@mixin density($theme) {
|
|
54
|
+
@mixin density($theme) {
|
|
55
|
+
@if inspection.get-theme-version($theme) == 1 {
|
|
56
|
+
@include _theme-from-tokens(inspection.get-theme-tokens($theme, density));
|
|
57
|
+
}
|
|
58
|
+
@else {}
|
|
59
|
+
}
|
|
39
60
|
|
|
40
61
|
@mixin theme($theme) {
|
|
41
62
|
@include theming.private-check-duplicate-theme-styles($theme, 'mat-icon') {
|
|
42
|
-
@
|
|
43
|
-
|
|
44
|
-
@include color($theme);
|
|
63
|
+
@if inspection.get-theme-version($theme) == 1 {
|
|
64
|
+
@include _theme-from-tokens(inspection.get-theme-tokens($theme));
|
|
45
65
|
}
|
|
46
|
-
@
|
|
47
|
-
@include
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
66
|
+
@else {
|
|
67
|
+
@include base($theme);
|
|
68
|
+
@if inspection.theme-has($theme, color) {
|
|
69
|
+
@include color($theme);
|
|
70
|
+
}
|
|
71
|
+
@if inspection.theme-has($theme, density) {
|
|
72
|
+
@include density($theme);
|
|
73
|
+
}
|
|
74
|
+
@if inspection.theme-has($theme, typography) {
|
|
75
|
+
@include typography($theme);
|
|
76
|
+
}
|
|
51
77
|
}
|
|
52
78
|
}
|
|
53
79
|
}
|
|
54
80
|
|
|
81
|
+
@mixin _theme-from-tokens($tokens) {
|
|
82
|
+
@if ($tokens != ()) {
|
|
83
|
+
@include token-utils.create-token-values(
|
|
84
|
+
tokens-mat-icon.$prefix, map.get($tokens, tokens-mat-icon.$prefix));
|
|
85
|
+
}
|
|
86
|
+
}
|
package/icon/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { ElementRef } from '@angular/core';
|
|
|
4
4
|
import { ErrorHandler } from '@angular/core';
|
|
5
5
|
import { HttpClient } from '@angular/common/http';
|
|
6
6
|
import * as i0 from '@angular/core';
|
|
7
|
-
import * as
|
|
7
|
+
import * as i1 from '@angular/material/core';
|
|
8
8
|
import { InjectionToken } from '@angular/core';
|
|
9
9
|
import { Observable } from 'rxjs';
|
|
10
10
|
import { OnDestroy } from '@angular/core';
|
|
@@ -42,7 +42,7 @@ export declare function getMatIconNameNotFoundError(iconName: string): Error;
|
|
|
42
42
|
*/
|
|
43
43
|
export declare function getMatIconNoHttpProviderError(): Error;
|
|
44
44
|
|
|
45
|
-
declare namespace
|
|
45
|
+
declare namespace i2 {
|
|
46
46
|
export {
|
|
47
47
|
MAT_ICON_LOCATION_FACTORY,
|
|
48
48
|
MatIconDefaultOptions,
|
|
@@ -201,7 +201,7 @@ export declare class MatIcon implements OnInit, AfterViewChecked, OnDestroy {
|
|
|
201
201
|
/** Sets a new SVG icon with a particular name. */
|
|
202
202
|
private _updateSvgIcon;
|
|
203
203
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatIcon, [null, null, { attribute: "aria-hidden"; }, null, null, { optional: true; }]>;
|
|
204
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatIcon, "mat-icon", ["matIcon"], { "color": { "alias": "color"; "required": false; }; "inline": { "alias": "inline"; "required": false; }; "svgIcon": { "alias": "svgIcon"; "required": false; }; "fontSet": { "alias": "fontSet"; "required": false; }; "fontIcon": { "alias": "fontIcon"; "required": false; }; }, {}, never, ["*"],
|
|
204
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MatIcon, "mat-icon", ["matIcon"], { "color": { "alias": "color"; "required": false; }; "inline": { "alias": "inline"; "required": false; }; "svgIcon": { "alias": "svgIcon"; "required": false; }; "fontSet": { "alias": "fontSet"; "required": false; }; "fontIcon": { "alias": "fontIcon"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
205
205
|
static ngAcceptInputType_inline: unknown;
|
|
206
206
|
}
|
|
207
207
|
|
|
@@ -223,7 +223,7 @@ export declare interface MatIconLocation {
|
|
|
223
223
|
|
|
224
224
|
export declare class MatIconModule {
|
|
225
225
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatIconModule, never>;
|
|
226
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatIconModule, [typeof i1.
|
|
226
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MatIconModule, never, [typeof i1.MatCommonModule, typeof i2.MatIcon], [typeof i2.MatIcon, typeof i1.MatCommonModule]>;
|
|
227
227
|
static ɵinj: i0.ɵɵInjectorDeclaration<MatIconModule>;
|
|
228
228
|
}
|
|
229
229
|
|
package/input/index.d.ts
CHANGED
|
@@ -1,20 +1,22 @@
|
|
|
1
|
-
import { _AbstractConstructor } from '@angular/material/core';
|
|
2
1
|
import { AfterViewInit } from '@angular/core';
|
|
3
2
|
import { AutofillMonitor } from '@angular/cdk/text-field';
|
|
4
3
|
import { BooleanInput } from '@angular/cdk/coercion';
|
|
5
|
-
import { CanUpdateErrorState } from '@angular/material/core';
|
|
6
|
-
import { _Constructor } from '@angular/material/core';
|
|
7
4
|
import { DoCheck } from '@angular/core';
|
|
8
5
|
import { ElementRef } from '@angular/core';
|
|
9
6
|
import { ErrorStateMatcher } from '@angular/material/core';
|
|
10
7
|
import { FormGroupDirective } from '@angular/forms';
|
|
11
8
|
import * as i0 from '@angular/core';
|
|
12
|
-
import * as
|
|
13
|
-
import * as
|
|
9
|
+
import * as i1 from '@angular/material/core';
|
|
10
|
+
import * as i2 from '@angular/material/form-field';
|
|
14
11
|
import * as i4 from '@angular/cdk/text-field';
|
|
15
12
|
import { InjectionToken } from '@angular/core';
|
|
13
|
+
import { MatError } from '@angular/material/form-field';
|
|
16
14
|
import { MatFormField } from '@angular/material/form-field';
|
|
17
15
|
import { MatFormFieldControl } from '@angular/material/form-field';
|
|
16
|
+
import { MatHint } from '@angular/material/form-field';
|
|
17
|
+
import { MatLabel } from '@angular/material/form-field';
|
|
18
|
+
import { MatPrefix } from '@angular/material/form-field';
|
|
19
|
+
import { MatSuffix } from '@angular/material/form-field';
|
|
18
20
|
import { NgControl } from '@angular/forms';
|
|
19
21
|
import { NgForm } from '@angular/forms';
|
|
20
22
|
import { NgZone } from '@angular/core';
|
|
@@ -27,7 +29,7 @@ import { Subject } from 'rxjs';
|
|
|
27
29
|
/** @docs-private */
|
|
28
30
|
export declare function getMatInputUnsupportedTypeError(type: string): Error;
|
|
29
31
|
|
|
30
|
-
declare namespace
|
|
32
|
+
declare namespace i3 {
|
|
31
33
|
export {
|
|
32
34
|
MatInput
|
|
33
35
|
}
|
|
@@ -43,15 +45,23 @@ export declare const MAT_INPUT_VALUE_ACCESSOR: InjectionToken<{
|
|
|
43
45
|
value: any;
|
|
44
46
|
}>;
|
|
45
47
|
|
|
46
|
-
export
|
|
48
|
+
export { MatError }
|
|
49
|
+
|
|
50
|
+
export { MatFormField }
|
|
51
|
+
|
|
52
|
+
export { MatHint }
|
|
53
|
+
|
|
54
|
+
export declare class MatInput implements MatFormFieldControl<any>, OnChanges, OnDestroy, AfterViewInit, DoCheck {
|
|
47
55
|
protected _elementRef: ElementRef<HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement>;
|
|
48
56
|
protected _platform: Platform;
|
|
57
|
+
ngControl: NgControl;
|
|
49
58
|
private _autofillMonitor;
|
|
50
59
|
protected _formField?: MatFormField | undefined;
|
|
51
60
|
protected _uid: string;
|
|
52
61
|
protected _previousNativeValue: any;
|
|
53
62
|
private _inputValueAccessor;
|
|
54
63
|
private _previousPlaceholder;
|
|
64
|
+
private _errorStateTracker;
|
|
55
65
|
/** Whether the component is being rendered on the server. */
|
|
56
66
|
readonly _isServer: boolean;
|
|
57
67
|
/** Whether the component is a native html select. */
|
|
@@ -116,7 +126,8 @@ export declare class MatInput extends _MatInputBase implements MatFormFieldContr
|
|
|
116
126
|
set type(value: string);
|
|
117
127
|
protected _type: string;
|
|
118
128
|
/** An object used to control when error messages are shown. */
|
|
119
|
-
errorStateMatcher: ErrorStateMatcher;
|
|
129
|
+
get errorStateMatcher(): ErrorStateMatcher;
|
|
130
|
+
set errorStateMatcher(value: ErrorStateMatcher);
|
|
120
131
|
/**
|
|
121
132
|
* Implemented as part of MatFormFieldControl.
|
|
122
133
|
* @docs-private
|
|
@@ -132,14 +143,19 @@ export declare class MatInput extends _MatInputBase implements MatFormFieldContr
|
|
|
132
143
|
get readonly(): boolean;
|
|
133
144
|
set readonly(value: BooleanInput);
|
|
134
145
|
private _readonly;
|
|
146
|
+
/** Whether the input is in an error state. */
|
|
147
|
+
get errorState(): boolean;
|
|
148
|
+
set errorState(value: boolean);
|
|
135
149
|
protected _neverEmptyInputTypes: string[];
|
|
136
|
-
constructor(_elementRef: ElementRef<HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement>, _platform: Platform, ngControl: NgControl,
|
|
150
|
+
constructor(_elementRef: ElementRef<HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement>, _platform: Platform, ngControl: NgControl, parentForm: NgForm, parentFormGroup: FormGroupDirective, defaultErrorStateMatcher: ErrorStateMatcher, inputValueAccessor: any, _autofillMonitor: AutofillMonitor, ngZone: NgZone, _formField?: MatFormField | undefined);
|
|
137
151
|
ngAfterViewInit(): void;
|
|
138
152
|
ngOnChanges(): void;
|
|
139
153
|
ngOnDestroy(): void;
|
|
140
154
|
ngDoCheck(): void;
|
|
141
155
|
/** Focuses the input. */
|
|
142
156
|
focus(options?: FocusOptions): void;
|
|
157
|
+
/** Refreshes the error state of the input. */
|
|
158
|
+
updateErrorState(): void;
|
|
143
159
|
/** Callback for the cases where the focused state of the input changes. */
|
|
144
160
|
_focusChanged(isFocused: boolean): void;
|
|
145
161
|
_onInput(): void;
|
|
@@ -179,34 +195,19 @@ export declare class MatInput extends _MatInputBase implements MatFormFieldContr
|
|
|
179
195
|
_isInlineSelect(): boolean;
|
|
180
196
|
private _iOSKeyupListener;
|
|
181
197
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatInput, [null, null, { optional: true; self: true; }, { optional: true; }, { optional: true; }, null, { optional: true; self: true; }, null, null, { optional: true; }]>;
|
|
182
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatInput, "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", ["matInput"], { "disabled": { "alias": "disabled"; "required": false; }; "id": { "alias": "id"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "type": { "alias": "type"; "required": false; }; "errorStateMatcher": { "alias": "errorStateMatcher"; "required": false; }; "userAriaDescribedBy": { "alias": "aria-describedby"; "required": false; }; "value": { "alias": "value"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; }, {}, never, never,
|
|
198
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MatInput, "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", ["matInput"], { "disabled": { "alias": "disabled"; "required": false; }; "id": { "alias": "id"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "type": { "alias": "type"; "required": false; }; "errorStateMatcher": { "alias": "errorStateMatcher"; "required": false; }; "userAriaDescribedBy": { "alias": "aria-describedby"; "required": false; }; "value": { "alias": "value"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; }, {}, never, never, true, never>;
|
|
183
199
|
}
|
|
184
200
|
|
|
185
|
-
/** @docs-private */
|
|
186
|
-
declare const _MatInputBase: _Constructor<CanUpdateErrorState> & _AbstractConstructor<CanUpdateErrorState> & {
|
|
187
|
-
new (_defaultErrorStateMatcher: ErrorStateMatcher, _parentForm: NgForm, _parentFormGroup: FormGroupDirective, ngControl: NgControl): {
|
|
188
|
-
/**
|
|
189
|
-
* Emits whenever the component state changes and should cause the parent
|
|
190
|
-
* form field to update. Implemented as part of `MatFormFieldControl`.
|
|
191
|
-
* @docs-private
|
|
192
|
-
*/
|
|
193
|
-
readonly stateChanges: Subject<void>;
|
|
194
|
-
_defaultErrorStateMatcher: ErrorStateMatcher;
|
|
195
|
-
_parentForm: NgForm;
|
|
196
|
-
_parentFormGroup: FormGroupDirective;
|
|
197
|
-
/**
|
|
198
|
-
* Form control bound to the component.
|
|
199
|
-
* Implemented as part of `MatFormFieldControl`.
|
|
200
|
-
* @docs-private
|
|
201
|
-
*/
|
|
202
|
-
ngControl: NgControl;
|
|
203
|
-
};
|
|
204
|
-
};
|
|
205
|
-
|
|
206
201
|
export declare class MatInputModule {
|
|
207
202
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatInputModule, never>;
|
|
208
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatInputModule, [typeof i1.
|
|
203
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MatInputModule, never, [typeof i1.MatCommonModule, typeof i2.MatFormFieldModule, typeof i3.MatInput], [typeof i3.MatInput, typeof i2.MatFormFieldModule, typeof i4.TextFieldModule, typeof i1.MatCommonModule]>;
|
|
209
204
|
static ɵinj: i0.ɵɵInjectorDeclaration<MatInputModule>;
|
|
210
205
|
}
|
|
211
206
|
|
|
207
|
+
export { MatLabel }
|
|
208
|
+
|
|
209
|
+
export { MatPrefix }
|
|
210
|
+
|
|
211
|
+
export { MatSuffix }
|
|
212
|
+
|
|
212
213
|
export { }
|
package/list/index.d.ts
CHANGED
|
@@ -5,10 +5,10 @@ import { ControlValueAccessor } from '@angular/forms';
|
|
|
5
5
|
import { ElementRef } from '@angular/core';
|
|
6
6
|
import { EventEmitter } from '@angular/core';
|
|
7
7
|
import * as i0 from '@angular/core';
|
|
8
|
-
import * as
|
|
8
|
+
import * as i1 from '@angular/cdk/observers';
|
|
9
9
|
import * as i11 from '@angular/material/divider';
|
|
10
|
-
import * as
|
|
11
|
-
import * as
|
|
10
|
+
import * as i2 from '@angular/common';
|
|
11
|
+
import * as i3 from '@angular/material/core';
|
|
12
12
|
import { InjectionToken } from '@angular/core';
|
|
13
13
|
import { NgZone } from '@angular/core';
|
|
14
14
|
import { OnChanges } from '@angular/core';
|
|
@@ -23,7 +23,18 @@ import { SelectionModel } from '@angular/cdk/collections';
|
|
|
23
23
|
import { SimpleChanges } from '@angular/core';
|
|
24
24
|
import { ThemePalette } from '@angular/material/core';
|
|
25
25
|
|
|
26
|
-
declare namespace
|
|
26
|
+
declare namespace i10 {
|
|
27
|
+
export {
|
|
28
|
+
MatListItemTitle,
|
|
29
|
+
MatListItemLine,
|
|
30
|
+
MatListItemMeta,
|
|
31
|
+
_MatListItemGraphicBase,
|
|
32
|
+
MatListItemAvatar,
|
|
33
|
+
MatListItemIcon
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
declare namespace i4 {
|
|
27
38
|
export {
|
|
28
39
|
MAT_LIST,
|
|
29
40
|
MatList,
|
|
@@ -31,20 +42,20 @@ declare namespace i1 {
|
|
|
31
42
|
}
|
|
32
43
|
}
|
|
33
44
|
|
|
34
|
-
declare namespace
|
|
45
|
+
declare namespace i5 {
|
|
35
46
|
export {
|
|
36
47
|
MatActionList
|
|
37
48
|
}
|
|
38
49
|
}
|
|
39
50
|
|
|
40
|
-
declare namespace
|
|
51
|
+
declare namespace i6 {
|
|
41
52
|
export {
|
|
42
53
|
MAT_NAV_LIST,
|
|
43
54
|
MatNavList
|
|
44
55
|
}
|
|
45
56
|
}
|
|
46
57
|
|
|
47
|
-
declare namespace
|
|
58
|
+
declare namespace i7 {
|
|
48
59
|
export {
|
|
49
60
|
MAT_SELECTION_LIST_VALUE_ACCESSOR,
|
|
50
61
|
MatSelectionListChange,
|
|
@@ -52,7 +63,7 @@ declare namespace i4 {
|
|
|
52
63
|
}
|
|
53
64
|
}
|
|
54
65
|
|
|
55
|
-
declare namespace
|
|
66
|
+
declare namespace i8 {
|
|
56
67
|
export {
|
|
57
68
|
SELECTION_LIST,
|
|
58
69
|
SelectionList,
|
|
@@ -60,23 +71,12 @@ declare namespace i5 {
|
|
|
60
71
|
}
|
|
61
72
|
}
|
|
62
73
|
|
|
63
|
-
declare namespace
|
|
74
|
+
declare namespace i9 {
|
|
64
75
|
export {
|
|
65
76
|
MatListSubheaderCssMatStyler
|
|
66
77
|
}
|
|
67
78
|
}
|
|
68
79
|
|
|
69
|
-
declare namespace i7 {
|
|
70
|
-
export {
|
|
71
|
-
MatListItemTitle,
|
|
72
|
-
MatListItemLine,
|
|
73
|
-
MatListItemMeta,
|
|
74
|
-
_MatListItemGraphicBase,
|
|
75
|
-
MatListItemAvatar,
|
|
76
|
-
MatListItemIcon
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
|
|
80
80
|
/**
|
|
81
81
|
* Interface describing a list option. This is used to avoid circular
|
|
82
82
|
* dependencies between the list-option and the styler directives.
|
|
@@ -108,12 +108,12 @@ export declare const MAT_SELECTION_LIST_VALUE_ACCESSOR: any;
|
|
|
108
108
|
export declare class MatActionList extends MatListBase {
|
|
109
109
|
_isNonInteractive: boolean;
|
|
110
110
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatActionList, never>;
|
|
111
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatActionList, "mat-action-list", ["matActionList"], {}, {}, never, ["*"],
|
|
111
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MatActionList, "mat-action-list", ["matActionList"], {}, {}, never, ["*"], true, never>;
|
|
112
112
|
}
|
|
113
113
|
|
|
114
114
|
export declare class MatList extends MatListBase {
|
|
115
115
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatList, never>;
|
|
116
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatList, "mat-list", ["matList"], {}, {}, never, ["*"],
|
|
116
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MatList, "mat-list", ["matList"], {}, {}, never, ["*"], true, never>;
|
|
117
117
|
}
|
|
118
118
|
|
|
119
119
|
declare abstract class MatListBase {
|
|
@@ -131,7 +131,7 @@ declare abstract class MatListBase {
|
|
|
131
131
|
private _disabled;
|
|
132
132
|
protected _defaultOptions: MatListConfig | null;
|
|
133
133
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatListBase, never>;
|
|
134
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatListBase, never, never, { "disableRipple": { "alias": "disableRipple"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never,
|
|
134
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MatListBase, never, never, { "disableRipple": { "alias": "disableRipple"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never, true, never>;
|
|
135
135
|
}
|
|
136
136
|
|
|
137
137
|
/** Object that can be used to configure the default options for the list module. */
|
|
@@ -157,7 +157,7 @@ export declare class MatListItem extends MatListItemBase {
|
|
|
157
157
|
*/
|
|
158
158
|
_getAriaCurrent(): string | null;
|
|
159
159
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatListItem, [null, null, { optional: true; }, null, { optional: true; }, { optional: true; }]>;
|
|
160
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatListItem, "mat-list-item, a[mat-list-item], button[mat-list-item]", ["matListItem"], { "activated": { "alias": "activated"; "required": false; }; }, {}, ["_lines", "_titles", "_meta"], ["[matListItemAvatar],[matListItemIcon]", "[matListItemTitle]", "[matListItemLine]", "*", "[matListItemMeta]", "mat-divider"],
|
|
160
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MatListItem, "mat-list-item, a[mat-list-item], button[mat-list-item]", ["matListItem"], { "activated": { "alias": "activated"; "required": false; }; }, {}, ["_lines", "_titles", "_meta"], ["[matListItemAvatar],[matListItemIcon]", "[matListItemTitle]", "[matListItemLine]", "*", "[matListItemMeta]", "mat-divider"], true, never>;
|
|
161
161
|
}
|
|
162
162
|
|
|
163
163
|
/**
|
|
@@ -167,7 +167,7 @@ export declare class MatListItem extends MatListItemBase {
|
|
|
167
167
|
*/
|
|
168
168
|
export declare class MatListItemAvatar extends _MatListItemGraphicBase {
|
|
169
169
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatListItemAvatar, never>;
|
|
170
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatListItemAvatar, "[matListItemAvatar]", never, {}, {}, never, never,
|
|
170
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MatListItemAvatar, "[matListItemAvatar]", never, {}, {}, never, never, true, never>;
|
|
171
171
|
}
|
|
172
172
|
|
|
173
173
|
declare abstract class MatListItemBase implements AfterViewInit, OnDestroy, RippleTarget {
|
|
@@ -263,7 +263,7 @@ declare abstract class MatListItemBase implements AfterViewInit, OnDestroy, Ripp
|
|
|
263
263
|
/** Checks whether the list item has unscoped text content. */
|
|
264
264
|
private _checkDomForUnscopedTextContent;
|
|
265
265
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatListItemBase, [null, null, { optional: true; }, null, { optional: true; }, { optional: true; }]>;
|
|
266
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatListItemBase, never, never, { "lines": { "alias": "lines"; "required": false; }; "disableRipple": { "alias": "disableRipple"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, ["_avatars", "_icons"], never,
|
|
266
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MatListItemBase, never, never, { "lines": { "alias": "lines"; "required": false; }; "disableRipple": { "alias": "disableRipple"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, ["_avatars", "_icons"], never, true, never>;
|
|
267
267
|
}
|
|
268
268
|
|
|
269
269
|
/**
|
|
@@ -279,7 +279,7 @@ export declare class _MatListItemGraphicBase {
|
|
|
279
279
|
constructor(_listOption: ListOption);
|
|
280
280
|
_isAlignedAtStart(): boolean;
|
|
281
281
|
static ɵfac: i0.ɵɵFactoryDeclaration<_MatListItemGraphicBase, [{ optional: true; }]>;
|
|
282
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<_MatListItemGraphicBase, never, never, {}, {}, never, never,
|
|
282
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<_MatListItemGraphicBase, never, never, {}, {}, never, never, true, never>;
|
|
283
283
|
}
|
|
284
284
|
|
|
285
285
|
/**
|
|
@@ -289,7 +289,7 @@ export declare class _MatListItemGraphicBase {
|
|
|
289
289
|
*/
|
|
290
290
|
export declare class MatListItemIcon extends _MatListItemGraphicBase {
|
|
291
291
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatListItemIcon, never>;
|
|
292
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatListItemIcon, "[matListItemIcon]", never, {}, {}, never, never,
|
|
292
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MatListItemIcon, "[matListItemIcon]", never, {}, {}, never, never, true, never>;
|
|
293
293
|
}
|
|
294
294
|
|
|
295
295
|
/**
|
|
@@ -302,7 +302,7 @@ export declare class MatListItemLine {
|
|
|
302
302
|
_elementRef: ElementRef<HTMLElement>;
|
|
303
303
|
constructor(_elementRef: ElementRef<HTMLElement>);
|
|
304
304
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatListItemLine, never>;
|
|
305
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatListItemLine, "[matListItemLine]", never, {}, {}, never, never,
|
|
305
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MatListItemLine, "[matListItemLine]", never, {}, {}, never, never, true, never>;
|
|
306
306
|
}
|
|
307
307
|
|
|
308
308
|
/**
|
|
@@ -313,7 +313,7 @@ export declare class MatListItemLine {
|
|
|
313
313
|
*/
|
|
314
314
|
export declare class MatListItemMeta {
|
|
315
315
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatListItemMeta, never>;
|
|
316
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatListItemMeta, "[matListItemMeta]", never, {}, {}, never, never,
|
|
316
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MatListItemMeta, "[matListItemMeta]", never, {}, {}, never, never, true, never>;
|
|
317
317
|
}
|
|
318
318
|
|
|
319
319
|
/**
|
|
@@ -326,12 +326,12 @@ export declare class MatListItemTitle {
|
|
|
326
326
|
_elementRef: ElementRef<HTMLElement>;
|
|
327
327
|
constructor(_elementRef: ElementRef<HTMLElement>);
|
|
328
328
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatListItemTitle, never>;
|
|
329
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatListItemTitle, "[matListItemTitle]", never, {}, {}, never, never,
|
|
329
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MatListItemTitle, "[matListItemTitle]", never, {}, {}, never, never, true, never>;
|
|
330
330
|
}
|
|
331
331
|
|
|
332
332
|
export declare class MatListModule {
|
|
333
333
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatListModule, never>;
|
|
334
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MatListModule, [typeof i1.
|
|
334
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MatListModule, never, [typeof i1.ObserversModule, typeof i2.CommonModule, typeof i3.MatCommonModule, typeof i3.MatRippleModule, typeof i3.MatPseudoCheckboxModule, typeof i4.MatList, typeof i5.MatActionList, typeof i6.MatNavList, typeof i7.MatSelectionList, typeof i4.MatListItem, typeof i8.MatListOption, typeof i9.MatListSubheaderCssMatStyler, typeof i10.MatListItemAvatar, typeof i10.MatListItemIcon, typeof i10.MatListItemLine, typeof i10.MatListItemTitle, typeof i10.MatListItemMeta], [typeof i4.MatList, typeof i5.MatActionList, typeof i6.MatNavList, typeof i7.MatSelectionList, typeof i4.MatListItem, typeof i8.MatListOption, typeof i10.MatListItemAvatar, typeof i10.MatListItemIcon, typeof i9.MatListSubheaderCssMatStyler, typeof i11.MatDividerModule, typeof i10.MatListItemLine, typeof i10.MatListItemTitle, typeof i10.MatListItemMeta]>;
|
|
335
335
|
static ɵinj: i0.ɵɵInjectorDeclaration<MatListModule>;
|
|
336
336
|
}
|
|
337
337
|
|
|
@@ -410,7 +410,7 @@ export declare class MatListOption extends MatListItemBase implements ListOption
|
|
|
410
410
|
/** Sets the tabindex of the list option. */
|
|
411
411
|
_setTabindex(value: number): void;
|
|
412
412
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatListOption, [null, null, null, null, null, { optional: true; }, { optional: true; }]>;
|
|
413
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatListOption, "mat-list-option", ["matListOption"], { "togglePosition": { "alias": "togglePosition"; "required": false; }; "checkboxPosition": { "alias": "checkboxPosition"; "required": false; }; "color": { "alias": "color"; "required": false; }; "value": { "alias": "value"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; }, { "selectedChange": "selectedChange"; }, ["_lines", "_titles"], ["[matListItemAvatar],[matListItemIcon]", "[matListItemTitle]", "[matListItemLine]", "*", "mat-divider"],
|
|
413
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MatListOption, "mat-list-option", ["matListOption"], { "togglePosition": { "alias": "togglePosition"; "required": false; }; "checkboxPosition": { "alias": "checkboxPosition"; "required": false; }; "color": { "alias": "color"; "required": false; }; "value": { "alias": "value"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; }, { "selectedChange": "selectedChange"; }, ["_lines", "_titles"], ["[matListItemAvatar],[matListItemIcon]", "[matListItemTitle]", "[matListItemLine]", "*", "mat-divider"], true, never>;
|
|
414
414
|
}
|
|
415
415
|
|
|
416
416
|
/**
|
|
@@ -427,13 +427,13 @@ export { MatListOptionTogglePosition }
|
|
|
427
427
|
*/
|
|
428
428
|
export declare class MatListSubheaderCssMatStyler {
|
|
429
429
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatListSubheaderCssMatStyler, never>;
|
|
430
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MatListSubheaderCssMatStyler, "[mat-subheader], [matSubheader]", never, {}, {}, never, never,
|
|
430
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MatListSubheaderCssMatStyler, "[mat-subheader], [matSubheader]", never, {}, {}, never, never, true, never>;
|
|
431
431
|
}
|
|
432
432
|
|
|
433
433
|
export declare class MatNavList extends MatListBase {
|
|
434
434
|
_isNonInteractive: boolean;
|
|
435
435
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatNavList, never>;
|
|
436
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatNavList, "mat-nav-list", ["matNavList"], {}, {}, never, ["*"],
|
|
436
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MatNavList, "mat-nav-list", ["matNavList"], {}, {}, never, ["*"], true, never>;
|
|
437
437
|
}
|
|
438
438
|
|
|
439
439
|
export declare class MatSelectionList extends MatListBase implements SelectionList, ControlValueAccessor, AfterViewInit, OnChanges, OnDestroy {
|
|
@@ -549,7 +549,7 @@ export declare class MatSelectionList extends MatListBase implements SelectionLi
|
|
|
549
549
|
/** Returns whether the focus is currently within the list. */
|
|
550
550
|
private _containsFocus;
|
|
551
551
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatSelectionList, never>;
|
|
552
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatSelectionList, "mat-selection-list", ["matSelectionList"], { "color": { "alias": "color"; "required": false; }; "compareWith": { "alias": "compareWith"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "hideSingleSelectionIndicator": { "alias": "hideSingleSelectionIndicator"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "selectionChange": "selectionChange"; }, ["_items"], ["*"],
|
|
552
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MatSelectionList, "mat-selection-list", ["matSelectionList"], { "color": { "alias": "color"; "required": false; }; "compareWith": { "alias": "compareWith"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "hideSingleSelectionIndicator": { "alias": "hideSingleSelectionIndicator"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "selectionChange": "selectionChange"; }, ["_items"], ["*"], true, never>;
|
|
553
553
|
}
|
|
554
554
|
|
|
555
555
|
/** Change event that is being fired whenever the selected state of an option changes. */
|