@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
@@ -0,0 +1,197 @@
|
|
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
|
+
%base-focus-frame {
|
10
|
+
display: block;
|
11
|
+
content: "";
|
12
|
+
|
13
|
+
position: absolute;
|
14
|
+
|
15
|
+
top: 0;
|
16
|
+
right: calc(-1 * var(--mc-tabs-size-border-width, #{map.get($tokens, tabs-size-border-width)}));
|
17
|
+
bottom: calc(-1 * var(--mc-tabs-size-border-width, #{map.get($tokens, tabs-size-border-width)}));
|
18
|
+
left: calc(-1 * var(--mc-tabs-size-border-width, #{map.get($tokens, tabs-size-border-width)}));
|
19
|
+
}
|
20
|
+
|
21
|
+
%horizontal-focus {
|
22
|
+
&:after {
|
23
|
+
border: {
|
24
|
+
width: calc(var(--mc-tabs-size-border-width, #{map.get($tokens, tabs-size-border-width)}) * 2);
|
25
|
+
style: solid;
|
26
|
+
top: {
|
27
|
+
left-radius: var(--mc-tabs-size-border-radius, #{map.get($tokens, tabs-size-border-radius)});
|
28
|
+
right-radius: var(--mc-tabs-size-border-radius, #{map.get($tokens, tabs-size-border-radius)});
|
29
|
+
}
|
30
|
+
};
|
31
|
+
|
32
|
+
border-bottom-color: transparent;
|
33
|
+
}
|
34
|
+
}
|
35
|
+
|
36
|
+
|
37
|
+
@mixin tab-label {
|
38
|
+
position: relative;
|
39
|
+
|
40
|
+
box-sizing: border-box;
|
41
|
+
|
42
|
+
display: inline-flex;
|
43
|
+
justify-content: center;
|
44
|
+
align-items: center;
|
45
|
+
|
46
|
+
height: var(--mc-tabs-size-height, map.get($tokens, tabs-size-height));
|
47
|
+
|
48
|
+
text-align: center;
|
49
|
+
white-space: nowrap;
|
50
|
+
|
51
|
+
cursor: pointer;
|
52
|
+
|
53
|
+
padding: {
|
54
|
+
right: var(--mc-tabs-size-padding-horizontal, map.get($tokens, tabs-size-padding-horizontal));
|
55
|
+
left: var(--mc-tabs-size-padding-horizontal, map.get($tokens, tabs-size-padding-horizontal));
|
56
|
+
}
|
57
|
+
|
58
|
+
outline: none;
|
59
|
+
|
60
|
+
&.mc-active {
|
61
|
+
cursor: default;
|
62
|
+
|
63
|
+
&:before {
|
64
|
+
display: block;
|
65
|
+
content: "";
|
66
|
+
|
67
|
+
position: absolute;
|
68
|
+
}
|
69
|
+
}
|
70
|
+
|
71
|
+
&.cdk-keyboard-focused {
|
72
|
+
z-index: 1;
|
73
|
+
|
74
|
+
&:after {
|
75
|
+
@extend %base-focus-frame;
|
76
|
+
}
|
77
|
+
}
|
78
|
+
|
79
|
+
&:first-child.cdk-keyboard-focused:after {
|
80
|
+
left: 0;
|
81
|
+
}
|
82
|
+
|
83
|
+
&:last-child.cdk-keyboard-focused:after {
|
84
|
+
right: 0;
|
85
|
+
}
|
86
|
+
|
87
|
+
&[disabled] {
|
88
|
+
pointer-events: none;
|
89
|
+
}
|
90
|
+
|
91
|
+
& .mc-tab-label__content > .mc-icon {
|
92
|
+
&.mc-icon_left {
|
93
|
+
margin-right: var(--mc-tabs-size-label-icon-margin, map.get($tokens, tabs-size-label-icon-margin));
|
94
|
+
}
|
95
|
+
|
96
|
+
&.mc-icon_right {
|
97
|
+
margin-left: var(--mc-tabs-size-label-icon-margin, map.get($tokens, tabs-size-label-icon-margin));
|
98
|
+
}
|
99
|
+
}
|
100
|
+
|
101
|
+
&.mc-tab-label_horizontal {
|
102
|
+
border-bottom: {
|
103
|
+
width: var(--mc-tabs-size-border-width, map.get($tokens, tabs-size-border-width));
|
104
|
+
style: solid;
|
105
|
+
}
|
106
|
+
|
107
|
+
&.mc-active:before {
|
108
|
+
bottom: calc(-1 * var(--mc-tabs-size-border-width, #{map.get($tokens, tabs-size-border-width)}));
|
109
|
+
left: 0;
|
110
|
+
right: 0;
|
111
|
+
|
112
|
+
height: var(--mc-tabs-size-highlight-height, #{map.get($tokens, tabs-size-highlight-height)});
|
113
|
+
}
|
114
|
+
|
115
|
+
&.cdk-keyboard-focused:after {
|
116
|
+
@extend %horizontal-focus;
|
117
|
+
}
|
118
|
+
}
|
119
|
+
|
120
|
+
&.mc-tab-label_vertical {
|
121
|
+
justify-content: flex-start;
|
122
|
+
|
123
|
+
&.mc-active:before {
|
124
|
+
top: 0;
|
125
|
+
bottom: 0;
|
126
|
+
left: calc(-1 * var(--mc-tabs-size-border-width, #{map.get($tokens, tabs-size-border-width)}));
|
127
|
+
|
128
|
+
width: var(--mc-tabs-size-highlight-height, #{map.get($tokens, tabs-size-highlight-height) + 1px});
|
129
|
+
}
|
130
|
+
|
131
|
+
&.cdk-keyboard-focused:after {
|
132
|
+
right: 0;
|
133
|
+
left: 0;
|
134
|
+
|
135
|
+
border: {
|
136
|
+
width: calc(var(--mc-tabs-size-border-width, #{map.get($tokens, tabs-size-border-width)}) * 2);
|
137
|
+
style: solid;
|
138
|
+
}
|
139
|
+
}
|
140
|
+
|
141
|
+
& .mc-tab-label__content {
|
142
|
+
overflow: hidden;
|
143
|
+
text-overflow: ellipsis;
|
144
|
+
white-space: nowrap;
|
145
|
+
}
|
146
|
+
}
|
147
|
+
}
|
148
|
+
|
149
|
+
@mixin tab-label-old {
|
150
|
+
border-bottom: {
|
151
|
+
width: var(--mc-tabs-size-border-width, map.get($tokens, tabs-size-border-width));
|
152
|
+
style: solid;
|
153
|
+
}
|
154
|
+
|
155
|
+
border: {
|
156
|
+
width: var(--mc-tabs-size-border-width, #{map.get($tokens, tabs-size-border-width)});
|
157
|
+
style: solid;
|
158
|
+
|
159
|
+
top: {
|
160
|
+
left-radius: var(--mc-tabs-size-border-radius, #{map.get($tokens, tabs-size-border-radius)});
|
161
|
+
right-radius: var(--mc-tabs-size-border-radius, #{map.get($tokens, tabs-size-border-radius)});
|
162
|
+
}
|
163
|
+
|
164
|
+
left: none;
|
165
|
+
left-color: transparent;
|
166
|
+
right: none;
|
167
|
+
right-color: transparent;
|
168
|
+
}
|
169
|
+
|
170
|
+
&.mc-active {
|
171
|
+
border: {
|
172
|
+
width: var(--mc-tabs-size-border-width, #{map.get($tokens, tabs-size-border-width)});
|
173
|
+
style: solid;
|
174
|
+
}
|
175
|
+
|
176
|
+
padding-right: calc(
|
177
|
+
var(--mc-tabs-size-padding-horizontal, #{map.get($tokens, tabs-size-padding-horizontal)}) -
|
178
|
+
var(--mc-tabs-size-border-width, #{map.get($tokens, tabs-size-border-width)})
|
179
|
+
);
|
180
|
+
|
181
|
+
padding-left: calc(
|
182
|
+
var(--mc-tabs-size-padding-horizontal, #{map.get($tokens, tabs-size-padding-horizontal)}) -
|
183
|
+
var(--mc-tabs-size-border-width, #{map.get($tokens, tabs-size-border-width)})
|
184
|
+
);
|
185
|
+
|
186
|
+
&.cdk-keyboard-focused:after {
|
187
|
+
right: calc(-2 * var(--mc-tabs-size-border-width, #{map.get($tokens, tabs-size-border-width)}));
|
188
|
+
left: calc(-2 * var(--mc-tabs-size-border-width, #{map.get($tokens, tabs-size-border-width)}));
|
189
|
+
}
|
190
|
+
}
|
191
|
+
|
192
|
+
&.cdk-keyboard-focused:after {
|
193
|
+
@extend %horizontal-focus;
|
194
|
+
|
195
|
+
top: -1px
|
196
|
+
}
|
197
|
+
}
|
@@ -0,0 +1,241 @@
|
|
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
|
+
//noinspection ALL
|
12
|
+
@mixin mc-tabs-theme($theme) {
|
13
|
+
$foreground: map.get($theme, foreground);
|
14
|
+
$background: map.get($theme, background);
|
15
|
+
$states: map.get($theme, states);
|
16
|
+
|
17
|
+
$tabs: map.get(map.get($theme, components), tabs);
|
18
|
+
$vertical-tabs: map.get(map.get($theme, components), vertical-tabs);
|
19
|
+
|
20
|
+
.mc-tab-group_vertical .mc-tab-header__content {
|
21
|
+
border-right-color: map.get($foreground, divider);
|
22
|
+
}
|
23
|
+
|
24
|
+
.mc-tab-header__pagination {
|
25
|
+
border-bottom-color: map.get($tabs, border);
|
26
|
+
|
27
|
+
&:hover {
|
28
|
+
background: map.get($background, overlay-hover);
|
29
|
+
|
30
|
+
& .mc-icon {
|
31
|
+
color: map.get($foreground, text);
|
32
|
+
}
|
33
|
+
}
|
34
|
+
|
35
|
+
&:active {
|
36
|
+
background: map.get($foreground, divider);
|
37
|
+
}
|
38
|
+
|
39
|
+
&.mc-tab-header__pagination_before {
|
40
|
+
border-right-color: map.get($foreground, divider);
|
41
|
+
}
|
42
|
+
|
43
|
+
&.mc-tab-header__pagination_after {
|
44
|
+
border-left-color: map.get($foreground, divider);
|
45
|
+
}
|
46
|
+
|
47
|
+
&[disabled],
|
48
|
+
&.mc-disabled {
|
49
|
+
pointer-events: none;
|
50
|
+
|
51
|
+
& .mc-icon {
|
52
|
+
color: map.get($foreground, text-disabled);
|
53
|
+
}
|
54
|
+
}
|
55
|
+
}
|
56
|
+
|
57
|
+
/* stylelint-disable no-descending-specificity */
|
58
|
+
.mc-tab-label_old {
|
59
|
+
color: map.get($foreground, text);
|
60
|
+
|
61
|
+
border-top-color: transparent;
|
62
|
+
border-bottom-color: map.get($tabs, border);
|
63
|
+
|
64
|
+
&.cdk-keyboard-focused:after {
|
65
|
+
border-color: map.get(map.get($theme, states), focused-color);
|
66
|
+
border-bottom-color: transparent;
|
67
|
+
}
|
68
|
+
|
69
|
+
&.mc-tab-label_empty {
|
70
|
+
color: map.get($tabs, state-empty-text);
|
71
|
+
|
72
|
+
& .mc-icon {
|
73
|
+
color: map.get($tabs, state-empty-icon);
|
74
|
+
}
|
75
|
+
}
|
76
|
+
|
77
|
+
&:hover {
|
78
|
+
background: map.get($background, overlay-hover);
|
79
|
+
|
80
|
+
color: map.get($tabs, state-hover-text);
|
81
|
+
|
82
|
+
& .mc-icon {
|
83
|
+
color: map.get($tabs, state-hover-icon);
|
84
|
+
}
|
85
|
+
}
|
86
|
+
|
87
|
+
&.mc-active {
|
88
|
+
border: {
|
89
|
+
color: map.get($tabs, border);
|
90
|
+
bottom-color: transparent;
|
91
|
+
}
|
92
|
+
}
|
93
|
+
|
94
|
+
&[disabled],
|
95
|
+
&.mc-disabled {
|
96
|
+
cursor: default;
|
97
|
+
|
98
|
+
color: map.get($tabs, state-disabled-text);
|
99
|
+
|
100
|
+
& .mc-icon {
|
101
|
+
color: map.get($tabs, state-disabled-icon);
|
102
|
+
}
|
103
|
+
}
|
104
|
+
}
|
105
|
+
|
106
|
+
.mc-tab-link,
|
107
|
+
.mc-tab-label_horizontal {
|
108
|
+
color: map.get($tabs, state-normal-text);
|
109
|
+
|
110
|
+
& .mc-icon {
|
111
|
+
color: map.get($tabs, state-normal-icon);
|
112
|
+
}
|
113
|
+
|
114
|
+
border-bottom-color: map.get($tabs, border);
|
115
|
+
|
116
|
+
&.cdk-keyboard-focused:after {
|
117
|
+
border-color: map.get(map.get($theme, states), focused-color);
|
118
|
+
border-bottom-color: transparent;
|
119
|
+
}
|
120
|
+
|
121
|
+
&.mc-tab-label_empty {
|
122
|
+
color: map.get($tabs, state-empty-text);
|
123
|
+
|
124
|
+
& .mc-icon {
|
125
|
+
color: map.get($tabs, state-empty-icon);
|
126
|
+
}
|
127
|
+
}
|
128
|
+
|
129
|
+
&.mc-active {
|
130
|
+
border-bottom-color: transparent;
|
131
|
+
|
132
|
+
color: map.get($tabs, state-normal-text);
|
133
|
+
|
134
|
+
& .mc-icon {
|
135
|
+
color: map.get($tabs, state-normal-icon);
|
136
|
+
}
|
137
|
+
|
138
|
+
&:before {
|
139
|
+
background-color: map.get($tabs, state-active-marker);
|
140
|
+
}
|
141
|
+
}
|
142
|
+
|
143
|
+
&:hover {
|
144
|
+
background: map.get($background, overlay-hover);
|
145
|
+
|
146
|
+
color: map.get($tabs, state-hover-text);
|
147
|
+
|
148
|
+
& .mc-icon {
|
149
|
+
color: map.get($tabs, state-hover-icon);
|
150
|
+
}
|
151
|
+
}
|
152
|
+
|
153
|
+
&[disabled],
|
154
|
+
&.mc-disabled {
|
155
|
+
cursor: default;
|
156
|
+
|
157
|
+
color: map.get($tabs, state-disabled-text);
|
158
|
+
|
159
|
+
&:before {
|
160
|
+
opacity: map.get($tabs, state-disabled-marker-opacity);
|
161
|
+
}
|
162
|
+
|
163
|
+
& .mc-icon {
|
164
|
+
color: map.get($tabs, state-disabled-icon);
|
165
|
+
}
|
166
|
+
}
|
167
|
+
}
|
168
|
+
|
169
|
+
.mc-tab-label_vertical {
|
170
|
+
background: map.get($vertical-tabs, state-normal-background);
|
171
|
+
color: map.get($tabs, state-normal-text);
|
172
|
+
|
173
|
+
& .mc-icon {
|
174
|
+
color: map.get($tabs, state-normal-icon);
|
175
|
+
}
|
176
|
+
|
177
|
+
&.cdk-keyboard-focused:after {
|
178
|
+
border-color: map.get(map.get($theme, states), focused-color);
|
179
|
+
}
|
180
|
+
|
181
|
+
&.mc-tab-label_empty {
|
182
|
+
color: map.get($tabs, state-empty-text);
|
183
|
+
|
184
|
+
& .mc-icon {
|
185
|
+
color: map.get($tabs, state-empty-icon);
|
186
|
+
}
|
187
|
+
}
|
188
|
+
|
189
|
+
&:hover {
|
190
|
+
background: map.get($vertical-tabs, state-hover-background);
|
191
|
+
|
192
|
+
color: map.get($tabs, state-hover-text);
|
193
|
+
|
194
|
+
& .mc-icon {
|
195
|
+
color: map.get($tabs, state-hover-icon);
|
196
|
+
}
|
197
|
+
}
|
198
|
+
|
199
|
+
&.mc-active {
|
200
|
+
color: map.get($tabs, state-normal-text);
|
201
|
+
background: map.get($states, selected-color);
|
202
|
+
|
203
|
+
& .mc-icon {
|
204
|
+
color: map.get($tabs, state-normal-icon);
|
205
|
+
}
|
206
|
+
|
207
|
+
&:before {
|
208
|
+
background-color: map.get($tabs, state-active-marker);
|
209
|
+
}
|
210
|
+
|
211
|
+
&:hover {
|
212
|
+
background: map.get($vertical-tabs, state-hover-selected-background);
|
213
|
+
|
214
|
+
& .mc-icon {
|
215
|
+
color: map.get($tabs, state-hover-icon);
|
216
|
+
}
|
217
|
+
}
|
218
|
+
}
|
219
|
+
|
220
|
+
&[disabled],
|
221
|
+
&.mc-disabled {
|
222
|
+
cursor: default;
|
223
|
+
background: map.get($vertical-tabs, state-normal-background);
|
224
|
+
|
225
|
+
color: map.get($tabs, state-disabled-text);
|
226
|
+
|
227
|
+
& .mc-icon {
|
228
|
+
color: map.get($tabs, state-disabled-icon);
|
229
|
+
}
|
230
|
+
}
|
231
|
+
}
|
232
|
+
/* stylelint-enable no-descending-specificity */
|
233
|
+
}
|
234
|
+
|
235
|
+
@mixin mc-tabs-typography($config) {
|
236
|
+
.mc-tab-label,
|
237
|
+
.mc-tab-label_old,
|
238
|
+
.mc-tab-link {
|
239
|
+
@include mc-typography-level-to-styles($config, map.get($tokens, tabs-font-default));
|
240
|
+
}
|
241
|
+
}
|
@@ -175,5 +175,5 @@ export declare abstract class McPaginatedTabHeader implements AfterContentChecke
|
|
175
175
|
*/
|
176
176
|
private scrollTo;
|
177
177
|
static ɵfac: i0.ɵɵFactoryDeclaration<McPaginatedTabHeader, [null, null, null, null, null, { optional: true; }, { optional: true; }]>;
|
178
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<McPaginatedTabHeader, never, never, { "disablePagination": "disablePagination"; }, {}, never, never, false>;
|
178
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<McPaginatedTabHeader, never, never, { "disablePagination": "disablePagination"; }, {}, never, never, false, never>;
|
179
179
|
}
|
@@ -73,7 +73,7 @@ export declare class McTabBody implements OnInit, OnDestroy {
|
|
73
73
|
*/
|
74
74
|
private computePositionFromOrigin;
|
75
75
|
static ɵfac: i0.ɵɵFactoryDeclaration<McTabBody, [null, { optional: true; }, null]>;
|
76
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<McTabBody, "mc-tab-body", never, { "position": "position"; "content": "content"; "origin": "origin"; "animationDuration": "animationDuration"; }, { "onCentering": "onCentering"; "beforeCentering": "beforeCentering"; "afterLeavingCenter": "afterLeavingCenter"; "onCentered": "onCentered"; }, never, never, false>;
|
76
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<McTabBody, "mc-tab-body", never, { "position": "position"; "content": "content"; "origin": "origin"; "animationDuration": "animationDuration"; }, { "onCentering": "onCentering"; "beforeCentering": "beforeCentering"; "afterLeavingCenter": "afterLeavingCenter"; "onCentered": "onCentered"; }, never, never, false, never>;
|
77
77
|
}
|
78
78
|
/**
|
79
79
|
* The portal host directive for the contents of the tab.
|
@@ -91,5 +91,5 @@ export declare class McTabBodyPortal extends CdkPortalOutlet implements OnInit,
|
|
91
91
|
/** Clean up centering subscription. */
|
92
92
|
ngOnDestroy(): void;
|
93
93
|
static ɵfac: i0.ɵɵFactoryDeclaration<McTabBodyPortal, never>;
|
94
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<McTabBodyPortal, "[mcTabBodyHost]", never, {}, {}, never, never, false>;
|
94
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<McTabBodyPortal, "[mcTabBodyHost]", never, {}, {}, never, never, false, never>;
|
95
95
|
}
|
@@ -5,5 +5,5 @@ export declare class McTabContent {
|
|
5
5
|
template: TemplateRef<any>;
|
6
6
|
constructor(template: TemplateRef<any>);
|
7
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<McTabContent, never>;
|
8
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<McTabContent, "[mcTabContent]", never, {}, {}, never, never, false>;
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<McTabContent, "[mcTabContent]", never, {}, {}, never, never, false, never>;
|
9
9
|
}
|
@@ -6,23 +6,23 @@ import { McTab } from './tab.component';
|
|
6
6
|
import * as i0 from "@angular/core";
|
7
7
|
export declare class McOldTabsCssStyler {
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<McOldTabsCssStyler, never>;
|
9
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<McOldTabsCssStyler, "mc-tab-group[mc-old-tabs]", never, {}, {}, never, never, false>;
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<McOldTabsCssStyler, "mc-tab-group[mc-old-tabs]", never, {}, {}, never, never, false, never>;
|
10
10
|
}
|
11
11
|
export declare class McAlignTabsCenterCssStyler {
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<McAlignTabsCenterCssStyler, never>;
|
13
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<McAlignTabsCenterCssStyler, "mc-tab-group[mc-align-tabs-center], [mc-tab-nav-bar][mc-align-tabs-center]", never, {}, {}, never, never, false>;
|
13
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<McAlignTabsCenterCssStyler, "mc-tab-group[mc-align-tabs-center], [mc-tab-nav-bar][mc-align-tabs-center]", never, {}, {}, never, never, false, never>;
|
14
14
|
}
|
15
15
|
export declare class McAlignTabsEndCssStyler {
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<McAlignTabsEndCssStyler, never>;
|
17
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<McAlignTabsEndCssStyler, "mc-tab-group[mc-align-tabs-end], [mc-tab-nav-bar][mc-align-tabs-end]", never, {}, {}, never, never, false>;
|
17
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<McAlignTabsEndCssStyler, "mc-tab-group[mc-align-tabs-end], [mc-tab-nav-bar][mc-align-tabs-end]", never, {}, {}, never, never, false, never>;
|
18
18
|
}
|
19
19
|
export declare class McStretchTabsCssStyler {
|
20
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<McStretchTabsCssStyler, never>;
|
21
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<McStretchTabsCssStyler, "mc-tab-group[mc-stretch-tabs], [mc-tab-nav-bar][mc-stretch-tabs]", never, {}, {}, never, never, false>;
|
21
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<McStretchTabsCssStyler, "mc-tab-group[mc-stretch-tabs], [mc-tab-nav-bar][mc-stretch-tabs]", never, {}, {}, never, never, false, never>;
|
22
22
|
}
|
23
23
|
export declare class McVerticalTabsCssStyler {
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<McVerticalTabsCssStyler, never>;
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<McVerticalTabsCssStyler, "mc-tab-group[vertical], [mc-tab-nav-bar][vertical]", never, {}, {}, never, never, false>;
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<McVerticalTabsCssStyler, "mc-tab-group[vertical], [mc-tab-nav-bar][vertical]", never, {}, {}, never, never, false, never>;
|
26
26
|
}
|
27
27
|
/** A simple change event emitted on focus or selection changes. */
|
28
28
|
export declare class McTabChangeEvent {
|
@@ -130,5 +130,5 @@ export declare class McTabGroup extends McTabGroupMixinBase implements AfterCont
|
|
130
130
|
/** Clamps the given index to the bounds of 0 and the tabs length. */
|
131
131
|
private clampTabIndex;
|
132
132
|
static ɵfac: i0.ɵɵFactoryDeclaration<McTabGroup, [null, null, { attribute: "mc-old-tabs"; }, { attribute: "vertical"; }, { optional: true; }]>;
|
133
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<McTabGroup, "mc-tab-group", ["mcTabGroup"], { "disabled": "disabled"; "dynamicHeight": "dynamicHeight"; "selectedIndex": "selectedIndex"; "headerPosition": "headerPosition"; "animationDuration": "animationDuration"; }, { "selectedIndexChange": "selectedIndexChange"; "focusChange": "focusChange"; "animationDone": "animationDone"; "selectedTabChange": "selectedTabChange"; }, ["tabs"], never, false>;
|
133
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<McTabGroup, "mc-tab-group", ["mcTabGroup"], { "disabled": "disabled"; "dynamicHeight": "dynamicHeight"; "selectedIndex": "selectedIndex"; "headerPosition": "headerPosition"; "animationDuration": "animationDuration"; }, { "selectedIndexChange": "selectedIndexChange"; "focusChange": "focusChange"; "animationDone": "animationDone"; "selectedTabChange": "selectedTabChange"; }, ["tabs"], never, false, never>;
|
134
134
|
}
|
@@ -0,0 +1,63 @@
|
|
1
|
+
@use 'sass:meta';
|
2
|
+
@use 'sass:map';
|
3
|
+
|
4
|
+
@use '../core/styles/common/layout';
|
5
|
+
|
6
|
+
@use '../core/styles/tokens';
|
7
|
+
|
8
|
+
|
9
|
+
$tokens: meta.module-variables(tokens) !default;
|
10
|
+
|
11
|
+
.mc-tab-group {
|
12
|
+
display: flex;
|
13
|
+
flex-direction: column;
|
14
|
+
|
15
|
+
box-sizing: border-box;
|
16
|
+
text-align: left;
|
17
|
+
|
18
|
+
&.mc-tab-group_inverted-header {
|
19
|
+
flex-direction: column-reverse;
|
20
|
+
}
|
21
|
+
}
|
22
|
+
|
23
|
+
.mc-tab-group_vertical {
|
24
|
+
flex-direction: row;
|
25
|
+
|
26
|
+
& .mc-tab-header__content {
|
27
|
+
overflow-y: auto;
|
28
|
+
|
29
|
+
padding-top: 8px;
|
30
|
+
padding-bottom: 1px;
|
31
|
+
|
32
|
+
border-right-width: var(--mc-tabs-size-border-width, #{map.get($tokens, tabs-size-border-width)});
|
33
|
+
border-right-style: solid;
|
34
|
+
}
|
35
|
+
}
|
36
|
+
|
37
|
+
.mc-tab-body__wrapper {
|
38
|
+
display: flex;
|
39
|
+
overflow: hidden;
|
40
|
+
position: relative;
|
41
|
+
}
|
42
|
+
|
43
|
+
.mc-tab-body {
|
44
|
+
@include layout.mc-fill;
|
45
|
+
|
46
|
+
display: block;
|
47
|
+
overflow: hidden;
|
48
|
+
|
49
|
+
// Fix for auto content wrapping in IE11
|
50
|
+
flex-basis: 100%;
|
51
|
+
|
52
|
+
&.mc-tab-body__active {
|
53
|
+
overflow-x: hidden;
|
54
|
+
overflow-y: auto;
|
55
|
+
position: relative;
|
56
|
+
z-index: 1;
|
57
|
+
flex-grow: 1;
|
58
|
+
}
|
59
|
+
|
60
|
+
.mc-tab-group.mc-tab-group_dynamic-height &.mc-tab-body__active {
|
61
|
+
overflow-y: hidden;
|
62
|
+
}
|
63
|
+
}
|
@@ -31,5 +31,5 @@ export declare class McTabHeader extends McPaginatedTabHeader {
|
|
31
31
|
constructor(elementRef: ElementRef, changeDetectorRef: ChangeDetectorRef, viewportRuler: ViewportRuler, ngZone: NgZone, platform: Platform, dir: Directionality, animationMode?: string);
|
32
32
|
itemSelected(event: KeyboardEvent): void;
|
33
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<McTabHeader, [null, null, null, null, null, { optional: true; }, { optional: true; }]>;
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<McTabHeader, "mc-tab-header", never, { "selectedIndex": "selectedIndex"; "vertical": "vertical"; }, { "selectFocusedIndex": "selectFocusedIndex"; "indexFocused": "indexFocused"; }, ["items"], ["*"], false>;
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<McTabHeader, "mc-tab-header", never, { "selectedIndex": "selectedIndex"; "vertical": "vertical"; }, { "selectFocusedIndex": "selectFocusedIndex"; "indexFocused": "indexFocused"; }, ["items"], ["*"], false, never>;
|
35
35
|
}
|
@@ -0,0 +1,106 @@
|
|
1
|
+
@use 'sass:meta';
|
2
|
+
@use 'sass:map';
|
3
|
+
|
4
|
+
@use '../core/styles/common/vendor-prefixes';
|
5
|
+
@use 'tabs-common' as *;
|
6
|
+
|
7
|
+
@use '../core/styles/tokens';
|
8
|
+
|
9
|
+
|
10
|
+
$tokens: meta.module-variables(tokens) !default;
|
11
|
+
|
12
|
+
.mc-tab-header {
|
13
|
+
display: flex;
|
14
|
+
overflow: hidden;
|
15
|
+
position: relative;
|
16
|
+
flex-shrink: 0;
|
17
|
+
}
|
18
|
+
|
19
|
+
.mc-tab-list__content {
|
20
|
+
display: flex;
|
21
|
+
|
22
|
+
.mc-tab-group_align-labels-center & {
|
23
|
+
justify-content: center;
|
24
|
+
}
|
25
|
+
|
26
|
+
.mc-tab-group_align-labels-end & {
|
27
|
+
justify-content: flex-end;
|
28
|
+
}
|
29
|
+
}
|
30
|
+
|
31
|
+
.mc-tab-header_vertical .mc-tab-list__content {
|
32
|
+
flex-direction: column;
|
33
|
+
}
|
34
|
+
|
35
|
+
.mc-tab-header__pagination {
|
36
|
+
@include vendor-prefixes.user-select(none);
|
37
|
+
|
38
|
+
position: relative;
|
39
|
+
display: none;
|
40
|
+
justify-content: center;
|
41
|
+
align-items: center;
|
42
|
+
cursor: pointer;
|
43
|
+
z-index: 2;
|
44
|
+
-webkit-tap-highlight-color: transparent;
|
45
|
+
touch-action: none;
|
46
|
+
|
47
|
+
padding-left: 12px;
|
48
|
+
padding-right: 12px;
|
49
|
+
|
50
|
+
border: {
|
51
|
+
bottom-style: solid;
|
52
|
+
bottom-width: var(--mc-tabs-size-border-width, map.get($tokens, tabs-size-border-width));
|
53
|
+
};
|
54
|
+
|
55
|
+
&.mc-tab-header__pagination_before {
|
56
|
+
border: {
|
57
|
+
right-style: solid;
|
58
|
+
right-width: var(--mc-tabs-size-border-width, map.get($tokens, tabs-size-border-width));
|
59
|
+
};
|
60
|
+
}
|
61
|
+
|
62
|
+
&.mc-tab-header__pagination_after {
|
63
|
+
border: {
|
64
|
+
left-style: solid;
|
65
|
+
left-width: var(--mc-tabs-size-border-width, map.get($tokens, tabs-size-border-width));
|
66
|
+
};
|
67
|
+
}
|
68
|
+
|
69
|
+
.mc-tab-header__pagination-controls_enabled & {
|
70
|
+
display: flex;
|
71
|
+
}
|
72
|
+
}
|
73
|
+
|
74
|
+
|
75
|
+
.mc-tab-header__content {
|
76
|
+
display: flex;
|
77
|
+
flex-grow: 1;
|
78
|
+
|
79
|
+
z-index: 1;
|
80
|
+
overflow: hidden;
|
81
|
+
}
|
82
|
+
|
83
|
+
.mc-tab-list {
|
84
|
+
position: relative;
|
85
|
+
|
86
|
+
width: 100%;
|
87
|
+
|
88
|
+
transition: transform 500ms cubic-bezier(0.35, 0, 0.25, 1);
|
89
|
+
}
|
90
|
+
|
91
|
+
.mc-tab-label {
|
92
|
+
@include tab-label;
|
93
|
+
@include vendor-prefixes.user-select(none);
|
94
|
+
}
|
95
|
+
|
96
|
+
.mc-tab-label_old {
|
97
|
+
@include tab-label-old;
|
98
|
+
}
|
99
|
+
|
100
|
+
.mc-tab-label,
|
101
|
+
.mc-tab-label_old {
|
102
|
+
.mc-tab-group_stretch-labels & {
|
103
|
+
flex-basis: 0;
|
104
|
+
flex-grow: 1;
|
105
|
+
}
|
106
|
+
}
|