@ptsecurity/mosaic 14.7.1 → 15.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/_index.scss +3 -0
- package/_theming.scss +1559 -1685
- package/_visual.scss +84 -64
- package/autocomplete/_autocomplete-theme.scss +21 -0
- package/autocomplete/autocomplete-origin.directive.d.ts +1 -1
- package/autocomplete/autocomplete-trigger.directive.d.ts +1 -1
- package/autocomplete/autocomplete.component.d.ts +1 -1
- package/autocomplete/autocomplete.scss +63 -0
- package/button/_button-base.scss +63 -0
- package/button/_button-theme.scss +154 -0
- package/button/button.component.d.ts +2 -2
- package/button/button.scss +45 -0
- package/button-toggle/button-toggle.component.d.ts +2 -2
- package/button-toggle/button-toggle.scss +135 -0
- package/card/_card-theme.scss +61 -0
- package/card/card.component.d.ts +1 -1
- package/card/card.component.scss +40 -0
- package/checkbox/_checkbox-theme.scss +103 -0
- package/checkbox/checkbox-required-validator.d.ts +1 -1
- package/checkbox/checkbox.d.ts +1 -1
- package/checkbox/checkbox.scss +144 -0
- package/code-block/_code-block-theme.scss +329 -0
- package/code-block/actionbar.component.d.ts +1 -1
- package/code-block/actionbar.component.scss +27 -0
- package/code-block/code-block.component.d.ts +1 -1
- package/code-block/code-block.scss +128 -0
- package/core/_index.scss +1 -0
- package/core/common-behaviors/color.d.ts +2 -2
- package/core/datetime/date-adapter.d.ts +12 -0
- package/core/datetime/date-formats.d.ts +4 -0
- package/core/datetime/index.d.ts +2 -0
- package/core/formatters/date/formatter.d.ts +4 -265
- package/core/formatters/date/formatter.pipe.d.ts +3 -2
- package/core/forms/_forms-theme.scss +32 -0
- package/core/forms/_forms.scss +109 -0
- package/core/forms/forms.directive.d.ts +2 -2
- package/core/highlight/_highlight-theme.scss +10 -0
- package/core/line/line.d.ts +1 -1
- package/core/option/_optgroup-theme.scss +26 -0
- package/core/option/_option-action-theme.scss +41 -0
- package/core/option/_option-theme.scss +46 -0
- package/core/option/action.d.ts +1 -1
- package/core/option/action.scss +28 -0
- package/core/option/optgroup.d.ts +1 -1
- package/core/option/optgroup.scss +16 -0
- package/core/option/option.d.ts +1 -1
- package/core/option/option.scss +62 -0
- package/core/pop-up/_pop-up.scss +129 -0
- package/core/pop-up/pop-up-trigger.d.ts +1 -1
- package/core/pop-up/pop-up.d.ts +1 -1
- package/core/public-api.d.ts +11 -10
- package/core/selection/pseudo-checkbox/_pseudo-checkbox-theme.scss +48 -0
- package/core/selection/pseudo-checkbox/pseudo-checkbox.d.ts +1 -1
- package/core/selection/pseudo-checkbox/pseudo-checkbox.scss +57 -0
- package/core/styles/_core.scss +11 -0
- package/core/styles/_mosaic-theme.scss +147 -0
- package/core/styles/_tokens.scss +6 -0
- package/core/styles/_variables.scss +9 -0
- package/core/styles/common/_animation.scss +35 -0
- package/core/styles/common/_button.scss +10 -0
- package/core/styles/common/_clearfix.scss +13 -0
- package/core/styles/common/_groups.scss +116 -0
- package/core/styles/common/_index.scss +13 -0
- package/core/styles/common/_input.scss +28 -0
- package/core/styles/common/_layout.scss +8 -0
- package/core/styles/common/_list.scss +46 -0
- package/core/styles/common/_overlay.scss +173 -0
- package/core/styles/common/_popup.scss +11 -0
- package/core/styles/common/_rtl.scss +33 -0
- package/core/styles/common/_size.scss +8 -0
- package/core/styles/common/_vendor-prefixes.scss +24 -0
- package/core/styles/common/_visually-hidden.scss +36 -0
- package/core/styles/functions/_index.scss +3 -0
- package/core/styles/functions/_number.scss +65 -0
- package/core/styles/functions/_string.scss +19 -0
- package/core/styles/functions/_timing.scss +30 -0
- package/core/styles/theming/_alerts.scss +166 -0
- package/core/styles/theming/_badges.scss +142 -0
- package/core/styles/theming/_components-theming.scss +721 -0
- package/core/styles/theming/_index.scss +2 -0
- package/core/styles/theming/_scrollbars.scss +133 -0
- package/core/styles/theming/_theming.scss +155 -0
- package/core/styles/typography/_index.scss +2 -0
- package/core/styles/typography/_typography-utils.scss +78 -0
- package/core/styles/typography/_typography.scss +180 -0
- package/core/styles/visual/_body.scss +35 -0
- package/core/styles/visual/_index.scss +3 -0
- package/core/styles/visual/_layout-media.scss +7 -0
- package/core/styles/visual/_layout.scss +527 -0
- package/datepicker/_datepicker-theme.scss +103 -0
- package/datepicker/calendar-body.component.d.ts +1 -1
- package/datepicker/calendar-body.scss +61 -0
- package/datepicker/calendar-header.component.d.ts +2 -2
- package/datepicker/calendar-header.scss +69 -0
- package/datepicker/calendar.component.d.ts +2 -2
- package/datepicker/calendar.scss +68 -0
- package/datepicker/datepicker-content.scss +32 -0
- package/datepicker/datepicker-input.directive.d.ts +2 -2
- package/datepicker/datepicker-input.scss +15 -0
- package/datepicker/datepicker-toggle.component.d.ts +2 -2
- package/datepicker/datepicker-toggle.scss +41 -0
- package/datepicker/datepicker.component.d.ts +3 -3
- package/datepicker/month-view.component.d.ts +2 -2
- package/divider/_divider-theme.scss +13 -0
- package/divider/divider.component.d.ts +1 -1
- package/divider/divider.scss +47 -0
- package/dl/_dl-theme.scss +44 -0
- package/dl/dl.component.d.ts +3 -3
- package/dl/dl.scss +66 -0
- package/dropdown/_dropdown-theme.scss +87 -0
- package/dropdown/dropdown-content.directive.d.ts +1 -1
- package/dropdown/dropdown-item.component.d.ts +1 -1
- package/dropdown/dropdown-item.scss +82 -0
- package/dropdown/dropdown-trigger.directive.d.ts +1 -1
- package/dropdown/dropdown.component.d.ts +1 -1
- package/dropdown/dropdown.scss +79 -0
- package/esm2020/autocomplete/autocomplete-origin.directive.mjs +4 -4
- package/esm2020/autocomplete/autocomplete-trigger.directive.mjs +4 -4
- package/esm2020/autocomplete/autocomplete.component.mjs +6 -6
- package/esm2020/autocomplete/autocomplete.module.mjs +5 -5
- package/esm2020/button/button.component.mjs +8 -8
- package/esm2020/button/button.module.mjs +5 -5
- package/esm2020/button-toggle/button-toggle.component.mjs +9 -9
- package/esm2020/button-toggle/button-toggle.module.mjs +5 -5
- package/esm2020/card/card.component.mjs +5 -5
- package/esm2020/card/card.module.mjs +5 -5
- package/esm2020/checkbox/checkbox-module.mjs +5 -5
- package/esm2020/checkbox/checkbox-required-validator.mjs +4 -4
- package/esm2020/checkbox/checkbox.mjs +5 -5
- package/esm2020/code-block/actionbar.component.mjs +4 -4
- package/esm2020/code-block/code-block.component.mjs +5 -5
- package/esm2020/code-block/code-block.module.mjs +5 -5
- package/esm2020/core/common-behaviors/color.mjs +3 -3
- package/esm2020/core/common-behaviors/common-module.mjs +5 -5
- package/esm2020/core/datetime/date-adapter.mjs +15 -0
- package/esm2020/core/datetime/date-formats.mjs +3 -0
- package/esm2020/core/datetime/index.mjs +3 -0
- package/esm2020/core/error/error-options.mjs +7 -7
- package/esm2020/core/formatters/date/formatter.mjs +10 -434
- package/esm2020/core/formatters/date/formatter.pipe.mjs +42 -42
- package/esm2020/core/formatters/index.mjs +5 -5
- package/esm2020/core/formatters/number/formatter.mjs +5 -5
- package/esm2020/core/forms/forms-module.mjs +5 -5
- package/esm2020/core/forms/forms.directive.mjs +7 -7
- package/esm2020/core/highlight/highlight.pipe.mjs +4 -4
- package/esm2020/core/highlight/index.mjs +5 -5
- package/esm2020/core/line/line.mjs +8 -8
- package/esm2020/core/option/action.mjs +6 -6
- package/esm2020/core/option/optgroup.mjs +5 -5
- package/esm2020/core/option/option-module.mjs +5 -5
- package/esm2020/core/option/option.mjs +5 -5
- package/esm2020/core/pop-up/pop-up-trigger.mjs +4 -4
- package/esm2020/core/pop-up/pop-up.mjs +4 -4
- package/esm2020/core/public-api.mjs +12 -11
- package/esm2020/core/selection/pseudo-checkbox/pseudo-checkbox.mjs +5 -5
- package/esm2020/core/selection/pseudo-checkbox/pseudo-checkbox.module.mjs +5 -5
- package/esm2020/core/services/measure-scrollbar.service.mjs +4 -4
- package/esm2020/core/version.mjs +2 -2
- package/esm2020/datepicker/calendar-body.component.mjs +5 -5
- package/esm2020/datepicker/calendar-header.component.mjs +8 -9
- package/esm2020/datepicker/calendar.component.mjs +7 -7
- package/esm2020/datepicker/datepicker-input.directive.mjs +6 -7
- package/esm2020/datepicker/datepicker-intl.mjs +4 -4
- package/esm2020/datepicker/datepicker-module.mjs +5 -5
- package/esm2020/datepicker/datepicker-toggle.component.mjs +8 -8
- package/esm2020/datepicker/datepicker.component.mjs +10 -10
- package/esm2020/datepicker/month-view.component.mjs +6 -6
- package/esm2020/divider/divider.component.mjs +5 -5
- package/esm2020/divider/divider.module.mjs +5 -5
- package/esm2020/dl/dl.component.mjs +11 -11
- package/esm2020/dl/dl.module.mjs +5 -5
- package/esm2020/dropdown/dropdown-content.directive.mjs +4 -4
- package/esm2020/dropdown/dropdown-item.component.mjs +5 -5
- package/esm2020/dropdown/dropdown-trigger.directive.mjs +4 -4
- package/esm2020/dropdown/dropdown.component.mjs +6 -6
- package/esm2020/dropdown/dropdown.module.mjs +5 -5
- package/esm2020/form-field/cleaner.mjs +5 -5
- package/esm2020/form-field/form-field.mjs +11 -11
- package/esm2020/form-field/form-field.module.mjs +5 -5
- package/esm2020/form-field/hint.mjs +4 -4
- package/esm2020/form-field/password-hint.mjs +4 -4
- package/esm2020/form-field/prefix.mjs +4 -4
- package/esm2020/form-field/stepper.mjs +8 -8
- package/esm2020/form-field/suffix.mjs +4 -4
- package/esm2020/form-field/validate.directive.mjs +4 -4
- package/esm2020/icon/icon.component.mjs +7 -7
- package/esm2020/icon/icon.module.mjs +5 -5
- package/esm2020/input/input-number-validators.mjs +7 -7
- package/esm2020/input/input-number.mjs +4 -4
- package/esm2020/input/input-password.mjs +7 -7
- package/esm2020/input/input.mjs +7 -7
- package/esm2020/input/input.module.mjs +5 -5
- package/esm2020/link/link.component.mjs +4 -4
- package/esm2020/link/link.module.mjs +5 -5
- package/esm2020/list/list-selection.component.mjs +9 -9
- package/esm2020/list/list.component.mjs +8 -8
- package/esm2020/list/list.module.mjs +5 -5
- package/esm2020/loader-overlay/loader-overlay.component.mjs +14 -14
- package/esm2020/loader-overlay/loader-overlay.module.mjs +5 -5
- package/esm2020/markdown/markdown.component.mjs +6 -6
- package/esm2020/markdown/markdown.module.mjs +5 -5
- package/esm2020/markdown/markdown.service.mjs +4 -4
- package/esm2020/modal/css-unit.pipe.mjs +4 -4
- package/esm2020/modal/modal-control.service.mjs +4 -4
- package/esm2020/modal/modal.component.mjs +5 -5
- package/esm2020/modal/modal.directive.mjs +13 -13
- package/esm2020/modal/modal.module.mjs +5 -5
- package/esm2020/modal/modal.service.mjs +4 -4
- package/esm2020/navbar/navbar-item.component.mjs +31 -31
- package/esm2020/navbar/navbar.component.mjs +11 -11
- package/esm2020/navbar/navbar.module.mjs +5 -5
- package/esm2020/navbar/vertical-navbar.animation.mjs +2 -2
- package/esm2020/navbar/vertical-navbar.component.mjs +6 -6
- package/esm2020/popover/popover-confirm.component.mjs +8 -8
- package/esm2020/popover/popover.component.mjs +8 -8
- package/esm2020/popover/popover.module.mjs +5 -5
- package/esm2020/progress-bar/progress-bar.component.mjs +5 -5
- package/esm2020/progress-bar/progress-bar.module.mjs +5 -5
- package/esm2020/progress-spinner/progress-spinner.component.mjs +6 -6
- package/esm2020/progress-spinner/progress-spinner.module.mjs +5 -5
- package/esm2020/radio/radio.component.mjs +8 -8
- package/esm2020/radio/radio.module.mjs +5 -5
- package/esm2020/select/select-option.directive.mjs +4 -4
- package/esm2020/select/select.component.mjs +18 -18
- package/esm2020/select/select.module.mjs +5 -5
- package/esm2020/sidebar/sidebar.component.mjs +10 -10
- package/esm2020/sidebar/sidebar.module.mjs +5 -5
- package/esm2020/sidepanel/sidepanel-container.component.mjs +5 -5
- package/esm2020/sidepanel/sidepanel-directives.mjs +18 -18
- package/esm2020/sidepanel/sidepanel.module.mjs +5 -5
- package/esm2020/sidepanel/sidepanel.service.mjs +4 -4
- package/esm2020/splitter/splitter.component.mjs +13 -13
- package/esm2020/splitter/splitter.module.mjs +5 -5
- package/esm2020/table/table.component.mjs +5 -5
- package/esm2020/table/table.module.mjs +5 -5
- package/esm2020/tabs/paginated-tab-header.mjs +4 -4
- package/esm2020/tabs/tab-body.component.mjs +7 -7
- package/esm2020/tabs/tab-content.directive.mjs +4 -4
- package/esm2020/tabs/tab-group.component.mjs +20 -20
- package/esm2020/tabs/tab-header.component.mjs +5 -5
- package/esm2020/tabs/tab-label-wrapper.directive.mjs +4 -4
- package/esm2020/tabs/tab-label.directive.mjs +4 -4
- package/esm2020/tabs/tab-nav-bar/tab-nav-bar.mjs +8 -8
- package/esm2020/tabs/tab.component.mjs +4 -4
- package/esm2020/tabs/tabs.module.mjs +5 -5
- package/esm2020/tags/tag-input.mjs +4 -4
- package/esm2020/tags/tag-list.component.mjs +5 -5
- package/esm2020/tags/tag.component.mjs +14 -14
- package/esm2020/tags/tag.module.mjs +5 -5
- package/esm2020/textarea/textarea.component.mjs +4 -4
- package/esm2020/textarea/textarea.module.mjs +5 -5
- package/esm2020/timepicker/timepicker.directive.mjs +6 -7
- package/esm2020/timepicker/timepicker.module.mjs +5 -5
- package/esm2020/timezone/cities-by-filter.pipe.mjs +4 -4
- package/esm2020/timezone/timezone-option.component.mjs +6 -6
- package/esm2020/timezone/timezone-option.directive.mjs +4 -4
- package/esm2020/timezone/timezone-select.component.mjs +9 -9
- package/esm2020/timezone/timezone.module.mjs +5 -5
- package/esm2020/timezone/utc-offset.pipe.mjs +4 -4
- package/esm2020/toast/toast-container.component.mjs +5 -5
- package/esm2020/toast/toast.component.mjs +5 -5
- package/esm2020/toast/toast.module.mjs +5 -5
- package/esm2020/toast/toast.service.mjs +4 -4
- package/esm2020/toggle/toggle.component.mjs +6 -6
- package/esm2020/toggle/toggle.module.mjs +5 -5
- package/esm2020/tooltip/tooltip.component.mjs +14 -14
- package/esm2020/tooltip/tooltip.module.mjs +5 -5
- package/esm2020/tree/node.mjs +4 -4
- package/esm2020/tree/outlet.mjs +4 -4
- package/esm2020/tree/padding.directive.mjs +5 -5
- package/esm2020/tree/toggle.mjs +11 -11
- package/esm2020/tree/tree-base.mjs +7 -7
- package/esm2020/tree/tree-option.component.mjs +6 -6
- package/esm2020/tree/tree-selection.component.mjs +4 -4
- package/esm2020/tree/tree.mjs +4 -4
- package/esm2020/tree/tree.module.mjs +5 -5
- package/esm2020/tree-select/tree-select.component.mjs +12 -12
- package/esm2020/tree-select/tree-select.module.mjs +5 -5
- package/fesm2015/ptsecurity-mosaic-autocomplete.mjs +15 -15
- package/fesm2015/ptsecurity-mosaic-autocomplete.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-button-toggle.mjs +12 -12
- package/fesm2015/ptsecurity-mosaic-button-toggle.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-button.mjs +11 -11
- package/fesm2015/ptsecurity-mosaic-button.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-card.mjs +8 -8
- package/fesm2015/ptsecurity-mosaic-card.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-checkbox.mjs +11 -11
- package/fesm2015/ptsecurity-mosaic-checkbox.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-code-block.mjs +11 -11
- package/fesm2015/ptsecurity-mosaic-code-block.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-core.mjs +789 -1877
- package/fesm2015/ptsecurity-mosaic-core.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-datepicker.mjs +42 -44
- package/fesm2015/ptsecurity-mosaic-datepicker.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-divider.mjs +8 -8
- package/fesm2015/ptsecurity-mosaic-divider.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-dl.mjs +14 -14
- package/fesm2015/ptsecurity-mosaic-dl.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-dropdown.mjs +19 -19
- package/fesm2015/ptsecurity-mosaic-dropdown.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-form-field.mjs +40 -40
- package/fesm2015/ptsecurity-mosaic-form-field.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-icon.mjs +10 -10
- package/fesm2015/ptsecurity-mosaic-icon.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-input.mjs +25 -25
- package/fesm2015/ptsecurity-mosaic-input.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-link.mjs +7 -7
- package/fesm2015/ptsecurity-mosaic-link.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-list.mjs +19 -19
- package/fesm2015/ptsecurity-mosaic-list.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-loader-overlay.mjs +17 -17
- package/fesm2015/ptsecurity-mosaic-loader-overlay.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-markdown.mjs +12 -12
- package/fesm2015/ptsecurity-mosaic-markdown.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-modal.mjs +29 -29
- package/fesm2015/ptsecurity-mosaic-modal.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-navbar.mjs +50 -50
- package/fesm2015/ptsecurity-mosaic-navbar.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-popover.mjs +18 -18
- package/fesm2015/ptsecurity-mosaic-popover.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-progress-bar.mjs +8 -8
- package/fesm2015/ptsecurity-mosaic-progress-bar.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-progress-spinner.mjs +9 -9
- package/fesm2015/ptsecurity-mosaic-progress-spinner.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-radio.mjs +11 -11
- package/fesm2015/ptsecurity-mosaic-radio.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-select.mjs +24 -24
- package/fesm2015/ptsecurity-mosaic-select.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-sidebar.mjs +13 -13
- package/fesm2015/ptsecurity-mosaic-sidebar.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-sidepanel.mjs +28 -28
- package/fesm2015/ptsecurity-mosaic-sidepanel.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-splitter.mjs +16 -16
- package/fesm2015/ptsecurity-mosaic-splitter.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-table.mjs +8 -8
- package/fesm2015/ptsecurity-mosaic-table.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-tabs.mjs +55 -55
- package/fesm2015/ptsecurity-mosaic-tabs.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-tags.mjs +24 -24
- package/fesm2015/ptsecurity-mosaic-tags.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-textarea.mjs +7 -7
- package/fesm2015/ptsecurity-mosaic-textarea.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-timepicker.mjs +8 -8
- package/fesm2015/ptsecurity-mosaic-timepicker.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-timezone.mjs +26 -26
- package/fesm2015/ptsecurity-mosaic-timezone.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-toast.mjs +15 -15
- package/fesm2015/ptsecurity-mosaic-toast.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-toggle.mjs +9 -9
- package/fesm2015/ptsecurity-mosaic-toggle.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-tooltip.mjs +17 -17
- package/fesm2015/ptsecurity-mosaic-tooltip.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-tree-select.mjs +15 -15
- package/fesm2015/ptsecurity-mosaic-tree-select.mjs.map +1 -1
- package/fesm2015/ptsecurity-mosaic-tree.mjs +41 -41
- package/fesm2015/ptsecurity-mosaic-tree.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-autocomplete.mjs +15 -15
- package/fesm2020/ptsecurity-mosaic-autocomplete.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-button-toggle.mjs +12 -12
- package/fesm2020/ptsecurity-mosaic-button-toggle.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-button.mjs +11 -11
- package/fesm2020/ptsecurity-mosaic-button.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-card.mjs +8 -8
- package/fesm2020/ptsecurity-mosaic-card.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-checkbox.mjs +11 -11
- package/fesm2020/ptsecurity-mosaic-checkbox.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-code-block.mjs +11 -11
- package/fesm2020/ptsecurity-mosaic-code-block.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-core.mjs +785 -1900
- package/fesm2020/ptsecurity-mosaic-core.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-datepicker.mjs +42 -44
- package/fesm2020/ptsecurity-mosaic-datepicker.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-divider.mjs +8 -8
- package/fesm2020/ptsecurity-mosaic-divider.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-dl.mjs +14 -14
- package/fesm2020/ptsecurity-mosaic-dl.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-dropdown.mjs +19 -19
- package/fesm2020/ptsecurity-mosaic-dropdown.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-form-field.mjs +40 -40
- package/fesm2020/ptsecurity-mosaic-form-field.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-icon.mjs +10 -10
- package/fesm2020/ptsecurity-mosaic-icon.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-input.mjs +25 -25
- package/fesm2020/ptsecurity-mosaic-input.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-link.mjs +7 -7
- package/fesm2020/ptsecurity-mosaic-link.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-list.mjs +19 -19
- package/fesm2020/ptsecurity-mosaic-list.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-loader-overlay.mjs +17 -17
- package/fesm2020/ptsecurity-mosaic-loader-overlay.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-markdown.mjs +12 -12
- package/fesm2020/ptsecurity-mosaic-markdown.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-modal.mjs +29 -29
- package/fesm2020/ptsecurity-mosaic-modal.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-navbar.mjs +50 -50
- package/fesm2020/ptsecurity-mosaic-navbar.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-popover.mjs +18 -18
- package/fesm2020/ptsecurity-mosaic-popover.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-progress-bar.mjs +8 -8
- package/fesm2020/ptsecurity-mosaic-progress-bar.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-progress-spinner.mjs +9 -9
- package/fesm2020/ptsecurity-mosaic-progress-spinner.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-radio.mjs +11 -11
- package/fesm2020/ptsecurity-mosaic-radio.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-select.mjs +24 -24
- package/fesm2020/ptsecurity-mosaic-select.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-sidebar.mjs +13 -13
- package/fesm2020/ptsecurity-mosaic-sidebar.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-sidepanel.mjs +28 -28
- package/fesm2020/ptsecurity-mosaic-sidepanel.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-splitter.mjs +16 -16
- package/fesm2020/ptsecurity-mosaic-splitter.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-table.mjs +8 -8
- package/fesm2020/ptsecurity-mosaic-table.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-tabs.mjs +55 -55
- package/fesm2020/ptsecurity-mosaic-tabs.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-tags.mjs +24 -24
- package/fesm2020/ptsecurity-mosaic-tags.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-textarea.mjs +7 -7
- package/fesm2020/ptsecurity-mosaic-textarea.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-timepicker.mjs +8 -8
- package/fesm2020/ptsecurity-mosaic-timepicker.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-timezone.mjs +26 -26
- package/fesm2020/ptsecurity-mosaic-timezone.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-toast.mjs +15 -15
- package/fesm2020/ptsecurity-mosaic-toast.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-toggle.mjs +9 -9
- package/fesm2020/ptsecurity-mosaic-toggle.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-tooltip.mjs +17 -17
- package/fesm2020/ptsecurity-mosaic-tooltip.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-tree-select.mjs +15 -15
- package/fesm2020/ptsecurity-mosaic-tree-select.mjs.map +1 -1
- package/fesm2020/ptsecurity-mosaic-tree.mjs +41 -41
- package/fesm2020/ptsecurity-mosaic-tree.mjs.map +1 -1
- package/form-field/_form-field-theme.scss +133 -0
- package/form-field/cleaner.d.ts +1 -1
- package/form-field/form-field.d.ts +3 -3
- package/form-field/form-field.scss +163 -0
- package/form-field/hint.d.ts +1 -1
- package/form-field/password-hint.d.ts +1 -1
- package/form-field/prefix.d.ts +1 -1
- package/form-field/stepper.d.ts +1 -1
- package/form-field/suffix.d.ts +1 -1
- package/form-field/validate.directive.d.ts +1 -1
- package/icon/_icon-theme.scss +152 -0
- package/icon/icon.component.d.ts +2 -2
- package/icon/icon.scss +30 -0
- package/input/_input-base.scss +21 -0
- package/input/_input-theme.scss +58 -0
- 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 +2 -2
- package/input/input.scss +62 -0
- package/link/_link-theme.scss +172 -0
- package/link/link.component.d.ts +1 -1
- package/list/_list-base.scss +50 -0
- package/list/_list-theme.scss +49 -0
- package/list/list-selection.component.d.ts +2 -2
- package/list/list.component.d.ts +2 -2
- package/list/list.scss +52 -0
- package/loader-overlay/_loader-overlay-theme.scss +36 -0
- package/loader-overlay/loader-overlay.component.d.ts +4 -4
- package/loader-overlay/loader-overlay.scss +64 -0
- package/markdown/_markdown-theme.scss +142 -0
- package/markdown/markdown.component.d.ts +1 -1
- package/markdown/markdown.scss +240 -0
- package/modal/_modal-animation.scss +114 -0
- package/modal/_modal-confirm.scss +53 -0
- package/modal/_modal-theme.scss +90 -0
- package/modal/modal.component.d.ts +1 -1
- package/modal/modal.directive.d.ts +4 -4
- package/modal/modal.scss +143 -0
- package/navbar/_navbar-theme.scss +125 -0
- package/navbar/navbar-brand.scss +70 -0
- package/navbar/navbar-divider.scss +18 -0
- package/navbar/navbar-item.component.d.ts +10 -10
- package/navbar/navbar-item.scss +159 -0
- package/navbar/navbar.component.d.ts +3 -3
- package/navbar/navbar.scss +20 -0
- package/navbar/vertical-navbar.component.d.ts +1 -1
- package/navbar/vertical-navbar.scss +46 -0
- package/package.json +28 -27
- package/popover/_popover-theme.scss +113 -0
- package/popover/popover-confirm.component.d.ts +2 -2
- package/popover/popover.component.d.ts +2 -2
- package/popover/popover.scss +114 -0
- 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-theme.scss +28 -0
- package/progress-bar/progress-bar.component.d.ts +1 -1
- package/progress-bar/progress-bar.scss +42 -0
- package/progress-spinner/_progress-spinner-theme.scss +24 -0
- package/progress-spinner/progress-spinner.component.d.ts +1 -1
- package/progress-spinner/progress-spinner.scss +70 -0
- package/radio/_radio-theme.scss +99 -0
- package/radio/radio.component.d.ts +2 -2
- package/radio/radio.scss +110 -0
- package/select/_select-theme.scss +57 -0
- package/select/select-option.directive.d.ts +1 -1
- package/select/select.component.d.ts +5 -5
- package/select/select.scss +197 -0
- package/sidebar/sidebar.component.d.ts +3 -3
- package/sidebar/sidebar.scss +12 -0
- package/sidepanel/_sidepanel-theme.scss +69 -0
- package/sidepanel/sidepanel-container.component.d.ts +1 -1
- package/sidepanel/sidepanel-directives.d.ts +5 -5
- package/sidepanel/sidepanel.scss +190 -0
- package/splitter/_splitter-theme.scss +31 -0
- package/splitter/splitter.component.d.ts +4 -4
- package/splitter/splitter.scss +48 -0
- package/table/_table-theme.scss +67 -0
- package/table/table.component.d.ts +1 -1
- package/table/table.scss +76 -0
- package/tabs/_tabs-common.scss +197 -0
- package/tabs/_tabs-theme.scss +241 -0
- package/tabs/paginated-tab-header.d.ts +1 -1
- package/tabs/tab-body.component.d.ts +2 -2
- package/tabs/tab-body.scss +8 -0
- package/tabs/tab-content.directive.d.ts +1 -1
- package/tabs/tab-group.component.d.ts +6 -6
- package/tabs/tab-group.scss +63 -0
- package/tabs/tab-header.component.d.ts +1 -1
- package/tabs/tab-header.scss +106 -0
- package/tabs/tab-label-wrapper.directive.d.ts +1 -1
- package/tabs/tab-label.directive.d.ts +1 -1
- package/tabs/tab-nav-bar/tab-nav-bar.d.ts +2 -2
- package/tabs/tab-nav-bar/tab-nav-bar.scss +54 -0
- package/tabs/tab.component.d.ts +1 -1
- package/tags/_tag-theme.scss +122 -0
- package/tags/tag-input.d.ts +1 -1
- package/tags/tag-list.component.d.ts +1 -1
- package/tags/tag-list.scss +52 -0
- package/tags/tag.component.d.ts +4 -4
- package/tags/tag.scss +115 -0
- package/textarea/_textarea-base.scss +22 -0
- package/textarea/_textarea-theme.scss +40 -0
- package/textarea/textarea.component.d.ts +1 -1
- package/textarea/textarea.scss +32 -0
- package/timepicker/timepicker.directive.d.ts +2 -2
- package/timepicker/timepicker.scss +18 -0
- package/timezone/_timezone-option-theme.scss +36 -0
- package/timezone/timezone-option.component.d.ts +1 -1
- package/timezone/timezone-option.component.scss +35 -0
- package/timezone/timezone-option.directive.d.ts +1 -1
- package/timezone/timezone-select.component.d.ts +2 -2
- package/toast/_toast-theme.scss +64 -0
- package/toast/toast-container.component.d.ts +1 -1
- package/toast/toast-container.component.scss +23 -0
- package/toast/toast.component.d.ts +1 -1
- package/toast/toast.component.scss +76 -0
- package/toggle/_toggle-theme.scss +82 -0
- package/toggle/toggle.component.d.ts +1 -1
- package/toggle/toggle.scss +124 -0
- package/tooltip/_tooltip-theme.scss +104 -0
- package/tooltip/tooltip.component.d.ts +4 -4
- package/tooltip/tooltip.scss +75 -0
- package/tree/_tree-theme.scss +70 -0
- package/tree/node.d.ts +1 -1
- package/tree/outlet.d.ts +1 -1
- package/tree/padding.directive.d.ts +1 -1
- package/tree/toggle.d.ts +3 -3
- package/tree/toggle.scss +35 -0
- package/tree/tree-base.d.ts +2 -2
- package/tree/tree-option.component.d.ts +1 -1
- package/tree/tree-option.scss +67 -0
- package/tree/tree-selection.component.d.ts +1 -1
- package/tree/tree-selection.scss +3 -0
- package/tree/tree.d.ts +1 -1
- package/tree/tree.scss +3 -0
- package/tree-select/_tree-select-theme.scss +44 -0
- package/tree-select/tree-select.component.d.ts +3 -3
- package/tree-select/tree-select.scss +212 -0
- package/core/formatters/date/templates/en-US.d.ts +0 -2
- package/core/formatters/date/templates/ru-RU.d.ts +0 -2
- package/design-tokens/index.d.ts +0 -1
- package/design-tokens/legacy-2017/tokens/components/alert.json5 +0 -83
- package/design-tokens/legacy-2017/tokens/components/autocomplete.json5 +0 -11
- package/design-tokens/legacy-2017/tokens/components/badge.json5 +0 -174
- package/design-tokens/legacy-2017/tokens/components/button-toggle.json5 +0 -11
- package/design-tokens/legacy-2017/tokens/components/button.json5 +0 -142
- package/design-tokens/legacy-2017/tokens/components/card.json5 +0 -51
- package/design-tokens/legacy-2017/tokens/components/checkbox.json5 +0 -106
- package/design-tokens/legacy-2017/tokens/components/code-block.json5 +0 -704
- package/design-tokens/legacy-2017/tokens/components/datepicker.json5 +0 -73
- package/design-tokens/legacy-2017/tokens/components/divider.json5 +0 -14
- package/design-tokens/legacy-2017/tokens/components/dl.json5 +0 -38
- package/design-tokens/legacy-2017/tokens/components/dropdown.json5 +0 -48
- package/design-tokens/legacy-2017/tokens/components/form-field.json5 +0 -92
- package/design-tokens/legacy-2017/tokens/components/forms.json5 +0 -48
- package/design-tokens/legacy-2017/tokens/components/icon.json5 +0 -104
- package/design-tokens/legacy-2017/tokens/components/input.json5 +0 -12
- package/design-tokens/legacy-2017/tokens/components/link.json5 +0 -50
- package/design-tokens/legacy-2017/tokens/components/list.json5 +0 -13
- package/design-tokens/legacy-2017/tokens/components/loader-overlay.json5 +0 -23
- package/design-tokens/legacy-2017/tokens/components/markdown.json5 +0 -294
- package/design-tokens/legacy-2017/tokens/components/modal.json5 +0 -81
- package/design-tokens/legacy-2017/tokens/components/navbar.json5 +0 -70
- package/design-tokens/legacy-2017/tokens/components/optgroup.json5 +0 -10
- package/design-tokens/legacy-2017/tokens/components/option.json5 +0 -12
- package/design-tokens/legacy-2017/tokens/components/popover.json5 +0 -69
- package/design-tokens/legacy-2017/tokens/components/popup.json5 +0 -16
- package/design-tokens/legacy-2017/tokens/components/progress-bar.json5 +0 -13
- package/design-tokens/legacy-2017/tokens/components/progress-spinner.json5 +0 -16
- package/design-tokens/legacy-2017/tokens/components/radio.json5 +0 -47
- package/design-tokens/legacy-2017/tokens/components/scrollbars.json5 +0 -52
- package/design-tokens/legacy-2017/tokens/components/select.json5 +0 -24
- package/design-tokens/legacy-2017/tokens/components/sidepanel.json5 +0 -44
- package/design-tokens/legacy-2017/tokens/components/table.json5 +0 -15
- package/design-tokens/legacy-2017/tokens/components/tabs.json5 +0 -101
- package/design-tokens/legacy-2017/tokens/components/tags.json5 +0 -134
- package/design-tokens/legacy-2017/tokens/components/textarea.json5 +0 -12
- package/design-tokens/legacy-2017/tokens/components/timepicker.json5 +0 -7
- package/design-tokens/legacy-2017/tokens/components/timezone.json5 +0 -23
- package/design-tokens/legacy-2017/tokens/components/toast.json5 +0 -54
- package/design-tokens/legacy-2017/tokens/components/toggle.json5 +0 -79
- package/design-tokens/legacy-2017/tokens/components/tooltip.json5 +0 -83
- package/design-tokens/legacy-2017/tokens/components/tree.json5 +0 -15
- package/design-tokens/legacy-2017/tokens/properties/aliases.json5 +0 -3
- package/design-tokens/legacy-2017/tokens/properties/colors.json5 +0 -119
- package/design-tokens/legacy-2017/tokens/properties/font.json5 +0 -12
- package/design-tokens/legacy-2017/tokens/properties/globals.json5 +0 -49
- package/design-tokens/legacy-2017/tokens/properties/md-typography.json5 +0 -103
- package/design-tokens/legacy-2017/tokens/properties/padding.json5 +0 -3
- package/design-tokens/legacy-2017/tokens/properties/palette.json5 +0 -163
- package/design-tokens/legacy-2017/tokens/properties/typography.json5 +0 -184
- package/design-tokens/legacy-2017/tokens.d.ts +0 -8520
- package/design-tokens/pt-2022/tokens/components/alert.json5 +0 -83
- package/design-tokens/pt-2022/tokens/components/autocomplete.json5 +0 -11
- package/design-tokens/pt-2022/tokens/components/badge.json5 +0 -174
- package/design-tokens/pt-2022/tokens/components/button-toggle.json5 +0 -11
- package/design-tokens/pt-2022/tokens/components/button.json5 +0 -142
- package/design-tokens/pt-2022/tokens/components/card.json5 +0 -51
- package/design-tokens/pt-2022/tokens/components/checkbox.json5 +0 -106
- package/design-tokens/pt-2022/tokens/components/code-block.json5 +0 -697
- package/design-tokens/pt-2022/tokens/components/datepicker.json5 +0 -73
- package/design-tokens/pt-2022/tokens/components/divider.json5 +0 -14
- package/design-tokens/pt-2022/tokens/components/dl.json5 +0 -38
- package/design-tokens/pt-2022/tokens/components/dropdown.json5 +0 -48
- package/design-tokens/pt-2022/tokens/components/form-field.json5 +0 -92
- package/design-tokens/pt-2022/tokens/components/forms.json5 +0 -48
- package/design-tokens/pt-2022/tokens/components/icon.json5 +0 -104
- package/design-tokens/pt-2022/tokens/components/input.json5 +0 -12
- package/design-tokens/pt-2022/tokens/components/link.json5 +0 -50
- package/design-tokens/pt-2022/tokens/components/list.json5 +0 -13
- package/design-tokens/pt-2022/tokens/components/loader-overlay.json5 +0 -23
- package/design-tokens/pt-2022/tokens/components/markdown.json5 +0 -294
- package/design-tokens/pt-2022/tokens/components/modal.json5 +0 -81
- package/design-tokens/pt-2022/tokens/components/navbar.json5 +0 -70
- package/design-tokens/pt-2022/tokens/components/optgroup.json5 +0 -10
- package/design-tokens/pt-2022/tokens/components/option.json5 +0 -12
- package/design-tokens/pt-2022/tokens/components/popover.json5 +0 -69
- package/design-tokens/pt-2022/tokens/components/popup.json5 +0 -16
- package/design-tokens/pt-2022/tokens/components/progress-bar.json5 +0 -13
- package/design-tokens/pt-2022/tokens/components/progress-spinner.json5 +0 -16
- package/design-tokens/pt-2022/tokens/components/radio.json5 +0 -48
- package/design-tokens/pt-2022/tokens/components/scrollbars.json5 +0 -52
- package/design-tokens/pt-2022/tokens/components/select.json5 +0 -24
- package/design-tokens/pt-2022/tokens/components/sidepanel.json5 +0 -43
- package/design-tokens/pt-2022/tokens/components/table.json5 +0 -15
- package/design-tokens/pt-2022/tokens/components/tabs.json5 +0 -101
- package/design-tokens/pt-2022/tokens/components/tags.json5 +0 -137
- package/design-tokens/pt-2022/tokens/components/textarea.json5 +0 -12
- package/design-tokens/pt-2022/tokens/components/timepicker.json5 +0 -7
- package/design-tokens/pt-2022/tokens/components/timezone.json5 +0 -23
- package/design-tokens/pt-2022/tokens/components/toast.json5 +0 -54
- package/design-tokens/pt-2022/tokens/components/toggle.json5 +0 -79
- package/design-tokens/pt-2022/tokens/components/tooltip.json5 +0 -83
- package/design-tokens/pt-2022/tokens/components/tree.json5 +0 -15
- package/design-tokens/pt-2022/tokens/properties/aliases.json5 +0 -3
- package/design-tokens/pt-2022/tokens/properties/colors.json5 +0 -122
- package/design-tokens/pt-2022/tokens/properties/font.json5 +0 -15
- package/design-tokens/pt-2022/tokens/properties/globals.json5 +0 -49
- package/design-tokens/pt-2022/tokens/properties/md-typography.json5 +0 -103
- package/design-tokens/pt-2022/tokens/properties/padding.json5 +0 -3
- package/design-tokens/pt-2022/tokens/properties/palette.json5 +0 -233
- package/design-tokens/pt-2022/tokens/properties/typography.json5 +0 -184
- package/design-tokens/pt-2022/tokens.d.ts +0 -9851
- package/design-tokens/public-api.d.ts +0 -3
- package/design-tokens/style-dictionary/build.js +0 -78
- package/design-tokens/style-dictionary/configs/css.js +0 -13
- package/design-tokens/style-dictionary/configs/figma.js +0 -11
- package/design-tokens/style-dictionary/configs/index.js +0 -46
- package/design-tokens/style-dictionary/configs/js.js +0 -9
- package/design-tokens/style-dictionary/configs/scss.js +0 -29
- package/design-tokens/style-dictionary/figma-types.js +0 -41
- package/design-tokens/style-dictionary/filters/color.js +0 -9
- package/design-tokens/style-dictionary/filters/md-typography.js +0 -7
- package/design-tokens/style-dictionary/filters/palette.js +0 -7
- package/design-tokens/style-dictionary/filters/size.js +0 -7
- package/design-tokens/style-dictionary/filters/typography.js +0 -7
- package/design-tokens/style-dictionary/formats/figma.js +0 -104
- package/design-tokens/style-dictionary/formats/palette.js +0 -25
- package/design-tokens/style-dictionary/formats/typography.js +0 -52
- package/design-tokens/style-dictionary/transformGroups/css.js +0 -13
- package/design-tokens/style-dictionary/transformGroups/figma.js +0 -21
- package/design-tokens/style-dictionary/transformGroups/scss.js +0 -13
- package/design-tokens/style-dictionary/transformGroups/ts.js +0 -11
- package/design-tokens/style-dictionary/transforms/attribute/figma-border.js +0 -18
- package/design-tokens/style-dictionary/transforms/attribute/figma-color.js +0 -25
- package/design-tokens/style-dictionary/transforms/attribute/figma-default.js +0 -10
- package/design-tokens/style-dictionary/transforms/attribute/figma-font.js +0 -31
- package/design-tokens/style-dictionary/transforms/attribute/figma-group.js +0 -17
- package/design-tokens/style-dictionary/transforms/attribute/figma-opacity.js +0 -10
- package/design-tokens/style-dictionary/transforms/attribute/figma-shadow.js +0 -66
- package/design-tokens/style-dictionary/transforms/attribute/figma-sizing.js +0 -16
- package/design-tokens/style-dictionary/transforms/attribute/figma-spacing.js +0 -15
- package/design-tokens/style-dictionary/transforms/attribute/figma-typography.js +0 -24
- package/design-tokens/style-dictionary/transforms/attribute/md-typography.js +0 -9
- package/design-tokens/style-dictionary/transforms/attribute/palette.js +0 -9
- package/design-tokens/style-dictionary/transforms/attribute/prefix.js +0 -11
- package/design-tokens/style-dictionary/transforms/attribute/size.js +0 -8
- package/design-tokens/style-dictionary/transforms/attribute/typography.js +0 -9
- package/design-tokens/style-dictionary/transforms/value/figma-values.js +0 -7
- package/esm2020/core/formatters/date/templates/en-US.mjs +0 -336
- package/esm2020/core/formatters/date/templates/ru-RU.mjs +0 -372
- package/esm2020/design-tokens/index.mjs +0 -2
- package/esm2020/design-tokens/legacy-2017/tokens.mjs +0 -1814
- package/esm2020/design-tokens/pt-2022/tokens.mjs +0 -1883
- package/esm2020/design-tokens/ptsecurity-mosaic-design-tokens.mjs +0 -5
- package/esm2020/design-tokens/public-api.mjs +0 -4
- package/fesm2015/ptsecurity-mosaic-design-tokens.mjs +0 -5517
- package/fesm2015/ptsecurity-mosaic-design-tokens.mjs.map +0 -1
- package/fesm2020/ptsecurity-mosaic-design-tokens.mjs +0 -5517
- package/fesm2020/ptsecurity-mosaic-design-tokens.mjs.map +0 -1
- package/schematics/README.md +0 -35
@@ -27,5 +27,5 @@ export declare class McTabLabelWrapper extends McTabLabelWrapperMixinBase implem
|
|
27
27
|
getInnerText(): any;
|
28
28
|
private addClassModifierForIcons;
|
29
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<McTabLabelWrapper, never>;
|
30
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<McTabLabelWrapper, "[mcTabLabelWrapper]", never, { "disabled": "disabled"; "tab": "tab"; }, {}, ["labelContent"], never, false>;
|
30
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<McTabLabelWrapper, "[mcTabLabelWrapper]", never, { "disabled": "disabled"; "tab": "tab"; }, {}, ["labelContent"], never, false, never>;
|
31
31
|
}
|
@@ -5,5 +5,5 @@ export declare const MC_TAB_LABEL: InjectionToken<McTabLabel>;
|
|
5
5
|
/** Used to flag tab labels for use with the portal directive */
|
6
6
|
export declare class McTabLabel extends CdkPortal {
|
7
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<McTabLabel, never>;
|
8
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<McTabLabel, "[mc-tab-label], [mcTabLabel]", never, {}, {}, never, never, false>;
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<McTabLabel, "[mc-tab-label], [mcTabLabel]", never, {}, {}, never, never, false, never>;
|
9
9
|
}
|
@@ -25,7 +25,7 @@ export declare class McTabLink extends McTabLinkMixinBase implements OnDestroy,
|
|
25
25
|
ngOnDestroy(): void;
|
26
26
|
private addClassModifierForIcons;
|
27
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<McTabLink, never>;
|
28
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<McTabLink, "a[mc-tab-link], a[mcTabLink]", ["mcTabLink"], { "disabled": "disabled"; "tabIndex": "tabIndex"; "active": "active"; }, {}, never, ["*"], false>;
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<McTabLink, "a[mc-tab-link], a[mcTabLink]", ["mcTabLink"], { "disabled": "disabled"; "tabIndex": "tabIndex"; "active": "active"; }, {}, never, ["*"], false, never>;
|
29
29
|
}
|
30
30
|
/**
|
31
31
|
* Navigation component matching the styles of the tab group header.
|
@@ -36,5 +36,5 @@ export declare class McTabNav implements AfterContentInit {
|
|
36
36
|
constructor(vertical: string);
|
37
37
|
ngAfterContentInit(): void;
|
38
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<McTabNav, [{ attribute: "vertical"; }]>;
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<McTabNav, "[mc-tab-nav-bar]", ["mcTabNavBar", "mcTabNav"], {}, {}, ["links"], ["*"], false>;
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<McTabNav, "[mc-tab-nav-bar]", ["mcTabNavBar", "mcTabNav"], {}, {}, ["links"], ["*"], false, never>;
|
40
40
|
}
|
@@ -0,0 +1,54 @@
|
|
1
|
+
@use 'sass:meta';
|
2
|
+
@use 'sass:map';
|
3
|
+
|
4
|
+
@use '../tabs-common';
|
5
|
+
|
6
|
+
@use '../../core/styles/tokens';
|
7
|
+
|
8
|
+
|
9
|
+
$tokens: meta.module-variables(tokens) !default;
|
10
|
+
|
11
|
+
.mc-tab-link {
|
12
|
+
vertical-align: top;
|
13
|
+
text-decoration: none;
|
14
|
+
-webkit-tap-highlight-color: transparent;
|
15
|
+
|
16
|
+
@include tabs-common.tab-label;
|
17
|
+
|
18
|
+
& .mc-tab-group_stretch-labels & {
|
19
|
+
flex-basis: 0;
|
20
|
+
flex-grow: 1;
|
21
|
+
}
|
22
|
+
|
23
|
+
& > .mc-icon {
|
24
|
+
&.mc-icon_left {
|
25
|
+
margin-right: var(--mc-tabs-size-label-icon-margin, map.get($tokens, tabs-size-label-icon-margin));
|
26
|
+
}
|
27
|
+
|
28
|
+
&.mc-icon_right {
|
29
|
+
margin-left: var(--mc-tabs-size-label-icon-margin, map.get($tokens, tabs-size-label-icon-margin));
|
30
|
+
}
|
31
|
+
}
|
32
|
+
}
|
33
|
+
|
34
|
+
.mc-tab-nav-bar {
|
35
|
+
display: flex;
|
36
|
+
flex-grow: 1;
|
37
|
+
|
38
|
+
position: relative;
|
39
|
+
|
40
|
+
padding: 1px 1px 0 1px;
|
41
|
+
|
42
|
+
& .mc-tab-group_align-labels-center {
|
43
|
+
justify-content: center;
|
44
|
+
}
|
45
|
+
|
46
|
+
& .mc-tab-group_align-labels-end {
|
47
|
+
justify-content: flex-end;
|
48
|
+
}
|
49
|
+
}
|
50
|
+
|
51
|
+
.mc-tab-nav-bar.mc-tab-group_vertical {
|
52
|
+
flex-direction: column;
|
53
|
+
flex-grow: 0;
|
54
|
+
}
|
package/tabs/tab.component.d.ts
CHANGED
@@ -64,5 +64,5 @@ export declare class McTab extends McTabMixinBase implements OnInit, CanDisable,
|
|
64
64
|
*/
|
65
65
|
protected setTemplateLabelInput(value: McTabLabel): void;
|
66
66
|
static ɵfac: i0.ɵɵFactoryDeclaration<McTab, never>;
|
67
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<McTab, "mc-tab", ["mcTab"], { "disabled": "disabled"; "tooltipTitle": "tooltipTitle"; "tooltipPlacement": "tooltipPlacement"; "textLabel": "label"; "empty": "empty"; "tabId": "tabId"; }, {}, ["templateLabel", "explicitContent"], ["*"], false>;
|
67
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<McTab, "mc-tab", ["mcTab"], { "disabled": "disabled"; "tooltipTitle": "tooltipTitle"; "tooltipPlacement": "tooltipPlacement"; "textLabel": "label"; "empty": "empty"; "tabId": "tabId"; }, {}, ["templateLabel", "explicitContent"], ["*"], false, never>;
|
68
68
|
}
|
@@ -0,0 +1,122 @@
|
|
1
|
+
@use 'sass:meta';
|
2
|
+
@use 'sass:map';
|
3
|
+
|
4
|
+
@use '../core/styles/theming/theming' as *;
|
5
|
+
@use '../core/styles/typography/typography-utils' as *;
|
6
|
+
|
7
|
+
@use '../core/styles/tokens';
|
8
|
+
|
9
|
+
|
10
|
+
$tokens: meta.module-variables(tokens) !default;
|
11
|
+
|
12
|
+
@mixin mc-tag-color($params) {
|
13
|
+
background: map.get($params, background);
|
14
|
+
border-color: map.get($params, border);
|
15
|
+
|
16
|
+
& .mc-tag__text {
|
17
|
+
color: map.get($params, text);
|
18
|
+
}
|
19
|
+
|
20
|
+
&.mc-active,
|
21
|
+
&.mc-focused {
|
22
|
+
border-color: map.get($params, focused);
|
23
|
+
box-shadow: 0 0 0 1px map.get($params, focused);
|
24
|
+
}
|
25
|
+
|
26
|
+
&:not(.mc-disabled) .mc-icon {
|
27
|
+
color: map.get($params, icon);
|
28
|
+
|
29
|
+
&.mc-tag-remove:hover {
|
30
|
+
color: map.get($params, icon_hovered);
|
31
|
+
}
|
32
|
+
}
|
33
|
+
|
34
|
+
&.mc-disabled {
|
35
|
+
border-color: map.get($params, border_disabled);
|
36
|
+
background: map.get($params, background_disabled);
|
37
|
+
|
38
|
+
& .mc-icon,
|
39
|
+
& .mc-tag__text {
|
40
|
+
color: map.get($params, disabled);
|
41
|
+
}
|
42
|
+
|
43
|
+
& .mc-tag-overlay {
|
44
|
+
background: transparent;
|
45
|
+
}
|
46
|
+
}
|
47
|
+
}
|
48
|
+
|
49
|
+
@mixin mc-tag-theme($theme) {
|
50
|
+
$foreground: map.get($theme, foreground);
|
51
|
+
$background: map.get($theme, background);
|
52
|
+
|
53
|
+
$tags: map.get(map.get($theme, components), tags);
|
54
|
+
|
55
|
+
.mc-tag {
|
56
|
+
&.mc-primary {
|
57
|
+
@include mc-tag-color(map.get($tags, primary));
|
58
|
+
}
|
59
|
+
|
60
|
+
&.mc-secondary {
|
61
|
+
@include mc-tag-color(map.get($tags, secondary));
|
62
|
+
}
|
63
|
+
|
64
|
+
&.mc-error {
|
65
|
+
@include mc-tag-color(map.get($tags, error));
|
66
|
+
}
|
67
|
+
|
68
|
+
&:hover,
|
69
|
+
&.mc-hovered {
|
70
|
+
& .mc-tag-overlay {
|
71
|
+
background: map.get($background, overlay-hover);
|
72
|
+
}
|
73
|
+
}
|
74
|
+
|
75
|
+
&.mc-disabled {
|
76
|
+
color: map.get($foreground, text-disabled);
|
77
|
+
|
78
|
+
border-color: transparent;
|
79
|
+
|
80
|
+
background-color: map.get($background, background-disabled);
|
81
|
+
|
82
|
+
& .mc-tag-overlay {
|
83
|
+
background: mc-color($background, overlay-disabled);
|
84
|
+
}
|
85
|
+
}
|
86
|
+
}
|
87
|
+
|
88
|
+
.mc-tag-input {
|
89
|
+
color: map.get($foreground, text);
|
90
|
+
|
91
|
+
&::placeholder {
|
92
|
+
color: map.get($foreground, text-disabled);
|
93
|
+
}
|
94
|
+
|
95
|
+
&::-ms-input-placeholder {
|
96
|
+
color: map.get($foreground, text-disabled);
|
97
|
+
}
|
98
|
+
|
99
|
+
&::-webkit-input-placeholder {
|
100
|
+
color: map.get($foreground, text-disabled);
|
101
|
+
}
|
102
|
+
}
|
103
|
+
}
|
104
|
+
|
105
|
+
@mixin mc-tag-typography($config) {
|
106
|
+
.mc-tag:not(.mc-tag_mono):not(.mc-tag_caps) {
|
107
|
+
@include mc-typography-level-to-styles($config, map.get($tokens, tags-font-default));
|
108
|
+
}
|
109
|
+
|
110
|
+
.mc-tag_mono {
|
111
|
+
@include mc-typography-level-to-styles($config, map.get($tokens, tags-font-mono));
|
112
|
+
}
|
113
|
+
|
114
|
+
.mc-tag_caps {
|
115
|
+
@include mc-typography-level-to-styles($config, map.get($tokens, tags-font-caps));
|
116
|
+
}
|
117
|
+
|
118
|
+
.mc-tag-input {
|
119
|
+
@include mc-typography-level-to-styles($config, map.get($tokens, tag-input-font-default));
|
120
|
+
}
|
121
|
+
}
|
122
|
+
|
package/tags/tag-input.d.ts
CHANGED
@@ -83,5 +83,5 @@ export declare class McTagInput implements McTagTextControl, OnChanges {
|
|
83
83
|
/** Checks whether a keycode is one of the configured separators. */
|
84
84
|
private isSeparatorKey;
|
85
85
|
static ɵfac: i0.ɵɵFactoryDeclaration<McTagInput, [null, null, null, { optional: true; self: true; }, { optional: true; self: true; }]>;
|
86
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<McTagInput, "input[mcTagInputFor]", ["mcTagInput", "mcTagInputFor"], { "separatorKeyCodes": "mcTagInputSeparatorKeyCodes"; "placeholder": "placeholder"; "id": "id"; "tagList": "mcTagInputFor"; "addOnBlur": "mcTagInputAddOnBlur"; "disabled": "disabled"; }, { "tagEnd": "mcTagInputTokenEnd"; }, never, never, false>;
|
86
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<McTagInput, "input[mcTagInputFor]", ["mcTagInput", "mcTagInputFor"], { "separatorKeyCodes": "mcTagInputSeparatorKeyCodes"; "placeholder": "placeholder"; "id": "id"; "tagList": "mcTagInputFor"; "addOnBlur": "mcTagInputAddOnBlur"; "disabled": "disabled"; }, { "tagEnd": "mcTagInputTokenEnd"; }, never, never, false, never>;
|
87
87
|
}
|
@@ -242,5 +242,5 @@ export declare class McTagList extends McTagListMixinBase implements McFormField
|
|
242
242
|
/** Revalidate control. */
|
243
243
|
private revalidate;
|
244
244
|
static ɵfac: i0.ɵɵFactoryDeclaration<McTagList, [null, null, null, { optional: true; }, { optional: true; }, { optional: true; }, { optional: true; self: true; }]>;
|
245
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<McTagList, "mc-tag-list", ["mcTagList"], { "multiple": "multiple"; "compareWith": "compareWith"; "value": "value"; "required": "required"; "placeholder": "placeholder"; "disabled": "disabled"; "selectable": "selectable"; "tabIndex": "tabIndex"; "errorStateMatcher": "errorStateMatcher"; "orientation": "orientation"; }, { "valueChange": "valueChange"; "change": "change"; }, ["cleaner", "tags"], ["*", "mc-cleaner"], false>;
|
245
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<McTagList, "mc-tag-list", ["mcTagList"], { "multiple": "multiple"; "compareWith": "compareWith"; "value": "value"; "required": "required"; "placeholder": "placeholder"; "disabled": "disabled"; "selectable": "selectable"; "tabIndex": "tabIndex"; "errorStateMatcher": "errorStateMatcher"; "orientation": "orientation"; }, { "valueChange": "valueChange"; "change": "change"; }, ["cleaner", "tags"], ["*", "mc-cleaner"], false, never>;
|
246
246
|
}
|
@@ -0,0 +1,52 @@
|
|
1
|
+
@use 'sass:meta';
|
2
|
+
@use 'sass:map';
|
3
|
+
|
4
|
+
@use '../core/styles/tokens';
|
5
|
+
|
6
|
+
|
7
|
+
$tokens: meta.module-variables(tokens) !default;
|
8
|
+
|
9
|
+
.mc-tag-list {
|
10
|
+
display: flex;
|
11
|
+
flex-direction: row;
|
12
|
+
|
13
|
+
box-sizing: border-box;
|
14
|
+
}
|
15
|
+
|
16
|
+
.mc-tag-input {
|
17
|
+
border: none;
|
18
|
+
outline: none;
|
19
|
+
background: transparent;
|
20
|
+
}
|
21
|
+
|
22
|
+
.mc-tags-list__list-container {
|
23
|
+
display: flex;
|
24
|
+
flex-wrap: wrap;
|
25
|
+
flex: 1 1 100%;
|
26
|
+
|
27
|
+
box-sizing: border-box;
|
28
|
+
|
29
|
+
min-width: 0;
|
30
|
+
|
31
|
+
min-height: calc(
|
32
|
+
var(--mc-form-field-size-height, map.get($tokens, form-field-size-height)) -
|
33
|
+
(var(--mc-form-field-size-border-width, map.get($tokens, form-field-size-border-width)) * 2)
|
34
|
+
);
|
35
|
+
|
36
|
+
padding: var(--mc-tag-list-size-padding, map.get($tokens, tag-list-size-padding));
|
37
|
+
|
38
|
+
& .mc-tag-input {
|
39
|
+
max-width: 100%;
|
40
|
+
|
41
|
+
flex: 1 1 auto;
|
42
|
+
|
43
|
+
height: var(--mc-tag-input-size-height, map.get($tokens, tag-input-size-height));
|
44
|
+
margin: var(--mc-tag-input-size-margin, map.get($tokens, tag-input-size-margin));
|
45
|
+
}
|
46
|
+
}
|
47
|
+
|
48
|
+
.mc-tags-list__cleaner {
|
49
|
+
& .mc-cleaner {
|
50
|
+
height: 30px;
|
51
|
+
}
|
52
|
+
}
|
package/tags/tag.component.d.ts
CHANGED
@@ -20,7 +20,7 @@ export declare class McTagSelectionChange {
|
|
20
20
|
*/
|
21
21
|
export declare class McTagAvatar {
|
22
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<McTagAvatar, never>;
|
23
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<McTagAvatar, "mc-tag-avatar, [mcTagAvatar]", never, {}, {}, never, never, false>;
|
23
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<McTagAvatar, "mc-tag-avatar, [mcTagAvatar]", never, {}, {}, never, never, false, never>;
|
24
24
|
}
|
25
25
|
/**
|
26
26
|
* Dummy directive to add CSS class to tag trailing icon.
|
@@ -28,7 +28,7 @@ export declare class McTagAvatar {
|
|
28
28
|
*/
|
29
29
|
export declare class McTagTrailingIcon {
|
30
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<McTagTrailingIcon, never>;
|
31
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<McTagTrailingIcon, "mc-tag-trailing-icon, [mcTagTrailingIcon]", never, {}, {}, never, never, false>;
|
31
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<McTagTrailingIcon, "mc-tag-trailing-icon, [mcTagTrailingIcon]", never, {}, {}, never, never, false, never>;
|
32
32
|
}
|
33
33
|
/** @docs-private */
|
34
34
|
export declare class McTagBase {
|
@@ -115,7 +115,7 @@ export declare class McTag extends McTagMixinBase implements IFocusableOption, O
|
|
115
115
|
blur(): void;
|
116
116
|
private dispatchSelectionChange;
|
117
117
|
static ɵfac: i0.ɵɵFactoryDeclaration<McTag, never>;
|
118
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<McTag, "mc-tag, [mc-tag], mc-basic-tag, [mc-basic-tag]", ["mcTag"], { "color": "color"; "selected": "selected"; "value": "value"; "selectable": "selectable"; "removable": "removable"; "tabindex": "tabindex"; "disabled": "disabled"; }, { "selectionChange": "selectionChange"; "destroyed": "destroyed"; "removed": "removed"; }, ["avatar", "trailingIcon", "removeIcon", "contentChildren"], ["[mc-icon]:not([mcTagRemove])", "*", "[mcTagRemove]"], false>;
|
118
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<McTag, "mc-tag, [mc-tag], mc-basic-tag, [mc-basic-tag]", ["mcTag"], { "color": "color"; "selected": "selected"; "value": "value"; "selectable": "selectable"; "removable": "removable"; "tabindex": "tabindex"; "disabled": "disabled"; }, { "selectionChange": "selectionChange"; "destroyed": "destroyed"; "removed": "removed"; }, ["avatar", "trailingIcon", "removeIcon", "contentChildren"], ["[mc-icon]:not([mcTagRemove])", "*", "[mcTagRemove]"], false, never>;
|
119
119
|
}
|
120
120
|
/**
|
121
121
|
*
|
@@ -135,5 +135,5 @@ export declare class McTagRemove {
|
|
135
135
|
/** Calls the parent tag's public `remove()` method if applicable. */
|
136
136
|
handleClick(event: Event): void;
|
137
137
|
static ɵfac: i0.ɵɵFactoryDeclaration<McTagRemove, never>;
|
138
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<McTagRemove, "[mcTagRemove]", never, {}, {}, never, never, false>;
|
138
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<McTagRemove, "[mcTagRemove]", never, {}, {}, never, never, false, never>;
|
139
139
|
}
|
package/tags/tag.scss
ADDED
@@ -0,0 +1,115 @@
|
|
1
|
+
@use 'sass:meta';
|
2
|
+
@use 'sass:map';
|
3
|
+
|
4
|
+
@use '../core/styles/tokens';
|
5
|
+
|
6
|
+
|
7
|
+
$tokens: meta.module-variables(tokens) !default;
|
8
|
+
|
9
|
+
.mc-tag {
|
10
|
+
position: relative;
|
11
|
+
|
12
|
+
display: inline-block;
|
13
|
+
|
14
|
+
max-width: 100%;
|
15
|
+
|
16
|
+
margin: var(--mc-tags-size-margin, map.get($tokens, tags-size-margin));
|
17
|
+
|
18
|
+
height: var(--mc-tags-size-height, map.get($tokens, tags-size-height));
|
19
|
+
|
20
|
+
border: {
|
21
|
+
width: var(--mc-tags-size-border-width, map.get($tokens, tags-size-border-width));
|
22
|
+
style: solid;
|
23
|
+
radius: var(--mc-tags-size-border-radius, map.get($tokens, tags-size-border-radius));
|
24
|
+
}
|
25
|
+
|
26
|
+
cursor: default;
|
27
|
+
|
28
|
+
outline: none;
|
29
|
+
|
30
|
+
box-sizing: border-box;
|
31
|
+
|
32
|
+
& .mc-icon.mc-tag-remove:hover {
|
33
|
+
cursor: pointer;
|
34
|
+
}
|
35
|
+
|
36
|
+
&.mc-disabled .mc-icon.mc-tag-remove:hover {
|
37
|
+
cursor: default;
|
38
|
+
}
|
39
|
+
|
40
|
+
& .mc-tag__text {
|
41
|
+
text-overflow: ellipsis;
|
42
|
+
white-space: nowrap;
|
43
|
+
overflow: hidden;
|
44
|
+
}
|
45
|
+
|
46
|
+
&:not(.mc-tag-with-icon) .mc-tag__text {
|
47
|
+
margin-right: calc(
|
48
|
+
var(--mc-tags-size-text-margin, #{map.get($tokens, tags-size-text-margin)}) -
|
49
|
+
var(--mc-tags-size-border-width, #{map.get($tokens, tags-size-border-width)})
|
50
|
+
);
|
51
|
+
}
|
52
|
+
}
|
53
|
+
|
54
|
+
.mc-tag__wrapper {
|
55
|
+
display: flex;
|
56
|
+
align-items: center;
|
57
|
+
|
58
|
+
height: 100%;
|
59
|
+
|
60
|
+
flex: 1 1 100%;
|
61
|
+
|
62
|
+
/* stylelint-disable no-descending-specificity */
|
63
|
+
.mc-icon.mc-tag-remove {
|
64
|
+
display: flex;
|
65
|
+
align-items: center;
|
66
|
+
justify-content: center;
|
67
|
+
|
68
|
+
flex-shrink: 0;
|
69
|
+
|
70
|
+
height: var(--mc-tags-size-height, map.get($tokens, tags-size-height));
|
71
|
+
|
72
|
+
padding-left: var(--mc-tags-size-icon-padding, map.get($tokens, tags-size-icon-padding));
|
73
|
+
padding-right: var(--mc-tags-size-icon-padding, map.get($tokens, tags-size-icon-padding));
|
74
|
+
}
|
75
|
+
/* stylelint-enable no-descending-specificity */
|
76
|
+
|
77
|
+
.mc-icon_left {
|
78
|
+
margin-right: var(--mc-tags-size-icon-padding, map.get($tokens, tags-size-icon-padding));
|
79
|
+
}
|
80
|
+
|
81
|
+
& > .mc-icon:first-child {
|
82
|
+
margin-left: calc(
|
83
|
+
var(--mc-tags-size-icon-padding, #{map.get($tokens, tags-size-icon-padding)}) -
|
84
|
+
var(--mc-tags-size-border-width, #{map.get($tokens, tags-size-border-width)})
|
85
|
+
);
|
86
|
+
}
|
87
|
+
|
88
|
+
& > .mc-tag__text:last-child {
|
89
|
+
margin-right: calc(
|
90
|
+
var(--mc-tags-size-text-margin, #{map.get($tokens, tags-size-text-margin)}) -
|
91
|
+
var(--mc-tags-size-border-width, #{map.get($tokens, tags-size-border-width)})
|
92
|
+
);
|
93
|
+
}
|
94
|
+
|
95
|
+
& > .mc-tag__text:first-child {
|
96
|
+
margin-left: calc(
|
97
|
+
var(--mc-tags-size-text-margin, #{map.get($tokens, tags-size-text-margin)}) -
|
98
|
+
var(--mc-tags-size-border-width, #{map.get($tokens, tags-size-border-width)})
|
99
|
+
);
|
100
|
+
}
|
101
|
+
}
|
102
|
+
|
103
|
+
.mc-tag-overlay {
|
104
|
+
position: absolute;
|
105
|
+
|
106
|
+
top: -1px;
|
107
|
+
left: -1px;
|
108
|
+
right: -1px;
|
109
|
+
bottom: -1px;
|
110
|
+
|
111
|
+
pointer-events: none;
|
112
|
+
border-radius: inherit;
|
113
|
+
}
|
114
|
+
|
115
|
+
|
@@ -0,0 +1,22 @@
|
|
1
|
+
@use 'sass:meta';
|
2
|
+
@use 'sass:map';
|
3
|
+
|
4
|
+
@use '../core/styles/tokens';
|
5
|
+
|
6
|
+
|
7
|
+
$tokens: meta.module-variables(tokens) !default;
|
8
|
+
|
9
|
+
%mc-textarea-base {
|
10
|
+
background: transparent;
|
11
|
+
margin: 0;
|
12
|
+
border: none;
|
13
|
+
outline: none;
|
14
|
+
|
15
|
+
resize: none;
|
16
|
+
overflow: auto;
|
17
|
+
|
18
|
+
width: 100%;
|
19
|
+
|
20
|
+
box-sizing: border-box;
|
21
|
+
padding: var(--mc-textarea-size-padding, map.get($tokens, textarea-size-padding));
|
22
|
+
}
|
@@ -0,0 +1,40 @@
|
|
1
|
+
@use 'sass:meta';
|
2
|
+
@use 'sass:map';
|
3
|
+
|
4
|
+
@use '../core/styles/theming/theming' as *;
|
5
|
+
@use '../core/styles/typography/typography-utils' as *;
|
6
|
+
|
7
|
+
@use '../core/styles/tokens';
|
8
|
+
|
9
|
+
|
10
|
+
$tokens: meta.module-variables(tokens) !default;
|
11
|
+
|
12
|
+
@mixin mc-textarea-theme($theme) {
|
13
|
+
$foreground: map.get($theme, foreground);
|
14
|
+
|
15
|
+
.mc-textarea {
|
16
|
+
color: map.get($foreground, text);
|
17
|
+
|
18
|
+
&::placeholder {
|
19
|
+
color: map.get($foreground, text-disabled);
|
20
|
+
}
|
21
|
+
|
22
|
+
&::-ms-input-placeholder {
|
23
|
+
color: map.get($foreground, text-disabled);
|
24
|
+
}
|
25
|
+
|
26
|
+
&::-webkit-input-placeholder {
|
27
|
+
color: map.get($foreground, text-disabled);
|
28
|
+
}
|
29
|
+
}
|
30
|
+
}
|
31
|
+
|
32
|
+
@mixin mc-textarea-typography($config) {
|
33
|
+
textarea.mc-textarea {
|
34
|
+
@include mc-typography-level-to-styles($config, map.get($tokens, textarea-font-default));
|
35
|
+
}
|
36
|
+
|
37
|
+
.mc-textarea.mc-textarea_monospace {
|
38
|
+
@include mc-typography-level-to-styles($config, map.get($tokens, textarea-font-mono));
|
39
|
+
}
|
40
|
+
}
|
@@ -110,5 +110,5 @@ export declare class McTextarea extends McTextareaMixinBase implements McFormFie
|
|
110
110
|
/** Checks whether the textarea is invalid based on the native validation. */
|
111
111
|
protected isBadInput(): boolean;
|
112
112
|
static ɵfac: i0.ɵɵFactoryDeclaration<McTextarea, [null, { optional: true; self: true; }, { optional: true; }, { optional: true; }, null, { optional: true; self: true; }, null]>;
|
113
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<McTextarea, "textarea[mcTextarea]", ["mcTextarea"], { "canGrow": "canGrow"; "errorStateMatcher": "errorStateMatcher"; "disabled": "disabled"; "id": "id"; "placeholder": "placeholder"; "required": "required"; "value": "value"; }, {}, never, never, false>;
|
113
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<McTextarea, "textarea[mcTextarea]", ["mcTextarea"], { "canGrow": "canGrow"; "errorStateMatcher": "errorStateMatcher"; "disabled": "disabled"; "id": "id"; "placeholder": "placeholder"; "required": "required"; "value": "value"; }, {}, never, never, false, never>;
|
114
114
|
}
|
@@ -0,0 +1,32 @@
|
|
1
|
+
@use 'sass:meta';
|
2
|
+
@use 'sass:map';
|
3
|
+
|
4
|
+
@use 'textarea-base' as *;
|
5
|
+
|
6
|
+
@use '../core/styles/tokens';
|
7
|
+
|
8
|
+
|
9
|
+
$tokens: meta.module-variables(tokens) !default;
|
10
|
+
|
11
|
+
.mc-textarea {
|
12
|
+
@extend %mc-textarea-base;
|
13
|
+
|
14
|
+
display: inline-block;
|
15
|
+
-webkit-appearance: none; // Chrome textaria height sizing fix
|
16
|
+
vertical-align: bottom; // Chrome textaria height sizing fix
|
17
|
+
|
18
|
+
&:not(.mc-textarea-resizable) {
|
19
|
+
box-sizing: border-box;
|
20
|
+
overflow-y: hidden;
|
21
|
+
}
|
22
|
+
|
23
|
+
&.mc-textarea-resizable {
|
24
|
+
resize: vertical;
|
25
|
+
min-height: var(--mc-textarea-size-min-height, map.get($tokens, textarea-size-min-height));
|
26
|
+
}
|
27
|
+
}
|
28
|
+
|
29
|
+
/* remove default red border for HTML5 validation invalid fields in Firefox */
|
30
|
+
.mc-textarea:invalid {
|
31
|
+
box-shadow: unset;
|
32
|
+
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { ElementRef, EventEmitter, OnDestroy, Renderer2 } from '@angular/core';
|
2
2
|
import { AbstractControl, ControlValueAccessor, ValidationErrors, Validator } from '@angular/forms';
|
3
|
-
import { DateAdapter } from '@ptsecurity/
|
3
|
+
import { DateAdapter } from '@ptsecurity/mosaic/core';
|
4
4
|
import { McFormFieldControl } from '@ptsecurity/mosaic/form-field';
|
5
5
|
import { McWarningTooltipTrigger } from '@ptsecurity/mosaic/tooltip';
|
6
6
|
import { Subject } from 'rxjs';
|
@@ -137,5 +137,5 @@ export declare class McTimepicker<D> implements McFormFieldControl<D>, ControlVa
|
|
137
137
|
private setControl;
|
138
138
|
private validatorOnChange;
|
139
139
|
static ɵfac: i0.ɵɵFactoryDeclaration<McTimepicker<any>, [null, null, { optional: true; }]>;
|
140
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<McTimepicker<any>, "input[mcTimepicker]", ["mcTimepicker"], { "placeholder": "placeholder"; "disabled": "disabled"; "id": "id"; "required": "required"; "format": "format"; "min": "min"; "max": "max"; "value": "value"; "mcValidationTooltip": "mcValidationTooltip"; }, { "incorrectInput": "incorrectInput"; }, never, never, false>;
|
140
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<McTimepicker<any>, "input[mcTimepicker]", ["mcTimepicker"], { "placeholder": "placeholder"; "disabled": "disabled"; "id": "id"; "required": "required"; "format": "format"; "min": "min"; "max": "max"; "value": "value"; "mcValidationTooltip": "mcValidationTooltip"; }, { "incorrectInput": "incorrectInput"; }, never, never, false, never>;
|
141
141
|
}
|
@@ -0,0 +1,18 @@
|
|
1
|
+
@use 'sass:meta';
|
2
|
+
@use 'sass:map';
|
3
|
+
|
4
|
+
@use '../core/styles/tokens';
|
5
|
+
|
6
|
+
|
7
|
+
$tokens: meta.module-variables(tokens) !default;
|
8
|
+
|
9
|
+
.mc-timepicker {
|
10
|
+
padding-right: calc(
|
11
|
+
var(--mc-timepicker-size-padding-right, #{map.get($tokens, timepicker-size-padding-right)}) -
|
12
|
+
var(--mc-form-field-size-border-width, #{map.get($tokens, form-field-size-border-width)})
|
13
|
+
);
|
14
|
+
}
|
15
|
+
|
16
|
+
.mc-form-field-type-timepicker {
|
17
|
+
width: auto;
|
18
|
+
}
|
@@ -0,0 +1,36 @@
|
|
1
|
+
@use 'sass:meta';
|
2
|
+
@use 'sass:map';
|
3
|
+
|
4
|
+
@use '../core/styles/typography/typography-utils' as *;
|
5
|
+
|
6
|
+
@use '../core/styles/tokens';
|
7
|
+
|
8
|
+
|
9
|
+
$tokens: meta.module-variables(tokens) !default;
|
10
|
+
|
11
|
+
@mixin mc-timezone-option-theme($theme) {
|
12
|
+
$timezone: map.get(map.get($theme, components), timezone);
|
13
|
+
|
14
|
+
.mc-timezone-option__offset,
|
15
|
+
.mc-timezone-option__city {
|
16
|
+
color: map.get($timezone, text);
|
17
|
+
}
|
18
|
+
|
19
|
+
.mc-timezone-option__cities {
|
20
|
+
color: map.get($timezone, caption);
|
21
|
+
}
|
22
|
+
}
|
23
|
+
|
24
|
+
@mixin mc-timezone-option-typography($config) {
|
25
|
+
.mc-timezone-option__offset {
|
26
|
+
@include mc-typography-level-to-styles($config, map.get($tokens, timezone-option-font-offset-text));
|
27
|
+
}
|
28
|
+
|
29
|
+
.mc-timezone-option__city {
|
30
|
+
@include mc-typography-level-to-styles($config, map.get($tokens, timezone-option-font-text));
|
31
|
+
}
|
32
|
+
|
33
|
+
.mc-timezone-option__cities {
|
34
|
+
@include mc-typography-level-to-styles($config, map.get($tokens, timezone-option-font-caption));
|
35
|
+
}
|
36
|
+
}
|
@@ -11,5 +11,5 @@ export declare class McTimezoneOption extends McOption {
|
|
11
11
|
private _timezone;
|
12
12
|
get viewValue(): string;
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<McTimezoneOption, never>;
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<McTimezoneOption, "mc-timezone-option", ["mcTimezoneOption"], { "highlightText": "highlightText"; "timezone": "timezone"; }, {}, never, never, false>;
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<McTimezoneOption, "mc-timezone-option", ["mcTimezoneOption"], { "highlightText": "highlightText"; "timezone": "timezone"; }, {}, never, never, false, never>;
|
15
15
|
}
|
@@ -0,0 +1,35 @@
|
|
1
|
+
@use 'sass:meta';
|
2
|
+
@use 'sass:map';
|
3
|
+
|
4
|
+
@use '../core/styles/tokens';
|
5
|
+
|
6
|
+
|
7
|
+
$tokens: meta.module-variables(tokens) !default;
|
8
|
+
|
9
|
+
.mc-timezone-option.mc-option {
|
10
|
+
display: flex;
|
11
|
+
flex-direction: row;
|
12
|
+
align-items: flex-start;
|
13
|
+
|
14
|
+
padding: var(--mc-timezone-option-size-padding, map.get($tokens, timezone-option-size-padding));
|
15
|
+
column-gap: var(--mc-timezone-option-size-column-gap, map.get($tokens, timezone-option-size-column-gap));
|
16
|
+
}
|
17
|
+
|
18
|
+
.mc-timezone-option__label {
|
19
|
+
display: flex;
|
20
|
+
flex-direction: column;
|
21
|
+
justify-content: stretch;
|
22
|
+
flex: 1;
|
23
|
+
min-width: 0;
|
24
|
+
}
|
25
|
+
|
26
|
+
.mc-timezone-option__cities {
|
27
|
+
display: -webkit-box;
|
28
|
+
-webkit-box-orient: vertical;
|
29
|
+
max-height: var(--mc-timezone-option-size-max-height, map.get($tokens, timezone-option-size-max-height));
|
30
|
+
overflow: hidden;
|
31
|
+
}
|
32
|
+
|
33
|
+
.mc-select__panel .mc-timezone-option {
|
34
|
+
height: var(--mc-timezone-option-size-height, map.get($tokens, timezone-option-size-height));
|
35
|
+
}
|
@@ -16,5 +16,5 @@ export declare class McTimezoneOptionTooltip extends McTooltipTrigger implements
|
|
16
16
|
onMouseLeave(): void;
|
17
17
|
private checkTooltipDisabled;
|
18
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<McTimezoneOptionTooltip, [null, null, null, null, null, null, null, null, { optional: true; }]>;
|
19
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<McTimezoneOptionTooltip, "mc-timezone-option", never, {}, {}, never, never, false>;
|
19
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<McTimezoneOptionTooltip, "mc-timezone-option", never, {}, {}, never, never, false, never>;
|
20
20
|
}
|