@ptsecurity/mosaic 15.6.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 +19 -0
- package/_visual.scss +2 -0
- package/autocomplete/autocomplete-trigger.directive.d.ts +6 -16
- package/autocomplete/autocomplete.component.d.ts +1 -1
- package/button/button.component.d.ts +1 -1
- package/button-toggle/button-toggle.component.d.ts +3 -3
- package/card/card.component.d.ts +1 -1
- package/checkbox/_checkbox-theme.scss +4 -0
- package/checkbox/checkbox-config.d.ts +1 -1
- package/checkbox/checkbox.d.ts +1 -1
- 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/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/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/_theming.scss +1 -0
- 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.component.d.ts +1 -1
- 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 +4 -4
- 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/{esm2020 → esm2022}/form-field/password-hint.mjs +9 -9
- 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 +7 -7
- 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-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 +598 -222
- 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 +80 -80
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-form-field.mjs.map +1 -1
- 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 +86 -86
- 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 +184 -176
- 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 +78 -78
- 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 +131 -131
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-tags.mjs.map +1 -1
- 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/{fesm2020 → fesm2022}/ptsecurity-mosaic-timezone.mjs +53 -53
- 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 +122 -122
- package/fesm2022/ptsecurity-mosaic-tree-select.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/ptsecurity-mosaic-tree.mjs +202 -198
- package/fesm2022/ptsecurity-mosaic-tree.mjs.map +1 -0
- 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 +4 -0
- package/form-field/form-field.d.ts +1 -1
- package/form-field/hint.d.ts +1 -1
- package/form-field/password-hint.d.ts +1 -1
- package/icon/icon.component.d.ts +1 -1
- 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.component.d.ts +1 -1
- package/list/list-selection.component.d.ts +2 -2
- package/loader-overlay/loader-overlay.component.d.ts +1 -1
- package/loader-overlay/loader-overlay.scss +3 -0
- package/markdown/markdown.component.d.ts +1 -1
- 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-item.component.d.ts +3 -3
- package/navbar/navbar.component.d.ts +7 -4
- package/navbar/vertical-navbar.component.d.ts +5 -3
- package/package.json +149 -239
- 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/prebuilt-visual/default-visual.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 +4 -0
- package/radio/radio.component.d.ts +2 -2
- package/select/select.component.d.ts +12 -9
- package/select/select.scss +1 -1
- package/sidebar/sidebar.component.d.ts +3 -3
- package/sidepanel/sidepanel-directives.d.ts +2 -2
- package/splitter/splitter.component.d.ts +3 -3
- 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-input.d.ts +1 -1
- package/tags/tag-list.component.d.ts +1 -1
- package/tags/tag.component.d.ts +1 -1
- package/textarea/textarea.component.d.ts +1 -1
- package/timepicker/timepicker.directive.d.ts +1 -1
- package/timezone/timezone-option.component.d.ts +1 -1
- package/toast/toast.type.d.ts +1 -1
- package/toggle/toggle.component.d.ts +2 -2
- package/tooltip/tooltip.component.d.ts +3 -3
- 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.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 -267
- 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 -606
- 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 -457
- 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-input.mjs +0 -250
- package/esm2020/tags/tag-list.component.mjs +0 -718
- 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 -300
- 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 -772
- 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 -1055
- 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 -481
- 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 -1397
- 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 -1816
- 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-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-textarea.mjs.map +0 -1
- 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-default-options.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,708 +0,0 @@
|
|
1
|
-
import { A11yModule } from '@angular/cdk/a11y';
|
2
|
-
import { PlatformModule } from '@angular/cdk/platform';
|
3
|
-
import { CommonModule } from '@angular/common';
|
4
|
-
import * as i0 from '@angular/core';
|
5
|
-
import { forwardRef, EventEmitter, Directive, Optional, Input, Output, NgModule } from '@angular/core';
|
6
|
-
import { NG_VALUE_ACCESSOR, NG_VALIDATORS, Validators, FormsModule } from '@angular/forms';
|
7
|
-
import { coerceBooleanProperty } from '@angular/cdk/coercion';
|
8
|
-
import { isLetterKey, hasModifierKey, isVerticalMovement, isHorizontalMovement, DELETE, BACKSPACE, TAB, SPACE, HOME, PAGE_UP, END, PAGE_DOWN, UP_ARROW, DOWN_ARROW, LEFT_ARROW, RIGHT_ARROW } from '@ptsecurity/cdk/keycodes';
|
9
|
-
import * as i1 from '@ptsecurity/mosaic/core';
|
10
|
-
import { validationTooltipShowDelay, validationTooltipHideDelay } from '@ptsecurity/mosaic/core';
|
11
|
-
import { McFormFieldControl } from '@ptsecurity/mosaic/form-field';
|
12
|
-
import { Subject, noop } from 'rxjs';
|
13
|
-
|
14
|
-
// tslint:disable:naming-convention
|
15
|
-
var TimeParts;
|
16
|
-
(function (TimeParts) {
|
17
|
-
TimeParts[TimeParts["hours"] = 0] = "hours";
|
18
|
-
TimeParts[TimeParts["minutes"] = 1] = "minutes";
|
19
|
-
TimeParts[TimeParts["seconds"] = 2] = "seconds";
|
20
|
-
})(TimeParts || (TimeParts = {}));
|
21
|
-
var TimeFormats;
|
22
|
-
(function (TimeFormats) {
|
23
|
-
TimeFormats["HHmmss"] = "HH:mm:ss";
|
24
|
-
TimeFormats["HHmm"] = "HH:mm";
|
25
|
-
})(TimeFormats || (TimeFormats = {}));
|
26
|
-
const TIMEFORMAT_PLACEHOLDERS = {
|
27
|
-
[TimeFormats.HHmmss]: 'чч:мм:сс',
|
28
|
-
[TimeFormats.HHmm]: 'чч:мм'
|
29
|
-
};
|
30
|
-
const DEFAULT_TIME_FORMAT = TimeFormats.HHmm;
|
31
|
-
const HOURS_MINUTES_SECONDS_REGEXP = /^([0-1][0-9]|2[0-3]):?([0-5][0-9]):?([0-5][0-9])?$/;
|
32
|
-
const HOURS_MINUTES_REGEXP = /^([0-1][0-9]|2[0-3]):?([0-5][0-9])?$/;
|
33
|
-
const HOURS_ONLY_REGEXP = /^([0-1][0-9]|2[0-3]):?$/;
|
34
|
-
const AM_PM_FORMAT_REGEXP = /^([0-1]?[0-9]):([0-5]?[0-9]) ([ap][m]?$)/i;
|
35
|
-
const SECONDS_PER_MINUTE = 59;
|
36
|
-
const MINUTES_PER_HOUR = 59;
|
37
|
-
const HOURS_PER_DAY = 23;
|
38
|
-
|
39
|
-
/** @docs-private */
|
40
|
-
const MC_TIMEPICKER_VALUE_ACCESSOR = {
|
41
|
-
provide: NG_VALUE_ACCESSOR,
|
42
|
-
useExisting: forwardRef(() => McTimepicker),
|
43
|
-
multi: true
|
44
|
-
};
|
45
|
-
/** @docs-private */
|
46
|
-
const MC_TIMEPICKER_VALIDATORS = {
|
47
|
-
provide: NG_VALIDATORS,
|
48
|
-
useExisting: forwardRef(() => McTimepicker),
|
49
|
-
multi: true
|
50
|
-
};
|
51
|
-
let uniqueComponentIdSuffix = 0;
|
52
|
-
const shortFormatSize = 5;
|
53
|
-
const fullFormatSize = 8;
|
54
|
-
class McTimepicker {
|
55
|
-
constructor(elementRef, renderer, dateAdapter) {
|
56
|
-
this.elementRef = elementRef;
|
57
|
-
this.renderer = renderer;
|
58
|
-
this.dateAdapter = dateAdapter;
|
59
|
-
/**
|
60
|
-
* Implemented as part of McFormFieldControl.
|
61
|
-
* @docs-private
|
62
|
-
*/
|
63
|
-
this.stateChanges = new Subject();
|
64
|
-
/**
|
65
|
-
* Implemented as part of McFormFieldControl.
|
66
|
-
* @docs-private
|
67
|
-
*/
|
68
|
-
this.focused = false;
|
69
|
-
/**
|
70
|
-
* Implemented as part of McFormFieldControl.
|
71
|
-
* @docs-private
|
72
|
-
*/
|
73
|
-
this.controlType = 'timepicker';
|
74
|
-
this._placeholder = TIMEFORMAT_PLACEHOLDERS[DEFAULT_TIME_FORMAT];
|
75
|
-
this._format = DEFAULT_TIME_FORMAT;
|
76
|
-
this._min = null;
|
77
|
-
this._max = null;
|
78
|
-
this.incorrectInput = new EventEmitter();
|
79
|
-
this.uid = `mc-timepicker-${uniqueComponentIdSuffix++}`;
|
80
|
-
this.lastValueValid = false;
|
81
|
-
this.defaultPlaceholder = true;
|
82
|
-
this.onInput = () => {
|
83
|
-
const formattedValue = this.formatUserInput(this.viewValue);
|
84
|
-
const newTimeObj = this.getDateFromTimeString(formattedValue);
|
85
|
-
this.lastValueValid = !!newTimeObj;
|
86
|
-
if (!newTimeObj) {
|
87
|
-
if (!this.viewValue) {
|
88
|
-
this.onChange(null);
|
89
|
-
}
|
90
|
-
else {
|
91
|
-
this.control.updateValueAndValidity();
|
92
|
-
}
|
93
|
-
return;
|
94
|
-
}
|
95
|
-
const selectionStart = this.selectionStart;
|
96
|
-
const selectionEnd = this.selectionEnd;
|
97
|
-
this.setViewValue(this.getTimeStringFromDate(newTimeObj, this.format));
|
98
|
-
this.selectionStart = selectionStart;
|
99
|
-
this.selectionEnd = selectionEnd;
|
100
|
-
this.createSelectionOfTimeComponentInInput(selectionStart + 1);
|
101
|
-
this.value = newTimeObj;
|
102
|
-
this.onChange(newTimeObj);
|
103
|
-
this.stateChanges.next();
|
104
|
-
};
|
105
|
-
this.parseValidator = () => {
|
106
|
-
return this.focused ||
|
107
|
-
this.empty ||
|
108
|
-
this.lastValueValid ? null : { mcTimepickerParse: { text: this.viewValue } };
|
109
|
-
};
|
110
|
-
this.minValidator = (control) => {
|
111
|
-
const controlValue = this.getValidDateOrNull(this.dateAdapter.deserialize(control.value));
|
112
|
-
return !this.min || !controlValue || this.dateAdapter.compareDateTime(this.min, controlValue) <= 0 ?
|
113
|
-
null :
|
114
|
-
{ mcTimepickerLowerThenMin: { min: this.min, actual: controlValue } };
|
115
|
-
};
|
116
|
-
this.maxValidator = (control) => {
|
117
|
-
const controlValue = this.getValidDateOrNull(this.dateAdapter.deserialize(control.value));
|
118
|
-
return !this.max || !controlValue || this.dateAdapter.compareDateTime(this.max, controlValue) >= 0 ?
|
119
|
-
null :
|
120
|
-
{ mcTimepickerHigherThenMax: { max: this.max, actual: controlValue } };
|
121
|
-
};
|
122
|
-
// tslint:disable-next-line:no-empty
|
123
|
-
this.validatorOnChange = () => { };
|
124
|
-
if (!this.dateAdapter) {
|
125
|
-
throw Error(`McTimepicker: No provider found for DateAdapter. You must import one of the existing ` +
|
126
|
-
`modules at your application root or provide a custom implementation or use exists ones.`);
|
127
|
-
}
|
128
|
-
this.validator = Validators.compose([this.parseValidator, this.minValidator, this.maxValidator]);
|
129
|
-
this.onChange = noop;
|
130
|
-
// Force setter to be called in case id was not specified.
|
131
|
-
this.id = this.id;
|
132
|
-
}
|
133
|
-
/**
|
134
|
-
* Implemented as part of McFormFieldControl.
|
135
|
-
* @docs-private
|
136
|
-
*/
|
137
|
-
get placeholder() {
|
138
|
-
return this._placeholder;
|
139
|
-
}
|
140
|
-
set placeholder(value) {
|
141
|
-
this._placeholder = value;
|
142
|
-
this.defaultPlaceholder = false;
|
143
|
-
}
|
144
|
-
get disabled() {
|
145
|
-
return this._disabled;
|
146
|
-
}
|
147
|
-
set disabled(value) {
|
148
|
-
this._disabled = coerceBooleanProperty(value);
|
149
|
-
// Browsers may not fire the blur event if the input is disabled too quickly.
|
150
|
-
// Reset from here to ensure that the element doesn't become stuck.
|
151
|
-
if (this.focused) {
|
152
|
-
this.focused = false;
|
153
|
-
}
|
154
|
-
this.stateChanges.next();
|
155
|
-
}
|
156
|
-
get id() {
|
157
|
-
return this._id;
|
158
|
-
}
|
159
|
-
set id(value) {
|
160
|
-
this._id = value || this.uid;
|
161
|
-
}
|
162
|
-
/**
|
163
|
-
* Implemented as part of McFormFieldControl.
|
164
|
-
* @docs-private
|
165
|
-
*/
|
166
|
-
get required() {
|
167
|
-
return this._required;
|
168
|
-
}
|
169
|
-
set required(value) {
|
170
|
-
this._required = coerceBooleanProperty(value);
|
171
|
-
}
|
172
|
-
get format() {
|
173
|
-
return this._format;
|
174
|
-
}
|
175
|
-
set format(formatValue) {
|
176
|
-
this._format = Object
|
177
|
-
.keys(TimeFormats)
|
178
|
-
.map((timeFormatKey) => TimeFormats[timeFormatKey])
|
179
|
-
.indexOf(formatValue) > -1 ? formatValue : DEFAULT_TIME_FORMAT;
|
180
|
-
if (this.defaultPlaceholder) {
|
181
|
-
this._placeholder = TIMEFORMAT_PLACEHOLDERS[this._format];
|
182
|
-
}
|
183
|
-
if (this.value) {
|
184
|
-
this.updateView();
|
185
|
-
}
|
186
|
-
}
|
187
|
-
get min() {
|
188
|
-
return this._min;
|
189
|
-
}
|
190
|
-
set min(value) {
|
191
|
-
this._min = this.getValidDateOrNull(this.dateAdapter.deserialize(value));
|
192
|
-
this.validatorOnChange();
|
193
|
-
}
|
194
|
-
get max() {
|
195
|
-
return this._max;
|
196
|
-
}
|
197
|
-
set max(value) {
|
198
|
-
this._max = this.getValidDateOrNull(this.dateAdapter.deserialize(value));
|
199
|
-
this.validatorOnChange();
|
200
|
-
}
|
201
|
-
get value() {
|
202
|
-
return this._value;
|
203
|
-
}
|
204
|
-
set value(value) {
|
205
|
-
const newValue = this.dateAdapter.deserialize(value);
|
206
|
-
this.lastValueValid = !newValue || this.dateAdapter.isValid(newValue);
|
207
|
-
this._value = this.getValidDateOrNull(newValue);
|
208
|
-
this.updateView();
|
209
|
-
}
|
210
|
-
set mcValidationTooltip(tooltip) {
|
211
|
-
if (!tooltip) {
|
212
|
-
return;
|
213
|
-
}
|
214
|
-
tooltip.enterDelay = validationTooltipShowDelay;
|
215
|
-
tooltip.trigger = 'manual';
|
216
|
-
tooltip.initListeners();
|
217
|
-
this.incorrectInput.subscribe(() => {
|
218
|
-
if (tooltip.isOpen) {
|
219
|
-
return;
|
220
|
-
}
|
221
|
-
tooltip.show();
|
222
|
-
setTimeout(() => tooltip.hide(), validationTooltipHideDelay);
|
223
|
-
});
|
224
|
-
}
|
225
|
-
get hasSelection() {
|
226
|
-
return this.selectionStart !== this.selectionEnd;
|
227
|
-
}
|
228
|
-
get isFullFormat() {
|
229
|
-
return this.format === TimeFormats.HHmmss;
|
230
|
-
}
|
231
|
-
get isShortFormat() {
|
232
|
-
return this.format === TimeFormats.HHmm;
|
233
|
-
}
|
234
|
-
get viewValue() {
|
235
|
-
return this.elementRef.nativeElement.value;
|
236
|
-
}
|
237
|
-
get ngControl() {
|
238
|
-
return this.control;
|
239
|
-
}
|
240
|
-
/**
|
241
|
-
* Implemented as part of McFormFieldControl.
|
242
|
-
* @docs-private
|
243
|
-
*/
|
244
|
-
get empty() {
|
245
|
-
return !this.viewValue && !this.isBadInput();
|
246
|
-
}
|
247
|
-
get selectionStart() {
|
248
|
-
return this.elementRef.nativeElement.selectionStart;
|
249
|
-
}
|
250
|
-
set selectionStart(value) {
|
251
|
-
this.elementRef.nativeElement.selectionStart = value;
|
252
|
-
}
|
253
|
-
get selectionEnd() {
|
254
|
-
return this.elementRef.nativeElement.selectionEnd;
|
255
|
-
}
|
256
|
-
set selectionEnd(value) {
|
257
|
-
this.elementRef.nativeElement.selectionEnd = value;
|
258
|
-
}
|
259
|
-
ngOnDestroy() {
|
260
|
-
this.stateChanges.complete();
|
261
|
-
}
|
262
|
-
getSize() {
|
263
|
-
return this.isFullFormat ? fullFormatSize : shortFormatSize;
|
264
|
-
}
|
265
|
-
focus() {
|
266
|
-
this.elementRef.nativeElement.focus();
|
267
|
-
}
|
268
|
-
focusChanged(isFocused) {
|
269
|
-
if (isFocused !== this.focused) {
|
270
|
-
this.focused = isFocused;
|
271
|
-
this.onTouched();
|
272
|
-
this.stateChanges.next();
|
273
|
-
}
|
274
|
-
}
|
275
|
-
onBlur() {
|
276
|
-
this.focusChanged(false);
|
277
|
-
this.setViewValue(this.formatUserPaste(this.viewValue));
|
278
|
-
this.onInput();
|
279
|
-
}
|
280
|
-
onPaste($event) {
|
281
|
-
$event.preventDefault();
|
282
|
-
const value = this.formatUserPaste($event.clipboardData.getData('text'));
|
283
|
-
const newTimeObj = this.getDateFromTimeString(value);
|
284
|
-
if (!newTimeObj) {
|
285
|
-
return;
|
286
|
-
}
|
287
|
-
this.setViewValue(this.getTimeStringFromDate(newTimeObj, this.format));
|
288
|
-
this.value = newTimeObj;
|
289
|
-
this.onChange(newTimeObj);
|
290
|
-
this.stateChanges.next();
|
291
|
-
}
|
292
|
-
/**
|
293
|
-
* Implemented as part of McFormFieldControl.
|
294
|
-
* @docs-private
|
295
|
-
*/
|
296
|
-
onContainerClick() {
|
297
|
-
this.focus();
|
298
|
-
}
|
299
|
-
onKeyDown(event) {
|
300
|
-
// tslint:disable-next-line: deprecation
|
301
|
-
const keyCode = event.keyCode;
|
302
|
-
if (isLetterKey(event) && !event.ctrlKey && !event.metaKey) {
|
303
|
-
event.preventDefault();
|
304
|
-
this.incorrectInput.emit();
|
305
|
-
}
|
306
|
-
else if ((hasModifierKey(event) && (isVerticalMovement(event) || isHorizontalMovement(event))) ||
|
307
|
-
event.ctrlKey || event.metaKey ||
|
308
|
-
[DELETE, BACKSPACE, TAB].includes(keyCode)) {
|
309
|
-
noop();
|
310
|
-
}
|
311
|
-
else if (keyCode === SPACE) {
|
312
|
-
this.spaceKeyHandler(event);
|
313
|
-
}
|
314
|
-
else if ([HOME, PAGE_UP].includes(keyCode)) {
|
315
|
-
this.createSelectionOfTimeComponentInInput(0);
|
316
|
-
}
|
317
|
-
else if ([END, PAGE_DOWN].includes(keyCode)) {
|
318
|
-
this.createSelectionOfTimeComponentInInput(this.viewValue.length);
|
319
|
-
}
|
320
|
-
else if ([UP_ARROW, DOWN_ARROW].includes(keyCode)) {
|
321
|
-
event.preventDefault();
|
322
|
-
this.verticalArrowKeyHandler(keyCode);
|
323
|
-
}
|
324
|
-
else if ([LEFT_ARROW, RIGHT_ARROW].includes(keyCode)) {
|
325
|
-
this.horizontalArrowKeyHandler(keyCode);
|
326
|
-
}
|
327
|
-
else if (/^\D$/.test(event.key)) {
|
328
|
-
event.preventDefault();
|
329
|
-
const newValue = this.getNewValue(event.key, this.selectionStart);
|
330
|
-
const formattedValue = this.replaceSymbols(newValue);
|
331
|
-
if (newValue !== formattedValue) {
|
332
|
-
this.setViewValue(formattedValue);
|
333
|
-
setTimeout(this.onInput);
|
334
|
-
}
|
335
|
-
else {
|
336
|
-
this.incorrectInput.emit();
|
337
|
-
}
|
338
|
-
}
|
339
|
-
else {
|
340
|
-
setTimeout(this.onInput);
|
341
|
-
}
|
342
|
-
}
|
343
|
-
validate(control) {
|
344
|
-
this.setControl(control);
|
345
|
-
return this.validator ? this.validator(control) : null;
|
346
|
-
}
|
347
|
-
registerOnValidatorChange(fn) {
|
348
|
-
this.validatorOnChange = fn;
|
349
|
-
}
|
350
|
-
writeValue(value) {
|
351
|
-
this.value = value;
|
352
|
-
}
|
353
|
-
registerOnChange(fn) {
|
354
|
-
this.onChange = fn;
|
355
|
-
}
|
356
|
-
registerOnTouched(fn) {
|
357
|
-
this.onTouched = fn;
|
358
|
-
}
|
359
|
-
setDisabledState(isDisabled) {
|
360
|
-
this.disabled = isDisabled;
|
361
|
-
}
|
362
|
-
formatUserPaste(value) {
|
363
|
-
var _a;
|
364
|
-
if (value.match(AM_PM_FORMAT_REGEXP)) {
|
365
|
-
return value;
|
366
|
-
}
|
367
|
-
const match = value.match(/^(\D+)?(?<hours>\d+)?(\D+)?(\D+)?(?<minutes>\d+)?(\D+)?(\D+)?(?<seconds>\d+)?(\D+)?$/);
|
368
|
-
if (!((_a = match === null || match === void 0 ? void 0 : match.groups) === null || _a === void 0 ? void 0 : _a.hours)) {
|
369
|
-
this.setViewValue(value);
|
370
|
-
return value;
|
371
|
-
}
|
372
|
-
return this.replaceNumbers(Object.values(match.groups)
|
373
|
-
// tslint:disable-next-line:no-magic-numbers
|
374
|
-
.map((group) => (group || '').padStart(2, '0'))
|
375
|
-
.join(':'));
|
376
|
-
}
|
377
|
-
formatUserInput(value) {
|
378
|
-
return this.replaceNumbers(this.replaceSymbols(value));
|
379
|
-
}
|
380
|
-
replaceSymbols(value) {
|
381
|
-
let formattedValue = value;
|
382
|
-
const match = value.match(/^(\d\d:){0,2}(?<number>[0-9])(?<symbol>\W)(:\d\d){0,2}$/);
|
383
|
-
if (match === null || match === void 0 ? void 0 : match.groups) {
|
384
|
-
const { number, symbol } = match.groups;
|
385
|
-
formattedValue = value.replace(number + symbol, `0${number}`);
|
386
|
-
}
|
387
|
-
return formattedValue;
|
388
|
-
}
|
389
|
-
replaceNumbers(value) {
|
390
|
-
let formattedValue = value;
|
391
|
-
const match = value.match(/^(?<hours>\d{0,4}):?(?<minutes>\d{0,4}):?(?<seconds>\d{0,4})$/);
|
392
|
-
if (match === null || match === void 0 ? void 0 : match.groups) {
|
393
|
-
const { hours, minutes, seconds } = match.groups;
|
394
|
-
if (hours.length && parseInt(hours) > HOURS_PER_DAY) {
|
395
|
-
formattedValue = formattedValue.replace(hours, HOURS_PER_DAY.toString());
|
396
|
-
}
|
397
|
-
if (minutes.length && parseInt(minutes) > MINUTES_PER_HOUR) {
|
398
|
-
formattedValue = formattedValue.replace(minutes, MINUTES_PER_HOUR.toString());
|
399
|
-
}
|
400
|
-
if (seconds.length && parseInt(seconds) > SECONDS_PER_MINUTE) {
|
401
|
-
formattedValue = formattedValue.replace(seconds, SECONDS_PER_MINUTE.toString());
|
402
|
-
}
|
403
|
-
}
|
404
|
-
return formattedValue;
|
405
|
-
}
|
406
|
-
/** Checks whether the input is invalid based on the native validation. */
|
407
|
-
isBadInput() {
|
408
|
-
const validity = this.elementRef.nativeElement.validity;
|
409
|
-
return validity && validity.badInput;
|
410
|
-
}
|
411
|
-
spaceKeyHandler(event) {
|
412
|
-
event.preventDefault();
|
413
|
-
if (this.selectionStart === this.selectionEnd) {
|
414
|
-
const value = this.getNewValue(event.key, this.selectionStart);
|
415
|
-
const formattedValue = this.replaceSymbols(value);
|
416
|
-
if (value !== formattedValue) {
|
417
|
-
this.setViewValue(formattedValue);
|
418
|
-
setTimeout(this.onInput);
|
419
|
-
}
|
420
|
-
}
|
421
|
-
else if (this.selectionStart !== this.selectionEnd) {
|
422
|
-
let cursorPos = this.selectionStart;
|
423
|
-
const nextDividerPos = this.viewValue.indexOf(':', cursorPos);
|
424
|
-
cursorPos = nextDividerPos ? nextDividerPos + 1 : 0;
|
425
|
-
this.createSelectionOfTimeComponentInInput(cursorPos);
|
426
|
-
}
|
427
|
-
}
|
428
|
-
getNewValue(key, position) {
|
429
|
-
return [this.viewValue.slice(0, position), key, this.viewValue.slice(position)].join('');
|
430
|
-
}
|
431
|
-
verticalArrowKeyHandler(keyCode) {
|
432
|
-
if (!this.value) {
|
433
|
-
return;
|
434
|
-
}
|
435
|
-
let changedTime;
|
436
|
-
const newEditParams = this.getTimeEditMetrics(this.selectionStart);
|
437
|
-
if (keyCode === UP_ARROW) {
|
438
|
-
changedTime = this.incrementTime(this.value, newEditParams.modifiedTimePart);
|
439
|
-
}
|
440
|
-
if (keyCode === DOWN_ARROW) {
|
441
|
-
changedTime = this.decrementTime(this.value, newEditParams.modifiedTimePart);
|
442
|
-
}
|
443
|
-
this.value = changedTime;
|
444
|
-
this.selectionStart = newEditParams.cursorStartPosition;
|
445
|
-
this.selectionEnd = newEditParams.cursorEndPosition;
|
446
|
-
this.onChange(changedTime);
|
447
|
-
this.stateChanges.next();
|
448
|
-
}
|
449
|
-
horizontalArrowKeyHandler(keyCode) {
|
450
|
-
if (!this.value) {
|
451
|
-
return;
|
452
|
-
}
|
453
|
-
let cursorPos = this.selectionStart;
|
454
|
-
if (keyCode === LEFT_ARROW) {
|
455
|
-
cursorPos = cursorPos === 0 ? this.viewValue.length : cursorPos - 1;
|
456
|
-
}
|
457
|
-
else if (keyCode === RIGHT_ARROW) {
|
458
|
-
const nextDividerPos = this.viewValue.indexOf(':', cursorPos);
|
459
|
-
cursorPos = nextDividerPos ? nextDividerPos + 1 : 0;
|
460
|
-
}
|
461
|
-
this.createSelectionOfTimeComponentInInput(cursorPos);
|
462
|
-
}
|
463
|
-
createSelectionOfTimeComponentInInput(cursorPos) {
|
464
|
-
setTimeout(() => {
|
465
|
-
const newEditParams = this.getTimeEditMetrics(cursorPos);
|
466
|
-
this.selectionStart = newEditParams.cursorStartPosition;
|
467
|
-
this.selectionEnd = newEditParams.cursorEndPosition;
|
468
|
-
});
|
469
|
-
}
|
470
|
-
incrementTime(dateVal, whatToIncrement = TimeParts.seconds) {
|
471
|
-
let hours = this.dateAdapter.getHours(dateVal);
|
472
|
-
let minutes = this.dateAdapter.getMinutes(dateVal);
|
473
|
-
let seconds = this.dateAdapter.getSeconds(dateVal);
|
474
|
-
switch (whatToIncrement) {
|
475
|
-
case TimeParts.hours:
|
476
|
-
hours++;
|
477
|
-
break;
|
478
|
-
case TimeParts.minutes:
|
479
|
-
minutes++;
|
480
|
-
break;
|
481
|
-
case TimeParts.seconds:
|
482
|
-
seconds++;
|
483
|
-
break;
|
484
|
-
default:
|
485
|
-
}
|
486
|
-
if (seconds > SECONDS_PER_MINUTE) {
|
487
|
-
seconds = 0;
|
488
|
-
}
|
489
|
-
if (minutes > MINUTES_PER_HOUR) {
|
490
|
-
minutes = 0;
|
491
|
-
}
|
492
|
-
if (hours > HOURS_PER_DAY) {
|
493
|
-
hours = 0;
|
494
|
-
}
|
495
|
-
return this.dateAdapter.createDateTime(this.dateAdapter.getYear(this.value), this.dateAdapter.getMonth(this.value), this.dateAdapter.getDate(this.value), hours, minutes, seconds, this.dateAdapter.getMilliseconds(this.value));
|
496
|
-
}
|
497
|
-
decrementTime(dateVal, whatToDecrement = TimeParts.seconds) {
|
498
|
-
let hours = this.dateAdapter.getHours(dateVal);
|
499
|
-
let minutes = this.dateAdapter.getMinutes(dateVal);
|
500
|
-
let seconds = this.dateAdapter.getSeconds(dateVal);
|
501
|
-
switch (whatToDecrement) {
|
502
|
-
case TimeParts.hours:
|
503
|
-
hours--;
|
504
|
-
break;
|
505
|
-
case TimeParts.minutes:
|
506
|
-
minutes--;
|
507
|
-
break;
|
508
|
-
case TimeParts.seconds:
|
509
|
-
seconds--;
|
510
|
-
break;
|
511
|
-
default:
|
512
|
-
}
|
513
|
-
if (seconds < 0) {
|
514
|
-
seconds = SECONDS_PER_MINUTE;
|
515
|
-
}
|
516
|
-
if (minutes < 0) {
|
517
|
-
minutes = MINUTES_PER_HOUR;
|
518
|
-
}
|
519
|
-
if (hours < 0) {
|
520
|
-
hours = HOURS_PER_DAY;
|
521
|
-
}
|
522
|
-
return this.dateAdapter.createDateTime(this.dateAdapter.getYear(this.value), this.dateAdapter.getMonth(this.value), this.dateAdapter.getDate(this.value), hours, minutes, seconds, this.dateAdapter.getMilliseconds(this.value));
|
523
|
-
}
|
524
|
-
/**
|
525
|
-
* @description Get params for arrow-keys (up/down) time valie edit.
|
526
|
-
* @param cursorPosition Current cursor position in timeString
|
527
|
-
*/
|
528
|
-
getTimeEditMetrics(cursorPosition) {
|
529
|
-
const timeString = this.viewValue;
|
530
|
-
let modifiedTimePart;
|
531
|
-
let cursorStartPosition;
|
532
|
-
let cursorEndPosition;
|
533
|
-
const hoursIndex = 0;
|
534
|
-
const minutesIndex = timeString.indexOf(':', hoursIndex + 1);
|
535
|
-
const secondsIndex = minutesIndex !== -1 ? timeString.indexOf(':', minutesIndex + 1) : -1;
|
536
|
-
if (secondsIndex !== -1 && cursorPosition > secondsIndex) {
|
537
|
-
modifiedTimePart = TimeParts.seconds;
|
538
|
-
cursorStartPosition = secondsIndex + 1;
|
539
|
-
cursorEndPosition = timeString.length;
|
540
|
-
}
|
541
|
-
else if (minutesIndex !== -1 && cursorPosition > minutesIndex) {
|
542
|
-
modifiedTimePart = TimeParts.minutes;
|
543
|
-
cursorStartPosition = minutesIndex + 1;
|
544
|
-
cursorEndPosition = secondsIndex > -1 ? secondsIndex : timeString.length;
|
545
|
-
}
|
546
|
-
else {
|
547
|
-
modifiedTimePart = TimeParts.hours;
|
548
|
-
cursorStartPosition = hoursIndex;
|
549
|
-
cursorEndPosition = minutesIndex !== -1 ? minutesIndex : timeString.length;
|
550
|
-
}
|
551
|
-
return { modifiedTimePart, cursorStartPosition, cursorEndPosition };
|
552
|
-
}
|
553
|
-
/**
|
554
|
-
* @description Create time string for displaying inside input element of UI
|
555
|
-
*/
|
556
|
-
getTimeStringFromDate(value, timeFormat) {
|
557
|
-
if (!value || !this.dateAdapter.isValid(value)) {
|
558
|
-
return '';
|
559
|
-
}
|
560
|
-
return this.dateAdapter.format(value, timeFormat);
|
561
|
-
}
|
562
|
-
getDateFromTimeString(timeString) {
|
563
|
-
if (!timeString) {
|
564
|
-
return null;
|
565
|
-
}
|
566
|
-
const HMS = timeString.match(HOURS_MINUTES_SECONDS_REGEXP);
|
567
|
-
const HM = timeString.match(HOURS_MINUTES_REGEXP);
|
568
|
-
const H = timeString.match(HOURS_ONLY_REGEXP);
|
569
|
-
const amPm = timeString.match(AM_PM_FORMAT_REGEXP);
|
570
|
-
let hours = 0;
|
571
|
-
let minutes = 0;
|
572
|
-
let seconds = 0;
|
573
|
-
// tslint:disable:no-magic-numbers
|
574
|
-
if (amPm) {
|
575
|
-
hours = Number(amPm[1]);
|
576
|
-
minutes = Number(amPm[2]);
|
577
|
-
if (/[p]/i.test(amPm[3]) || (/[a]/i.test(amPm[3]) && hours === 12)) {
|
578
|
-
hours += 12;
|
579
|
-
}
|
580
|
-
}
|
581
|
-
else if (HMS) {
|
582
|
-
hours = Number(HMS[1]);
|
583
|
-
minutes = Number(HMS[2]);
|
584
|
-
seconds = Number(HMS[3]);
|
585
|
-
}
|
586
|
-
else if (HM) {
|
587
|
-
hours = Number(HM[1]);
|
588
|
-
minutes = Number(HM[2]);
|
589
|
-
}
|
590
|
-
else if (H) {
|
591
|
-
hours = Number(H[1]);
|
592
|
-
}
|
593
|
-
else {
|
594
|
-
return null;
|
595
|
-
}
|
596
|
-
// tslint:enable
|
597
|
-
const date = this.value || this.dateAdapter.today();
|
598
|
-
const resultDate = this.dateAdapter.createDateTime(this.dateAdapter.getYear(date), this.dateAdapter.getMonth(date), this.dateAdapter.getDate(date), hours, minutes || 0, seconds || 0, this.dateAdapter.getMilliseconds(date));
|
599
|
-
return this.getValidDateOrNull(resultDate);
|
600
|
-
}
|
601
|
-
getValidDateOrNull(obj) {
|
602
|
-
return (this.dateAdapter.isDateInstance(obj) && this.dateAdapter.isValid(obj)) ? obj : null;
|
603
|
-
}
|
604
|
-
setViewValue(value) {
|
605
|
-
this.renderer.setProperty(this.elementRef.nativeElement, 'value', value);
|
606
|
-
}
|
607
|
-
updateView() {
|
608
|
-
const formattedValue = this.getTimeStringFromDate(this.value, this.format);
|
609
|
-
this.setViewValue(formattedValue);
|
610
|
-
}
|
611
|
-
setControl(control) {
|
612
|
-
if (this.control) {
|
613
|
-
return;
|
614
|
-
}
|
615
|
-
this.control = control;
|
616
|
-
this.control.valueChanges
|
617
|
-
.subscribe((value) => this._value = value);
|
618
|
-
}
|
619
|
-
}
|
620
|
-
/** @nocollapse */ McTimepicker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: McTimepicker, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i1.DateAdapter, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
621
|
-
/** @nocollapse */ McTimepicker.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: McTimepicker, selector: "input[mcTimepicker]", inputs: { placeholder: "placeholder", disabled: "disabled", id: "id", required: "required", format: "format", min: "min", max: "max", value: "value", mcValidationTooltip: "mcValidationTooltip" }, outputs: { incorrectInput: "incorrectInput" }, host: { listeners: { "blur": "onBlur()", "focus": "focusChanged(true)", "paste": "onPaste($event)", "keydown": "onKeyDown($event)" }, properties: { "attr.id": "id", "attr.placeholder": "placeholder", "attr.disabled": "disabled || null", "attr.required": "required", "attr.size": "getSize()", "attr.autocomplete": "\"off\"" }, classAttribute: "mc-input mc-timepicker" }, providers: [
|
622
|
-
MC_TIMEPICKER_VALIDATORS,
|
623
|
-
MC_TIMEPICKER_VALUE_ACCESSOR,
|
624
|
-
{ provide: McFormFieldControl, useExisting: McTimepicker }
|
625
|
-
], exportAs: ["mcTimepicker"], ngImport: i0 });
|
626
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: McTimepicker, decorators: [{
|
627
|
-
type: Directive,
|
628
|
-
args: [{
|
629
|
-
selector: 'input[mcTimepicker]',
|
630
|
-
exportAs: 'mcTimepicker',
|
631
|
-
host: {
|
632
|
-
class: 'mc-input mc-timepicker',
|
633
|
-
// Native input properties that are overwritten by Angular inputs need to be synced with
|
634
|
-
// the native input element. Otherwise property bindings for those don't work.
|
635
|
-
'[attr.id]': 'id',
|
636
|
-
'[attr.placeholder]': 'placeholder',
|
637
|
-
'[attr.disabled]': 'disabled || null',
|
638
|
-
'[attr.required]': 'required',
|
639
|
-
'[attr.size]': 'getSize()',
|
640
|
-
'[attr.autocomplete]': '"off"',
|
641
|
-
'(blur)': 'onBlur()',
|
642
|
-
'(focus)': 'focusChanged(true)',
|
643
|
-
'(paste)': 'onPaste($event)',
|
644
|
-
'(keydown)': 'onKeyDown($event)'
|
645
|
-
},
|
646
|
-
providers: [
|
647
|
-
MC_TIMEPICKER_VALIDATORS,
|
648
|
-
MC_TIMEPICKER_VALUE_ACCESSOR,
|
649
|
-
{ provide: McFormFieldControl, useExisting: McTimepicker }
|
650
|
-
]
|
651
|
-
}]
|
652
|
-
}], ctorParameters: function () {
|
653
|
-
return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i1.DateAdapter, decorators: [{
|
654
|
-
type: Optional
|
655
|
-
}] }];
|
656
|
-
}, propDecorators: { placeholder: [{
|
657
|
-
type: Input
|
658
|
-
}], disabled: [{
|
659
|
-
type: Input
|
660
|
-
}], id: [{
|
661
|
-
type: Input
|
662
|
-
}], required: [{
|
663
|
-
type: Input
|
664
|
-
}], format: [{
|
665
|
-
type: Input
|
666
|
-
}], min: [{
|
667
|
-
type: Input
|
668
|
-
}], max: [{
|
669
|
-
type: Input
|
670
|
-
}], value: [{
|
671
|
-
type: Input
|
672
|
-
}], mcValidationTooltip: [{
|
673
|
-
type: Input
|
674
|
-
}], incorrectInput: [{
|
675
|
-
type: Output
|
676
|
-
}] } });
|
677
|
-
|
678
|
-
class McTimepickerModule {
|
679
|
-
}
|
680
|
-
/** @nocollapse */ McTimepickerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: McTimepickerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
681
|
-
/** @nocollapse */ McTimepickerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: McTimepickerModule, declarations: [McTimepicker], imports: [CommonModule,
|
682
|
-
A11yModule,
|
683
|
-
PlatformModule,
|
684
|
-
FormsModule], exports: [McTimepicker] });
|
685
|
-
/** @nocollapse */ McTimepickerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: McTimepickerModule, imports: [CommonModule,
|
686
|
-
A11yModule,
|
687
|
-
PlatformModule,
|
688
|
-
FormsModule] });
|
689
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: McTimepickerModule, decorators: [{
|
690
|
-
type: NgModule,
|
691
|
-
args: [{
|
692
|
-
imports: [
|
693
|
-
CommonModule,
|
694
|
-
A11yModule,
|
695
|
-
PlatformModule,
|
696
|
-
FormsModule
|
697
|
-
],
|
698
|
-
declarations: [McTimepicker],
|
699
|
-
exports: [McTimepicker]
|
700
|
-
}]
|
701
|
-
}] });
|
702
|
-
|
703
|
-
/**
|
704
|
-
* Generated bundle index. Do not edit.
|
705
|
-
*/
|
706
|
-
|
707
|
-
export { AM_PM_FORMAT_REGEXP, DEFAULT_TIME_FORMAT, HOURS_MINUTES_REGEXP, HOURS_MINUTES_SECONDS_REGEXP, HOURS_ONLY_REGEXP, HOURS_PER_DAY, MC_TIMEPICKER_VALIDATORS, MC_TIMEPICKER_VALUE_ACCESSOR, MINUTES_PER_HOUR, McTimepicker, McTimepickerModule, SECONDS_PER_MINUTE, TIMEFORMAT_PLACEHOLDERS, TimeFormats, TimeParts };
|
708
|
-
//# sourceMappingURL=ptsecurity-mosaic-timepicker.mjs.map
|