@alfalab/core-components 45.6.0-beta.2 → 45.6.1
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/action-button/cssm/Component.js +47 -40
- package/action-button/cssm/default.module.css +77 -0
- package/action-button/cssm/hooks.js +12 -10
- package/action-button/cssm/index.js +7 -8
- package/action-button/cssm/index.module.css +80 -0
- package/action-button/cssm/inverted.module.css +79 -0
- package/action-button/cssm/shared/index.js +7 -2
- package/action-button/cssm/static.module.css +61 -0
- package/action-button/cssm/utils.js +5 -3
- package/alert/cssm/Component.js +17 -7
- package/alert/cssm/index.js +7 -4
- package/alert/cssm/index.module.css +22 -0
- package/amount/cssm/component.js +34 -26
- package/amount/cssm/index.js +7 -8
- package/amount/cssm/index.module.css +36 -0
- package/amount/cssm/pure/component.js +23 -16
- package/amount/cssm/pure/index.js +7 -4
- package/amount/cssm/pure/index.module.css +3 -0
- package/amount-input/cssm/Component.js +79 -72
- package/amount-input/cssm/default.module.css +21 -0
- package/amount-input/cssm/index.js +7 -7
- package/amount-input/cssm/index.module.css +37 -0
- package/amount-input/cssm/inverted.module.css +22 -0
- package/amount-input/cssm/utils/index.js +13 -9
- package/attach/cssm/Component.js +59 -46
- package/attach/cssm/index.js +7 -11
- package/attach/cssm/index.module.css +97 -0
- package/attach/cssm/utils/index.js +5 -3
- package/backdrop/cssm/Component.js +18 -10
- package/backdrop/cssm/index.js +7 -4
- package/backdrop/cssm/index.module.css +43 -0
- package/backdrop/cssm/vars.css +17 -0
- package/badge/cssm/Component.js +31 -24
- package/badge/cssm/index.js +7 -3
- package/badge/cssm/index.module.css +203 -0
- package/bank-card/cssm/Component.js +45 -35
- package/bank-card/cssm/index.js +7 -10
- package/bank-card/cssm/index.module.css +130 -0
- package/bank-card/cssm/utils.js +7 -5
- package/base-modal/cssm/Component.js +117 -104
- package/base-modal/cssm/index.js +14 -14
- package/base-modal/cssm/index.module.css +59 -0
- package/base-modal/cssm/matches-polyfill.js +2 -2
- package/base-modal/cssm/utils.js +28 -19
- package/bottom-sheet/cssm/component.js +165 -187
- package/bottom-sheet/cssm/components/footer/Component.js +21 -13
- package/bottom-sheet/cssm/components/footer/index.module.css +102 -0
- package/bottom-sheet/cssm/components/header/Component.js +26 -17
- package/bottom-sheet/cssm/components/header/index.module.css +71 -0
- package/bottom-sheet/cssm/components/swipeable-backdrop/Component.js +17 -12
- package/bottom-sheet/cssm/index.js +10 -14
- package/bottom-sheet/cssm/index.module.css +182 -0
- package/bottom-sheet/cssm/shared/index.js +7 -2
- package/bottom-sheet/cssm/utils.js +27 -17
- package/bottom-sheet/cssm/vars.css +21 -0
- package/button/components/base-button/index.css +3 -3
- package/button/cssm/Component.responsive.js +18 -16
- package/button/cssm/components/base-button/Component.js +72 -64
- package/button/cssm/components/base-button/default.module.css +286 -0
- package/button/cssm/components/base-button/index.js +8 -7
- package/button/cssm/components/base-button/index.module.css +287 -0
- package/button/cssm/components/base-button/inverted.module.css +296 -0
- package/button/cssm/desktop/Component.desktop.js +17 -18
- package/button/cssm/desktop/default.desktop.module.css +173 -0
- package/button/cssm/desktop/desktop.module.css +116 -0
- package/button/cssm/desktop/index.js +7 -8
- package/button/cssm/desktop/inverted.desktop.module.css +181 -0
- package/button/cssm/index.js +7 -11
- package/button/cssm/mobile/Component.mobile.js +17 -18
- package/button/cssm/mobile/default.mobile.module.css +168 -0
- package/button/cssm/mobile/index.js +7 -8
- package/button/cssm/mobile/inverted.mobile.module.css +179 -0
- package/button/cssm/mobile/mobile.module.css +117 -0
- package/button/cssm/shared/index.js +7 -2
- package/button/cssm/utils.js +5 -3
- package/button/cssm/vars.css +96 -0
- package/button/esm/components/base-button/index.css +3 -3
- package/button/modern/components/base-button/index.css +3 -3
- package/calendar/cssm/Component.responsive.js +16 -73
- package/calendar/cssm/components/calendar-mobile/Component.js +129 -167
- package/calendar/cssm/components/calendar-mobile/backdrop-transitions.module.css +33 -0
- package/calendar/cssm/components/calendar-mobile/index.js +9 -68
- package/calendar/cssm/components/calendar-mobile/index.module.css +108 -0
- package/calendar/cssm/components/calendar-mobile/transitions.module.css +30 -0
- package/calendar/cssm/components/days-table/Component.js +101 -105
- package/calendar/cssm/components/days-table/index.js +7 -34
- package/calendar/cssm/components/days-table/index.module.css +280 -0
- package/calendar/cssm/components/header/Component.js +19 -9
- package/calendar/cssm/components/header/index.js +7 -3
- package/calendar/cssm/components/header/index.module.css +49 -0
- package/calendar/cssm/components/month-year-header/Component.js +25 -42
- package/calendar/cssm/components/month-year-header/index.js +7 -30
- package/calendar/cssm/components/month-year-header/index.module.css +68 -0
- package/calendar/cssm/components/months-table/Component.js +25 -38
- package/calendar/cssm/components/months-table/index.js +7 -31
- package/calendar/cssm/components/months-table/index.module.css +87 -0
- package/calendar/cssm/components/period-slider/Component.js +50 -72
- package/calendar/cssm/components/period-slider/index.js +9 -42
- package/calendar/cssm/components/period-slider/index.module.css +77 -0
- package/calendar/cssm/components/period-slider/utils.js +75 -66
- package/calendar/cssm/components/select-button/Component.js +17 -7
- package/calendar/cssm/components/select-button/index.js +7 -4
- package/calendar/cssm/components/select-button/index.module.css +77 -0
- package/calendar/cssm/components/years-table/Component.js +25 -15
- package/calendar/cssm/components/years-table/index.js +7 -7
- package/calendar/cssm/components/years-table/index.module.css +90 -0
- package/calendar/cssm/desktop/Component.desktop.js +104 -118
- package/calendar/cssm/desktop/desktop.module.css +136 -0
- package/calendar/cssm/desktop/index.js +7 -63
- package/calendar/cssm/index.js +7 -70
- package/calendar/cssm/mobile/index.js +9 -68
- package/calendar/cssm/shared/index.js +26 -50
- package/calendar/cssm/useCalendar.js +157 -155
- package/calendar/cssm/usePeriod.js +43 -34
- package/calendar/cssm/utils.js +143 -84
- package/calendar/cssm/vars.css +22 -0
- package/calendar/modern/Component.responsive.d.ts +1 -1
- package/calendar/modern/components/calendar-mobile/Component.d.ts +1 -1
- package/calendar/modern/components/select-button/Component.d.ts +1 -1
- package/calendar-input/cssm/Component.responsive.js +19 -24
- package/calendar-input/cssm/components/calendar-input/Component.js +76 -63
- package/calendar-input/cssm/components/calendar-input/index.js +7 -12
- package/calendar-input/cssm/components/calendar-input/index.module.css +82 -0
- package/calendar-input/cssm/desktop/Component.desktop.js +12 -15
- package/calendar-input/cssm/desktop/index.js +7 -14
- package/calendar-input/cssm/index.js +7 -18
- package/calendar-input/cssm/mobile/Component.mobile.js +12 -15
- package/calendar-input/cssm/mobile/index.js +7 -14
- package/calendar-input/cssm/shared/index.js +15 -6
- package/calendar-input/cssm/utils.js +43 -20
- package/calendar-range/cssm/Component.js +15 -26
- package/calendar-range/cssm/components/divider/Component.js +20 -12
- package/calendar-range/cssm/components/divider/index.js +7 -3
- package/calendar-range/cssm/components/divider/index.module.css +68 -0
- package/calendar-range/cssm/hooks.js +77 -60
- package/calendar-range/cssm/index.js +7 -23
- package/calendar-range/cssm/utils.js +6 -2
- package/calendar-range/cssm/views/index.module.css +52 -0
- package/calendar-range/cssm/views/popover.js +73 -75
- package/calendar-range/cssm/views/static.js +105 -92
- package/calendar-range/esm/Component.js +1 -1
- package/calendar-range/esm/index.js +1 -1
- package/calendar-range/esm/views/popover.js +1 -1
- package/calendar-range/esm/views/static.js +1 -1
- package/calendar-range/modern/Component.js +1 -1
- package/calendar-range/modern/index.js +1 -1
- package/calendar-range/modern/views/popover.js +1 -1
- package/calendar-range/modern/views/static.js +1 -1
- package/calendar-range/views/popover.js +1 -1
- package/calendar-range/views/static.js +1 -1
- package/calendar-with-skeleton/cssm/Component.js +32 -23
- package/calendar-with-skeleton/cssm/index.js +7 -6
- package/calendar-with-skeleton/cssm/index.module.css +78 -0
- package/card-image/cssm/Component.js +36 -25
- package/card-image/cssm/index.js +10 -3
- package/card-image/cssm/index.module.css +39 -0
- package/cdn-icon/cssm/Component.js +28 -19
- package/cdn-icon/cssm/index.js +7 -3
- package/cdn-icon/cssm/index.module.css +22 -0
- package/chart/cssm/Component.js +125 -126
- package/chart/cssm/components/CustomizedLabel.js +14 -8
- package/chart/cssm/components/Dot/index.js +28 -21
- package/chart/cssm/components/Dot/index.module.css +22 -0
- package/chart/cssm/components/Legends/index.js +35 -27
- package/chart/cssm/components/Legends/index.module.css +38 -0
- package/chart/cssm/components/LinearGradient.js +12 -3
- package/chart/cssm/components/RectBar.js +21 -23
- package/chart/cssm/components/Tick/index.js +18 -11
- package/chart/cssm/components/Tick/index.module.css +29 -0
- package/chart/cssm/components/TooltipContent/index.js +26 -19
- package/chart/cssm/components/TooltipContent/index.module.css +61 -0
- package/chart/cssm/hooks/usePathBar/index.js +18 -16
- package/chart/cssm/hooks/usePathBar/utils/getRadius.js +5 -3
- package/chart/cssm/hooks/useSettings/index.js +33 -29
- package/chart/cssm/hooks/useSettings/utils/setComposedChartsMargin.js +16 -11
- package/chart/cssm/hooks/useSettings/utils/setDatas.js +24 -17
- package/chart/cssm/hooks/useSettings/utils/setGradientCharts.js +14 -22
- package/chart/cssm/hooks/useSettings/utils/setLegendMargin.js +7 -5
- package/chart/cssm/hooks/useSettings/utils/sortByIndex.js +11 -7
- package/chart/cssm/icons/Circle.js +13 -4
- package/chart/cssm/icons/CircleLine.js +14 -5
- package/chart/cssm/icons/FilledCircle.js +17 -8
- package/chart/cssm/icons/Point.js +14 -5
- package/chart/cssm/icons/StrokeCircle.js +13 -4
- package/chart/cssm/index.js +7 -25
- package/chart/cssm/index.module.css +27 -0
- package/checkbox/cssm/Component.js +42 -32
- package/checkbox/cssm/index.js +7 -7
- package/checkbox/cssm/index.module.css +190 -0
- package/checkbox/esm/index.css +1 -1
- package/checkbox/index.css +1 -1
- package/checkbox/modern/index.css +1 -1
- package/checkbox-group/cssm/Component.responsive.js +19 -13
- package/checkbox-group/cssm/components/base-checkbox-group/Component.js +36 -32
- package/checkbox-group/cssm/components/base-checkbox-group/index.js +7 -3
- package/checkbox-group/cssm/components/base-checkbox-group/index.module.css +79 -0
- package/checkbox-group/cssm/desktop/Component.desktop.js +12 -7
- package/checkbox-group/cssm/desktop/desktop.module.css +33 -0
- package/checkbox-group/cssm/desktop/index.js +7 -4
- package/checkbox-group/cssm/index.js +7 -7
- package/checkbox-group/cssm/mobile/Component.mobile.js +12 -7
- package/checkbox-group/cssm/mobile/index.js +7 -4
- package/checkbox-group/cssm/mobile/mobile.module.css +35 -0
- package/checkbox-group/cssm/vars.css +19 -0
- package/circular-progress-bar/cssm/Component.js +71 -66
- package/circular-progress-bar/cssm/consts.js +14 -7
- package/circular-progress-bar/cssm/index.js +7 -5
- package/circular-progress-bar/cssm/index.module.css +170 -0
- package/code-input/cssm/Component.responsive.js +18 -13
- package/code-input/cssm/components/base-code-input/component.js +78 -63
- package/code-input/cssm/components/base-code-input/index.js +7 -4
- package/code-input/cssm/components/base-code-input/index.module.css +46 -0
- package/code-input/cssm/components/index.js +7 -3
- package/code-input/cssm/components/input/component.js +28 -20
- package/code-input/cssm/components/input/index.js +7 -3
- package/code-input/cssm/components/input/index.module.css +95 -0
- package/code-input/cssm/desktop/Component.desktop.js +12 -8
- package/code-input/cssm/desktop/desktop.module.css +49 -0
- package/code-input/cssm/desktop/index.js +7 -5
- package/code-input/cssm/index.js +7 -8
- package/code-input/cssm/mobile/Component.mobile.js +12 -8
- package/code-input/cssm/mobile/index.js +7 -5
- package/code-input/cssm/mobile/mobile.module.css +51 -0
- package/code-input/cssm/vars.css +44 -0
- package/collapse/cssm/Component.js +45 -36
- package/collapse/cssm/index.js +7 -8
- package/collapse/cssm/index.module.css +39 -0
- package/comment/cssm/Component.js +17 -10
- package/comment/cssm/index.js +7 -4
- package/comment/cssm/index.module.css +37 -0
- package/confirmation/components/screens/initial/component.js +1 -1
- package/confirmation/components/screens/initial/countdown-section.js +1 -1
- package/confirmation/cssm/component.responsive.js +16 -28
- package/confirmation/cssm/components/base-confirmation/component.js +59 -61
- package/confirmation/cssm/components/base-confirmation/index.js +7 -21
- package/confirmation/cssm/components/base-confirmation/index.module.css +22 -0
- package/confirmation/cssm/components/countdown-loader/component.js +21 -15
- package/confirmation/cssm/components/countdown-loader/index.js +7 -2
- package/confirmation/cssm/components/countdown-loader/index.module.css +21 -0
- package/confirmation/cssm/components/header/component.js +17 -7
- package/confirmation/cssm/components/header/index.js +7 -4
- package/confirmation/cssm/components/header/index.module.css +50 -0
- package/confirmation/cssm/components/index.js +15 -19
- package/confirmation/cssm/components/screens/fatal-error/component.js +23 -16
- package/confirmation/cssm/components/screens/fatal-error/index.js +7 -8
- package/confirmation/cssm/components/screens/fatal-error/index.module.css +49 -0
- package/confirmation/cssm/components/screens/hint/component.js +33 -26
- package/confirmation/cssm/components/screens/hint/index.js +7 -9
- package/confirmation/cssm/components/screens/hint/index.module.css +69 -0
- package/confirmation/cssm/components/screens/index.js +13 -19
- package/confirmation/cssm/components/screens/initial/component.js +54 -46
- package/confirmation/cssm/components/screens/initial/countdown-section.d.ts +10 -0
- package/confirmation/cssm/components/screens/initial/countdown-section.js +47 -8
- package/confirmation/cssm/components/screens/initial/index.js +7 -15
- package/confirmation/cssm/components/screens/initial/index.module.css +87 -0
- package/confirmation/cssm/components/screens/temp-block/component.js +29 -21
- package/confirmation/cssm/components/screens/temp-block/index.js +7 -8
- package/confirmation/cssm/components/screens/temp-block/index.module.css +52 -0
- package/confirmation/cssm/context.js +10 -8
- package/confirmation/cssm/desktop/component.desktop.js +11 -23
- package/confirmation/cssm/desktop/index.js +10 -22
- package/confirmation/cssm/index.js +10 -25
- package/confirmation/cssm/mobile/component.mobile.js +17 -25
- package/confirmation/cssm/mobile/index.js +10 -22
- package/confirmation/cssm/mobile/mobile.module.css +3 -0
- package/confirmation/cssm/shared/index.js +23 -20
- package/confirmation/cssm/types.js +4 -2
- package/confirmation/cssm/utils.js +44 -36
- package/confirmation/cssm/vars.css +24 -0
- package/confirmation/esm/component.responsive.js +1 -1
- package/confirmation/esm/components/base-confirmation/component.js +1 -1
- package/confirmation/esm/components/base-confirmation/index.js +1 -1
- package/confirmation/esm/components/index.js +1 -1
- package/confirmation/esm/components/screens/index.js +1 -1
- package/confirmation/esm/components/screens/initial/component.js +1 -1
- package/confirmation/esm/components/screens/initial/countdown-section.js +1 -1
- package/confirmation/esm/components/screens/initial/index.js +1 -1
- package/confirmation/esm/desktop/component.desktop.js +1 -1
- package/confirmation/esm/desktop/index.js +1 -1
- package/confirmation/esm/index.js +1 -1
- package/confirmation/esm/mobile/component.mobile.js +1 -1
- package/confirmation/esm/mobile/index.js +1 -1
- package/confirmation/esm/shared/index.js +1 -1
- package/confirmation/modern/component.responsive.js +1 -1
- package/confirmation/modern/components/base-confirmation/component.js +1 -1
- package/confirmation/modern/components/base-confirmation/index.js +1 -1
- package/confirmation/modern/components/index.js +1 -1
- package/confirmation/modern/components/screens/index.js +1 -1
- package/confirmation/modern/components/screens/initial/component.js +1 -1
- package/confirmation/modern/components/screens/initial/countdown-section.js +1 -1
- package/confirmation/modern/components/screens/initial/index.js +1 -1
- package/confirmation/modern/desktop/component.desktop.js +1 -1
- package/confirmation/modern/desktop/index.js +1 -1
- package/confirmation/modern/index.js +1 -1
- package/confirmation/modern/mobile/component.mobile.js +1 -1
- package/confirmation/modern/mobile/index.js +1 -1
- package/confirmation/modern/shared/index.js +1 -1
- package/confirmation-v1/cssm/component.js +54 -51
- package/confirmation-v1/cssm/components/code-input/component.js +53 -41
- package/confirmation-v1/cssm/components/code-input/index.js +7 -5
- package/confirmation-v1/cssm/components/code-input/index.module.css +89 -0
- package/confirmation-v1/cssm/components/code-input/utils.js +8 -5
- package/confirmation-v1/cssm/components/countdown/component.js +62 -50
- package/confirmation-v1/cssm/components/countdown/index.js +8 -7
- package/confirmation-v1/cssm/components/countdown/index.module.css +73 -0
- package/confirmation-v1/cssm/components/countdown-loader/component.js +21 -15
- package/confirmation-v1/cssm/components/countdown-loader/index.js +7 -2
- package/confirmation-v1/cssm/components/countdown-loader/index.module.css +21 -0
- package/confirmation-v1/cssm/components/index.js +14 -14
- package/confirmation-v1/cssm/components/overlimit/component.js +36 -33
- package/confirmation-v1/cssm/components/overlimit/index.js +7 -9
- package/confirmation-v1/cssm/components/overlimit/index.module.css +80 -0
- package/confirmation-v1/cssm/components/sign-confirmation/component.js +38 -35
- package/confirmation-v1/cssm/components/sign-confirmation/index.js +7 -12
- package/confirmation-v1/cssm/components/sign-confirmation/index.module.css +97 -0
- package/confirmation-v1/cssm/index.js +17 -15
- package/confirmation-v1/cssm/index.module.css +106 -0
- package/confirmation-v1/cssm/vars.css +24 -0
- package/custom-button/cssm/Component.js +23 -17
- package/custom-button/cssm/index.js +7 -4
- package/custom-button/cssm/index.module.css +75 -0
- package/custom-picker-button/cssm/Component.responsive.js +17 -15
- package/custom-picker-button/cssm/desktop/Component.desktop.js +22 -15
- package/custom-picker-button/cssm/desktop/index.js +7 -7
- package/custom-picker-button/cssm/field/Component.js +26 -20
- package/custom-picker-button/cssm/field/index.js +7 -5
- package/custom-picker-button/cssm/field/index.module.css +27 -0
- package/custom-picker-button/cssm/index.js +7 -11
- package/custom-picker-button/cssm/mobile/Component.mobile.js +21 -14
- package/custom-picker-button/cssm/mobile/index.js +7 -7
- package/custom-picker-button/esm/field/index.css +1 -1
- package/custom-picker-button/field/index.css +1 -1
- package/custom-picker-button/modern/field/index.css +1 -1
- package/date-input/cssm/Component.js +42 -36
- package/date-input/cssm/index.js +18 -9
- package/date-input/cssm/index.module.css +29 -0
- package/date-input/cssm/utils/format.js +53 -28
- package/date-input/cssm/utils/index.js +16 -5
- package/date-input/cssm/utils/native-supports.js +5 -3
- package/date-range-input/cssm/Component.responsive.js +19 -26
- package/date-range-input/cssm/components/date-range-input/Component.js +112 -98
- package/date-range-input/cssm/components/date-range-input/index.js +7 -13
- package/date-range-input/cssm/components/date-range-input/index.module.css +63 -0
- package/date-range-input/cssm/desktop/Component.desktop.js +13 -17
- package/date-range-input/cssm/desktop/index.js +7 -16
- package/date-range-input/cssm/index.js +7 -20
- package/date-range-input/cssm/mobile/Component.mobile.js +13 -17
- package/date-range-input/cssm/mobile/index.js +7 -16
- package/date-range-input/cssm/utils/format.js +69 -49
- package/date-range-input/cssm/utils/index.js +13 -3
- package/date-time-input/cssm/Component.responsive.js +19 -25
- package/date-time-input/cssm/components/date-time-input/Component.js +80 -69
- package/date-time-input/cssm/components/date-time-input/index.js +7 -12
- package/date-time-input/cssm/components/date-time-input/index.module.css +63 -0
- package/date-time-input/cssm/desktop/Component.desktop.js +13 -16
- package/date-time-input/cssm/desktop/index.js +7 -15
- package/date-time-input/cssm/index.js +7 -19
- package/date-time-input/cssm/mobile/Component.mobile.js +13 -16
- package/date-time-input/cssm/mobile/index.js +7 -15
- package/date-time-input/cssm/utils/format.js +97 -74
- package/date-time-input/cssm/utils/index.js +18 -3
- package/divider/cssm/Component.js +15 -6
- package/divider/cssm/index.js +7 -3
- package/divider/cssm/index.module.css +23 -0
- package/drawer/cssm/Component.js +62 -54
- package/drawer/cssm/index.js +9 -5
- package/drawer/cssm/index.module.css +118 -0
- package/dropzone/cssm/Component.js +35 -28
- package/dropzone/cssm/components/index.js +7 -4
- package/dropzone/cssm/components/overlay/Component.js +21 -11
- package/dropzone/cssm/components/overlay/index.js +7 -4
- package/dropzone/cssm/components/overlay/index.module.css +48 -0
- package/dropzone/cssm/index.js +7 -6
- package/dropzone/cssm/index.module.css +43 -0
- package/dropzone/cssm/utils.js +4 -2
- package/file-upload-item/Component.d.ts +2 -2
- package/file-upload-item/Component.js +2 -2
- package/file-upload-item/cssm/Component.d.ts +2 -2
- package/file-upload-item/cssm/Component.js +51 -48
- package/file-upload-item/cssm/index.js +7 -17
- package/file-upload-item/cssm/index.module.css +118 -0
- package/file-upload-item/cssm/utils.js +21 -17
- package/file-upload-item/esm/Component.d.ts +2 -2
- package/file-upload-item/esm/Component.js +2 -2
- package/file-upload-item/modern/Component.d.ts +2 -2
- package/file-upload-item/modern/Component.js +2 -2
- package/filter-tag/cssm/Component.responsive.js +18 -17
- package/filter-tag/cssm/components/base-filter-tag/Component.js +49 -39
- package/filter-tag/cssm/components/base-filter-tag/index.js +7 -8
- package/filter-tag/cssm/components/base-filter-tag/index.module.css +316 -0
- package/filter-tag/cssm/desktop/Component.desktop.js +12 -12
- package/filter-tag/cssm/desktop/desktop.module.css +100 -0
- package/filter-tag/cssm/desktop/index.js +7 -9
- package/filter-tag/cssm/index.js +7 -12
- package/filter-tag/cssm/mobile/Component.mobile.js +12 -12
- package/filter-tag/cssm/mobile/index.js +7 -9
- package/filter-tag/cssm/mobile/mobile.module.css +99 -0
- package/form-control/cssm/Component.responsive.js +18 -13
- package/form-control/cssm/components/base-form-control/Component.js +51 -44
- package/form-control/cssm/components/base-form-control/default.module.css +106 -0
- package/form-control/cssm/components/base-form-control/index.js +7 -4
- package/form-control/cssm/components/base-form-control/index.module.css +205 -0
- package/form-control/cssm/components/base-form-control/inverted.module.css +109 -0
- package/form-control/cssm/desktop/Component.desktop.js +17 -15
- package/form-control/cssm/desktop/default.desktop.module.css +56 -0
- package/form-control/cssm/desktop/desktop.module.css +64 -0
- package/form-control/cssm/desktop/index.js +7 -5
- package/form-control/cssm/desktop/inverted.desktop.module.css +57 -0
- package/form-control/cssm/index.js +7 -8
- package/form-control/cssm/mobile/Component.mobile.js +17 -15
- package/form-control/cssm/mobile/default.mobile.module.css +52 -0
- package/form-control/cssm/mobile/index.js +7 -5
- package/form-control/cssm/mobile/inverted.mobile.module.css +53 -0
- package/form-control/cssm/mobile/mobile.module.css +63 -0
- package/form-control/cssm/shared/index.js +7 -2
- package/form-control/cssm/utils.js +9 -7
- package/form-control/cssm/vars.css +43 -0
- package/gallery/components/header/Component.js +1 -1
- package/gallery/components/header/buttons.js +1 -1
- package/gallery/components/image-viewer/component.js +1 -1
- package/gallery/components/image-viewer/slide.js +1 -1
- package/gallery/cssm/Component.js +69 -84
- package/gallery/cssm/components/header/Component.js +38 -35
- package/gallery/cssm/components/header/buttons.d.ts +11 -0
- package/gallery/cssm/components/header/buttons.js +35 -8
- package/gallery/cssm/components/header/index.js +7 -15
- package/gallery/cssm/components/header/index.module.css +38 -0
- package/gallery/cssm/components/header-info-block/Component.js +19 -13
- package/gallery/cssm/components/header-info-block/index.js +7 -4
- package/gallery/cssm/components/header-info-block/index.module.css +37 -0
- package/gallery/cssm/components/image-preview/Component.js +48 -44
- package/gallery/cssm/components/image-preview/index.js +7 -25
- package/gallery/cssm/components/image-preview/index.module.css +75 -0
- package/gallery/cssm/components/image-preview/paths.js +4 -2
- package/gallery/cssm/components/image-viewer/component.js +100 -81
- package/gallery/cssm/components/image-viewer/index.js +7 -16
- package/gallery/cssm/components/image-viewer/index.module.css +121 -0
- package/gallery/cssm/components/image-viewer/paths.js +4 -2
- package/gallery/cssm/components/image-viewer/slide.d.ts +16 -0
- package/gallery/cssm/components/image-viewer/slide.js +47 -7
- package/gallery/cssm/components/index.js +13 -30
- package/gallery/cssm/components/navigation-bar/Component.js +32 -47
- package/gallery/cssm/components/navigation-bar/index.js +7 -26
- package/gallery/cssm/components/navigation-bar/index.module.css +37 -0
- package/gallery/cssm/context.js +6 -4
- package/gallery/cssm/index.js +17 -31
- package/gallery/cssm/index.module.css +29 -0
- package/gallery/cssm/utils/constants.js +4 -2
- package/gallery/cssm/utils/index.js +15 -3
- package/gallery/cssm/utils/split-filename.js +8 -6
- package/gallery/cssm/utils/utils.js +18 -6
- package/gallery/esm/Component.js +2 -2
- package/gallery/esm/components/header/Component.js +1 -1
- package/gallery/esm/components/header/buttons.js +1 -1
- package/gallery/esm/components/header/index.js +1 -1
- package/gallery/esm/components/image-preview/Component.js +1 -1
- package/gallery/esm/components/image-preview/index.js +1 -1
- package/gallery/esm/components/image-viewer/component.js +1 -1
- package/gallery/esm/components/image-viewer/index.js +1 -1
- package/gallery/esm/components/image-viewer/slide.js +1 -1
- package/gallery/esm/components/index.js +2 -2
- package/gallery/esm/components/navigation-bar/Component.js +1 -1
- package/gallery/esm/components/navigation-bar/index.js +1 -1
- package/gallery/esm/index.js +2 -2
- package/gallery/modern/Component.js +2 -2
- package/gallery/modern/components/header/Component.js +1 -1
- package/gallery/modern/components/header/buttons.js +1 -1
- package/gallery/modern/components/header/index.js +1 -1
- package/gallery/modern/components/image-preview/Component.js +1 -1
- package/gallery/modern/components/image-preview/index.js +1 -1
- package/gallery/modern/components/image-viewer/component.js +1 -1
- package/gallery/modern/components/image-viewer/index.js +1 -1
- package/gallery/modern/components/image-viewer/slide.js +1 -1
- package/gallery/modern/components/index.js +2 -2
- package/gallery/modern/components/navigation-bar/Component.js +1 -1
- package/gallery/modern/components/navigation-bar/index.js +1 -1
- package/gallery/modern/index.js +2 -2
- package/gap/cssm/Component.js +16 -7
- package/gap/cssm/index.js +7 -3
- package/gap/cssm/index.module.css +92 -0
- package/generic-wrapper/cssm/Component.js +25 -17
- package/generic-wrapper/cssm/index.js +7 -3
- package/generic-wrapper/cssm/index.module.css +108 -0
- package/global-store/cssm/GlobalStore.js +11 -7
- package/global-store/cssm/ModalStore.js +9 -5
- package/global-store/cssm/index.js +7 -6
- package/grid/col/Component.js +1 -1
- package/grid/cssm/Component.js +8 -10
- package/grid/cssm/col/Component.js +21 -10
- package/grid/cssm/col/index.js +7 -5
- package/grid/cssm/col/index.module.css +2002 -0
- package/grid/cssm/gutters.module.css +654 -0
- package/grid/cssm/index.js +7 -7
- package/grid/cssm/row/Component.js +29 -17
- package/grid/cssm/row/index.js +7 -5
- package/grid/cssm/row/index.module.css +39 -0
- package/grid/cssm/utils/index.js +14 -12
- package/grid/esm/Component.js +1 -1
- package/grid/esm/col/Component.js +1 -1
- package/grid/esm/col/index.js +1 -1
- package/grid/esm/index.js +1 -1
- package/grid/esm/row/Component.js +1 -1
- package/grid/esm/row/index.js +1 -1
- package/grid/modern/Component.js +1 -1
- package/grid/modern/col/Component.js +1 -1
- package/grid/modern/col/index.js +1 -1
- package/grid/modern/index.js +1 -1
- package/grid/modern/row/Component.js +1 -1
- package/grid/modern/row/index.js +1 -1
- package/grid/row/Component.js +1 -1
- package/hatching-progress-bar/cssm/Component.js +17 -8
- package/hatching-progress-bar/cssm/index.js +7 -3
- package/hatching-progress-bar/cssm/index.module.css +95 -0
- package/icon-button/cssm/Component.js +27 -18
- package/icon-button/cssm/default.module.css +107 -0
- package/icon-button/cssm/index.js +7 -4
- package/icon-button/cssm/index.module.css +52 -0
- package/icon-button/cssm/inverted.module.css +122 -0
- package/icon-view/cssm/circle/index.js +7 -7
- package/icon-view/cssm/components/base-shape/component.js +61 -54
- package/icon-view/cssm/components/base-shape/index.js +7 -5
- package/icon-view/cssm/components/base-shape/index.module.css +242 -0
- package/icon-view/cssm/components/base-shape/utils.js +5 -2
- package/icon-view/cssm/components/circle/component.js +12 -8
- package/icon-view/cssm/components/circle/index.js +7 -7
- package/icon-view/cssm/components/circle/paths.js +7 -4
- package/icon-view/cssm/components/index.js +15 -13
- package/icon-view/cssm/components/no-shape/component.js +12 -8
- package/icon-view/cssm/components/no-shape/index.js +7 -7
- package/icon-view/cssm/components/no-shape/paths.js +6 -3
- package/icon-view/cssm/components/rectangle/component.js +16 -9
- package/icon-view/cssm/components/rectangle/index.js +7 -7
- package/icon-view/cssm/components/rectangle/paths.js +8 -4
- package/icon-view/cssm/components/super-ellipse/component.js +12 -8
- package/icon-view/cssm/components/super-ellipse/index.js +7 -7
- package/icon-view/cssm/components/super-ellipse/paths.js +8 -4
- package/icon-view/cssm/no-shape/index.js +7 -7
- package/icon-view/cssm/rectangle/index.js +7 -7
- package/icon-view/cssm/super-ellipse/index.js +7 -7
- package/indicator/cssm/Component.js +63 -18
- package/indicator/cssm/index.js +8 -3
- package/indicator/cssm/index.module.css +91 -0
- package/input/cssm/Component.responsive.js +18 -23
- package/input/cssm/components/base-input/Component.d.ts +1 -1
- package/input/cssm/components/base-input/Component.js +62 -56
- package/input/cssm/components/base-input/default.module.css +61 -0
- package/input/cssm/components/base-input/index.js +7 -12
- package/input/cssm/components/base-input/index.module.css +172 -0
- package/input/cssm/components/base-input/inverted.module.css +61 -0
- package/input/cssm/components/clear-button/Component.js +24 -17
- package/input/cssm/components/clear-button/default.module.css +36 -0
- package/input/cssm/components/clear-button/index.js +7 -5
- package/input/cssm/components/clear-button/index.module.css +63 -0
- package/input/cssm/components/clear-button/inverted.module.css +36 -0
- package/input/cssm/desktop/Component.desktop.js +12 -15
- package/input/cssm/desktop/index.js +7 -14
- package/input/cssm/index.js +7 -18
- package/input/cssm/mobile/Component.mobile.js +12 -15
- package/input/cssm/mobile/index.js +7 -14
- package/input/cssm/shared/index.js +9 -7
- package/input/cssm/utils.js +10 -8
- package/input/cssm/vars.css +27 -0
- package/input/esm/components/base-input/Component.d.ts +1 -1
- package/input/modern/components/base-input/Component.d.ts +1 -1
- package/input-autocomplete/autocomplete-field/index.css +1 -1
- package/input-autocomplete/autocomplete-mobile-field/index.css +1 -1
- package/input-autocomplete/cssm/Component.responsive.js +17 -23
- package/input-autocomplete/cssm/autocomplete-field/Component.js +28 -18
- package/input-autocomplete/cssm/autocomplete-field/index.js +7 -5
- package/input-autocomplete/cssm/autocomplete-field/index.module.css +3 -0
- package/input-autocomplete/cssm/autocomplete-mobile-field/Component.js +37 -28
- package/input-autocomplete/cssm/autocomplete-mobile-field/index.js +7 -7
- package/input-autocomplete/cssm/autocomplete-mobile-field/index.module.css +45 -0
- package/input-autocomplete/cssm/desktop/Component.desktop.js +16 -17
- package/input-autocomplete/cssm/desktop/index.js +7 -8
- package/input-autocomplete/cssm/index.js +7 -20
- package/input-autocomplete/cssm/mobile/Component.mobile.js +67 -74
- package/input-autocomplete/cssm/mobile/Component.modal.mobile.js +11 -15
- package/input-autocomplete/cssm/mobile/index.js +9 -14
- package/input-autocomplete/cssm/mobile/mobile.module.css +18 -0
- package/input-autocomplete/cssm/shared/index.js +8 -2
- package/input-autocomplete/cssm/utils.js +38 -34
- package/input-autocomplete/esm/autocomplete-field/index.css +1 -1
- package/input-autocomplete/esm/autocomplete-mobile-field/index.css +1 -1
- package/input-autocomplete/esm/mobile/mobile.css +1 -1
- package/input-autocomplete/mobile/mobile.css +1 -1
- package/input-autocomplete/modern/autocomplete-field/index.css +1 -1
- package/input-autocomplete/modern/autocomplete-mobile-field/index.css +1 -1
- package/input-autocomplete/modern/mobile/mobile.css +1 -1
- package/international-phone-input/Component-70284312.d.ts +5 -0
- package/international-phone-input/Component.responsive.d.ts +4 -4
- package/international-phone-input/components/base-international-phone-input/Component.d.ts +1 -1
- package/international-phone-input/components/base-international-phone-input/Component.js +5 -33
- package/international-phone-input/components/base-international-phone-input/index.css +1 -1
- package/international-phone-input/components/country-select/index.css +1 -1
- package/international-phone-input/components/flag-icon/index.css +1 -1
- package/international-phone-input/components/select-field/index.css +1 -1
- package/international-phone-input/cssm/Component-70284312.d.ts +5 -0
- package/international-phone-input/cssm/Component.responsive.d.ts +4 -4
- package/international-phone-input/cssm/Component.responsive.js +16 -30
- package/international-phone-input/cssm/components/base-international-phone-input/Component.d.ts +1 -1
- package/international-phone-input/cssm/components/base-international-phone-input/Component.js +59 -95
- package/international-phone-input/cssm/components/base-international-phone-input/index.js +7 -17
- package/international-phone-input/cssm/components/base-international-phone-input/index.module.css +4 -0
- package/international-phone-input/cssm/components/country-select/Component.js +45 -39
- package/international-phone-input/cssm/components/country-select/index.js +7 -11
- package/international-phone-input/cssm/components/country-select/index.module.css +46 -0
- package/international-phone-input/cssm/components/flag-icon/component.js +18 -9
- package/international-phone-input/cssm/components/flag-icon/flagSprite.js +4 -2
- package/international-phone-input/cssm/components/flag-icon/index.js +7 -4
- package/international-phone-input/cssm/components/flag-icon/index.module.css +29 -0
- package/international-phone-input/cssm/components/select-field/component.js +32 -22
- package/international-phone-input/cssm/components/select-field/index.js +8 -8
- package/international-phone-input/cssm/components/select-field/index.module.css +52 -0
- package/international-phone-input/cssm/consts.js +4 -2
- package/international-phone-input/cssm/data/country-data.js +4 -2
- package/international-phone-input/cssm/desktop/Component.desktop.js +17 -22
- package/international-phone-input/cssm/desktop/index.js +7 -21
- package/international-phone-input/cssm/index.js +7 -27
- package/international-phone-input/cssm/mobile/Component.mobile.js +17 -22
- package/international-phone-input/cssm/mobile/index.js +7 -21
- package/international-phone-input/cssm/shared/index.js +8 -5
- package/international-phone-input/cssm/types.d.ts +1 -1
- package/international-phone-input/cssm/typings-70284312.d.ts +1591 -0
- package/international-phone-input/cssm/utils/index.js +143 -125
- package/international-phone-input/cssm/utils-89376c31.d.ts +1 -1
- package/international-phone-input/esm/Component-70284312.d.ts +5 -0
- package/international-phone-input/esm/Component.responsive.d.ts +4 -4
- package/international-phone-input/esm/components/base-international-phone-input/Component.d.ts +1 -1
- package/international-phone-input/esm/components/base-international-phone-input/Component.js +5 -33
- package/international-phone-input/esm/components/base-international-phone-input/index.css +1 -1
- package/international-phone-input/esm/components/country-select/index.css +1 -1
- package/international-phone-input/esm/components/flag-icon/index.css +1 -1
- package/international-phone-input/esm/components/select-field/index.css +1 -1
- package/international-phone-input/esm/types.d.ts +1 -1
- package/international-phone-input/esm/typings-70284312.d.ts +1591 -0
- package/international-phone-input/esm/utils-89376c31.d.ts +1 -1
- package/international-phone-input/modern/Component-70284312.d.ts +5 -0
- package/international-phone-input/modern/Component.responsive.d.ts +4 -4
- package/international-phone-input/modern/components/base-international-phone-input/Component.d.ts +1 -1
- package/international-phone-input/modern/components/base-international-phone-input/Component.js +3 -29
- package/international-phone-input/modern/components/base-international-phone-input/index.css +1 -1
- package/international-phone-input/modern/components/country-select/index.css +1 -1
- package/international-phone-input/modern/components/flag-icon/index.css +1 -1
- package/international-phone-input/modern/components/select-field/index.css +1 -1
- package/international-phone-input/modern/types.d.ts +1 -1
- package/international-phone-input/modern/typings-70284312.d.ts +1591 -0
- package/international-phone-input/modern/utils-89376c31.d.ts +1 -1
- package/international-phone-input/types.d.ts +1 -1
- package/international-phone-input/typings-70284312.d.ts +1591 -0
- package/international-phone-input/utils-89376c31.d.ts +1 -1
- package/intl-phone-input/components/flag-icon/index.css +1 -1
- package/intl-phone-input/components/select/index.css +1 -1
- package/intl-phone-input/components/select-field/index.css +1 -1
- package/intl-phone-input/cssm/component.js +147 -132
- package/intl-phone-input/cssm/components/flag-icon/component.js +18 -9
- package/intl-phone-input/cssm/components/flag-icon/flagSprite.js +4 -2
- package/intl-phone-input/cssm/components/flag-icon/index.js +7 -4
- package/intl-phone-input/cssm/components/flag-icon/index.module.css +29 -0
- package/intl-phone-input/cssm/components/index.js +12 -11
- package/intl-phone-input/cssm/components/select/component.js +36 -30
- package/intl-phone-input/cssm/components/select/index.js +7 -11
- package/intl-phone-input/cssm/components/select/index.module.css +35 -0
- package/intl-phone-input/cssm/components/select-field/component.js +32 -21
- package/intl-phone-input/cssm/components/select-field/index.js +8 -8
- package/intl-phone-input/cssm/components/select-field/index.module.css +52 -0
- package/intl-phone-input/cssm/index.js +7 -18
- package/intl-phone-input/cssm/index.module.css +31 -0
- package/intl-phone-input/cssm/useCaretAvoidCountryCode.js +15 -12
- package/intl-phone-input/cssm/utils/calculateCaretPos.js +6 -4
- package/intl-phone-input/cssm/utils/format-phone-with-unclearable-country-code.js +8 -6
- package/intl-phone-input/cssm/utils/preparePasteData.js +21 -19
- package/intl-phone-input/esm/components/flag-icon/index.css +1 -1
- package/intl-phone-input/esm/components/select/index.css +1 -1
- package/intl-phone-input/esm/components/select-field/index.css +1 -1
- package/intl-phone-input/esm/index.css +1 -1
- package/intl-phone-input/index.css +1 -1
- package/intl-phone-input/modern/components/flag-icon/index.css +1 -1
- package/intl-phone-input/modern/components/select/index.css +1 -1
- package/intl-phone-input/modern/components/select-field/index.css +1 -1
- package/intl-phone-input/modern/index.css +1 -1
- package/keyboard-focusable/cssm/Component.js +9 -6
- package/keyboard-focusable/cssm/index.js +7 -3
- package/link/cssm/Component.js +37 -36
- package/link/cssm/default.module.css +67 -0
- package/link/cssm/index.js +7 -5
- package/link/cssm/index.module.css +65 -0
- package/link/cssm/inverted.module.css +67 -0
- package/list/Component.js +1 -1
- package/list/components/item/Component.js +1 -1
- package/list/components/item/index.d.ts +1 -1
- package/list/components/item/index.js +1 -1
- package/list/cssm/Component-7cc47e0b.js +62 -0
- package/list/cssm/Component.js +13 -5
- package/list/cssm/components/item/Component.js +11 -5
- package/list/cssm/components/item/index.d.ts +1 -1
- package/list/cssm/components/item/index.js +7 -5
- package/list/cssm/components/item/index.module.css +48 -0
- package/list/cssm/index.js +10 -6
- package/list/cssm/index.module.css +38 -0
- package/list/cssm/presets.js +4 -2
- package/list/cssm/utils.js +11 -4
- package/list/esm/Component.js +1 -1
- package/list/esm/components/item/Component.js +1 -1
- package/list/esm/components/item/index.d.ts +1 -1
- package/list/esm/components/item/index.js +1 -1
- package/list/esm/index.js +1 -1
- package/list/index.js +1 -1
- package/list/modern/Component.js +1 -1
- package/list/modern/components/item/Component.js +1 -1
- package/list/modern/components/item/index.d.ts +1 -1
- package/list/modern/components/item/index.js +1 -1
- package/list/modern/index.js +1 -1
- package/list-header/cssm/Component.js +19 -9
- package/list-header/cssm/index.js +7 -4
- package/list-header/cssm/index.module.css +31 -0
- package/loader/cssm/Component.js +18 -9
- package/loader/cssm/index.js +7 -3
- package/loader/cssm/index.module.css +56 -0
- package/markdown/Component.js +1 -1
- package/markdown/cssm/Component.desktop.js +16 -15
- package/markdown/cssm/Component.js +21 -14
- package/markdown/cssm/Component.mobile.js +16 -15
- package/markdown/cssm/Component.responsive.js +18 -19
- package/markdown/cssm/desktop/index.js +7 -12
- package/markdown/cssm/hooks/use-overrides.d.ts +3 -0
- package/markdown/cssm/hooks/use-overrides.js +37 -6
- package/markdown/cssm/index.js +7 -14
- package/markdown/cssm/index.module.css +56 -0
- package/markdown/cssm/mobile/index.js +7 -12
- package/markdown/cssm/remark-plugins/index.js +7 -3
- package/markdown/cssm/remark-plugins/strikethrough.js +16 -10
- package/markdown/esm/Component.desktop.js +1 -1
- package/markdown/esm/Component.js +1 -1
- package/markdown/esm/Component.mobile.js +1 -1
- package/markdown/esm/Component.responsive.js +1 -1
- package/markdown/esm/desktop/index.js +1 -1
- package/markdown/esm/hooks/use-overrides.js +1 -1
- package/markdown/esm/index.js +1 -1
- package/markdown/esm/mobile/index.js +1 -1
- package/markdown/hooks/use-overrides.js +1 -1
- package/markdown/modern/Component.desktop.js +1 -1
- package/markdown/modern/Component.js +1 -1
- package/markdown/modern/Component.mobile.js +1 -1
- package/markdown/modern/Component.responsive.js +1 -1
- package/markdown/modern/desktop/index.js +1 -1
- package/markdown/modern/hooks/use-overrides.js +1 -1
- package/markdown/modern/index.js +1 -1
- package/markdown/modern/mobile/index.js +1 -1
- package/masked-input/cssm/Component.js +36 -24
- package/masked-input/cssm/index.js +8 -6
- package/masked-input/cssm/index.module.css +3 -0
- package/modal/components/controls/Component.js +1 -1
- package/modal/components/footer/Component.js +1 -1
- package/modal/cssm/Component.js +42 -44
- package/modal/cssm/Component.responsive.js +24 -25
- package/modal/cssm/Context.js +5 -3
- package/modal/cssm/ResponsiveContext.js +9 -3
- package/modal/cssm/components/content/Component.js +28 -23
- package/modal/cssm/components/content/desktop.module.css +40 -0
- package/modal/cssm/components/content/index.module.css +38 -0
- package/modal/cssm/components/content/mobile.module.css +34 -0
- package/modal/cssm/components/controls/Component.js +22 -14
- package/modal/cssm/components/controls/index.js +7 -6
- package/modal/cssm/components/controls/index.module.css +3 -0
- package/modal/cssm/components/footer/Component.js +34 -28
- package/modal/cssm/components/footer/desktop.module.css +48 -0
- package/modal/cssm/components/footer/index.module.css +44 -0
- package/modal/cssm/components/footer/layout.module.css +64 -0
- package/modal/cssm/components/footer/mobile.module.css +34 -0
- package/modal/cssm/components/header/Component.js +39 -33
- package/modal/cssm/components/header/desktop.module.css +73 -0
- package/modal/cssm/components/header/index.module.css +42 -0
- package/modal/cssm/components/header/mobile.module.css +51 -0
- package/modal/cssm/consts.js +4 -2
- package/modal/cssm/desktop/Component.desktop.js +20 -22
- package/modal/cssm/desktop/desktop.module.css +58 -0
- package/modal/cssm/desktop/index.js +7 -16
- package/modal/cssm/index.js +7 -17
- package/modal/cssm/mobile/Component.mobile.js +20 -22
- package/modal/cssm/mobile/index.js +7 -16
- package/modal/cssm/mobile/mobile.module.css +33 -0
- package/modal/cssm/shared/index.js +9 -4
- package/modal/cssm/transitions.module.css +24 -0
- package/modal/cssm/utils.js +11 -9
- package/modal/cssm/vars.css +29 -0
- package/modal/esm/Component.responsive.js +1 -1
- package/modal/esm/components/controls/Component.js +1 -1
- package/modal/esm/components/controls/index.js +1 -1
- package/modal/esm/components/footer/Component.js +1 -1
- package/modal/esm/desktop/Component.desktop.js +1 -1
- package/modal/esm/desktop/index.js +1 -1
- package/modal/esm/index.js +1 -1
- package/modal/esm/mobile/Component.mobile.js +1 -1
- package/modal/esm/mobile/index.js +1 -1
- package/modal/modern/Component.responsive.js +1 -1
- package/modal/modern/components/controls/Component.js +1 -1
- package/modal/modern/components/controls/index.js +1 -1
- package/modal/modern/components/footer/Component.js +1 -1
- package/modal/modern/desktop/Component.desktop.js +1 -1
- package/modal/modern/desktop/index.js +1 -1
- package/modal/modern/index.js +1 -1
- package/modal/modern/mobile/Component.mobile.js +1 -1
- package/modal/modern/mobile/index.js +1 -1
- package/mq/cssm/Component.js +19 -13
- package/mq/cssm/index.js +9 -5
- package/mq/cssm/useMatchMedia.js +14 -11
- package/mq/cssm/utils.js +11 -6
- package/navigation-bar/cssm/Component.js +112 -117
- package/navigation-bar/cssm/components/back-arrow-addon/Component.js +28 -19
- package/navigation-bar/cssm/components/back-arrow-addon/index.js +7 -7
- package/navigation-bar/cssm/components/back-arrow-addon/index.module.css +75 -0
- package/navigation-bar/cssm/components/closer/Component.js +24 -15
- package/navigation-bar/cssm/components/closer/index.js +7 -6
- package/navigation-bar/cssm/components/closer/index.module.css +47 -0
- package/navigation-bar/cssm/index.js +7 -15
- package/navigation-bar/cssm/index.module.css +108 -0
- package/navigation-bar/cssm/shared/index.js +9 -11
- package/navigation-bar/cssm/vars.css +20 -0
- package/notification/cssm/Component.js +56 -46
- package/notification/cssm/index.js +7 -10
- package/notification/cssm/index.module.css +56 -0
- package/notification/cssm/utils/index.js +11 -5
- package/notification-manager/component.d.ts +0 -8
- package/notification-manager/component.js +5 -10
- package/notification-manager/cssm/component.d.ts +0 -8
- package/notification-manager/cssm/component.js +27 -23
- package/notification-manager/cssm/components/index.js +7 -3
- package/notification-manager/cssm/components/notification/component.js +17 -17
- package/notification-manager/cssm/components/notification/index.js +7 -3
- package/notification-manager/cssm/index.js +7 -7
- package/notification-manager/cssm/index.module.css +52 -0
- package/notification-manager/esm/component.d.ts +0 -8
- package/notification-manager/esm/component.js +5 -10
- package/notification-manager/esm/index.css +1 -5
- package/notification-manager/index.css +1 -5
- package/notification-manager/modern/component.d.ts +0 -8
- package/notification-manager/modern/component.js +4 -7
- package/notification-manager/modern/index.css +1 -5
- package/number-input/cssm/Component.responsive.js +16 -18
- package/number-input/cssm/components/number-input/Component.js +82 -74
- package/number-input/cssm/components/number-input/default.module.css +23 -0
- package/number-input/cssm/components/number-input/index.js +7 -12
- package/number-input/cssm/components/number-input/index.module.css +22 -0
- package/number-input/cssm/components/number-input/inverted.module.css +23 -0
- package/number-input/cssm/components/steppers/Component.js +28 -23
- package/number-input/cssm/components/steppers/default.module.css +19 -0
- package/number-input/cssm/components/steppers/index.js +7 -7
- package/number-input/cssm/components/steppers/index.module.css +29 -0
- package/number-input/cssm/components/steppers/inverted.module.css +19 -0
- package/number-input/cssm/desktop/Component.desktop.js +12 -15
- package/number-input/cssm/desktop/index.js +7 -14
- package/number-input/cssm/index.js +7 -15
- package/number-input/cssm/mobile/Component.mobile.js +12 -15
- package/number-input/cssm/mobile/index.js +7 -14
- package/number-input/cssm/shared/index.js +7 -3
- package/number-input/cssm/utils.js +121 -96
- package/package.json +2 -2
- package/pagination/cssm/Component.js +29 -23
- package/pagination/cssm/components/default-view/index.js +29 -25
- package/pagination/cssm/components/default-view/index.module.css +26 -0
- package/pagination/cssm/components/per-page-view/index.js +17 -9
- package/pagination/cssm/components/per-page-view/index.module.css +20 -0
- package/pagination/cssm/components/tag/index.js +18 -7
- package/pagination/cssm/components/tag/index.module.css +48 -0
- package/pagination/cssm/index.js +7 -9
- package/pagination/cssm/index.module.css +32 -0
- package/pass-code/cssm/Component.js +30 -27
- package/pass-code/cssm/components/InputProgress/Component.js +33 -20
- package/pass-code/cssm/components/InputProgress/index.js +7 -5
- package/pass-code/cssm/components/InputProgress/index.module.css +40 -0
- package/pass-code/cssm/components/InputProgress/transitions.module.css +51 -0
- package/pass-code/cssm/components/KeyPad/Component.js +33 -27
- package/pass-code/cssm/components/KeyPad/index.js +7 -7
- package/pass-code/cssm/components/KeyPad/index.module.css +44 -0
- package/pass-code/cssm/components/KeyPadButton/Component.js +16 -9
- package/pass-code/cssm/components/KeyPadButton/index.js +7 -4
- package/pass-code/cssm/components/KeyPadButton/index.module.css +68 -0
- package/pass-code/cssm/index.js +9 -11
- package/pass-code/cssm/index.module.css +37 -0
- package/pass-code/cssm/shared/index.js +7 -2
- package/pass-code/cssm/utils.js +11 -9
- package/pass-code/cssm/vars.css +0 -0
- package/password-input/cssm/component.js +26 -18
- package/password-input/cssm/index.js +7 -7
- package/password-input/cssm/index.module.css +26 -0
- package/pattern-lock/cssm/Component.responsive.js +18 -17
- package/pattern-lock/cssm/components/base-pattern-lock/Component.js +52 -41
- package/pattern-lock/cssm/components/base-pattern-lock/index.js +7 -8
- package/pattern-lock/cssm/components/base-pattern-lock/index.module.css +44 -0
- package/pattern-lock/cssm/consts.js +10 -5
- package/pattern-lock/cssm/desktop/Component.desktop.js +12 -12
- package/pattern-lock/cssm/desktop/desktop.module.css +27 -0
- package/pattern-lock/cssm/desktop/index.js +7 -9
- package/pattern-lock/cssm/hooks/use-pattern-lock-cleanup.js +7 -5
- package/pattern-lock/cssm/index.js +9 -12
- package/pattern-lock/cssm/mobile/Component.mobile.js +12 -12
- package/pattern-lock/cssm/mobile/index.js +7 -9
- package/pattern-lock/cssm/mobile/mobile.module.css +47 -0
- package/pattern-lock/cssm/shared/index.js +9 -5
- package/pattern-lock/cssm/utils.js +39 -43
- package/pattern-lock/cssm/vars.css +0 -0
- package/phone-input/cssm/Component.js +38 -30
- package/phone-input/cssm/index.js +7 -6
- package/phone-input/cssm/utils/index.js +19 -10
- package/picker-button/Component-70284312.d.ts +5 -0
- package/picker-button/cssm/Component-70284312.d.ts +5 -0
- package/picker-button/cssm/Component.responsive.js +19 -23
- package/picker-button/cssm/desktop/Component.desktop.js +30 -30
- package/picker-button/cssm/desktop/index.js +7 -13
- package/picker-button/cssm/field/Component.d.ts +1 -1
- package/picker-button/cssm/field/Component.js +30 -28
- package/picker-button/cssm/field/index.js +7 -9
- package/picker-button/cssm/field/index.module.css +30 -0
- package/picker-button/cssm/index.js +7 -17
- package/picker-button/cssm/index.module.css +27 -0
- package/picker-button/cssm/mobile/Component.mobile.js +23 -29
- package/picker-button/cssm/mobile/index.js +7 -13
- package/picker-button/cssm/option/Component.js +19 -12
- package/picker-button/cssm/option/index.js +7 -3
- package/picker-button/cssm/option/index.module.css +27 -0
- package/picker-button/cssm/shared/index.js +7 -5
- package/picker-button/cssm/typings-70284312.d.ts +1053 -0
- package/picker-button/cssm/utils/index.js +10 -8
- package/picker-button/cssm/utils-89376c31.d.ts +1 -1
- package/picker-button/esm/Component-70284312.d.ts +5 -0
- package/picker-button/esm/field/Component.d.ts +1 -1
- package/picker-button/esm/field/index.css +1 -1
- package/picker-button/esm/index.css +1 -1
- package/picker-button/esm/option/index.css +1 -1
- package/picker-button/esm/typings-70284312.d.ts +1053 -0
- package/picker-button/esm/utils-89376c31.d.ts +1 -1
- package/picker-button/field/Component.d.ts +1 -1
- package/picker-button/field/index.css +1 -1
- package/picker-button/index.css +1 -1
- package/picker-button/modern/Component-70284312.d.ts +5 -0
- package/picker-button/modern/field/Component.d.ts +1 -1
- package/picker-button/modern/field/index.css +1 -1
- package/picker-button/modern/index.css +1 -1
- package/picker-button/modern/option/index.css +1 -1
- package/picker-button/modern/typings-70284312.d.ts +1053 -0
- package/picker-button/modern/utils-89376c31.d.ts +1 -1
- package/picker-button/option/index.css +1 -1
- package/picker-button/typings-70284312.d.ts +1053 -0
- package/picker-button/utils-89376c31.d.ts +1 -1
- package/plate/cssm/Component.responsive.js +18 -18
- package/plate/cssm/components/base-plate/Component.js +77 -68
- package/plate/cssm/components/base-plate/index.js +7 -9
- package/plate/cssm/components/base-plate/index.module.css +211 -0
- package/plate/cssm/components/button-list/component.js +25 -15
- package/plate/cssm/desktop/Component.desktop.js +12 -13
- package/plate/cssm/desktop/desktop.module.css +28 -0
- package/plate/cssm/desktop/index.js +7 -10
- package/plate/cssm/index.js +7 -13
- package/plate/cssm/mobile/Component.mobile.js +12 -13
- package/plate/cssm/mobile/index.js +7 -10
- package/plate/cssm/mobile/mobile.module.css +27 -0
- package/popover/cssm/Component.js +77 -65
- package/popover/cssm/index.js +7 -11
- package/popover/cssm/index.module.css +98 -0
- package/popup-sheet/cssm/Component.js +73 -74
- package/popup-sheet/cssm/components/backdrop/Component.js +16 -12
- package/popup-sheet/cssm/components/backdrop/index.js +7 -3
- package/popup-sheet/cssm/components/backdrop/index.module.css +35 -0
- package/popup-sheet/cssm/index.js +7 -9
- package/popup-sheet/cssm/index.module.css +52 -0
- package/popup-sheet/cssm/shared/index.js +7 -2
- package/popup-sheet/cssm/utils.js +5 -3
- package/portal/cssm/Component.js +18 -13
- package/portal/cssm/index.js +7 -4
- package/portal/cssm/utils.js +10 -4
- package/progress-bar/cssm/Component.js +18 -10
- package/progress-bar/cssm/index.js +8 -3
- package/progress-bar/cssm/index.module.css +85 -0
- package/progress-bar/cssm/vars.css +34 -0
- package/pure-cell/component-04f1eb77.d.ts +121 -0
- package/pure-cell/component-4171f131.d.ts +215 -0
- package/pure-cell/component.js +1 -1
- package/pure-cell/components/addon/component.js +1 -1
- package/pure-cell/components/addon/index.d.ts +1 -1
- package/pure-cell/components/addon/index.js +1 -1
- package/pure-cell/components/amount/component.js +1 -1
- package/pure-cell/components/amount/index.d.ts +1 -1
- package/pure-cell/components/amount/index.js +1 -1
- package/pure-cell/components/amount-title/component.js +1 -1
- package/pure-cell/components/amount-title/index.d.ts +1 -1
- package/pure-cell/components/amount-title/index.js +1 -1
- package/pure-cell/components/category/component.js +1 -1
- package/pure-cell/components/category/index.d.ts +1 -1
- package/pure-cell/components/category/index.js +1 -1
- package/pure-cell/components/content/component.js +1 -1
- package/pure-cell/components/content/index.d.ts +1 -1
- package/pure-cell/components/content/index.js +1 -1
- package/pure-cell/components/footer/component.js +1 -1
- package/pure-cell/components/footer/index.d.ts +1 -1
- package/pure-cell/components/footer/index.js +1 -1
- package/pure-cell/components/footer-button/component.js +1 -1
- package/pure-cell/components/footer-button/index.d.ts +1 -1
- package/pure-cell/components/footer-button/index.js +1 -1
- package/pure-cell/components/footer-text/component.js +1 -1
- package/pure-cell/components/footer-text/index.d.ts +1 -1
- package/pure-cell/components/footer-text/index.js +1 -1
- package/pure-cell/components/graphics/component.js +1 -1
- package/pure-cell/components/graphics/index.d.ts +1 -1
- package/pure-cell/components/graphics/index.js +1 -1
- package/pure-cell/components/main/component.js +1 -1
- package/pure-cell/components/main/index.d.ts +1 -1
- package/pure-cell/components/main/index.js +1 -1
- package/pure-cell/components/text/component.js +1 -1
- package/pure-cell/components/text/index.d.ts +1 -1
- package/pure-cell/components/text/index.js +1 -1
- package/pure-cell/cssm/component-04f1eb77.d.ts +121 -0
- package/pure-cell/cssm/component-063660c0.d.ts +215 -0
- package/pure-cell/cssm/component-063660c0.js +193 -0
- package/pure-cell/cssm/component.js +15 -10
- package/pure-cell/cssm/components/addon/component.js +11 -10
- package/pure-cell/cssm/components/addon/index.d.ts +1 -1
- package/pure-cell/cssm/components/addon/index.js +7 -10
- package/pure-cell/cssm/components/addon/index.module.css +37 -0
- package/pure-cell/cssm/components/amount/component.js +14 -10
- package/pure-cell/cssm/components/amount/index.d.ts +1 -1
- package/pure-cell/cssm/components/amount/index.js +7 -10
- package/pure-cell/cssm/components/amount/index.module.css +20 -0
- package/pure-cell/cssm/components/amount-title/component.js +14 -10
- package/pure-cell/cssm/components/amount-title/index.d.ts +1 -1
- package/pure-cell/cssm/components/amount-title/index.js +7 -10
- package/pure-cell/cssm/components/amount-title/index.module.css +20 -0
- package/pure-cell/cssm/components/category/component.js +11 -10
- package/pure-cell/cssm/components/category/index.d.ts +1 -1
- package/pure-cell/cssm/components/category/index.js +7 -10
- package/pure-cell/cssm/components/category/index.module.css +38 -0
- package/pure-cell/cssm/components/content/component.js +11 -10
- package/pure-cell/cssm/components/content/index.d.ts +1 -1
- package/pure-cell/cssm/components/content/index.js +7 -10
- package/pure-cell/cssm/components/content/index.module.css +23 -0
- package/pure-cell/cssm/components/footer/component.js +11 -10
- package/pure-cell/cssm/components/footer/index.d.ts +1 -1
- package/pure-cell/cssm/components/footer/index.js +7 -10
- package/pure-cell/cssm/components/footer/index.module.css +25 -0
- package/pure-cell/cssm/components/footer-button/component.js +12 -10
- package/pure-cell/cssm/components/footer-button/index.d.ts +1 -1
- package/pure-cell/cssm/components/footer-button/index.js +7 -10
- package/pure-cell/cssm/components/footer-button/index.module.css +18 -0
- package/pure-cell/cssm/components/footer-text/component.js +10 -10
- package/pure-cell/cssm/components/footer-text/index.d.ts +1 -1
- package/pure-cell/cssm/components/footer-text/index.js +7 -10
- package/pure-cell/cssm/components/graphics/component.js +11 -10
- package/pure-cell/cssm/components/graphics/index.d.ts +1 -1
- package/pure-cell/cssm/components/graphics/index.js +7 -10
- package/pure-cell/cssm/components/graphics/index.module.css +49 -0
- package/pure-cell/cssm/components/main/component.js +11 -10
- package/pure-cell/cssm/components/main/index.d.ts +1 -1
- package/pure-cell/cssm/components/main/index.js +7 -10
- package/pure-cell/cssm/components/main/index.module.css +33 -0
- package/pure-cell/cssm/components/text/component.js +12 -10
- package/pure-cell/cssm/components/text/index.d.ts +1 -1
- package/pure-cell/cssm/components/text/index.js +7 -10
- package/pure-cell/cssm/components/text/index.module.css +43 -0
- package/pure-cell/cssm/index.d.ts +2 -2
- package/pure-cell/cssm/index.js +7 -10
- package/pure-cell/cssm/index.module.css +93 -0
- package/pure-cell/cssm/shared/index.js +7 -2
- package/pure-cell/cssm/utils.js +20 -18
- package/pure-cell/esm/component-04f1eb77.d.ts +121 -0
- package/pure-cell/esm/component-5496c105.d.ts +215 -0
- package/pure-cell/esm/component.js +1 -1
- package/pure-cell/esm/components/addon/component.js +1 -1
- package/pure-cell/esm/components/addon/index.d.ts +1 -1
- package/pure-cell/esm/components/addon/index.js +1 -1
- package/pure-cell/esm/components/amount/component.js +1 -1
- package/pure-cell/esm/components/amount/index.d.ts +1 -1
- package/pure-cell/esm/components/amount/index.js +1 -1
- package/pure-cell/esm/components/amount-title/component.js +1 -1
- package/pure-cell/esm/components/amount-title/index.d.ts +1 -1
- package/pure-cell/esm/components/amount-title/index.js +1 -1
- package/pure-cell/esm/components/category/component.js +1 -1
- package/pure-cell/esm/components/category/index.d.ts +1 -1
- package/pure-cell/esm/components/category/index.js +1 -1
- package/pure-cell/esm/components/content/component.js +1 -1
- package/pure-cell/esm/components/content/index.d.ts +1 -1
- package/pure-cell/esm/components/content/index.js +1 -1
- package/pure-cell/esm/components/footer/component.js +1 -1
- package/pure-cell/esm/components/footer/index.d.ts +1 -1
- package/pure-cell/esm/components/footer/index.js +1 -1
- package/pure-cell/esm/components/footer-button/component.js +1 -1
- package/pure-cell/esm/components/footer-button/index.d.ts +1 -1
- package/pure-cell/esm/components/footer-button/index.js +1 -1
- package/pure-cell/esm/components/footer-text/component.js +1 -1
- package/pure-cell/esm/components/footer-text/index.d.ts +1 -1
- package/pure-cell/esm/components/footer-text/index.js +1 -1
- package/pure-cell/esm/components/graphics/component.js +1 -1
- package/pure-cell/esm/components/graphics/index.d.ts +1 -1
- package/pure-cell/esm/components/graphics/index.js +1 -1
- package/pure-cell/esm/components/main/component.js +1 -1
- package/pure-cell/esm/components/main/index.d.ts +1 -1
- package/pure-cell/esm/components/main/index.js +1 -1
- package/pure-cell/esm/components/text/component.js +1 -1
- package/pure-cell/esm/components/text/index.d.ts +1 -1
- package/pure-cell/esm/components/text/index.js +1 -1
- package/pure-cell/esm/index.d.ts +2 -2
- package/pure-cell/esm/index.js +1 -1
- package/pure-cell/index.d.ts +2 -2
- package/pure-cell/index.js +1 -1
- package/pure-cell/modern/component-04f1eb77.d.ts +121 -0
- package/pure-cell/modern/component-2ad39a1b.d.ts +215 -0
- package/pure-cell/modern/component-2ad39a1b.js +175 -0
- package/pure-cell/modern/component.js +1 -1
- package/pure-cell/modern/components/addon/component.js +1 -1
- package/pure-cell/modern/components/addon/index.d.ts +1 -1
- package/pure-cell/modern/components/addon/index.js +1 -1
- package/pure-cell/modern/components/amount/component.js +1 -1
- package/pure-cell/modern/components/amount/index.d.ts +1 -1
- package/pure-cell/modern/components/amount/index.js +1 -1
- package/pure-cell/modern/components/amount-title/component.js +1 -1
- package/pure-cell/modern/components/amount-title/index.d.ts +1 -1
- package/pure-cell/modern/components/amount-title/index.js +1 -1
- package/pure-cell/modern/components/category/component.js +1 -1
- package/pure-cell/modern/components/category/index.d.ts +1 -1
- package/pure-cell/modern/components/category/index.js +1 -1
- package/pure-cell/modern/components/content/component.js +1 -1
- package/pure-cell/modern/components/content/index.d.ts +1 -1
- package/pure-cell/modern/components/content/index.js +1 -1
- package/pure-cell/modern/components/footer/component.js +1 -1
- package/pure-cell/modern/components/footer/index.d.ts +1 -1
- package/pure-cell/modern/components/footer/index.js +1 -1
- package/pure-cell/modern/components/footer-button/component.js +1 -1
- package/pure-cell/modern/components/footer-button/index.d.ts +1 -1
- package/pure-cell/modern/components/footer-button/index.js +1 -1
- package/pure-cell/modern/components/footer-text/component.js +1 -1
- package/pure-cell/modern/components/footer-text/index.d.ts +1 -1
- package/pure-cell/modern/components/footer-text/index.js +1 -1
- package/pure-cell/modern/components/graphics/component.js +1 -1
- package/pure-cell/modern/components/graphics/index.d.ts +1 -1
- package/pure-cell/modern/components/graphics/index.js +1 -1
- package/pure-cell/modern/components/main/component.js +1 -1
- package/pure-cell/modern/components/main/index.d.ts +1 -1
- package/pure-cell/modern/components/main/index.js +1 -1
- package/pure-cell/modern/components/text/component.js +1 -1
- package/pure-cell/modern/components/text/index.d.ts +1 -1
- package/pure-cell/modern/components/text/index.js +1 -1
- package/pure-cell/modern/index.d.ts +2 -2
- package/pure-cell/modern/index.js +1 -1
- package/radio/cssm/Component.js +36 -26
- package/radio/cssm/index.js +7 -6
- package/radio/cssm/index.module.css +173 -0
- package/radio-group/cssm/Component.responsive.js +18 -13
- package/radio-group/cssm/components/base-radio-group/Component.js +39 -42
- package/radio-group/cssm/components/base-radio-group/index.js +7 -4
- package/radio-group/cssm/components/base-radio-group/index.module.css +82 -0
- package/radio-group/cssm/desktop/Component.desktop.js +12 -8
- package/radio-group/cssm/desktop/desktop.module.css +33 -0
- package/radio-group/cssm/desktop/index.js +7 -5
- package/radio-group/cssm/index.js +7 -8
- package/radio-group/cssm/mobile/Component.mobile.js +12 -8
- package/radio-group/cssm/mobile/index.js +7 -5
- package/radio-group/cssm/mobile/mobile.module.css +35 -0
- package/radio-group/cssm/vars.css +19 -0
- package/scrollbar/cssm/Component.js +389 -364
- package/scrollbar/cssm/default.module.css +25 -0
- package/scrollbar/cssm/index.js +7 -9
- package/scrollbar/cssm/index.module.css +187 -0
- package/scrollbar/cssm/inverted.module.css +26 -0
- package/segmented-control/Component.d.ts +1 -7
- package/segmented-control/Component.js +13 -14
- package/segmented-control/cssm/Component.d.ts +1 -7
- package/segmented-control/cssm/Component.js +58 -50
- package/segmented-control/cssm/components/index.js +7 -6
- package/segmented-control/cssm/components/segment/Component.js +27 -21
- package/segmented-control/cssm/components/segment/default.module.css +22 -0
- package/segmented-control/cssm/components/segment/index.js +7 -6
- package/segmented-control/cssm/components/segment/index.module.css +50 -0
- package/segmented-control/cssm/components/segment/inverted.module.css +22 -0
- package/segmented-control/cssm/context.js +6 -4
- package/segmented-control/cssm/default.module.css +26 -0
- package/segmented-control/cssm/index.js +10 -8
- package/segmented-control/cssm/index.module.css +71 -0
- package/segmented-control/cssm/inverted.module.css +26 -0
- package/segmented-control/esm/Component.d.ts +1 -7
- package/segmented-control/esm/Component.js +13 -14
- package/segmented-control/modern/Component.d.ts +1 -7
- package/segmented-control/modern/Component.js +10 -11
- package/select/components/arrow/index.css +1 -1
- package/select/components/base-checkmark/index.css +1 -1
- package/select/components/base-option/index.css +1 -1
- package/select/components/base-select/Component.js +2 -2
- package/select/components/base-select/index.css +1 -1
- package/select/components/base-select/mobile.css +1 -1
- package/select/components/checkmark/index.css +1 -1
- package/select/components/checkmark-mobile/index.css +1 -1
- package/select/components/field/index.css +1 -1
- package/select/components/footer/index.css +1 -1
- package/select/components/optgroup/index.css +1 -1
- package/select/components/option/index.css +1 -1
- package/select/components/options-list/Component.js +9 -23
- package/select/components/options-list/index.css +5 -9
- package/select/components/search/index.css +1 -1
- package/select/components/virtual-options-list/index.css +1 -1
- package/select/cssm/Component.responsive.js +19 -56
- package/select/cssm/components/arrow/Component.js +17 -7
- package/select/cssm/components/arrow/index.js +7 -4
- package/select/cssm/components/arrow/index.module.css +37 -0
- package/select/cssm/components/base-checkmark/Component.js +21 -13
- package/select/cssm/components/base-checkmark/index.js +7 -5
- package/select/cssm/components/base-checkmark/index.module.css +35 -0
- package/select/cssm/components/base-option/Component.js +31 -24
- package/select/cssm/components/base-option/index.js +7 -6
- package/select/cssm/components/base-option/index.module.css +89 -0
- package/select/cssm/components/base-select/Component.js +200 -195
- package/select/cssm/components/base-select/index.js +7 -11
- package/select/cssm/components/base-select/index.module.css +92 -0
- package/select/cssm/components/base-select/mobile.module.css +55 -0
- package/select/cssm/components/checkmark/Component.js +27 -18
- package/select/cssm/components/checkmark/index.js +7 -7
- package/select/cssm/components/checkmark/index.module.css +69 -0
- package/select/cssm/components/checkmark-mobile/Component.js +20 -10
- package/select/cssm/components/checkmark-mobile/index.js +7 -4
- package/select/cssm/components/checkmark-mobile/index.module.css +43 -0
- package/select/cssm/components/field/Component.js +38 -29
- package/select/cssm/components/field/index.js +7 -6
- package/select/cssm/components/field/index.module.css +82 -0
- package/select/cssm/components/footer/Component.js +25 -17
- package/select/cssm/components/footer/index.js +7 -6
- package/select/cssm/components/footer/index.module.css +41 -0
- package/select/cssm/components/index.js +23 -33
- package/select/cssm/components/native-select/Component.js +25 -10
- package/select/cssm/components/native-select/index.js +7 -4
- package/select/cssm/components/optgroup/Component.js +19 -10
- package/select/cssm/components/optgroup/index.js +7 -4
- package/select/cssm/components/optgroup/index.module.css +61 -0
- package/select/cssm/components/option/Component.js +30 -25
- package/select/cssm/components/option/index.js +7 -10
- package/select/cssm/components/option/index.module.css +121 -0
- package/select/cssm/components/options-list/Component.js +53 -59
- package/select/cssm/components/options-list/index.js +7 -10
- package/select/cssm/components/options-list/index.module.css +55 -0
- package/select/cssm/components/search/Component.js +18 -8
- package/select/cssm/components/search/index.js +7 -5
- package/select/cssm/components/search/index.module.css +27 -0
- package/select/cssm/components/virtual-options-list/Component.js +81 -66
- package/select/cssm/components/virtual-options-list/index.js +7 -11
- package/select/cssm/components/virtual-options-list/index.module.css +85 -0
- package/select/cssm/consts.js +6 -3
- package/select/cssm/desktop/Component.desktop.js +22 -36
- package/select/cssm/desktop/index.js +7 -32
- package/select/cssm/index.js +7 -47
- package/select/cssm/mobile/Component.mobile.js +48 -78
- package/select/cssm/mobile/Component.modal.mobile.js +11 -44
- package/select/cssm/mobile/index.js +9 -43
- package/select/cssm/presets/index.js +12 -25
- package/select/cssm/presets/useLazyLoading/hook.js +80 -95
- package/select/cssm/presets/useSelectWithApply/hook.js +11 -15
- package/select/cssm/presets/useSelectWithApply/options-list-with-apply/Component.js +13 -15
- package/select/cssm/presets/useSelectWithApply/options-list-with-apply/footer/Component.js +19 -11
- package/select/cssm/presets/useSelectWithApply/options-list-with-apply/footer/index.module.css +25 -0
- package/select/cssm/presets/useSelectWithApply/options-list-with-apply/header/Component.js +18 -8
- package/select/cssm/presets/useSelectWithApply/options-list-with-apply/header/index.module.css +22 -0
- package/select/cssm/presets/useSelectWithApply/options-list-with-apply/index.d.ts +1 -1
- package/select/cssm/presets/useSelectWithApply/options-list-with-apply/index.js +7 -15
- package/select/cssm/presets/useSelectWithLoading/hook.js +21 -22
- package/select/cssm/presets/useSelectWithLoading/index.module.css +7 -0
- package/select/cssm/shared/index.js +43 -44
- package/select/cssm/typings.d.ts +1 -5
- package/select/cssm/utils.js +84 -67
- package/select/cssm/vars.css +10 -0
- package/select/esm/Component.responsive.js +1 -1
- package/select/esm/components/arrow/index.css +1 -1
- package/select/esm/components/base-checkmark/index.css +1 -1
- package/select/esm/components/base-option/index.css +1 -1
- package/select/esm/components/base-select/Component.js +2 -2
- package/select/esm/components/base-select/index.css +1 -1
- package/select/esm/components/base-select/mobile.css +1 -1
- package/select/esm/components/checkmark/index.css +1 -1
- package/select/esm/components/checkmark-mobile/index.css +1 -1
- package/select/esm/components/field/index.css +1 -1
- package/select/esm/components/footer/index.css +1 -1
- package/select/esm/components/optgroup/index.css +1 -1
- package/select/esm/components/option/index.css +1 -1
- package/select/esm/components/options-list/Component.js +10 -24
- package/select/esm/components/options-list/index.css +5 -9
- package/select/esm/components/search/index.css +1 -1
- package/select/esm/components/virtual-options-list/index.css +1 -1
- package/select/esm/index.js +1 -1
- package/select/esm/mobile/Component.mobile.js +1 -1
- package/select/esm/mobile/Component.modal.mobile.js +1 -1
- package/select/esm/mobile/index.js +1 -1
- package/select/esm/presets/index.js +1 -1
- package/select/esm/presets/useSelectWithApply/hook.js +1 -1
- package/select/esm/presets/useSelectWithApply/options-list-with-apply/Component.js +1 -1
- package/select/esm/presets/useSelectWithApply/options-list-with-apply/footer/index.css +1 -1
- package/select/esm/presets/useSelectWithApply/options-list-with-apply/header/index.css +1 -1
- package/select/esm/presets/useSelectWithApply/options-list-with-apply/index.d.ts +1 -1
- package/select/esm/presets/useSelectWithApply/options-list-with-apply/index.js +1 -1
- package/select/esm/presets/useSelectWithLoading/index.css +1 -1
- package/select/esm/shared/index.js +1 -1
- package/select/esm/typings.d.ts +1 -5
- package/select/hook-9e3f2776.js +142 -0
- package/select/mobile/Component.mobile.js +1 -1
- package/select/modern/Component.responsive.js +1 -1
- package/select/modern/components/arrow/index.css +1 -1
- package/select/modern/components/base-checkmark/index.css +1 -1
- package/select/modern/components/base-option/index.css +1 -1
- package/select/modern/components/base-select/Component.js +2 -2
- package/select/modern/components/base-select/index.css +1 -1
- package/select/modern/components/base-select/mobile.css +1 -1
- package/select/modern/components/checkmark/index.css +1 -1
- package/select/modern/components/checkmark-mobile/index.css +1 -1
- package/select/modern/components/field/index.css +1 -1
- package/select/modern/components/footer/index.css +1 -1
- package/select/modern/components/optgroup/index.css +1 -1
- package/select/modern/components/option/index.css +1 -1
- package/select/modern/components/options-list/Component.js +6 -20
- package/select/modern/components/options-list/index.css +5 -9
- package/select/modern/components/search/index.css +1 -1
- package/select/modern/components/virtual-options-list/index.css +1 -1
- package/select/modern/index.js +1 -1
- package/select/modern/mobile/Component.mobile.js +1 -1
- package/select/modern/mobile/Component.modal.mobile.js +1 -1
- package/select/modern/mobile/index.js +1 -1
- package/select/modern/presets/index.js +1 -1
- package/select/modern/presets/useSelectWithApply/hook.js +1 -1
- package/select/modern/presets/useSelectWithApply/options-list-with-apply/Component.js +1 -1
- package/select/modern/presets/useSelectWithApply/options-list-with-apply/footer/index.css +1 -1
- package/select/modern/presets/useSelectWithApply/options-list-with-apply/header/index.css +1 -1
- package/select/modern/presets/useSelectWithApply/options-list-with-apply/index.d.ts +1 -1
- package/select/modern/presets/useSelectWithApply/options-list-with-apply/index.js +1 -1
- package/select/modern/presets/useSelectWithLoading/index.css +1 -1
- package/select/modern/shared/index.js +1 -1
- package/select/modern/typings.d.ts +1 -5
- package/select/presets/index.js +1 -1
- package/select/presets/useSelectWithApply/hook.js +1 -1
- package/select/presets/useSelectWithApply/options-list-with-apply/Component.js +1 -1
- package/select/presets/useSelectWithApply/options-list-with-apply/footer/index.css +1 -1
- package/select/presets/useSelectWithApply/options-list-with-apply/header/index.css +1 -1
- package/select/presets/useSelectWithApply/options-list-with-apply/index.d.ts +1 -1
- package/select/presets/useSelectWithApply/options-list-with-apply/index.js +1 -1
- package/select/presets/useSelectWithLoading/index.css +1 -1
- package/select/shared/index.js +1 -1
- package/select/typings.d.ts +1 -5
- package/select-with-tags/components/tag/index.css +1 -1
- package/select-with-tags/components/tag-list/index.css +1 -1
- package/select-with-tags/cssm/Component.responsive.js +19 -21
- package/select-with-tags/cssm/components/base-select-with-tags/Component.js +79 -104
- package/select-with-tags/cssm/components/base-select-with-tags/index.js +7 -12
- package/select-with-tags/cssm/components/tag/component.js +22 -13
- package/select-with-tags/cssm/components/tag/index.js +7 -5
- package/select-with-tags/cssm/components/tag/index.module.css +87 -0
- package/select-with-tags/cssm/components/tag-list/component.js +72 -65
- package/select-with-tags/cssm/components/tag-list/index.js +7 -9
- package/select-with-tags/cssm/components/tag-list/index.module.css +131 -0
- package/select-with-tags/cssm/desktop/Component.desktop.js +13 -16
- package/select-with-tags/cssm/desktop/index.js +7 -15
- package/select-with-tags/cssm/index.js +7 -18
- package/select-with-tags/cssm/mobile/Component.mobile.js +13 -16
- package/select-with-tags/cssm/mobile/index.js +7 -15
- package/select-with-tags/cssm/utils/calculate-collapse-size.js +22 -20
- package/select-with-tags/cssm/utils/index.js +7 -2
- package/select-with-tags/cssm/utils/match.js +17 -11
- package/select-with-tags/esm/components/tag/index.css +1 -1
- package/select-with-tags/esm/components/tag-list/index.css +1 -1
- package/select-with-tags/modern/Component.responsive.d.ts +1 -1
- package/select-with-tags/modern/components/base-select-with-tags/Component.d.ts +1 -1
- package/select-with-tags/modern/components/tag/index.css +1 -1
- package/select-with-tags/modern/components/tag-list/index.css +1 -1
- package/shared/cssm/browser.js +14 -12
- package/shared/cssm/createPaddingStyle.js +4 -2
- package/shared/cssm/dom.js +5 -3
- package/shared/cssm/easingFns.js +6 -4
- package/shared/cssm/fnUtils.js +8 -6
- package/shared/cssm/getDataTestId.js +5 -3
- package/shared/cssm/hooks/index.js +6 -8
- package/shared/cssm/hooks/useCustomWebkitScrollbar.js +9 -8
- package/shared/cssm/index.js +25 -13
- package/shared/cssm/isClient.js +4 -2
- package/shared/cssm/maskUtils.js +39 -34
- package/shared/cssm/os.js +9 -7
- package/side-panel/components/controls/Component.js +1 -1
- package/side-panel/components/footer/Component.js +1 -1
- package/side-panel/cssm/Component.responsive.js +34 -40
- package/side-panel/cssm/Context.js +5 -3
- package/side-panel/cssm/ResponsiveContext.js +9 -3
- package/side-panel/cssm/components/content/Component.desktop.js +18 -12
- package/side-panel/cssm/components/content/Component.js +22 -15
- package/side-panel/cssm/components/content/Component.mobile.js +17 -11
- package/side-panel/cssm/components/content/desktop.module.css +36 -0
- package/side-panel/cssm/components/content/index.module.css +38 -0
- package/side-panel/cssm/components/content/mobile.module.css +34 -0
- package/side-panel/cssm/components/controls/Component.js +23 -15
- package/side-panel/cssm/components/controls/index.js +7 -6
- package/side-panel/cssm/components/controls/index.module.css +3 -0
- package/side-panel/cssm/components/footer/Component.desktop.js +21 -15
- package/side-panel/cssm/components/footer/Component.js +26 -18
- package/side-panel/cssm/components/footer/Component.mobile.js +20 -14
- package/side-panel/cssm/components/footer/desktop.module.css +36 -0
- package/side-panel/cssm/components/footer/index.module.css +45 -0
- package/side-panel/cssm/components/footer/layout.module.css +64 -0
- package/side-panel/cssm/components/footer/mobile.module.css +34 -0
- package/side-panel/cssm/components/header/Component.js +38 -32
- package/side-panel/cssm/components/header/desktop.module.css +50 -0
- package/side-panel/cssm/components/header/index.module.css +73 -0
- package/side-panel/cssm/components/header/mobile.module.css +50 -0
- package/side-panel/cssm/consts.js +4 -2
- package/side-panel/cssm/desktop/Component.desktop.js +49 -48
- package/side-panel/cssm/desktop/desktop.module.css +34 -0
- package/side-panel/cssm/desktop/index.js +7 -18
- package/side-panel/cssm/desktop/transitions.desktop.module.css +32 -0
- package/side-panel/cssm/index.js +7 -23
- package/side-panel/cssm/mobile/Component.mobile.js +31 -34
- package/side-panel/cssm/mobile/index.js +7 -16
- package/side-panel/cssm/mobile/mobile.module.css +44 -0
- package/side-panel/cssm/mobile/transitions.mobile.module.css +24 -0
- package/side-panel/cssm/shared/index.js +9 -4
- package/side-panel/cssm/utils.js +11 -9
- package/side-panel/cssm/vars.css +29 -0
- package/side-panel/esm/Component.responsive.js +1 -1
- package/side-panel/esm/components/controls/Component.js +1 -1
- package/side-panel/esm/components/controls/index.js +1 -1
- package/side-panel/esm/components/footer/Component.desktop.js +1 -1
- package/side-panel/esm/components/footer/Component.js +1 -1
- package/side-panel/esm/components/footer/Component.mobile.js +1 -1
- package/side-panel/esm/desktop/Component.desktop.js +1 -1
- package/side-panel/esm/desktop/index.js +1 -1
- package/side-panel/esm/index.js +1 -1
- package/side-panel/esm/mobile/Component.mobile.js +1 -1
- package/side-panel/esm/mobile/index.js +1 -1
- package/side-panel/modern/Component.responsive.js +1 -1
- package/side-panel/modern/components/controls/Component.js +1 -1
- package/side-panel/modern/components/controls/index.js +1 -1
- package/side-panel/modern/components/footer/Component.desktop.js +1 -1
- package/side-panel/modern/components/footer/Component.js +1 -1
- package/side-panel/modern/components/footer/Component.mobile.js +1 -1
- package/side-panel/modern/desktop/Component.desktop.js +1 -1
- package/side-panel/modern/desktop/index.js +1 -1
- package/side-panel/modern/index.js +1 -1
- package/side-panel/modern/mobile/Component.mobile.js +1 -1
- package/side-panel/modern/mobile/index.js +1 -1
- package/skeleton/cssm/Component.js +16 -8
- package/skeleton/cssm/index.js +7 -3
- package/skeleton/cssm/index.module.css +102 -0
- package/skeleton/cssm/stories.module.css +57 -0
- package/slider/cssm/Component.js +48 -38
- package/slider/cssm/index.js +8 -4
- package/slider/cssm/index.module.css +143 -0
- package/slider/cssm/vars.css +19 -0
- package/slider-input/cssm/Component.js +34 -23
- package/slider-input/cssm/index.js +7 -5
- package/slider-input/cssm/index.module.css +164 -0
- package/sortable-list/cssm/Component.js +72 -58
- package/sortable-list/cssm/components/item/Components.js +43 -33
- package/sortable-list/cssm/components/item/index.module.css +84 -0
- package/sortable-list/cssm/index.js +7 -11
- package/sortable-list/cssm/index.module.css +87 -0
- package/sortable-list/cssm/shared/index.js +7 -2
- package/sortable-list/cssm/utils.js +17 -12
- package/space/cssm/Component.js +42 -33
- package/space/cssm/Item.js +30 -12
- package/space/cssm/index.js +7 -4
- package/space/cssm/index.module.css +36 -0
- package/space/cssm/utils.js +9 -3
- package/spinner/cssm/Component.js +45 -38
- package/spinner/cssm/default.module.css +21 -0
- package/spinner/cssm/index.js +8 -4
- package/spinner/cssm/index.module.css +44 -0
- package/spinner/cssm/inverted.module.css +21 -0
- package/stack/cssm/component.js +16 -9
- package/stack/cssm/context.js +7 -4
- package/stack/cssm/index.js +10 -3
- package/status/cssm/Component.js +17 -7
- package/status/cssm/index.js +8 -3
- package/status/cssm/index.module.css +95 -0
- package/status-badge/cssm/Component.js +75 -70
- package/status-badge/cssm/default.module.css +32 -0
- package/status-badge/cssm/index.js +7 -16
- package/status-badge/cssm/index.module.css +49 -0
- package/status-badge/cssm/inverted.module.css +32 -0
- package/stepped-progress-bar/cssm/Component.js +25 -20
- package/stepped-progress-bar/cssm/components/step-bar/Component.js +15 -6
- package/stepped-progress-bar/cssm/components/step-bar/index.js +7 -3
- package/stepped-progress-bar/cssm/components/step-bar/index.module.css +75 -0
- package/stepped-progress-bar/cssm/default.module.css +22 -0
- package/stepped-progress-bar/cssm/index.js +7 -5
- package/stepped-progress-bar/cssm/index.module.css +26 -0
- package/stepped-progress-bar/cssm/inverted.module.css +22 -0
- package/steps/cssm/Component.js +34 -32
- package/steps/cssm/components/step/Component.js +65 -54
- package/steps/cssm/components/step/index.js +7 -9
- package/steps/cssm/components/step/index.module.css +136 -0
- package/steps/cssm/components/step-indicator/Component.js +16 -7
- package/steps/cssm/components/step-indicator/index.js +7 -4
- package/steps/cssm/components/step-indicator/index.module.css +3 -0
- package/steps/cssm/index.js +7 -10
- package/steps/cssm/index.module.css +23 -0
- package/switch/cssm/Component.js +38 -28
- package/switch/cssm/index.js +7 -6
- package/switch/cssm/index.module.css +159 -0
- package/system-message/cssm/Component.js +42 -32
- package/system-message/cssm/Components.responsive.js +20 -19
- package/system-message/cssm/Context.js +9 -3
- package/system-message/cssm/components/caption/Component.js +20 -13
- package/system-message/cssm/components/caption/index.js +7 -5
- package/system-message/cssm/components/caption/index.module.css +24 -0
- package/system-message/cssm/components/controls/Component.js +29 -21
- package/system-message/cssm/components/controls/index.js +7 -5
- package/system-message/cssm/components/controls/index.module.css +37 -0
- package/system-message/cssm/components/graphic/Component.js +20 -13
- package/system-message/cssm/components/graphic/index.js +7 -5
- package/system-message/cssm/components/graphic/index.module.css +20 -0
- package/system-message/cssm/components/subtitle/Component.js +20 -13
- package/system-message/cssm/components/subtitle/index.js +7 -5
- package/system-message/cssm/components/subtitle/index.module.css +24 -0
- package/system-message/cssm/components/title/Component.js +27 -21
- package/system-message/cssm/components/title/desktop.module.css +24 -0
- package/system-message/cssm/components/title/index.js +7 -5
- package/system-message/cssm/components/title/index.module.css +27 -0
- package/system-message/cssm/components/title/mobile.module.css +24 -0
- package/system-message/cssm/desktop/Component.desktop.js +16 -14
- package/system-message/cssm/desktop/index.js +7 -12
- package/system-message/cssm/index.js +7 -13
- package/system-message/cssm/index.module.css +26 -0
- package/system-message/cssm/mobile/Component.mobile.js +16 -14
- package/system-message/cssm/mobile/index.js +7 -12
- package/system-message/cssm/mobile/mobile.module.css +19 -0
- package/system-message/cssm/shared/index.js +7 -10
- package/system-message/cssm/utils.js +20 -20
- package/tab-bar/cssm/Component.js +27 -18
- package/tab-bar/cssm/components/tab/Component.js +31 -22
- package/tab-bar/cssm/components/tab/index.js +7 -5
- package/tab-bar/cssm/components/tab/index.module.css +70 -0
- package/tab-bar/cssm/index.js +7 -7
- package/tab-bar/cssm/index.module.css +31 -0
- package/tab-bar/cssm/shared/index.js +7 -2
- package/tab-bar/cssm/utils.js +5 -3
- package/table/components/pagination/index.css +1 -1
- package/table/components/pagination/select-field/index.css +1 -1
- package/table/components/table/index.css +1 -1
- package/table/components/tbody/index.css +1 -1
- package/table/components/tcell/index.css +1 -1
- package/table/components/texpandable-row/index.css +1 -1
- package/table/components/thead/index.css +1 -1
- package/table/components/thead-cell/index.css +1 -1
- package/table/components/trow/index.css +1 -1
- package/table/components/tsortable-head-cell/index.css +1 -1
- package/table/cssm/component.js +21 -31
- package/table/cssm/components/index.js +23 -21
- package/table/cssm/components/pagination/Component.js +35 -25
- package/table/cssm/components/pagination/index.js +7 -8
- package/table/cssm/components/pagination/index.module.css +49 -0
- package/table/cssm/components/pagination/select-field/index.js +19 -10
- package/table/cssm/components/pagination/select-field/index.module.css +23 -0
- package/table/cssm/components/table/Component.js +38 -29
- package/table/cssm/components/table/index.js +7 -7
- package/table/cssm/components/table/index.module.css +40 -0
- package/table/cssm/components/table/utils.js +14 -9
- package/table/cssm/components/table-context/index.js +11 -4
- package/table/cssm/components/tbody/Component.js +16 -6
- package/table/cssm/components/tbody/index.js +7 -3
- package/table/cssm/components/tbody/index.module.css +19 -0
- package/table/cssm/components/tcell/Component.js +21 -13
- package/table/cssm/components/tcell/index.js +7 -4
- package/table/cssm/components/tcell/index.module.css +48 -0
- package/table/cssm/components/texpandable-row/Component.js +26 -17
- package/table/cssm/components/texpandable-row/index.js +7 -4
- package/table/cssm/components/texpandable-row/index.module.css +28 -0
- package/table/cssm/components/thead/Component.js +17 -7
- package/table/cssm/components/thead/index.js +7 -3
- package/table/cssm/components/thead/index.module.css +39 -0
- package/table/cssm/components/thead-cell/Component.js +20 -11
- package/table/cssm/components/thead-cell/index.js +7 -4
- package/table/cssm/components/thead-cell/index.module.css +57 -0
- package/table/cssm/components/trow/Component.js +21 -10
- package/table/cssm/components/trow/index.js +7 -3
- package/table/cssm/components/trow/index.module.css +37 -0
- package/table/cssm/components/tsortable-head-cell/Component.js +28 -20
- package/table/cssm/components/tsortable-head-cell/index.js +7 -8
- package/table/cssm/components/tsortable-head-cell/index.module.css +46 -0
- package/table/cssm/components/tsortable-head-cell/sort-icon-asc.js +11 -4
- package/table/cssm/components/tsortable-head-cell/sort-icon-desc.js +11 -4
- package/table/cssm/components/tsortable-head-cell/sort-icon-unset.js +11 -4
- package/table/cssm/index.js +7 -22
- package/table/cssm/utils.js +9 -3
- package/table/esm/components/pagination/index.css +1 -1
- package/table/esm/components/pagination/select-field/index.css +1 -1
- package/table/esm/components/table/index.css +1 -1
- package/table/esm/components/tbody/index.css +1 -1
- package/table/esm/components/tcell/index.css +1 -1
- package/table/esm/components/texpandable-row/index.css +1 -1
- package/table/esm/components/thead/index.css +1 -1
- package/table/esm/components/thead-cell/index.css +1 -1
- package/table/esm/components/trow/index.css +1 -1
- package/table/esm/components/tsortable-head-cell/index.css +1 -1
- package/table/modern/components/pagination/index.css +1 -1
- package/table/modern/components/pagination/select-field/index.css +1 -1
- package/table/modern/components/table/index.css +1 -1
- package/table/modern/components/tbody/index.css +1 -1
- package/table/modern/components/tcell/index.css +1 -1
- package/table/modern/components/texpandable-row/index.css +1 -1
- package/table/modern/components/thead/index.css +1 -1
- package/table/modern/components/thead-cell/index.css +1 -1
- package/table/modern/components/trow/index.css +1 -1
- package/table/modern/components/tsortable-head-cell/index.css +1 -1
- package/tabs/components/primary-tablist/Component.collapsible.js +1 -1
- package/tabs/components/primary-tablist/Component.desktop.js +1 -1
- package/tabs/components/primary-tablist/Component.mobile.js +1 -1
- package/tabs/components/primary-tablist/index.css +1 -1
- package/tabs/components/primary-tablist/mobile.css +1 -1
- package/tabs/components/scroll-controls/index.css +1 -1
- package/tabs/components/scrollable-container/index.css +1 -1
- package/tabs/components/secondary-tablist/Component.desktop.js +1 -1
- package/tabs/components/secondary-tablist/Component.mobile.js +1 -1
- package/tabs/components/secondary-tablist/index.css +1 -1
- package/tabs/components/secondary-tablist/mobile.css +1 -1
- package/tabs/components/tab/index.css +1 -1
- package/tabs/components/tabs/Component.d.ts +1 -1
- package/tabs/components/tabs/Component.js +2 -2
- package/tabs/cssm/collapsible/index.js +9 -20
- package/tabs/cssm/components/primary-tablist/Component.collapsible.js +66 -53
- package/tabs/cssm/components/primary-tablist/Component.desktop.js +16 -20
- package/tabs/cssm/components/primary-tablist/Component.js +47 -40
- package/tabs/cssm/components/primary-tablist/Component.mobile.js +15 -26
- package/tabs/cssm/components/primary-tablist/Component.responsive.js +16 -25
- package/tabs/cssm/components/primary-tablist/index.module.css +459 -0
- package/tabs/cssm/components/primary-tablist/mobile.module.css +271 -0
- package/tabs/cssm/components/primary-tablist/text-styles.module.css +16 -0
- package/tabs/cssm/components/scroll-controls/Component.js +37 -27
- package/tabs/cssm/components/scroll-controls/index.js +7 -8
- package/tabs/cssm/components/scroll-controls/index.module.css +90 -0
- package/tabs/cssm/components/scroll-controls/utils.js +14 -10
- package/tabs/cssm/components/scrollable-container/Component.js +42 -37
- package/tabs/cssm/components/scrollable-container/index.js +7 -10
- package/tabs/cssm/components/scrollable-container/index.module.css +64 -0
- package/tabs/cssm/components/secondary-tablist/Component.desktop.js +17 -18
- package/tabs/cssm/components/secondary-tablist/Component.js +27 -26
- package/tabs/cssm/components/secondary-tablist/Component.mobile.js +20 -23
- package/tabs/cssm/components/secondary-tablist/Component.responsive.js +16 -24
- package/tabs/cssm/components/secondary-tablist/index.module.css +77 -0
- package/tabs/cssm/components/secondary-tablist/mobile.module.css +47 -0
- package/tabs/cssm/components/tab/Component.js +18 -8
- package/tabs/cssm/components/tab/index.js +7 -3
- package/tabs/cssm/components/tab/index.module.css +7 -0
- package/tabs/cssm/components/tabs/Component.collapsible.js +15 -20
- package/tabs/cssm/components/tabs/Component.d.ts +1 -1
- package/tabs/cssm/components/tabs/Component.desktop.js +19 -29
- package/tabs/cssm/components/tabs/Component.js +28 -18
- package/tabs/cssm/components/tabs/Component.mobile.js +19 -29
- package/tabs/cssm/components/tabs/Component.responsive.js +19 -35
- package/tabs/cssm/components/title/Component.js +27 -15
- package/tabs/cssm/components/title/index.js +7 -3
- package/tabs/cssm/desktop/index.js +13 -26
- package/tabs/cssm/hooks/use-collapsible-elements.js +32 -28
- package/tabs/cssm/hooks/use-tablist-titles.js +39 -40
- package/tabs/cssm/hooks/use-tabs.js +37 -30
- package/tabs/cssm/index.js +13 -32
- package/tabs/cssm/mobile/index.js +13 -26
- package/tabs/cssm/shared/index.js +11 -16
- package/tabs/cssm/synthetic-events.js +22 -38
- package/tabs/cssm/typings.d.ts +0 -5
- package/tabs/cssm/vars.css +41 -0
- package/tabs/esm/collapsible/index.js +1 -1
- package/tabs/esm/components/primary-tablist/Component.collapsible.js +1 -1
- package/tabs/esm/components/primary-tablist/Component.desktop.js +1 -1
- package/tabs/esm/components/primary-tablist/Component.mobile.js +1 -1
- package/tabs/esm/components/primary-tablist/Component.responsive.js +1 -1
- package/tabs/esm/components/primary-tablist/index.css +1 -1
- package/tabs/esm/components/primary-tablist/mobile.css +1 -1
- package/tabs/esm/components/scroll-controls/index.css +1 -1
- package/tabs/esm/components/scrollable-container/index.css +1 -1
- package/tabs/esm/components/secondary-tablist/Component.desktop.js +1 -1
- package/tabs/esm/components/secondary-tablist/Component.mobile.js +1 -1
- package/tabs/esm/components/secondary-tablist/Component.responsive.js +1 -1
- package/tabs/esm/components/secondary-tablist/index.css +1 -1
- package/tabs/esm/components/secondary-tablist/mobile.css +1 -1
- package/tabs/esm/components/tab/index.css +1 -1
- package/tabs/esm/components/tabs/Component.collapsible.js +1 -1
- package/tabs/esm/components/tabs/Component.d.ts +1 -1
- package/tabs/esm/components/tabs/Component.desktop.js +2 -2
- package/tabs/esm/components/tabs/Component.js +2 -2
- package/tabs/esm/components/tabs/Component.mobile.js +2 -2
- package/tabs/esm/components/tabs/Component.responsive.js +2 -2
- package/tabs/esm/desktop/index.js +2 -2
- package/tabs/esm/index.js +2 -2
- package/tabs/esm/mobile/index.js +2 -2
- package/tabs/esm/typings.d.ts +0 -5
- package/tabs/modern/collapsible/index.js +1 -1
- package/tabs/modern/components/primary-tablist/Component.collapsible.js +1 -1
- package/tabs/modern/components/primary-tablist/Component.desktop.js +1 -1
- package/tabs/modern/components/primary-tablist/Component.mobile.js +1 -1
- package/tabs/modern/components/primary-tablist/Component.responsive.js +1 -1
- package/tabs/modern/components/primary-tablist/index.css +1 -1
- package/tabs/modern/components/primary-tablist/mobile.css +1 -1
- package/tabs/modern/components/scroll-controls/index.css +1 -1
- package/tabs/modern/components/scrollable-container/index.css +1 -1
- package/tabs/modern/components/secondary-tablist/Component.desktop.js +1 -1
- package/tabs/modern/components/secondary-tablist/Component.mobile.js +1 -1
- package/tabs/modern/components/secondary-tablist/Component.responsive.js +1 -1
- package/tabs/modern/components/secondary-tablist/index.css +1 -1
- package/tabs/modern/components/secondary-tablist/mobile.css +1 -1
- package/tabs/modern/components/tab/index.css +1 -1
- package/tabs/modern/components/tabs/Component.collapsible.js +1 -1
- package/tabs/modern/components/tabs/Component.d.ts +1 -1
- package/tabs/modern/components/tabs/Component.desktop.js +2 -2
- package/tabs/modern/components/tabs/Component.js +2 -2
- package/tabs/modern/components/tabs/Component.mobile.js +2 -2
- package/tabs/modern/components/tabs/Component.responsive.js +2 -2
- package/tabs/modern/desktop/index.js +2 -2
- package/tabs/modern/index.js +2 -2
- package/tabs/modern/mobile/index.js +2 -2
- package/tabs/modern/typings.d.ts +0 -5
- package/tabs/typings.d.ts +0 -5
- package/tag/components/base-tag/Component.d.ts +1 -1
- package/tag/cssm/Component.responsive.js +18 -14
- package/tag/cssm/components/base-tag/Component.d.ts +1 -1
- package/tag/cssm/components/base-tag/Component.js +47 -39
- package/tag/cssm/components/base-tag/default.module.css +108 -0
- package/tag/cssm/components/base-tag/index.js +7 -5
- package/tag/cssm/components/base-tag/index.module.css +186 -0
- package/tag/cssm/components/base-tag/inverted.module.css +113 -0
- package/tag/cssm/desktop/Component.desktop.js +17 -16
- package/tag/cssm/desktop/default.desktop.module.css +62 -0
- package/tag/cssm/desktop/desktop.module.css +58 -0
- package/tag/cssm/desktop/index.js +7 -6
- package/tag/cssm/desktop/inverted.desktop.module.css +63 -0
- package/tag/cssm/index.js +7 -9
- package/tag/cssm/mobile/Component.mobile.js +17 -16
- package/tag/cssm/mobile/default.mobile.module.css +58 -0
- package/tag/cssm/mobile/index.js +7 -6
- package/tag/cssm/mobile/inverted.mobile.module.css +64 -0
- package/tag/cssm/mobile/mobile.module.css +59 -0
- package/tag/cssm/vars.css +42 -0
- package/tag/modern/components/base-tag/Component.d.ts +1 -1
- package/text/cssm/Component.js +20 -13
- package/text/cssm/index.js +7 -3
- package/text/cssm/index.module.css +44 -0
- package/text/cssm/mixin.module.css +374 -0
- package/textarea/Component.js +1 -1
- package/textarea/components/PseudoTextArea.js +1 -1
- package/textarea/components/index.d.ts +1 -1
- package/textarea/components/index.js +1 -1
- package/textarea/cssm/Component.d.ts +1 -1
- package/textarea/cssm/Component.js +84 -81
- package/textarea/cssm/components/PseudoTextArea.d.ts +18 -0
- package/textarea/cssm/components/PseudoTextArea.js +22 -4
- package/textarea/cssm/components/index.d.ts +1 -1
- package/textarea/cssm/components/index.js +7 -4
- package/textarea/cssm/consts.js +4 -2
- package/textarea/cssm/default.module.css +109 -0
- package/textarea/cssm/index.js +8 -10
- package/textarea/cssm/index.module.css +243 -0
- package/textarea/cssm/inverted.module.css +110 -0
- package/textarea/cssm/shared/index.js +7 -2
- package/textarea/cssm/utils.js +10 -8
- package/textarea/esm/Component.d.ts +1 -1
- package/textarea/esm/Component.js +1 -1
- package/textarea/esm/components/PseudoTextArea.js +1 -1
- package/textarea/esm/components/index.d.ts +1 -1
- package/textarea/esm/components/index.js +1 -1
- package/textarea/esm/index.js +1 -1
- package/textarea/modern/Component.d.ts +1 -1
- package/textarea/modern/Component.js +1 -1
- package/textarea/modern/components/PseudoTextArea.js +1 -1
- package/textarea/modern/components/index.d.ts +1 -1
- package/textarea/modern/components/index.js +1 -1
- package/textarea/modern/index.js +1 -1
- package/themes/compiled/mobile-dark-bluetint.css +111 -111
- package/time-input/cssm/Component.js +27 -19
- package/time-input/cssm/index.js +9 -4
- package/time-input/cssm/utils/format.js +23 -13
- package/time-input/cssm/utils/index.js +11 -1
- package/toast/cssm/Component.responsive.js +18 -20
- package/toast/cssm/components/base-toast/component.js +48 -42
- package/toast/cssm/components/base-toast/index.js +7 -9
- package/toast/cssm/components/base-toast/index.module.css +56 -0
- package/toast/cssm/desktop/Component.desktop.js +18 -15
- package/toast/cssm/desktop/index.js +7 -11
- package/toast/cssm/index.js +7 -15
- package/toast/cssm/mobile/Component.mobile.js +18 -15
- package/toast/cssm/mobile/index.js +7 -11
- package/toast/esm/Component.responsive.d.ts +1 -1
- package/toast/esm/components/base-toast/component.d.ts +1 -1
- package/toast-plate/cssm/Component.responsive.js +18 -18
- package/toast-plate/cssm/components/base-toast-plate/component.js +51 -44
- package/toast-plate/cssm/components/base-toast-plate/default.module.css +30 -0
- package/toast-plate/cssm/components/base-toast-plate/index.js +7 -9
- package/toast-plate/cssm/components/base-toast-plate/index.module.css +97 -0
- package/toast-plate/cssm/components/base-toast-plate/inverted.module.css +30 -0
- package/toast-plate/cssm/desktop/Component.desktop.js +12 -13
- package/toast-plate/cssm/desktop/desktop.module.css +47 -0
- package/toast-plate/cssm/desktop/index.js +7 -10
- package/toast-plate/cssm/index.js +7 -13
- package/toast-plate/cssm/mobile/Component.mobile.js +12 -13
- package/toast-plate/cssm/mobile/index.js +7 -10
- package/toast-plate/cssm/mobile/mobile.module.css +32 -0
- package/toast-plate/cssm/vars.css +20 -0
- package/tooltip/cssm/Component.responsive.js +16 -13
- package/tooltip/cssm/default.module.css +41 -0
- package/tooltip/cssm/desktop/Component.desktop.js +63 -64
- package/tooltip/cssm/desktop/index.js +7 -5
- package/tooltip/cssm/index.js +7 -10
- package/tooltip/cssm/index.module.css +51 -0
- package/tooltip/cssm/inverted.module.css +43 -0
- package/tooltip/cssm/mobile/Component.mobile.js +29 -20
- package/tooltip/cssm/mobile/index.js +7 -5
- package/tooltip/cssm/mobile/mobile.module.css +15 -0
- package/typography/cssm/colors.js +4 -2
- package/typography/cssm/colors.module.css +73 -0
- package/typography/cssm/component.js +12 -21
- package/typography/cssm/hooks/index.js +7 -5
- package/typography/cssm/hooks/use-skeleton.js +36 -29
- package/typography/cssm/hooks/use-skeleton.module.css +25 -0
- package/typography/cssm/index.js +9 -17
- package/typography/cssm/presets.js +4 -2
- package/typography/cssm/text/component.js +36 -27
- package/typography/cssm/text/index.js +7 -8
- package/typography/cssm/text/index.module.css +92 -0
- package/typography/cssm/title/common.module.css +16 -0
- package/typography/cssm/title/component.js +25 -15
- package/typography/cssm/title/index.js +14 -14
- package/typography/cssm/title/index.module.css +98 -0
- package/typography/cssm/title/utils.js +3 -1
- package/typography/cssm/title-mobile/component.js +14 -14
- package/typography/cssm/title-mobile/index.js +7 -11
- package/typography/cssm/title-mobile/index.module.css +68 -0
- package/typography/cssm/title-responsive/component.js +17 -17
- package/typography/cssm/title-responsive/index.js +7 -12
- package/typography/cssm/title-responsive/index.module.css +172 -0
- package/typography/esm/component.js +2 -2
- package/typography/esm/index.js +2 -2
- package/typography/esm/text/component.js +1 -1
- package/typography/esm/text/index.js +1 -1
- package/typography/esm/title/component.d.ts +1 -1
- package/typography/esm/title/component.js +1 -1
- package/typography/esm/title/index.d.ts +1 -1
- package/typography/esm/title/index.js +2 -2
- package/typography/esm/title-mobile/component.d.ts +1 -1
- package/typography/esm/title-mobile/component.js +2 -2
- package/typography/esm/title-mobile/index.js +2 -2
- package/typography/esm/title-responsive/component.d.ts +1 -1
- package/typography/esm/title-responsive/component.js +2 -2
- package/typography/esm/title-responsive/index.js +2 -2
- package/typography/modern/component.js +2 -2
- package/typography/modern/index.js +2 -2
- package/typography/modern/text/component.js +1 -1
- package/typography/modern/text/index.js +1 -1
- package/typography/modern/title/component.js +1 -1
- package/typography/modern/title/index.js +2 -2
- package/typography/modern/title-mobile/component.js +2 -2
- package/typography/modern/title-mobile/index.js +2 -2
- package/typography/modern/title-responsive/component.js +2 -2
- package/typography/modern/title-responsive/index.js +2 -2
- package/typography/text/component.js +1 -1
- package/typography/title/component.js +1 -1
- package/typography/title/index.js +1 -1
- package/typography/title-mobile/component.js +1 -1
- package/typography/title-responsive/component.js +1 -1
- package/underlay/Component.js +1 -1
- package/underlay/cssm/Component.js +79 -33
- package/underlay/cssm/constants.js +8 -4
- package/underlay/cssm/index.js +7 -7
- package/underlay/cssm/index.module.css +466 -0
- package/underlay/cssm/utils/getBorderCorners.js +17 -10
- package/underlay/cssm/utils/getClasses.js +22 -12
- package/underlay/esm/Component.js +1 -1
- package/underlay/esm/index.js +1 -1
- package/underlay/esm/utils/getBorderCorners.js +1 -1
- package/underlay/esm/utils/getClasses.js +1 -1
- package/underlay/modern/Component.js +1 -1
- package/underlay/modern/index.js +1 -1
- package/underlay/modern/utils/getBorderCorners.js +1 -1
- package/underlay/modern/utils/getClasses.js +1 -1
- package/underlay/utils/getBorderCorners.js +1 -1
- package/underlay/utils/getClasses.js +1 -1
- package/universal-date-input/components/base-universal-date-input/Component.js +1 -1
- package/universal-date-input/components/date-input/Component.js +1 -1
- package/universal-date-input/components/date-range-input/Component.js +1 -1
- package/universal-date-input/cssm/Component.responsive.js +15 -36
- package/universal-date-input/cssm/components/base-universal-date-input/Component.js +77 -76
- package/universal-date-input/cssm/components/base-universal-date-input/index.js +7 -31
- package/universal-date-input/cssm/components/date-input/Component.js +75 -66
- package/universal-date-input/cssm/components/date-input/index.js +7 -17
- package/universal-date-input/cssm/components/date-range-input/Component.js +91 -79
- package/universal-date-input/cssm/components/date-range-input/index.js +7 -19
- package/universal-date-input/cssm/components/time-input/Component.js +31 -29
- package/universal-date-input/cssm/components/time-input/index.js +7 -11
- package/universal-date-input/cssm/consts.js +20 -10
- package/universal-date-input/cssm/desktop/Component.desktop.js +11 -33
- package/universal-date-input/cssm/desktop/index.js +7 -32
- package/universal-date-input/cssm/index.js +7 -33
- package/universal-date-input/cssm/index.module.css +68 -0
- package/universal-date-input/cssm/mask/index.js +25 -31
- package/universal-date-input/cssm/mask/plugins.js +18 -18
- package/universal-date-input/cssm/mask/postprocessors.js +15 -18
- package/universal-date-input/cssm/mask/preprocessors.js +82 -79
- package/universal-date-input/cssm/mask/utils.js +116 -86
- package/universal-date-input/cssm/mobile/Component.mobile.js +11 -33
- package/universal-date-input/cssm/mobile/index.js +7 -32
- package/universal-date-input/cssm/shared/index.js +15 -8
- package/universal-date-input/cssm/utils/index.js +72 -41
- package/universal-date-input/esm/Component.responsive.js +1 -1
- package/universal-date-input/esm/components/base-universal-date-input/Component.js +1 -1
- package/universal-date-input/esm/components/base-universal-date-input/index.js +1 -1
- package/universal-date-input/esm/components/date-input/Component.js +1 -1
- package/universal-date-input/esm/components/date-input/index.js +1 -1
- package/universal-date-input/esm/components/date-range-input/Component.js +1 -1
- package/universal-date-input/esm/components/date-range-input/index.js +1 -1
- package/universal-date-input/esm/desktop/Component.desktop.js +1 -1
- package/universal-date-input/esm/desktop/index.js +1 -1
- package/universal-date-input/esm/index.css +1 -1
- package/universal-date-input/esm/index.js +1 -1
- package/universal-date-input/esm/mobile/Component.mobile.js +1 -1
- package/universal-date-input/esm/mobile/index.js +1 -1
- package/universal-date-input/esm/utils/index.js +1 -1
- package/universal-date-input/index.css +1 -1
- package/universal-date-input/modern/Component.responsive.js +1 -1
- package/universal-date-input/modern/components/base-universal-date-input/Component.js +1 -1
- package/universal-date-input/modern/components/base-universal-date-input/index.js +1 -1
- package/universal-date-input/modern/components/date-input/Component.js +1 -1
- package/universal-date-input/modern/components/date-input/index.js +1 -1
- package/universal-date-input/modern/components/date-range-input/Component.js +1 -1
- package/universal-date-input/modern/components/date-range-input/index.js +1 -1
- package/universal-date-input/modern/desktop/Component.desktop.js +1 -1
- package/universal-date-input/modern/desktop/index.js +1 -1
- package/universal-date-input/modern/index.css +1 -1
- package/universal-date-input/modern/index.js +1 -1
- package/universal-date-input/modern/mobile/Component.mobile.js +1 -1
- package/universal-date-input/modern/mobile/index.js +1 -1
- package/universal-date-input/modern/utils/index.js +1 -1
- package/universal-date-input/utils/index.js +1 -1
- package/vars/cssm/border-radius.css +11 -0
- package/vars/cssm/bundle/click.css +1390 -0
- package/vars/cssm/bundle/corp.css +1390 -0
- package/vars/cssm/bundle/intranet.css +1390 -0
- package/vars/cssm/bundle/mobile.css +1390 -0
- package/vars/cssm/bundle/site.css +1384 -0
- package/vars/cssm/colors-addons.css +127 -0
- package/vars/cssm/colors-bluetint.css +1173 -0
- package/vars/cssm/colors-bluetint.js +7 -3
- package/vars/cssm/colors-decorative.css +474 -0
- package/vars/cssm/colors-decorative.js +7 -3
- package/vars/cssm/colors-indigo.css +1171 -0
- package/vars/cssm/colors-indigo.js +7 -3
- package/vars/cssm/colors-pfm.css +62 -0
- package/vars/cssm/colors-pfm.js +7 -3
- package/vars/cssm/colors-qualitative.css +130 -0
- package/vars/cssm/colors-qualitative.js +7 -3
- package/vars/cssm/colors-sequential.css +170 -0
- package/vars/cssm/colors-sequential.js +7 -3
- package/vars/cssm/colors-transparent.css +28 -0
- package/vars/cssm/colors-x5.css +4 -0
- package/vars/cssm/colors.css +71 -0
- package/vars/cssm/gaps.css +30 -0
- package/vars/cssm/index.css +1482 -0
- package/vars/cssm/shadows-bluetint.css +43 -0
- package/vars/cssm/shadows-indigo.css +38 -0
- package/vars/cssm/typography.css +6 -0
- package/with-suffix/cssm/Component.js +56 -44
- package/with-suffix/cssm/index.js +7 -5
- package/with-suffix/cssm/index.module.css +58 -0
- package/accordion/Component.d.ts +0 -58
- package/accordion/Component.js +0 -52
- package/accordion/components/default-control-icon/Component.d.ts +0 -7
- package/accordion/components/default-control-icon/Component.js +0 -24
- package/accordion/components/default-control-icon/index.css +0 -16
- package/accordion/components/default-control-icon/index.d.ts +0 -1
- package/accordion/components/default-control-icon/index.js +0 -7
- package/accordion/components/index.d.ts +0 -1
- package/accordion/components/index.js +0 -7
- package/accordion/cssm/Component.d.ts +0 -58
- package/accordion/cssm/Component.js +0 -44
- package/accordion/cssm/components/default-control-icon/Component.d.ts +0 -7
- package/accordion/cssm/components/default-control-icon/Component.js +0 -13
- package/accordion/cssm/components/default-control-icon/index.css +0 -16
- package/accordion/cssm/components/default-control-icon/index.d.ts +0 -1
- package/accordion/cssm/components/default-control-icon/index.js +0 -4
- package/accordion/cssm/components/index.d.ts +0 -1
- package/accordion/cssm/components/index.js +0 -4
- package/accordion/cssm/hooks/index.d.ts +0 -1
- package/accordion/cssm/hooks/index.js +0 -3
- package/accordion/cssm/hooks/useRecalculateContentHeight.d.ts +0 -6
- package/accordion/cssm/hooks/useRecalculateContentHeight.js +0 -33
- package/accordion/cssm/index.css +0 -50
- package/accordion/cssm/index.d.ts +0 -2
- package/accordion/cssm/index.js +0 -8
- package/accordion/cssm/typings.d.ts +0 -2
- package/accordion/esm/Component.d.ts +0 -58
- package/accordion/esm/Component.js +0 -47
- package/accordion/esm/components/default-control-icon/Component.d.ts +0 -7
- package/accordion/esm/components/default-control-icon/Component.js +0 -17
- package/accordion/esm/components/default-control-icon/index.css +0 -16
- package/accordion/esm/components/default-control-icon/index.d.ts +0 -1
- package/accordion/esm/components/default-control-icon/index.js +0 -4
- package/accordion/esm/components/index.d.ts +0 -1
- package/accordion/esm/components/index.js +0 -4
- package/accordion/esm/hooks/index.d.ts +0 -1
- package/accordion/esm/hooks/index.js +0 -3
- package/accordion/esm/hooks/useRecalculateContentHeight.d.ts +0 -6
- package/accordion/esm/hooks/useRecalculateContentHeight.js +0 -33
- package/accordion/esm/index.css +0 -50
- package/accordion/esm/index.d.ts +0 -2
- package/accordion/esm/index.js +0 -9
- package/accordion/esm/typings.d.ts +0 -2
- package/accordion/hooks/index.d.ts +0 -1
- package/accordion/hooks/index.js +0 -7
- package/accordion/hooks/useRecalculateContentHeight.d.ts +0 -6
- package/accordion/hooks/useRecalculateContentHeight.js +0 -35
- package/accordion/index.css +0 -50
- package/accordion/index.d.ts +0 -2
- package/accordion/index.js +0 -7
- package/accordion/modern/Component.d.ts +0 -58
- package/accordion/modern/Component.js +0 -44
- package/accordion/modern/components/default-control-icon/Component.d.ts +0 -7
- package/accordion/modern/components/default-control-icon/Component.js +0 -13
- package/accordion/modern/components/default-control-icon/index.css +0 -16
- package/accordion/modern/components/default-control-icon/index.d.ts +0 -1
- package/accordion/modern/components/default-control-icon/index.js +0 -4
- package/accordion/modern/components/index.d.ts +0 -1
- package/accordion/modern/components/index.js +0 -4
- package/accordion/modern/hooks/index.d.ts +0 -1
- package/accordion/modern/hooks/index.js +0 -3
- package/accordion/modern/hooks/useRecalculateContentHeight.d.ts +0 -6
- package/accordion/modern/hooks/useRecalculateContentHeight.js +0 -33
- package/accordion/modern/index.css +0 -50
- package/accordion/modern/index.d.ts +0 -2
- package/accordion/modern/index.js +0 -8
- package/accordion/modern/typings.d.ts +0 -2
- package/accordion/modern/typings.js +0 -1
- package/accordion/package.json +0 -3
- package/accordion/typings.d.ts +0 -2
- package/accordion/typings.js +0 -1
- package/action-button/cssm/default.css +0 -78
- package/action-button/cssm/index.css +0 -81
- package/action-button/cssm/inverted.css +0 -80
- package/action-button/cssm/static.css +0 -62
- package/alert/cssm/index.css +0 -23
- package/amount/cssm/index.css +0 -37
- package/amount/cssm/pure/index.css +0 -4
- package/amount-input/cssm/default.css +0 -22
- package/amount-input/cssm/index.css +0 -38
- package/amount-input/cssm/inverted.css +0 -23
- package/attach/cssm/index.css +0 -98
- package/backdrop/cssm/index.css +0 -44
- package/badge/cssm/index.css +0 -204
- package/bank-card/cssm/index.css +0 -131
- package/base-modal/cssm/index.css +0 -60
- package/bottom-sheet/cssm/components/footer/index.css +0 -103
- package/bottom-sheet/cssm/components/header/index.css +0 -72
- package/bottom-sheet/cssm/index.css +0 -183
- package/button/cssm/components/base-button/default.css +0 -287
- package/button/cssm/components/base-button/index.css +0 -288
- package/button/cssm/components/base-button/inverted.css +0 -297
- package/button/cssm/desktop/default.desktop.css +0 -174
- package/button/cssm/desktop/desktop.css +0 -117
- package/button/cssm/desktop/inverted.desktop.css +0 -182
- package/button/cssm/mobile/default.mobile.css +0 -169
- package/button/cssm/mobile/inverted.mobile.css +0 -180
- package/button/cssm/mobile/mobile.css +0 -118
- package/calendar/cssm/components/calendar-mobile/backdrop-transitions.css +0 -34
- package/calendar/cssm/components/calendar-mobile/index.css +0 -109
- package/calendar/cssm/components/calendar-mobile/transitions.css +0 -31
- package/calendar/cssm/components/days-table/index.css +0 -281
- package/calendar/cssm/components/header/index.css +0 -50
- package/calendar/cssm/components/month-year-header/index.css +0 -69
- package/calendar/cssm/components/months-table/index.css +0 -88
- package/calendar/cssm/components/period-slider/index.css +0 -78
- package/calendar/cssm/components/select-button/index.css +0 -78
- package/calendar/cssm/components/years-table/index.css +0 -91
- package/calendar/cssm/desktop/desktop.css +0 -137
- package/calendar-input/cssm/components/calendar-input/index.css +0 -83
- package/calendar-range/cssm/components/divider/index.css +0 -69
- package/calendar-range/cssm/index.module-189a2c7b.js +0 -4
- package/calendar-range/cssm/views/index.css +0 -53
- package/calendar-with-skeleton/cssm/index.css +0 -79
- package/card-image/cssm/index.css +0 -40
- package/cdn-icon/cssm/index.css +0 -23
- package/chart/cssm/components/Dot/index.css +0 -23
- package/chart/cssm/components/Legends/index.css +0 -39
- package/chart/cssm/components/Tick/index.css +0 -30
- package/chart/cssm/components/TooltipContent/index.css +0 -62
- package/chart/cssm/index.css +0 -28
- package/checkbox/cssm/index.css +0 -191
- package/checkbox-group/cssm/components/base-checkbox-group/index.css +0 -80
- package/checkbox-group/cssm/desktop/desktop.css +0 -34
- package/checkbox-group/cssm/mobile/mobile.css +0 -36
- package/circular-progress-bar/cssm/index.css +0 -171
- package/code-input/cssm/components/base-code-input/index.css +0 -47
- package/code-input/cssm/components/input/index.css +0 -96
- package/code-input/cssm/desktop/desktop.css +0 -50
- package/code-input/cssm/mobile/mobile.css +0 -52
- package/collapse/cssm/index.css +0 -40
- package/comment/cssm/index.css +0 -38
- package/confirmation/cssm/components/base-confirmation/index.css +0 -23
- package/confirmation/cssm/components/countdown-loader/index.css +0 -22
- package/confirmation/cssm/components/header/index.css +0 -51
- package/confirmation/cssm/components/screens/fatal-error/index.css +0 -50
- package/confirmation/cssm/components/screens/hint/index.css +0 -70
- package/confirmation/cssm/components/screens/initial/index.css +0 -88
- package/confirmation/cssm/components/screens/temp-block/index.css +0 -53
- package/confirmation/cssm/countdown-section-3a5e36e4.js +0 -36
- package/confirmation/cssm/mobile/mobile.css +0 -4
- package/confirmation/modern/countdown-section-c4e32e68.d.ts +0 -10
- package/confirmation-v1/cssm/components/code-input/index.css +0 -90
- package/confirmation-v1/cssm/components/countdown/index.css +0 -74
- package/confirmation-v1/cssm/components/countdown-loader/index.css +0 -22
- package/confirmation-v1/cssm/components/overlimit/index.css +0 -81
- package/confirmation-v1/cssm/components/sign-confirmation/index.css +0 -98
- package/confirmation-v1/cssm/index.css +0 -107
- package/custom-button/cssm/index.css +0 -76
- package/custom-picker-button/cssm/field/index.css +0 -28
- package/date-input/cssm/index.css +0 -30
- package/date-range-input/cssm/components/date-range-input/index.css +0 -64
- package/date-time-input/cssm/components/date-time-input/index.css +0 -64
- package/divider/cssm/index.css +0 -24
- package/drawer/cssm/index.css +0 -119
- package/dropzone/cssm/components/overlay/index.css +0 -49
- package/dropzone/cssm/index.css +0 -44
- package/file-upload-item/cssm/index.css +0 -119
- package/filter-tag/cssm/components/base-filter-tag/index.css +0 -317
- package/filter-tag/cssm/desktop/desktop.css +0 -101
- package/filter-tag/cssm/mobile/mobile.css +0 -100
- package/form-control/cssm/components/base-form-control/default.css +0 -107
- package/form-control/cssm/components/base-form-control/index.css +0 -206
- package/form-control/cssm/components/base-form-control/inverted.css +0 -110
- package/form-control/cssm/desktop/default.desktop.css +0 -57
- package/form-control/cssm/desktop/desktop.css +0 -65
- package/form-control/cssm/desktop/inverted.desktop.css +0 -58
- package/form-control/cssm/mobile/default.mobile.css +0 -53
- package/form-control/cssm/mobile/inverted.mobile.css +0 -54
- package/form-control/cssm/mobile/mobile.css +0 -64
- package/gallery/cssm/buttons-be9bcc3d.js +0 -20
- package/gallery/cssm/components/header/index.css +0 -39
- package/gallery/cssm/components/header-info-block/index.css +0 -38
- package/gallery/cssm/components/image-preview/index.css +0 -76
- package/gallery/cssm/components/image-viewer/index.css +0 -122
- package/gallery/cssm/components/navigation-bar/index.css +0 -38
- package/gallery/cssm/index.css +0 -30
- package/gallery/cssm/slide-2e474041.js +0 -37
- package/gallery/modern/buttons-a604da82.d.ts +0 -11
- package/gallery/slide-6cc086c4.d.ts +0 -16
- package/gap/cssm/index.css +0 -93
- package/generic-wrapper/cssm/index.css +0 -109
- package/grid/cssm/col/index.css +0 -2003
- package/grid/cssm/gutters.css +0 -655
- package/grid/cssm/gutters.module-202003b3.js +0 -4
- package/grid/cssm/row/index.css +0 -40
- package/hatching-progress-bar/cssm/index.css +0 -96
- package/icon-button/cssm/default.css +0 -108
- package/icon-button/cssm/index.css +0 -53
- package/icon-button/cssm/inverted.css +0 -123
- package/icon-view/cssm/components/base-shape/index.css +0 -243
- package/indicator/cssm/index.css +0 -92
- package/input/cssm/components/base-input/default.css +0 -62
- package/input/cssm/components/base-input/index.css +0 -173
- package/input/cssm/components/base-input/inverted.css +0 -62
- package/input/cssm/components/clear-button/default.css +0 -37
- package/input/cssm/components/clear-button/index.css +0 -64
- package/input/cssm/components/clear-button/inverted.css +0 -37
- package/input-autocomplete/cssm/autocomplete-field/index.css +0 -4
- package/input-autocomplete/cssm/autocomplete-mobile-field/index.css +0 -46
- package/input-autocomplete/cssm/mobile/mobile.css +0 -19
- package/international-phone-input/Component-57569e57.d.ts +0 -5
- package/international-phone-input/cssm/Component-57569e57.d.ts +0 -5
- package/international-phone-input/cssm/components/base-international-phone-input/index.css +0 -5
- package/international-phone-input/cssm/components/country-select/index.css +0 -46
- package/international-phone-input/cssm/components/flag-icon/index.css +0 -30
- package/international-phone-input/cssm/components/select-field/index.css +0 -53
- package/international-phone-input/cssm/typings-57569e57.d.ts +0 -1595
- package/international-phone-input/esm/Component-57569e57.d.ts +0 -5
- package/international-phone-input/esm/typings-57569e57.d.ts +0 -1595
- package/international-phone-input/modern/Component-57569e57.d.ts +0 -5
- package/international-phone-input/modern/typings-57569e57.d.ts +0 -1595
- package/international-phone-input/typings-57569e57.d.ts +0 -1595
- package/intl-phone-input/cssm/components/flag-icon/index.css +0 -30
- package/intl-phone-input/cssm/components/select/index.css +0 -35
- package/intl-phone-input/cssm/components/select-field/index.css +0 -53
- package/intl-phone-input/cssm/index.css +0 -32
- package/link/cssm/default.css +0 -68
- package/link/cssm/index.css +0 -66
- package/link/cssm/inverted.css +0 -68
- package/list/cssm/Component-431b98c8.js +0 -52
- package/list/cssm/components/item/index.css +0 -49
- package/list/cssm/index.css +0 -39
- package/list-header/cssm/index.css +0 -32
- package/loader/cssm/index.css +0 -57
- package/markdown/cssm/index.css +0 -57
- package/markdown/cssm/use-overrides-f2cf0bfa.js +0 -29
- package/markdown/use-overrides-7f053469.d.ts +0 -3
- package/masked-input/cssm/index.css +0 -4
- package/modal/cssm/components/content/desktop.css +0 -41
- package/modal/cssm/components/content/index.css +0 -39
- package/modal/cssm/components/content/mobile.css +0 -35
- package/modal/cssm/components/controls/index.css +0 -4
- package/modal/cssm/components/footer/desktop.css +0 -49
- package/modal/cssm/components/footer/index.css +0 -45
- package/modal/cssm/components/footer/layout.css +0 -65
- package/modal/cssm/components/footer/mobile.css +0 -35
- package/modal/cssm/components/header/desktop.css +0 -74
- package/modal/cssm/components/header/index.css +0 -43
- package/modal/cssm/components/header/mobile.css +0 -52
- package/modal/cssm/desktop/desktop.css +0 -59
- package/modal/cssm/layout.module-6704c669.js +0 -4
- package/modal/cssm/mobile/mobile.css +0 -34
- package/modal/cssm/transitions.css +0 -25
- package/navigation-bar/cssm/components/back-arrow-addon/index.css +0 -76
- package/navigation-bar/cssm/components/closer/index.css +0 -48
- package/navigation-bar/cssm/index.css +0 -108
- package/notification/cssm/index.css +0 -57
- package/notification-manager/cssm/index.css +0 -57
- package/number-input/cssm/components/number-input/default.css +0 -24
- package/number-input/cssm/components/number-input/index.css +0 -23
- package/number-input/cssm/components/number-input/inverted.css +0 -24
- package/number-input/cssm/components/steppers/default.css +0 -20
- package/number-input/cssm/components/steppers/index.css +0 -30
- package/number-input/cssm/components/steppers/inverted.css +0 -20
- package/pagination/cssm/components/default-view/index.css +0 -27
- package/pagination/cssm/components/per-page-view/index.css +0 -21
- package/pagination/cssm/components/tag/index.css +0 -49
- package/pagination/cssm/index.css +0 -32
- package/pass-code/cssm/components/InputProgress/index.css +0 -41
- package/pass-code/cssm/components/InputProgress/transitions.css +0 -52
- package/pass-code/cssm/components/KeyPad/index.css +0 -45
- package/pass-code/cssm/components/KeyPadButton/index.css +0 -69
- package/pass-code/cssm/index.css +0 -38
- package/password-input/cssm/index.css +0 -27
- package/pattern-lock/cssm/components/base-pattern-lock/index.css +0 -45
- package/pattern-lock/cssm/desktop/desktop.css +0 -28
- package/pattern-lock/cssm/mobile/mobile.css +0 -48
- package/picker-button/Component-57569e57.d.ts +0 -5
- package/picker-button/cssm/Component-57569e57.d.ts +0 -5
- package/picker-button/cssm/field/index.css +0 -31
- package/picker-button/cssm/index.css +0 -28
- package/picker-button/cssm/option/index.css +0 -28
- package/picker-button/cssm/typings-57569e57.d.ts +0 -1057
- package/picker-button/esm/Component-57569e57.d.ts +0 -5
- package/picker-button/esm/typings-57569e57.d.ts +0 -1057
- package/picker-button/modern/Component-57569e57.d.ts +0 -5
- package/picker-button/modern/typings-57569e57.d.ts +0 -1057
- package/picker-button/typings-57569e57.d.ts +0 -1057
- package/plate/cssm/components/base-plate/index.css +0 -212
- package/plate/cssm/desktop/desktop.css +0 -29
- package/plate/cssm/mobile/mobile.css +0 -28
- package/popover/cssm/index.css +0 -99
- package/popup-sheet/cssm/components/backdrop/index.css +0 -36
- package/popup-sheet/cssm/index.css +0 -53
- package/progress-bar/cssm/index.css +0 -86
- package/pure-cell/component-21d7b687.d.ts +0 -120
- package/pure-cell/component-6a7433f5.d.ts +0 -215
- package/pure-cell/cssm/component-21d7b687.d.ts +0 -120
- package/pure-cell/cssm/component-8ed6c4dc.d.ts +0 -215
- package/pure-cell/cssm/component-8ed6c4dc.js +0 -175
- package/pure-cell/cssm/components/addon/index.css +0 -38
- package/pure-cell/cssm/components/amount/index.css +0 -21
- package/pure-cell/cssm/components/amount-title/index.css +0 -21
- package/pure-cell/cssm/components/category/index.css +0 -39
- package/pure-cell/cssm/components/content/index.css +0 -24
- package/pure-cell/cssm/components/footer/index.css +0 -26
- package/pure-cell/cssm/components/footer-button/index.css +0 -19
- package/pure-cell/cssm/components/graphics/index.css +0 -50
- package/pure-cell/cssm/components/main/index.css +0 -34
- package/pure-cell/cssm/components/text/index.css +0 -44
- package/pure-cell/cssm/index.css +0 -94
- package/pure-cell/esm/component-041614ac.d.ts +0 -215
- package/pure-cell/esm/component-21d7b687.d.ts +0 -120
- package/pure-cell/modern/component-21d7b687.d.ts +0 -120
- package/pure-cell/modern/component-dba34be0.d.ts +0 -215
- package/pure-cell/modern/component-dba34be0.js +0 -175
- package/radio/cssm/index.css +0 -174
- package/radio-group/cssm/components/base-radio-group/index.css +0 -83
- package/radio-group/cssm/desktop/desktop.css +0 -34
- package/radio-group/cssm/mobile/mobile.css +0 -36
- package/scrollbar/cssm/default.css +0 -26
- package/scrollbar/cssm/index.css +0 -188
- package/scrollbar/cssm/inverted.css +0 -27
- package/segmented-control/cssm/components/segment/default.css +0 -23
- package/segmented-control/cssm/components/segment/index.css +0 -51
- package/segmented-control/cssm/components/segment/inverted.css +0 -23
- package/segmented-control/cssm/default.css +0 -27
- package/segmented-control/cssm/index.css +0 -72
- package/segmented-control/cssm/inverted.css +0 -27
- package/select/cssm/components/arrow/index.css +0 -38
- package/select/cssm/components/base-checkmark/index.css +0 -36
- package/select/cssm/components/base-option/index.css +0 -91
- package/select/cssm/components/base-select/index.css +0 -93
- package/select/cssm/components/base-select/mobile.css +0 -56
- package/select/cssm/components/checkmark/index.css +0 -70
- package/select/cssm/components/checkmark-mobile/index.css +0 -44
- package/select/cssm/components/field/index.css +0 -83
- package/select/cssm/components/footer/index.css +0 -42
- package/select/cssm/components/optgroup/index.css +0 -62
- package/select/cssm/components/option/index.css +0 -122
- package/select/cssm/components/options-list/index.css +0 -60
- package/select/cssm/components/search/index.css +0 -28
- package/select/cssm/components/virtual-options-list/index.css +0 -86
- package/select/cssm/hook-f1333091.js +0 -156
- package/select/cssm/presets/useSelectWithApply/options-list-with-apply/footer/index.css +0 -26
- package/select/cssm/presets/useSelectWithApply/options-list-with-apply/header/index.css +0 -23
- package/select/cssm/presets/useSelectWithLoading/index.css +0 -8
- package/select-with-tags/cssm/components/tag/index.css +0 -88
- package/select-with-tags/cssm/components/tag-list/index.css +0 -132
- package/side-panel/cssm/components/content/desktop.css +0 -37
- package/side-panel/cssm/components/content/index.css +0 -39
- package/side-panel/cssm/components/content/mobile.css +0 -35
- package/side-panel/cssm/components/controls/index.css +0 -4
- package/side-panel/cssm/components/footer/desktop.css +0 -37
- package/side-panel/cssm/components/footer/index.css +0 -46
- package/side-panel/cssm/components/footer/layout.css +0 -65
- package/side-panel/cssm/components/footer/mobile.css +0 -35
- package/side-panel/cssm/components/header/desktop.css +0 -51
- package/side-panel/cssm/components/header/index.css +0 -74
- package/side-panel/cssm/components/header/mobile.css +0 -51
- package/side-panel/cssm/desktop/desktop.css +0 -35
- package/side-panel/cssm/desktop/transitions.desktop.css +0 -33
- package/side-panel/cssm/layout.module-cf81db0c.js +0 -4
- package/side-panel/cssm/mobile/mobile.css +0 -45
- package/side-panel/cssm/mobile/transitions.mobile.css +0 -25
- package/skeleton/cssm/index.css +0 -103
- package/slider/cssm/index.css +0 -144
- package/slider-input/cssm/index.css +0 -164
- package/sortable-list/cssm/components/item/index.css +0 -85
- package/sortable-list/cssm/index.css +0 -88
- package/space/cssm/index.css +0 -37
- package/spinner/cssm/default.css +0 -22
- package/spinner/cssm/index.css +0 -45
- package/spinner/cssm/inverted.css +0 -22
- package/status/cssm/index.css +0 -96
- package/status-badge/cssm/default.css +0 -33
- package/status-badge/cssm/index.css +0 -50
- package/status-badge/cssm/inverted.css +0 -33
- package/stepped-progress-bar/cssm/components/step-bar/index.css +0 -76
- package/stepped-progress-bar/cssm/default.css +0 -23
- package/stepped-progress-bar/cssm/index.css +0 -27
- package/stepped-progress-bar/cssm/inverted.css +0 -23
- package/steps/cssm/components/step/index.css +0 -137
- package/steps/cssm/components/step-indicator/index.css +0 -4
- package/steps/cssm/index.css +0 -24
- package/switch/cssm/index.css +0 -160
- package/system-message/cssm/components/caption/index.css +0 -25
- package/system-message/cssm/components/controls/index.css +0 -38
- package/system-message/cssm/components/graphic/index.css +0 -21
- package/system-message/cssm/components/subtitle/index.css +0 -25
- package/system-message/cssm/components/title/desktop.css +0 -25
- package/system-message/cssm/components/title/index.css +0 -28
- package/system-message/cssm/components/title/mobile.css +0 -25
- package/system-message/cssm/index.css +0 -27
- package/tab-bar/cssm/components/tab/index.css +0 -71
- package/tab-bar/cssm/index.css +0 -32
- package/table/cssm/components/pagination/index.css +0 -50
- package/table/cssm/components/pagination/select-field/index.css +0 -24
- package/table/cssm/components/table/index.css +0 -41
- package/table/cssm/components/tbody/index.css +0 -20
- package/table/cssm/components/tcell/index.css +0 -49
- package/table/cssm/components/texpandable-row/index.css +0 -29
- package/table/cssm/components/thead/index.css +0 -40
- package/table/cssm/components/thead-cell/index.css +0 -58
- package/table/cssm/components/trow/index.css +0 -38
- package/table/cssm/components/tsortable-head-cell/index.css +0 -47
- package/tabs/cssm/components/primary-tablist/index.css +0 -460
- package/tabs/cssm/components/primary-tablist/mobile.css +0 -2245
- package/tabs/cssm/components/scroll-controls/index.css +0 -91
- package/tabs/cssm/components/scrollable-container/index.css +0 -65
- package/tabs/cssm/components/secondary-tablist/index.css +0 -78
- package/tabs/cssm/components/secondary-tablist/mobile.css +0 -1643
- package/tabs/cssm/components/tab/index.css +0 -8
- package/tabs/cssm/index.module-3a3764a3.js +0 -4
- package/tabs/cssm/index.module-82f769c1.js +0 -4
- package/tag/cssm/components/base-tag/default.css +0 -109
- package/tag/cssm/components/base-tag/index.css +0 -187
- package/tag/cssm/components/base-tag/inverted.css +0 -114
- package/tag/cssm/desktop/default.desktop.css +0 -63
- package/tag/cssm/desktop/desktop.css +0 -59
- package/tag/cssm/desktop/inverted.desktop.css +0 -64
- package/tag/cssm/mobile/default.mobile.css +0 -59
- package/tag/cssm/mobile/inverted.mobile.css +0 -65
- package/tag/cssm/mobile/mobile.css +0 -60
- package/text/cssm/index.css +0 -45
- package/text/cssm/mixin.css +0 -375
- package/textarea/cssm/PseudoTextArea-c0c8d29f.js +0 -13
- package/textarea/cssm/default.css +0 -110
- package/textarea/cssm/index.css +0 -244
- package/textarea/cssm/inverted.css +0 -111
- package/textarea/modern/PseudoTextArea-e80f9ac0.d.ts +0 -18
- package/toast/cssm/components/base-toast/index.css +0 -57
- package/toast-plate/cssm/components/base-toast-plate/default.css +0 -31
- package/toast-plate/cssm/components/base-toast-plate/index.css +0 -98
- package/toast-plate/cssm/components/base-toast-plate/inverted.css +0 -31
- package/toast-plate/cssm/desktop/desktop.css +0 -48
- package/toast-plate/cssm/mobile/mobile.css +0 -33
- package/tooltip/cssm/default.css +0 -42
- package/tooltip/cssm/index.css +0 -52
- package/tooltip/cssm/inverted.css +0 -44
- package/tooltip/cssm/mobile/mobile.css +0 -16
- package/typography/cssm/colors.css +0 -74
- package/typography/cssm/colors.module-e817308e.js +0 -4
- package/typography/cssm/common.module-3b15e65f.js +0 -4
- package/typography/cssm/hooks/use-skeleton.css +0 -26
- package/typography/cssm/text/index.css +0 -92
- package/typography/cssm/title/common.css +0 -17
- package/typography/cssm/title/index.css +0 -99
- package/typography/cssm/title-mobile/index.css +0 -69
- package/typography/cssm/title-responsive/index.css +0 -173
- package/underlay/cssm/index.css +0 -467
- package/underlay/cssm/index.module-5beba1c7.js +0 -4
- package/universal-date-input/cssm/index.css +0 -69
- package/universal-date-input/cssm/index.module-cb4e6b79.js +0 -4
- package/with-suffix/cssm/index.css +0 -59
- /package/calendar-range/esm/{index.module-223fddeb.js → index.module-de31817e.js} +0 -0
- /package/calendar-range/{index.module-814cd959.js → index.module-48eae503.js} +0 -0
- /package/calendar-range/modern/{index.module-a3673a87.js → index.module-7ab5e6de.js} +0 -0
- /package/confirmation/{countdown-section-7f7c287b.d.ts → countdown-section-3035fa8d.d.ts} +0 -0
- /package/confirmation/{countdown-section-7f7c287b.js → countdown-section-3035fa8d.js} +0 -0
- /package/confirmation/{cssm/countdown-section-3a5e36e4.d.ts → esm/countdown-section-2083afb8.d.ts} +0 -0
- /package/confirmation/esm/{countdown-section-9d180970.js → countdown-section-2083afb8.js} +0 -0
- /package/confirmation/{esm/countdown-section-9d180970.d.ts → modern/countdown-section-08da6b11.d.ts} +0 -0
- /package/confirmation/modern/{countdown-section-c4e32e68.js → countdown-section-08da6b11.js} +0 -0
- /package/gallery/{buttons-8b4cdcd2.d.ts → buttons-537b0dae.d.ts} +0 -0
- /package/gallery/{buttons-8b4cdcd2.js → buttons-537b0dae.js} +0 -0
- /package/gallery/{cssm/buttons-be9bcc3d.d.ts → esm/buttons-6c64ecb5.d.ts} +0 -0
- /package/gallery/esm/{buttons-92794597.js → buttons-6c64ecb5.js} +0 -0
- /package/gallery/{cssm/slide-2e474041.d.ts → esm/slide-376a7f6b.d.ts} +0 -0
- /package/gallery/esm/{slide-7998a0da.js → slide-376a7f6b.js} +0 -0
- /package/gallery/{esm/buttons-92794597.d.ts → modern/buttons-3e3b5522.d.ts} +0 -0
- /package/gallery/modern/{buttons-a604da82.js → buttons-3e3b5522.js} +0 -0
- /package/gallery/{esm/slide-7998a0da.d.ts → modern/slide-f5ea2128.d.ts} +0 -0
- /package/gallery/modern/{slide-008a77ea.js → slide-f5ea2128.js} +0 -0
- /package/gallery/{modern/slide-008a77ea.d.ts → slide-1349323c.d.ts} +0 -0
- /package/gallery/{slide-6cc086c4.js → slide-1349323c.js} +0 -0
- /package/grid/esm/{gutters.module-f7014521.js → gutters.module-9b547fd8.js} +0 -0
- /package/grid/{gutters.module-1a476c05.js → gutters.module-7d57ceb3.js} +0 -0
- /package/grid/modern/{gutters.module-e75621ac.js → gutters.module-e8b5122f.js} +0 -0
- /package/list/{Component-38ee41d7.d.ts → Component-d926971a.d.ts} +0 -0
- /package/list/{Component-38ee41d7.js → Component-d926971a.js} +0 -0
- /package/list/cssm/{Component-431b98c8.d.ts → Component-7cc47e0b.d.ts} +0 -0
- /package/list/esm/{Component-0ee478ed.d.ts → Component-9fbfab74.d.ts} +0 -0
- /package/list/esm/{Component-0ee478ed.js → Component-9fbfab74.js} +0 -0
- /package/list/modern/{Component-ee68ad21.d.ts → Component-ef8216e7.d.ts} +0 -0
- /package/list/modern/{Component-ee68ad21.js → Component-ef8216e7.js} +0 -0
- /package/markdown/{cssm/use-overrides-f2cf0bfa.d.ts → esm/use-overrides-58bacf46.d.ts} +0 -0
- /package/markdown/esm/{use-overrides-055b0fec.js → use-overrides-58bacf46.js} +0 -0
- /package/markdown/{esm/use-overrides-055b0fec.d.ts → modern/use-overrides-f65f11f2.d.ts} +0 -0
- /package/markdown/modern/{use-overrides-91983127.js → use-overrides-f65f11f2.js} +0 -0
- /package/markdown/{modern/use-overrides-91983127.d.ts → use-overrides-62c5a588.d.ts} +0 -0
- /package/markdown/{use-overrides-7f053469.js → use-overrides-62c5a588.js} +0 -0
- /package/modal/esm/{layout.module-64d15c13.js → layout.module-afa76f7f.js} +0 -0
- /package/modal/{layout.module-a5274119.js → layout.module-e0264aa6.js} +0 -0
- /package/modal/modern/{layout.module-7d49a892.js → layout.module-9b497ec0.js} +0 -0
- /package/pure-cell/{component-6a7433f5.js → component-4171f131.js} +0 -0
- /package/pure-cell/esm/{component-041614ac.js → component-5496c105.js} +0 -0
- /package/select/cssm/{hook-f1333091.d.ts → hook-aae7b381.d.ts} +0 -0
- /package/select/{hook-91d7afe4.js → cssm/hook-aae7b381.js} +0 -0
- /package/select/esm/{hook-61678627.d.ts → hook-1be07503.d.ts} +0 -0
- /package/select/esm/{hook-61678627.js → hook-1be07503.js} +0 -0
- /package/select/{hook-91d7afe4.d.ts → hook-9e3f2776.d.ts} +0 -0
- /package/select/modern/{hook-f79f0686.d.ts → hook-0f2b7b00.d.ts} +0 -0
- /package/select/modern/{hook-f79f0686.js → hook-0f2b7b00.js} +0 -0
- /package/side-panel/esm/{layout.module-846faef2.js → layout.module-30f8d820.js} +0 -0
- /package/side-panel/{layout.module-6a414a6a.js → layout.module-b337e3aa.js} +0 -0
- /package/side-panel/modern/{layout.module-f0d01a2c.js → layout.module-70648450.js} +0 -0
- /package/tabs/esm/{index.module-6e695481.js → index.module-10d6bdbb.js} +0 -0
- /package/tabs/esm/{index.module-522924c0.js → index.module-3fd180ce.js} +0 -0
- /package/tabs/{index.module-bc99adbf.js → index.module-363e59e3.js} +0 -0
- /package/tabs/{index.module-d225f504.js → index.module-d239b19b.js} +0 -0
- /package/tabs/modern/{index.module-f6dfd116.js → index.module-db6e4fc2.js} +0 -0
- /package/tabs/modern/{index.module-7c0d4d6d.js → index.module-f72f66b2.js} +0 -0
- /package/textarea/{PseudoTextArea-31d2e2a2.d.ts → PseudoTextArea-788b5f47.d.ts} +0 -0
- /package/textarea/{PseudoTextArea-31d2e2a2.js → PseudoTextArea-788b5f47.js} +0 -0
- /package/textarea/{cssm/PseudoTextArea-c0c8d29f.d.ts → esm/PseudoTextArea-e581cb0e.d.ts} +0 -0
- /package/textarea/esm/{PseudoTextArea-70479ad2.js → PseudoTextArea-e581cb0e.js} +0 -0
- /package/textarea/{esm/PseudoTextArea-70479ad2.d.ts → modern/PseudoTextArea-a96bb33b.d.ts} +0 -0
- /package/textarea/modern/{PseudoTextArea-e80f9ac0.js → PseudoTextArea-a96bb33b.js} +0 -0
- /package/typography/{colors.module-918727b3.js → colors.module-43eeba9f.js} +0 -0
- /package/typography/{common.module-d4770eac.js → common.module-de5b9af2.js} +0 -0
- /package/{accordion/cssm/typings.js → typography/cssm/margins.module.css} +0 -0
- /package/typography/esm/{colors.module-f2be7c05.js → colors.module-eb816a2c.js} +0 -0
- /package/typography/esm/{common.module-aef869a0.js → common.module-8ddbabef.js} +0 -0
- /package/typography/modern/{colors.module-e6ce2cda.js → colors.module-938a1172.js} +0 -0
- /package/typography/modern/{common.module-208e0ae4.js → common.module-bd0e5e63.js} +0 -0
- /package/underlay/esm/{index.module-ac843fb3.js → index.module-fa725752.js} +0 -0
- /package/underlay/{index.module-13b65324.js → index.module-ee16cd5e.js} +0 -0
- /package/underlay/modern/{index.module-824be077.js → index.module-026d6ef9.js} +0 -0
- /package/universal-date-input/esm/{index.module-2f3980d9.js → index.module-7dbb3214.js} +0 -0
- /package/universal-date-input/{index.module-ff793946.js → index.module-751a2e9c.js} +0 -0
- /package/universal-date-input/modern/{index.module-3c848de2.js → index.module-7182bd42.js} +0 -0
- /package/{accordion/esm/typings.js → vars/cssm/mixins.css} +0 -0
package/chart/cssm/Component.js
CHANGED
|
@@ -1,110 +1,106 @@
|
|
|
1
|
-
|
|
2
|
-
import cn from 'classnames';
|
|
3
|
-
import { Legend, CartesianGrid, XAxis, YAxis, Brush, Tooltip, Area, Line, Bar, LabelList, Cell, ResponsiveContainer, ComposedChart } from 'recharts';
|
|
4
|
-
import { CustomizedLabel } from './components/CustomizedLabel.js';
|
|
5
|
-
import { Dot } from './components/Dot/index.js';
|
|
6
|
-
import { Legends } from './components/Legends/index.js';
|
|
7
|
-
import { LinearGradient } from './components/LinearGradient.js';
|
|
8
|
-
import { RectBar } from './components/RectBar.js';
|
|
9
|
-
import { Tick } from './components/Tick/index.js';
|
|
10
|
-
import { TooltipContent } from './components/TooltipContent/index.js';
|
|
11
|
-
import { useSettings } from './hooks/useSettings/index.js';
|
|
12
|
-
import './hooks/usePathBar/index.js';
|
|
13
|
-
import './hooks/usePathBar/utils/getRadius.js';
|
|
14
|
-
import './icons/Point.js';
|
|
15
|
-
import '../../typography/cssm';
|
|
16
|
-
import './icons/Circle.js';
|
|
17
|
-
import './icons/CircleLine.js';
|
|
18
|
-
import './icons/FilledCircle.js';
|
|
19
|
-
import './icons/StrokeCircle.js';
|
|
20
|
-
import './hooks/useSettings/utils/setComposedChartsMargin.js';
|
|
21
|
-
import './hooks/useSettings/utils/setDatas.js';
|
|
22
|
-
import './hooks/useSettings/utils/setGradientCharts.js';
|
|
23
|
-
import './hooks/useSettings/utils/setLegendMargin.js';
|
|
24
|
-
import './hooks/useSettings/utils/sortByIndex.js';
|
|
1
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
25
2
|
|
|
26
|
-
|
|
27
|
-
|
|
3
|
+
var tslib = require('tslib');
|
|
4
|
+
var React = require('react');
|
|
5
|
+
var cn = require('classnames');
|
|
6
|
+
var recharts = require('recharts');
|
|
7
|
+
var components_CustomizedLabel = require('./components/CustomizedLabel.js');
|
|
8
|
+
var components_Dot_index = require('./components/Dot/index.js');
|
|
9
|
+
var components_Legends_index = require('./components/Legends/index.js');
|
|
10
|
+
var components_LinearGradient = require('./components/LinearGradient.js');
|
|
11
|
+
var components_RectBar = require('./components/RectBar.js');
|
|
12
|
+
var components_Tick_index = require('./components/Tick/index.js');
|
|
13
|
+
var components_TooltipContent_index = require('./components/TooltipContent/index.js');
|
|
14
|
+
var hooks_useSettings_index = require('./hooks/useSettings/index.js');
|
|
15
|
+
var styles = require('./index.module.css');
|
|
16
|
+
|
|
17
|
+
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
|
|
18
|
+
|
|
19
|
+
var React__default = /*#__PURE__*/_interopDefaultCompat(React);
|
|
20
|
+
var cn__default = /*#__PURE__*/_interopDefaultCompat(cn);
|
|
21
|
+
var styles__default = /*#__PURE__*/_interopDefaultCompat(styles);
|
|
22
|
+
|
|
23
|
+
var CustomizedHOC = function (Component, options) {
|
|
24
|
+
var NewComponent = function (props) { return React__default.default.createElement(Component, tslib.__assign({}, props, options)); };
|
|
28
25
|
return NewComponent;
|
|
29
26
|
};
|
|
30
27
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
const Chart = (props) => {
|
|
36
|
-
const [{ state, data, charts, filterCount }, { setCharts, setFilterCount }] = useSettings(props);
|
|
37
|
-
const [activeDotsState, setActiveDotsState] = useState({
|
|
28
|
+
var Chart = function (props) {
|
|
29
|
+
var _a;
|
|
30
|
+
var _b = hooks_useSettings_index.useSettings(props), _c = _b[0], state = _c.state, data = _c.data, charts = _c.charts, filterCount = _c.filterCount, _d = _b[1], setCharts = _d.setCharts, setFilterCount = _d.setFilterCount;
|
|
31
|
+
var _e = React.useState({
|
|
38
32
|
prev: null,
|
|
39
33
|
active: null,
|
|
40
|
-
});
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
34
|
+
}), activeDotsState = _e[0], setActiveDotsState = _e[1];
|
|
35
|
+
var _f = React.useState(null), yBrush = _f[0], setYBrush = _f[1];
|
|
36
|
+
var _g = React.useState(null), tooltipArrowSide = _g[0], setTooltipArrowSide = _g[1];
|
|
37
|
+
var _h = React.useState(0), heightLegend = _h[0], setHeightLegend = _h[1];
|
|
38
|
+
var svgRef = React.useRef(null);
|
|
39
|
+
var tooltipRef = React.useRef(null);
|
|
40
|
+
var renderGradient = React.useMemo(function () {
|
|
47
41
|
if (!state)
|
|
48
42
|
return null;
|
|
49
|
-
return state.series.map((item)
|
|
50
|
-
|
|
43
|
+
return state.series.map(function (item) {
|
|
44
|
+
var chart = item.chart, gradient = item.gradient;
|
|
51
45
|
if (chart !== 'gradient' || !gradient)
|
|
52
46
|
return null;
|
|
53
|
-
|
|
54
|
-
return (
|
|
47
|
+
var gid = gradient.gid, points = gradient.points;
|
|
48
|
+
return (React__default.default.createElement(components_LinearGradient.LinearGradient, { key: "".concat(state.id, "-").concat(gid), id: state.id, gid: gid, points: points }));
|
|
55
49
|
});
|
|
56
50
|
}, [state]);
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
51
|
+
var toggleChart = React.useCallback(function (item) {
|
|
52
|
+
var chart = item.chart, dataKey = item.properties.dataKey;
|
|
53
|
+
var withGrad = chart === 'area';
|
|
54
|
+
var changed = false;
|
|
61
55
|
if (charts[dataKey + ''] && filterCount > 1) {
|
|
62
56
|
changed = true;
|
|
63
|
-
setFilterCount((prev)
|
|
57
|
+
setFilterCount(function (prev) { return prev - 1; });
|
|
64
58
|
}
|
|
65
59
|
if (!charts[dataKey + '']) {
|
|
66
60
|
changed = true;
|
|
67
|
-
setFilterCount((prev)
|
|
61
|
+
setFilterCount(function (prev) { return prev + 1; });
|
|
68
62
|
}
|
|
69
63
|
if (!changed)
|
|
70
64
|
return;
|
|
71
|
-
setCharts((prev)
|
|
72
|
-
|
|
65
|
+
setCharts(function (prev) {
|
|
66
|
+
var newState = tslib.__assign({}, prev);
|
|
73
67
|
newState[dataKey + ''] = !newState[dataKey + ''];
|
|
74
68
|
if (withGrad)
|
|
75
69
|
newState[dataKey + '-gradient'] = !newState[dataKey + '-gradient'];
|
|
76
70
|
return newState;
|
|
77
71
|
});
|
|
78
72
|
}, [charts, filterCount, setCharts, setFilterCount]);
|
|
79
|
-
|
|
73
|
+
var legendRef = React.useCallback(function (node) {
|
|
80
74
|
if (node !== null) {
|
|
81
|
-
setTimeout(()
|
|
82
|
-
|
|
75
|
+
setTimeout(function () {
|
|
76
|
+
var height = node.getBoundingClientRect().height;
|
|
83
77
|
setHeightLegend(height);
|
|
84
78
|
}, 0);
|
|
85
79
|
}
|
|
86
80
|
}, []);
|
|
87
|
-
|
|
88
|
-
|
|
81
|
+
var renderLegend = React.useMemo(function () {
|
|
82
|
+
var _a, _b, _c;
|
|
83
|
+
if (!(state === null || state === void 0 ? void 0 : state.legend))
|
|
89
84
|
return null;
|
|
90
|
-
|
|
91
|
-
? state.xAxis.tickMargin + (state
|
|
85
|
+
var translate = ((_a = state === null || state === void 0 ? void 0 : state.xAxis) === null || _a === void 0 ? void 0 : _a.tickMargin) && ((_b = state === null || state === void 0 ? void 0 : state.legend) === null || _b === void 0 ? void 0 : _b.verticalAlign) !== 'top'
|
|
86
|
+
? state.xAxis.tickMargin + (((_c = state === null || state === void 0 ? void 0 : state.brush) === null || _c === void 0 ? void 0 : _c.brushMargin) || 0)
|
|
92
87
|
: 0;
|
|
93
|
-
return (
|
|
94
|
-
transform:
|
|
95
|
-
} }));
|
|
88
|
+
return (React__default.default.createElement(recharts.Legend, tslib.__assign({}, (state.legend || null), { content: React__default.default.createElement(components_Legends_index.Legends, { legend: state.legend, series: state.series, id: state.id, toggleChart: toggleChart, ref: legendRef, charts: charts }), wrapperStyle: {
|
|
89
|
+
transform: "translateY(".concat(translate, "px)"),
|
|
90
|
+
} })));
|
|
96
91
|
}, [state, charts, toggleChart, legendRef]);
|
|
97
|
-
|
|
98
|
-
if (!state
|
|
92
|
+
var renderCartesianGrid = React.useMemo(function () {
|
|
93
|
+
if (!(state === null || state === void 0 ? void 0 : state.cartesianGrid))
|
|
99
94
|
return null;
|
|
100
|
-
return
|
|
95
|
+
return React__default.default.createElement(recharts.CartesianGrid, tslib.__assign({}, state.cartesianGrid));
|
|
101
96
|
}, [state]);
|
|
102
|
-
|
|
103
|
-
|
|
97
|
+
var renderXAxis = React.useMemo(function () {
|
|
98
|
+
var _a;
|
|
99
|
+
if (!(state === null || state === void 0 ? void 0 : state.xAxis))
|
|
104
100
|
return null;
|
|
105
|
-
|
|
106
|
-
if (state
|
|
107
|
-
tick = CustomizedHOC(Tick, { xAxis: state.xAxis });
|
|
101
|
+
var tick;
|
|
102
|
+
if (((_a = state === null || state === void 0 ? void 0 : state.xAxis) === null || _a === void 0 ? void 0 : _a.tickType) === 'point') {
|
|
103
|
+
tick = CustomizedHOC(components_Tick_index.Tick, { xAxis: state.xAxis });
|
|
108
104
|
}
|
|
109
105
|
else if (typeof state.xAxis.tick === 'boolean') {
|
|
110
106
|
tick = state.xAxis.tick;
|
|
@@ -112,14 +108,15 @@ const Chart = (props) => {
|
|
|
112
108
|
else {
|
|
113
109
|
tick = true;
|
|
114
110
|
}
|
|
115
|
-
return
|
|
111
|
+
return React__default.default.createElement(recharts.XAxis, tslib.__assign({}, state.xAxis, { tick: tick }));
|
|
116
112
|
}, [state]);
|
|
117
|
-
|
|
118
|
-
|
|
113
|
+
var renderYAxis = React.useMemo(function () {
|
|
114
|
+
var _a;
|
|
115
|
+
if (!(state === null || state === void 0 ? void 0 : state.yAxis))
|
|
119
116
|
return null;
|
|
120
|
-
|
|
121
|
-
if (state
|
|
122
|
-
tick = CustomizedHOC(state.yAxis.tick, { state });
|
|
117
|
+
var tick;
|
|
118
|
+
if ((_a = state === null || state === void 0 ? void 0 : state.yAxis) === null || _a === void 0 ? void 0 : _a.tick) {
|
|
119
|
+
tick = CustomizedHOC(state.yAxis.tick, { state: state });
|
|
123
120
|
}
|
|
124
121
|
else if (typeof state.yAxis.tick === 'boolean') {
|
|
125
122
|
tick = state.yAxis.tick;
|
|
@@ -127,73 +124,74 @@ const Chart = (props) => {
|
|
|
127
124
|
else {
|
|
128
125
|
tick = true;
|
|
129
126
|
}
|
|
130
|
-
return
|
|
127
|
+
return React__default.default.createElement(recharts.YAxis, tslib.__assign({}, state.yAxis, { tick: tick }));
|
|
131
128
|
}, [state]);
|
|
132
|
-
|
|
133
|
-
if (!state
|
|
129
|
+
var renderBrush = React.useMemo(function () {
|
|
130
|
+
if (!(state === null || state === void 0 ? void 0 : state.brush))
|
|
134
131
|
return null;
|
|
135
|
-
return
|
|
132
|
+
return React__default.default.createElement(recharts.Brush, tslib.__assign({ y: typeof yBrush === 'number' ? yBrush : 0 }, state.brush));
|
|
136
133
|
}, [state, yBrush]);
|
|
137
|
-
|
|
138
|
-
if (!state
|
|
134
|
+
var renderTooltip = React.useMemo(function () {
|
|
135
|
+
if (!(state === null || state === void 0 ? void 0 : state.tooltip))
|
|
139
136
|
return null;
|
|
140
|
-
return (
|
|
137
|
+
return (React__default.default.createElement(recharts.Tooltip, tslib.__assign({ ref: tooltipRef }, state.tooltip, { content: CustomizedHOC(components_TooltipContent_index.TooltipContent, { series: state.series, tooltipArrowSide: tooltipArrowSide }) })));
|
|
141
138
|
}, [state, tooltipArrowSide]);
|
|
142
|
-
|
|
139
|
+
var renderChartsItems = React.useMemo(function () {
|
|
143
140
|
if (!state || !charts)
|
|
144
141
|
return null;
|
|
145
|
-
return state.series.map((item)
|
|
146
|
-
|
|
147
|
-
|
|
142
|
+
return state.series.map(function (item) {
|
|
143
|
+
var chart = item.chart, properties = item.properties, radius = item.radius, labelList = item.labelList;
|
|
144
|
+
var show = charts["".concat(properties.dataKey)];
|
|
148
145
|
switch (chart) {
|
|
149
146
|
case 'bar':
|
|
150
|
-
return show && !item
|
|
151
|
-
labelList && (
|
|
152
|
-
data.map((_, index)
|
|
153
|
-
|
|
154
|
-
return (
|
|
147
|
+
return show && !(item === null || item === void 0 ? void 0 : item.hide) ? (React__default.default.createElement(recharts.Bar, tslib.__assign({ key: "".concat(state.id, "-").concat(properties.dataKey) }, properties, { shape: React__default.default.createElement(components_RectBar.RectBar, { radius: radius }) }),
|
|
148
|
+
labelList && (React__default.default.createElement(recharts.LabelList, tslib.__assign({ dataKey: properties.dataKey.toString() }, labelList, { content: React__default.default.createElement(components_CustomizedLabel.CustomizedLabel, { radius: radius }) }))),
|
|
149
|
+
data.map(function (_, index) {
|
|
150
|
+
var key = "".concat(state.id, "-").concat(properties.dataKey, "-").concat(index);
|
|
151
|
+
return (React__default.default.createElement(recharts.Cell, { key: key, className: cn__default.default(styles__default.default.bar, typeof activeDotsState.active === 'number' &&
|
|
155
152
|
activeDotsState.active !== index
|
|
156
|
-
?
|
|
153
|
+
? styles__default.default.unfocused
|
|
157
154
|
: '') }));
|
|
158
155
|
}))) : null;
|
|
159
156
|
case 'area':
|
|
160
157
|
case 'line':
|
|
161
|
-
return show && !item
|
|
162
|
-
? CustomizedHOC(Dot, {
|
|
158
|
+
return show && !(item === null || item === void 0 ? void 0 : item.hide) ? (React__default.default.createElement(recharts.Line, tslib.__assign({ key: "".concat(state.id, "-").concat(properties.dataKey) }, properties, { dot: properties.dot && properties.dotSettings
|
|
159
|
+
? CustomizedHOC(components_Dot_index.Dot, {
|
|
163
160
|
activeDot: activeDotsState.active,
|
|
164
161
|
dotSettings: properties.dotSettings,
|
|
165
|
-
inherit: properties
|
|
162
|
+
inherit: (properties === null || properties === void 0 ? void 0 : properties.inheritStroke)
|
|
166
163
|
? properties.inheritStroke
|
|
167
164
|
: false,
|
|
168
165
|
})
|
|
169
|
-
: false, activeDot: false })) : null;
|
|
166
|
+
: false, activeDot: false }))) : null;
|
|
170
167
|
case 'gradient':
|
|
171
|
-
return show && !item
|
|
172
|
-
?
|
|
173
|
-
: item.properties.fill, dot: false, activeDot: false })) : null;
|
|
168
|
+
return show && !(item === null || item === void 0 ? void 0 : item.hide) ? (React__default.default.createElement(recharts.Area, tslib.__assign({}, item.properties, { key: "".concat(state.id, "-").concat(item.properties.dataKey), dataKey: "".concat(item.properties.dataKey), stroke: 'transparent', fill: item.gradient.gid
|
|
169
|
+
? "url(#".concat(state.id, "-").concat(item.gradient.gid, ")")
|
|
170
|
+
: item.properties.fill, dot: false, activeDot: false }))) : null;
|
|
174
171
|
default:
|
|
175
172
|
return null;
|
|
176
173
|
}
|
|
177
174
|
});
|
|
178
175
|
}, [charts, state, activeDotsState, data]);
|
|
179
176
|
// Позиционирование brush
|
|
180
|
-
useEffect(()
|
|
177
|
+
React.useEffect(function () {
|
|
178
|
+
var _a, _b, _c, _d, _e, _f, _g;
|
|
181
179
|
if (!state || !state.brush)
|
|
182
180
|
return;
|
|
183
181
|
if (!heightLegend || heightLegend === 0)
|
|
184
182
|
return;
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
183
|
+
var align = (_a = state === null || state === void 0 ? void 0 : state.legend) === null || _a === void 0 ? void 0 : _a.verticalAlign;
|
|
184
|
+
var legendHeight = align === 'top' ? 0 : heightLegend;
|
|
185
|
+
var marginTick = ((_b = state === null || state === void 0 ? void 0 : state.xAxis) === null || _b === void 0 ? void 0 : _b.tickMargin) ? (_c = state === null || state === void 0 ? void 0 : state.xAxis) === null || _c === void 0 ? void 0 : _c.tickMargin : 0;
|
|
186
|
+
var brushY = (((_d = svgRef.current) === null || _d === void 0 ? void 0 : _d.clientHeight) ? svgRef.current.clientHeight : 0) -
|
|
189
187
|
legendHeight -
|
|
190
188
|
state.brush.height -
|
|
191
|
-
(state
|
|
189
|
+
(((_f = (_e = state === null || state === void 0 ? void 0 : state.composeChart) === null || _e === void 0 ? void 0 : _e.margin) === null || _f === void 0 ? void 0 : _f.bottom) ? state.composeChart.margin.bottom : 0) +
|
|
192
190
|
marginTick +
|
|
193
|
-
(state.brush
|
|
191
|
+
(((_g = state.brush) === null || _g === void 0 ? void 0 : _g.brushMargin) ? state.brush.brushMargin : 0);
|
|
194
192
|
setYBrush(brushY);
|
|
195
193
|
}, [heightLegend, state]);
|
|
196
|
-
|
|
194
|
+
var leaveEvent = function (isTooltipActive) {
|
|
197
195
|
if (isTooltipActive)
|
|
198
196
|
return;
|
|
199
197
|
if (typeof activeDotsState.prev !== 'number' || typeof activeDotsState.active !== 'number')
|
|
@@ -203,19 +201,20 @@ const Chart = (props) => {
|
|
|
203
201
|
active: null,
|
|
204
202
|
});
|
|
205
203
|
};
|
|
206
|
-
|
|
207
|
-
|
|
204
|
+
var arrowTooltipEvent = function (activeCoordinate) {
|
|
205
|
+
var _a, _b, _c, _d, _e, _f, _g;
|
|
206
|
+
if (!((_a = state === null || state === void 0 ? void 0 : state.tooltip) === null || _a === void 0 ? void 0 : _a.arrow))
|
|
208
207
|
return;
|
|
209
|
-
if (state
|
|
210
|
-
|
|
211
|
-
(state
|
|
208
|
+
if (((_b = state === null || state === void 0 ? void 0 : state.tooltip) === null || _b === void 0 ? void 0 : _b.arrow) && (activeCoordinate === null || activeCoordinate === void 0 ? void 0 : activeCoordinate.x)) {
|
|
209
|
+
var side = (((_c = svgRef === null || svgRef === void 0 ? void 0 : svgRef.current) === null || _c === void 0 ? void 0 : _c.clientWidth) || 0) -
|
|
210
|
+
(((_e = (_d = state === null || state === void 0 ? void 0 : state.composeChart) === null || _d === void 0 ? void 0 : _d.margin) === null || _e === void 0 ? void 0 : _e.right) || 0) -
|
|
212
211
|
activeCoordinate.x -
|
|
213
|
-
(tooltipRef.current
|
|
212
|
+
(((_g = (_f = tooltipRef.current) === null || _f === void 0 ? void 0 : _f.state) === null || _g === void 0 ? void 0 : _g.boxWidth) || 0) >
|
|
214
213
|
20;
|
|
215
214
|
setTooltipArrowSide(side);
|
|
216
215
|
}
|
|
217
216
|
};
|
|
218
|
-
|
|
217
|
+
var hoverEvent = function (isTooltipActive, activeTooltipIndex) {
|
|
219
218
|
if (!isTooltipActive)
|
|
220
219
|
return;
|
|
221
220
|
if (typeof activeDotsState.active === 'number' &&
|
|
@@ -228,30 +227,30 @@ const Chart = (props) => {
|
|
|
228
227
|
});
|
|
229
228
|
}
|
|
230
229
|
if (typeof activeTooltipIndex === 'number' && typeof activeDotsState.prev === 'number') {
|
|
231
|
-
setActiveDotsState((prev)
|
|
230
|
+
setActiveDotsState(function (prev) { return ({
|
|
232
231
|
prev: prev.active,
|
|
233
232
|
active: activeTooltipIndex,
|
|
234
|
-
}));
|
|
233
|
+
}); });
|
|
235
234
|
}
|
|
236
235
|
};
|
|
237
|
-
|
|
238
|
-
if (!state
|
|
236
|
+
var mouseMove = function (e) {
|
|
237
|
+
if (!(state === null || state === void 0 ? void 0 : state.tooltip))
|
|
239
238
|
return;
|
|
240
239
|
arrowTooltipEvent(e.activeCoordinate);
|
|
241
240
|
hoverEvent(e.isTooltipActive, e.activeTooltipIndex);
|
|
242
241
|
leaveEvent(e.isTooltipActive);
|
|
243
242
|
};
|
|
244
|
-
|
|
245
|
-
if (!state
|
|
243
|
+
var mouseLeave = function (e) {
|
|
244
|
+
if (!(state === null || state === void 0 ? void 0 : state.tooltip))
|
|
246
245
|
return;
|
|
247
246
|
leaveEvent(e.isTooltipActive);
|
|
248
247
|
};
|
|
249
248
|
if (!data || !charts || !state)
|
|
250
249
|
return null;
|
|
251
|
-
return (
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
250
|
+
return (React__default.default.createElement("div", { className: styles__default.default.coreChart, ref: svgRef, id: (state === null || state === void 0 ? void 0 : state.id) || '', style: { width: '100%', height: '100%' } },
|
|
251
|
+
React__default.default.createElement(recharts.ResponsiveContainer, { debounce: ((_a = state === null || state === void 0 ? void 0 : state.responsiveContainer) === null || _a === void 0 ? void 0 : _a.debounce) ? state.responsiveContainer.debounce : 0, width: '100%' },
|
|
252
|
+
React__default.default.createElement(recharts.ComposedChart, tslib.__assign({}, state === null || state === void 0 ? void 0 : state.composeChart, { onMouseMove: mouseMove, onMouseLeave: mouseLeave, data: data }),
|
|
253
|
+
React__default.default.createElement("defs", null, renderGradient),
|
|
255
254
|
state.cartesianGrid && renderCartesianGrid,
|
|
256
255
|
state.xAxis && renderXAxis,
|
|
257
256
|
state.yAxis && renderYAxis,
|
|
@@ -261,4 +260,4 @@ const Chart = (props) => {
|
|
|
261
260
|
state.legend && renderLegend))));
|
|
262
261
|
};
|
|
263
262
|
|
|
264
|
-
|
|
263
|
+
exports.Chart = Chart;
|
|
@@ -1,12 +1,18 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2
|
+
|
|
3
|
+
var React = require('react');
|
|
4
|
+
var hooks_usePathBar_index = require('../hooks/usePathBar/index.js');
|
|
5
|
+
|
|
6
|
+
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
|
|
7
|
+
|
|
8
|
+
var React__default = /*#__PURE__*/_interopDefaultCompat(React);
|
|
4
9
|
|
|
5
10
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
11
|
+
var CustomizedLabel = function (_a) {
|
|
12
|
+
var x = _a.x, y = _a.y, value = _a.value, offset = _a.offset, radius = _a.radius, height = _a.height, width = _a.width, formatter = _a.formatter;
|
|
13
|
+
var initHeight = hooks_usePathBar_index.usePathBar({ radius: radius, height: height })[0];
|
|
14
|
+
return (React__default.default.createElement("text", { x: x + width / 2, y: y + height - (initHeight + offset), width: width, height: initHeight, textAnchor: 'middle' },
|
|
15
|
+
React__default.default.createElement("tspan", { x: x + width / 2 }, formatter ? formatter(value) : value)));
|
|
10
16
|
};
|
|
11
17
|
|
|
12
|
-
|
|
18
|
+
exports.CustomizedLabel = CustomizedLabel;
|
|
@@ -1,18 +1,25 @@
|
|
|
1
|
-
|
|
2
|
-
import cn from 'classnames';
|
|
3
|
-
import { PointIcon } from '../../icons/Point.js';
|
|
1
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
2
|
|
|
5
|
-
|
|
6
|
-
require('
|
|
3
|
+
var React = require('react');
|
|
4
|
+
var cn = require('classnames');
|
|
5
|
+
var icons_Point = require('../../icons/Point.js');
|
|
6
|
+
var styles = require('./index.module.css');
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
8
|
+
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
|
|
9
|
+
|
|
10
|
+
var React__default = /*#__PURE__*/_interopDefaultCompat(React);
|
|
11
|
+
var cn__default = /*#__PURE__*/_interopDefaultCompat(cn);
|
|
12
|
+
var styles__default = /*#__PURE__*/_interopDefaultCompat(styles);
|
|
13
|
+
|
|
14
|
+
var Dot = React__default.default.forwardRef(function (_a, ref) {
|
|
15
|
+
var cx = _a.cx, cy = _a.cy, index = _a.index, activeDot = _a.activeDot, dataKey = _a.dataKey, dotSettings = _a.dotSettings, value = _a.value, stroke = _a.stroke;
|
|
16
|
+
var _b = React.useState(0), windowWidth = _b[0], setWindowWidth = _b[1];
|
|
17
|
+
var _c = React.useState(0), height = _c[0], setHeight = _c[1];
|
|
18
|
+
var _d = React.useState(0), width = _d[0], setWidth = _d[1];
|
|
19
|
+
var _e = React.useState(null), option = _e[0], setOption = _e[1];
|
|
20
|
+
React.useEffect(function () {
|
|
21
|
+
var dotSetting = Array.isArray(dotSettings) && dotSettings.length > 0
|
|
22
|
+
? dotSettings.find(function (item) { return item.media && windowWidth < item.media; })
|
|
16
23
|
: dotSettings;
|
|
17
24
|
if (Array.isArray(dotSettings) && dotSettings.length > 0 && !dotSetting) {
|
|
18
25
|
dotSetting = dotSettings[dotSettings.length - 1];
|
|
@@ -20,7 +27,7 @@ const Dot = React.forwardRef(({ cx, cy, index, activeDot, dataKey, dotSettings,
|
|
|
20
27
|
setWindowWidth(window.innerWidth);
|
|
21
28
|
setOption(dotSetting);
|
|
22
29
|
}, [dotSettings, windowWidth]);
|
|
23
|
-
useEffect(()
|
|
30
|
+
React.useEffect(function () {
|
|
24
31
|
if (!option)
|
|
25
32
|
return;
|
|
26
33
|
if (typeof activeDot === 'number' && activeDot === index) {
|
|
@@ -34,12 +41,12 @@ const Dot = React.forwardRef(({ cx, cy, index, activeDot, dataKey, dotSettings,
|
|
|
34
41
|
}, [activeDot, index, option]);
|
|
35
42
|
if (!value)
|
|
36
43
|
return null;
|
|
37
|
-
return (
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
?
|
|
41
|
-
: ''), "data-id": index, "data-name": dataKey, width: option
|
|
42
|
-
|
|
44
|
+
return (React__default.default.createElement("g", { ref: ref, className: cn__default.default(styles__default.default.dot), transform: "translate(".concat(cx - width / 2, ", ").concat(cy - height / 2, ")") },
|
|
45
|
+
React__default.default.createElement("g", { className: cn__default.default(styles__default.default.dotWrap), transform: "scale(".concat(activeDot === index ? (option === null || option === void 0 ? void 0 : option.scale) || 0 : (option === null || option === void 0 ? void 0 : option.initScale) || 0, ")") },
|
|
46
|
+
React__default.default.createElement("svg", { className: cn__default.default(styles__default.default.dotItem, activeDot === index ? styles__default.default.dotActive : '', typeof activeDot === 'number' && activeDot !== index
|
|
47
|
+
? styles__default.default.dotUnfocused
|
|
48
|
+
: ''), "data-id": index, "data-name": dataKey, width: (option === null || option === void 0 ? void 0 : option.width) || 0, height: (option === null || option === void 0 ? void 0 : option.height) || 0 },
|
|
49
|
+
React__default.default.createElement(icons_Point.PointIcon, { fill: stroke })))));
|
|
43
50
|
});
|
|
44
51
|
|
|
45
|
-
|
|
52
|
+
exports.Dot = Dot;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
.dotUnfocused {
|
|
2
|
+
opacity: 0.3;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.dot,
|
|
6
|
+
.dotItem,
|
|
7
|
+
.dotWrap {
|
|
8
|
+
transition: all 0.2s ease;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.dot {
|
|
12
|
+
animation: showDot 0.5s ease;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
@keyframes showDot {
|
|
16
|
+
from {
|
|
17
|
+
opacity: 0;
|
|
18
|
+
}
|
|
19
|
+
to {
|
|
20
|
+
opacity: 1;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -1,38 +1,46 @@
|
|
|
1
|
-
|
|
2
|
-
import cn from 'classnames';
|
|
3
|
-
import { Typography } from '../../../../typography/cssm';
|
|
4
|
-
import { CircleIcon } from '../../icons/Circle.js';
|
|
5
|
-
import { CircleLineIcon } from '../../icons/CircleLine.js';
|
|
6
|
-
import { FilledCircleIcon } from '../../icons/FilledCircle.js';
|
|
7
|
-
import { StrokeCircleIcon } from '../../icons/StrokeCircle.js';
|
|
1
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
8
2
|
|
|
9
|
-
|
|
10
|
-
require('
|
|
3
|
+
var React = require('react');
|
|
4
|
+
var cn = require('classnames');
|
|
5
|
+
var coreComponentsTypography = require('../../../../typography/cssm');
|
|
6
|
+
var icons_Circle = require('../../icons/Circle.js');
|
|
7
|
+
var icons_CircleLine = require('../../icons/CircleLine.js');
|
|
8
|
+
var icons_FilledCircle = require('../../icons/FilledCircle.js');
|
|
9
|
+
var icons_StrokeCircle = require('../../icons/StrokeCircle.js');
|
|
10
|
+
var styles = require('./index.module.css');
|
|
11
11
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
12
|
+
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
|
|
13
|
+
|
|
14
|
+
var React__default = /*#__PURE__*/_interopDefaultCompat(React);
|
|
15
|
+
var cn__default = /*#__PURE__*/_interopDefaultCompat(cn);
|
|
16
|
+
var styles__default = /*#__PURE__*/_interopDefaultCompat(styles);
|
|
17
|
+
|
|
18
|
+
var icons = {
|
|
19
|
+
circleLine: icons_CircleLine.CircleLineIcon,
|
|
20
|
+
filledCircle: icons_FilledCircle.FilledCircleIcon,
|
|
21
|
+
strokeCircle: icons_StrokeCircle.StrokeCircleIcon,
|
|
22
|
+
circle: icons_Circle.CircleIcon,
|
|
17
23
|
};
|
|
18
|
-
|
|
19
|
-
|
|
24
|
+
var Legends = React__default.default.forwardRef(function (_a, ref) {
|
|
25
|
+
var legend = _a.legend, series = _a.series, id = _a.id, charts = _a.charts, toggleChart = _a.toggleChart;
|
|
26
|
+
var style = {
|
|
20
27
|
textAlign: legend.align || 'center',
|
|
21
|
-
transform:
|
|
22
|
-
(legend.verticalAlign === 'top' ? -1 : 1)
|
|
28
|
+
transform: "translateY(".concat(((legend === null || legend === void 0 ? void 0 : legend.marginTop) ? legend.marginTop : 0) *
|
|
29
|
+
(legend.verticalAlign === 'top' ? -1 : 1), "px)"),
|
|
23
30
|
};
|
|
24
|
-
return (
|
|
31
|
+
return (React__default.default.createElement("ul", { ref: ref, className: cn__default.default(styles__default.default.legendWrap), style: style }, series.map(function (item) {
|
|
32
|
+
var _a, _b;
|
|
25
33
|
if (item.hideLegend || item.hide)
|
|
26
34
|
return null;
|
|
27
|
-
|
|
28
|
-
return (
|
|
29
|
-
|
|
30
|
-
Icon ? (
|
|
31
|
-
|
|
32
|
-
item.properties
|
|
35
|
+
var Icon = icons[item.icon] || icons_Circle.CircleIcon;
|
|
36
|
+
return (React__default.default.createElement("li", { role: 'presentation', key: "".concat(id, "-").concat(item.properties.dataKey), className: cn__default.default(styles__default.default.legendItem, charts["".concat(item.properties.dataKey)] ? '' : styles__default.default.legendUnactive), onClick: function () { return toggleChart(item); } },
|
|
37
|
+
React__default.default.createElement("div", { className: cn__default.default(styles__default.default.legendContent) },
|
|
38
|
+
Icon ? (React__default.default.createElement("i", { className: cn__default.default(styles__default.default.legendIcon) },
|
|
39
|
+
React__default.default.createElement(Icon, { fill: ((_a = item.properties) === null || _a === void 0 ? void 0 : _a.fill) ||
|
|
40
|
+
((_b = item.properties) === null || _b === void 0 ? void 0 : _b.stroke) ||
|
|
33
41
|
'', height: legend.iconHeight || 16 }))) : null,
|
|
34
|
-
|
|
42
|
+
React__default.default.createElement(coreComponentsTypography.Typography.Text, { view: 'primary-medium', tag: 'span', className: cn__default.default(styles__default.default.legendValue) }, item.properties.name))));
|
|
35
43
|
})));
|
|
36
44
|
});
|
|
37
45
|
|
|
38
|
-
|
|
46
|
+
exports.Legends = Legends;
|