@ptsecurity/mosaic 15.5.0 → 16.0.0
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/_theming.scss +29 -6
- package/_visual.scss +6 -4
- package/autocomplete/autocomplete-trigger.directive.d.ts +6 -16
- package/autocomplete/autocomplete.component.d.ts +1 -1
- package/button/_button-theme.scss +2 -5
- package/button/button.component.d.ts +1 -1
- package/button-toggle/_button-toggle-theme.scss +2 -5
- package/button-toggle/button-toggle.component.d.ts +3 -3
- package/card/card.component.d.ts +1 -1
- package/checkbox/_checkbox-theme.scss +6 -5
- package/checkbox/checkbox-config.d.ts +1 -1
- package/checkbox/checkbox.d.ts +1 -1
- package/code-block/_code-block-theme.scss +2 -6
- package/code-block/actionbar.component.d.ts +1 -1
- package/code-block/code-block.component.d.ts +1 -1
- package/core/common-behaviors/color.d.ts +1 -1
- package/core/common-behaviors/constructor.d.ts +2 -2
- package/core/common-behaviors/disabled.d.ts +1 -1
- package/core/common-behaviors/error-state.d.ts +1 -1
- package/core/common-behaviors/tabindex.d.ts +1 -1
- package/core/datetime/date-formats.d.ts +1 -1
- package/core/formatters/index.d.ts +1 -1
- package/core/formatters/number/formatter.d.ts +55 -0
- package/core/forms/_forms-theme.scss +2 -4
- package/core/label/label-options.d.ts +1 -1
- package/core/locales/en-US.d.ts +13 -2
- package/core/locales/es-LA.d.ts +21 -0
- package/core/locales/fa-IR.d.ts +22 -0
- package/core/locales/locale-service.d.ts +111 -5
- package/core/locales/pt-BR.d.ts +21 -0
- package/core/locales/ru-RU.d.ts +13 -2
- package/core/locales/zh-CN.d.ts +20 -0
- package/core/option/_optgroup-theme.scss +2 -4
- package/core/option/_option-theme.scss +2 -5
- package/core/option/action.d.ts +1 -1
- package/core/option/optgroup.d.ts +1 -1
- package/core/option/option.d.ts +37 -8
- package/core/overlay/overlay-position-map.d.ts +7 -1
- package/core/selection/pseudo-checkbox/pseudo-checkbox.d.ts +2 -2
- package/core/styles/_variables.scss +1 -0
- package/core/styles/theming/_badges.scss +2 -1
- package/core/styles/theming/_theming.scss +1 -0
- package/datepicker/_datepicker-theme.scss +2 -5
- package/datepicker/calendar-body.component.d.ts +2 -2
- package/datepicker/calendar-header.component.d.ts +9 -3
- package/datepicker/calendar.component.d.ts +4 -5
- package/datepicker/datepicker-input.directive.d.ts +1 -1
- package/datepicker/datepicker-toggle.component.d.ts +1 -1
- package/datepicker/datepicker.component.d.ts +1 -1
- package/datepicker/month-view.component.d.ts +4 -5
- package/divider/divider.component.d.ts +1 -1
- package/dl/_dl-theme.scss +2 -5
- package/dl/dl.component.d.ts +1 -1
- package/dropdown/_dropdown-theme.scss +2 -5
- package/dropdown/dropdown-item.component.d.ts +1 -1
- package/dropdown/dropdown-trigger.directive.d.ts +1 -1
- package/dropdown/dropdown.component.d.ts +1 -1
- package/dropdown/dropdown.types.d.ts +3 -3
- package/ellipsis-center/ellipsis-center.directive.d.ts +1 -1
- package/{esm2020 → esm2022}/autocomplete/autocomplete-origin.directive.mjs +4 -4
- package/esm2022/autocomplete/autocomplete-trigger.directive.mjs +555 -0
- package/{esm2020 → esm2022}/autocomplete/autocomplete.component.mjs +26 -26
- package/{esm2020 → esm2022}/autocomplete/autocomplete.module.mjs +10 -10
- package/esm2022/button/button.component.mjs +148 -0
- package/{esm2020 → esm2022}/button/button.module.mjs +13 -13
- package/esm2022/button-toggle/button-toggle.component.mjs +381 -0
- package/{esm2020 → esm2022}/button-toggle/button-toggle.module.mjs +5 -5
- package/esm2022/card/card.component.mjs +80 -0
- package/{esm2020 → esm2022}/card/card.module.mjs +9 -9
- package/{esm2020 → esm2022}/checkbox/checkbox-module.mjs +5 -5
- package/{esm2020 → esm2022}/checkbox/checkbox-required-validator.mjs +4 -4
- package/esm2022/checkbox/checkbox.mjs +300 -0
- package/{esm2020 → esm2022}/code-block/actionbar.component.mjs +4 -4
- package/esm2022/code-block/code-block.component.mjs +157 -0
- package/esm2022/code-block/code-block.module.mjs +60 -0
- package/esm2022/core/common-behaviors/color.mjs +33 -0
- package/{esm2020 → esm2022}/core/common-behaviors/common-module.mjs +5 -5
- package/{esm2020 → esm2022}/core/common-behaviors/disabled.mjs +6 -6
- package/{esm2020 → esm2022}/core/common-behaviors/tabindex.mjs +6 -6
- package/{esm2020 → esm2022}/core/error/error-options.mjs +7 -7
- package/{esm2020 → esm2022}/core/formatters/date/formatter.mjs +4 -4
- package/{esm2020 → esm2022}/core/formatters/date/formatter.pipe.mjs +40 -40
- package/esm2022/core/formatters/index.mjs +86 -0
- package/esm2022/core/formatters/number/formatter.mjs +350 -0
- package/{esm2020 → esm2022}/core/forms/forms-module.mjs +7 -7
- package/{esm2020 → esm2022}/core/forms/forms.directive.mjs +7 -7
- package/{esm2020 → esm2022}/core/highlight/highlight.pipe.mjs +4 -4
- package/{esm2020 → esm2022}/core/highlight/index.mjs +5 -5
- package/{esm2020 → esm2022}/core/line/line.mjs +8 -8
- package/esm2022/core/locales/en-US.mjs +21 -0
- package/esm2022/core/locales/es-LA.mjs +27 -0
- package/esm2022/core/locales/fa-IR.mjs +28 -0
- package/{esm2020 → esm2022}/core/locales/locale-service.mjs +7 -7
- package/{esm2020 → esm2022}/core/locales/locale-service.module.mjs +7 -7
- package/esm2022/core/locales/pt-BR.mjs +27 -0
- package/esm2022/core/locales/ru-RU.mjs +21 -0
- package/esm2022/core/locales/zh-CN.mjs +26 -0
- package/{esm2020 → esm2022}/core/option/action.mjs +9 -9
- package/{esm2020 → esm2022}/core/option/optgroup.mjs +5 -5
- package/{esm2020 → esm2022}/core/option/option-module.mjs +5 -5
- package/esm2022/core/option/option.mjs +298 -0
- package/esm2022/core/overlay/overlay-position-map.mjs +251 -0
- package/{esm2020 → esm2022}/core/pop-up/pop-up-trigger.mjs +4 -4
- package/{esm2020 → esm2022}/core/pop-up/pop-up.mjs +4 -4
- package/{esm2020 → esm2022}/core/selection/pseudo-checkbox/pseudo-checkbox.mjs +4 -4
- package/{esm2020 → esm2022}/core/selection/pseudo-checkbox/pseudo-checkbox.module.mjs +5 -5
- package/esm2022/core/services/measure-scrollbar.service.mjs +48 -0
- package/{esm2020 → esm2022}/core/utils/data-size/data-size.pipe.mjs +8 -8
- package/{esm2020 → esm2022}/core/version.mjs +2 -2
- package/{esm2020 → esm2022}/datepicker/calendar-body.component.mjs +4 -4
- package/esm2022/datepicker/calendar-header.component.mjs +135 -0
- package/esm2022/datepicker/calendar.component.mjs +166 -0
- package/esm2022/datepicker/datepicker-input.directive.mjs +955 -0
- package/{esm2020 → esm2022}/datepicker/datepicker-intl.mjs +4 -4
- package/{esm2020 → esm2022}/datepicker/datepicker-module.mjs +38 -38
- package/esm2022/datepicker/datepicker-toggle.component.mjs +86 -0
- package/esm2022/datepicker/datepicker.component.mjs +393 -0
- package/esm2022/datepicker/month-view.component.mjs +149 -0
- package/{esm2020 → esm2022}/divider/divider.component.mjs +4 -4
- package/{esm2020 → esm2022}/divider/divider.module.mjs +5 -5
- package/{esm2020 → esm2022}/dl/dl.component.mjs +10 -10
- package/{esm2020 → esm2022}/dl/dl.module.mjs +13 -13
- package/{esm2020 → esm2022}/dropdown/dropdown-content.directive.mjs +4 -4
- package/{esm2020 → esm2022}/dropdown/dropdown-item.component.mjs +6 -6
- package/esm2022/dropdown/dropdown-trigger.directive.mjs +489 -0
- package/esm2022/dropdown/dropdown.component.mjs +292 -0
- package/{esm2020 → esm2022}/dropdown/dropdown.module.mjs +15 -15
- package/esm2022/ellipsis-center/ellipsis-center.directive.mjs +106 -0
- package/{esm2020 → esm2022}/file-upload/file-drop.mjs +4 -4
- package/{esm2020 → esm2022}/file-upload/file-upload.module.mjs +25 -25
- package/esm2022/file-upload/multiple-file-upload.component.mjs +165 -0
- package/esm2022/file-upload/single-file-upload.component.mjs +134 -0
- package/{esm2020 → esm2022}/form-field/cleaner.mjs +4 -4
- package/esm2022/form-field/form-field.mjs +267 -0
- package/{esm2020 → esm2022}/form-field/form-field.module.mjs +23 -23
- package/{esm2020 → esm2022}/form-field/hint.mjs +4 -4
- package/esm2022/form-field/password-hint.mjs +146 -0
- package/{esm2020 → esm2022}/form-field/prefix.mjs +4 -4
- package/{esm2020 → esm2022}/form-field/stepper.mjs +6 -6
- package/{esm2020 → esm2022}/form-field/suffix.mjs +4 -4
- package/esm2022/form-field/validate.directive.mjs +158 -0
- package/{esm2020 → esm2022}/icon/icon.component.mjs +7 -7
- package/{esm2020 → esm2022}/icon/icon.module.mjs +11 -11
- package/{esm2020 → esm2022}/input/input-number-validators.mjs +7 -7
- package/esm2022/input/input-number.mjs +168 -0
- package/esm2022/input/input-password.mjs +343 -0
- package/esm2022/input/input.mjs +297 -0
- package/{esm2020 → esm2022}/input/input.module.mjs +23 -23
- package/esm2022/link/link.component.mjs +122 -0
- package/{esm2020 → esm2022}/link/link.module.mjs +7 -7
- package/esm2022/list/list-selection.component.mjs +705 -0
- package/{esm2020 → esm2022}/list/list.component.mjs +8 -8
- package/{esm2020 → esm2022}/list/list.module.mjs +20 -20
- package/esm2022/loader-overlay/loader-overlay.component.mjs +103 -0
- package/{esm2020 → esm2022}/loader-overlay/loader-overlay.module.mjs +17 -17
- package/{esm2020 → esm2022}/markdown/markdown.component.mjs +13 -13
- package/{esm2020 → esm2022}/markdown/markdown.module.mjs +5 -5
- package/{esm2020 → esm2022}/markdown/markdown.service.mjs +4 -4
- package/{esm2020 → esm2022}/modal/css-unit.pipe.mjs +4 -4
- package/esm2022/modal/modal-control.service.mjs +85 -0
- package/esm2022/modal/modal.component.mjs +520 -0
- package/{esm2020 → esm2022}/modal/modal.directive.mjs +13 -13
- package/esm2022/modal/modal.module.mjs +75 -0
- package/{esm2020 → esm2022}/modal/modal.service.mjs +8 -8
- package/esm2022/navbar/navbar-item.component.mjs +606 -0
- package/esm2022/navbar/navbar.component.mjs +248 -0
- package/{esm2020 → esm2022}/navbar/navbar.module.mjs +37 -37
- package/{esm2020 → esm2022}/navbar/vertical-navbar.component.mjs +20 -17
- package/esm2022/popover/popover-confirm.component.mjs +108 -0
- package/esm2022/popover/popover.component.mjs +266 -0
- package/{esm2020 → esm2022}/popover/popover.module.mjs +8 -8
- package/{esm2020 → esm2022}/progress-bar/progress-bar.component.mjs +4 -4
- package/{esm2020 → esm2022}/progress-bar/progress-bar.module.mjs +7 -7
- package/{esm2020 → esm2022}/progress-spinner/progress-spinner.component.mjs +12 -12
- package/{esm2020 → esm2022}/progress-spinner/progress-spinner.module.mjs +7 -7
- package/esm2022/radio/radio.component.mjs +457 -0
- package/{esm2020 → esm2022}/radio/radio.module.mjs +5 -5
- package/esm2022/select/select-option.directive.mjs +65 -0
- package/esm2022/select/select.component.mjs +1160 -0
- package/{esm2020 → esm2022}/select/select.module.mjs +32 -32
- package/esm2022/sidebar/sidebar.component.mjs +146 -0
- package/{esm2020 → esm2022}/sidebar/sidebar.module.mjs +9 -9
- package/esm2022/sidepanel/sidepanel-container.component.mjs +110 -0
- package/{esm2020 → esm2022}/sidepanel/sidepanel-directives.mjs +18 -18
- package/{esm2020 → esm2022}/sidepanel/sidepanel.module.mjs +32 -32
- package/{esm2020 → esm2022}/sidepanel/sidepanel.service.mjs +10 -10
- package/esm2022/splitter/splitter.component.mjs +482 -0
- package/{esm2020 → esm2022}/splitter/splitter.module.mjs +12 -12
- package/{esm2020 → esm2022}/table/table.component.mjs +4 -4
- package/{esm2020 → esm2022}/table/table.module.mjs +9 -9
- package/esm2022/tabs/paginated-tab-header.mjs +488 -0
- package/esm2022/tabs/tab-body.component.mjs +179 -0
- package/{esm2020 → esm2022}/tabs/tab-content.directive.mjs +4 -4
- package/esm2022/tabs/tab-group.component.mjs +349 -0
- package/{esm2020 → esm2022}/tabs/tab-header.component.mjs +4 -4
- package/{esm2020 → esm2022}/tabs/tab-label-wrapper.directive.mjs +4 -4
- package/{esm2020 → esm2022}/tabs/tab-label.directive.mjs +4 -4
- package/esm2022/tabs/tab-nav-bar/tab-nav-bar.mjs +111 -0
- package/{esm2020 → esm2022}/tabs/tab.component.mjs +43 -34
- package/{esm2020 → esm2022}/tabs/tabs.module.mjs +42 -42
- package/esm2022/tags/tag-default-options.mjs +4 -0
- package/esm2022/tags/tag-input.mjs +250 -0
- package/esm2022/tags/tag-list.component.mjs +718 -0
- package/esm2022/tags/tag.component.mjs +381 -0
- package/esm2022/tags/tag.module.mjs +56 -0
- package/esm2022/textarea/textarea.component.mjs +254 -0
- package/{esm2020 → esm2022}/textarea/textarea.module.mjs +5 -5
- package/esm2022/timepicker/timepicker.directive.mjs +647 -0
- package/{esm2020 → esm2022}/timepicker/timepicker.module.mjs +11 -11
- package/{esm2020 → esm2022}/timezone/cities-by-filter.pipe.mjs +4 -4
- package/esm2022/timezone/timezone-option.component.mjs +48 -0
- package/{esm2020 → esm2022}/timezone/timezone-option.directive.mjs +4 -4
- package/{esm2020 → esm2022}/timezone/timezone-select.component.mjs +11 -11
- package/{esm2020 → esm2022}/timezone/timezone.module.mjs +29 -29
- package/{esm2020 → esm2022}/timezone/utc-offset.pipe.mjs +4 -4
- package/esm2022/title/title.directive.mjs +107 -0
- package/{esm2020 → esm2022}/title/title.module.mjs +5 -5
- package/{esm2020 → esm2022}/toast/toast-container.component.mjs +4 -4
- package/esm2022/toast/toast.component.mjs +92 -0
- package/esm2022/toast/toast.module.mjs +48 -0
- package/esm2022/toast/toast.service.mjs +188 -0
- package/esm2022/toggle/toggle.component.mjs +156 -0
- package/{esm2020 → esm2022}/toggle/toggle.module.mjs +5 -5
- package/esm2022/tooltip/tooltip.component.mjs +299 -0
- package/{esm2020 → esm2022}/tooltip/tooltip.module.mjs +14 -14
- package/esm2022/tree/data-source/flat-data-source.mjs +162 -0
- package/{esm2020 → esm2022}/tree/node.mjs +4 -4
- package/{esm2020 → esm2022}/tree/outlet.mjs +4 -4
- package/esm2022/tree/padding.directive.mjs +113 -0
- package/esm2022/tree/toggle.mjs +81 -0
- package/esm2022/tree/tree-base.mjs +243 -0
- package/esm2022/tree/tree-option.component.mjs +303 -0
- package/esm2022/tree/tree-selection.component.mjs +558 -0
- package/{esm2020 → esm2022}/tree/tree.mjs +4 -4
- package/{esm2020 → esm2022}/tree/tree.module.mjs +21 -21
- package/esm2022/tree-select/tree-select.component.mjs +936 -0
- package/{esm2020 → esm2022}/tree-select/tree-select.module.mjs +17 -17
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-autocomplete.mjs +80 -77
- package/fesm2022/ptsecurity-mosaic-autocomplete.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-button-toggle.mjs +47 -47
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-button-toggle.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-button.mjs +25 -25
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-button.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-card.mjs +17 -17
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-card.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-checkbox.mjs +39 -39
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-checkbox.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-code-block.mjs +34 -34
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-code-block.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-core.mjs +600 -224
- package/fesm2022/ptsecurity-mosaic-core.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-datepicker.mjs +335 -351
- package/fesm2022/ptsecurity-mosaic-datepicker.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-divider.mjs +7 -7
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-divider.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-dl.mjs +21 -21
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-dl.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-dropdown.mjs +89 -89
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-dropdown.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-ellipsis-center.mjs +11 -11
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-ellipsis-center.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-file-upload.mjs +55 -47
- package/fesm2022/ptsecurity-mosaic-file-upload.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-form-field.mjs +92 -87
- package/fesm2022/ptsecurity-mosaic-form-field.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-icon.mjs +16 -16
- package/fesm2022/ptsecurity-mosaic-icon.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-input.mjs +128 -128
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-input.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-link.mjs +22 -22
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-link.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-list.mjs +88 -88
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-list.mjs.map +1 -1
- package/fesm2022/ptsecurity-mosaic-loader-overlay.mjs +155 -0
- package/{fesm2015 → fesm2022}/ptsecurity-mosaic-loader-overlay.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-markdown.mjs +19 -19
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-markdown.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-modal.mjs +157 -144
- package/fesm2022/ptsecurity-mosaic-modal.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-navbar.mjs +196 -187
- package/fesm2022/ptsecurity-mosaic-navbar.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-popover.mjs +37 -37
- package/{fesm2015 → fesm2022}/ptsecurity-mosaic-popover.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-progress-bar.mjs +9 -9
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-progress-bar.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-progress-spinner.mjs +18 -18
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-progress-spinner.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-radio.mjs +80 -79
- package/{fesm2015 → fesm2022}/ptsecurity-mosaic-radio.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-select.mjs +188 -174
- package/fesm2022/ptsecurity-mosaic-select.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-sidebar.mjs +29 -29
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-sidebar.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-sidepanel.mjs +63 -63
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-sidepanel.mjs.map +1 -1
- package/{fesm2015 → fesm2022}/ptsecurity-mosaic-splitter.mjs +55 -55
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-splitter.mjs.map +1 -1
- package/fesm2022/ptsecurity-mosaic-table.mjs +45 -0
- package/fesm2022/ptsecurity-mosaic-table.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-tabs.mjs +188 -179
- package/fesm2022/ptsecurity-mosaic-tabs.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-tags.mjs +150 -144
- package/fesm2022/ptsecurity-mosaic-tags.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-textarea.mjs +41 -41
- package/{fesm2015 → fesm2022}/ptsecurity-mosaic-textarea.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-timepicker.mjs +95 -95
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-timepicker.mjs.map +1 -1
- package/fesm2022/ptsecurity-mosaic-timezone.mjs +314 -0
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-timezone.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-title.mjs +18 -18
- package/fesm2022/ptsecurity-mosaic-title.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-toast.mjs +47 -41
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-toast.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-toggle.mjs +35 -35
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-toggle.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-tooltip.mjs +47 -47
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-tooltip.mjs.map +1 -1
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-tree-select.mjs +123 -123
- package/fesm2022/ptsecurity-mosaic-tree-select.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-tree.mjs +203 -198
- package/fesm2022/ptsecurity-mosaic-tree.mjs.map +1 -0
- package/file-upload/_file-upload-theme.scss +2 -4
- package/file-upload/file-upload.d.ts +1 -1
- package/file-upload/multiple-file-upload.component.d.ts +5 -4
- package/file-upload/single-file-upload.component.d.ts +5 -4
- package/form-field/_form-field-theme.scss +7 -5
- package/form-field/form-field.d.ts +1 -2
- package/form-field/form-field.scss +1 -3
- package/form-field/hint.d.ts +1 -1
- package/form-field/password-hint.d.ts +6 -3
- package/icon/icon.component.d.ts +1 -1
- package/input/_input-theme.scss +7 -6
- package/input/input-number-validators.d.ts +2 -2
- package/input/input-number.d.ts +1 -1
- package/input/input-password.d.ts +2 -2
- package/input/input.d.ts +1 -1
- package/link/_link-theme.scss +7 -8
- package/link/link.component.d.ts +1 -1
- package/list/_list-theme.scss +2 -5
- package/list/list-selection.component.d.ts +2 -2
- package/loader-overlay/_loader-overlay-theme.scss +2 -5
- package/loader-overlay/loader-overlay.component.d.ts +1 -1
- package/loader-overlay/loader-overlay.scss +3 -0
- package/markdown/_markdown-theme.scss +3 -6
- package/markdown/markdown.component.d.ts +1 -1
- package/modal/_modal-theme.scss +3 -5
- package/modal/modal.component.d.ts +5 -2
- package/modal/modal.module.d.ts +2 -1
- package/modal/modal.scss +14 -2
- package/modal/modal.type.d.ts +3 -3
- package/navbar/_navbar-theme.scss +2 -6
- package/navbar/navbar-item.component.d.ts +5 -4
- package/navbar/navbar.component.d.ts +7 -4
- package/navbar/vertical-navbar.component.d.ts +5 -3
- package/package.json +156 -246
- package/popover/_popover-theme.scss +2 -6
- package/popover/popover-confirm.component.d.ts +1 -1
- package/popover/popover.component.d.ts +1 -1
- package/prebuilt-themes/dark-theme.css +1 -1
- package/prebuilt-themes/default-theme.css +1 -1
- package/progress-bar/progress-bar.component.d.ts +2 -2
- package/progress-spinner/progress-spinner.component.d.ts +3 -3
- package/radio/_radio-theme.scss +6 -6
- package/radio/radio.component.d.ts +2 -2
- package/select/_select-theme.scss +2 -5
- package/select/select.component.d.ts +12 -9
- package/select/select.scss +3 -1
- package/sidebar/sidebar.component.d.ts +3 -3
- package/sidepanel/_sidepanel-theme.scss +2 -5
- package/sidepanel/sidepanel-directives.d.ts +2 -2
- package/splitter/splitter.component.d.ts +3 -3
- package/table/_table-theme.scss +2 -5
- package/tabs/_tabs-theme.scss +2 -5
- package/tabs/paginated-tab-header.d.ts +3 -3
- package/tabs/tab-body.component.d.ts +3 -3
- package/tabs/tab-group.component.d.ts +2 -2
- package/tabs/tab-header.component.d.ts +2 -2
- package/tabs/tab-label-wrapper.directive.d.ts +1 -1
- package/tabs/tab-nav-bar/tab-nav-bar.d.ts +1 -1
- package/tabs/tab.component.d.ts +1 -1
- package/tags/_tag-theme.scss +2 -5
- package/tags/tag-default-options.d.ts +4 -0
- package/tags/tag-input.d.ts +1 -1
- package/tags/tag-list.component.d.ts +2 -1
- package/tags/tag-list.scss +6 -2
- package/tags/tag.component.d.ts +2 -2
- package/textarea/_textarea-theme.scss +2 -5
- package/textarea/textarea.component.d.ts +1 -1
- package/timepicker/timepicker.directive.d.ts +1 -1
- package/timezone/_timezone-option-theme.scss +2 -5
- package/timezone/timezone-option.component.d.ts +1 -1
- package/toast/_toast-theme.scss +2 -5
- package/toast/toast.type.d.ts +1 -1
- package/toggle/_toggle-theme.scss +2 -5
- package/toggle/toggle.component.d.ts +2 -2
- package/tooltip/_tooltip-theme.scss +2 -5
- package/tooltip/tooltip.component.d.ts +3 -3
- package/tree/_tree-theme.scss +2 -4
- package/tree/node.d.ts +1 -1
- package/tree/padding.directive.d.ts +1 -1
- package/tree/toggle.d.ts +2 -2
- package/tree/tree-base.d.ts +1 -1
- package/tree/tree-option.component.d.ts +1 -1
- package/tree/tree-option.scss +4 -2
- package/tree/tree-selection.component.d.ts +1 -1
- package/tree-select/_tree-select-theme.scss +2 -5
- package/tree-select/tree-select.component.d.ts +1 -1
- package/esm2020/autocomplete/autocomplete-trigger.directive.mjs +0 -552
- package/esm2020/button/button.component.mjs +0 -148
- package/esm2020/button-toggle/button-toggle.component.mjs +0 -381
- package/esm2020/card/card.component.mjs +0 -80
- package/esm2020/checkbox/checkbox.mjs +0 -300
- package/esm2020/code-block/code-block.component.mjs +0 -157
- package/esm2020/code-block/code-block.module.mjs +0 -60
- package/esm2020/core/common-behaviors/color.mjs +0 -33
- package/esm2020/core/formatters/index.mjs +0 -78
- package/esm2020/core/formatters/number/formatter.mjs +0 -129
- package/esm2020/core/locales/en-US.mjs +0 -10
- package/esm2020/core/locales/es-LA.mjs +0 -6
- package/esm2020/core/locales/fa-IR.mjs +0 -6
- package/esm2020/core/locales/pt-BR.mjs +0 -6
- package/esm2020/core/locales/ru-RU.mjs +0 -10
- package/esm2020/core/locales/zh-CN.mjs +0 -6
- package/esm2020/core/option/option.mjs +0 -262
- package/esm2020/core/overlay/overlay-position-map.mjs +0 -245
- package/esm2020/core/services/measure-scrollbar.service.mjs +0 -48
- package/esm2020/datepicker/calendar-header.component.mjs +0 -134
- package/esm2020/datepicker/calendar.component.mjs +0 -175
- package/esm2020/datepicker/datepicker-input.directive.mjs +0 -954
- package/esm2020/datepicker/datepicker-toggle.component.mjs +0 -86
- package/esm2020/datepicker/datepicker.component.mjs +0 -393
- package/esm2020/datepicker/month-view.component.mjs +0 -158
- package/esm2020/dropdown/dropdown-trigger.directive.mjs +0 -489
- package/esm2020/dropdown/dropdown.component.mjs +0 -292
- package/esm2020/ellipsis-center/ellipsis-center.directive.mjs +0 -106
- package/esm2020/file-upload/multiple-file-upload.component.mjs +0 -161
- package/esm2020/file-upload/single-file-upload.component.mjs +0 -130
- package/esm2020/form-field/form-field.mjs +0 -270
- package/esm2020/form-field/password-hint.mjs +0 -138
- package/esm2020/form-field/validate.directive.mjs +0 -158
- package/esm2020/input/input-number.mjs +0 -168
- package/esm2020/input/input-password.mjs +0 -343
- package/esm2020/input/input.mjs +0 -297
- package/esm2020/link/link.component.mjs +0 -122
- package/esm2020/list/list-selection.component.mjs +0 -705
- package/esm2020/loader-overlay/loader-overlay.component.mjs +0 -103
- package/esm2020/modal/modal-control.service.mjs +0 -85
- package/esm2020/modal/modal.component.mjs +0 -510
- package/esm2020/modal/modal.module.mjs +0 -71
- package/esm2020/navbar/navbar-item.component.mjs +0 -605
- package/esm2020/navbar/navbar.component.mjs +0 -239
- package/esm2020/popover/popover-confirm.component.mjs +0 -108
- package/esm2020/popover/popover.component.mjs +0 -266
- package/esm2020/radio/radio.component.mjs +0 -456
- package/esm2020/select/select-option.directive.mjs +0 -65
- package/esm2020/select/select.component.mjs +0 -1146
- package/esm2020/sidebar/sidebar.component.mjs +0 -146
- package/esm2020/sidepanel/sidepanel-container.component.mjs +0 -110
- package/esm2020/splitter/splitter.component.mjs +0 -482
- package/esm2020/tabs/paginated-tab-header.mjs +0 -488
- package/esm2020/tabs/tab-body.component.mjs +0 -179
- package/esm2020/tabs/tab-group.component.mjs +0 -349
- package/esm2020/tabs/tab-nav-bar/tab-nav-bar.mjs +0 -111
- package/esm2020/tags/tag-default-options.mjs +0 -4
- package/esm2020/tags/tag-input.mjs +0 -248
- package/esm2020/tags/tag-list.component.mjs +0 -714
- package/esm2020/tags/tag.component.mjs +0 -381
- package/esm2020/tags/tag.module.mjs +0 -56
- package/esm2020/textarea/textarea.component.mjs +0 -254
- package/esm2020/timepicker/timepicker.directive.mjs +0 -647
- package/esm2020/timezone/timezone-option.component.mjs +0 -48
- package/esm2020/title/title.directive.mjs +0 -107
- package/esm2020/toast/toast.component.mjs +0 -92
- package/esm2020/toast/toast.module.mjs +0 -42
- package/esm2020/toast/toast.service.mjs +0 -188
- package/esm2020/toggle/toggle.component.mjs +0 -156
- package/esm2020/tooltip/tooltip.component.mjs +0 -299
- package/esm2020/tree/data-source/flat-data-source.mjs +0 -162
- package/esm2020/tree/padding.directive.mjs +0 -113
- package/esm2020/tree/toggle.mjs +0 -81
- package/esm2020/tree/tree-base.mjs +0 -243
- package/esm2020/tree/tree-option.component.mjs +0 -299
- package/esm2020/tree/tree-selection.component.mjs +0 -557
- package/esm2020/tree-select/tree-select.component.mjs +0 -936
- package/fesm2015/ptsecurity-mosaic-autocomplete.mjs +0 -753
- package/fesm2015/ptsecurity-mosaic-autocomplete.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-button-toggle.mjs +0 -405
- package/fesm2015/ptsecurity-mosaic-button-toggle.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-button.mjs +0 -193
- package/fesm2015/ptsecurity-mosaic-button.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-card.mjs +0 -111
- package/fesm2015/ptsecurity-mosaic-card.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-checkbox.mjs +0 -351
- package/fesm2015/ptsecurity-mosaic-checkbox.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-code-block.mjs +0 -280
- package/fesm2015/ptsecurity-mosaic-code-block.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-core.mjs +0 -2314
- package/fesm2015/ptsecurity-mosaic-core.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-datepicker.mjs +0 -2112
- package/fesm2015/ptsecurity-mosaic-datepicker.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-divider.mjs +0 -61
- package/fesm2015/ptsecurity-mosaic-divider.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-dl.mjs +0 -126
- package/fesm2015/ptsecurity-mosaic-dl.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-dropdown.mjs +0 -1115
- package/fesm2015/ptsecurity-mosaic-dropdown.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-ellipsis-center.mjs +0 -113
- package/fesm2015/ptsecurity-mosaic-ellipsis-center.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-file-upload.mjs +0 -392
- package/fesm2015/ptsecurity-mosaic-file-upload.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-form-field.mjs +0 -768
- package/fesm2015/ptsecurity-mosaic-form-field.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-icon.mjs +0 -86
- package/fesm2015/ptsecurity-mosaic-icon.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-input.mjs +0 -951
- package/fesm2015/ptsecurity-mosaic-input.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-link.mjs +0 -150
- package/fesm2015/ptsecurity-mosaic-link.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-list.mjs +0 -807
- package/fesm2015/ptsecurity-mosaic-list.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-loader-overlay.mjs +0 -157
- package/fesm2015/ptsecurity-mosaic-markdown.mjs +0 -128
- package/fesm2015/ptsecurity-mosaic-markdown.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-modal.mjs +0 -875
- package/fesm2015/ptsecurity-mosaic-modal.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-navbar.mjs +0 -1054
- package/fesm2015/ptsecurity-mosaic-navbar.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-popover.mjs +0 -411
- package/fesm2015/ptsecurity-mosaic-progress-bar.mjs +0 -74
- package/fesm2015/ptsecurity-mosaic-progress-bar.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-progress-spinner.mjs +0 -93
- package/fesm2015/ptsecurity-mosaic-progress-spinner.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-radio.mjs +0 -480
- package/fesm2015/ptsecurity-mosaic-select.mjs +0 -1286
- package/fesm2015/ptsecurity-mosaic-select.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-sidebar.mjs +0 -202
- package/fesm2015/ptsecurity-mosaic-sidebar.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-sidepanel.mjs +0 -622
- package/fesm2015/ptsecurity-mosaic-sidepanel.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-splitter.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-table.mjs +0 -45
- package/fesm2015/ptsecurity-mosaic-table.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-tabs.mjs +0 -1523
- package/fesm2015/ptsecurity-mosaic-tabs.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-tags.mjs +0 -1391
- package/fesm2015/ptsecurity-mosaic-tags.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-textarea.mjs +0 -280
- package/fesm2015/ptsecurity-mosaic-timepicker.mjs +0 -708
- package/fesm2015/ptsecurity-mosaic-timepicker.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-timezone.mjs +0 -316
- package/fesm2015/ptsecurity-mosaic-timezone.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-title.mjs +0 -128
- package/fesm2015/ptsecurity-mosaic-title.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-toast.mjs +0 -379
- package/fesm2015/ptsecurity-mosaic-toast.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-toggle.mjs +0 -178
- package/fesm2015/ptsecurity-mosaic-toggle.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-tooltip.mjs +0 -369
- package/fesm2015/ptsecurity-mosaic-tooltip.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-tree-select.mjs +0 -983
- package/fesm2015/ptsecurity-mosaic-tree-select.mjs.map +0 -1
- package/fesm2015/ptsecurity-mosaic-tree.mjs +0 -1815
- package/fesm2015/ptsecurity-mosaic-tree.mjs.map +0 -1
- package/fesm2020/ptsecurity-mosaic-autocomplete.mjs.map +0 -1
- package/fesm2020/ptsecurity-mosaic-core.mjs.map +0 -1
- package/fesm2020/ptsecurity-mosaic-datepicker.mjs.map +0 -1
- package/fesm2020/ptsecurity-mosaic-file-upload.mjs.map +0 -1
- package/fesm2020/ptsecurity-mosaic-form-field.mjs.map +0 -1
- package/fesm2020/ptsecurity-mosaic-icon.mjs.map +0 -1
- package/fesm2020/ptsecurity-mosaic-loader-overlay.mjs +0 -155
- package/fesm2020/ptsecurity-mosaic-loader-overlay.mjs.map +0 -1
- package/fesm2020/ptsecurity-mosaic-modal.mjs.map +0 -1
- package/fesm2020/ptsecurity-mosaic-navbar.mjs.map +0 -1
- package/fesm2020/ptsecurity-mosaic-popover.mjs.map +0 -1
- package/fesm2020/ptsecurity-mosaic-radio.mjs.map +0 -1
- package/fesm2020/ptsecurity-mosaic-select.mjs.map +0 -1
- package/fesm2020/ptsecurity-mosaic-splitter.mjs +0 -524
- package/fesm2020/ptsecurity-mosaic-table.mjs +0 -45
- package/fesm2020/ptsecurity-mosaic-table.mjs.map +0 -1
- package/fesm2020/ptsecurity-mosaic-tabs.mjs.map +0 -1
- package/fesm2020/ptsecurity-mosaic-tags.mjs.map +0 -1
- package/fesm2020/ptsecurity-mosaic-textarea.mjs.map +0 -1
- package/fesm2020/ptsecurity-mosaic-timezone.mjs +0 -314
- package/fesm2020/ptsecurity-mosaic-title.mjs.map +0 -1
- package/fesm2020/ptsecurity-mosaic-tree-select.mjs.map +0 -1
- package/fesm2020/ptsecurity-mosaic-tree.mjs.map +0 -1
- package/fesm2020/ptsecurity-mosaic.mjs +0 -4
- package/fesm2020/ptsecurity-mosaic.mjs.map +0 -1
- /package/{esm2020 → esm2022}/autocomplete/index.mjs +0 -0
- /package/{esm2020 → esm2022}/autocomplete/ptsecurity-mosaic-autocomplete.mjs +0 -0
- /package/{esm2020 → esm2022}/autocomplete/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/button/index.mjs +0 -0
- /package/{esm2020 → esm2022}/button/ptsecurity-mosaic-button.mjs +0 -0
- /package/{esm2020 → esm2022}/button/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/button-toggle/index.mjs +0 -0
- /package/{esm2020 → esm2022}/button-toggle/ptsecurity-mosaic-button-toggle.mjs +0 -0
- /package/{esm2020 → esm2022}/button-toggle/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/card/index.mjs +0 -0
- /package/{esm2020 → esm2022}/card/ptsecurity-mosaic-card.mjs +0 -0
- /package/{esm2020 → esm2022}/card/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/checkbox/checkbox-config.mjs +0 -0
- /package/{esm2020 → esm2022}/checkbox/index.mjs +0 -0
- /package/{esm2020 → esm2022}/checkbox/ptsecurity-mosaic-checkbox.mjs +0 -0
- /package/{esm2020 → esm2022}/checkbox/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/code-block/code-block.types.mjs +0 -0
- /package/{esm2020 → esm2022}/code-block/index.mjs +0 -0
- /package/{esm2020 → esm2022}/code-block/ptsecurity-mosaic-code-block.mjs +0 -0
- /package/{esm2020 → esm2022}/code-block/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/core/animation/animation.mjs +0 -0
- /package/{esm2020 → esm2022}/core/animation/fade-animations.mjs +0 -0
- /package/{esm2020 → esm2022}/core/animation/index.mjs +0 -0
- /package/{esm2020 → esm2022}/core/animation/select-animations.mjs +0 -0
- /package/{esm2020 → esm2022}/core/common-behaviors/constructor.mjs +0 -0
- /package/{esm2020 → esm2022}/core/common-behaviors/error-state.mjs +0 -0
- /package/{esm2020 → esm2022}/core/common-behaviors/index.mjs +0 -0
- /package/{esm2020 → esm2022}/core/datetime/date-adapter.mjs +0 -0
- /package/{esm2020 → esm2022}/core/datetime/date-formats.mjs +0 -0
- /package/{esm2020 → esm2022}/core/datetime/index.mjs +0 -0
- /package/{esm2020 → esm2022}/core/forms/index.mjs +0 -0
- /package/{esm2020 → esm2022}/core/index.mjs +0 -0
- /package/{esm2020 → esm2022}/core/label/label-options.mjs +0 -0
- /package/{esm2020 → esm2022}/core/locales/index.mjs +0 -0
- /package/{esm2020 → esm2022}/core/option/index.mjs +0 -0
- /package/{esm2020 → esm2022}/core/pop-up/constants.mjs +0 -0
- /package/{esm2020 → esm2022}/core/pop-up/index.mjs +0 -0
- /package/{esm2020 → esm2022}/core/ptsecurity-mosaic-core.mjs +0 -0
- /package/{esm2020 → esm2022}/core/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/core/select/constants.mjs +0 -0
- /package/{esm2020 → esm2022}/core/select/errors.mjs +0 -0
- /package/{esm2020 → esm2022}/core/select/events.mjs +0 -0
- /package/{esm2020 → esm2022}/core/select/index.mjs +0 -0
- /package/{esm2020 → esm2022}/core/selection/constants.mjs +0 -0
- /package/{esm2020 → esm2022}/core/selection/index.mjs +0 -0
- /package/{esm2020 → esm2022}/core/title/index.mjs +0 -0
- /package/{esm2020 → esm2022}/core/title/title-text-ref.mjs +0 -0
- /package/{esm2020 → esm2022}/core/utils/data-size/config.mjs +0 -0
- /package/{esm2020 → esm2022}/core/utils/data-size/index.mjs +0 -0
- /package/{esm2020 → esm2022}/core/utils/data-size/size.mjs +0 -0
- /package/{esm2020 → esm2022}/core/utils/index.mjs +0 -0
- /package/{esm2020 → esm2022}/core/utils/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/core/utils/utils.mjs +0 -0
- /package/{esm2020 → esm2022}/core/validation/index.mjs +0 -0
- /package/{esm2020 → esm2022}/core/validation/validation.mjs +0 -0
- /package/{esm2020 → esm2022}/datepicker/datepicker-animations.mjs +0 -0
- /package/{esm2020 → esm2022}/datepicker/datepicker-errors.mjs +0 -0
- /package/{esm2020 → esm2022}/datepicker/index.mjs +0 -0
- /package/{esm2020 → esm2022}/datepicker/ptsecurity-mosaic-datepicker.mjs +0 -0
- /package/{esm2020 → esm2022}/datepicker/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/divider/index.mjs +0 -0
- /package/{esm2020 → esm2022}/divider/ptsecurity-mosaic-divider.mjs +0 -0
- /package/{esm2020 → esm2022}/divider/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/dl/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dl/ptsecurity-mosaic-dl.mjs +0 -0
- /package/{esm2020 → esm2022}/dl/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown/dropdown-animations.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown/dropdown-errors.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown/dropdown.types.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown/ptsecurity-mosaic-dropdown.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/ellipsis-center/index.mjs +0 -0
- /package/{esm2020 → esm2022}/ellipsis-center/ptsecurity-mosaic-ellipsis-center.mjs +0 -0
- /package/{esm2020 → esm2022}/ellipsis-center/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/file-upload/file-upload.mjs +0 -0
- /package/{esm2020 → esm2022}/file-upload/index.mjs +0 -0
- /package/{esm2020 → esm2022}/file-upload/ptsecurity-mosaic-file-upload.mjs +0 -0
- /package/{esm2020 → esm2022}/file-upload/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/form-field/form-field-control.mjs +0 -0
- /package/{esm2020 → esm2022}/form-field/form-field-errors.mjs +0 -0
- /package/{esm2020 → esm2022}/form-field/index.mjs +0 -0
- /package/{esm2020 → esm2022}/form-field/ptsecurity-mosaic-form-field.mjs +0 -0
- /package/{esm2020 → esm2022}/form-field/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/icon/index.mjs +0 -0
- /package/{esm2020 → esm2022}/icon/ptsecurity-mosaic-icon.mjs +0 -0
- /package/{esm2020 → esm2022}/icon/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/index.mjs +0 -0
- /package/{esm2020 → esm2022}/input/index.mjs +0 -0
- /package/{esm2020 → esm2022}/input/input-errors.mjs +0 -0
- /package/{esm2020 → esm2022}/input/input-value-accessor.mjs +0 -0
- /package/{esm2020 → esm2022}/input/ptsecurity-mosaic-input.mjs +0 -0
- /package/{esm2020 → esm2022}/input/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/link/index.mjs +0 -0
- /package/{esm2020 → esm2022}/link/ptsecurity-mosaic-link.mjs +0 -0
- /package/{esm2020 → esm2022}/link/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/list/index.mjs +0 -0
- /package/{esm2020 → esm2022}/list/ptsecurity-mosaic-list.mjs +0 -0
- /package/{esm2020 → esm2022}/list/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/loader-overlay/index.mjs +0 -0
- /package/{esm2020 → esm2022}/loader-overlay/ptsecurity-mosaic-loader-overlay.mjs +0 -0
- /package/{esm2020 → esm2022}/loader-overlay/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/markdown/index.mjs +0 -0
- /package/{esm2020 → esm2022}/markdown/markdown.values.mjs +0 -0
- /package/{esm2020 → esm2022}/markdown/ptsecurity-mosaic-markdown.mjs +0 -0
- /package/{esm2020 → esm2022}/markdown/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/index.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/modal-ref.class.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/modal-util.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/modal.type.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/ptsecurity-mosaic-modal.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/navbar/index.mjs +0 -0
- /package/{esm2020 → esm2022}/navbar/ptsecurity-mosaic-navbar.mjs +0 -0
- /package/{esm2020 → esm2022}/navbar/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/navbar/vertical-navbar.animation.mjs +0 -0
- /package/{esm2020 → esm2022}/popover/index.mjs +0 -0
- /package/{esm2020 → esm2022}/popover/popover-animations.mjs +0 -0
- /package/{esm2020 → esm2022}/popover/ptsecurity-mosaic-popover.mjs +0 -0
- /package/{esm2020 → esm2022}/popover/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/progress-bar/index.mjs +0 -0
- /package/{esm2020 → esm2022}/progress-bar/ptsecurity-mosaic-progress-bar.mjs +0 -0
- /package/{esm2020 → esm2022}/progress-bar/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/progress-spinner/index.mjs +0 -0
- /package/{esm2020 → esm2022}/progress-spinner/ptsecurity-mosaic-progress-spinner.mjs +0 -0
- /package/{esm2020 → esm2022}/progress-spinner/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/ptsecurity-mosaic.mjs +0 -0
- /package/{esm2020 → esm2022}/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/radio/index.mjs +0 -0
- /package/{esm2020 → esm2022}/radio/ptsecurity-mosaic-radio.mjs +0 -0
- /package/{esm2020 → esm2022}/radio/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/select/index.mjs +0 -0
- /package/{esm2020 → esm2022}/select/ptsecurity-mosaic-select.mjs +0 -0
- /package/{esm2020 → esm2022}/select/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/sidebar/index.mjs +0 -0
- /package/{esm2020 → esm2022}/sidebar/ptsecurity-mosaic-sidebar.mjs +0 -0
- /package/{esm2020 → esm2022}/sidebar/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/sidebar/sidebar-animations.mjs +0 -0
- /package/{esm2020 → esm2022}/sidepanel/index.mjs +0 -0
- /package/{esm2020 → esm2022}/sidepanel/ptsecurity-mosaic-sidepanel.mjs +0 -0
- /package/{esm2020 → esm2022}/sidepanel/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/sidepanel/sidepanel-animations.mjs +0 -0
- /package/{esm2020 → esm2022}/sidepanel/sidepanel-config.mjs +0 -0
- /package/{esm2020 → esm2022}/sidepanel/sidepanel-ref.mjs +0 -0
- /package/{esm2020 → esm2022}/splitter/index.mjs +0 -0
- /package/{esm2020 → esm2022}/splitter/ptsecurity-mosaic-splitter.mjs +0 -0
- /package/{esm2020 → esm2022}/splitter/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/table/index.mjs +0 -0
- /package/{esm2020 → esm2022}/table/ptsecurity-mosaic-table.mjs +0 -0
- /package/{esm2020 → esm2022}/table/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/tabs/index.mjs +0 -0
- /package/{esm2020 → esm2022}/tabs/ptsecurity-mosaic-tabs.mjs +0 -0
- /package/{esm2020 → esm2022}/tabs/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/tabs/tab-nav-bar/index.mjs +0 -0
- /package/{esm2020 → esm2022}/tabs/tabs-animations.mjs +0 -0
- /package/{esm2020 → esm2022}/tags/index.mjs +0 -0
- /package/{esm2020 → esm2022}/tags/ptsecurity-mosaic-tags.mjs +0 -0
- /package/{esm2020 → esm2022}/tags/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/tags/tag-text-control.mjs +0 -0
- /package/{esm2020 → esm2022}/textarea/index.mjs +0 -0
- /package/{esm2020 → esm2022}/textarea/ptsecurity-mosaic-textarea.mjs +0 -0
- /package/{esm2020 → esm2022}/textarea/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/timepicker/index.mjs +0 -0
- /package/{esm2020 → esm2022}/timepicker/ptsecurity-mosaic-timepicker.mjs +0 -0
- /package/{esm2020 → esm2022}/timepicker/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/timepicker/timepicker.constants.mjs +0 -0
- /package/{esm2020 → esm2022}/timezone/index.mjs +0 -0
- /package/{esm2020 → esm2022}/timezone/ptsecurity-mosaic-timezone.mjs +0 -0
- /package/{esm2020 → esm2022}/timezone/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/timezone/timezone.models.mjs +0 -0
- /package/{esm2020 → esm2022}/timezone/timezone.utils.mjs +0 -0
- /package/{esm2020 → esm2022}/title/index.mjs +0 -0
- /package/{esm2020 → esm2022}/title/ptsecurity-mosaic-title.mjs +0 -0
- /package/{esm2020 → esm2022}/title/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/toast/index.mjs +0 -0
- /package/{esm2020 → esm2022}/toast/ptsecurity-mosaic-toast.mjs +0 -0
- /package/{esm2020 → esm2022}/toast/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/toast/toast-animations.mjs +0 -0
- /package/{esm2020 → esm2022}/toast/toast.type.mjs +0 -0
- /package/{esm2020 → esm2022}/toggle/index.mjs +0 -0
- /package/{esm2020 → esm2022}/toggle/ptsecurity-mosaic-toggle.mjs +0 -0
- /package/{esm2020 → esm2022}/toggle/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/tooltip/index.mjs +0 -0
- /package/{esm2020 → esm2022}/tooltip/ptsecurity-mosaic-tooltip.mjs +0 -0
- /package/{esm2020 → esm2022}/tooltip/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/tooltip/tooltip.animations.mjs +0 -0
- /package/{esm2020 → esm2022}/tree/control/base-tree-control.mjs +0 -0
- /package/{esm2020 → esm2022}/tree/control/flat-tree-control.mjs +0 -0
- /package/{esm2020 → esm2022}/tree/control/nested-tree-control.mjs +0 -0
- /package/{esm2020 → esm2022}/tree/control/tree-control.mjs +0 -0
- /package/{esm2020 → esm2022}/tree/data-source/nested-data-source.mjs +0 -0
- /package/{esm2020 → esm2022}/tree/index.mjs +0 -0
- /package/{esm2020 → esm2022}/tree/ptsecurity-mosaic-tree.mjs +0 -0
- /package/{esm2020 → esm2022}/tree/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/tree/tree-errors.mjs +0 -0
- /package/{esm2020 → esm2022}/tree-select/index.mjs +0 -0
- /package/{esm2020 → esm2022}/tree-select/ptsecurity-mosaic-tree-select.mjs +0 -0
- /package/{esm2020 → esm2022}/tree-select/public-api.mjs +0 -0
- /package/{fesm2015 → fesm2022}/ptsecurity-mosaic.mjs +0 -0
- /package/{fesm2015 → fesm2022}/ptsecurity-mosaic.mjs.map +0 -0
@@ -1,983 +0,0 @@
|
|
1
|
-
import * as i1 from '@angular/cdk/overlay';
|
2
|
-
import { CdkConnectedOverlay, OverlayModule } from '@angular/cdk/overlay';
|
3
|
-
import * as i6 from '@angular/common';
|
4
|
-
import { CommonModule } from '@angular/common';
|
5
|
-
import * as i0 from '@angular/core';
|
6
|
-
import { Directive, EventEmitter, Component, ViewEncapsulation, ChangeDetectionStrategy, Inject, Optional, Self, ViewChild, ViewChildren, ContentChild, Input, Output, NgModule } from '@angular/core';
|
7
|
-
import * as i2 from '@ptsecurity/mosaic/core';
|
8
|
-
import { mixinTabIndex, mixinDisabled, mixinErrorState, getMcSelectDynamicMultipleError, getMcSelectNonFunctionValueError, MultipleMode, getMcSelectNonArrayValueError, SELECT_PANEL_PADDING_X, SELECT_PANEL_VIEWPORT_PADDING, MC_SELECT_SCROLL_STRATEGY, mcSelectAnimations, McPseudoCheckboxModule, MC_SELECT_SCROLL_STRATEGY_PROVIDER } from '@ptsecurity/mosaic/core';
|
9
|
-
import * as i7 from '@ptsecurity/mosaic/icon';
|
10
|
-
import { McIconModule } from '@ptsecurity/mosaic/icon';
|
11
|
-
import { McSelectSearch, McSelectModule } from '@ptsecurity/mosaic/select';
|
12
|
-
import * as i8 from '@ptsecurity/mosaic/tags';
|
13
|
-
import { McTag, McTagsModule } from '@ptsecurity/mosaic/tags';
|
14
|
-
import { McTree, McTreeSelection, McTreeModule } from '@ptsecurity/mosaic/tree';
|
15
|
-
import { coerceBooleanProperty } from '@angular/cdk/coercion';
|
16
|
-
import { SelectionModel } from '@angular/cdk/collections';
|
17
|
-
import { DOWN_ARROW, UP_ARROW, LEFT_ARROW, RIGHT_ARROW, ENTER, SPACE, ESCAPE, TAB, HOME, END, PAGE_UP, PAGE_DOWN, A, hasModifierKey } from '@ptsecurity/cdk/keycodes';
|
18
|
-
import * as i5 from '@ptsecurity/mosaic/form-field';
|
19
|
-
import { McFormFieldControl } from '@ptsecurity/mosaic/form-field';
|
20
|
-
import { Subject, defer, merge, Subscription } from 'rxjs';
|
21
|
-
import { filter, map, startWith, switchMap, take, distinctUntilChanged, takeUntil, delay } from 'rxjs/operators';
|
22
|
-
import * as i3 from '@angular/cdk/bidi';
|
23
|
-
import * as i4 from '@angular/forms';
|
24
|
-
|
25
|
-
let nextUniqueId = 0;
|
26
|
-
/** Change event object that is emitted when the select value has changed. */
|
27
|
-
class McTreeSelectChange {
|
28
|
-
constructor(source, value, isUserInput = false) {
|
29
|
-
this.source = source;
|
30
|
-
this.value = value;
|
31
|
-
this.isUserInput = isUserInput;
|
32
|
-
}
|
33
|
-
}
|
34
|
-
class McTreeSelectTrigger {
|
35
|
-
}
|
36
|
-
/** @nocollapse */ McTreeSelectTrigger.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: McTreeSelectTrigger, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
37
|
-
/** @nocollapse */ McTreeSelectTrigger.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: McTreeSelectTrigger, selector: "mc-tree-select-trigger", ngImport: i0 });
|
38
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: McTreeSelectTrigger, decorators: [{
|
39
|
-
type: Directive,
|
40
|
-
args: [{ selector: 'mc-tree-select-trigger' }]
|
41
|
-
}] });
|
42
|
-
class McTreeSelectFooter {
|
43
|
-
}
|
44
|
-
/** @nocollapse */ McTreeSelectFooter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: McTreeSelectFooter, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
45
|
-
/** @nocollapse */ McTreeSelectFooter.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: McTreeSelectFooter, selector: "mc-tree-select-footer, [mc-tree-select-footer], [mc-tree-selection-footer]", host: { classAttribute: "mc-tree-select__footer" }, ngImport: i0 });
|
46
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: McTreeSelectFooter, decorators: [{
|
47
|
-
type: Directive,
|
48
|
-
args: [{
|
49
|
-
selector: 'mc-tree-select-footer, [mc-tree-select-footer], [mc-tree-selection-footer]',
|
50
|
-
host: { class: 'mc-tree-select__footer' }
|
51
|
-
}]
|
52
|
-
}] });
|
53
|
-
/** @docs-private */
|
54
|
-
class McTreeSelectBase {
|
55
|
-
constructor(elementRef, defaultErrorStateMatcher, parentForm, parentFormGroup, ngControl) {
|
56
|
-
this.elementRef = elementRef;
|
57
|
-
this.defaultErrorStateMatcher = defaultErrorStateMatcher;
|
58
|
-
this.parentForm = parentForm;
|
59
|
-
this.parentFormGroup = parentFormGroup;
|
60
|
-
this.ngControl = ngControl;
|
61
|
-
/**
|
62
|
-
* Emits whenever the component state changes and should cause the parent
|
63
|
-
* form-field to update. Implemented as part of `McFormFieldControl`.
|
64
|
-
* @docs-private
|
65
|
-
*/
|
66
|
-
this.stateChanges = new Subject();
|
67
|
-
}
|
68
|
-
}
|
69
|
-
/** @docs-private */
|
70
|
-
const McTreeSelectMixinBase = mixinTabIndex(mixinDisabled(mixinErrorState(McTreeSelectBase)));
|
71
|
-
class McTreeSelect extends McTreeSelectMixinBase {
|
72
|
-
constructor(elementRef, changeDetectorRef, viewportRuler, ngZone, renderer, defaultErrorStateMatcher, scrollStrategyFactory, dir, parentForm, parentFormGroup, parentFormField, ngControl) {
|
73
|
-
super(elementRef, defaultErrorStateMatcher, parentForm, parentFormGroup, ngControl);
|
74
|
-
this.changeDetectorRef = changeDetectorRef;
|
75
|
-
this.viewportRuler = viewportRuler;
|
76
|
-
this.ngZone = ngZone;
|
77
|
-
this.renderer = renderer;
|
78
|
-
this.scrollStrategyFactory = scrollStrategyFactory;
|
79
|
-
this.dir = dir;
|
80
|
-
this.parentFormField = parentFormField;
|
81
|
-
/** A name for this control that can be used by `mc-form-field`. */
|
82
|
-
this.controlType = 'select';
|
83
|
-
this.hiddenItems = 0;
|
84
|
-
/** The cached font-size of the trigger element. */
|
85
|
-
this.triggerFontSize = 0;
|
86
|
-
/** The value of the select panel's transform-origin property. */
|
87
|
-
this.transformOrigin = 'top';
|
88
|
-
/** Emits when the panel element is finished transforming in. */
|
89
|
-
this.panelDoneAnimatingStream = new Subject();
|
90
|
-
/** Strategy that will be used to handle scrolling while the select panel is open. */
|
91
|
-
this.scrollStrategy = this.scrollStrategyFactory();
|
92
|
-
/**
|
93
|
-
* The y-offset of the overlay panel in relation to the trigger's top start corner.
|
94
|
-
* This must be adjusted to align the selected option text over the trigger text.
|
95
|
-
* when the panel opens. Will change based on the y-position of the selected option.
|
96
|
-
*/
|
97
|
-
this.offsetY = 0;
|
98
|
-
/**
|
99
|
-
* This position config ensures that the top "start" corner of the overlay
|
100
|
-
* is aligned with with the top "start" of the origin by default (overlapping
|
101
|
-
* the trigger completely). If the panel cannot fit below the trigger, it
|
102
|
-
* will fall back to a position above the trigger.
|
103
|
-
*/
|
104
|
-
this.positions = [
|
105
|
-
{
|
106
|
-
originX: 'start',
|
107
|
-
originY: 'bottom',
|
108
|
-
overlayX: 'start',
|
109
|
-
overlayY: 'top'
|
110
|
-
},
|
111
|
-
{
|
112
|
-
originX: 'start',
|
113
|
-
originY: 'top',
|
114
|
-
overlayX: 'start',
|
115
|
-
overlayY: 'bottom'
|
116
|
-
}
|
117
|
-
];
|
118
|
-
this.hiddenItemsText = 'еще';
|
119
|
-
/** Event emitted when the select panel has been toggled. */
|
120
|
-
this.openedChange = new EventEmitter();
|
121
|
-
/** Event emitted when the select has been opened. */
|
122
|
-
this.openedStream = this.openedChange.pipe(filter((o) => o), map(() => { }));
|
123
|
-
/** Event emitted when the select has been closed. */
|
124
|
-
this.closedStream = this.openedChange.pipe(filter((o) => !o), map(() => { }));
|
125
|
-
/** Event emitted when the selected value has been changed by the user. */
|
126
|
-
this.selectionChange = new EventEmitter();
|
127
|
-
/**
|
128
|
-
* Event that emits whenever the raw value of the select changes. This is here primarily
|
129
|
-
* to facilitate the two-way binding for the `value` input.
|
130
|
-
* @docs-private
|
131
|
-
*/
|
132
|
-
this.valueChange = new EventEmitter();
|
133
|
-
this.backdropClass = 'cdk-overlay-transparent-backdrop';
|
134
|
-
/** Combined stream of all of the child options' change events. */
|
135
|
-
this.optionSelectionChanges = defer(() => {
|
136
|
-
if (this.options) {
|
137
|
-
return this.options.changes.pipe(startWith(this.options), switchMap(() => merge(...this.options.map((option) => option.onSelectionChange))));
|
138
|
-
}
|
139
|
-
return this.ngZone.onStable
|
140
|
-
.asObservable()
|
141
|
-
.pipe(take(1), switchMap(() => this.optionSelectionChanges));
|
142
|
-
});
|
143
|
-
this._required = false;
|
144
|
-
this._multiple = false;
|
145
|
-
this._autoSelect = true;
|
146
|
-
this._value = null;
|
147
|
-
this._hasBackdrop = false;
|
148
|
-
this._disabled = false;
|
149
|
-
this._focused = false;
|
150
|
-
this.triggerValues = [];
|
151
|
-
this.closeSubscription = Subscription.EMPTY;
|
152
|
-
this._panelOpen = false;
|
153
|
-
/** The scroll position of the overlay panel, calculated to center the selected option. */
|
154
|
-
this.scrollTop = 0;
|
155
|
-
/** Unique id for this input. */
|
156
|
-
this.uid = `mc-select-${nextUniqueId++}`;
|
157
|
-
/** Emits whenever the component is destroyed. */
|
158
|
-
this.destroy = new Subject();
|
159
|
-
/** `View -> model callback called when value changes` */
|
160
|
-
this.onChange = () => { };
|
161
|
-
/** `View -> model callback called when select has been touched` */
|
162
|
-
this.onTouched = () => { };
|
163
|
-
/** Comparison function to specify which option is displayed. Defaults to object equality. */
|
164
|
-
this._compareWith = (o1, o2) => o1 === o2;
|
165
|
-
if (this.ngControl) {
|
166
|
-
// Note: we provide the value accessor through here, instead of
|
167
|
-
// the `providers` to avoid running into a circular import.
|
168
|
-
this.ngControl.valueAccessor = this;
|
169
|
-
}
|
170
|
-
// Force setter to be called in case id was not specified.
|
171
|
-
this.id = this.id;
|
172
|
-
}
|
173
|
-
get placeholder() {
|
174
|
-
return this._placeholder;
|
175
|
-
}
|
176
|
-
set placeholder(value) {
|
177
|
-
this._placeholder = value;
|
178
|
-
this.stateChanges.next();
|
179
|
-
}
|
180
|
-
get required() {
|
181
|
-
return this._required;
|
182
|
-
}
|
183
|
-
set required(value) {
|
184
|
-
this._required = coerceBooleanProperty(value);
|
185
|
-
this.stateChanges.next();
|
186
|
-
}
|
187
|
-
get multiple() {
|
188
|
-
return this._multiple;
|
189
|
-
}
|
190
|
-
set multiple(value) {
|
191
|
-
if (this.selectionModel) {
|
192
|
-
throw getMcSelectDynamicMultipleError();
|
193
|
-
}
|
194
|
-
this._multiple = coerceBooleanProperty(value);
|
195
|
-
}
|
196
|
-
get autoSelect() {
|
197
|
-
if (this.multiple) {
|
198
|
-
return false;
|
199
|
-
}
|
200
|
-
return this._autoSelect;
|
201
|
-
}
|
202
|
-
set autoSelect(value) {
|
203
|
-
this._autoSelect = coerceBooleanProperty(value);
|
204
|
-
}
|
205
|
-
/**
|
206
|
-
* Function to compare the option values with the selected values. The first argument
|
207
|
-
* is a value from an option. The second is a value from the selection. A boolean
|
208
|
-
* should be returned.
|
209
|
-
*/
|
210
|
-
get compareWith() {
|
211
|
-
return this._compareWith;
|
212
|
-
}
|
213
|
-
set compareWith(fn) {
|
214
|
-
/* tslint:disable-next-line:strict-type-predicates */
|
215
|
-
if (typeof fn !== 'function') {
|
216
|
-
throw getMcSelectNonFunctionValueError();
|
217
|
-
}
|
218
|
-
this._compareWith = fn;
|
219
|
-
if (this.selectionModel) {
|
220
|
-
// A different comparator means the selection could change.
|
221
|
-
this.initializeSelection();
|
222
|
-
}
|
223
|
-
}
|
224
|
-
get value() {
|
225
|
-
return this.tree.getSelectedValues();
|
226
|
-
}
|
227
|
-
get id() {
|
228
|
-
return this._id;
|
229
|
-
}
|
230
|
-
set id(value) {
|
231
|
-
this._id = value || this.uid;
|
232
|
-
this.stateChanges.next();
|
233
|
-
}
|
234
|
-
get hasBackdrop() {
|
235
|
-
return this._hasBackdrop;
|
236
|
-
}
|
237
|
-
set hasBackdrop(value) {
|
238
|
-
this._hasBackdrop = coerceBooleanProperty(value);
|
239
|
-
}
|
240
|
-
get disabled() {
|
241
|
-
return this._disabled;
|
242
|
-
}
|
243
|
-
set disabled(value) {
|
244
|
-
this._disabled = coerceBooleanProperty(value);
|
245
|
-
if (this.parentFormField) {
|
246
|
-
this._disabled ? this.parentFormField.stopFocusMonitor() : this.parentFormField.runFocusMonitor();
|
247
|
-
}
|
248
|
-
}
|
249
|
-
/** Whether the select is focused. */
|
250
|
-
get focused() {
|
251
|
-
return this._focused || this._panelOpen;
|
252
|
-
}
|
253
|
-
set focused(value) {
|
254
|
-
this._focused = value;
|
255
|
-
}
|
256
|
-
get panelOpen() {
|
257
|
-
return this._panelOpen;
|
258
|
-
}
|
259
|
-
get canShowCleaner() {
|
260
|
-
return !this.disabled && this.cleaner && this.selectionModel.hasValue();
|
261
|
-
}
|
262
|
-
ngOnInit() {
|
263
|
-
this.stateChanges.next();
|
264
|
-
// We need `distinctUntilChanged` here, because some browsers will
|
265
|
-
// fire the animation end event twice for the same animation. See:
|
266
|
-
// https://github.com/angular/angular/issues/24084
|
267
|
-
this.panelDoneAnimatingStream
|
268
|
-
.pipe(distinctUntilChanged(), takeUntil(this.destroy))
|
269
|
-
.subscribe(() => {
|
270
|
-
if (this.panelOpen) {
|
271
|
-
this.scrollTop = 0;
|
272
|
-
if (this.search) {
|
273
|
-
this.search.focus();
|
274
|
-
}
|
275
|
-
this.openedChange.emit(true);
|
276
|
-
}
|
277
|
-
else {
|
278
|
-
this.openedChange.emit(false);
|
279
|
-
this.overlayDir.offsetX = 0;
|
280
|
-
this.changeDetectorRef.markForCheck();
|
281
|
-
}
|
282
|
-
});
|
283
|
-
}
|
284
|
-
ngAfterContentInit() {
|
285
|
-
if (!this.tree) {
|
286
|
-
return;
|
287
|
-
}
|
288
|
-
this.tree.resetFocusedItemOnBlur = false;
|
289
|
-
this.tree.optionShouldHoldFocusOnBlur = true;
|
290
|
-
this.selectionModel = this.tree.selectionModel = new SelectionModel(this.multiple);
|
291
|
-
this.selectionModel.changed
|
292
|
-
.subscribe(() => {
|
293
|
-
this.onChange(this.selectedValues);
|
294
|
-
if (this.multiple) {
|
295
|
-
this.refreshTriggerValues();
|
296
|
-
}
|
297
|
-
});
|
298
|
-
this.tree.ngAfterContentInit();
|
299
|
-
this.initKeyManager();
|
300
|
-
this.options = this.tree.renderedOptions;
|
301
|
-
this.tree.autoSelect = this.autoSelect;
|
302
|
-
if (this.tree.multipleMode === null) {
|
303
|
-
this.tree.multipleMode = this.multiple ? MultipleMode.CHECKBOX : null;
|
304
|
-
}
|
305
|
-
if (this.multiple) {
|
306
|
-
this.tree.noUnselectLast = false;
|
307
|
-
}
|
308
|
-
if (this.tempValues) {
|
309
|
-
this.setSelectionByValue(this.tempValues);
|
310
|
-
this.tempValues = null;
|
311
|
-
}
|
312
|
-
this.optionSelectionChanges
|
313
|
-
.pipe(takeUntil(this.destroy))
|
314
|
-
.subscribe((event) => {
|
315
|
-
if (!this.multiple && this.panelOpen && event.isUserInput) {
|
316
|
-
this.close();
|
317
|
-
}
|
318
|
-
});
|
319
|
-
this.tree.selectionChange
|
320
|
-
.pipe(takeUntil(this.destroy))
|
321
|
-
.subscribe((event) => {
|
322
|
-
this.onChange(this.selectedValues);
|
323
|
-
this.selectionChange.emit(new McTreeSelectChange(this, event.option));
|
324
|
-
if (this.search) {
|
325
|
-
this.search.focus();
|
326
|
-
}
|
327
|
-
});
|
328
|
-
if (!this.multiple) {
|
329
|
-
this.selectionModel.changed
|
330
|
-
.pipe(takeUntil(this.destroy), filter(({ added }) => !!added.length))
|
331
|
-
.subscribe(({ added }) => {
|
332
|
-
this.tree.keyManager.setFocusOrigin('program');
|
333
|
-
this.tree.keyManager.setActiveItem(this.options.find(({ data }) => data === added[0]));
|
334
|
-
});
|
335
|
-
}
|
336
|
-
this.subscribeOnSearchChanges();
|
337
|
-
}
|
338
|
-
ngAfterViewInit() {
|
339
|
-
if (!this.tree) {
|
340
|
-
return;
|
341
|
-
}
|
342
|
-
this.tags.changes
|
343
|
-
.pipe(startWith(null))
|
344
|
-
.subscribe(() => {
|
345
|
-
this.calculateHiddenItems();
|
346
|
-
});
|
347
|
-
}
|
348
|
-
ngDoCheck() {
|
349
|
-
if (this.ngControl) {
|
350
|
-
this.updateErrorState();
|
351
|
-
}
|
352
|
-
}
|
353
|
-
ngOnChanges(changes) {
|
354
|
-
// Updating the disabled state is handled by `mixinDisabled`, but we need to additionally let
|
355
|
-
// the parent form field know to run change detection when the disabled state changes.
|
356
|
-
if (changes.disabled) {
|
357
|
-
this.stateChanges.next();
|
358
|
-
}
|
359
|
-
}
|
360
|
-
ngOnDestroy() {
|
361
|
-
this.destroy.next();
|
362
|
-
this.destroy.complete();
|
363
|
-
this.stateChanges.complete();
|
364
|
-
this.closeSubscription.unsubscribe();
|
365
|
-
}
|
366
|
-
hiddenItemsTextFormatter(hiddenItemsText, hiddenItems) {
|
367
|
-
return `${hiddenItemsText} ${hiddenItems}`;
|
368
|
-
}
|
369
|
-
clearValue($event) {
|
370
|
-
$event.stopPropagation();
|
371
|
-
this.selectionModel.clear();
|
372
|
-
this.tree.keyManager.setActiveItem(-1);
|
373
|
-
this.setSelectionByValue([]);
|
374
|
-
this.onChange(this.selectedValues);
|
375
|
-
}
|
376
|
-
toggle() {
|
377
|
-
if (this.panelOpen) {
|
378
|
-
this.close();
|
379
|
-
}
|
380
|
-
else {
|
381
|
-
this.open();
|
382
|
-
}
|
383
|
-
}
|
384
|
-
open() {
|
385
|
-
if (this.disabled || !this.options || !this.options.length || this._panelOpen) {
|
386
|
-
return;
|
387
|
-
}
|
388
|
-
this.triggerRect = this.trigger.nativeElement.getBoundingClientRect();
|
389
|
-
// Note: The computed font-size will be a string pixel value (e.g. "16px").
|
390
|
-
// `parseInt` ignores the trailing 'px' and converts this to a number.
|
391
|
-
this.triggerFontSize = parseInt(getComputedStyle(this.trigger.nativeElement)['font-size']);
|
392
|
-
this._panelOpen = true;
|
393
|
-
setTimeout(() => this.highlightCorrectOption());
|
394
|
-
this.changeDetectorRef.markForCheck();
|
395
|
-
// Set the font size on the panel element once it exists.
|
396
|
-
this.ngZone.onStable.asObservable()
|
397
|
-
.pipe(take(1))
|
398
|
-
.subscribe(() => {
|
399
|
-
if (this.triggerFontSize && this.overlayDir.overlayRef && this.overlayDir.overlayRef.overlayElement) {
|
400
|
-
this.overlayDir.overlayRef.overlayElement.style.fontSize = `${this.triggerFontSize}px`;
|
401
|
-
}
|
402
|
-
});
|
403
|
-
}
|
404
|
-
/** Closes the overlay panel and focuses the host element. */
|
405
|
-
close() {
|
406
|
-
if (!this._panelOpen) {
|
407
|
-
return;
|
408
|
-
}
|
409
|
-
this._panelOpen = false;
|
410
|
-
this.changeDetectorRef.markForCheck();
|
411
|
-
this.onTouched();
|
412
|
-
if (this.search) {
|
413
|
-
this.search.reset();
|
414
|
-
}
|
415
|
-
}
|
416
|
-
/**
|
417
|
-
* Sets the select's value. Part of the ControlValueAccessor interface
|
418
|
-
* required to integrate with Angular's core forms API.
|
419
|
-
*
|
420
|
-
* @param value New value to be written to the model.
|
421
|
-
*/
|
422
|
-
writeValue(value) {
|
423
|
-
if (this.tree) {
|
424
|
-
this.setSelectionByValue(value);
|
425
|
-
}
|
426
|
-
else {
|
427
|
-
this.tempValues = value;
|
428
|
-
}
|
429
|
-
}
|
430
|
-
/**
|
431
|
-
* Saves a callback function to be invoked when the select's value
|
432
|
-
* changes from user input. Part of the ControlValueAccessor interface
|
433
|
-
* required to integrate with Angular's core forms API.
|
434
|
-
*
|
435
|
-
* @param fn Callback to be triggered when the value changes.
|
436
|
-
*/
|
437
|
-
registerOnChange(fn) {
|
438
|
-
this.onChange = fn;
|
439
|
-
}
|
440
|
-
/**
|
441
|
-
* Saves a callback function to be invoked when the select is blurred
|
442
|
-
* by the user. Part of the ControlValueAccessor interface required
|
443
|
-
* to integrate with Angular's core forms API.
|
444
|
-
*
|
445
|
-
* @param fn Callback to be triggered when the component has been touched.
|
446
|
-
*/
|
447
|
-
registerOnTouched(fn) {
|
448
|
-
this.onTouched = fn;
|
449
|
-
}
|
450
|
-
/**
|
451
|
-
* Disables the select. Part of the ControlValueAccessor interface required
|
452
|
-
* to integrate with Angular's core forms API.
|
453
|
-
*
|
454
|
-
* @param isDisabled Sets whether the component is disabled.
|
455
|
-
*/
|
456
|
-
setDisabledState(isDisabled) {
|
457
|
-
this.disabled = isDisabled;
|
458
|
-
this.changeDetectorRef.markForCheck();
|
459
|
-
this.stateChanges.next();
|
460
|
-
}
|
461
|
-
get selected() {
|
462
|
-
return this.multiple ? this.selectionModel.selected : this.selectionModel.selected[0];
|
463
|
-
}
|
464
|
-
get selectedValues() {
|
465
|
-
const selectedValues = this.selectionModel.selected.map((value) => this.tree.treeControl.getValue(value));
|
466
|
-
return this.multiple ? selectedValues : selectedValues[0];
|
467
|
-
}
|
468
|
-
get triggerValue() {
|
469
|
-
if (this.empty) {
|
470
|
-
return '';
|
471
|
-
}
|
472
|
-
return this.tree.treeControl.getViewValue(this.selected);
|
473
|
-
}
|
474
|
-
get empty() {
|
475
|
-
return !this.selectionModel || this.selectionModel.isEmpty();
|
476
|
-
}
|
477
|
-
isRtl() {
|
478
|
-
return this.dir ? this.dir.value === 'rtl' : false;
|
479
|
-
}
|
480
|
-
handleKeydown(event) {
|
481
|
-
if (!this.disabled) {
|
482
|
-
if (this.panelOpen) {
|
483
|
-
this.handleOpenKeydown(event);
|
484
|
-
}
|
485
|
-
else {
|
486
|
-
this.handleClosedKeydown(event);
|
487
|
-
}
|
488
|
-
}
|
489
|
-
}
|
490
|
-
onFocus() {
|
491
|
-
if (!this.disabled) {
|
492
|
-
this._focused = true;
|
493
|
-
this.stateChanges.next();
|
494
|
-
}
|
495
|
-
}
|
496
|
-
/**
|
497
|
-
* Calls the touched callback only if the panel is closed. Otherwise, the trigger will
|
498
|
-
* "blur" to the panel when it opens, causing a false positive.
|
499
|
-
*/
|
500
|
-
onBlur() {
|
501
|
-
var _a;
|
502
|
-
this._focused = false;
|
503
|
-
if (!this.disabled && !this.panelOpen) {
|
504
|
-
this.onTouched();
|
505
|
-
this.changeDetectorRef.markForCheck();
|
506
|
-
this.stateChanges.next();
|
507
|
-
if ((_a = this.ngControl) === null || _a === void 0 ? void 0 : _a.control) {
|
508
|
-
const control = this.ngControl.control;
|
509
|
-
control.updateValueAndValidity({ emitEvent: false });
|
510
|
-
control.statusChanges.emit(control.status);
|
511
|
-
}
|
512
|
-
}
|
513
|
-
}
|
514
|
-
/** Callback that is invoked when the overlay panel has been attached. */
|
515
|
-
onAttached() {
|
516
|
-
this.overlayDir.positionChange
|
517
|
-
.pipe(take(1))
|
518
|
-
.subscribe(() => {
|
519
|
-
this.changeDetectorRef.detectChanges();
|
520
|
-
this.calculateOverlayOffsetX();
|
521
|
-
this.panel.nativeElement.scrollTop = this.scrollTop;
|
522
|
-
this.tree.updateScrollSize();
|
523
|
-
});
|
524
|
-
this.closeSubscription = this.closingActions()
|
525
|
-
.subscribe(() => this.close());
|
526
|
-
}
|
527
|
-
/** Returns the theme to be used on the panel. */
|
528
|
-
getPanelTheme() {
|
529
|
-
return this.parentFormField ? `mc-${this.parentFormField.color}` : '';
|
530
|
-
}
|
531
|
-
focus() {
|
532
|
-
this.elementRef.nativeElement.focus();
|
533
|
-
}
|
534
|
-
/**
|
535
|
-
* Implemented as part of McFormFieldControl.
|
536
|
-
* @docs-private
|
537
|
-
*/
|
538
|
-
onContainerClick() {
|
539
|
-
this.focus();
|
540
|
-
}
|
541
|
-
/** Invoked when an option is clicked. */
|
542
|
-
onRemoveSelectedOption(selectedOption, $event) {
|
543
|
-
$event.stopPropagation();
|
544
|
-
this.selectionModel
|
545
|
-
.deselect(this.selected.find((value) => this.tree.treeControl.getValue(value) === selectedOption.value));
|
546
|
-
this.onChange(this.selectedValues);
|
547
|
-
}
|
548
|
-
calculateHiddenItems() {
|
549
|
-
if (this.customTrigger || this.empty || !this.multiple) {
|
550
|
-
return;
|
551
|
-
}
|
552
|
-
const totalItemsWidth = this.getTotalItemsWidthInMatcher();
|
553
|
-
const [totalVisibleItemsWidth, visibleItems] = this.getTotalVisibleItems();
|
554
|
-
this.hiddenItems = this.selectionModel.selected.length - visibleItems;
|
555
|
-
this.changeDetectorRef.detectChanges();
|
556
|
-
if (this.hiddenItems) {
|
557
|
-
const itemsCounter = this.trigger.nativeElement.querySelector('.mc-tree-select__match-hidden-text');
|
558
|
-
const matcherList = this.trigger.nativeElement.querySelector('.mc-tree-select__match-list');
|
559
|
-
const itemsCounterShowed = itemsCounter.offsetTop < itemsCounter.offsetHeight;
|
560
|
-
const itemsCounterWidth = Math.floor(itemsCounter.getBoundingClientRect().width);
|
561
|
-
const matcherListWidth = Math.floor(matcherList.getBoundingClientRect().width);
|
562
|
-
const matcherWidth = matcherListWidth + (itemsCounterShowed ? itemsCounterWidth : 0);
|
563
|
-
if (itemsCounterShowed && (totalItemsWidth < matcherWidth)) {
|
564
|
-
this.hiddenItems = 0;
|
565
|
-
this.changeDetectorRef.detectChanges();
|
566
|
-
}
|
567
|
-
if (totalVisibleItemsWidth === matcherListWidth ||
|
568
|
-
(totalVisibleItemsWidth + itemsCounterWidth) < matcherListWidth) {
|
569
|
-
this.changeDetectorRef.markForCheck();
|
570
|
-
return;
|
571
|
-
}
|
572
|
-
}
|
573
|
-
this.changeDetectorRef.markForCheck();
|
574
|
-
}
|
575
|
-
closingActions() {
|
576
|
-
const backdrop = this.overlayDir.overlayRef.backdropClick();
|
577
|
-
const outsidePointerEvents = this.overlayDir.overlayRef.outsidePointerEvents()
|
578
|
-
.pipe(filter((event) => !this.elementRef.nativeElement.contains(event.target)));
|
579
|
-
const detachments = this.overlayDir.overlayRef.detachments();
|
580
|
-
return merge(backdrop, outsidePointerEvents, detachments);
|
581
|
-
}
|
582
|
-
getTotalItemsWidthInMatcher() {
|
583
|
-
var _a;
|
584
|
-
const triggerClone = this.buildTriggerClone();
|
585
|
-
(_a = triggerClone.querySelector('.mc-tree-select__match-hidden-text')) === null || _a === void 0 ? void 0 : _a.remove();
|
586
|
-
this.renderer.appendChild(this.trigger.nativeElement, triggerClone);
|
587
|
-
let totalItemsWidth = 0;
|
588
|
-
triggerClone.querySelectorAll('mc-tag')
|
589
|
-
.forEach((item) => totalItemsWidth += this.getItemWidth(item));
|
590
|
-
triggerClone.remove();
|
591
|
-
return totalItemsWidth;
|
592
|
-
}
|
593
|
-
getTotalVisibleItems() {
|
594
|
-
const triggerClone = this.buildTriggerClone();
|
595
|
-
this.renderer.setStyle(triggerClone.querySelector('.mc-tree-select__match-hidden-text'), 'display', 'block');
|
596
|
-
this.renderer.appendChild(this.trigger.nativeElement, triggerClone);
|
597
|
-
let visibleItemsCount = 0;
|
598
|
-
let totalVisibleItemsWidth = 0;
|
599
|
-
triggerClone.querySelectorAll('mc-tag')
|
600
|
-
.forEach((item) => {
|
601
|
-
if (item.offsetTop < item.offsetHeight) {
|
602
|
-
totalVisibleItemsWidth += this.getItemWidth(item);
|
603
|
-
visibleItemsCount++;
|
604
|
-
}
|
605
|
-
});
|
606
|
-
triggerClone.remove();
|
607
|
-
return [totalVisibleItemsWidth, visibleItemsCount];
|
608
|
-
}
|
609
|
-
buildTriggerClone() {
|
610
|
-
const triggerClone = this.trigger.nativeElement.cloneNode(true);
|
611
|
-
this.renderer.setStyle(triggerClone, 'position', 'absolute');
|
612
|
-
this.renderer.setStyle(triggerClone, 'visibility', 'hidden');
|
613
|
-
this.renderer.setStyle(triggerClone, 'top', '-100%');
|
614
|
-
this.renderer.setStyle(triggerClone, 'left', '0');
|
615
|
-
return triggerClone;
|
616
|
-
}
|
617
|
-
getItemWidth(element) {
|
618
|
-
const computedStyle = window.getComputedStyle(element);
|
619
|
-
const width = parseInt(computedStyle.width);
|
620
|
-
const marginLeft = parseInt(computedStyle.marginLeft);
|
621
|
-
const marginRight = parseInt(computedStyle.marginRight);
|
622
|
-
return width + marginLeft + marginRight;
|
623
|
-
}
|
624
|
-
handleClosedKeydown(event) {
|
625
|
-
// tslint:disable-next-line: deprecation
|
626
|
-
const keyCode = event.keyCode;
|
627
|
-
const isArrowKey = keyCode === DOWN_ARROW || keyCode === UP_ARROW ||
|
628
|
-
keyCode === LEFT_ARROW || keyCode === RIGHT_ARROW;
|
629
|
-
const isOpenKey = keyCode === ENTER || keyCode === SPACE;
|
630
|
-
// Open the select on ALT + arrow key to match the native <select>
|
631
|
-
if (isOpenKey || ((this.multiple || event.altKey) && isArrowKey)) {
|
632
|
-
// prevents the page from scrolling down when pressing space
|
633
|
-
event.preventDefault();
|
634
|
-
this.open();
|
635
|
-
}
|
636
|
-
else if (!this.multiple && this.tree.keyManager && this.tree.keyManager.onKeydown) {
|
637
|
-
this.tree.keyManager.onKeydown(event);
|
638
|
-
}
|
639
|
-
}
|
640
|
-
handleOpenKeydown(event) {
|
641
|
-
/* tslint:disable-next-line */
|
642
|
-
const keyCode = event.keyCode;
|
643
|
-
const isArrowKey = keyCode === DOWN_ARROW || keyCode === UP_ARROW;
|
644
|
-
if (isArrowKey && event.altKey || keyCode === ESCAPE || keyCode === TAB) {
|
645
|
-
// Close the select on ALT + arrow key to match the native <select>
|
646
|
-
event.preventDefault();
|
647
|
-
this.close();
|
648
|
-
this.focus();
|
649
|
-
}
|
650
|
-
else if (keyCode === LEFT_ARROW || keyCode === RIGHT_ARROW) {
|
651
|
-
return this.originalOnKeyDown.call(this.tree, event);
|
652
|
-
}
|
653
|
-
else if (keyCode === HOME) {
|
654
|
-
event.preventDefault();
|
655
|
-
this.tree.keyManager.setFirstItemActive();
|
656
|
-
}
|
657
|
-
else if (keyCode === END) {
|
658
|
-
event.preventDefault();
|
659
|
-
this.tree.keyManager.setLastItemActive();
|
660
|
-
}
|
661
|
-
else if (keyCode === PAGE_UP) {
|
662
|
-
event.preventDefault();
|
663
|
-
this.tree.keyManager.setPreviousPageItemActive();
|
664
|
-
}
|
665
|
-
else if (keyCode === PAGE_DOWN) {
|
666
|
-
event.preventDefault();
|
667
|
-
this.tree.keyManager.setNextPageItemActive();
|
668
|
-
}
|
669
|
-
else if ((keyCode === ENTER || keyCode === SPACE) && this.tree.keyManager.activeItem) {
|
670
|
-
event.preventDefault();
|
671
|
-
if (!this.autoSelect) {
|
672
|
-
this.originalOnKeyDown.call(this.tree, event);
|
673
|
-
}
|
674
|
-
else {
|
675
|
-
this.close();
|
676
|
-
}
|
677
|
-
}
|
678
|
-
else if (this.multiple && keyCode === A && event.ctrlKey) {
|
679
|
-
event.preventDefault();
|
680
|
-
const hasDeselectedOptions = this.options.some((option) => !option.selected);
|
681
|
-
this.options.forEach((option) => {
|
682
|
-
if (hasDeselectedOptions && !option.disabled) {
|
683
|
-
option.select();
|
684
|
-
}
|
685
|
-
else {
|
686
|
-
option.deselect();
|
687
|
-
}
|
688
|
-
});
|
689
|
-
}
|
690
|
-
else {
|
691
|
-
const previouslyFocusedIndex = this.tree.keyManager.activeItemIndex;
|
692
|
-
this.tree.keyManager.setFocusOrigin('keyboard');
|
693
|
-
this.tree.keyManager.onKeydown(event);
|
694
|
-
if (this.multiple && isArrowKey && event.shiftKey && this.tree.keyManager.activeItem &&
|
695
|
-
this.tree.keyManager.activeItemIndex !== previouslyFocusedIndex) {
|
696
|
-
this.tree.keyManager.activeItem.selectViaInteraction(event);
|
697
|
-
}
|
698
|
-
if (this.autoSelect && this.tree.keyManager.activeItem) {
|
699
|
-
this.tree.setSelectedOptionsByKey(this.tree.keyManager.activeItem, hasModifierKey(event, 'shiftKey'), hasModifierKey(event, 'ctrlKey'));
|
700
|
-
}
|
701
|
-
if (this.search) {
|
702
|
-
this.search.focus();
|
703
|
-
}
|
704
|
-
}
|
705
|
-
}
|
706
|
-
refreshTriggerValues() {
|
707
|
-
this.triggerValues = this.selectionModel.selected
|
708
|
-
.map((node) => ({
|
709
|
-
value: this.tree.treeControl.getValue(node),
|
710
|
-
viewValue: this.tree.treeControl.getViewValue(node),
|
711
|
-
disabled: this.tree.treeControl.isDisabled(node)
|
712
|
-
}));
|
713
|
-
this.changeDetectorRef.detectChanges();
|
714
|
-
}
|
715
|
-
initializeSelection() {
|
716
|
-
// Defer setting the value in order to avoid the "Expression
|
717
|
-
// has changed after it was checked" errors from Angular.
|
718
|
-
Promise.resolve().then(() => {
|
719
|
-
this.setSelectionByValue(this.ngControl ? this.ngControl.value : this._value);
|
720
|
-
});
|
721
|
-
}
|
722
|
-
/**
|
723
|
-
* Sets the selected option based on a value. If no option can be
|
724
|
-
* found with the designated value, the select trigger is cleared.
|
725
|
-
*/
|
726
|
-
setSelectionByValue(value) {
|
727
|
-
if (this.multiple && value) {
|
728
|
-
if (!Array.isArray(value)) {
|
729
|
-
throw getMcSelectNonArrayValueError();
|
730
|
-
}
|
731
|
-
this.tree.setOptionsFromValues(value);
|
732
|
-
this.sortValues();
|
733
|
-
}
|
734
|
-
else {
|
735
|
-
this.tree.setOptionsFromValues([value]);
|
736
|
-
}
|
737
|
-
this.changeDetectorRef.detectChanges();
|
738
|
-
}
|
739
|
-
initKeyManager() {
|
740
|
-
this.originalOnKeyDown = this.tree.onKeyDown;
|
741
|
-
this.tree.onKeyDown = () => { };
|
742
|
-
this.tree.keyManager.change
|
743
|
-
.pipe(takeUntil(this.destroy))
|
744
|
-
.subscribe(() => {
|
745
|
-
if (this._panelOpen && this.panel) {
|
746
|
-
this.scrollActiveOptionIntoView();
|
747
|
-
}
|
748
|
-
else if (!this._panelOpen && !this.multiple && this.tree.keyManager.activeItem) {
|
749
|
-
this.tree.keyManager.activeItem.selectViaInteraction();
|
750
|
-
}
|
751
|
-
});
|
752
|
-
}
|
753
|
-
/** Sorts the selected values in the selected based on their order in the panel. */
|
754
|
-
sortValues() {
|
755
|
-
if (this.multiple) {
|
756
|
-
const options = this.options.toArray();
|
757
|
-
this.selectionModel.sort((a, b) => {
|
758
|
-
return this.sortComparator ?
|
759
|
-
this.sortComparator(a, b, options) :
|
760
|
-
options.indexOf(a) - options.indexOf(b);
|
761
|
-
});
|
762
|
-
this.stateChanges.next();
|
763
|
-
}
|
764
|
-
}
|
765
|
-
/**
|
766
|
-
* Highlights the selected item. If no option is selected, it will highlight
|
767
|
-
* the first item instead.
|
768
|
-
*/
|
769
|
-
highlightCorrectOption() {
|
770
|
-
if (this.empty || !this.tree.keyManager) {
|
771
|
-
return;
|
772
|
-
}
|
773
|
-
const firstSelectedValue = this.multiple ? this.selectedValues[0] : this.selectedValues;
|
774
|
-
const selectedOption = this.options.find((option) => option.value === firstSelectedValue);
|
775
|
-
if (selectedOption) {
|
776
|
-
this.tree.keyManager.setFocusOrigin('keyboard');
|
777
|
-
this.tree.keyManager.setActiveItem(selectedOption);
|
778
|
-
}
|
779
|
-
}
|
780
|
-
/** Scrolls the active option into view. */
|
781
|
-
scrollActiveOptionIntoView() {
|
782
|
-
var _a;
|
783
|
-
(_a = this.tree.keyManager.activeItem) === null || _a === void 0 ? void 0 : _a.focus();
|
784
|
-
}
|
785
|
-
/**
|
786
|
-
* Sets the x-offset of the overlay panel in relation to the trigger's top start corner.
|
787
|
-
* This must be adjusted to align the selected option text over the trigger text when
|
788
|
-
* the panel opens. Will change based on LTR or RTL text direction. Note that the offset
|
789
|
-
* can't be calculated until the panel has been attached, because we need to know the
|
790
|
-
* content width in order to constrain the panel within the viewport.
|
791
|
-
*/
|
792
|
-
calculateOverlayOffsetX() {
|
793
|
-
const overlayRect = this.overlayDir.overlayRef.overlayElement.getBoundingClientRect();
|
794
|
-
const viewportSize = this.viewportRuler.getViewportSize();
|
795
|
-
const isRtl = this.isRtl();
|
796
|
-
/* tslint:disable-next-line:no-magic-numbers */
|
797
|
-
const paddingWidth = SELECT_PANEL_PADDING_X * 2;
|
798
|
-
let offsetX = SELECT_PANEL_PADDING_X;
|
799
|
-
// Invert the offset in LTR.
|
800
|
-
if (!isRtl) {
|
801
|
-
offsetX *= -1;
|
802
|
-
}
|
803
|
-
// Determine how much the select overflows on each side.
|
804
|
-
const leftOverflow = 0 - (overlayRect.left + offsetX - (isRtl ? paddingWidth : 0));
|
805
|
-
const rightOverflow = overlayRect.right + offsetX - viewportSize.width
|
806
|
-
+ (isRtl ? 0 : paddingWidth);
|
807
|
-
// If the element overflows on either side, reduce the offset to allow it to fit.
|
808
|
-
if (leftOverflow > 0) {
|
809
|
-
offsetX += leftOverflow + SELECT_PANEL_VIEWPORT_PADDING;
|
810
|
-
}
|
811
|
-
else if (rightOverflow > 0) {
|
812
|
-
offsetX -= rightOverflow + SELECT_PANEL_VIEWPORT_PADDING;
|
813
|
-
}
|
814
|
-
// Set the offset directly in order to avoid having to go through change detection and
|
815
|
-
// potentially triggering "changed after it was checked" errors. Round the value to avoid
|
816
|
-
// blurry content in some browsers.
|
817
|
-
this.overlayDir.offsetX = Math.round(offsetX);
|
818
|
-
this.overlayDir.overlayRef.updatePosition();
|
819
|
-
}
|
820
|
-
subscribeOnSearchChanges() {
|
821
|
-
var _a;
|
822
|
-
if (!((_a = this.search) === null || _a === void 0 ? void 0 : _a.input.ngControl.valueChanges)) {
|
823
|
-
return;
|
824
|
-
}
|
825
|
-
this.search.input.ngControl.valueChanges
|
826
|
-
.pipe(delay(0))
|
827
|
-
.subscribe((value) => {
|
828
|
-
this.isEmptySearchResult = !!value && this.tree.isEmpty;
|
829
|
-
this.changeDetectorRef.markForCheck();
|
830
|
-
});
|
831
|
-
}
|
832
|
-
}
|
833
|
-
/** @nocollapse */ McTreeSelect.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: McTreeSelect, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i1.ViewportRuler }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: i2.ErrorStateMatcher }, { token: MC_SELECT_SCROLL_STRATEGY }, { token: i3.Directionality, optional: true }, { token: i4.NgForm, optional: true }, { token: i4.FormGroupDirective, optional: true }, { token: i5.McFormField, optional: true }, { token: i4.NgControl, optional: true, self: true }], target: i0.ɵɵFactoryTarget.Component });
|
834
|
-
/** @nocollapse */ McTreeSelect.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: McTreeSelect, selector: "mc-tree-select", inputs: { disabled: "disabled", tabIndex: "tabIndex", hiddenItemsText: "hiddenItemsText", panelClass: "panelClass", backdropClass: "backdropClass", errorStateMatcher: "errorStateMatcher", sortComparator: "sortComparator", placeholder: "placeholder", required: "required", multiple: "multiple", autoSelect: "autoSelect", compareWith: "compareWith", id: "id", hasBackdrop: "hasBackdrop", hiddenItemsTextFormatter: "hiddenItemsTextFormatter" }, outputs: { openedChange: "openedChange", openedStream: "opened", closedStream: "closed", selectionChange: "selectionChange", valueChange: "valueChange" }, host: { listeners: { "click": "toggle()", "keydown": "handleKeydown($event)", "focus": "onFocus()", "blur": "onBlur()", "window:resize": "calculateHiddenItems()" }, properties: { "class.mc-disabled": "disabled", "class.mc-invalid": "errorState", "attr.id": "id", "attr.tabindex": "tabIndex", "attr.disabled": "disabled || null" }, classAttribute: "mc-tree-select" }, providers: [
|
835
|
-
{ provide: McFormFieldControl, useExisting: McTreeSelect },
|
836
|
-
{ provide: McTree, useExisting: McTreeSelect }
|
837
|
-
], queries: [{ propertyName: "cleaner", first: true, predicate: ["mcSelectCleaner"], descendants: true, static: true }, { propertyName: "customTrigger", first: true, predicate: McTreeSelectTrigger, descendants: true }, { propertyName: "tree", first: true, predicate: McTreeSelection, descendants: true }, { propertyName: "search", first: true, predicate: McSelectSearch, descendants: true }], viewQueries: [{ propertyName: "trigger", first: true, predicate: ["trigger"], descendants: true }, { propertyName: "panel", first: true, predicate: ["panel"], descendants: true }, { propertyName: "overlayDir", first: true, predicate: CdkConnectedOverlay, descendants: true }, { propertyName: "tags", predicate: McTag, descendants: true }], exportAs: ["mcTreeSelect"], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<div cdk-overlay-origin\n class=\"mc-tree-select__trigger\"\n [class.mc-tree-select__trigger_multiple]=\"multiple\"\n #origin=\"cdkOverlayOrigin\"\n #trigger>\n <div class=\"mc-tree-select__matcher\" [ngSwitch]=\"empty\">\n <span class=\"mc-tree-select__placeholder\" *ngSwitchCase=\"true\">{{ placeholder || '\\u00A0' }}</span>\n <span *ngSwitchCase=\"false\" [ngSwitch]=\"!!customTrigger\">\n <div *ngSwitchDefault [ngSwitch]=\"multiple\" class=\"mc-tree-select__match-container\">\n <span *ngSwitchCase=\"false\" class=\"mc-tree-select__matcher-text\">{{ triggerValue }}</span>\n <div *ngSwitchCase=\"true\" class=\"mc-tree-select__multiple-matcher\">\n <div class=\"mc-tree-select__match-list\">\n <mc-tag *ngFor=\"let triggerValue of triggerValues\"\n [selectable]=\"false\"\n [disabled]=\"triggerValue.disabled || disabled\"\n [class.mc-error]=\"errorState\">\n\n {{ triggerValue.viewValue }}\n <i mc-icon=\"mc-close-S_16\" mcTagRemove\n *ngIf=\"!triggerValue.disabled && !disabled\"\n (click)=\"onRemoveSelectedOption(triggerValue, $event)\">\n </i>\n </mc-tag>\n </div>\n <div class=\"mc-tree-select__match-hidden-text\" [style.display]=\"hiddenItems > 0 ? 'block' : 'none'\">\n {{ hiddenItemsTextFormatter(hiddenItemsText, hiddenItems) }}\n </div>\n </div>\n </div>\n <ng-content select=\"mc-tree-select-trigger\" *ngSwitchCase=\"true\"></ng-content>\n </span>\n </div>\n\n <div class=\"mc-select__cleaner\" *ngIf=\"canShowCleaner\" (click)=\"clearValue($event)\">\n <ng-content select=\"mc-cleaner\"></ng-content>\n </div>\n\n <div class=\"mc-tree-select__arrow-wrapper\">\n <i class=\"mc-tree-select__arrow\" mc-icon=\"mc-angle-down-S_16\"></i>\n </div>\n</div>\n\n<ng-template\n cdk-connected-overlay\n cdkConnectedOverlayLockPosition\n [cdkConnectedOverlayHasBackdrop]=\"hasBackdrop\"\n [cdkConnectedOverlayBackdropClass]=\"backdropClass\"\n [cdkConnectedOverlayScrollStrategy]=\"scrollStrategy\"\n [cdkConnectedOverlayOrigin]=\"origin\"\n [cdkConnectedOverlayOpen]=\"panelOpen\"\n [cdkConnectedOverlayPositions]=\"positions\"\n [cdkConnectedOverlayMinWidth]=\"triggerRect?.width!\"\n [cdkConnectedOverlayOffsetY]=\"offsetY\"\n (backdropClick)=\"close()\"\n (attach)=\"onAttached()\"\n (detach)=\"close()\">\n\n <div #panel\n class=\"mc-tree-select__panel {{ getPanelTheme() }}\"\n [ngClass]=\"panelClass\"\n [style.transformOrigin]=\"transformOrigin\"\n [style.font-size.px]=\"triggerFontSize\"\n (keydown)=\"handleKeydown($event)\">\n\n <div *ngIf=\"search\" class=\"mc-select__search-container\">\n <ng-content select=\"[mcSelectSearch]\"></ng-content>\n </div>\n\n <div *ngIf=\"isEmptySearchResult\" class=\"mc-select__no-options-message\">\n <ng-content select=\"[mc-select-search-empty-result]\"></ng-content>\n </div>\n\n <div #optionsContainer\n class=\"mc-tree-select__content mc-scrollbar\"\n [@fadeInContent]=\"'showing'\"\n (@fadeInContent.done)=\"panelDoneAnimatingStream.next($event.toState)\">\n <ng-content select=\"mc-tree-selection\"></ng-content>\n </div>\n\n <ng-content select=\"mc-tree-select-footer,[mc-tree-select-footer],[mc-tree-selection-footer]\"></ng-content>\n </div>\n</ng-template>\n", styles: ["@keyframes mc-progress{0%{background-position:0 0}to{background-position:29px 0}}.mc-progress{position:relative}.mc-progress:after{content:\"\";position:absolute;border-radius:inherit;inset:0;background:linear-gradient(135deg,rgba(0,0,0,.05) 10px,transparent 10px,transparent 20px,rgba(0,0,0,.05) 20px,rgba(0,0,0,.05) 30px,transparent 30px) repeat;background-size:29px 29px;animation:mc-progress 1s linear infinite}.mc-group{display:flex;flex-direction:row}.mc-group .mc-group_justified>.mc-group-item{width:100%}.mc-group .mc-group-item+.mc-group-item{margin-left:calc(-1 * var(--mc-button-size-border-width, 1px))}.mc-group>.mc-group-item:first-child:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.mc-group>.mc-group-item:first-child:not(:last-child)>.mc-form-field__container{border-bottom-right-radius:0;border-top-right-radius:0}.mc-group>.mc-group-item:last-child:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.mc-group>.mc-group-item:last-child:not(:first-child)>.mc-form-field__container{border-bottom-left-radius:0;border-top-left-radius:0}.mc-group>.mc-group-item:not(:first-child):not(:last-child){border-radius:0}.mc-group>.mc-group-item:not(:first-child):not(:last-child)>.mc-form-field__container{border-radius:0}.mc-vertical-group{display:flex;flex-direction:column}.mc-vertical-group>.mc-group-item:first-child:not(:last-child){border-bottom-right-radius:0;border-bottom-left-radius:0;border-top-right-radius:var(--mc-button-size-border-radius, 4px)}.mc-vertical-group>.mc-group-item:first-child:not(:last-child)>.mc-form-field__container{border-bottom-right-radius:0;border-bottom-left-radius:0}.mc-vertical-group>.mc-group-item:last-child:not(:first-child){border-top-right-radius:0;border-top-left-radius:0;border-bottom-left-radius:var(--mc-button-size-border-radius, 4px)}.mc-vertical-group>.mc-group-item:last-child:not(:first-child)>.mc-form-field__container{border-top-right-radius:0;border-top-left-radius:0}.mc-vertical-group>.mc-group-item:not(:first-child):not(:last-child){border-radius:0}.mc-vertical-group>.mc-group-item:not(:first-child):not(:last-child)>.mc-form-field__container{border-radius:0}.mc-vertical-group .mc-group-item+.mc-group-item{margin-top:calc(-1 * var(--mc-button-size-border-width, 1px))}.mc-no-select{-webkit-touch-callout:none;-webkit-user-select:none;user-select:none}.mc-tree-select{box-sizing:border-box;display:inline-block;width:100%;outline:none}.mc-tree-select.mc-disabled .mc-tree-select__trigger{-webkit-user-select:none;user-select:none;cursor:default}.mc-tree-select__trigger{display:flex;box-sizing:border-box;position:relative;height:var(--mc-form-field-size-height, 32px);cursor:pointer;padding-left:calc(var(--mc-select-size-left-padding, 12px) - var(--mc-form-field-size-border-width, 1px));padding-right:calc(var(--mc-select-size-right-padding, 6px) - var(--mc-form-field-size-border-width, 1px))}.mc-tree-select__trigger.mc-tree-select__trigger_multiple{padding-left:calc(var(--mc-select-size-left-padding-multiple, 12px) - var(--mc-form-field-size-border-width, 1px))}.mc-tree-select__trigger.mc-tree-select__trigger_multiple .mc-tree-select__placeholder{margin-left:8px}.mc-tree-select__trigger.mc-tree-select__trigger_multiple .mc-tag.mc-disabled .mc-tag__text{margin-right:7px}.mc-tree-select__matcher{display:flex;align-items:center;width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mc-tree-select__matcher>span{width:100%}.mc-tree-select__multiple-matcher{display:flex;width:100%}.mc-tree-select__match-list{display:flex;flex-wrap:wrap;overflow:hidden;max-height:calc(var(--mc-form-field-size-height, 32px) - var(--mc-form-field-size-border-width, 1px) * 2)}.mc-tree-select__match-list .mc-tag{margin-right:4px}.mc-tree-select__match-container{display:flex;flex-direction:row;justify-content:space-between;width:100%}.mc-tree-select__match-container .mc-tree-select__match-hidden-text{flex:0 0 70px;align-self:center;padding:0 8px;text-align:right}.mc-tree-select__match-item{display:flex;border:1px solid transparent;border-radius:3px;padding-left:7px;margin-right:4px;max-width:100%}.mc-tree-select__arrow-wrapper{display:flex;align-self:center}.mc-form-field-appearance-fill .mc-tree-select__arrow-wrapper,.mc-form-field-appearance-standard .mc-tree-select__arrow-wrapper{transform:translateY(-50%)}.mc-form-field-appearance-outline .mc-tree-select__arrow-wrapper{transform:translateY(-25%)}.mc-tree-select__panel{min-width:100%;max-width:var(--mc-select-panel-size-max-width, 640px);border-width:var(--mc-select-panel-size-border-width, 1px);border-style:solid;border-bottom-left-radius:var(--mc-select-panel-size-border-radius, 4px);border-bottom-right-radius:var(--mc-select-panel-size-border-radius, 4px)}.mc-tree-select__panel .mc-optgroup-label,.mc-tree-select__panel .mc-tree-select-option{font-size:inherit;line-height:var(--mc-option-size-height, 32px);height:var(--mc-option-size-height, 32px)}.mc-tree-select__panel .mc-tree-select__footer{display:flex;align-items:center;box-sizing:border-box;padding:4px 12px;border-top-width:1px;border-top-style:solid;min-height:var(--mc-list-size-footer-min-height, 48px)}.mc-tree-select__content{max-height:var(--mc-select-panel-size-max-height, 232px);overflow:auto}.mc-tree-select__content .mc-tree-selection{height:100%}.mc-form-field-type-select:not(.mc-disabled) .mc-form-field-flex{cursor:pointer}.mc-select__no-options-message{display:flex;flex-direction:row;align-items:center;box-sizing:border-box;position:relative;max-width:100%;height:var(--mc-option-size-height, 32px);cursor:default;outline:none;padding-left:var(--mc-option-size-horizontal-padding, 12px);padding-right:var(--mc-option-size-horizontal-padding, 12px)}.mc-select__search-container{border-bottom-width:1px;border-bottom-style:solid}\n"], dependencies: [{ kind: "directive", type: i6.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i6.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i6.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i6.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i6.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: i6.NgSwitchDefault, selector: "[ngSwitchDefault]" }, { kind: "directive", type: i1.CdkConnectedOverlay, selector: "[cdk-connected-overlay], [connected-overlay], [cdkConnectedOverlay]", inputs: ["cdkConnectedOverlayOrigin", "cdkConnectedOverlayPositions", "cdkConnectedOverlayPositionStrategy", "cdkConnectedOverlayOffsetX", "cdkConnectedOverlayOffsetY", "cdkConnectedOverlayWidth", "cdkConnectedOverlayHeight", "cdkConnectedOverlayMinWidth", "cdkConnectedOverlayMinHeight", "cdkConnectedOverlayBackdropClass", "cdkConnectedOverlayPanelClass", "cdkConnectedOverlayViewportMargin", "cdkConnectedOverlayScrollStrategy", "cdkConnectedOverlayOpen", "cdkConnectedOverlayDisableClose", "cdkConnectedOverlayTransformOriginOn", "cdkConnectedOverlayHasBackdrop", "cdkConnectedOverlayLockPosition", "cdkConnectedOverlayFlexibleDimensions", "cdkConnectedOverlayGrowAfterOpen", "cdkConnectedOverlayPush"], outputs: ["backdropClick", "positionChange", "attach", "detach", "overlayKeydown", "overlayOutsideClick"], exportAs: ["cdkConnectedOverlay"] }, { kind: "directive", type: i1.CdkOverlayOrigin, selector: "[cdk-overlay-origin], [overlay-origin], [cdkOverlayOrigin]", exportAs: ["cdkOverlayOrigin"] }, { kind: "component", type: i7.McIcon, selector: "[mc-icon]", inputs: ["color"] }, { kind: "directive", type: i7.McIconCSSStyler, selector: "[mc-icon]" }, { kind: "component", type: i8.McTag, selector: "mc-tag, [mc-tag], mc-basic-tag, [mc-basic-tag]", inputs: ["color", "selected", "value", "selectable", "removable", "tabindex", "disabled"], outputs: ["selectionChange", "destroyed", "removed"], exportAs: ["mcTag"] }, { kind: "directive", type: i8.McTagRemove, selector: "[mcTagRemove]" }], animations: [
|
838
|
-
mcSelectAnimations.transformPanel,
|
839
|
-
mcSelectAnimations.fadeInContent
|
840
|
-
], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
841
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: McTreeSelect, decorators: [{
|
842
|
-
type: Component,
|
843
|
-
args: [{ selector: 'mc-tree-select', exportAs: 'mcTreeSelect', inputs: ['disabled', 'tabIndex'], encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, host: {
|
844
|
-
class: 'mc-tree-select',
|
845
|
-
'[class.mc-disabled]': 'disabled',
|
846
|
-
'[class.mc-invalid]': 'errorState',
|
847
|
-
'[attr.id]': 'id',
|
848
|
-
'[attr.tabindex]': 'tabIndex',
|
849
|
-
'[attr.disabled]': 'disabled || null',
|
850
|
-
'(click)': 'toggle()',
|
851
|
-
'(keydown)': 'handleKeydown($event)',
|
852
|
-
'(focus)': 'onFocus()',
|
853
|
-
'(blur)': 'onBlur()',
|
854
|
-
'(window:resize)': 'calculateHiddenItems()'
|
855
|
-
}, animations: [
|
856
|
-
mcSelectAnimations.transformPanel,
|
857
|
-
mcSelectAnimations.fadeInContent
|
858
|
-
], providers: [
|
859
|
-
{ provide: McFormFieldControl, useExisting: McTreeSelect },
|
860
|
-
{ provide: McTree, useExisting: McTreeSelect }
|
861
|
-
], template: "<div cdk-overlay-origin\n class=\"mc-tree-select__trigger\"\n [class.mc-tree-select__trigger_multiple]=\"multiple\"\n #origin=\"cdkOverlayOrigin\"\n #trigger>\n <div class=\"mc-tree-select__matcher\" [ngSwitch]=\"empty\">\n <span class=\"mc-tree-select__placeholder\" *ngSwitchCase=\"true\">{{ placeholder || '\\u00A0' }}</span>\n <span *ngSwitchCase=\"false\" [ngSwitch]=\"!!customTrigger\">\n <div *ngSwitchDefault [ngSwitch]=\"multiple\" class=\"mc-tree-select__match-container\">\n <span *ngSwitchCase=\"false\" class=\"mc-tree-select__matcher-text\">{{ triggerValue }}</span>\n <div *ngSwitchCase=\"true\" class=\"mc-tree-select__multiple-matcher\">\n <div class=\"mc-tree-select__match-list\">\n <mc-tag *ngFor=\"let triggerValue of triggerValues\"\n [selectable]=\"false\"\n [disabled]=\"triggerValue.disabled || disabled\"\n [class.mc-error]=\"errorState\">\n\n {{ triggerValue.viewValue }}\n <i mc-icon=\"mc-close-S_16\" mcTagRemove\n *ngIf=\"!triggerValue.disabled && !disabled\"\n (click)=\"onRemoveSelectedOption(triggerValue, $event)\">\n </i>\n </mc-tag>\n </div>\n <div class=\"mc-tree-select__match-hidden-text\" [style.display]=\"hiddenItems > 0 ? 'block' : 'none'\">\n {{ hiddenItemsTextFormatter(hiddenItemsText, hiddenItems) }}\n </div>\n </div>\n </div>\n <ng-content select=\"mc-tree-select-trigger\" *ngSwitchCase=\"true\"></ng-content>\n </span>\n </div>\n\n <div class=\"mc-select__cleaner\" *ngIf=\"canShowCleaner\" (click)=\"clearValue($event)\">\n <ng-content select=\"mc-cleaner\"></ng-content>\n </div>\n\n <div class=\"mc-tree-select__arrow-wrapper\">\n <i class=\"mc-tree-select__arrow\" mc-icon=\"mc-angle-down-S_16\"></i>\n </div>\n</div>\n\n<ng-template\n cdk-connected-overlay\n cdkConnectedOverlayLockPosition\n [cdkConnectedOverlayHasBackdrop]=\"hasBackdrop\"\n [cdkConnectedOverlayBackdropClass]=\"backdropClass\"\n [cdkConnectedOverlayScrollStrategy]=\"scrollStrategy\"\n [cdkConnectedOverlayOrigin]=\"origin\"\n [cdkConnectedOverlayOpen]=\"panelOpen\"\n [cdkConnectedOverlayPositions]=\"positions\"\n [cdkConnectedOverlayMinWidth]=\"triggerRect?.width!\"\n [cdkConnectedOverlayOffsetY]=\"offsetY\"\n (backdropClick)=\"close()\"\n (attach)=\"onAttached()\"\n (detach)=\"close()\">\n\n <div #panel\n class=\"mc-tree-select__panel {{ getPanelTheme() }}\"\n [ngClass]=\"panelClass\"\n [style.transformOrigin]=\"transformOrigin\"\n [style.font-size.px]=\"triggerFontSize\"\n (keydown)=\"handleKeydown($event)\">\n\n <div *ngIf=\"search\" class=\"mc-select__search-container\">\n <ng-content select=\"[mcSelectSearch]\"></ng-content>\n </div>\n\n <div *ngIf=\"isEmptySearchResult\" class=\"mc-select__no-options-message\">\n <ng-content select=\"[mc-select-search-empty-result]\"></ng-content>\n </div>\n\n <div #optionsContainer\n class=\"mc-tree-select__content mc-scrollbar\"\n [@fadeInContent]=\"'showing'\"\n (@fadeInContent.done)=\"panelDoneAnimatingStream.next($event.toState)\">\n <ng-content select=\"mc-tree-selection\"></ng-content>\n </div>\n\n <ng-content select=\"mc-tree-select-footer,[mc-tree-select-footer],[mc-tree-selection-footer]\"></ng-content>\n </div>\n</ng-template>\n", styles: ["@keyframes mc-progress{0%{background-position:0 0}to{background-position:29px 0}}.mc-progress{position:relative}.mc-progress:after{content:\"\";position:absolute;border-radius:inherit;inset:0;background:linear-gradient(135deg,rgba(0,0,0,.05) 10px,transparent 10px,transparent 20px,rgba(0,0,0,.05) 20px,rgba(0,0,0,.05) 30px,transparent 30px) repeat;background-size:29px 29px;animation:mc-progress 1s linear infinite}.mc-group{display:flex;flex-direction:row}.mc-group .mc-group_justified>.mc-group-item{width:100%}.mc-group .mc-group-item+.mc-group-item{margin-left:calc(-1 * var(--mc-button-size-border-width, 1px))}.mc-group>.mc-group-item:first-child:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.mc-group>.mc-group-item:first-child:not(:last-child)>.mc-form-field__container{border-bottom-right-radius:0;border-top-right-radius:0}.mc-group>.mc-group-item:last-child:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.mc-group>.mc-group-item:last-child:not(:first-child)>.mc-form-field__container{border-bottom-left-radius:0;border-top-left-radius:0}.mc-group>.mc-group-item:not(:first-child):not(:last-child){border-radius:0}.mc-group>.mc-group-item:not(:first-child):not(:last-child)>.mc-form-field__container{border-radius:0}.mc-vertical-group{display:flex;flex-direction:column}.mc-vertical-group>.mc-group-item:first-child:not(:last-child){border-bottom-right-radius:0;border-bottom-left-radius:0;border-top-right-radius:var(--mc-button-size-border-radius, 4px)}.mc-vertical-group>.mc-group-item:first-child:not(:last-child)>.mc-form-field__container{border-bottom-right-radius:0;border-bottom-left-radius:0}.mc-vertical-group>.mc-group-item:last-child:not(:first-child){border-top-right-radius:0;border-top-left-radius:0;border-bottom-left-radius:var(--mc-button-size-border-radius, 4px)}.mc-vertical-group>.mc-group-item:last-child:not(:first-child)>.mc-form-field__container{border-top-right-radius:0;border-top-left-radius:0}.mc-vertical-group>.mc-group-item:not(:first-child):not(:last-child){border-radius:0}.mc-vertical-group>.mc-group-item:not(:first-child):not(:last-child)>.mc-form-field__container{border-radius:0}.mc-vertical-group .mc-group-item+.mc-group-item{margin-top:calc(-1 * var(--mc-button-size-border-width, 1px))}.mc-no-select{-webkit-touch-callout:none;-webkit-user-select:none;user-select:none}.mc-tree-select{box-sizing:border-box;display:inline-block;width:100%;outline:none}.mc-tree-select.mc-disabled .mc-tree-select__trigger{-webkit-user-select:none;user-select:none;cursor:default}.mc-tree-select__trigger{display:flex;box-sizing:border-box;position:relative;height:var(--mc-form-field-size-height, 32px);cursor:pointer;padding-left:calc(var(--mc-select-size-left-padding, 12px) - var(--mc-form-field-size-border-width, 1px));padding-right:calc(var(--mc-select-size-right-padding, 6px) - var(--mc-form-field-size-border-width, 1px))}.mc-tree-select__trigger.mc-tree-select__trigger_multiple{padding-left:calc(var(--mc-select-size-left-padding-multiple, 12px) - var(--mc-form-field-size-border-width, 1px))}.mc-tree-select__trigger.mc-tree-select__trigger_multiple .mc-tree-select__placeholder{margin-left:8px}.mc-tree-select__trigger.mc-tree-select__trigger_multiple .mc-tag.mc-disabled .mc-tag__text{margin-right:7px}.mc-tree-select__matcher{display:flex;align-items:center;width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mc-tree-select__matcher>span{width:100%}.mc-tree-select__multiple-matcher{display:flex;width:100%}.mc-tree-select__match-list{display:flex;flex-wrap:wrap;overflow:hidden;max-height:calc(var(--mc-form-field-size-height, 32px) - var(--mc-form-field-size-border-width, 1px) * 2)}.mc-tree-select__match-list .mc-tag{margin-right:4px}.mc-tree-select__match-container{display:flex;flex-direction:row;justify-content:space-between;width:100%}.mc-tree-select__match-container .mc-tree-select__match-hidden-text{flex:0 0 70px;align-self:center;padding:0 8px;text-align:right}.mc-tree-select__match-item{display:flex;border:1px solid transparent;border-radius:3px;padding-left:7px;margin-right:4px;max-width:100%}.mc-tree-select__arrow-wrapper{display:flex;align-self:center}.mc-form-field-appearance-fill .mc-tree-select__arrow-wrapper,.mc-form-field-appearance-standard .mc-tree-select__arrow-wrapper{transform:translateY(-50%)}.mc-form-field-appearance-outline .mc-tree-select__arrow-wrapper{transform:translateY(-25%)}.mc-tree-select__panel{min-width:100%;max-width:var(--mc-select-panel-size-max-width, 640px);border-width:var(--mc-select-panel-size-border-width, 1px);border-style:solid;border-bottom-left-radius:var(--mc-select-panel-size-border-radius, 4px);border-bottom-right-radius:var(--mc-select-panel-size-border-radius, 4px)}.mc-tree-select__panel .mc-optgroup-label,.mc-tree-select__panel .mc-tree-select-option{font-size:inherit;line-height:var(--mc-option-size-height, 32px);height:var(--mc-option-size-height, 32px)}.mc-tree-select__panel .mc-tree-select__footer{display:flex;align-items:center;box-sizing:border-box;padding:4px 12px;border-top-width:1px;border-top-style:solid;min-height:var(--mc-list-size-footer-min-height, 48px)}.mc-tree-select__content{max-height:var(--mc-select-panel-size-max-height, 232px);overflow:auto}.mc-tree-select__content .mc-tree-selection{height:100%}.mc-form-field-type-select:not(.mc-disabled) .mc-form-field-flex{cursor:pointer}.mc-select__no-options-message{display:flex;flex-direction:row;align-items:center;box-sizing:border-box;position:relative;max-width:100%;height:var(--mc-option-size-height, 32px);cursor:default;outline:none;padding-left:var(--mc-option-size-horizontal-padding, 12px);padding-right:var(--mc-option-size-horizontal-padding, 12px)}.mc-select__search-container{border-bottom-width:1px;border-bottom-style:solid}\n"] }]
|
862
|
-
}], ctorParameters: function () {
|
863
|
-
return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i1.ViewportRuler }, { type: i0.NgZone }, { type: i0.Renderer2 }, { type: i2.ErrorStateMatcher }, { type: undefined, decorators: [{
|
864
|
-
type: Inject,
|
865
|
-
args: [MC_SELECT_SCROLL_STRATEGY]
|
866
|
-
}] }, { type: i3.Directionality, decorators: [{
|
867
|
-
type: Optional
|
868
|
-
}] }, { type: i4.NgForm, decorators: [{
|
869
|
-
type: Optional
|
870
|
-
}] }, { type: i4.FormGroupDirective, decorators: [{
|
871
|
-
type: Optional
|
872
|
-
}] }, { type: i5.McFormField, decorators: [{
|
873
|
-
type: Optional
|
874
|
-
}] }, { type: i4.NgControl, decorators: [{
|
875
|
-
type: Optional
|
876
|
-
}, {
|
877
|
-
type: Self
|
878
|
-
}] }];
|
879
|
-
}, propDecorators: { trigger: [{
|
880
|
-
type: ViewChild,
|
881
|
-
args: ['trigger', { static: false }]
|
882
|
-
}], panel: [{
|
883
|
-
type: ViewChild,
|
884
|
-
args: ['panel', { static: false }]
|
885
|
-
}], overlayDir: [{
|
886
|
-
type: ViewChild,
|
887
|
-
args: [CdkConnectedOverlay, { static: false }]
|
888
|
-
}], tags: [{
|
889
|
-
type: ViewChildren,
|
890
|
-
args: [McTag]
|
891
|
-
}], cleaner: [{
|
892
|
-
type: ContentChild,
|
893
|
-
args: ['mcSelectCleaner', { static: true }]
|
894
|
-
}], customTrigger: [{
|
895
|
-
type: ContentChild,
|
896
|
-
args: [McTreeSelectTrigger, { static: false }]
|
897
|
-
}], tree: [{
|
898
|
-
type: ContentChild,
|
899
|
-
args: [McTreeSelection, { static: false }]
|
900
|
-
}], search: [{
|
901
|
-
type: ContentChild,
|
902
|
-
args: [McSelectSearch, { static: false }]
|
903
|
-
}], hiddenItemsText: [{
|
904
|
-
type: Input
|
905
|
-
}], openedChange: [{
|
906
|
-
type: Output
|
907
|
-
}], openedStream: [{
|
908
|
-
type: Output,
|
909
|
-
args: ['opened']
|
910
|
-
}], closedStream: [{
|
911
|
-
type: Output,
|
912
|
-
args: ['closed']
|
913
|
-
}], selectionChange: [{
|
914
|
-
type: Output
|
915
|
-
}], valueChange: [{
|
916
|
-
type: Output
|
917
|
-
}], panelClass: [{
|
918
|
-
type: Input
|
919
|
-
}], backdropClass: [{
|
920
|
-
type: Input
|
921
|
-
}], errorStateMatcher: [{
|
922
|
-
type: Input
|
923
|
-
}], sortComparator: [{
|
924
|
-
type: Input
|
925
|
-
}], placeholder: [{
|
926
|
-
type: Input
|
927
|
-
}], required: [{
|
928
|
-
type: Input
|
929
|
-
}], multiple: [{
|
930
|
-
type: Input
|
931
|
-
}], autoSelect: [{
|
932
|
-
type: Input
|
933
|
-
}], compareWith: [{
|
934
|
-
type: Input
|
935
|
-
}], id: [{
|
936
|
-
type: Input
|
937
|
-
}], hasBackdrop: [{
|
938
|
-
type: Input
|
939
|
-
}], hiddenItemsTextFormatter: [{
|
940
|
-
type: Input
|
941
|
-
}] } });
|
942
|
-
|
943
|
-
class McTreeSelectModule {
|
944
|
-
}
|
945
|
-
/** @nocollapse */ McTreeSelectModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: McTreeSelectModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
946
|
-
/** @nocollapse */ McTreeSelectModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: McTreeSelectModule, declarations: [McTreeSelect, McTreeSelectTrigger, McTreeSelectFooter], imports: [CommonModule,
|
947
|
-
OverlayModule,
|
948
|
-
McTreeModule,
|
949
|
-
McIconModule,
|
950
|
-
McTagsModule,
|
951
|
-
McPseudoCheckboxModule,
|
952
|
-
McSelectModule], exports: [McTreeSelect, McTreeSelectTrigger, McTreeSelectFooter, CommonModule] });
|
953
|
-
/** @nocollapse */ McTreeSelectModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: McTreeSelectModule, providers: [MC_SELECT_SCROLL_STRATEGY_PROVIDER], imports: [CommonModule,
|
954
|
-
OverlayModule,
|
955
|
-
McTreeModule,
|
956
|
-
McIconModule,
|
957
|
-
McTagsModule,
|
958
|
-
McPseudoCheckboxModule,
|
959
|
-
McSelectModule, CommonModule] });
|
960
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: McTreeSelectModule, decorators: [{
|
961
|
-
type: NgModule,
|
962
|
-
args: [{
|
963
|
-
imports: [
|
964
|
-
CommonModule,
|
965
|
-
OverlayModule,
|
966
|
-
McTreeModule,
|
967
|
-
McIconModule,
|
968
|
-
McTagsModule,
|
969
|
-
McPseudoCheckboxModule,
|
970
|
-
McSelectModule
|
971
|
-
],
|
972
|
-
exports: [McTreeSelect, McTreeSelectTrigger, McTreeSelectFooter, CommonModule],
|
973
|
-
declarations: [McTreeSelect, McTreeSelectTrigger, McTreeSelectFooter],
|
974
|
-
providers: [MC_SELECT_SCROLL_STRATEGY_PROVIDER]
|
975
|
-
}]
|
976
|
-
}] });
|
977
|
-
|
978
|
-
/**
|
979
|
-
* Generated bundle index. Do not edit.
|
980
|
-
*/
|
981
|
-
|
982
|
-
export { McTreeSelect, McTreeSelectChange, McTreeSelectFooter, McTreeSelectModule, McTreeSelectTrigger };
|
983
|
-
//# sourceMappingURL=ptsecurity-mosaic-tree-select.mjs.map
|