intergalactic 15.87.0 → 15.88.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -1
- package/accordion/lib/cjs/Accordion.js +7 -7
- package/accordion/lib/es6/Accordion.js +7 -7
- package/animation/lib/cjs/Animation.js +11 -11
- package/animation/lib/cjs/Collapse.js +28 -28
- package/animation/lib/cjs/FadeInOut.js +28 -28
- package/animation/lib/cjs/Scale.js +28 -28
- package/animation/lib/cjs/Slide.js +28 -28
- package/animation/lib/cjs/Transform.js +28 -28
- package/animation/lib/es6/Animation.js +11 -11
- package/animation/lib/es6/Collapse.js +28 -28
- package/animation/lib/es6/FadeInOut.js +28 -28
- package/animation/lib/es6/Scale.js +28 -28
- package/animation/lib/es6/Slide.js +28 -28
- package/animation/lib/es6/Transform.js +28 -28
- package/badge/lib/cjs/Badge.js +6 -6
- package/badge/lib/es6/Badge.js +6 -6
- package/base-trigger/lib/cjs/BaseTrigger.js +18 -18
- package/base-trigger/lib/cjs/ButtonTrigger.js +3 -3
- package/base-trigger/lib/cjs/FilterTrigger.js +7 -7
- package/base-trigger/lib/cjs/LinkTrigger.js +12 -12
- package/base-trigger/lib/es6/BaseTrigger.js +18 -18
- package/base-trigger/lib/es6/ButtonTrigger.js +3 -3
- package/base-trigger/lib/es6/FilterTrigger.js +7 -7
- package/base-trigger/lib/es6/LinkTrigger.js +12 -12
- package/breadcrumbs/lib/cjs/Breadcrumbs.js +6 -6
- package/breadcrumbs/lib/es6/Breadcrumbs.js +6 -6
- package/card/lib/cjs/Card.js +8 -8
- package/card/lib/es6/Card.js +8 -8
- package/carousel/lib/cjs/Carousel.js +19 -19
- package/carousel/lib/es6/Carousel.js +19 -19
- package/checkbox/lib/cjs/Checkbox.js +18 -18
- package/checkbox/lib/es6/Checkbox.js +18 -18
- package/color-picker/lib/cjs/ColorPicker.js +23 -23
- package/color-picker/lib/cjs/PaletteManager.js +23 -23
- package/color-picker/lib/cjs/components/InputColor.js +23 -23
- package/color-picker/lib/es6/ColorPicker.js +23 -23
- package/color-picker/lib/es6/PaletteManager.js +23 -23
- package/color-picker/lib/es6/components/InputColor.js +23 -23
- package/components.json +70 -70
- package/core/Component.d.ts +152 -0
- package/core/enhancement/Children.d.ts +6 -0
- package/core/enhancement/Root.d.ts +6 -0
- package/core/enhancement/bindHandler.d.ts +5 -0
- package/core/enhancement/dataName.d.ts +4 -0
- package/core/enhancement/enhance.d.ts +5 -0
- package/core/enhancement/functionDefaultProps.d.ts +8 -0
- package/core/enhancement/hoistProps.d.ts +10 -0
- package/core/enhancement/i18n.d.ts +4 -0
- package/core/enhancement/inheritedName.d.ts +8 -0
- package/core/enhancement/staticChildren.d.ts +13 -0
- package/core/enhancement/style.d.ts +9 -0
- package/core/enhancement/uncontrolledProps.d.ts +7 -0
- package/core/lib/cjs/Component.js +58 -0
- package/core/lib/cjs/Component.js.map +1 -0
- package/core/lib/cjs/enhancement/Children.js +121 -0
- package/core/lib/cjs/enhancement/Children.js.map +1 -0
- package/core/lib/cjs/enhancement/Root.js +78 -0
- package/core/lib/cjs/enhancement/Root.js.map +1 -0
- package/core/lib/cjs/enhancement/bindHandler.js +54 -0
- package/core/lib/cjs/enhancement/bindHandler.js.map +1 -0
- package/core/lib/cjs/enhancement/dataName.js +20 -0
- package/core/lib/cjs/enhancement/dataName.js.map +1 -0
- package/core/lib/cjs/enhancement/enhance.js +22 -0
- package/core/lib/cjs/enhancement/enhance.js.map +1 -0
- package/core/lib/cjs/enhancement/functionDefaultProps.js +36 -0
- package/core/lib/cjs/enhancement/functionDefaultProps.js.map +1 -0
- package/core/lib/cjs/enhancement/hoistProps.js +102 -0
- package/core/lib/cjs/enhancement/hoistProps.js.map +1 -0
- package/core/lib/cjs/enhancement/i18n.js +28 -0
- package/core/lib/cjs/enhancement/i18n.js.map +1 -0
- package/core/lib/cjs/enhancement/inheritedName.js +24 -0
- package/core/lib/cjs/enhancement/inheritedName.js.map +1 -0
- package/core/lib/cjs/enhancement/staticChildren.js +141 -0
- package/core/lib/cjs/enhancement/staticChildren.js.map +1 -0
- package/core/lib/cjs/enhancement/style.js +60 -0
- package/core/lib/cjs/enhancement/style.js.map +1 -0
- package/core/lib/cjs/enhancement/uncontrolledProps.js +135 -0
- package/core/lib/cjs/enhancement/uncontrolledProps.js.map +1 -0
- package/core/lib/cjs/register.js +37 -0
- package/core/lib/cjs/register.js.map +1 -0
- package/core/lib/cjs/reshadow.d.js +2 -0
- package/core/lib/cjs/reshadow.d.js.map +1 -0
- package/core/lib/cjs/styled/index.js +54 -0
- package/core/lib/cjs/styled/index.js.map +1 -0
- package/core/lib/cjs/styled/sstyled.js +150 -0
- package/core/lib/cjs/styled/sstyled.js.map +1 -0
- package/core/lib/es6/Component.js +50 -0
- package/core/lib/es6/Component.js.map +1 -0
- package/core/lib/es6/enhancement/Children.js +112 -0
- package/core/lib/es6/enhancement/Children.js.map +1 -0
- package/core/lib/es6/enhancement/Root.js +72 -0
- package/core/lib/es6/enhancement/Root.js.map +1 -0
- package/core/lib/es6/enhancement/bindHandler.js +47 -0
- package/core/lib/es6/enhancement/bindHandler.js.map +1 -0
- package/core/lib/es6/enhancement/dataName.js +12 -0
- package/core/lib/es6/enhancement/dataName.js.map +1 -0
- package/core/lib/es6/enhancement/enhance.js +15 -0
- package/core/lib/es6/enhancement/enhance.js.map +1 -0
- package/core/lib/es6/enhancement/functionDefaultProps.js +29 -0
- package/core/lib/es6/enhancement/functionDefaultProps.js.map +1 -0
- package/core/lib/es6/enhancement/hoistProps.js +90 -0
- package/core/lib/es6/enhancement/hoistProps.js.map +1 -0
- package/core/lib/es6/enhancement/i18n.js +21 -0
- package/core/lib/es6/enhancement/i18n.js.map +1 -0
- package/core/lib/es6/enhancement/inheritedName.js +15 -0
- package/core/lib/es6/enhancement/inheritedName.js.map +1 -0
- package/core/lib/es6/enhancement/staticChildren.js +126 -0
- package/core/lib/es6/enhancement/staticChildren.js.map +1 -0
- package/core/lib/es6/enhancement/style.js +52 -0
- package/core/lib/es6/enhancement/style.js.map +1 -0
- package/core/lib/es6/enhancement/uncontrolledProps.js +125 -0
- package/core/lib/es6/enhancement/uncontrolledProps.js.map +1 -0
- package/core/lib/es6/register.js +29 -0
- package/core/lib/es6/register.js.map +1 -0
- package/core/lib/es6/reshadow.d.js +2 -0
- package/core/lib/es6/reshadow.d.js.map +1 -0
- package/core/lib/es6/styled/index.js +10 -0
- package/core/lib/es6/styled/index.js.map +1 -0
- package/core/lib/es6/styled/sstyled.js +143 -0
- package/core/lib/es6/styled/sstyled.js.map +1 -0
- package/core/lib/types/Component.d.ts +152 -0
- package/core/lib/types/enhancement/Children.d.ts +6 -0
- package/core/lib/types/enhancement/Root.d.ts +6 -0
- package/core/lib/types/enhancement/bindHandler.d.ts +5 -0
- package/core/lib/types/enhancement/dataName.d.ts +4 -0
- package/core/lib/types/enhancement/enhance.d.ts +5 -0
- package/core/lib/types/enhancement/functionDefaultProps.d.ts +8 -0
- package/core/lib/types/enhancement/hoistProps.d.ts +10 -0
- package/core/lib/types/enhancement/i18n.d.ts +4 -0
- package/core/lib/types/enhancement/inheritedName.d.ts +8 -0
- package/core/lib/types/enhancement/staticChildren.d.ts +13 -0
- package/core/lib/types/enhancement/style.d.ts +9 -0
- package/core/lib/types/enhancement/uncontrolledProps.d.ts +7 -0
- package/core/lib/types/register.d.ts +8 -0
- package/core/lib/types/styled/index.d.ts +14 -0
- package/core/lib/types/styled/sstyled.d.ts +17 -0
- package/core/register.d.ts +8 -0
- package/core/styled/index.d.ts +14 -0
- package/core/styled/sstyled.d.ts +17 -0
- package/counter/lib/cjs/Counter.js +10 -10
- package/counter/lib/es6/Counter.js +10 -10
- package/d3-chart/lib/cjs/Area.js +11 -11
- package/d3-chart/lib/cjs/Axis.js +14 -14
- package/d3-chart/lib/cjs/Bar.js +10 -10
- package/d3-chart/lib/cjs/Bubble.js +12 -12
- package/d3-chart/lib/cjs/ClipPath.js +94 -0
- package/d3-chart/lib/cjs/ClipPath.js.map +1 -0
- package/d3-chart/lib/cjs/Donut.js +9 -9
- package/d3-chart/lib/cjs/Dots.js +8 -8
- package/d3-chart/lib/cjs/HorizontalBar.js +10 -10
- package/d3-chart/lib/cjs/Hover.js +3 -3
- package/d3-chart/lib/cjs/Line.js +9 -9
- package/d3-chart/lib/cjs/Plot.js +3 -3
- package/d3-chart/lib/cjs/Radar.js +19 -19
- package/d3-chart/lib/cjs/RadialTree.js +11 -11
- package/d3-chart/lib/cjs/ReferenceLine.js +9 -9
- package/d3-chart/lib/cjs/ScatterPlot.js +9 -9
- package/d3-chart/lib/cjs/Tooltip.js +9 -9
- package/d3-chart/lib/cjs/Venn.js +9 -9
- package/d3-chart/lib/cjs/a11y/PlotA11yModule.js +2 -2
- package/d3-chart/lib/cjs/a11y/PlotA11yView.js +2 -2
- package/d3-chart/lib/cjs/component/ChartLegend/LegendFlex/LegendFlex.js +4 -4
- package/d3-chart/lib/cjs/component/ChartLegend/LegendItem/LegendItem.js +17 -17
- package/d3-chart/lib/cjs/component/ChartLegend/LegendTable/LegendTable.js +6 -6
- package/d3-chart/lib/es6/Area.js +11 -11
- package/d3-chart/lib/es6/Axis.js +14 -14
- package/d3-chart/lib/es6/Bar.js +10 -10
- package/d3-chart/lib/es6/Bubble.js +12 -12
- package/d3-chart/lib/es6/ClipPath.js +85 -0
- package/d3-chart/lib/es6/ClipPath.js.map +1 -0
- package/d3-chart/lib/es6/Donut.js +9 -9
- package/d3-chart/lib/es6/Dots.js +8 -8
- package/d3-chart/lib/es6/HorizontalBar.js +10 -10
- package/d3-chart/lib/es6/Hover.js +3 -3
- package/d3-chart/lib/es6/Line.js +9 -9
- package/d3-chart/lib/es6/Plot.js +3 -3
- package/d3-chart/lib/es6/Radar.js +19 -19
- package/d3-chart/lib/es6/RadialTree.js +11 -11
- package/d3-chart/lib/es6/ReferenceLine.js +9 -9
- package/d3-chart/lib/es6/ScatterPlot.js +9 -9
- package/d3-chart/lib/es6/Tooltip.js +9 -9
- package/d3-chart/lib/es6/Venn.js +9 -9
- package/d3-chart/lib/es6/a11y/PlotA11yModule.js +2 -2
- package/d3-chart/lib/es6/a11y/PlotA11yView.js +2 -2
- package/d3-chart/lib/es6/component/ChartLegend/LegendFlex/LegendFlex.js +4 -4
- package/d3-chart/lib/es6/component/ChartLegend/LegendItem/LegendItem.js +17 -17
- package/d3-chart/lib/es6/component/ChartLegend/LegendTable/LegendTable.js +6 -6
- package/data-table/lib/cjs/DataTable.js +37 -37
- package/data-table/lib/es6/DataTable.js +37 -37
- package/date-picker/lib/cjs/components/Calendar.js +21 -21
- package/date-picker/lib/cjs/components/DateRangeComparatorAbstract.js +29 -29
- package/date-picker/lib/cjs/components/InputTrigger.js +29 -29
- package/date-picker/lib/cjs/components/PickerAbstract.js +29 -29
- package/date-picker/lib/cjs/components/RangePickerAbstract.js +29 -29
- package/date-picker/lib/es6/components/Calendar.js +21 -21
- package/date-picker/lib/es6/components/DateRangeComparatorAbstract.js +29 -29
- package/date-picker/lib/es6/components/InputTrigger.js +29 -29
- package/date-picker/lib/es6/components/PickerAbstract.js +29 -29
- package/date-picker/lib/es6/components/RangePickerAbstract.js +29 -29
- package/divider/lib/cjs/Divider.js +9 -9
- package/divider/lib/es6/Divider.js +9 -9
- package/dot/lib/cjs/Dot.js +10 -10
- package/dot/lib/es6/Dot.js +10 -10
- package/drag-and-drop/lib/cjs/DragAndDrop.js +16 -16
- package/drag-and-drop/lib/es6/DragAndDrop.js +16 -16
- package/dropdown/lib/cjs/Dropdown.js +2 -2
- package/dropdown/lib/es6/Dropdown.js +2 -2
- package/dropdown-menu/lib/cjs/DropdownMenu.js +16 -16
- package/dropdown-menu/lib/cjs/styleScrollArea.js +6 -6
- package/dropdown-menu/lib/es6/DropdownMenu.js +16 -16
- package/dropdown-menu/lib/es6/styleScrollArea.js +6 -6
- package/ellipsis/lib/cjs/Ellipsis.js +10 -10
- package/ellipsis/lib/es6/Ellipsis.js +10 -10
- package/errors/lib/cjs/Error.js +9 -9
- package/errors/lib/es6/Error.js +9 -9
- package/feature-popover/lib/cjs/FeaturePopover.js +10 -10
- package/feature-popover/lib/es6/FeaturePopover.js +10 -10
- package/feedback-form/component/checkbox-button/CheckboxButton.d.ts +4 -0
- package/feedback-form/component/feedback-item/FeedbackItem.d.ts +7 -0
- package/feedback-form/component/feedback-rating/FeedbackRating.d.ts +156 -0
- package/feedback-form/component/feedback-rating/FeedbackRating.type.d.ts +55 -0
- package/feedback-form/component/slider-rating/SliderRating.d.ts +14 -0
- package/feedback-form/component/submit-button/SubmitButton.d.ts +3 -0
- package/feedback-form/index.d.ts +4 -0
- package/feedback-form/lib/cjs/FeedbackForm.js +28 -86
- package/feedback-form/lib/cjs/FeedbackForm.js.map +1 -1
- package/feedback-form/lib/cjs/component/checkbox-button/CheckboxButton.js +58 -0
- package/feedback-form/lib/cjs/component/checkbox-button/CheckboxButton.js.map +1 -0
- package/feedback-form/lib/cjs/component/feedback-item/FeedbackItem.js +63 -0
- package/feedback-form/lib/cjs/component/feedback-item/FeedbackItem.js.map +1 -0
- package/feedback-form/lib/cjs/component/feedback-rating/FeedbackRating.js +360 -0
- package/feedback-form/lib/cjs/component/feedback-rating/FeedbackRating.js.map +1 -0
- package/feedback-form/lib/cjs/component/feedback-rating/FeedbackRating.type.js +2 -0
- package/feedback-form/lib/cjs/component/feedback-rating/FeedbackRating.type.js.map +1 -0
- package/feedback-form/lib/cjs/component/slider-rating/SliderRating.js +172 -0
- package/feedback-form/lib/cjs/component/slider-rating/SliderRating.js.map +1 -0
- package/feedback-form/lib/cjs/component/submit-button/SubmitButton.js +23 -0
- package/feedback-form/lib/cjs/component/submit-button/SubmitButton.js.map +1 -0
- package/feedback-form/lib/cjs/index.d.js +12 -0
- package/feedback-form/lib/cjs/index.d.js.map +1 -1
- package/feedback-form/lib/cjs/index.js +7 -0
- package/feedback-form/lib/cjs/index.js.map +1 -1
- package/feedback-form/lib/cjs/style/checkbox-button.shadow.css +21 -0
- package/feedback-form/lib/cjs/style/feedback-rating.shadow.css +9 -0
- package/feedback-form/lib/cjs/style/slider-rating.shadow.css +34 -0
- package/feedback-form/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/feedback-form/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/feedback-form/lib/cjs/translations/de.json +7 -0
- package/feedback-form/lib/cjs/translations/en.json +8 -0
- package/feedback-form/lib/cjs/translations/es.json +7 -0
- package/feedback-form/lib/cjs/translations/fr.json +7 -0
- package/feedback-form/lib/cjs/translations/it.json +7 -0
- package/feedback-form/lib/cjs/translations/ja.json +7 -0
- package/feedback-form/lib/cjs/translations/ko.json +7 -0
- package/feedback-form/lib/cjs/translations/nl.json +7 -0
- package/feedback-form/lib/cjs/translations/pl.json +7 -0
- package/feedback-form/lib/cjs/translations/pt.json +7 -0
- package/feedback-form/lib/cjs/translations/sv.json +7 -0
- package/feedback-form/lib/cjs/translations/tr.json +7 -0
- package/feedback-form/lib/cjs/translations/vi.json +7 -0
- package/feedback-form/lib/cjs/translations/zh.json +7 -0
- package/feedback-form/lib/es6/FeedbackForm.js +28 -88
- package/feedback-form/lib/es6/FeedbackForm.js.map +1 -1
- package/feedback-form/lib/es6/component/checkbox-button/CheckboxButton.js +50 -0
- package/feedback-form/lib/es6/component/checkbox-button/CheckboxButton.js.map +1 -0
- package/feedback-form/lib/es6/component/feedback-item/FeedbackItem.js +56 -0
- package/feedback-form/lib/es6/component/feedback-item/FeedbackItem.js.map +1 -0
- package/feedback-form/lib/es6/component/feedback-rating/FeedbackRating.js +354 -0
- package/feedback-form/lib/es6/component/feedback-rating/FeedbackRating.js.map +1 -0
- package/feedback-form/lib/es6/component/feedback-rating/FeedbackRating.type.js +2 -0
- package/feedback-form/lib/es6/component/feedback-rating/FeedbackRating.type.js.map +1 -0
- package/feedback-form/lib/es6/component/slider-rating/SliderRating.js +165 -0
- package/feedback-form/lib/es6/component/slider-rating/SliderRating.js.map +1 -0
- package/feedback-form/lib/es6/component/submit-button/SubmitButton.js +17 -0
- package/feedback-form/lib/es6/component/submit-button/SubmitButton.js.map +1 -0
- package/feedback-form/lib/es6/index.d.js +5 -1
- package/feedback-form/lib/es6/index.d.js.map +1 -1
- package/feedback-form/lib/es6/index.js +2 -0
- package/feedback-form/lib/es6/index.js.map +1 -1
- package/feedback-form/lib/es6/style/checkbox-button.shadow.css +21 -0
- package/feedback-form/lib/es6/style/feedback-rating.shadow.css +9 -0
- package/feedback-form/lib/es6/style/slider-rating.shadow.css +34 -0
- package/feedback-form/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/feedback-form/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/feedback-form/lib/es6/translations/de.json +7 -0
- package/feedback-form/lib/es6/translations/en.json +8 -0
- package/feedback-form/lib/es6/translations/es.json +7 -0
- package/feedback-form/lib/es6/translations/fr.json +7 -0
- package/feedback-form/lib/es6/translations/it.json +7 -0
- package/feedback-form/lib/es6/translations/ja.json +7 -0
- package/feedback-form/lib/es6/translations/ko.json +7 -0
- package/feedback-form/lib/es6/translations/nl.json +7 -0
- package/feedback-form/lib/es6/translations/pl.json +7 -0
- package/feedback-form/lib/es6/translations/pt.json +7 -0
- package/feedback-form/lib/es6/translations/sv.json +7 -0
- package/feedback-form/lib/es6/translations/tr.json +7 -0
- package/feedback-form/lib/es6/translations/vi.json +7 -0
- package/feedback-form/lib/es6/translations/zh.json +7 -0
- package/feedback-form/lib/types/component/checkbox-button/CheckboxButton.d.ts +4 -0
- package/feedback-form/lib/types/component/feedback-item/FeedbackItem.d.ts +7 -0
- package/feedback-form/lib/types/component/feedback-rating/FeedbackRating.d.ts +156 -0
- package/feedback-form/lib/types/component/feedback-rating/FeedbackRating.type.d.ts +55 -0
- package/feedback-form/lib/types/component/slider-rating/SliderRating.d.ts +14 -0
- package/feedback-form/lib/types/component/submit-button/SubmitButton.d.ts +3 -0
- package/feedback-form/lib/types/index.d.ts +4 -0
- package/feedback-form/lib/types/translations/__intergalactic-dynamic-locales.d.ts +101 -0
- package/feedback-form/translations/__intergalactic-dynamic-locales.d.ts +101 -0
- package/flags/lib/sprites/sprite@1x.png +0 -0
- package/flags/lib/sprites/sprite@2x.png +0 -0
- package/flex-box/lib/cjs/Box/useBox.js +3 -3
- package/flex-box/lib/cjs/Flex/useFlex.js +3 -3
- package/flex-box/lib/cjs/invalid-state-box/InvalidStateBox.js +2 -2
- package/flex-box/lib/es6/Box/useBox.js +3 -3
- package/flex-box/lib/es6/Flex/useFlex.js +3 -3
- package/flex-box/lib/es6/invalid-state-box/InvalidStateBox.js +2 -2
- package/format-text/lib/cjs/FormatText.js +5 -5
- package/format-text/lib/es6/FormatText.js +5 -5
- package/fullscreen-modal/lib/cjs/FullscreenModal.js +13 -13
- package/fullscreen-modal/lib/es6/FullscreenModal.js +13 -13
- package/grid/lib/cjs/Grid.js +114 -114
- package/grid/lib/es6/Grid.js +114 -114
- package/icon/color/Confluence/l/index.js +4 -4
- package/icon/color/Confluence/l/index.mjs +4 -4
- package/icon/color/Confluence/m/index.js +4 -4
- package/icon/color/Confluence/m/index.mjs +4 -4
- package/icon/color/MicrosoftOffice/l/index.js +10 -10
- package/icon/color/MicrosoftOffice/l/index.mjs +10 -10
- package/icon/color/MicrosoftOffice/m/index.js +10 -10
- package/icon/color/MicrosoftOffice/m/index.mjs +10 -10
- package/icon/lib/cjs/Icon.js +5 -5
- package/icon/lib/es6/Icon.js +5 -5
- package/icon/pay/Discover/l/index.js +1 -1
- package/icon/pay/Discover/l/index.mjs +1 -1
- package/icon/pay/Discover/m/index.js +1 -1
- package/icon/pay/Discover/m/index.mjs +1 -1
- package/icon/pay/JCB/l/index.js +10 -10
- package/icon/pay/JCB/l/index.mjs +10 -10
- package/icon/pay/JCB/m/index.js +10 -10
- package/icon/pay/JCB/m/index.mjs +10 -10
- package/icon/pay/Visa/l/index.js +2 -2
- package/icon/pay/Visa/l/index.mjs +2 -2
- package/icon/pay/Visa/m/index.js +2 -2
- package/icon/pay/Visa/m/index.mjs +2 -2
- package/illustration/lib/cjs/index.js +1 -1
- package/illustration/lib/es6/index.js +1 -1
- package/inline-edit/lib/cjs/InlineEdit.js +4 -4
- package/inline-edit/lib/es6/InlineEdit.js +4 -4
- package/inline-input/lib/cjs/InlineInput.js +18 -18
- package/inline-input/lib/es6/InlineInput.js +18 -18
- package/input/lib/cjs/Input.js +17 -17
- package/input/lib/es6/Input.js +17 -17
- package/input-mask/lib/cjs/InputMask.js +6 -6
- package/input-mask/lib/es6/InputMask.js +6 -6
- package/input-number/lib/cjs/InputNumber.js +10 -10
- package/input-number/lib/cjs/InputNumber.js.map +1 -1
- package/input-number/lib/es6/InputNumber.js +10 -10
- package/input-number/lib/es6/InputNumber.js.map +1 -1
- package/input-tags/lib/cjs/InputTags.js +12 -12
- package/input-tags/lib/es6/InputTags.js +12 -12
- package/libs/accordion/lib/cjs/Accordion.js +229 -0
- package/libs/accordion/lib/cjs/Accordion.js.map +1 -0
- package/libs/accordion/lib/cjs/index.d.js +2 -0
- package/libs/accordion/lib/cjs/index.d.js.map +1 -0
- package/libs/accordion/lib/cjs/index.js +26 -0
- package/libs/accordion/lib/cjs/index.js.map +1 -0
- package/libs/accordion/lib/es6/Accordion.js +223 -0
- package/libs/accordion/lib/es6/Accordion.js.map +1 -0
- package/libs/accordion/lib/es6/index.d.js +2 -0
- package/libs/accordion/lib/es6/index.d.js.map +1 -0
- package/libs/accordion/lib/es6/index.js +3 -0
- package/libs/accordion/lib/es6/index.js.map +1 -0
- package/libs/accordion/lib/types/index.d.ts +95 -0
- package/libs/animation/lib/cjs/Animation.js +165 -0
- package/libs/animation/lib/cjs/Animation.js.map +1 -0
- package/libs/animation/lib/cjs/Collapse.js +103 -0
- package/libs/animation/lib/cjs/Collapse.js.map +1 -0
- package/libs/animation/lib/cjs/FadeInOut.js +53 -0
- package/libs/animation/lib/cjs/FadeInOut.js.map +1 -0
- package/libs/animation/lib/cjs/Scale.js +80 -0
- package/libs/animation/lib/cjs/Scale.js.map +1 -0
- package/libs/animation/lib/cjs/Slide.js +53 -0
- package/libs/animation/lib/cjs/Slide.js.map +1 -0
- package/libs/animation/lib/cjs/Transform.js +60 -0
- package/libs/animation/lib/cjs/Transform.js.map +1 -0
- package/libs/animation/lib/cjs/index.d.js +2 -0
- package/libs/animation/lib/cjs/index.d.js.map +1 -0
- package/libs/animation/lib/cjs/index.js +56 -0
- package/libs/animation/lib/cjs/index.js.map +1 -0
- package/libs/animation/lib/es6/Animation.js +157 -0
- package/libs/animation/lib/es6/Animation.js.map +1 -0
- package/libs/animation/lib/es6/Collapse.js +96 -0
- package/libs/animation/lib/es6/Collapse.js.map +1 -0
- package/libs/animation/lib/es6/FadeInOut.js +46 -0
- package/libs/animation/lib/es6/FadeInOut.js.map +1 -0
- package/libs/animation/lib/es6/Scale.js +73 -0
- package/libs/animation/lib/es6/Scale.js.map +1 -0
- package/libs/animation/lib/es6/Slide.js +46 -0
- package/libs/animation/lib/es6/Slide.js.map +1 -0
- package/libs/animation/lib/es6/Transform.js +53 -0
- package/libs/animation/lib/es6/Transform.js.map +1 -0
- package/libs/animation/lib/es6/index.d.js +2 -0
- package/libs/animation/lib/es6/index.d.js.map +1 -0
- package/libs/animation/lib/es6/index.js +7 -0
- package/libs/animation/lib/es6/index.js.map +1 -0
- package/libs/animation/lib/types/index.d.ts +103 -0
- package/libs/badge/lib/cjs/Badge.js +63 -0
- package/libs/badge/lib/cjs/Badge.js.map +1 -0
- package/libs/badge/lib/cjs/index.d.js +2 -0
- package/libs/badge/lib/cjs/index.d.js.map +1 -0
- package/libs/badge/lib/cjs/index.js +14 -0
- package/libs/badge/lib/cjs/index.js.map +1 -0
- package/libs/badge/lib/es6/Badge.js +56 -0
- package/libs/badge/lib/es6/Badge.js.map +1 -0
- package/libs/badge/lib/es6/index.d.js +2 -0
- package/libs/badge/lib/es6/index.d.js.map +1 -0
- package/libs/badge/lib/es6/index.js +2 -0
- package/libs/badge/lib/es6/index.js.map +1 -0
- package/libs/badge/lib/types/index.d.ts +20 -0
- package/libs/base-trigger/lib/cjs/BaseTrigger.js +128 -0
- package/libs/base-trigger/lib/cjs/BaseTrigger.js.map +1 -0
- package/libs/base-trigger/lib/cjs/ButtonTrigger.js +73 -0
- package/libs/base-trigger/lib/cjs/ButtonTrigger.js.map +1 -0
- package/libs/base-trigger/lib/cjs/FilterTrigger.js +159 -0
- package/libs/base-trigger/lib/cjs/FilterTrigger.js.map +1 -0
- package/libs/base-trigger/lib/cjs/LinkTrigger.js +113 -0
- package/libs/base-trigger/lib/cjs/LinkTrigger.js.map +1 -0
- package/libs/base-trigger/lib/cjs/index.d.js +2 -0
- package/libs/base-trigger/lib/cjs/index.d.js.map +1 -0
- package/libs/base-trigger/lib/cjs/index.js +35 -0
- package/libs/base-trigger/lib/cjs/index.js.map +1 -0
- package/libs/base-trigger/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/base-trigger/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/base-trigger/lib/cjs/translations/de.json +4 -0
- package/libs/base-trigger/lib/cjs/translations/en.json +4 -0
- package/libs/base-trigger/lib/cjs/translations/es.json +4 -0
- package/libs/base-trigger/lib/cjs/translations/fr.json +4 -0
- package/libs/base-trigger/lib/cjs/translations/it.json +4 -0
- package/libs/base-trigger/lib/cjs/translations/ja.json +4 -0
- package/libs/base-trigger/lib/cjs/translations/ko.json +4 -0
- package/libs/base-trigger/lib/cjs/translations/nl.json +4 -0
- package/libs/base-trigger/lib/cjs/translations/pl.json +4 -0
- package/libs/base-trigger/lib/cjs/translations/pt.json +4 -0
- package/libs/base-trigger/lib/cjs/translations/sv.json +4 -0
- package/libs/base-trigger/lib/cjs/translations/tr.json +4 -0
- package/libs/base-trigger/lib/cjs/translations/vi.json +4 -0
- package/libs/base-trigger/lib/cjs/translations/zh.json +4 -0
- package/libs/base-trigger/lib/es6/BaseTrigger.js +123 -0
- package/libs/base-trigger/lib/es6/BaseTrigger.js.map +1 -0
- package/libs/base-trigger/lib/es6/ButtonTrigger.js +66 -0
- package/libs/base-trigger/lib/es6/ButtonTrigger.js.map +1 -0
- package/libs/base-trigger/lib/es6/FilterTrigger.js +153 -0
- package/libs/base-trigger/lib/es6/FilterTrigger.js.map +1 -0
- package/libs/base-trigger/lib/es6/LinkTrigger.js +108 -0
- package/libs/base-trigger/lib/es6/LinkTrigger.js.map +1 -0
- package/libs/base-trigger/lib/es6/index.d.js +2 -0
- package/libs/base-trigger/lib/es6/index.d.js.map +1 -0
- package/libs/base-trigger/lib/es6/index.js +5 -0
- package/libs/base-trigger/lib/es6/index.js.map +1 -0
- package/libs/base-trigger/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/base-trigger/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/base-trigger/lib/es6/translations/de.json +4 -0
- package/libs/base-trigger/lib/es6/translations/en.json +4 -0
- package/libs/base-trigger/lib/es6/translations/es.json +4 -0
- package/libs/base-trigger/lib/es6/translations/fr.json +4 -0
- package/libs/base-trigger/lib/es6/translations/it.json +4 -0
- package/libs/base-trigger/lib/es6/translations/ja.json +4 -0
- package/libs/base-trigger/lib/es6/translations/ko.json +4 -0
- package/libs/base-trigger/lib/es6/translations/nl.json +4 -0
- package/libs/base-trigger/lib/es6/translations/pl.json +4 -0
- package/libs/base-trigger/lib/es6/translations/pt.json +4 -0
- package/libs/base-trigger/lib/es6/translations/sv.json +4 -0
- package/libs/base-trigger/lib/es6/translations/tr.json +4 -0
- package/libs/base-trigger/lib/es6/translations/vi.json +4 -0
- package/libs/base-trigger/lib/es6/translations/zh.json +4 -0
- package/libs/base-trigger/lib/types/index.d.ts +95 -0
- package/libs/breadcrumbs/lib/cjs/Breadcrumbs.js +116 -0
- package/libs/breadcrumbs/lib/cjs/Breadcrumbs.js.map +1 -0
- package/libs/breadcrumbs/lib/cjs/index.d.js +2 -0
- package/libs/breadcrumbs/lib/cjs/index.d.js.map +1 -0
- package/libs/breadcrumbs/lib/cjs/index.js +14 -0
- package/libs/breadcrumbs/lib/cjs/index.js.map +1 -0
- package/libs/breadcrumbs/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/breadcrumbs/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/breadcrumbs/lib/cjs/translations/de.json +3 -0
- package/libs/breadcrumbs/lib/cjs/translations/en.json +3 -0
- package/libs/breadcrumbs/lib/cjs/translations/es.json +3 -0
- package/libs/breadcrumbs/lib/cjs/translations/fr.json +3 -0
- package/libs/breadcrumbs/lib/cjs/translations/it.json +3 -0
- package/libs/breadcrumbs/lib/cjs/translations/ja.json +3 -0
- package/libs/breadcrumbs/lib/cjs/translations/ko.json +3 -0
- package/libs/breadcrumbs/lib/cjs/translations/nl.json +3 -0
- package/libs/breadcrumbs/lib/cjs/translations/pl.json +3 -0
- package/libs/breadcrumbs/lib/cjs/translations/pt.json +3 -0
- package/libs/breadcrumbs/lib/cjs/translations/sv.json +3 -0
- package/libs/breadcrumbs/lib/cjs/translations/tr.json +3 -0
- package/libs/breadcrumbs/lib/cjs/translations/vi.json +3 -0
- package/libs/breadcrumbs/lib/cjs/translations/zh.json +3 -0
- package/libs/breadcrumbs/lib/es6/Breadcrumbs.js +110 -0
- package/libs/breadcrumbs/lib/es6/Breadcrumbs.js.map +1 -0
- package/libs/breadcrumbs/lib/es6/index.d.js +2 -0
- package/libs/breadcrumbs/lib/es6/index.d.js.map +1 -0
- package/libs/breadcrumbs/lib/es6/index.js +2 -0
- package/libs/breadcrumbs/lib/es6/index.js.map +1 -0
- package/libs/breadcrumbs/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/breadcrumbs/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/breadcrumbs/lib/es6/translations/de.json +3 -0
- package/libs/breadcrumbs/lib/es6/translations/en.json +3 -0
- package/libs/breadcrumbs/lib/es6/translations/es.json +3 -0
- package/libs/breadcrumbs/lib/es6/translations/fr.json +3 -0
- package/libs/breadcrumbs/lib/es6/translations/it.json +3 -0
- package/libs/breadcrumbs/lib/es6/translations/ja.json +3 -0
- package/libs/breadcrumbs/lib/es6/translations/ko.json +3 -0
- package/libs/breadcrumbs/lib/es6/translations/nl.json +3 -0
- package/libs/breadcrumbs/lib/es6/translations/pl.json +3 -0
- package/libs/breadcrumbs/lib/es6/translations/pt.json +3 -0
- package/libs/breadcrumbs/lib/es6/translations/sv.json +3 -0
- package/libs/breadcrumbs/lib/es6/translations/tr.json +3 -0
- package/libs/breadcrumbs/lib/es6/translations/vi.json +3 -0
- package/libs/breadcrumbs/lib/es6/translations/zh.json +3 -0
- package/libs/breadcrumbs/lib/types/index.d.ts +34 -0
- package/libs/breakpoints/lib/cjs/Breakpoints.js +99 -0
- package/libs/breakpoints/lib/cjs/Breakpoints.js.map +1 -0
- package/libs/breakpoints/lib/cjs/index.d.js +2 -0
- package/libs/breakpoints/lib/cjs/index.d.js.map +1 -0
- package/libs/breakpoints/lib/cjs/index.js +26 -0
- package/libs/breakpoints/lib/cjs/index.js.map +1 -0
- package/libs/breakpoints/lib/es6/Breakpoints.js +88 -0
- package/libs/breakpoints/lib/es6/Breakpoints.js.map +1 -0
- package/libs/breakpoints/lib/es6/index.d.js +2 -0
- package/libs/breakpoints/lib/es6/index.d.js.map +1 -0
- package/libs/breakpoints/lib/es6/index.js +3 -0
- package/libs/breakpoints/lib/es6/index.js.map +1 -0
- package/libs/breakpoints/lib/types/index.d.ts +46 -0
- package/libs/button/lib/cjs/Button.js +178 -0
- package/libs/button/lib/cjs/Button.js.map +1 -0
- package/libs/button/lib/cjs/SpinButton.js +42 -0
- package/libs/button/lib/cjs/SpinButton.js.map +1 -0
- package/libs/button/lib/cjs/index.d.js +2 -0
- package/libs/button/lib/cjs/index.d.js.map +1 -0
- package/libs/button/lib/cjs/index.js +26 -0
- package/libs/button/lib/cjs/index.js.map +1 -0
- package/libs/button/lib/es6/Button.js +172 -0
- package/libs/button/lib/es6/Button.js.map +1 -0
- package/libs/button/lib/es6/SpinButton.js +32 -0
- package/libs/button/lib/es6/SpinButton.js.map +1 -0
- package/libs/button/lib/es6/index.d.js +2 -0
- package/libs/button/lib/es6/index.d.js.map +1 -0
- package/libs/button/lib/es6/index.js +3 -0
- package/libs/button/lib/es6/index.js.map +1 -0
- package/libs/button/lib/types/index.d.ts +62 -0
- package/libs/card/lib/cjs/Card.js +102 -0
- package/libs/card/lib/cjs/Card.js.map +1 -0
- package/libs/card/lib/cjs/index.d.js +2 -0
- package/libs/card/lib/cjs/index.d.js.map +1 -0
- package/libs/card/lib/cjs/index.js +14 -0
- package/libs/card/lib/cjs/index.js.map +1 -0
- package/libs/card/lib/es6/Card.js +99 -0
- package/libs/card/lib/es6/Card.js.map +1 -0
- package/libs/card/lib/es6/index.d.js +2 -0
- package/libs/card/lib/es6/index.d.js.map +1 -0
- package/libs/card/lib/es6/index.js +2 -0
- package/libs/card/lib/es6/index.js.map +1 -0
- package/libs/card/lib/types/index.d.ts +22 -0
- package/libs/carousel/lib/cjs/Carousel.js +692 -0
- package/libs/carousel/lib/cjs/Carousel.js.map +1 -0
- package/libs/carousel/lib/cjs/Carousel.types.js +2 -0
- package/libs/carousel/lib/cjs/Carousel.types.js.map +1 -0
- package/libs/carousel/lib/cjs/index.js +14 -0
- package/libs/carousel/lib/cjs/index.js.map +1 -0
- package/libs/carousel/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/carousel/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/carousel/lib/cjs/translations/de.json +4 -0
- package/libs/carousel/lib/cjs/translations/en.json +4 -0
- package/libs/carousel/lib/cjs/translations/es.json +4 -0
- package/libs/carousel/lib/cjs/translations/fr.json +4 -0
- package/libs/carousel/lib/cjs/translations/it.json +4 -0
- package/libs/carousel/lib/cjs/translations/ja.json +4 -0
- package/libs/carousel/lib/cjs/translations/ko.json +4 -0
- package/libs/carousel/lib/cjs/translations/nl.json +4 -0
- package/libs/carousel/lib/cjs/translations/pl.json +4 -0
- package/libs/carousel/lib/cjs/translations/pt.json +4 -0
- package/libs/carousel/lib/cjs/translations/sv.json +4 -0
- package/libs/carousel/lib/cjs/translations/tr.json +4 -0
- package/libs/carousel/lib/cjs/translations/vi.json +4 -0
- package/libs/carousel/lib/cjs/translations/zh.json +4 -0
- package/libs/carousel/lib/es6/Carousel.js +693 -0
- package/libs/carousel/lib/es6/Carousel.js.map +1 -0
- package/libs/carousel/lib/es6/Carousel.types.js +2 -0
- package/libs/carousel/lib/es6/Carousel.types.js.map +1 -0
- package/libs/carousel/lib/es6/index.js +2 -0
- package/libs/carousel/lib/es6/index.js.map +1 -0
- package/libs/carousel/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/carousel/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/carousel/lib/es6/translations/de.json +4 -0
- package/libs/carousel/lib/es6/translations/en.json +4 -0
- package/libs/carousel/lib/es6/translations/es.json +4 -0
- package/libs/carousel/lib/es6/translations/fr.json +4 -0
- package/libs/carousel/lib/es6/translations/it.json +4 -0
- package/libs/carousel/lib/es6/translations/ja.json +4 -0
- package/libs/carousel/lib/es6/translations/ko.json +4 -0
- package/libs/carousel/lib/es6/translations/nl.json +4 -0
- package/libs/carousel/lib/es6/translations/pl.json +4 -0
- package/libs/carousel/lib/es6/translations/pt.json +4 -0
- package/libs/carousel/lib/es6/translations/sv.json +4 -0
- package/libs/carousel/lib/es6/translations/tr.json +4 -0
- package/libs/carousel/lib/es6/translations/vi.json +4 -0
- package/libs/carousel/lib/es6/translations/zh.json +4 -0
- package/libs/checkbox/lib/cjs/Checkbox.js +298 -0
- package/libs/checkbox/lib/cjs/Checkbox.js.map +1 -0
- package/libs/checkbox/lib/cjs/index.d.js +2 -0
- package/libs/checkbox/lib/cjs/index.d.js.map +1 -0
- package/libs/checkbox/lib/cjs/index.js +26 -0
- package/libs/checkbox/lib/cjs/index.js.map +1 -0
- package/libs/checkbox/lib/es6/Checkbox.js +289 -0
- package/libs/checkbox/lib/es6/Checkbox.js.map +1 -0
- package/libs/checkbox/lib/es6/index.d.js +2 -0
- package/libs/checkbox/lib/es6/index.d.js.map +1 -0
- package/libs/checkbox/lib/es6/index.js +3 -0
- package/libs/checkbox/lib/es6/index.js.map +1 -0
- package/libs/checkbox/lib/types/index.d.ts +106 -0
- package/libs/color-picker/lib/cjs/ColorPicker.js +250 -0
- package/libs/color-picker/lib/cjs/ColorPicker.js.map +1 -0
- package/libs/color-picker/lib/cjs/PaletteManager.js +166 -0
- package/libs/color-picker/lib/cjs/PaletteManager.js.map +1 -0
- package/libs/color-picker/lib/cjs/components/InputColor.js +190 -0
- package/libs/color-picker/lib/cjs/components/InputColor.js.map +1 -0
- package/libs/color-picker/lib/cjs/components/Item.js +61 -0
- package/libs/color-picker/lib/cjs/components/Item.js.map +1 -0
- package/libs/color-picker/lib/cjs/components/colors.js +59 -0
- package/libs/color-picker/lib/cjs/components/colors.js.map +1 -0
- package/libs/color-picker/lib/cjs/components/index.js +40 -0
- package/libs/color-picker/lib/cjs/components/index.js.map +1 -0
- package/libs/color-picker/lib/cjs/index.d.js +2 -0
- package/libs/color-picker/lib/cjs/index.d.js.map +1 -0
- package/libs/color-picker/lib/cjs/index.js +26 -0
- package/libs/color-picker/lib/cjs/index.js.map +1 -0
- package/libs/color-picker/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/color-picker/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/color-picker/lib/cjs/translations/de.json +13 -0
- package/libs/color-picker/lib/cjs/translations/en.json +13 -0
- package/libs/color-picker/lib/cjs/translations/es.json +13 -0
- package/libs/color-picker/lib/cjs/translations/fr.json +13 -0
- package/libs/color-picker/lib/cjs/translations/it.json +13 -0
- package/libs/color-picker/lib/cjs/translations/ja.json +13 -0
- package/libs/color-picker/lib/cjs/translations/ko.json +13 -0
- package/libs/color-picker/lib/cjs/translations/nl.json +13 -0
- package/libs/color-picker/lib/cjs/translations/pl.json +13 -0
- package/libs/color-picker/lib/cjs/translations/pt.json +13 -0
- package/libs/color-picker/lib/cjs/translations/sv.json +13 -0
- package/libs/color-picker/lib/cjs/translations/tr.json +13 -0
- package/libs/color-picker/lib/cjs/translations/vi.json +13 -0
- package/libs/color-picker/lib/cjs/translations/zh.json +13 -0
- package/libs/color-picker/lib/es6/ColorPicker.js +242 -0
- package/libs/color-picker/lib/es6/ColorPicker.js.map +1 -0
- package/libs/color-picker/lib/es6/PaletteManager.js +159 -0
- package/libs/color-picker/lib/es6/PaletteManager.js.map +1 -0
- package/libs/color-picker/lib/es6/components/InputColor.js +183 -0
- package/libs/color-picker/lib/es6/components/InputColor.js.map +1 -0
- package/libs/color-picker/lib/es6/components/Item.js +55 -0
- package/libs/color-picker/lib/es6/components/Item.js.map +1 -0
- package/libs/color-picker/lib/es6/components/colors.js +52 -0
- package/libs/color-picker/lib/es6/components/colors.js.map +1 -0
- package/libs/color-picker/lib/es6/components/index.js +4 -0
- package/libs/color-picker/lib/es6/components/index.js.map +1 -0
- package/libs/color-picker/lib/es6/index.d.js +2 -0
- package/libs/color-picker/lib/es6/index.d.js.map +1 -0
- package/libs/color-picker/lib/es6/index.js +3 -0
- package/libs/color-picker/lib/es6/index.js.map +1 -0
- package/libs/color-picker/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/color-picker/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/color-picker/lib/es6/translations/de.json +13 -0
- package/libs/color-picker/lib/es6/translations/en.json +13 -0
- package/libs/color-picker/lib/es6/translations/es.json +13 -0
- package/libs/color-picker/lib/es6/translations/fr.json +13 -0
- package/libs/color-picker/lib/es6/translations/it.json +13 -0
- package/libs/color-picker/lib/es6/translations/ja.json +13 -0
- package/libs/color-picker/lib/es6/translations/ko.json +13 -0
- package/libs/color-picker/lib/es6/translations/nl.json +13 -0
- package/libs/color-picker/lib/es6/translations/pl.json +13 -0
- package/libs/color-picker/lib/es6/translations/pt.json +13 -0
- package/libs/color-picker/lib/es6/translations/sv.json +13 -0
- package/libs/color-picker/lib/es6/translations/tr.json +13 -0
- package/libs/color-picker/lib/es6/translations/vi.json +13 -0
- package/libs/color-picker/lib/es6/translations/zh.json +13 -0
- package/libs/color-picker/lib/types/ColorPicker.d.ts +28 -0
- package/libs/color-picker/lib/types/PaletteManager.d.ts +253 -0
- package/libs/color-picker/lib/types/components/InputColor.d.ts +3 -0
- package/libs/color-picker/lib/types/components/Item.d.ts +18 -0
- package/libs/color-picker/lib/types/components/colors.d.ts +15 -0
- package/libs/color-picker/lib/types/components/index.d.ts +3 -0
- package/libs/color-picker/lib/types/translations/__intergalactic-dynamic-locales.d.ts +184 -0
- package/libs/core/lib/cjs/Component.js +54 -0
- package/libs/core/lib/cjs/Component.js.map +1 -0
- package/libs/core/lib/cjs/enhancement/Children.js +121 -0
- package/libs/core/lib/cjs/enhancement/Children.js.map +1 -0
- package/libs/core/lib/cjs/enhancement/Root.js +78 -0
- package/libs/core/lib/cjs/enhancement/Root.js.map +1 -0
- package/libs/core/lib/cjs/enhancement/bindHandler.js +54 -0
- package/libs/core/lib/cjs/enhancement/bindHandler.js.map +1 -0
- package/libs/core/lib/cjs/enhancement/dataName.js +20 -0
- package/libs/core/lib/cjs/enhancement/dataName.js.map +1 -0
- package/libs/core/lib/cjs/enhancement/enhance.js +22 -0
- package/libs/core/lib/cjs/enhancement/enhance.js.map +1 -0
- package/libs/core/lib/cjs/enhancement/functionDefaultProps.js +36 -0
- package/libs/core/lib/cjs/enhancement/functionDefaultProps.js.map +1 -0
- package/libs/core/lib/cjs/enhancement/hoistProps.js +102 -0
- package/libs/core/lib/cjs/enhancement/hoistProps.js.map +1 -0
- package/libs/core/lib/cjs/enhancement/i18n.js +28 -0
- package/libs/core/lib/cjs/enhancement/i18n.js.map +1 -0
- package/libs/core/lib/cjs/enhancement/inheritedName.js +24 -0
- package/libs/core/lib/cjs/enhancement/inheritedName.js.map +1 -0
- package/libs/core/lib/cjs/enhancement/staticChildren.js +141 -0
- package/libs/core/lib/cjs/enhancement/staticChildren.js.map +1 -0
- package/libs/core/lib/cjs/enhancement/style.js +60 -0
- package/libs/core/lib/cjs/enhancement/style.js.map +1 -0
- package/libs/core/lib/cjs/enhancement/uncontrolledProps.js +135 -0
- package/libs/core/lib/cjs/enhancement/uncontrolledProps.js.map +1 -0
- package/libs/core/lib/cjs/index.js +443 -0
- package/libs/core/lib/cjs/index.js.map +1 -0
- package/libs/core/lib/cjs/register.js +37 -0
- package/libs/core/lib/cjs/register.js.map +1 -0
- package/libs/core/lib/cjs/reshadow.d.js +2 -0
- package/libs/core/lib/cjs/reshadow.d.js.map +1 -0
- package/libs/core/lib/cjs/styled/index.js +54 -0
- package/libs/core/lib/cjs/styled/index.js.map +1 -0
- package/libs/core/lib/cjs/styled/sstyled.js +150 -0
- package/libs/core/lib/cjs/styled/sstyled.js.map +1 -0
- package/libs/core/lib/es6/Component.js +47 -0
- package/libs/core/lib/es6/Component.js.map +1 -0
- package/libs/core/lib/es6/enhancement/Children.js +112 -0
- package/libs/core/lib/es6/enhancement/Children.js.map +1 -0
- package/libs/core/lib/es6/enhancement/Root.js +72 -0
- package/libs/core/lib/es6/enhancement/Root.js.map +1 -0
- package/libs/core/lib/es6/enhancement/bindHandler.js +47 -0
- package/libs/core/lib/es6/enhancement/bindHandler.js.map +1 -0
- package/libs/core/lib/es6/enhancement/dataName.js +12 -0
- package/libs/core/lib/es6/enhancement/dataName.js.map +1 -0
- package/libs/core/lib/es6/enhancement/enhance.js +15 -0
- package/libs/core/lib/es6/enhancement/enhance.js.map +1 -0
- package/libs/core/lib/es6/enhancement/functionDefaultProps.js +29 -0
- package/libs/core/lib/es6/enhancement/functionDefaultProps.js.map +1 -0
- package/libs/core/lib/es6/enhancement/hoistProps.js +90 -0
- package/libs/core/lib/es6/enhancement/hoistProps.js.map +1 -0
- package/libs/core/lib/es6/enhancement/i18n.js +21 -0
- package/libs/core/lib/es6/enhancement/i18n.js.map +1 -0
- package/libs/core/lib/es6/enhancement/inheritedName.js +15 -0
- package/libs/core/lib/es6/enhancement/inheritedName.js.map +1 -0
- package/libs/core/lib/es6/enhancement/staticChildren.js +126 -0
- package/libs/core/lib/es6/enhancement/staticChildren.js.map +1 -0
- package/libs/core/lib/es6/enhancement/style.js +52 -0
- package/libs/core/lib/es6/enhancement/style.js.map +1 -0
- package/libs/core/lib/es6/enhancement/uncontrolledProps.js +125 -0
- package/libs/core/lib/es6/enhancement/uncontrolledProps.js.map +1 -0
- package/libs/core/lib/es6/index.js +357 -0
- package/libs/core/lib/es6/index.js.map +1 -0
- package/libs/core/lib/es6/register.js +29 -0
- package/libs/core/lib/es6/register.js.map +1 -0
- package/libs/core/lib/es6/reshadow.d.js +2 -0
- package/libs/core/lib/es6/reshadow.d.js.map +1 -0
- package/libs/core/lib/es6/styled/index.js +10 -0
- package/libs/core/lib/es6/styled/index.js.map +1 -0
- package/libs/core/lib/es6/styled/sstyled.js +143 -0
- package/libs/core/lib/es6/styled/sstyled.js.map +1 -0
- package/libs/core/lib/types/Component.d.ts +139 -0
- package/libs/core/lib/types/enhancement/Children.d.ts +6 -0
- package/libs/core/lib/types/enhancement/Root.d.ts +6 -0
- package/libs/core/lib/types/enhancement/bindHandler.d.ts +5 -0
- package/libs/core/lib/types/enhancement/dataName.d.ts +4 -0
- package/libs/core/lib/types/enhancement/enhance.d.ts +5 -0
- package/libs/core/lib/types/enhancement/functionDefaultProps.d.ts +8 -0
- package/libs/core/lib/types/enhancement/hoistProps.d.ts +10 -0
- package/libs/core/lib/types/enhancement/i18n.d.ts +4 -0
- package/libs/core/lib/types/enhancement/inheritedName.d.ts +8 -0
- package/libs/core/lib/types/enhancement/staticChildren.d.ts +13 -0
- package/libs/core/lib/types/enhancement/style.d.ts +9 -0
- package/libs/core/lib/types/enhancement/uncontrolledProps.d.ts +7 -0
- package/libs/core/lib/types/index.d.ts +41 -0
- package/libs/core/lib/types/register.d.ts +8 -0
- package/libs/core/lib/types/styled/index.d.ts +14 -0
- package/libs/core/lib/types/styled/sstyled.d.ts +17 -0
- package/libs/counter/lib/cjs/AnimatedNumber.js +76 -0
- package/libs/counter/lib/cjs/AnimatedNumber.js.map +1 -0
- package/libs/counter/lib/cjs/Counter.js +79 -0
- package/libs/counter/lib/cjs/Counter.js.map +1 -0
- package/libs/counter/lib/cjs/index.d.js +2 -0
- package/libs/counter/lib/cjs/index.d.js.map +1 -0
- package/libs/counter/lib/cjs/index.js +20 -0
- package/libs/counter/lib/cjs/index.js.map +1 -0
- package/libs/counter/lib/es6/AnimatedNumber.js +68 -0
- package/libs/counter/lib/es6/AnimatedNumber.js.map +1 -0
- package/libs/counter/lib/es6/Counter.js +60 -0
- package/libs/counter/lib/es6/Counter.js.map +1 -0
- package/libs/counter/lib/es6/index.d.js +2 -0
- package/libs/counter/lib/es6/index.d.js.map +1 -0
- package/libs/counter/lib/es6/index.js +2 -0
- package/libs/counter/lib/es6/index.js.map +1 -0
- package/libs/counter/lib/types/index.d.ts +32 -0
- package/libs/d3-chart/lib/cjs/Area.js +236 -0
- package/libs/d3-chart/lib/cjs/Area.js.map +1 -0
- package/libs/d3-chart/lib/cjs/Axis.js +468 -0
- package/libs/d3-chart/lib/cjs/Axis.js.map +1 -0
- package/libs/d3-chart/lib/cjs/Bar.js +221 -0
- package/libs/d3-chart/lib/cjs/Bar.js.map +1 -0
- package/libs/d3-chart/lib/cjs/Bubble.js +235 -0
- package/libs/d3-chart/lib/cjs/Bubble.js.map +1 -0
- package/libs/d3-chart/lib/cjs/ClipPath.js +94 -0
- package/libs/d3-chart/lib/cjs/ClipPath.js.map +1 -0
- package/libs/d3-chart/lib/cjs/Donut.js +490 -0
- package/libs/d3-chart/lib/cjs/Donut.js.map +1 -0
- package/libs/d3-chart/lib/cjs/Dots.js +116 -0
- package/libs/d3-chart/lib/cjs/Dots.js.map +1 -0
- package/libs/d3-chart/lib/cjs/GroupBar.js +111 -0
- package/libs/d3-chart/lib/cjs/GroupBar.js.map +1 -0
- package/libs/d3-chart/lib/cjs/HorizontalBar.js +200 -0
- package/libs/d3-chart/lib/cjs/HorizontalBar.js.map +1 -0
- package/libs/d3-chart/lib/cjs/Hover.js +252 -0
- package/libs/d3-chart/lib/cjs/Hover.js.map +1 -0
- package/libs/d3-chart/lib/cjs/Line.js +231 -0
- package/libs/d3-chart/lib/cjs/Line.js.map +1 -0
- package/libs/d3-chart/lib/cjs/Plot.js +155 -0
- package/libs/d3-chart/lib/cjs/Plot.js.map +1 -0
- package/libs/d3-chart/lib/cjs/Radar.js +817 -0
- package/libs/d3-chart/lib/cjs/Radar.js.map +1 -0
- package/libs/d3-chart/lib/cjs/RadialTree.js +663 -0
- package/libs/d3-chart/lib/cjs/RadialTree.js.map +1 -0
- package/libs/d3-chart/lib/cjs/ReferenceLine.js +239 -0
- package/libs/d3-chart/lib/cjs/ReferenceLine.js.map +1 -0
- package/libs/d3-chart/lib/cjs/ResponsiveContainer.js +116 -0
- package/libs/d3-chart/lib/cjs/ResponsiveContainer.js.map +1 -0
- package/libs/d3-chart/lib/cjs/ScatterPlot.js +205 -0
- package/libs/d3-chart/lib/cjs/ScatterPlot.js.map +1 -0
- package/libs/d3-chart/lib/cjs/StackBar.js +197 -0
- package/libs/d3-chart/lib/cjs/StackBar.js.map +1 -0
- package/libs/d3-chart/lib/cjs/StackedArea.js +94 -0
- package/libs/d3-chart/lib/cjs/StackedArea.js.map +1 -0
- package/libs/d3-chart/lib/cjs/Tooltip.js +233 -0
- package/libs/d3-chart/lib/cjs/Tooltip.js.map +1 -0
- package/libs/d3-chart/lib/cjs/Venn.js +240 -0
- package/libs/d3-chart/lib/cjs/Venn.js.map +1 -0
- package/libs/d3-chart/lib/cjs/a11y/PlotA11yModule.js +133 -0
- package/libs/d3-chart/lib/cjs/a11y/PlotA11yModule.js.map +1 -0
- package/libs/d3-chart/lib/cjs/a11y/PlotA11yView.js +229 -0
- package/libs/d3-chart/lib/cjs/a11y/PlotA11yView.js.map +1 -0
- package/libs/d3-chart/lib/cjs/a11y/bezier.js +37 -0
- package/libs/d3-chart/lib/cjs/a11y/bezier.js.map +1 -0
- package/libs/d3-chart/lib/cjs/a11y/focus.js +45 -0
- package/libs/d3-chart/lib/cjs/a11y/focus.js.map +1 -0
- package/libs/d3-chart/lib/cjs/a11y/hints.js +128 -0
- package/libs/d3-chart/lib/cjs/a11y/hints.js.map +1 -0
- package/libs/d3-chart/lib/cjs/a11y/insights.js +722 -0
- package/libs/d3-chart/lib/cjs/a11y/insights.js.map +1 -0
- package/libs/d3-chart/lib/cjs/a11y/intl.js +22 -0
- package/libs/d3-chart/lib/cjs/a11y/intl.js.map +1 -0
- package/libs/d3-chart/lib/cjs/a11y/locale.js +49 -0
- package/libs/d3-chart/lib/cjs/a11y/locale.js.map +1 -0
- package/libs/d3-chart/lib/cjs/a11y/serialize.js +381 -0
- package/libs/d3-chart/lib/cjs/a11y/serialize.js.map +1 -0
- package/libs/d3-chart/lib/cjs/a11y/summarize.js +19 -0
- package/libs/d3-chart/lib/cjs/a11y/summarize.js.map +1 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/module/__intergalactic-dynamic-locales.js +39 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/module/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/module/de.json +5 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/module/en.json +5 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/module/es.json +5 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/module/fr.json +5 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/module/it.json +5 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/module/ja.json +5 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/module/ko.json +5 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/module/nl.json +5 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/module/pl.json +5 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/module/pt.json +5 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/module/sv.json +5 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/module/tr.json +5 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/module/vi.json +5 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/module/zh.json +5 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/view/__intergalactic-dynamic-locales.js +39 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/view/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/view/de.json +43 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/view/en.csv +42 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/view/en.json +43 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/view/es.json +43 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/view/fr.json +43 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/view/it.json +43 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/view/ja.json +43 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/view/ko.json +43 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/view/nl.json +43 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/view/pl.json +43 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/view/pt.json +43 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/view/sv.json +43 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/view/tr.json +43 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/view/vi.json +43 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/view/zh.json +43 -0
- package/libs/d3-chart/lib/cjs/color.js +133 -0
- package/libs/d3-chart/lib/cjs/color.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/AbstractChart.js +420 -0
- package/libs/d3-chart/lib/cjs/component/Chart/AbstractChart.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/AbstractChart.type.js +2 -0
- package/libs/d3-chart/lib/cjs/component/Chart/AbstractChart.type.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/AreaChart.js +160 -0
- package/libs/d3-chart/lib/cjs/component/Chart/AreaChart.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/AreaChart.type.js +2 -0
- package/libs/d3-chart/lib/cjs/component/Chart/AreaChart.type.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/BarChart.js +253 -0
- package/libs/d3-chart/lib/cjs/component/Chart/BarChart.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/BarChart.type.js +2 -0
- package/libs/d3-chart/lib/cjs/component/Chart/BarChart.type.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/BubbleChart.js +145 -0
- package/libs/d3-chart/lib/cjs/component/Chart/BubbleChart.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/BubbleChart.type.js +2 -0
- package/libs/d3-chart/lib/cjs/component/Chart/BubbleChart.type.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/DonutChart.js +117 -0
- package/libs/d3-chart/lib/cjs/component/Chart/DonutChart.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/DonutChart.type.js +2 -0
- package/libs/d3-chart/lib/cjs/component/Chart/DonutChart.type.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/HistogramChart.js +189 -0
- package/libs/d3-chart/lib/cjs/component/Chart/HistogramChart.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/HistogramChart.type.js +2 -0
- package/libs/d3-chart/lib/cjs/component/Chart/HistogramChart.type.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/LineChart.js +147 -0
- package/libs/d3-chart/lib/cjs/component/Chart/LineChart.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/LineChart.type.js +2 -0
- package/libs/d3-chart/lib/cjs/component/Chart/LineChart.type.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/RadarChart.js +121 -0
- package/libs/d3-chart/lib/cjs/component/Chart/RadarChart.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/RadarChart.type.js +2 -0
- package/libs/d3-chart/lib/cjs/component/Chart/RadarChart.type.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/ScatterPlotChart.js +159 -0
- package/libs/d3-chart/lib/cjs/component/Chart/ScatterPlotChart.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/ScatterPlotChart.type.js +2 -0
- package/libs/d3-chart/lib/cjs/component/Chart/ScatterPlotChart.type.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/VennChart.js +144 -0
- package/libs/d3-chart/lib/cjs/component/Chart/VennChart.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/VennChart.type.js +2 -0
- package/libs/d3-chart/lib/cjs/component/Chart/VennChart.type.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/index.js +28 -0
- package/libs/d3-chart/lib/cjs/component/Chart/index.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/ChartLegend/BaseLegend.js +108 -0
- package/libs/d3-chart/lib/cjs/component/ChartLegend/BaseLegend.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/ChartLegend/BaseLegend.type.js +2 -0
- package/libs/d3-chart/lib/cjs/component/ChartLegend/BaseLegend.type.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendFlex/LegendFlex.js +93 -0
- package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendFlex/LegendFlex.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendFlex/LegendFlex.type.js +2 -0
- package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendFlex/LegendFlex.type.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendItem/LegendItem.js +233 -0
- package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendItem/LegendItem.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendItem/LegendItem.type.js +13 -0
- package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendItem/LegendItem.type.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendTable/LegendTable.js +99 -0
- package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendTable/LegendTable.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendTable/LegendTable.type.js +2 -0
- package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendTable/LegendTable.type.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/ChartLegend/index.js +23 -0
- package/libs/d3-chart/lib/cjs/component/ChartLegend/index.js.map +1 -0
- package/libs/d3-chart/lib/cjs/createElement.d.js +2 -0
- package/libs/d3-chart/lib/cjs/createElement.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/createElement.js +128 -0
- package/libs/d3-chart/lib/cjs/createElement.js.map +1 -0
- package/libs/d3-chart/lib/cjs/index.js +206 -0
- package/libs/d3-chart/lib/cjs/index.js.map +1 -0
- package/libs/d3-chart/lib/cjs/style/var.css +125 -0
- package/libs/d3-chart/lib/cjs/translations/__intergalactic-dynamic-locales.js +37 -0
- package/libs/d3-chart/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/d3-chart/lib/cjs/translations/de.json +3 -0
- package/libs/d3-chart/lib/cjs/translations/en.json +3 -0
- package/libs/d3-chart/lib/cjs/translations/es.json +3 -0
- package/libs/d3-chart/lib/cjs/translations/fr.json +3 -0
- package/libs/d3-chart/lib/cjs/translations/it.json +3 -0
- package/libs/d3-chart/lib/cjs/translations/ja.json +3 -0
- package/libs/d3-chart/lib/cjs/translations/ko.json +3 -0
- package/libs/d3-chart/lib/cjs/translations/nl.json +3 -0
- package/libs/d3-chart/lib/cjs/translations/pl.json +3 -0
- package/libs/d3-chart/lib/cjs/translations/pt.json +3 -0
- package/libs/d3-chart/lib/cjs/translations/sv.json +3 -0
- package/libs/d3-chart/lib/cjs/translations/tr.json +3 -0
- package/libs/d3-chart/lib/cjs/translations/vi.json +3 -0
- package/libs/d3-chart/lib/cjs/translations/zh.json +3 -0
- package/libs/d3-chart/lib/cjs/types/Area.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/Area.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/Axis.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/Axis.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/Bar.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/Bar.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/Bubble.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/Bubble.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/ClipPath.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/ClipPath.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/Donut.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/Donut.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/GroupBar.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/GroupBar.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/HorizontalBar.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/HorizontalBar.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/Hover.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/Hover.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/Line.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/Line.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/Plot.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/Plot.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/Radar.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/Radar.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/ReferenceLine.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/ReferenceLine.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/ResponsiveContainer.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/ResponsiveContainer.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/ScatterPlot.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/ScatterPlot.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/StackBar.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/StackBar.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/StackedArea.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/StackedArea.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/Tooltip.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/Tooltip.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/Venn.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/Venn.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/context.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/context.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/index.d.js +544 -0
- package/libs/d3-chart/lib/cjs/types/index.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/utils.js +211 -0
- package/libs/d3-chart/lib/cjs/utils.js.map +1 -0
- package/libs/d3-chart/lib/es6/Area.js +229 -0
- package/libs/d3-chart/lib/es6/Area.js.map +1 -0
- package/libs/d3-chart/lib/es6/Axis.js +461 -0
- package/libs/d3-chart/lib/es6/Axis.js.map +1 -0
- package/libs/d3-chart/lib/es6/Bar.js +213 -0
- package/libs/d3-chart/lib/es6/Bar.js.map +1 -0
- package/libs/d3-chart/lib/es6/Bubble.js +229 -0
- package/libs/d3-chart/lib/es6/Bubble.js.map +1 -0
- package/libs/d3-chart/lib/es6/ClipPath.js +85 -0
- package/libs/d3-chart/lib/es6/ClipPath.js.map +1 -0
- package/libs/d3-chart/lib/es6/Donut.js +484 -0
- package/libs/d3-chart/lib/es6/Donut.js.map +1 -0
- package/libs/d3-chart/lib/es6/Dots.js +109 -0
- package/libs/d3-chart/lib/es6/Dots.js.map +1 -0
- package/libs/d3-chart/lib/es6/GroupBar.js +103 -0
- package/libs/d3-chart/lib/es6/GroupBar.js.map +1 -0
- package/libs/d3-chart/lib/es6/HorizontalBar.js +192 -0
- package/libs/d3-chart/lib/es6/HorizontalBar.js.map +1 -0
- package/libs/d3-chart/lib/es6/Hover.js +247 -0
- package/libs/d3-chart/lib/es6/Hover.js.map +1 -0
- package/libs/d3-chart/lib/es6/Line.js +223 -0
- package/libs/d3-chart/lib/es6/Line.js.map +1 -0
- package/libs/d3-chart/lib/es6/Plot.js +148 -0
- package/libs/d3-chart/lib/es6/Plot.js.map +1 -0
- package/libs/d3-chart/lib/es6/Radar.js +809 -0
- package/libs/d3-chart/lib/es6/Radar.js.map +1 -0
- package/libs/d3-chart/lib/es6/RadialTree.js +656 -0
- package/libs/d3-chart/lib/es6/RadialTree.js.map +1 -0
- package/libs/d3-chart/lib/es6/ReferenceLine.js +232 -0
- package/libs/d3-chart/lib/es6/ReferenceLine.js.map +1 -0
- package/libs/d3-chart/lib/es6/ResponsiveContainer.js +108 -0
- package/libs/d3-chart/lib/es6/ResponsiveContainer.js.map +1 -0
- package/libs/d3-chart/lib/es6/ScatterPlot.js +199 -0
- package/libs/d3-chart/lib/es6/ScatterPlot.js.map +1 -0
- package/libs/d3-chart/lib/es6/StackBar.js +188 -0
- package/libs/d3-chart/lib/es6/StackBar.js.map +1 -0
- package/libs/d3-chart/lib/es6/StackedArea.js +86 -0
- package/libs/d3-chart/lib/es6/StackedArea.js.map +1 -0
- package/libs/d3-chart/lib/es6/Tooltip.js +230 -0
- package/libs/d3-chart/lib/es6/Tooltip.js.map +1 -0
- package/libs/d3-chart/lib/es6/Venn.js +234 -0
- package/libs/d3-chart/lib/es6/Venn.js.map +1 -0
- package/libs/d3-chart/lib/es6/a11y/PlotA11yModule.js +126 -0
- package/libs/d3-chart/lib/es6/a11y/PlotA11yModule.js.map +1 -0
- package/libs/d3-chart/lib/es6/a11y/PlotA11yView.js +223 -0
- package/libs/d3-chart/lib/es6/a11y/PlotA11yView.js.map +1 -0
- package/libs/d3-chart/lib/es6/a11y/bezier.js +30 -0
- package/libs/d3-chart/lib/es6/a11y/bezier.js.map +1 -0
- package/libs/d3-chart/lib/es6/a11y/focus.js +38 -0
- package/libs/d3-chart/lib/es6/a11y/focus.js.map +1 -0
- package/libs/d3-chart/lib/es6/a11y/hints.js +118 -0
- package/libs/d3-chart/lib/es6/a11y/hints.js.map +1 -0
- package/libs/d3-chart/lib/es6/a11y/insights.js +714 -0
- package/libs/d3-chart/lib/es6/a11y/insights.js.map +1 -0
- package/libs/d3-chart/lib/es6/a11y/intl.js +15 -0
- package/libs/d3-chart/lib/es6/a11y/intl.js.map +1 -0
- package/libs/d3-chart/lib/es6/a11y/locale.js +41 -0
- package/libs/d3-chart/lib/es6/a11y/locale.js.map +1 -0
- package/libs/d3-chart/lib/es6/a11y/serialize.js +372 -0
- package/libs/d3-chart/lib/es6/a11y/serialize.js.map +1 -0
- package/libs/d3-chart/lib/es6/a11y/summarize.js +12 -0
- package/libs/d3-chart/lib/es6/a11y/summarize.js.map +1 -0
- package/libs/d3-chart/lib/es6/a11y/translations/module/__intergalactic-dynamic-locales.js +31 -0
- package/libs/d3-chart/lib/es6/a11y/translations/module/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/d3-chart/lib/es6/a11y/translations/module/de.json +5 -0
- package/libs/d3-chart/lib/es6/a11y/translations/module/en.json +5 -0
- package/libs/d3-chart/lib/es6/a11y/translations/module/es.json +5 -0
- package/libs/d3-chart/lib/es6/a11y/translations/module/fr.json +5 -0
- package/libs/d3-chart/lib/es6/a11y/translations/module/it.json +5 -0
- package/libs/d3-chart/lib/es6/a11y/translations/module/ja.json +5 -0
- package/libs/d3-chart/lib/es6/a11y/translations/module/ko.json +5 -0
- package/libs/d3-chart/lib/es6/a11y/translations/module/nl.json +5 -0
- package/libs/d3-chart/lib/es6/a11y/translations/module/pl.json +5 -0
- package/libs/d3-chart/lib/es6/a11y/translations/module/pt.json +5 -0
- package/libs/d3-chart/lib/es6/a11y/translations/module/sv.json +5 -0
- package/libs/d3-chart/lib/es6/a11y/translations/module/tr.json +5 -0
- package/libs/d3-chart/lib/es6/a11y/translations/module/vi.json +5 -0
- package/libs/d3-chart/lib/es6/a11y/translations/module/zh.json +5 -0
- package/libs/d3-chart/lib/es6/a11y/translations/view/__intergalactic-dynamic-locales.js +31 -0
- package/libs/d3-chart/lib/es6/a11y/translations/view/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/d3-chart/lib/es6/a11y/translations/view/de.json +43 -0
- package/libs/d3-chart/lib/es6/a11y/translations/view/en.csv +42 -0
- package/libs/d3-chart/lib/es6/a11y/translations/view/en.json +43 -0
- package/libs/d3-chart/lib/es6/a11y/translations/view/es.json +43 -0
- package/libs/d3-chart/lib/es6/a11y/translations/view/fr.json +43 -0
- package/libs/d3-chart/lib/es6/a11y/translations/view/it.json +43 -0
- package/libs/d3-chart/lib/es6/a11y/translations/view/ja.json +43 -0
- package/libs/d3-chart/lib/es6/a11y/translations/view/ko.json +43 -0
- package/libs/d3-chart/lib/es6/a11y/translations/view/nl.json +43 -0
- package/libs/d3-chart/lib/es6/a11y/translations/view/pl.json +43 -0
- package/libs/d3-chart/lib/es6/a11y/translations/view/pt.json +43 -0
- package/libs/d3-chart/lib/es6/a11y/translations/view/sv.json +43 -0
- package/libs/d3-chart/lib/es6/a11y/translations/view/tr.json +43 -0
- package/libs/d3-chart/lib/es6/a11y/translations/view/vi.json +43 -0
- package/libs/d3-chart/lib/es6/a11y/translations/view/zh.json +43 -0
- package/libs/d3-chart/lib/es6/color.js +127 -0
- package/libs/d3-chart/lib/es6/color.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/AbstractChart.js +412 -0
- package/libs/d3-chart/lib/es6/component/Chart/AbstractChart.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/AbstractChart.type.js +2 -0
- package/libs/d3-chart/lib/es6/component/Chart/AbstractChart.type.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/AreaChart.js +152 -0
- package/libs/d3-chart/lib/es6/component/Chart/AreaChart.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/AreaChart.type.js +2 -0
- package/libs/d3-chart/lib/es6/component/Chart/AreaChart.type.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/BarChart.js +245 -0
- package/libs/d3-chart/lib/es6/component/Chart/BarChart.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/BarChart.type.js +2 -0
- package/libs/d3-chart/lib/es6/component/Chart/BarChart.type.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/BubbleChart.js +137 -0
- package/libs/d3-chart/lib/es6/component/Chart/BubbleChart.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/BubbleChart.type.js +2 -0
- package/libs/d3-chart/lib/es6/component/Chart/BubbleChart.type.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/DonutChart.js +109 -0
- package/libs/d3-chart/lib/es6/component/Chart/DonutChart.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/DonutChart.type.js +2 -0
- package/libs/d3-chart/lib/es6/component/Chart/DonutChart.type.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/HistogramChart.js +181 -0
- package/libs/d3-chart/lib/es6/component/Chart/HistogramChart.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/HistogramChart.type.js +2 -0
- package/libs/d3-chart/lib/es6/component/Chart/HistogramChart.type.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/LineChart.js +139 -0
- package/libs/d3-chart/lib/es6/component/Chart/LineChart.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/LineChart.type.js +2 -0
- package/libs/d3-chart/lib/es6/component/Chart/LineChart.type.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/RadarChart.js +113 -0
- package/libs/d3-chart/lib/es6/component/Chart/RadarChart.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/RadarChart.type.js +2 -0
- package/libs/d3-chart/lib/es6/component/Chart/RadarChart.type.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/ScatterPlotChart.js +151 -0
- package/libs/d3-chart/lib/es6/component/Chart/ScatterPlotChart.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/ScatterPlotChart.type.js +2 -0
- package/libs/d3-chart/lib/es6/component/Chart/ScatterPlotChart.type.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/VennChart.js +136 -0
- package/libs/d3-chart/lib/es6/component/Chart/VennChart.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/VennChart.type.js +2 -0
- package/libs/d3-chart/lib/es6/component/Chart/VennChart.type.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/index.js +21 -0
- package/libs/d3-chart/lib/es6/component/Chart/index.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/ChartLegend/BaseLegend.js +100 -0
- package/libs/d3-chart/lib/es6/component/ChartLegend/BaseLegend.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/ChartLegend/BaseLegend.type.js +2 -0
- package/libs/d3-chart/lib/es6/component/ChartLegend/BaseLegend.type.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/ChartLegend/LegendFlex/LegendFlex.js +86 -0
- package/libs/d3-chart/lib/es6/component/ChartLegend/LegendFlex/LegendFlex.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/ChartLegend/LegendFlex/LegendFlex.type.js +2 -0
- package/libs/d3-chart/lib/es6/component/ChartLegend/LegendFlex/LegendFlex.type.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/ChartLegend/LegendItem/LegendItem.js +231 -0
- package/libs/d3-chart/lib/es6/component/ChartLegend/LegendItem/LegendItem.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/ChartLegend/LegendItem/LegendItem.type.js +6 -0
- package/libs/d3-chart/lib/es6/component/ChartLegend/LegendItem/LegendItem.type.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/ChartLegend/LegendTable/LegendTable.js +93 -0
- package/libs/d3-chart/lib/es6/component/ChartLegend/LegendTable/LegendTable.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/ChartLegend/LegendTable/LegendTable.type.js +2 -0
- package/libs/d3-chart/lib/es6/component/ChartLegend/LegendTable/LegendTable.type.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/ChartLegend/index.js +5 -0
- package/libs/d3-chart/lib/es6/component/ChartLegend/index.js.map +1 -0
- package/libs/d3-chart/lib/es6/createElement.d.js +2 -0
- package/libs/d3-chart/lib/es6/createElement.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/createElement.js +119 -0
- package/libs/d3-chart/lib/es6/createElement.js.map +1 -0
- package/libs/d3-chart/lib/es6/index.js +25 -0
- package/libs/d3-chart/lib/es6/index.js.map +1 -0
- package/libs/d3-chart/lib/es6/style/var.css +125 -0
- package/libs/d3-chart/lib/es6/translations/__intergalactic-dynamic-locales.js +29 -0
- package/libs/d3-chart/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/d3-chart/lib/es6/translations/de.json +3 -0
- package/libs/d3-chart/lib/es6/translations/en.json +3 -0
- package/libs/d3-chart/lib/es6/translations/es.json +3 -0
- package/libs/d3-chart/lib/es6/translations/fr.json +3 -0
- package/libs/d3-chart/lib/es6/translations/it.json +3 -0
- package/libs/d3-chart/lib/es6/translations/ja.json +3 -0
- package/libs/d3-chart/lib/es6/translations/ko.json +3 -0
- package/libs/d3-chart/lib/es6/translations/nl.json +3 -0
- package/libs/d3-chart/lib/es6/translations/pl.json +3 -0
- package/libs/d3-chart/lib/es6/translations/pt.json +3 -0
- package/libs/d3-chart/lib/es6/translations/sv.json +3 -0
- package/libs/d3-chart/lib/es6/translations/tr.json +3 -0
- package/libs/d3-chart/lib/es6/translations/vi.json +3 -0
- package/libs/d3-chart/lib/es6/translations/zh.json +3 -0
- package/libs/d3-chart/lib/es6/types/Area.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/Area.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/Axis.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/Axis.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/Bar.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/Bar.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/Bubble.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/Bubble.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/ClipPath.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/ClipPath.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/Donut.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/Donut.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/GroupBar.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/GroupBar.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/HorizontalBar.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/HorizontalBar.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/Hover.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/Hover.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/Line.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/Line.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/Plot.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/Plot.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/Radar.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/Radar.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/ReferenceLine.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/ReferenceLine.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/ResponsiveContainer.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/ResponsiveContainer.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/ScatterPlot.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/ScatterPlot.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/StackBar.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/StackBar.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/StackedArea.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/StackedArea.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/Tooltip.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/Tooltip.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/Venn.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/Venn.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/context.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/context.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/index.d.js +75 -0
- package/libs/d3-chart/lib/es6/types/index.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/utils.js +189 -0
- package/libs/d3-chart/lib/es6/utils.js.map +1 -0
- package/libs/d3-chart/lib/types/Area.d.ts +61 -0
- package/libs/d3-chart/lib/types/Axis.d.ts +90 -0
- package/libs/d3-chart/lib/types/Bar.d.ts +80 -0
- package/libs/d3-chart/lib/types/Bubble.d.ts +53 -0
- package/libs/d3-chart/lib/types/ClipPath.d.ts +24 -0
- package/libs/d3-chart/lib/types/Donut.d.ts +67 -0
- package/libs/d3-chart/lib/types/GroupBar.d.ts +29 -0
- package/libs/d3-chart/lib/types/HorizontalBar.d.ts +35 -0
- package/libs/d3-chart/lib/types/Hover.d.ts +45 -0
- package/libs/d3-chart/lib/types/Line.d.ts +83 -0
- package/libs/d3-chart/lib/types/Plot.d.ts +118 -0
- package/libs/d3-chart/lib/types/Radar.d.ts +145 -0
- package/libs/d3-chart/lib/types/RadialTree.d.ts +240 -0
- package/libs/d3-chart/lib/types/ReferenceLine.d.ts +45 -0
- package/libs/d3-chart/lib/types/ResponsiveContainer.d.ts +29 -0
- package/libs/d3-chart/lib/types/ScatterPlot.d.ts +46 -0
- package/libs/d3-chart/lib/types/StackBar.d.ts +37 -0
- package/libs/d3-chart/lib/types/StackedArea.d.ts +31 -0
- package/libs/d3-chart/lib/types/Tooltip.d.ts +66 -0
- package/libs/d3-chart/lib/types/Venn.d.ts +68 -0
- package/libs/d3-chart/lib/types/a11y/PlotA11yModule.d.ts +12 -0
- package/libs/d3-chart/lib/types/a11y/PlotA11yView.d.ts +3 -0
- package/libs/d3-chart/lib/types/a11y/bezier.d.ts +8 -0
- package/libs/d3-chart/lib/types/a11y/focus.d.ts +5 -0
- package/libs/d3-chart/lib/types/a11y/hints.d.ts +79 -0
- package/libs/d3-chart/lib/types/a11y/insights.d.ts +55 -0
- package/libs/d3-chart/lib/types/a11y/intl.d.ts +8 -0
- package/libs/d3-chart/lib/types/a11y/locale.d.ts +3 -0
- package/libs/d3-chart/lib/types/a11y/serialize.d.ts +17 -0
- package/libs/d3-chart/lib/types/a11y/summarize.d.ts +6 -0
- package/libs/d3-chart/lib/types/a11y/translations/module/__intergalactic-dynamic-locales.d.ts +72 -0
- package/libs/d3-chart/lib/types/a11y/translations/view/__intergalactic-dynamic-locales.d.ts +604 -0
- package/libs/d3-chart/lib/types/component/Chart/AbstractChart.d.ts +50 -0
- package/libs/d3-chart/lib/types/component/Chart/AbstractChart.type.d.ts +161 -0
- package/libs/d3-chart/lib/types/component/Chart/AreaChart.d.ts +2 -0
- package/libs/d3-chart/lib/types/component/Chart/AreaChart.type.d.ts +16 -0
- package/libs/d3-chart/lib/types/component/Chart/BarChart.d.ts +2 -0
- package/libs/d3-chart/lib/types/component/Chart/BarChart.type.d.ts +19 -0
- package/libs/d3-chart/lib/types/component/Chart/BubbleChart.d.ts +2 -0
- package/libs/d3-chart/lib/types/component/Chart/BubbleChart.type.d.ts +17 -0
- package/libs/d3-chart/lib/types/component/Chart/DonutChart.d.ts +2 -0
- package/libs/d3-chart/lib/types/component/Chart/DonutChart.type.d.ts +15 -0
- package/libs/d3-chart/lib/types/component/Chart/HistogramChart.d.ts +2 -0
- package/libs/d3-chart/lib/types/component/Chart/HistogramChart.type.d.ts +11 -0
- package/libs/d3-chart/lib/types/component/Chart/LineChart.d.ts +2 -0
- package/libs/d3-chart/lib/types/component/Chart/LineChart.type.d.ts +24 -0
- package/libs/d3-chart/lib/types/component/Chart/RadarChart.d.ts +2 -0
- package/libs/d3-chart/lib/types/component/Chart/RadarChart.type.d.ts +14 -0
- package/libs/d3-chart/lib/types/component/Chart/ScatterPlotChart.d.ts +2 -0
- package/libs/d3-chart/lib/types/component/Chart/ScatterPlotChart.type.d.ts +13 -0
- package/libs/d3-chart/lib/types/component/Chart/VennChart.d.ts +2 -0
- package/libs/d3-chart/lib/types/component/Chart/VennChart.type.d.ts +11 -0
- package/libs/d3-chart/lib/types/component/Chart/index.d.ts +12 -0
- package/libs/d3-chart/lib/types/component/ChartLegend/BaseLegend.d.ts +14 -0
- package/libs/d3-chart/lib/types/component/ChartLegend/BaseLegend.type.d.ts +27 -0
- package/libs/d3-chart/lib/types/component/ChartLegend/LegendFlex/LegendFlex.d.ts +2 -0
- package/libs/d3-chart/lib/types/component/ChartLegend/LegendFlex/LegendFlex.type.d.ts +38 -0
- package/libs/d3-chart/lib/types/component/ChartLegend/LegendItem/LegendItem.d.ts +2 -0
- package/libs/d3-chart/lib/types/component/ChartLegend/LegendItem/LegendItem.type.d.ts +67 -0
- package/libs/d3-chart/lib/types/component/ChartLegend/LegendTable/LegendTable.d.ts +2 -0
- package/libs/d3-chart/lib/types/component/ChartLegend/LegendTable/LegendTable.type.d.ts +21 -0
- package/libs/d3-chart/lib/types/component/ChartLegend/index.d.ts +4 -0
- package/libs/d3-chart/lib/types/context.d.ts +18 -0
- package/libs/d3-chart/lib/types/createElement.d.ts +2 -0
- package/libs/d3-chart/lib/types/index.d.ts +94 -0
- package/libs/d3-chart/lib/types/translations/__intergalactic-dynamic-locales.d.ts +41 -0
- package/libs/d3-chart/lib/types/utils.d.ts +32 -0
- package/libs/data-table/lib/cjs/Body.js +386 -0
- package/libs/data-table/lib/cjs/Body.js.map +1 -0
- package/libs/data-table/lib/cjs/DataTable.js +429 -0
- package/libs/data-table/lib/cjs/DataTable.js.map +1 -0
- package/libs/data-table/lib/cjs/Head.js +189 -0
- package/libs/data-table/lib/cjs/Head.js.map +1 -0
- package/libs/data-table/lib/cjs/index.js +26 -0
- package/libs/data-table/lib/cjs/index.js.map +1 -0
- package/libs/data-table/lib/cjs/types.js +4 -0
- package/libs/data-table/lib/cjs/types.js.map +1 -0
- package/libs/data-table/lib/cjs/utils.js +57 -0
- package/libs/data-table/lib/cjs/utils.js.map +1 -0
- package/libs/data-table/lib/es6/Body.js +379 -0
- package/libs/data-table/lib/es6/Body.js.map +1 -0
- package/libs/data-table/lib/es6/DataTable.js +422 -0
- package/libs/data-table/lib/es6/DataTable.js.map +1 -0
- package/libs/data-table/lib/es6/Head.js +183 -0
- package/libs/data-table/lib/es6/Head.js.map +1 -0
- package/libs/data-table/lib/es6/index.js +3 -0
- package/libs/data-table/lib/es6/index.js.map +1 -0
- package/libs/data-table/lib/es6/types.js +2 -0
- package/libs/data-table/lib/es6/types.js.map +1 -0
- package/libs/data-table/lib/es6/utils.js +48 -0
- package/libs/data-table/lib/es6/utils.js.map +1 -0
- package/libs/data-table/lib/types/Body.d.ts +46 -0
- package/libs/data-table/lib/types/DataTable.d.ts +157 -0
- package/libs/data-table/lib/types/Head.d.ts +25 -0
- package/libs/data-table/lib/types/index.d.ts +2 -0
- package/libs/data-table/lib/types/types.d.ts +71 -0
- package/libs/data-table/lib/types/utils.d.ts +4 -0
- package/libs/date-picker/lib/cjs/DatePicker.js +183 -0
- package/libs/date-picker/lib/cjs/DatePicker.js.map +1 -0
- package/libs/date-picker/lib/cjs/DateRangeComparator.js +188 -0
- package/libs/date-picker/lib/cjs/DateRangeComparator.js.map +1 -0
- package/libs/date-picker/lib/cjs/DateRangePicker.js +133 -0
- package/libs/date-picker/lib/cjs/DateRangePicker.js.map +1 -0
- package/libs/date-picker/lib/cjs/MonthDateRangeComparator.js +223 -0
- package/libs/date-picker/lib/cjs/MonthDateRangeComparator.js.map +1 -0
- package/libs/date-picker/lib/cjs/MonthPicker.js +122 -0
- package/libs/date-picker/lib/cjs/MonthPicker.js.map +1 -0
- package/libs/date-picker/lib/cjs/MonthRangePicker.js +147 -0
- package/libs/date-picker/lib/cjs/MonthRangePicker.js.map +1 -0
- package/libs/date-picker/lib/cjs/components/ButtonTrigger.js +32 -0
- package/libs/date-picker/lib/cjs/components/ButtonTrigger.js.map +1 -0
- package/libs/date-picker/lib/cjs/components/Calendar.js +413 -0
- package/libs/date-picker/lib/cjs/components/Calendar.js.map +1 -0
- package/libs/date-picker/lib/cjs/components/DateRangeComparatorAbstract.js +584 -0
- package/libs/date-picker/lib/cjs/components/DateRangeComparatorAbstract.js.map +1 -0
- package/libs/date-picker/lib/cjs/components/InputTrigger.js +665 -0
- package/libs/date-picker/lib/cjs/components/InputTrigger.js.map +1 -0
- package/libs/date-picker/lib/cjs/components/PickerAbstract.js +250 -0
- package/libs/date-picker/lib/cjs/components/PickerAbstract.js.map +1 -0
- package/libs/date-picker/lib/cjs/components/RangePickerAbstract.js +406 -0
- package/libs/date-picker/lib/cjs/components/RangePickerAbstract.js.map +1 -0
- package/libs/date-picker/lib/cjs/components/index.js +175 -0
- package/libs/date-picker/lib/cjs/components/index.js.map +1 -0
- package/libs/date-picker/lib/cjs/index.d.js +2 -0
- package/libs/date-picker/lib/cjs/index.d.js.map +1 -0
- package/libs/date-picker/lib/cjs/index.js +53 -0
- package/libs/date-picker/lib/cjs/index.js.map +1 -0
- package/libs/date-picker/lib/cjs/translations/__intergalactic-dynamic-locales.js +41 -0
- package/libs/date-picker/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/date-picker/lib/cjs/translations/de.json +16 -0
- package/libs/date-picker/lib/cjs/translations/en.json +17 -0
- package/libs/date-picker/lib/cjs/translations/es.json +16 -0
- package/libs/date-picker/lib/cjs/translations/fr.json +16 -0
- package/libs/date-picker/lib/cjs/translations/it.json +16 -0
- package/libs/date-picker/lib/cjs/translations/ja.json +16 -0
- package/libs/date-picker/lib/cjs/translations/ko.json +16 -0
- package/libs/date-picker/lib/cjs/translations/nl.json +16 -0
- package/libs/date-picker/lib/cjs/translations/pl.json +16 -0
- package/libs/date-picker/lib/cjs/translations/pt.json +16 -0
- package/libs/date-picker/lib/cjs/translations/ru.json +13 -0
- package/libs/date-picker/lib/cjs/translations/sv.json +16 -0
- package/libs/date-picker/lib/cjs/translations/tr.json +16 -0
- package/libs/date-picker/lib/cjs/translations/vi.json +16 -0
- package/libs/date-picker/lib/cjs/translations/zh.json +16 -0
- package/libs/date-picker/lib/cjs/utils/cronTabScheduler.js +98 -0
- package/libs/date-picker/lib/cjs/utils/cronTabScheduler.js.map +1 -0
- package/libs/date-picker/lib/cjs/utils/formatDate.js +22 -0
- package/libs/date-picker/lib/cjs/utils/formatDate.js.map +1 -0
- package/libs/date-picker/lib/cjs/utils/includesDate.js +26 -0
- package/libs/date-picker/lib/cjs/utils/includesDate.js.map +1 -0
- package/libs/date-picker/lib/cjs/utils/shortDateRangeFormat.js +69 -0
- package/libs/date-picker/lib/cjs/utils/shortDateRangeFormat.js.map +1 -0
- package/libs/date-picker/lib/es6/DatePicker.js +174 -0
- package/libs/date-picker/lib/es6/DatePicker.js.map +1 -0
- package/libs/date-picker/lib/es6/DateRangeComparator.js +180 -0
- package/libs/date-picker/lib/es6/DateRangeComparator.js.map +1 -0
- package/libs/date-picker/lib/es6/DateRangePicker.js +124 -0
- package/libs/date-picker/lib/es6/DateRangePicker.js.map +1 -0
- package/libs/date-picker/lib/es6/MonthDateRangeComparator.js +215 -0
- package/libs/date-picker/lib/es6/MonthDateRangeComparator.js.map +1 -0
- package/libs/date-picker/lib/es6/MonthPicker.js +114 -0
- package/libs/date-picker/lib/es6/MonthPicker.js.map +1 -0
- package/libs/date-picker/lib/es6/MonthRangePicker.js +138 -0
- package/libs/date-picker/lib/es6/MonthRangePicker.js.map +1 -0
- package/libs/date-picker/lib/es6/components/ButtonTrigger.js +24 -0
- package/libs/date-picker/lib/es6/components/ButtonTrigger.js.map +1 -0
- package/libs/date-picker/lib/es6/components/Calendar.js +407 -0
- package/libs/date-picker/lib/es6/components/Calendar.js.map +1 -0
- package/libs/date-picker/lib/es6/components/DateRangeComparatorAbstract.js +574 -0
- package/libs/date-picker/lib/es6/components/DateRangeComparatorAbstract.js.map +1 -0
- package/libs/date-picker/lib/es6/components/InputTrigger.js +664 -0
- package/libs/date-picker/lib/es6/components/InputTrigger.js.map +1 -0
- package/libs/date-picker/lib/es6/components/PickerAbstract.js +244 -0
- package/libs/date-picker/lib/es6/components/PickerAbstract.js.map +1 -0
- package/libs/date-picker/lib/es6/components/RangePickerAbstract.js +401 -0
- package/libs/date-picker/lib/es6/components/RangePickerAbstract.js.map +1 -0
- package/libs/date-picker/lib/es6/components/index.js +168 -0
- package/libs/date-picker/lib/es6/components/index.js.map +1 -0
- package/libs/date-picker/lib/es6/index.d.js +2 -0
- package/libs/date-picker/lib/es6/index.d.js.map +1 -0
- package/libs/date-picker/lib/es6/index.js +6 -0
- package/libs/date-picker/lib/es6/index.js.map +1 -0
- package/libs/date-picker/lib/es6/translations/__intergalactic-dynamic-locales.js +33 -0
- package/libs/date-picker/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/date-picker/lib/es6/translations/de.json +16 -0
- package/libs/date-picker/lib/es6/translations/en.json +17 -0
- package/libs/date-picker/lib/es6/translations/es.json +16 -0
- package/libs/date-picker/lib/es6/translations/fr.json +16 -0
- package/libs/date-picker/lib/es6/translations/it.json +16 -0
- package/libs/date-picker/lib/es6/translations/ja.json +16 -0
- package/libs/date-picker/lib/es6/translations/ko.json +16 -0
- package/libs/date-picker/lib/es6/translations/nl.json +16 -0
- package/libs/date-picker/lib/es6/translations/pl.json +16 -0
- package/libs/date-picker/lib/es6/translations/pt.json +16 -0
- package/libs/date-picker/lib/es6/translations/ru.json +13 -0
- package/libs/date-picker/lib/es6/translations/sv.json +16 -0
- package/libs/date-picker/lib/es6/translations/tr.json +16 -0
- package/libs/date-picker/lib/es6/translations/vi.json +16 -0
- package/libs/date-picker/lib/es6/translations/zh.json +16 -0
- package/libs/date-picker/lib/es6/utils/cronTabScheduler.js +90 -0
- package/libs/date-picker/lib/es6/utils/cronTabScheduler.js.map +1 -0
- package/libs/date-picker/lib/es6/utils/formatDate.js +14 -0
- package/libs/date-picker/lib/es6/utils/formatDate.js.map +1 -0
- package/libs/date-picker/lib/es6/utils/includesDate.js +18 -0
- package/libs/date-picker/lib/es6/utils/includesDate.js.map +1 -0
- package/libs/date-picker/lib/es6/utils/shortDateRangeFormat.js +62 -0
- package/libs/date-picker/lib/es6/utils/shortDateRangeFormat.js.map +1 -0
- package/libs/date-picker/lib/types/index.d.ts +470 -0
- package/libs/divider/lib/cjs/Divider.js +59 -0
- package/libs/divider/lib/cjs/Divider.js.map +1 -0
- package/libs/divider/lib/cjs/index.d.js +2 -0
- package/libs/divider/lib/cjs/index.d.js.map +1 -0
- package/libs/divider/lib/cjs/index.js +14 -0
- package/libs/divider/lib/cjs/index.js.map +1 -0
- package/libs/divider/lib/es6/Divider.js +52 -0
- package/libs/divider/lib/es6/Divider.js.map +1 -0
- package/libs/divider/lib/es6/index.d.js +2 -0
- package/libs/divider/lib/es6/index.d.js.map +1 -0
- package/libs/divider/lib/es6/index.js +2 -0
- package/libs/divider/lib/es6/index.js.map +1 -0
- package/libs/divider/lib/types/index.d.ts +25 -0
- package/libs/dot/lib/cjs/Dot.js +107 -0
- package/libs/dot/lib/cjs/Dot.js.map +1 -0
- package/libs/dot/lib/cjs/index.d.js +2 -0
- package/libs/dot/lib/cjs/index.d.js.map +1 -0
- package/libs/dot/lib/cjs/index.js +14 -0
- package/libs/dot/lib/cjs/index.js.map +1 -0
- package/libs/dot/lib/es6/Dot.js +100 -0
- package/libs/dot/lib/es6/Dot.js.map +1 -0
- package/libs/dot/lib/es6/index.d.js +2 -0
- package/libs/dot/lib/es6/index.d.js.map +1 -0
- package/libs/dot/lib/es6/index.js +2 -0
- package/libs/dot/lib/es6/index.js.map +1 -0
- package/libs/dot/lib/types/index.d.ts +23 -0
- package/libs/drag-and-drop/lib/cjs/DragAndDrop.js +410 -0
- package/libs/drag-and-drop/lib/cjs/DragAndDrop.js.map +1 -0
- package/libs/drag-and-drop/lib/cjs/index.d.js +2 -0
- package/libs/drag-and-drop/lib/cjs/index.d.js.map +1 -0
- package/libs/drag-and-drop/lib/cjs/index.js +14 -0
- package/libs/drag-and-drop/lib/cjs/index.js.map +1 -0
- package/libs/drag-and-drop/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/drag-and-drop/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/drag-and-drop/lib/cjs/translations/de.json +6 -0
- package/libs/drag-and-drop/lib/cjs/translations/en.json +6 -0
- package/libs/drag-and-drop/lib/cjs/translations/es.json +6 -0
- package/libs/drag-and-drop/lib/cjs/translations/fr.json +6 -0
- package/libs/drag-and-drop/lib/cjs/translations/it.json +6 -0
- package/libs/drag-and-drop/lib/cjs/translations/ja.json +6 -0
- package/libs/drag-and-drop/lib/cjs/translations/ko.json +6 -0
- package/libs/drag-and-drop/lib/cjs/translations/nl.json +6 -0
- package/libs/drag-and-drop/lib/cjs/translations/pl.json +6 -0
- package/libs/drag-and-drop/lib/cjs/translations/pt.json +6 -0
- package/libs/drag-and-drop/lib/cjs/translations/sv.json +6 -0
- package/libs/drag-and-drop/lib/cjs/translations/tr.json +6 -0
- package/libs/drag-and-drop/lib/cjs/translations/vi.json +6 -0
- package/libs/drag-and-drop/lib/cjs/translations/zh.json +6 -0
- package/libs/drag-and-drop/lib/es6/DragAndDrop.js +405 -0
- package/libs/drag-and-drop/lib/es6/DragAndDrop.js.map +1 -0
- package/libs/drag-and-drop/lib/es6/index.d.js +2 -0
- package/libs/drag-and-drop/lib/es6/index.d.js.map +1 -0
- package/libs/drag-and-drop/lib/es6/index.js +2 -0
- package/libs/drag-and-drop/lib/es6/index.js.map +1 -0
- package/libs/drag-and-drop/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/drag-and-drop/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/drag-and-drop/lib/es6/translations/de.json +6 -0
- package/libs/drag-and-drop/lib/es6/translations/en.json +6 -0
- package/libs/drag-and-drop/lib/es6/translations/es.json +6 -0
- package/libs/drag-and-drop/lib/es6/translations/fr.json +6 -0
- package/libs/drag-and-drop/lib/es6/translations/it.json +6 -0
- package/libs/drag-and-drop/lib/es6/translations/ja.json +6 -0
- package/libs/drag-and-drop/lib/es6/translations/ko.json +6 -0
- package/libs/drag-and-drop/lib/es6/translations/nl.json +6 -0
- package/libs/drag-and-drop/lib/es6/translations/pl.json +6 -0
- package/libs/drag-and-drop/lib/es6/translations/pt.json +6 -0
- package/libs/drag-and-drop/lib/es6/translations/sv.json +6 -0
- package/libs/drag-and-drop/lib/es6/translations/tr.json +6 -0
- package/libs/drag-and-drop/lib/es6/translations/vi.json +6 -0
- package/libs/drag-and-drop/lib/es6/translations/zh.json +6 -0
- package/libs/drag-and-drop/lib/types/index.d.ts +62 -0
- package/libs/dropdown/lib/cjs/Dropdown.js +177 -0
- package/libs/dropdown/lib/cjs/Dropdown.js.map +1 -0
- package/libs/dropdown/lib/cjs/index.d.js +2 -0
- package/libs/dropdown/lib/cjs/index.d.js.map +1 -0
- package/libs/dropdown/lib/cjs/index.js +14 -0
- package/libs/dropdown/lib/cjs/index.js.map +1 -0
- package/libs/dropdown/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/dropdown/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/dropdown/lib/cjs/translations/de.json +3 -0
- package/libs/dropdown/lib/cjs/translations/en.json +3 -0
- package/libs/dropdown/lib/cjs/translations/es.json +3 -0
- package/libs/dropdown/lib/cjs/translations/fr.json +3 -0
- package/libs/dropdown/lib/cjs/translations/it.json +3 -0
- package/libs/dropdown/lib/cjs/translations/ja.json +3 -0
- package/libs/dropdown/lib/cjs/translations/ko.json +3 -0
- package/libs/dropdown/lib/cjs/translations/nl.json +3 -0
- package/libs/dropdown/lib/cjs/translations/pl.json +3 -0
- package/libs/dropdown/lib/cjs/translations/pt.json +3 -0
- package/libs/dropdown/lib/cjs/translations/sv.json +3 -0
- package/libs/dropdown/lib/cjs/translations/tr.json +3 -0
- package/libs/dropdown/lib/cjs/translations/vi.json +3 -0
- package/libs/dropdown/lib/cjs/translations/zh.json +3 -0
- package/libs/dropdown/lib/es6/Dropdown.js +170 -0
- package/libs/dropdown/lib/es6/Dropdown.js.map +1 -0
- package/libs/dropdown/lib/es6/index.d.js +2 -0
- package/libs/dropdown/lib/es6/index.d.js.map +1 -0
- package/libs/dropdown/lib/es6/index.js +2 -0
- package/libs/dropdown/lib/es6/index.js.map +1 -0
- package/libs/dropdown/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/dropdown/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/dropdown/lib/es6/translations/de.json +3 -0
- package/libs/dropdown/lib/es6/translations/en.json +3 -0
- package/libs/dropdown/lib/es6/translations/es.json +3 -0
- package/libs/dropdown/lib/es6/translations/fr.json +3 -0
- package/libs/dropdown/lib/es6/translations/it.json +3 -0
- package/libs/dropdown/lib/es6/translations/ja.json +3 -0
- package/libs/dropdown/lib/es6/translations/ko.json +3 -0
- package/libs/dropdown/lib/es6/translations/nl.json +3 -0
- package/libs/dropdown/lib/es6/translations/pl.json +3 -0
- package/libs/dropdown/lib/es6/translations/pt.json +3 -0
- package/libs/dropdown/lib/es6/translations/sv.json +3 -0
- package/libs/dropdown/lib/es6/translations/tr.json +3 -0
- package/libs/dropdown/lib/es6/translations/vi.json +3 -0
- package/libs/dropdown/lib/es6/translations/zh.json +3 -0
- package/libs/dropdown/lib/types/index.d.ts +43 -0
- package/libs/dropdown-menu/lib/cjs/DropdownMenu.js +372 -0
- package/libs/dropdown-menu/lib/cjs/DropdownMenu.js.map +1 -0
- package/libs/dropdown-menu/lib/cjs/index.d.js +2 -0
- package/libs/dropdown-menu/lib/cjs/index.d.js.map +1 -0
- package/libs/dropdown-menu/lib/cjs/index.js +14 -0
- package/libs/dropdown-menu/lib/cjs/index.js.map +1 -0
- package/libs/dropdown-menu/lib/cjs/styleScrollArea.js +23 -0
- package/libs/dropdown-menu/lib/cjs/styleScrollArea.js.map +1 -0
- package/libs/dropdown-menu/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/dropdown-menu/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/dropdown-menu/lib/cjs/translations/de.json +3 -0
- package/libs/dropdown-menu/lib/cjs/translations/en.json +3 -0
- package/libs/dropdown-menu/lib/cjs/translations/es.json +3 -0
- package/libs/dropdown-menu/lib/cjs/translations/fr.json +3 -0
- package/libs/dropdown-menu/lib/cjs/translations/it.json +3 -0
- package/libs/dropdown-menu/lib/cjs/translations/ja.json +3 -0
- package/libs/dropdown-menu/lib/cjs/translations/ko.json +3 -0
- package/libs/dropdown-menu/lib/cjs/translations/nl.json +3 -0
- package/libs/dropdown-menu/lib/cjs/translations/pl.json +3 -0
- package/libs/dropdown-menu/lib/cjs/translations/pt.json +3 -0
- package/libs/dropdown-menu/lib/cjs/translations/sv.json +3 -0
- package/libs/dropdown-menu/lib/cjs/translations/tr.json +3 -0
- package/libs/dropdown-menu/lib/cjs/translations/vi.json +3 -0
- package/libs/dropdown-menu/lib/cjs/translations/zh.json +3 -0
- package/libs/dropdown-menu/lib/es6/DropdownMenu.js +370 -0
- package/libs/dropdown-menu/lib/es6/DropdownMenu.js.map +1 -0
- package/libs/dropdown-menu/lib/es6/index.d.js +2 -0
- package/libs/dropdown-menu/lib/es6/index.d.js.map +1 -0
- package/libs/dropdown-menu/lib/es6/index.js +2 -0
- package/libs/dropdown-menu/lib/es6/index.js.map +1 -0
- package/libs/dropdown-menu/lib/es6/styleScrollArea.js +16 -0
- package/libs/dropdown-menu/lib/es6/styleScrollArea.js.map +1 -0
- package/libs/dropdown-menu/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/dropdown-menu/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/dropdown-menu/lib/es6/translations/de.json +3 -0
- package/libs/dropdown-menu/lib/es6/translations/en.json +3 -0
- package/libs/dropdown-menu/lib/es6/translations/es.json +3 -0
- package/libs/dropdown-menu/lib/es6/translations/fr.json +3 -0
- package/libs/dropdown-menu/lib/es6/translations/it.json +3 -0
- package/libs/dropdown-menu/lib/es6/translations/ja.json +3 -0
- package/libs/dropdown-menu/lib/es6/translations/ko.json +3 -0
- package/libs/dropdown-menu/lib/es6/translations/nl.json +3 -0
- package/libs/dropdown-menu/lib/es6/translations/pl.json +3 -0
- package/libs/dropdown-menu/lib/es6/translations/pt.json +3 -0
- package/libs/dropdown-menu/lib/es6/translations/sv.json +3 -0
- package/libs/dropdown-menu/lib/es6/translations/tr.json +3 -0
- package/libs/dropdown-menu/lib/es6/translations/vi.json +3 -0
- package/libs/dropdown-menu/lib/es6/translations/zh.json +3 -0
- package/libs/dropdown-menu/lib/types/index.d.ts +151 -0
- package/libs/ellipsis/lib/cjs/Ellipsis.js +290 -0
- package/libs/ellipsis/lib/cjs/Ellipsis.js.map +1 -0
- package/libs/ellipsis/lib/cjs/index.d.js +2 -0
- package/libs/ellipsis/lib/cjs/index.d.js.map +1 -0
- package/libs/ellipsis/lib/cjs/index.js +21 -0
- package/libs/ellipsis/lib/cjs/index.js.map +1 -0
- package/libs/ellipsis/lib/cjs/useResizeObserver.js +45 -0
- package/libs/ellipsis/lib/cjs/useResizeObserver.js.map +1 -0
- package/libs/ellipsis/lib/es6/Ellipsis.js +284 -0
- package/libs/ellipsis/lib/es6/Ellipsis.js.map +1 -0
- package/libs/ellipsis/lib/es6/index.d.js +2 -0
- package/libs/ellipsis/lib/es6/index.d.js.map +1 -0
- package/libs/ellipsis/lib/es6/index.js +3 -0
- package/libs/ellipsis/lib/es6/index.js.map +1 -0
- package/libs/ellipsis/lib/es6/useResizeObserver.js +37 -0
- package/libs/ellipsis/lib/es6/useResizeObserver.js.map +1 -0
- package/libs/ellipsis/lib/types/index.d.ts +50 -0
- package/libs/email/lib/badge/index.css +1 -0
- package/libs/email/lib/button/index.css +1 -0
- package/libs/email/lib/core/base.css +1 -0
- package/libs/email/lib/core/index.css +1 -0
- package/libs/email/lib/core/var.css +47 -0
- package/libs/email/lib/divider/index.css +1 -0
- package/libs/email/lib/grid/index.css +1 -0
- package/libs/email/lib/notice/index.css +1 -0
- package/libs/email/lib/summary/index.css +1 -0
- package/libs/email/lib/table/index.css +1 -0
- package/libs/email/lib/typography/index.css +1 -0
- package/libs/errors/lib/cjs/AccessDenied/index.js +63 -0
- package/libs/errors/lib/cjs/AccessDenied/index.js.map +1 -0
- package/libs/errors/lib/cjs/AccessDenied/translations/__intergalactic-dynamic-locales.js +41 -0
- package/libs/errors/lib/cjs/AccessDenied/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/errors/lib/cjs/AccessDenied/translations/de.json +5 -0
- package/libs/errors/lib/cjs/AccessDenied/translations/en.json +5 -0
- package/libs/errors/lib/cjs/AccessDenied/translations/es.json +5 -0
- package/libs/errors/lib/cjs/AccessDenied/translations/fr.json +5 -0
- package/libs/errors/lib/cjs/AccessDenied/translations/it.json +5 -0
- package/libs/errors/lib/cjs/AccessDenied/translations/ja.json +5 -0
- package/libs/errors/lib/cjs/AccessDenied/translations/ko.json +5 -0
- package/libs/errors/lib/cjs/AccessDenied/translations/nl.json +5 -0
- package/libs/errors/lib/cjs/AccessDenied/translations/pl.json +5 -0
- package/libs/errors/lib/cjs/AccessDenied/translations/pt.json +5 -0
- package/libs/errors/lib/cjs/AccessDenied/translations/ru.json +5 -0
- package/libs/errors/lib/cjs/AccessDenied/translations/sv.json +5 -0
- package/libs/errors/lib/cjs/AccessDenied/translations/tr.json +5 -0
- package/libs/errors/lib/cjs/AccessDenied/translations/vi.json +5 -0
- package/libs/errors/lib/cjs/AccessDenied/translations/zh.json +5 -0
- package/libs/errors/lib/cjs/Error.js +97 -0
- package/libs/errors/lib/cjs/Error.js.map +1 -0
- package/libs/errors/lib/cjs/Maintenance/index.js +62 -0
- package/libs/errors/lib/cjs/Maintenance/index.js.map +1 -0
- package/libs/errors/lib/cjs/Maintenance/translations/__intergalactic-dynamic-locales.js +41 -0
- package/libs/errors/lib/cjs/Maintenance/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/errors/lib/cjs/Maintenance/translations/de.json +5 -0
- package/libs/errors/lib/cjs/Maintenance/translations/en.json +5 -0
- package/libs/errors/lib/cjs/Maintenance/translations/es.json +5 -0
- package/libs/errors/lib/cjs/Maintenance/translations/fr.json +5 -0
- package/libs/errors/lib/cjs/Maintenance/translations/it.json +5 -0
- package/libs/errors/lib/cjs/Maintenance/translations/ja.json +5 -0
- package/libs/errors/lib/cjs/Maintenance/translations/ko.json +5 -0
- package/libs/errors/lib/cjs/Maintenance/translations/nl.json +5 -0
- package/libs/errors/lib/cjs/Maintenance/translations/pl.json +5 -0
- package/libs/errors/lib/cjs/Maintenance/translations/pt.json +5 -0
- package/libs/errors/lib/cjs/Maintenance/translations/ru.json +5 -0
- package/libs/errors/lib/cjs/Maintenance/translations/sv.json +5 -0
- package/libs/errors/lib/cjs/Maintenance/translations/tr.json +5 -0
- package/libs/errors/lib/cjs/Maintenance/translations/vi.json +5 -0
- package/libs/errors/lib/cjs/Maintenance/translations/zh.json +5 -0
- package/libs/errors/lib/cjs/PageError/index.js +73 -0
- package/libs/errors/lib/cjs/PageError/index.js.map +1 -0
- package/libs/errors/lib/cjs/PageError/translations/__intergalactic-dynamic-locales.js +41 -0
- package/libs/errors/lib/cjs/PageError/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/errors/lib/cjs/PageError/translations/de.json +5 -0
- package/libs/errors/lib/cjs/PageError/translations/en.json +5 -0
- package/libs/errors/lib/cjs/PageError/translations/es.json +5 -0
- package/libs/errors/lib/cjs/PageError/translations/fr.json +5 -0
- package/libs/errors/lib/cjs/PageError/translations/it.json +5 -0
- package/libs/errors/lib/cjs/PageError/translations/ja.json +5 -0
- package/libs/errors/lib/cjs/PageError/translations/ko.json +5 -0
- package/libs/errors/lib/cjs/PageError/translations/nl.json +5 -0
- package/libs/errors/lib/cjs/PageError/translations/pl.json +5 -0
- package/libs/errors/lib/cjs/PageError/translations/pt.json +5 -0
- package/libs/errors/lib/cjs/PageError/translations/ru.json +5 -0
- package/libs/errors/lib/cjs/PageError/translations/sv.json +5 -0
- package/libs/errors/lib/cjs/PageError/translations/tr.json +5 -0
- package/libs/errors/lib/cjs/PageError/translations/vi.json +5 -0
- package/libs/errors/lib/cjs/PageError/translations/zh.json +5 -0
- package/libs/errors/lib/cjs/PageNotFound/index.js +61 -0
- package/libs/errors/lib/cjs/PageNotFound/index.js.map +1 -0
- package/libs/errors/lib/cjs/PageNotFound/translations/__intergalactic-dynamic-locales.js +41 -0
- package/libs/errors/lib/cjs/PageNotFound/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/errors/lib/cjs/PageNotFound/translations/de.json +5 -0
- package/libs/errors/lib/cjs/PageNotFound/translations/en.json +5 -0
- package/libs/errors/lib/cjs/PageNotFound/translations/es.json +5 -0
- package/libs/errors/lib/cjs/PageNotFound/translations/fr.json +5 -0
- package/libs/errors/lib/cjs/PageNotFound/translations/it.json +5 -0
- package/libs/errors/lib/cjs/PageNotFound/translations/ja.json +5 -0
- package/libs/errors/lib/cjs/PageNotFound/translations/ko.json +5 -0
- package/libs/errors/lib/cjs/PageNotFound/translations/nl.json +5 -0
- package/libs/errors/lib/cjs/PageNotFound/translations/pl.json +5 -0
- package/libs/errors/lib/cjs/PageNotFound/translations/pt.json +5 -0
- package/libs/errors/lib/cjs/PageNotFound/translations/ru.json +5 -0
- package/libs/errors/lib/cjs/PageNotFound/translations/sv.json +5 -0
- package/libs/errors/lib/cjs/PageNotFound/translations/tr.json +5 -0
- package/libs/errors/lib/cjs/PageNotFound/translations/vi.json +5 -0
- package/libs/errors/lib/cjs/PageNotFound/translations/zh.json +5 -0
- package/libs/errors/lib/cjs/ProjectNotFound/index.js +80 -0
- package/libs/errors/lib/cjs/ProjectNotFound/index.js.map +1 -0
- package/libs/errors/lib/cjs/ProjectNotFound/translations/__intergalactic-dynamic-locales.js +41 -0
- package/libs/errors/lib/cjs/ProjectNotFound/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/errors/lib/cjs/ProjectNotFound/translations/de.json +6 -0
- package/libs/errors/lib/cjs/ProjectNotFound/translations/en.json +6 -0
- package/libs/errors/lib/cjs/ProjectNotFound/translations/es.json +6 -0
- package/libs/errors/lib/cjs/ProjectNotFound/translations/fr.json +6 -0
- package/libs/errors/lib/cjs/ProjectNotFound/translations/it.json +6 -0
- package/libs/errors/lib/cjs/ProjectNotFound/translations/ja.json +6 -0
- package/libs/errors/lib/cjs/ProjectNotFound/translations/ko.json +6 -0
- package/libs/errors/lib/cjs/ProjectNotFound/translations/nl.json +6 -0
- package/libs/errors/lib/cjs/ProjectNotFound/translations/pl.json +6 -0
- package/libs/errors/lib/cjs/ProjectNotFound/translations/pt.json +6 -0
- package/libs/errors/lib/cjs/ProjectNotFound/translations/ru.json +6 -0
- package/libs/errors/lib/cjs/ProjectNotFound/translations/sv.json +6 -0
- package/libs/errors/lib/cjs/ProjectNotFound/translations/tr.json +6 -0
- package/libs/errors/lib/cjs/ProjectNotFound/translations/vi.json +6 -0
- package/libs/errors/lib/cjs/ProjectNotFound/translations/zh.json +6 -0
- package/libs/errors/lib/cjs/index.d.js +16 -0
- package/libs/errors/lib/cjs/index.d.js.map +1 -0
- package/libs/errors/lib/cjs/index.js +68 -0
- package/libs/errors/lib/cjs/index.js.map +1 -0
- package/libs/errors/lib/es6/AccessDenied/index.js +55 -0
- package/libs/errors/lib/es6/AccessDenied/index.js.map +1 -0
- package/libs/errors/lib/es6/AccessDenied/translations/__intergalactic-dynamic-locales.js +33 -0
- package/libs/errors/lib/es6/AccessDenied/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/errors/lib/es6/AccessDenied/translations/de.json +5 -0
- package/libs/errors/lib/es6/AccessDenied/translations/en.json +5 -0
- package/libs/errors/lib/es6/AccessDenied/translations/es.json +5 -0
- package/libs/errors/lib/es6/AccessDenied/translations/fr.json +5 -0
- package/libs/errors/lib/es6/AccessDenied/translations/it.json +5 -0
- package/libs/errors/lib/es6/AccessDenied/translations/ja.json +5 -0
- package/libs/errors/lib/es6/AccessDenied/translations/ko.json +5 -0
- package/libs/errors/lib/es6/AccessDenied/translations/nl.json +5 -0
- package/libs/errors/lib/es6/AccessDenied/translations/pl.json +5 -0
- package/libs/errors/lib/es6/AccessDenied/translations/pt.json +5 -0
- package/libs/errors/lib/es6/AccessDenied/translations/ru.json +5 -0
- package/libs/errors/lib/es6/AccessDenied/translations/sv.json +5 -0
- package/libs/errors/lib/es6/AccessDenied/translations/tr.json +5 -0
- package/libs/errors/lib/es6/AccessDenied/translations/vi.json +5 -0
- package/libs/errors/lib/es6/AccessDenied/translations/zh.json +5 -0
- package/libs/errors/lib/es6/Error.js +92 -0
- package/libs/errors/lib/es6/Error.js.map +1 -0
- package/libs/errors/lib/es6/Maintenance/index.js +54 -0
- package/libs/errors/lib/es6/Maintenance/index.js.map +1 -0
- package/libs/errors/lib/es6/Maintenance/translations/__intergalactic-dynamic-locales.js +33 -0
- package/libs/errors/lib/es6/Maintenance/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/errors/lib/es6/Maintenance/translations/de.json +5 -0
- package/libs/errors/lib/es6/Maintenance/translations/en.json +5 -0
- package/libs/errors/lib/es6/Maintenance/translations/es.json +5 -0
- package/libs/errors/lib/es6/Maintenance/translations/fr.json +5 -0
- package/libs/errors/lib/es6/Maintenance/translations/it.json +5 -0
- package/libs/errors/lib/es6/Maintenance/translations/ja.json +5 -0
- package/libs/errors/lib/es6/Maintenance/translations/ko.json +5 -0
- package/libs/errors/lib/es6/Maintenance/translations/nl.json +5 -0
- package/libs/errors/lib/es6/Maintenance/translations/pl.json +5 -0
- package/libs/errors/lib/es6/Maintenance/translations/pt.json +5 -0
- package/libs/errors/lib/es6/Maintenance/translations/ru.json +5 -0
- package/libs/errors/lib/es6/Maintenance/translations/sv.json +5 -0
- package/libs/errors/lib/es6/Maintenance/translations/tr.json +5 -0
- package/libs/errors/lib/es6/Maintenance/translations/vi.json +5 -0
- package/libs/errors/lib/es6/Maintenance/translations/zh.json +5 -0
- package/libs/errors/lib/es6/PageError/index.js +64 -0
- package/libs/errors/lib/es6/PageError/index.js.map +1 -0
- package/libs/errors/lib/es6/PageError/translations/__intergalactic-dynamic-locales.js +33 -0
- package/libs/errors/lib/es6/PageError/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/errors/lib/es6/PageError/translations/de.json +5 -0
- package/libs/errors/lib/es6/PageError/translations/en.json +5 -0
- package/libs/errors/lib/es6/PageError/translations/es.json +5 -0
- package/libs/errors/lib/es6/PageError/translations/fr.json +5 -0
- package/libs/errors/lib/es6/PageError/translations/it.json +5 -0
- package/libs/errors/lib/es6/PageError/translations/ja.json +5 -0
- package/libs/errors/lib/es6/PageError/translations/ko.json +5 -0
- package/libs/errors/lib/es6/PageError/translations/nl.json +5 -0
- package/libs/errors/lib/es6/PageError/translations/pl.json +5 -0
- package/libs/errors/lib/es6/PageError/translations/pt.json +5 -0
- package/libs/errors/lib/es6/PageError/translations/ru.json +5 -0
- package/libs/errors/lib/es6/PageError/translations/sv.json +5 -0
- package/libs/errors/lib/es6/PageError/translations/tr.json +5 -0
- package/libs/errors/lib/es6/PageError/translations/vi.json +5 -0
- package/libs/errors/lib/es6/PageError/translations/zh.json +5 -0
- package/libs/errors/lib/es6/PageNotFound/index.js +53 -0
- package/libs/errors/lib/es6/PageNotFound/index.js.map +1 -0
- package/libs/errors/lib/es6/PageNotFound/translations/__intergalactic-dynamic-locales.js +33 -0
- package/libs/errors/lib/es6/PageNotFound/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/errors/lib/es6/PageNotFound/translations/de.json +5 -0
- package/libs/errors/lib/es6/PageNotFound/translations/en.json +5 -0
- package/libs/errors/lib/es6/PageNotFound/translations/es.json +5 -0
- package/libs/errors/lib/es6/PageNotFound/translations/fr.json +5 -0
- package/libs/errors/lib/es6/PageNotFound/translations/it.json +5 -0
- package/libs/errors/lib/es6/PageNotFound/translations/ja.json +5 -0
- package/libs/errors/lib/es6/PageNotFound/translations/ko.json +5 -0
- package/libs/errors/lib/es6/PageNotFound/translations/nl.json +5 -0
- package/libs/errors/lib/es6/PageNotFound/translations/pl.json +5 -0
- package/libs/errors/lib/es6/PageNotFound/translations/pt.json +5 -0
- package/libs/errors/lib/es6/PageNotFound/translations/ru.json +5 -0
- package/libs/errors/lib/es6/PageNotFound/translations/sv.json +5 -0
- package/libs/errors/lib/es6/PageNotFound/translations/tr.json +5 -0
- package/libs/errors/lib/es6/PageNotFound/translations/vi.json +5 -0
- package/libs/errors/lib/es6/PageNotFound/translations/zh.json +5 -0
- package/libs/errors/lib/es6/ProjectNotFound/index.js +72 -0
- package/libs/errors/lib/es6/ProjectNotFound/index.js.map +1 -0
- package/libs/errors/lib/es6/ProjectNotFound/translations/__intergalactic-dynamic-locales.js +33 -0
- package/libs/errors/lib/es6/ProjectNotFound/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/errors/lib/es6/ProjectNotFound/translations/de.json +6 -0
- package/libs/errors/lib/es6/ProjectNotFound/translations/en.json +6 -0
- package/libs/errors/lib/es6/ProjectNotFound/translations/es.json +6 -0
- package/libs/errors/lib/es6/ProjectNotFound/translations/fr.json +6 -0
- package/libs/errors/lib/es6/ProjectNotFound/translations/it.json +6 -0
- package/libs/errors/lib/es6/ProjectNotFound/translations/ja.json +6 -0
- package/libs/errors/lib/es6/ProjectNotFound/translations/ko.json +6 -0
- package/libs/errors/lib/es6/ProjectNotFound/translations/nl.json +6 -0
- package/libs/errors/lib/es6/ProjectNotFound/translations/pl.json +6 -0
- package/libs/errors/lib/es6/ProjectNotFound/translations/pt.json +6 -0
- package/libs/errors/lib/es6/ProjectNotFound/translations/ru.json +6 -0
- package/libs/errors/lib/es6/ProjectNotFound/translations/sv.json +6 -0
- package/libs/errors/lib/es6/ProjectNotFound/translations/tr.json +6 -0
- package/libs/errors/lib/es6/ProjectNotFound/translations/vi.json +6 -0
- package/libs/errors/lib/es6/ProjectNotFound/translations/zh.json +6 -0
- package/libs/errors/lib/es6/index.d.js +16 -0
- package/libs/errors/lib/es6/index.d.js.map +1 -0
- package/libs/errors/lib/es6/index.js +8 -0
- package/libs/errors/lib/es6/index.js.map +1 -0
- package/libs/errors/lib/types/index.d.ts +120 -0
- package/libs/feature-popover/lib/cjs/FeaturePopover.js +202 -0
- package/libs/feature-popover/lib/cjs/FeaturePopover.js.map +1 -0
- package/libs/feature-popover/lib/cjs/index.d.js +2 -0
- package/libs/feature-popover/lib/cjs/index.d.js.map +1 -0
- package/libs/feature-popover/lib/cjs/index.js +14 -0
- package/libs/feature-popover/lib/cjs/index.js.map +1 -0
- package/libs/feature-popover/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/feature-popover/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/feature-popover/lib/cjs/translations/de.json +3 -0
- package/libs/feature-popover/lib/cjs/translations/en.json +3 -0
- package/libs/feature-popover/lib/cjs/translations/es.json +3 -0
- package/libs/feature-popover/lib/cjs/translations/fr.json +3 -0
- package/libs/feature-popover/lib/cjs/translations/it.json +3 -0
- package/libs/feature-popover/lib/cjs/translations/ja.json +3 -0
- package/libs/feature-popover/lib/cjs/translations/ko.json +3 -0
- package/libs/feature-popover/lib/cjs/translations/nl.json +3 -0
- package/libs/feature-popover/lib/cjs/translations/pl.json +3 -0
- package/libs/feature-popover/lib/cjs/translations/pt.json +3 -0
- package/libs/feature-popover/lib/cjs/translations/sv.json +3 -0
- package/libs/feature-popover/lib/cjs/translations/tr.json +3 -0
- package/libs/feature-popover/lib/cjs/translations/vi.json +3 -0
- package/libs/feature-popover/lib/cjs/translations/zh.json +3 -0
- package/libs/feature-popover/lib/es6/FeaturePopover.js +197 -0
- package/libs/feature-popover/lib/es6/FeaturePopover.js.map +1 -0
- package/libs/feature-popover/lib/es6/index.d.js +2 -0
- package/libs/feature-popover/lib/es6/index.d.js.map +1 -0
- package/libs/feature-popover/lib/es6/index.js +2 -0
- package/libs/feature-popover/lib/es6/index.js.map +1 -0
- package/libs/feature-popover/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/feature-popover/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/feature-popover/lib/es6/translations/de.json +3 -0
- package/libs/feature-popover/lib/es6/translations/en.json +3 -0
- package/libs/feature-popover/lib/es6/translations/es.json +3 -0
- package/libs/feature-popover/lib/es6/translations/fr.json +3 -0
- package/libs/feature-popover/lib/es6/translations/it.json +3 -0
- package/libs/feature-popover/lib/es6/translations/ja.json +3 -0
- package/libs/feature-popover/lib/es6/translations/ko.json +3 -0
- package/libs/feature-popover/lib/es6/translations/nl.json +3 -0
- package/libs/feature-popover/lib/es6/translations/pl.json +3 -0
- package/libs/feature-popover/lib/es6/translations/pt.json +3 -0
- package/libs/feature-popover/lib/es6/translations/sv.json +3 -0
- package/libs/feature-popover/lib/es6/translations/tr.json +3 -0
- package/libs/feature-popover/lib/es6/translations/vi.json +3 -0
- package/libs/feature-popover/lib/es6/translations/zh.json +3 -0
- package/libs/feature-popover/lib/types/index.d.ts +33 -0
- package/libs/feedback-form/lib/cjs/FeedbackForm.js +216 -0
- package/libs/feedback-form/lib/cjs/FeedbackForm.js.map +1 -0
- package/libs/feedback-form/lib/cjs/index.d.js +2 -0
- package/libs/feedback-form/lib/cjs/index.d.js.map +1 -0
- package/libs/feedback-form/lib/cjs/index.js +14 -0
- package/libs/feedback-form/lib/cjs/index.js.map +1 -0
- package/libs/feedback-form/lib/es6/FeedbackForm.js +213 -0
- package/libs/feedback-form/lib/es6/FeedbackForm.js.map +1 -0
- package/libs/feedback-form/lib/es6/index.d.js +2 -0
- package/libs/feedback-form/lib/es6/index.d.js.map +1 -0
- package/libs/feedback-form/lib/es6/index.js +2 -0
- package/libs/feedback-form/lib/es6/index.js.map +1 -0
- package/libs/feedback-form/lib/types/index.d.ts +35 -0
- package/libs/flags/lib/cjs/Flags.js +108 -0
- package/libs/flags/lib/cjs/Flags.js.map +1 -0
- package/libs/flags/lib/cjs/aliases.json +7 -0
- package/libs/flags/lib/cjs/countries.json +509 -0
- package/libs/flags/lib/cjs/index.d.js +2 -0
- package/libs/flags/lib/cjs/index.d.js.map +1 -0
- package/libs/flags/lib/cjs/index.js +26 -0
- package/libs/flags/lib/cjs/index.js.map +1 -0
- package/libs/flags/lib/es6/Flags.js +98 -0
- package/libs/flags/lib/es6/Flags.js.map +1 -0
- package/libs/flags/lib/es6/aliases.json +7 -0
- package/libs/flags/lib/es6/countries.json +509 -0
- package/libs/flags/lib/es6/index.d.js +2 -0
- package/libs/flags/lib/es6/index.d.js.map +1 -0
- package/libs/flags/lib/es6/index.js +3 -0
- package/libs/flags/lib/es6/index.js.map +1 -0
- package/libs/flags/lib/sprites/sprite@1x.css +766 -0
- package/libs/flags/lib/sprites/sprite@1x.png +0 -0
- package/libs/flags/lib/sprites/sprite@2x.css +769 -0
- package/libs/flags/lib/sprites/sprite@2x.png +0 -0
- package/libs/flags/lib/types/index.d.ts +1344 -0
- package/libs/flex-box/lib/cjs/Box/index.js +22 -0
- package/libs/flex-box/lib/cjs/Box/index.js.map +1 -0
- package/libs/flex-box/lib/cjs/Box/useBox.js +132 -0
- package/libs/flex-box/lib/cjs/Box/useBox.js.map +1 -0
- package/libs/flex-box/lib/cjs/Flex/index.js +22 -0
- package/libs/flex-box/lib/cjs/Flex/index.js.map +1 -0
- package/libs/flex-box/lib/cjs/Flex/useFlex.js +77 -0
- package/libs/flex-box/lib/cjs/Flex/useFlex.js.map +1 -0
- package/libs/flex-box/lib/cjs/index.js +64 -0
- package/libs/flex-box/lib/cjs/index.js.map +1 -0
- package/libs/flex-box/lib/cjs/utils.js +20 -0
- package/libs/flex-box/lib/cjs/utils.js.map +1 -0
- package/libs/flex-box/lib/es6/Box/index.js +14 -0
- package/libs/flex-box/lib/es6/Box/index.js.map +1 -0
- package/libs/flex-box/lib/es6/Box/useBox.js +125 -0
- package/libs/flex-box/lib/es6/Box/useBox.js.map +1 -0
- package/libs/flex-box/lib/es6/Flex/index.js +14 -0
- package/libs/flex-box/lib/es6/Flex/index.js.map +1 -0
- package/libs/flex-box/lib/es6/Flex/useFlex.js +70 -0
- package/libs/flex-box/lib/es6/Flex/useFlex.js.map +1 -0
- package/libs/flex-box/lib/es6/index.js +9 -0
- package/libs/flex-box/lib/es6/index.js.map +1 -0
- package/libs/flex-box/lib/es6/utils.js +13 -0
- package/libs/flex-box/lib/es6/utils.js.map +1 -0
- package/libs/flex-box/lib/types/Box/index.d.ts +4 -0
- package/libs/flex-box/lib/types/Box/useBox.d.ts +109 -0
- package/libs/flex-box/lib/types/Flex/index.d.ts +4 -0
- package/libs/flex-box/lib/types/Flex/useFlex.d.ts +54 -0
- package/libs/flex-box/lib/types/index.d.ts +6 -0
- package/libs/flex-box/lib/types/utils.d.ts +1 -0
- package/libs/format-text/lib/cjs/FormatText.js +51 -0
- package/libs/format-text/lib/cjs/FormatText.js.map +1 -0
- package/libs/format-text/lib/cjs/index.js +26 -0
- package/libs/format-text/lib/cjs/index.js.map +1 -0
- package/libs/format-text/lib/es6/FormatText.js +44 -0
- package/libs/format-text/lib/es6/FormatText.js.map +1 -0
- package/libs/format-text/lib/es6/index.js +3 -0
- package/libs/format-text/lib/es6/index.js.map +1 -0
- package/libs/format-text/lib/types/FormatText.d.ts +10 -0
- package/libs/format-text/lib/types/index.d.ts +2 -0
- package/libs/fullscreen-modal/lib/cjs/FullscreenModal.js +219 -0
- package/libs/fullscreen-modal/lib/cjs/FullscreenModal.js.map +1 -0
- package/libs/fullscreen-modal/lib/cjs/index.d.js +2 -0
- package/libs/fullscreen-modal/lib/cjs/index.d.js.map +1 -0
- package/libs/fullscreen-modal/lib/cjs/index.js +14 -0
- package/libs/fullscreen-modal/lib/cjs/index.js.map +1 -0
- package/libs/fullscreen-modal/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/fullscreen-modal/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/fullscreen-modal/lib/cjs/translations/de.json +4 -0
- package/libs/fullscreen-modal/lib/cjs/translations/en.json +4 -0
- package/libs/fullscreen-modal/lib/cjs/translations/es.json +4 -0
- package/libs/fullscreen-modal/lib/cjs/translations/fr.json +4 -0
- package/libs/fullscreen-modal/lib/cjs/translations/it.json +4 -0
- package/libs/fullscreen-modal/lib/cjs/translations/ja.json +4 -0
- package/libs/fullscreen-modal/lib/cjs/translations/ko.json +4 -0
- package/libs/fullscreen-modal/lib/cjs/translations/nl.json +4 -0
- package/libs/fullscreen-modal/lib/cjs/translations/pl.json +4 -0
- package/libs/fullscreen-modal/lib/cjs/translations/pt.json +4 -0
- package/libs/fullscreen-modal/lib/cjs/translations/sv.json +4 -0
- package/libs/fullscreen-modal/lib/cjs/translations/tr.json +4 -0
- package/libs/fullscreen-modal/lib/cjs/translations/vi.json +4 -0
- package/libs/fullscreen-modal/lib/cjs/translations/zh.json +4 -0
- package/libs/fullscreen-modal/lib/es6/FullscreenModal.js +220 -0
- package/libs/fullscreen-modal/lib/es6/FullscreenModal.js.map +1 -0
- package/libs/fullscreen-modal/lib/es6/index.d.js +2 -0
- package/libs/fullscreen-modal/lib/es6/index.d.js.map +1 -0
- package/libs/fullscreen-modal/lib/es6/index.js +2 -0
- package/libs/fullscreen-modal/lib/es6/index.js.map +1 -0
- package/libs/fullscreen-modal/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/fullscreen-modal/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/fullscreen-modal/lib/es6/translations/de.json +4 -0
- package/libs/fullscreen-modal/lib/es6/translations/en.json +4 -0
- package/libs/fullscreen-modal/lib/es6/translations/es.json +4 -0
- package/libs/fullscreen-modal/lib/es6/translations/fr.json +4 -0
- package/libs/fullscreen-modal/lib/es6/translations/it.json +4 -0
- package/libs/fullscreen-modal/lib/es6/translations/ja.json +4 -0
- package/libs/fullscreen-modal/lib/es6/translations/ko.json +4 -0
- package/libs/fullscreen-modal/lib/es6/translations/nl.json +4 -0
- package/libs/fullscreen-modal/lib/es6/translations/pl.json +4 -0
- package/libs/fullscreen-modal/lib/es6/translations/pt.json +4 -0
- package/libs/fullscreen-modal/lib/es6/translations/sv.json +4 -0
- package/libs/fullscreen-modal/lib/es6/translations/tr.json +4 -0
- package/libs/fullscreen-modal/lib/es6/translations/vi.json +4 -0
- package/libs/fullscreen-modal/lib/es6/translations/zh.json +4 -0
- package/libs/fullscreen-modal/lib/types/index.d.ts +48 -0
- package/libs/grid/lib/cjs/Grid.js +218 -0
- package/libs/grid/lib/cjs/Grid.js.map +1 -0
- package/libs/grid/lib/cjs/index.d.js +2 -0
- package/libs/grid/lib/cjs/index.d.js.map +1 -0
- package/libs/grid/lib/cjs/index.js +17 -0
- package/libs/grid/lib/cjs/index.js.map +1 -0
- package/libs/grid/lib/es6/Grid.js +212 -0
- package/libs/grid/lib/es6/Grid.js.map +1 -0
- package/libs/grid/lib/es6/index.d.js +2 -0
- package/libs/grid/lib/es6/index.d.js.map +1 -0
- package/libs/grid/lib/es6/index.js +4 -0
- package/libs/grid/lib/es6/index.js.map +1 -0
- package/libs/grid/lib/types/index.d.ts +48 -0
- package/libs/i18n-unplugin/lib/cjs/index.js +140 -0
- package/libs/i18n-unplugin/lib/cjs/index.js.map +1 -0
- package/libs/i18n-unplugin/lib/es6/index.js +128 -0
- package/libs/i18n-unplugin/lib/es6/index.js.map +1 -0
- package/libs/i18n-unplugin/lib/types/index.d.ts +12 -0
- package/libs/icon/lib/cjs/Icon.js +89 -0
- package/libs/icon/lib/cjs/Icon.js.map +1 -0
- package/libs/icon/lib/cjs/index.d.js +2 -0
- package/libs/icon/lib/cjs/index.d.js.map +1 -0
- package/libs/icon/lib/cjs/index.js +14 -0
- package/libs/icon/lib/cjs/index.js.map +1 -0
- package/libs/icon/lib/es6/Icon.js +82 -0
- package/libs/icon/lib/es6/Icon.js.map +1 -0
- package/libs/icon/lib/es6/index.d.js +2 -0
- package/libs/icon/lib/es6/index.d.js.map +1 -0
- package/libs/icon/lib/es6/index.js +2 -0
- package/libs/icon/lib/es6/index.js.map +1 -0
- package/libs/icon/lib/types/index.d.ts +20 -0
- package/libs/illustration/lib/cjs/index.d.js +2 -0
- package/libs/illustration/lib/cjs/index.d.js.map +1 -0
- package/libs/illustration/lib/cjs/index.js +22 -0
- package/libs/illustration/lib/cjs/index.js.map +1 -0
- package/libs/illustration/lib/es6/index.d.js +2 -0
- package/libs/illustration/lib/es6/index.d.js.map +1 -0
- package/libs/illustration/lib/es6/index.js +15 -0
- package/libs/illustration/lib/es6/index.js.map +1 -0
- package/libs/illustration/lib/types/index.d.ts +55 -0
- package/libs/inline-edit/lib/cjs/InlineEdit.js +156 -0
- package/libs/inline-edit/lib/cjs/InlineEdit.js.map +1 -0
- package/libs/inline-edit/lib/cjs/index.d.js +2 -0
- package/libs/inline-edit/lib/cjs/index.d.js.map +1 -0
- package/libs/inline-edit/lib/cjs/index.js +14 -0
- package/libs/inline-edit/lib/cjs/index.js.map +1 -0
- package/libs/inline-edit/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/inline-edit/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/inline-edit/lib/cjs/translations/de.json +3 -0
- package/libs/inline-edit/lib/cjs/translations/en.json +3 -0
- package/libs/inline-edit/lib/cjs/translations/es.json +3 -0
- package/libs/inline-edit/lib/cjs/translations/fr.json +3 -0
- package/libs/inline-edit/lib/cjs/translations/it.json +3 -0
- package/libs/inline-edit/lib/cjs/translations/ja.json +3 -0
- package/libs/inline-edit/lib/cjs/translations/ko.json +3 -0
- package/libs/inline-edit/lib/cjs/translations/nl.json +3 -0
- package/libs/inline-edit/lib/cjs/translations/pl.json +3 -0
- package/libs/inline-edit/lib/cjs/translations/pt.json +3 -0
- package/libs/inline-edit/lib/cjs/translations/sv.json +3 -0
- package/libs/inline-edit/lib/cjs/translations/tr.json +3 -0
- package/libs/inline-edit/lib/cjs/translations/vi.json +3 -0
- package/libs/inline-edit/lib/cjs/translations/zh.json +3 -0
- package/libs/inline-edit/lib/es6/InlineEdit.js +151 -0
- package/libs/inline-edit/lib/es6/InlineEdit.js.map +1 -0
- package/libs/inline-edit/lib/es6/index.d.js +2 -0
- package/libs/inline-edit/lib/es6/index.d.js.map +1 -0
- package/libs/inline-edit/lib/es6/index.js +2 -0
- package/libs/inline-edit/lib/es6/index.js.map +1 -0
- package/libs/inline-edit/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/inline-edit/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/inline-edit/lib/es6/translations/de.json +3 -0
- package/libs/inline-edit/lib/es6/translations/en.json +3 -0
- package/libs/inline-edit/lib/es6/translations/es.json +3 -0
- package/libs/inline-edit/lib/es6/translations/fr.json +3 -0
- package/libs/inline-edit/lib/es6/translations/it.json +3 -0
- package/libs/inline-edit/lib/es6/translations/ja.json +3 -0
- package/libs/inline-edit/lib/es6/translations/ko.json +3 -0
- package/libs/inline-edit/lib/es6/translations/nl.json +3 -0
- package/libs/inline-edit/lib/es6/translations/pl.json +3 -0
- package/libs/inline-edit/lib/es6/translations/pt.json +3 -0
- package/libs/inline-edit/lib/es6/translations/sv.json +3 -0
- package/libs/inline-edit/lib/es6/translations/tr.json +3 -0
- package/libs/inline-edit/lib/es6/translations/vi.json +3 -0
- package/libs/inline-edit/lib/es6/translations/zh.json +3 -0
- package/libs/inline-edit/lib/types/index.d.ts +43 -0
- package/libs/inline-input/lib/cjs/InlineInput.js +541 -0
- package/libs/inline-input/lib/cjs/InlineInput.js.map +1 -0
- package/libs/inline-input/lib/cjs/index.d.js +2 -0
- package/libs/inline-input/lib/cjs/index.d.js.map +1 -0
- package/libs/inline-input/lib/cjs/index.js +11 -0
- package/libs/inline-input/lib/cjs/index.js.map +1 -0
- package/libs/inline-input/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/inline-input/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/inline-input/lib/cjs/translations/de.json +5 -0
- package/libs/inline-input/lib/cjs/translations/en.json +5 -0
- package/libs/inline-input/lib/cjs/translations/es.json +5 -0
- package/libs/inline-input/lib/cjs/translations/fr.json +5 -0
- package/libs/inline-input/lib/cjs/translations/it.json +5 -0
- package/libs/inline-input/lib/cjs/translations/ja.json +5 -0
- package/libs/inline-input/lib/cjs/translations/ko.json +5 -0
- package/libs/inline-input/lib/cjs/translations/nl.json +5 -0
- package/libs/inline-input/lib/cjs/translations/pl.json +5 -0
- package/libs/inline-input/lib/cjs/translations/pt.json +5 -0
- package/libs/inline-input/lib/cjs/translations/sv.json +5 -0
- package/libs/inline-input/lib/cjs/translations/tr.json +5 -0
- package/libs/inline-input/lib/cjs/translations/vi.json +5 -0
- package/libs/inline-input/lib/cjs/translations/zh.json +5 -0
- package/libs/inline-input/lib/es6/InlineInput.js +542 -0
- package/libs/inline-input/lib/es6/InlineInput.js.map +1 -0
- package/libs/inline-input/lib/es6/index.d.js +2 -0
- package/libs/inline-input/lib/es6/index.d.js.map +1 -0
- package/libs/inline-input/lib/es6/index.js +3 -0
- package/libs/inline-input/lib/es6/index.js.map +1 -0
- package/libs/inline-input/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/inline-input/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/inline-input/lib/es6/translations/de.json +5 -0
- package/libs/inline-input/lib/es6/translations/en.json +5 -0
- package/libs/inline-input/lib/es6/translations/es.json +5 -0
- package/libs/inline-input/lib/es6/translations/fr.json +5 -0
- package/libs/inline-input/lib/es6/translations/it.json +5 -0
- package/libs/inline-input/lib/es6/translations/ja.json +5 -0
- package/libs/inline-input/lib/es6/translations/ko.json +5 -0
- package/libs/inline-input/lib/es6/translations/nl.json +5 -0
- package/libs/inline-input/lib/es6/translations/pl.json +5 -0
- package/libs/inline-input/lib/es6/translations/pt.json +5 -0
- package/libs/inline-input/lib/es6/translations/sv.json +5 -0
- package/libs/inline-input/lib/es6/translations/tr.json +5 -0
- package/libs/inline-input/lib/es6/translations/vi.json +5 -0
- package/libs/inline-input/lib/es6/translations/zh.json +5 -0
- package/libs/inline-input/lib/types/index.d.ts +151 -0
- package/libs/input/lib/cjs/Input.js +223 -0
- package/libs/input/lib/cjs/Input.js.map +1 -0
- package/libs/input/lib/cjs/index.d.js +2 -0
- package/libs/input/lib/cjs/index.d.js.map +1 -0
- package/libs/input/lib/cjs/index.js +14 -0
- package/libs/input/lib/cjs/index.js.map +1 -0
- package/libs/input/lib/es6/Input.js +218 -0
- package/libs/input/lib/es6/Input.js.map +1 -0
- package/libs/input/lib/es6/index.d.js +2 -0
- package/libs/input/lib/es6/index.d.js.map +1 -0
- package/libs/input/lib/es6/index.js +2 -0
- package/libs/input/lib/es6/index.js.map +1 -0
- package/libs/input/lib/types/index.d.ts +92 -0
- package/libs/input-mask/lib/cjs/InputMask.js +336 -0
- package/libs/input-mask/lib/cjs/InputMask.js.map +1 -0
- package/libs/input-mask/lib/cjs/index.js +26 -0
- package/libs/input-mask/lib/cjs/index.js.map +1 -0
- package/libs/input-mask/lib/es6/InputMask.js +329 -0
- package/libs/input-mask/lib/es6/InputMask.js.map +1 -0
- package/libs/input-mask/lib/es6/index.js +3 -0
- package/libs/input-mask/lib/es6/index.js.map +1 -0
- package/libs/input-mask/lib/types/InputMask.d.ts +59 -0
- package/libs/input-mask/lib/types/index.d.ts +2 -0
- package/libs/input-number/lib/cjs/InputNumber.js +251 -0
- package/libs/input-number/lib/cjs/InputNumber.js.map +1 -0
- package/libs/input-number/lib/cjs/buttons.js +31 -0
- package/libs/input-number/lib/cjs/buttons.js.map +1 -0
- package/libs/input-number/lib/cjs/index.d.js +2 -0
- package/libs/input-number/lib/cjs/index.d.js.map +1 -0
- package/libs/input-number/lib/cjs/index.js +33 -0
- package/libs/input-number/lib/cjs/index.js.map +1 -0
- package/libs/input-number/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/input-number/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/input-number/lib/cjs/translations/de.json +4 -0
- package/libs/input-number/lib/cjs/translations/en.json +4 -0
- package/libs/input-number/lib/cjs/translations/es.json +4 -0
- package/libs/input-number/lib/cjs/translations/fr.json +4 -0
- package/libs/input-number/lib/cjs/translations/it.json +4 -0
- package/libs/input-number/lib/cjs/translations/ja.json +4 -0
- package/libs/input-number/lib/cjs/translations/ko.json +4 -0
- package/libs/input-number/lib/cjs/translations/nl.json +4 -0
- package/libs/input-number/lib/cjs/translations/pl.json +4 -0
- package/libs/input-number/lib/cjs/translations/pt.json +4 -0
- package/libs/input-number/lib/cjs/translations/sv.json +4 -0
- package/libs/input-number/lib/cjs/translations/tr.json +4 -0
- package/libs/input-number/lib/cjs/translations/vi.json +4 -0
- package/libs/input-number/lib/cjs/translations/zh.json +4 -0
- package/libs/input-number/lib/es6/InputNumber.js +245 -0
- package/libs/input-number/lib/es6/InputNumber.js.map +1 -0
- package/libs/input-number/lib/es6/buttons.js +22 -0
- package/libs/input-number/lib/es6/buttons.js.map +1 -0
- package/libs/input-number/lib/es6/index.d.js +2 -0
- package/libs/input-number/lib/es6/index.d.js.map +1 -0
- package/libs/input-number/lib/es6/index.js +3 -0
- package/libs/input-number/lib/es6/index.js.map +1 -0
- package/libs/input-number/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/input-number/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/input-number/lib/es6/translations/de.json +4 -0
- package/libs/input-number/lib/es6/translations/en.json +4 -0
- package/libs/input-number/lib/es6/translations/es.json +4 -0
- package/libs/input-number/lib/es6/translations/fr.json +4 -0
- package/libs/input-number/lib/es6/translations/it.json +4 -0
- package/libs/input-number/lib/es6/translations/ja.json +4 -0
- package/libs/input-number/lib/es6/translations/ko.json +4 -0
- package/libs/input-number/lib/es6/translations/nl.json +4 -0
- package/libs/input-number/lib/es6/translations/pl.json +4 -0
- package/libs/input-number/lib/es6/translations/pt.json +4 -0
- package/libs/input-number/lib/es6/translations/sv.json +4 -0
- package/libs/input-number/lib/es6/translations/tr.json +4 -0
- package/libs/input-number/lib/es6/translations/vi.json +4 -0
- package/libs/input-number/lib/es6/translations/zh.json +4 -0
- package/libs/input-number/lib/types/index.d.ts +68 -0
- package/libs/input-tags/lib/cjs/InputTags.js +284 -0
- package/libs/input-tags/lib/cjs/InputTags.js.map +1 -0
- package/libs/input-tags/lib/cjs/index.js +26 -0
- package/libs/input-tags/lib/cjs/index.js.map +1 -0
- package/libs/input-tags/lib/es6/InputTags.js +279 -0
- package/libs/input-tags/lib/es6/InputTags.js.map +1 -0
- package/libs/input-tags/lib/es6/index.js +3 -0
- package/libs/input-tags/lib/es6/index.js.map +1 -0
- package/libs/input-tags/lib/types/InputTags.d.ts +68 -0
- package/libs/input-tags/lib/types/index.d.ts +2 -0
- package/libs/link/lib/cjs/Link.js +122 -0
- package/libs/link/lib/cjs/Link.js.map +1 -0
- package/libs/link/lib/cjs/index.d.js +2 -0
- package/libs/link/lib/cjs/index.d.js.map +1 -0
- package/libs/link/lib/cjs/index.js +14 -0
- package/libs/link/lib/cjs/index.js.map +1 -0
- package/libs/link/lib/es6/Link.js +117 -0
- package/libs/link/lib/es6/Link.js.map +1 -0
- package/libs/link/lib/es6/index.d.js +2 -0
- package/libs/link/lib/es6/index.d.js.map +1 -0
- package/libs/link/lib/es6/index.js +2 -0
- package/libs/link/lib/es6/index.js.map +1 -0
- package/libs/link/lib/types/index.d.ts +42 -0
- package/libs/modal/lib/cjs/Modal.js +242 -0
- package/libs/modal/lib/cjs/Modal.js.map +1 -0
- package/libs/modal/lib/cjs/index.d.js +2 -0
- package/libs/modal/lib/cjs/index.d.js.map +1 -0
- package/libs/modal/lib/cjs/index.js +14 -0
- package/libs/modal/lib/cjs/index.js.map +1 -0
- package/libs/modal/lib/cjs/modal.vo-test.js +106 -0
- package/libs/modal/lib/cjs/modal.vo-test.js.map +1 -0
- package/libs/modal/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/modal/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/modal/lib/cjs/translations/de.json +4 -0
- package/libs/modal/lib/cjs/translations/en.json +4 -0
- package/libs/modal/lib/cjs/translations/es.json +4 -0
- package/libs/modal/lib/cjs/translations/fr.json +4 -0
- package/libs/modal/lib/cjs/translations/it.json +4 -0
- package/libs/modal/lib/cjs/translations/ja.json +4 -0
- package/libs/modal/lib/cjs/translations/ko.json +4 -0
- package/libs/modal/lib/cjs/translations/nl.json +4 -0
- package/libs/modal/lib/cjs/translations/pl.json +4 -0
- package/libs/modal/lib/cjs/translations/pt.json +4 -0
- package/libs/modal/lib/cjs/translations/sv.json +4 -0
- package/libs/modal/lib/cjs/translations/tr.json +4 -0
- package/libs/modal/lib/cjs/translations/vi.json +4 -0
- package/libs/modal/lib/cjs/translations/zh.json +4 -0
- package/libs/modal/lib/es6/Modal.js +239 -0
- package/libs/modal/lib/es6/Modal.js.map +1 -0
- package/libs/modal/lib/es6/index.d.js +2 -0
- package/libs/modal/lib/es6/index.d.js.map +1 -0
- package/libs/modal/lib/es6/index.js +2 -0
- package/libs/modal/lib/es6/index.js.map +1 -0
- package/libs/modal/lib/es6/modal.vo-test.js +103 -0
- package/libs/modal/lib/es6/modal.vo-test.js.map +1 -0
- package/libs/modal/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/modal/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/modal/lib/es6/translations/de.json +4 -0
- package/libs/modal/lib/es6/translations/en.json +4 -0
- package/libs/modal/lib/es6/translations/es.json +4 -0
- package/libs/modal/lib/es6/translations/fr.json +4 -0
- package/libs/modal/lib/es6/translations/it.json +4 -0
- package/libs/modal/lib/es6/translations/ja.json +4 -0
- package/libs/modal/lib/es6/translations/ko.json +4 -0
- package/libs/modal/lib/es6/translations/nl.json +4 -0
- package/libs/modal/lib/es6/translations/pl.json +4 -0
- package/libs/modal/lib/es6/translations/pt.json +4 -0
- package/libs/modal/lib/es6/translations/sv.json +4 -0
- package/libs/modal/lib/es6/translations/tr.json +4 -0
- package/libs/modal/lib/es6/translations/vi.json +4 -0
- package/libs/modal/lib/es6/translations/zh.json +4 -0
- package/libs/modal/lib/types/index.d.ts +61 -0
- package/libs/neighbor-location/lib/cjs/NeighborLocation.js +145 -0
- package/libs/neighbor-location/lib/cjs/NeighborLocation.js.map +1 -0
- package/libs/neighbor-location/lib/cjs/index.d.js +2 -0
- package/libs/neighbor-location/lib/cjs/index.d.js.map +1 -0
- package/libs/neighbor-location/lib/cjs/index.js +26 -0
- package/libs/neighbor-location/lib/cjs/index.js.map +1 -0
- package/libs/neighbor-location/lib/es6/NeighborLocation.js +137 -0
- package/libs/neighbor-location/lib/es6/NeighborLocation.js.map +1 -0
- package/libs/neighbor-location/lib/es6/index.d.js +2 -0
- package/libs/neighbor-location/lib/es6/index.d.js.map +1 -0
- package/libs/neighbor-location/lib/es6/index.js +3 -0
- package/libs/neighbor-location/lib/es6/index.js.map +1 -0
- package/libs/neighbor-location/lib/types/index.d.ts +42 -0
- package/libs/notice/lib/cjs/Notice.js +161 -0
- package/libs/notice/lib/cjs/Notice.js.map +1 -0
- package/libs/notice/lib/cjs/NoticeSmart.js +49 -0
- package/libs/notice/lib/cjs/NoticeSmart.js.map +1 -0
- package/libs/notice/lib/cjs/index.d.js +2 -0
- package/libs/notice/lib/cjs/index.d.js.map +1 -0
- package/libs/notice/lib/cjs/index.js +18 -0
- package/libs/notice/lib/cjs/index.js.map +1 -0
- package/libs/notice/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/notice/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/notice/lib/cjs/translations/de.json +3 -0
- package/libs/notice/lib/cjs/translations/en.json +3 -0
- package/libs/notice/lib/cjs/translations/es.json +3 -0
- package/libs/notice/lib/cjs/translations/fr.json +3 -0
- package/libs/notice/lib/cjs/translations/it.json +3 -0
- package/libs/notice/lib/cjs/translations/ja.json +3 -0
- package/libs/notice/lib/cjs/translations/ko.json +3 -0
- package/libs/notice/lib/cjs/translations/nl.json +3 -0
- package/libs/notice/lib/cjs/translations/pl.json +3 -0
- package/libs/notice/lib/cjs/translations/pt.json +3 -0
- package/libs/notice/lib/cjs/translations/sv.json +3 -0
- package/libs/notice/lib/cjs/translations/tr.json +3 -0
- package/libs/notice/lib/cjs/translations/vi.json +3 -0
- package/libs/notice/lib/cjs/translations/zh.json +3 -0
- package/libs/notice/lib/es6/Notice.js +158 -0
- package/libs/notice/lib/es6/Notice.js.map +1 -0
- package/libs/notice/lib/es6/NoticeSmart.js +41 -0
- package/libs/notice/lib/es6/NoticeSmart.js.map +1 -0
- package/libs/notice/lib/es6/index.d.js +2 -0
- package/libs/notice/lib/es6/index.d.js.map +1 -0
- package/libs/notice/lib/es6/index.js +4 -0
- package/libs/notice/lib/es6/index.js.map +1 -0
- package/libs/notice/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/notice/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/notice/lib/es6/translations/de.json +3 -0
- package/libs/notice/lib/es6/translations/en.json +3 -0
- package/libs/notice/lib/es6/translations/es.json +3 -0
- package/libs/notice/lib/es6/translations/fr.json +3 -0
- package/libs/notice/lib/es6/translations/it.json +3 -0
- package/libs/notice/lib/es6/translations/ja.json +3 -0
- package/libs/notice/lib/es6/translations/ko.json +3 -0
- package/libs/notice/lib/es6/translations/nl.json +3 -0
- package/libs/notice/lib/es6/translations/pl.json +3 -0
- package/libs/notice/lib/es6/translations/pt.json +3 -0
- package/libs/notice/lib/es6/translations/sv.json +3 -0
- package/libs/notice/lib/es6/translations/tr.json +3 -0
- package/libs/notice/lib/es6/translations/vi.json +3 -0
- package/libs/notice/lib/es6/translations/zh.json +3 -0
- package/libs/notice/lib/types/index.d.ts +74 -0
- package/libs/notice-bubble/lib/cjs/NoticeBubble.js +315 -0
- package/libs/notice-bubble/lib/cjs/NoticeBubble.js.map +1 -0
- package/libs/notice-bubble/lib/cjs/NoticeBubbleManager.js +104 -0
- package/libs/notice-bubble/lib/cjs/NoticeBubbleManager.js.map +1 -0
- package/libs/notice-bubble/lib/cjs/index.d.js +20 -0
- package/libs/notice-bubble/lib/cjs/index.d.js.map +1 -0
- package/libs/notice-bubble/lib/cjs/index.js +50 -0
- package/libs/notice-bubble/lib/cjs/index.js.map +1 -0
- package/libs/notice-bubble/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/notice-bubble/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/notice-bubble/lib/cjs/translations/de.json +3 -0
- package/libs/notice-bubble/lib/cjs/translations/en.json +3 -0
- package/libs/notice-bubble/lib/cjs/translations/es.json +3 -0
- package/libs/notice-bubble/lib/cjs/translations/fr.json +3 -0
- package/libs/notice-bubble/lib/cjs/translations/it.json +3 -0
- package/libs/notice-bubble/lib/cjs/translations/ja.json +3 -0
- package/libs/notice-bubble/lib/cjs/translations/ko.json +3 -0
- package/libs/notice-bubble/lib/cjs/translations/nl.json +3 -0
- package/libs/notice-bubble/lib/cjs/translations/pl.json +3 -0
- package/libs/notice-bubble/lib/cjs/translations/pt.json +3 -0
- package/libs/notice-bubble/lib/cjs/translations/sv.json +3 -0
- package/libs/notice-bubble/lib/cjs/translations/tr.json +3 -0
- package/libs/notice-bubble/lib/cjs/translations/vi.json +3 -0
- package/libs/notice-bubble/lib/cjs/translations/zh.json +3 -0
- package/libs/notice-bubble/lib/cjs/utils.js +46 -0
- package/libs/notice-bubble/lib/cjs/utils.js.map +1 -0
- package/libs/notice-bubble/lib/es6/NoticeBubble.js +307 -0
- package/libs/notice-bubble/lib/es6/NoticeBubble.js.map +1 -0
- package/libs/notice-bubble/lib/es6/NoticeBubbleManager.js +96 -0
- package/libs/notice-bubble/lib/es6/NoticeBubbleManager.js.map +1 -0
- package/libs/notice-bubble/lib/es6/index.d.js +18 -0
- package/libs/notice-bubble/lib/es6/index.d.js.map +1 -0
- package/libs/notice-bubble/lib/es6/index.js +7 -0
- package/libs/notice-bubble/lib/es6/index.js.map +1 -0
- package/libs/notice-bubble/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/notice-bubble/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/notice-bubble/lib/es6/translations/de.json +3 -0
- package/libs/notice-bubble/lib/es6/translations/en.json +3 -0
- package/libs/notice-bubble/lib/es6/translations/es.json +3 -0
- package/libs/notice-bubble/lib/es6/translations/fr.json +3 -0
- package/libs/notice-bubble/lib/es6/translations/it.json +3 -0
- package/libs/notice-bubble/lib/es6/translations/ja.json +3 -0
- package/libs/notice-bubble/lib/es6/translations/ko.json +3 -0
- package/libs/notice-bubble/lib/es6/translations/nl.json +3 -0
- package/libs/notice-bubble/lib/es6/translations/pl.json +3 -0
- package/libs/notice-bubble/lib/es6/translations/pt.json +3 -0
- package/libs/notice-bubble/lib/es6/translations/sv.json +3 -0
- package/libs/notice-bubble/lib/es6/translations/tr.json +3 -0
- package/libs/notice-bubble/lib/es6/translations/vi.json +3 -0
- package/libs/notice-bubble/lib/es6/translations/zh.json +3 -0
- package/libs/notice-bubble/lib/es6/utils.js +39 -0
- package/libs/notice-bubble/lib/es6/utils.js.map +1 -0
- package/libs/notice-bubble/lib/types/index.d.ts +145 -0
- package/libs/notice-global/lib/cjs/NoticeGlobal.js +126 -0
- package/libs/notice-global/lib/cjs/NoticeGlobal.js.map +1 -0
- package/libs/notice-global/lib/cjs/index.d.js +2 -0
- package/libs/notice-global/lib/cjs/index.d.js.map +1 -0
- package/libs/notice-global/lib/cjs/index.js +14 -0
- package/libs/notice-global/lib/cjs/index.js.map +1 -0
- package/libs/notice-global/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/notice-global/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/notice-global/lib/cjs/translations/de.json +3 -0
- package/libs/notice-global/lib/cjs/translations/en.json +3 -0
- package/libs/notice-global/lib/cjs/translations/es.json +3 -0
- package/libs/notice-global/lib/cjs/translations/fr.json +3 -0
- package/libs/notice-global/lib/cjs/translations/it.json +3 -0
- package/libs/notice-global/lib/cjs/translations/ja.json +3 -0
- package/libs/notice-global/lib/cjs/translations/ko.json +3 -0
- package/libs/notice-global/lib/cjs/translations/nl.json +3 -0
- package/libs/notice-global/lib/cjs/translations/pl.json +3 -0
- package/libs/notice-global/lib/cjs/translations/pt.json +3 -0
- package/libs/notice-global/lib/cjs/translations/sv.json +3 -0
- package/libs/notice-global/lib/cjs/translations/tr.json +3 -0
- package/libs/notice-global/lib/cjs/translations/vi.json +3 -0
- package/libs/notice-global/lib/cjs/translations/zh.json +3 -0
- package/libs/notice-global/lib/es6/NoticeGlobal.js +121 -0
- package/libs/notice-global/lib/es6/NoticeGlobal.js.map +1 -0
- package/libs/notice-global/lib/es6/index.d.js +2 -0
- package/libs/notice-global/lib/es6/index.d.js.map +1 -0
- package/libs/notice-global/lib/es6/index.js +2 -0
- package/libs/notice-global/lib/es6/index.js.map +1 -0
- package/libs/notice-global/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/notice-global/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/notice-global/lib/es6/translations/de.json +3 -0
- package/libs/notice-global/lib/es6/translations/en.json +3 -0
- package/libs/notice-global/lib/es6/translations/es.json +3 -0
- package/libs/notice-global/lib/es6/translations/fr.json +3 -0
- package/libs/notice-global/lib/es6/translations/it.json +3 -0
- package/libs/notice-global/lib/es6/translations/ja.json +3 -0
- package/libs/notice-global/lib/es6/translations/ko.json +3 -0
- package/libs/notice-global/lib/es6/translations/nl.json +3 -0
- package/libs/notice-global/lib/es6/translations/pl.json +3 -0
- package/libs/notice-global/lib/es6/translations/pt.json +3 -0
- package/libs/notice-global/lib/es6/translations/sv.json +3 -0
- package/libs/notice-global/lib/es6/translations/tr.json +3 -0
- package/libs/notice-global/lib/es6/translations/vi.json +3 -0
- package/libs/notice-global/lib/es6/translations/zh.json +3 -0
- package/libs/notice-global/lib/types/index.d.ts +36 -0
- package/libs/outside-click/lib/cjs/OutsideClick.js +61 -0
- package/libs/outside-click/lib/cjs/OutsideClick.js.map +1 -0
- package/libs/outside-click/lib/cjs/index.js +26 -0
- package/libs/outside-click/lib/cjs/index.js.map +1 -0
- package/libs/outside-click/lib/es6/OutsideClick.js +55 -0
- package/libs/outside-click/lib/es6/OutsideClick.js.map +1 -0
- package/libs/outside-click/lib/es6/index.js +3 -0
- package/libs/outside-click/lib/es6/index.js.map +1 -0
- package/libs/outside-click/lib/types/OutsideClick.d.ts +24 -0
- package/libs/outside-click/lib/types/index.d.ts +2 -0
- package/libs/pagination/lib/cjs/Pagination.js +432 -0
- package/libs/pagination/lib/cjs/Pagination.js.map +1 -0
- package/libs/pagination/lib/cjs/index.d.js +2 -0
- package/libs/pagination/lib/cjs/index.d.js.map +1 -0
- package/libs/pagination/lib/cjs/index.js +14 -0
- package/libs/pagination/lib/cjs/index.js.map +1 -0
- package/libs/pagination/lib/cjs/translations/__intergalactic-dynamic-locales.js +41 -0
- package/libs/pagination/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/pagination/lib/cjs/translations/de.json +14 -0
- package/libs/pagination/lib/cjs/translations/en.json +14 -0
- package/libs/pagination/lib/cjs/translations/es.json +14 -0
- package/libs/pagination/lib/cjs/translations/fr.json +14 -0
- package/libs/pagination/lib/cjs/translations/it.json +14 -0
- package/libs/pagination/lib/cjs/translations/ja.json +14 -0
- package/libs/pagination/lib/cjs/translations/ko.json +14 -0
- package/libs/pagination/lib/cjs/translations/nl.json +14 -0
- package/libs/pagination/lib/cjs/translations/pl.json +14 -0
- package/libs/pagination/lib/cjs/translations/pt.json +14 -0
- package/libs/pagination/lib/cjs/translations/ru.json +6 -0
- package/libs/pagination/lib/cjs/translations/sv.json +14 -0
- package/libs/pagination/lib/cjs/translations/tr.json +14 -0
- package/libs/pagination/lib/cjs/translations/vi.json +14 -0
- package/libs/pagination/lib/cjs/translations/zh.json +14 -0
- package/libs/pagination/lib/es6/Pagination.js +432 -0
- package/libs/pagination/lib/es6/Pagination.js.map +1 -0
- package/libs/pagination/lib/es6/index.d.js +2 -0
- package/libs/pagination/lib/es6/index.d.js.map +1 -0
- package/libs/pagination/lib/es6/index.js +2 -0
- package/libs/pagination/lib/es6/index.js.map +1 -0
- package/libs/pagination/lib/es6/translations/__intergalactic-dynamic-locales.js +33 -0
- package/libs/pagination/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/pagination/lib/es6/translations/de.json +14 -0
- package/libs/pagination/lib/es6/translations/en.json +14 -0
- package/libs/pagination/lib/es6/translations/es.json +14 -0
- package/libs/pagination/lib/es6/translations/fr.json +14 -0
- package/libs/pagination/lib/es6/translations/it.json +14 -0
- package/libs/pagination/lib/es6/translations/ja.json +14 -0
- package/libs/pagination/lib/es6/translations/ko.json +14 -0
- package/libs/pagination/lib/es6/translations/nl.json +14 -0
- package/libs/pagination/lib/es6/translations/pl.json +14 -0
- package/libs/pagination/lib/es6/translations/pt.json +14 -0
- package/libs/pagination/lib/es6/translations/ru.json +6 -0
- package/libs/pagination/lib/es6/translations/sv.json +14 -0
- package/libs/pagination/lib/es6/translations/tr.json +14 -0
- package/libs/pagination/lib/es6/translations/vi.json +14 -0
- package/libs/pagination/lib/es6/translations/zh.json +14 -0
- package/libs/pagination/lib/types/index.d.ts +76 -0
- package/libs/pills/lib/cjs/Pills.js +228 -0
- package/libs/pills/lib/cjs/Pills.js.map +1 -0
- package/libs/pills/lib/cjs/index.d.js +2 -0
- package/libs/pills/lib/cjs/index.d.js.map +1 -0
- package/libs/pills/lib/cjs/index.js +14 -0
- package/libs/pills/lib/cjs/index.js.map +1 -0
- package/libs/pills/lib/es6/Pills.js +224 -0
- package/libs/pills/lib/es6/Pills.js.map +1 -0
- package/libs/pills/lib/es6/index.d.js +2 -0
- package/libs/pills/lib/es6/index.d.js.map +1 -0
- package/libs/pills/lib/es6/index.js +2 -0
- package/libs/pills/lib/es6/index.js.map +1 -0
- package/libs/pills/lib/types/index.d.ts +94 -0
- package/libs/popper/lib/cjs/Popper.js +596 -0
- package/libs/popper/lib/cjs/Popper.js.map +1 -0
- package/libs/popper/lib/cjs/arrowOffset.js +66 -0
- package/libs/popper/lib/cjs/arrowOffset.js.map +1 -0
- package/libs/popper/lib/cjs/createPopper.js +15 -0
- package/libs/popper/lib/cjs/createPopper.js.map +1 -0
- package/libs/popper/lib/cjs/index.d.js +2 -0
- package/libs/popper/lib/cjs/index.d.js.map +1 -0
- package/libs/popper/lib/cjs/index.js +14 -0
- package/libs/popper/lib/cjs/index.js.map +1 -0
- package/libs/popper/lib/es6/Popper.js +590 -0
- package/libs/popper/lib/es6/Popper.js.map +1 -0
- package/libs/popper/lib/es6/arrowOffset.js +58 -0
- package/libs/popper/lib/es6/arrowOffset.js.map +1 -0
- package/libs/popper/lib/es6/createPopper.js +7 -0
- package/libs/popper/lib/es6/createPopper.js.map +1 -0
- package/libs/popper/lib/es6/index.d.js +2 -0
- package/libs/popper/lib/es6/index.d.js.map +1 -0
- package/libs/popper/lib/es6/index.js +2 -0
- package/libs/popper/lib/es6/index.js.map +1 -0
- package/libs/popper/lib/types/index.d.ts +134 -0
- package/libs/portal/lib/cjs/Portal.js +48 -0
- package/libs/portal/lib/cjs/Portal.js.map +1 -0
- package/libs/portal/lib/cjs/index.js +26 -0
- package/libs/portal/lib/cjs/index.js.map +1 -0
- package/libs/portal/lib/es6/Portal.js +42 -0
- package/libs/portal/lib/es6/Portal.js.map +1 -0
- package/libs/portal/lib/es6/index.js +3 -0
- package/libs/portal/lib/es6/index.js.map +1 -0
- package/libs/portal/lib/types/Portal.d.ts +16 -0
- package/libs/portal/lib/types/index.d.ts +2 -0
- package/libs/product-head/lib/cjs/Info.js +68 -0
- package/libs/product-head/lib/cjs/Info.js.map +1 -0
- package/libs/product-head/lib/cjs/ProductHead.js +70 -0
- package/libs/product-head/lib/cjs/ProductHead.js.map +1 -0
- package/libs/product-head/lib/cjs/Title.js +64 -0
- package/libs/product-head/lib/cjs/Title.js.map +1 -0
- package/libs/product-head/lib/cjs/index.js +55 -0
- package/libs/product-head/lib/cjs/index.js.map +1 -0
- package/libs/product-head/lib/es6/Info.js +63 -0
- package/libs/product-head/lib/es6/Info.js.map +1 -0
- package/libs/product-head/lib/es6/ProductHead.js +66 -0
- package/libs/product-head/lib/es6/ProductHead.js.map +1 -0
- package/libs/product-head/lib/es6/Title.js +58 -0
- package/libs/product-head/lib/es6/Title.js.map +1 -0
- package/libs/product-head/lib/es6/index.js +6 -0
- package/libs/product-head/lib/es6/index.js.map +1 -0
- package/libs/product-head/lib/types/Info.d.ts +16 -0
- package/libs/product-head/lib/types/ProductHead.d.ts +7 -0
- package/libs/product-head/lib/types/Title.d.ts +13 -0
- package/libs/product-head/lib/types/index.d.ts +5 -0
- package/libs/progress-bar/lib/cjs/ProgressBar.js +119 -0
- package/libs/progress-bar/lib/cjs/ProgressBar.js.map +1 -0
- package/libs/progress-bar/lib/cjs/index.d.js +2 -0
- package/libs/progress-bar/lib/cjs/index.d.js.map +1 -0
- package/libs/progress-bar/lib/cjs/index.js +14 -0
- package/libs/progress-bar/lib/cjs/index.js.map +1 -0
- package/libs/progress-bar/lib/es6/ProgressBar.js +113 -0
- package/libs/progress-bar/lib/es6/ProgressBar.js.map +1 -0
- package/libs/progress-bar/lib/es6/index.d.js +2 -0
- package/libs/progress-bar/lib/es6/index.d.js.map +1 -0
- package/libs/progress-bar/lib/es6/index.js +2 -0
- package/libs/progress-bar/lib/es6/index.js.map +1 -0
- package/libs/progress-bar/lib/types/index.d.ts +44 -0
- package/libs/radio/lib/cjs/Radio.js +377 -0
- package/libs/radio/lib/cjs/Radio.js.map +1 -0
- package/libs/radio/lib/cjs/index.d.js +2 -0
- package/libs/radio/lib/cjs/index.d.js.map +1 -0
- package/libs/radio/lib/cjs/index.js +26 -0
- package/libs/radio/lib/cjs/index.js.map +1 -0
- package/libs/radio/lib/es6/Radio.js +368 -0
- package/libs/radio/lib/es6/Radio.js.map +1 -0
- package/libs/radio/lib/es6/index.d.js +2 -0
- package/libs/radio/lib/es6/index.d.js.map +1 -0
- package/libs/radio/lib/es6/index.js +3 -0
- package/libs/radio/lib/es6/index.js.map +1 -0
- package/libs/radio/lib/types/index.d.ts +138 -0
- package/libs/scroll-area/lib/cjs/ScrollArea.js +302 -0
- package/libs/scroll-area/lib/cjs/ScrollArea.js.map +1 -0
- package/libs/scroll-area/lib/cjs/ScrollBar.js +393 -0
- package/libs/scroll-area/lib/cjs/ScrollBar.js.map +1 -0
- package/libs/scroll-area/lib/cjs/index.d.js +2 -0
- package/libs/scroll-area/lib/cjs/index.d.js.map +1 -0
- package/libs/scroll-area/lib/cjs/index.js +26 -0
- package/libs/scroll-area/lib/cjs/index.js.map +1 -0
- package/libs/scroll-area/lib/es6/ScrollArea.js +295 -0
- package/libs/scroll-area/lib/es6/ScrollArea.js.map +1 -0
- package/libs/scroll-area/lib/es6/ScrollBar.js +386 -0
- package/libs/scroll-area/lib/es6/ScrollBar.js.map +1 -0
- package/libs/scroll-area/lib/es6/index.d.js +2 -0
- package/libs/scroll-area/lib/es6/index.d.js.map +1 -0
- package/libs/scroll-area/lib/es6/index.js +3 -0
- package/libs/scroll-area/lib/es6/index.js.map +1 -0
- package/libs/scroll-area/lib/types/index.d.ts +58 -0
- package/libs/select/lib/cjs/InputSearch.js +150 -0
- package/libs/select/lib/cjs/InputSearch.js.map +1 -0
- package/libs/select/lib/cjs/Select.js +405 -0
- package/libs/select/lib/cjs/Select.js.map +1 -0
- package/libs/select/lib/cjs/context.js +11 -0
- package/libs/select/lib/cjs/context.js.map +1 -0
- package/libs/select/lib/cjs/index.d.js +2 -0
- package/libs/select/lib/cjs/index.d.js.map +1 -0
- package/libs/select/lib/cjs/index.js +21 -0
- package/libs/select/lib/cjs/index.js.map +1 -0
- package/libs/select/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/select/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/select/lib/cjs/translations/de.json +6 -0
- package/libs/select/lib/cjs/translations/en.json +6 -0
- package/libs/select/lib/cjs/translations/es.json +6 -0
- package/libs/select/lib/cjs/translations/fr.json +6 -0
- package/libs/select/lib/cjs/translations/it.json +6 -0
- package/libs/select/lib/cjs/translations/ja.json +6 -0
- package/libs/select/lib/cjs/translations/ko.json +6 -0
- package/libs/select/lib/cjs/translations/nl.json +6 -0
- package/libs/select/lib/cjs/translations/pl.json +6 -0
- package/libs/select/lib/cjs/translations/pt.json +6 -0
- package/libs/select/lib/cjs/translations/sv.json +6 -0
- package/libs/select/lib/cjs/translations/tr.json +6 -0
- package/libs/select/lib/cjs/translations/vi.json +6 -0
- package/libs/select/lib/cjs/translations/zh.json +6 -0
- package/libs/select/lib/es6/InputSearch.js +146 -0
- package/libs/select/lib/es6/InputSearch.js.map +1 -0
- package/libs/select/lib/es6/Select.js +401 -0
- package/libs/select/lib/es6/Select.js.map +1 -0
- package/libs/select/lib/es6/context.js +3 -0
- package/libs/select/lib/es6/context.js.map +1 -0
- package/libs/select/lib/es6/index.d.js +2 -0
- package/libs/select/lib/es6/index.d.js.map +1 -0
- package/libs/select/lib/es6/index.js +3 -0
- package/libs/select/lib/es6/index.js.map +1 -0
- package/libs/select/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/select/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/select/lib/es6/translations/de.json +6 -0
- package/libs/select/lib/es6/translations/en.json +6 -0
- package/libs/select/lib/es6/translations/es.json +6 -0
- package/libs/select/lib/es6/translations/fr.json +6 -0
- package/libs/select/lib/es6/translations/it.json +6 -0
- package/libs/select/lib/es6/translations/ja.json +6 -0
- package/libs/select/lib/es6/translations/ko.json +6 -0
- package/libs/select/lib/es6/translations/nl.json +6 -0
- package/libs/select/lib/es6/translations/pl.json +6 -0
- package/libs/select/lib/es6/translations/pt.json +6 -0
- package/libs/select/lib/es6/translations/sv.json +6 -0
- package/libs/select/lib/es6/translations/tr.json +6 -0
- package/libs/select/lib/es6/translations/vi.json +6 -0
- package/libs/select/lib/es6/translations/zh.json +6 -0
- package/libs/select/lib/types/index.d.ts +162 -0
- package/libs/side-panel/lib/cjs/SidePanel.js +270 -0
- package/libs/side-panel/lib/cjs/SidePanel.js.map +1 -0
- package/libs/side-panel/lib/cjs/index.d.js +2 -0
- package/libs/side-panel/lib/cjs/index.d.js.map +1 -0
- package/libs/side-panel/lib/cjs/index.js +14 -0
- package/libs/side-panel/lib/cjs/index.js.map +1 -0
- package/libs/side-panel/lib/es6/SidePanel.js +271 -0
- package/libs/side-panel/lib/es6/SidePanel.js.map +1 -0
- package/libs/side-panel/lib/es6/index.d.js +2 -0
- package/libs/side-panel/lib/es6/index.d.js.map +1 -0
- package/libs/side-panel/lib/es6/index.js +2 -0
- package/libs/side-panel/lib/es6/index.js.map +1 -0
- package/libs/side-panel/lib/types/index.d.ts +85 -0
- package/libs/skeleton/lib/cjs/Charts/Area.js +44 -0
- package/libs/skeleton/lib/cjs/Charts/Area.js.map +1 -0
- package/libs/skeleton/lib/cjs/Charts/Bar.js +54 -0
- package/libs/skeleton/lib/cjs/Charts/Bar.js.map +1 -0
- package/libs/skeleton/lib/cjs/Charts/Bubble.js +38 -0
- package/libs/skeleton/lib/cjs/Charts/Bubble.js.map +1 -0
- package/libs/skeleton/lib/cjs/Charts/Donut.js +48 -0
- package/libs/skeleton/lib/cjs/Charts/Donut.js.map +1 -0
- package/libs/skeleton/lib/cjs/Charts/Histogram.js +54 -0
- package/libs/skeleton/lib/cjs/Charts/Histogram.js.map +1 -0
- package/libs/skeleton/lib/cjs/Charts/Line.js +44 -0
- package/libs/skeleton/lib/cjs/Charts/Line.js.map +1 -0
- package/libs/skeleton/lib/cjs/Charts/RadialTree.js +38 -0
- package/libs/skeleton/lib/cjs/Charts/RadialTree.js.map +1 -0
- package/libs/skeleton/lib/cjs/Charts/ScatterPlot.js +38 -0
- package/libs/skeleton/lib/cjs/Charts/ScatterPlot.js.map +1 -0
- package/libs/skeleton/lib/cjs/Charts/Venn.js +38 -0
- package/libs/skeleton/lib/cjs/Charts/Venn.js.map +1 -0
- package/libs/skeleton/lib/cjs/Charts/index.js +70 -0
- package/libs/skeleton/lib/cjs/Charts/index.js.map +1 -0
- package/libs/skeleton/lib/cjs/Skeleton.d.js +2 -0
- package/libs/skeleton/lib/cjs/Skeleton.d.js.map +1 -0
- package/libs/skeleton/lib/cjs/Skeleton.js +165 -0
- package/libs/skeleton/lib/cjs/Skeleton.js.map +1 -0
- package/libs/skeleton/lib/cjs/index.d.js +2 -0
- package/libs/skeleton/lib/cjs/index.d.js.map +1 -0
- package/libs/skeleton/lib/cjs/index.js +27 -0
- package/libs/skeleton/lib/cjs/index.js.map +1 -0
- package/libs/skeleton/lib/cjs/svg/area-chart-linear.svg +3 -0
- package/libs/skeleton/lib/cjs/svg/area-chart-monotone.svg +3 -0
- package/libs/skeleton/lib/cjs/svg/bar-chart-horizontal.svg +6 -0
- package/libs/skeleton/lib/cjs/svg/bar-chart-vertical.svg +7 -0
- package/libs/skeleton/lib/cjs/svg/bubble-chart.svg +7 -0
- package/libs/skeleton/lib/cjs/svg/donut-chart-halfsize.svg +4 -0
- package/libs/skeleton/lib/cjs/svg/donut-chart.svg +9 -0
- package/libs/skeleton/lib/cjs/svg/histogram-chart-horizontal.svg +6 -0
- package/libs/skeleton/lib/cjs/svg/histogram-chart-vertical.svg +7 -0
- package/libs/skeleton/lib/cjs/svg/line-chart-linear.svg +10 -0
- package/libs/skeleton/lib/cjs/svg/line-chart-monotone.svg +3 -0
- package/libs/skeleton/lib/cjs/svg/radial-chart.svg +19 -0
- package/libs/skeleton/lib/cjs/svg/scatter-plot-chart.svg +16 -0
- package/libs/skeleton/lib/cjs/svg/venn-chart.svg +13 -0
- package/libs/skeleton/lib/es6/Charts/Area.js +37 -0
- package/libs/skeleton/lib/es6/Charts/Area.js.map +1 -0
- package/libs/skeleton/lib/es6/Charts/Bar.js +47 -0
- package/libs/skeleton/lib/es6/Charts/Bar.js.map +1 -0
- package/libs/skeleton/lib/es6/Charts/Bubble.js +31 -0
- package/libs/skeleton/lib/es6/Charts/Bubble.js.map +1 -0
- package/libs/skeleton/lib/es6/Charts/Donut.js +41 -0
- package/libs/skeleton/lib/es6/Charts/Donut.js.map +1 -0
- package/libs/skeleton/lib/es6/Charts/Histogram.js +47 -0
- package/libs/skeleton/lib/es6/Charts/Histogram.js.map +1 -0
- package/libs/skeleton/lib/es6/Charts/Line.js +37 -0
- package/libs/skeleton/lib/es6/Charts/Line.js.map +1 -0
- package/libs/skeleton/lib/es6/Charts/RadialTree.js +31 -0
- package/libs/skeleton/lib/es6/Charts/RadialTree.js.map +1 -0
- package/libs/skeleton/lib/es6/Charts/ScatterPlot.js +31 -0
- package/libs/skeleton/lib/es6/Charts/ScatterPlot.js.map +1 -0
- package/libs/skeleton/lib/es6/Charts/Venn.js +31 -0
- package/libs/skeleton/lib/es6/Charts/Venn.js.map +1 -0
- package/libs/skeleton/lib/es6/Charts/index.js +10 -0
- package/libs/skeleton/lib/es6/Charts/index.js.map +1 -0
- package/libs/skeleton/lib/es6/Skeleton.d.js +2 -0
- package/libs/skeleton/lib/es6/Skeleton.d.js.map +1 -0
- package/libs/skeleton/lib/es6/Skeleton.js +159 -0
- package/libs/skeleton/lib/es6/Skeleton.js.map +1 -0
- package/libs/skeleton/lib/es6/index.d.js +2 -0
- package/libs/skeleton/lib/es6/index.d.js.map +1 -0
- package/libs/skeleton/lib/es6/index.js +3 -0
- package/libs/skeleton/lib/es6/index.js.map +1 -0
- package/libs/skeleton/lib/es6/svg/area-chart-linear.svg +3 -0
- package/libs/skeleton/lib/es6/svg/area-chart-monotone.svg +3 -0
- package/libs/skeleton/lib/es6/svg/bar-chart-horizontal.svg +6 -0
- package/libs/skeleton/lib/es6/svg/bar-chart-vertical.svg +7 -0
- package/libs/skeleton/lib/es6/svg/bubble-chart.svg +7 -0
- package/libs/skeleton/lib/es6/svg/donut-chart-halfsize.svg +4 -0
- package/libs/skeleton/lib/es6/svg/donut-chart.svg +9 -0
- package/libs/skeleton/lib/es6/svg/histogram-chart-horizontal.svg +6 -0
- package/libs/skeleton/lib/es6/svg/histogram-chart-vertical.svg +7 -0
- package/libs/skeleton/lib/es6/svg/line-chart-linear.svg +10 -0
- package/libs/skeleton/lib/es6/svg/line-chart-monotone.svg +3 -0
- package/libs/skeleton/lib/es6/svg/radial-chart.svg +19 -0
- package/libs/skeleton/lib/es6/svg/scatter-plot-chart.svg +16 -0
- package/libs/skeleton/lib/es6/svg/venn-chart.svg +13 -0
- package/libs/skeleton/lib/types/Skeleton.d.ts +4 -0
- package/libs/skeleton/lib/types/index.d.ts +86 -0
- package/libs/slider/lib/cjs/Slider.js +312 -0
- package/libs/slider/lib/cjs/Slider.js.map +1 -0
- package/libs/slider/lib/cjs/index.d.js +2 -0
- package/libs/slider/lib/cjs/index.d.js.map +1 -0
- package/libs/slider/lib/cjs/index.js +14 -0
- package/libs/slider/lib/cjs/index.js.map +1 -0
- package/libs/slider/lib/es6/Slider.js +309 -0
- package/libs/slider/lib/es6/Slider.js.map +1 -0
- package/libs/slider/lib/es6/index.d.js +2 -0
- package/libs/slider/lib/es6/index.d.js.map +1 -0
- package/libs/slider/lib/es6/index.js +2 -0
- package/libs/slider/lib/es6/index.js.map +1 -0
- package/libs/slider/lib/types/index.d.ts +83 -0
- package/libs/spin/lib/cjs/Spin.js +74 -0
- package/libs/spin/lib/cjs/Spin.js.map +1 -0
- package/libs/spin/lib/cjs/index.d.js +2 -0
- package/libs/spin/lib/cjs/index.d.js.map +1 -0
- package/libs/spin/lib/cjs/index.js +14 -0
- package/libs/spin/lib/cjs/index.js.map +1 -0
- package/libs/spin/lib/es6/Spin.js +67 -0
- package/libs/spin/lib/es6/Spin.js.map +1 -0
- package/libs/spin/lib/es6/index.d.js +2 -0
- package/libs/spin/lib/es6/index.d.js.map +1 -0
- package/libs/spin/lib/es6/index.js +2 -0
- package/libs/spin/lib/es6/index.js.map +1 -0
- package/libs/spin/lib/types/index.d.ts +26 -0
- package/libs/spin-container/lib/cjs/SpinContainer.js +142 -0
- package/libs/spin-container/lib/cjs/SpinContainer.js.map +1 -0
- package/libs/spin-container/lib/cjs/index.d.js +2 -0
- package/libs/spin-container/lib/cjs/index.d.js.map +1 -0
- package/libs/spin-container/lib/cjs/index.js +14 -0
- package/libs/spin-container/lib/cjs/index.js.map +1 -0
- package/libs/spin-container/lib/es6/SpinContainer.js +137 -0
- package/libs/spin-container/lib/es6/SpinContainer.js.map +1 -0
- package/libs/spin-container/lib/es6/index.d.js +2 -0
- package/libs/spin-container/lib/es6/index.d.js.map +1 -0
- package/libs/spin-container/lib/es6/index.js +2 -0
- package/libs/spin-container/lib/es6/index.js.map +1 -0
- package/libs/spin-container/lib/types/index.d.ts +52 -0
- package/libs/sticky/lib/cjs/Sticky.js +53 -0
- package/libs/sticky/lib/cjs/Sticky.js.map +1 -0
- package/libs/sticky/lib/cjs/index.js +26 -0
- package/libs/sticky/lib/cjs/index.js.map +1 -0
- package/libs/sticky/lib/es6/Sticky.js +46 -0
- package/libs/sticky/lib/es6/Sticky.js.map +1 -0
- package/libs/sticky/lib/es6/index.js +3 -0
- package/libs/sticky/lib/es6/index.js.map +1 -0
- package/libs/sticky/lib/types/Sticky.d.ts +17 -0
- package/libs/sticky/lib/types/index.d.ts +2 -0
- package/libs/switch/lib/cjs/Switch.js +287 -0
- package/libs/switch/lib/cjs/Switch.js.map +1 -0
- package/libs/switch/lib/cjs/index.d.js +13 -0
- package/libs/switch/lib/cjs/index.d.js.map +1 -0
- package/libs/switch/lib/cjs/index.js +26 -0
- package/libs/switch/lib/cjs/index.js.map +1 -0
- package/libs/switch/lib/es6/Switch.js +276 -0
- package/libs/switch/lib/es6/Switch.js.map +1 -0
- package/libs/switch/lib/es6/index.d.js +3 -0
- package/libs/switch/lib/es6/index.d.js.map +1 -0
- package/libs/switch/lib/es6/index.js +3 -0
- package/libs/switch/lib/es6/index.js.map +1 -0
- package/libs/switch/lib/types/index.d.ts +61 -0
- package/libs/tab-line/lib/cjs/TabLine.js +261 -0
- package/libs/tab-line/lib/cjs/TabLine.js.map +1 -0
- package/libs/tab-line/lib/cjs/index.d.js +2 -0
- package/libs/tab-line/lib/cjs/index.d.js.map +1 -0
- package/libs/tab-line/lib/cjs/index.js +14 -0
- package/libs/tab-line/lib/cjs/index.js.map +1 -0
- package/libs/tab-line/lib/es6/TabLine.js +257 -0
- package/libs/tab-line/lib/es6/TabLine.js.map +1 -0
- package/libs/tab-line/lib/es6/index.d.js +2 -0
- package/libs/tab-line/lib/es6/index.d.js.map +1 -0
- package/libs/tab-line/lib/es6/index.js +2 -0
- package/libs/tab-line/lib/es6/index.js.map +1 -0
- package/libs/tab-line/lib/types/index.d.ts +93 -0
- package/libs/tab-panel/lib/cjs/TabPanel.js +154 -0
- package/libs/tab-panel/lib/cjs/TabPanel.js.map +1 -0
- package/libs/tab-panel/lib/cjs/index.d.js +2 -0
- package/libs/tab-panel/lib/cjs/index.d.js.map +1 -0
- package/libs/tab-panel/lib/cjs/index.js +14 -0
- package/libs/tab-panel/lib/cjs/index.js.map +1 -0
- package/libs/tab-panel/lib/es6/TabPanel.js +150 -0
- package/libs/tab-panel/lib/es6/TabPanel.js.map +1 -0
- package/libs/tab-panel/lib/es6/index.d.js +2 -0
- package/libs/tab-panel/lib/es6/index.d.js.map +1 -0
- package/libs/tab-panel/lib/es6/index.js +2 -0
- package/libs/tab-panel/lib/es6/index.js.map +1 -0
- package/libs/tab-panel/lib/types/index.d.ts +81 -0
- package/libs/tag/lib/cjs/Tag.js +207 -0
- package/libs/tag/lib/cjs/Tag.js.map +1 -0
- package/libs/tag/lib/cjs/index.d.js +2 -0
- package/libs/tag/lib/cjs/index.d.js.map +1 -0
- package/libs/tag/lib/cjs/index.js +14 -0
- package/libs/tag/lib/cjs/index.js.map +1 -0
- package/libs/tag/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/tag/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/tag/lib/cjs/translations/de.json +3 -0
- package/libs/tag/lib/cjs/translations/en.json +3 -0
- package/libs/tag/lib/cjs/translations/es.json +3 -0
- package/libs/tag/lib/cjs/translations/fr.json +3 -0
- package/libs/tag/lib/cjs/translations/it.json +3 -0
- package/libs/tag/lib/cjs/translations/ja.json +3 -0
- package/libs/tag/lib/cjs/translations/ko.json +3 -0
- package/libs/tag/lib/cjs/translations/nl.json +3 -0
- package/libs/tag/lib/cjs/translations/pl.json +3 -0
- package/libs/tag/lib/cjs/translations/pt.json +3 -0
- package/libs/tag/lib/cjs/translations/sv.json +3 -0
- package/libs/tag/lib/cjs/translations/tr.json +3 -0
- package/libs/tag/lib/cjs/translations/vi.json +3 -0
- package/libs/tag/lib/cjs/translations/zh.json +3 -0
- package/libs/tag/lib/es6/Tag.js +204 -0
- package/libs/tag/lib/es6/Tag.js.map +1 -0
- package/libs/tag/lib/es6/index.d.js +2 -0
- package/libs/tag/lib/es6/index.d.js.map +1 -0
- package/libs/tag/lib/es6/index.js +2 -0
- package/libs/tag/lib/es6/index.js.map +1 -0
- package/libs/tag/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/tag/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/tag/lib/es6/translations/de.json +3 -0
- package/libs/tag/lib/es6/translations/en.json +3 -0
- package/libs/tag/lib/es6/translations/es.json +3 -0
- package/libs/tag/lib/es6/translations/fr.json +3 -0
- package/libs/tag/lib/es6/translations/it.json +3 -0
- package/libs/tag/lib/es6/translations/ja.json +3 -0
- package/libs/tag/lib/es6/translations/ko.json +3 -0
- package/libs/tag/lib/es6/translations/nl.json +3 -0
- package/libs/tag/lib/es6/translations/pl.json +3 -0
- package/libs/tag/lib/es6/translations/pt.json +3 -0
- package/libs/tag/lib/es6/translations/sv.json +3 -0
- package/libs/tag/lib/es6/translations/tr.json +3 -0
- package/libs/tag/lib/es6/translations/vi.json +3 -0
- package/libs/tag/lib/es6/translations/zh.json +3 -0
- package/libs/tag/lib/types/index.d.ts +88 -0
- package/libs/textarea/lib/cjs/Textarea.js +151 -0
- package/libs/textarea/lib/cjs/Textarea.js.map +1 -0
- package/libs/textarea/lib/cjs/index.d.js +2 -0
- package/libs/textarea/lib/cjs/index.d.js.map +1 -0
- package/libs/textarea/lib/cjs/index.js +14 -0
- package/libs/textarea/lib/cjs/index.js.map +1 -0
- package/libs/textarea/lib/es6/Textarea.js +144 -0
- package/libs/textarea/lib/es6/Textarea.js.map +1 -0
- package/libs/textarea/lib/es6/index.d.js +2 -0
- package/libs/textarea/lib/es6/index.d.js.map +1 -0
- package/libs/textarea/lib/es6/index.js +2 -0
- package/libs/textarea/lib/es6/index.js.map +1 -0
- package/libs/textarea/lib/types/index.d.ts +45 -0
- package/libs/time-picker/lib/cjs/PickerFormat.js +55 -0
- package/libs/time-picker/lib/cjs/PickerFormat.js.map +1 -0
- package/libs/time-picker/lib/cjs/PickerInput.js +306 -0
- package/libs/time-picker/lib/cjs/PickerInput.js.map +1 -0
- package/libs/time-picker/lib/cjs/TimePicker.js +338 -0
- package/libs/time-picker/lib/cjs/TimePicker.js.map +1 -0
- package/libs/time-picker/lib/cjs/index.d.js +2 -0
- package/libs/time-picker/lib/cjs/index.d.js.map +1 -0
- package/libs/time-picker/lib/cjs/index.js +26 -0
- package/libs/time-picker/lib/cjs/index.js.map +1 -0
- package/libs/time-picker/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/time-picker/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/time-picker/lib/cjs/translations/de.json +7 -0
- package/libs/time-picker/lib/cjs/translations/en.json +7 -0
- package/libs/time-picker/lib/cjs/translations/es.json +7 -0
- package/libs/time-picker/lib/cjs/translations/fr.json +7 -0
- package/libs/time-picker/lib/cjs/translations/it.json +7 -0
- package/libs/time-picker/lib/cjs/translations/ja.json +7 -0
- package/libs/time-picker/lib/cjs/translations/ko.json +7 -0
- package/libs/time-picker/lib/cjs/translations/nl.json +7 -0
- package/libs/time-picker/lib/cjs/translations/pl.json +7 -0
- package/libs/time-picker/lib/cjs/translations/pt.json +7 -0
- package/libs/time-picker/lib/cjs/translations/sv.json +7 -0
- package/libs/time-picker/lib/cjs/translations/tr.json +7 -0
- package/libs/time-picker/lib/cjs/translations/vi.json +7 -0
- package/libs/time-picker/lib/cjs/translations/zh.json +7 -0
- package/libs/time-picker/lib/es6/PickerFormat.js +48 -0
- package/libs/time-picker/lib/es6/PickerFormat.js.map +1 -0
- package/libs/time-picker/lib/es6/PickerInput.js +299 -0
- package/libs/time-picker/lib/es6/PickerInput.js.map +1 -0
- package/libs/time-picker/lib/es6/TimePicker.js +327 -0
- package/libs/time-picker/lib/es6/TimePicker.js.map +1 -0
- package/libs/time-picker/lib/es6/index.d.js +2 -0
- package/libs/time-picker/lib/es6/index.d.js.map +1 -0
- package/libs/time-picker/lib/es6/index.js +3 -0
- package/libs/time-picker/lib/es6/index.js.map +1 -0
- package/libs/time-picker/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/time-picker/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/time-picker/lib/es6/translations/de.json +7 -0
- package/libs/time-picker/lib/es6/translations/en.json +7 -0
- package/libs/time-picker/lib/es6/translations/es.json +7 -0
- package/libs/time-picker/lib/es6/translations/fr.json +7 -0
- package/libs/time-picker/lib/es6/translations/it.json +7 -0
- package/libs/time-picker/lib/es6/translations/ja.json +7 -0
- package/libs/time-picker/lib/es6/translations/ko.json +7 -0
- package/libs/time-picker/lib/es6/translations/nl.json +7 -0
- package/libs/time-picker/lib/es6/translations/pl.json +7 -0
- package/libs/time-picker/lib/es6/translations/pt.json +7 -0
- package/libs/time-picker/lib/es6/translations/sv.json +7 -0
- package/libs/time-picker/lib/es6/translations/tr.json +7 -0
- package/libs/time-picker/lib/es6/translations/vi.json +7 -0
- package/libs/time-picker/lib/es6/translations/zh.json +7 -0
- package/libs/time-picker/lib/types/index.d.ts +63 -0
- package/libs/tooltip/lib/cjs/Tooltip.js +158 -0
- package/libs/tooltip/lib/cjs/Tooltip.js.map +1 -0
- package/libs/tooltip/lib/cjs/index.d.js +2 -0
- package/libs/tooltip/lib/cjs/index.d.js.map +1 -0
- package/libs/tooltip/lib/cjs/index.js +14 -0
- package/libs/tooltip/lib/cjs/index.js.map +1 -0
- package/libs/tooltip/lib/es6/Tooltip.js +153 -0
- package/libs/tooltip/lib/es6/Tooltip.js.map +1 -0
- package/libs/tooltip/lib/es6/index.d.js +2 -0
- package/libs/tooltip/lib/es6/index.d.js.map +1 -0
- package/libs/tooltip/lib/es6/index.js +2 -0
- package/libs/tooltip/lib/es6/index.js.map +1 -0
- package/libs/tooltip/lib/types/index.d.ts +29 -0
- package/libs/typography/lib/cjs/Blockquote.js +35 -0
- package/libs/typography/lib/cjs/Blockquote.js.map +1 -0
- package/libs/typography/lib/cjs/Hint.js +86 -0
- package/libs/typography/lib/cjs/Hint.js.map +1 -0
- package/libs/typography/lib/cjs/List.js +81 -0
- package/libs/typography/lib/cjs/List.js.map +1 -0
- package/libs/typography/lib/cjs/Text.js +77 -0
- package/libs/typography/lib/cjs/Text.js.map +1 -0
- package/libs/typography/lib/cjs/index.d.js +2 -0
- package/libs/typography/lib/cjs/index.d.js.map +1 -0
- package/libs/typography/lib/cjs/index.js +35 -0
- package/libs/typography/lib/cjs/index.js.map +1 -0
- package/libs/typography/lib/es6/Blockquote.js +29 -0
- package/libs/typography/lib/es6/Blockquote.js.map +1 -0
- package/libs/typography/lib/es6/Hint.js +81 -0
- package/libs/typography/lib/es6/Hint.js.map +1 -0
- package/libs/typography/lib/es6/List.js +75 -0
- package/libs/typography/lib/es6/List.js.map +1 -0
- package/libs/typography/lib/es6/Text.js +71 -0
- package/libs/typography/lib/es6/Text.js.map +1 -0
- package/libs/typography/lib/es6/index.d.js +2 -0
- package/libs/typography/lib/es6/index.d.js.map +1 -0
- package/libs/typography/lib/es6/index.js +5 -0
- package/libs/typography/lib/es6/index.js.map +1 -0
- package/libs/typography/lib/types/index.d.ts +108 -0
- package/libs/utils/lib/CSSinJS.d.ts +5 -0
- package/libs/utils/lib/CSSinJS.js +36 -0
- package/libs/utils/lib/CSSinJS.js.map +1 -0
- package/libs/utils/lib/CSSinJS.mjs +28 -0
- package/libs/utils/lib/CSSinJS.mjs.map +1 -0
- package/libs/utils/lib/ScreenReaderOnly.d.ts +5 -0
- package/libs/utils/lib/ScreenReaderOnly.js +29 -0
- package/libs/utils/lib/ScreenReaderOnly.js.map +1 -0
- package/libs/utils/lib/ScreenReaderOnly.mjs +21 -0
- package/libs/utils/lib/ScreenReaderOnly.mjs.map +1 -0
- package/libs/utils/lib/ThemeProvider.d.ts +13 -0
- package/libs/utils/lib/ThemeProvider.js +74 -0
- package/libs/utils/lib/ThemeProvider.js.map +1 -0
- package/libs/utils/lib/ThemeProvider.mjs +63 -0
- package/libs/utils/lib/ThemeProvider.mjs.map +1 -0
- package/libs/utils/lib/addonText.d.ts +2 -0
- package/libs/utils/lib/addonText.js +18 -0
- package/libs/utils/lib/addonText.js.map +1 -0
- package/libs/utils/lib/addonText.mjs +11 -0
- package/libs/utils/lib/addonText.mjs.map +1 -0
- package/libs/utils/lib/addonTextChildren.d.ts +3 -0
- package/libs/utils/lib/addonTextChildren.js +47 -0
- package/libs/utils/lib/addonTextChildren.js.map +1 -0
- package/libs/utils/lib/addonTextChildren.mjs +38 -0
- package/libs/utils/lib/addonTextChildren.mjs.map +1 -0
- package/libs/utils/lib/assignProps.d.ts +13 -0
- package/libs/utils/lib/assignProps.js +93 -0
- package/libs/utils/lib/assignProps.js.map +1 -0
- package/libs/utils/lib/assignProps.mjs +84 -0
- package/libs/utils/lib/assignProps.mjs.map +1 -0
- package/libs/utils/lib/canUseDOM.d.ts +1 -0
- package/libs/utils/lib/canUseDOM.js +10 -0
- package/libs/utils/lib/canUseDOM.js.map +1 -0
- package/libs/utils/lib/canUseDOM.mjs +4 -0
- package/libs/utils/lib/canUseDOM.mjs.map +1 -0
- package/libs/utils/lib/capitalizeFirstLetter.d.ts +1 -0
- package/libs/utils/lib/capitalizeFirstLetter.js +10 -0
- package/libs/utils/lib/capitalizeFirstLetter.js.map +1 -0
- package/libs/utils/lib/capitalizeFirstLetter.mjs +4 -0
- package/libs/utils/lib/capitalizeFirstLetter.mjs.map +1 -0
- package/libs/utils/lib/color.d.ts +6 -0
- package/libs/utils/lib/color.js +370 -0
- package/libs/utils/lib/color.js.map +1 -0
- package/libs/utils/lib/color.mjs +357 -0
- package/libs/utils/lib/color.mjs.map +1 -0
- package/libs/utils/lib/compose.d.ts +1 -0
- package/libs/utils/lib/compose.js +21 -0
- package/libs/utils/lib/compose.js.map +1 -0
- package/libs/utils/lib/compose.mjs +15 -0
- package/libs/utils/lib/compose.mjs.map +1 -0
- package/libs/utils/lib/createHoc.d.ts +3 -0
- package/libs/utils/lib/createHoc.js +55 -0
- package/libs/utils/lib/createHoc.js.map +1 -0
- package/libs/utils/lib/createHoc.mjs +46 -0
- package/libs/utils/lib/createHoc.mjs.map +1 -0
- package/libs/utils/lib/createUUID.d.ts +1 -0
- package/libs/utils/lib/createUUID.js +15 -0
- package/libs/utils/lib/createUUID.js.map +1 -0
- package/libs/utils/lib/createUUID.mjs +9 -0
- package/libs/utils/lib/createUUID.mjs.map +1 -0
- package/libs/utils/lib/cssToIntDefault.d.ts +8 -0
- package/libs/utils/lib/cssToIntDefault.js +22 -0
- package/libs/utils/lib/cssToIntDefault.js.map +1 -0
- package/libs/utils/lib/cssToIntDefault.mjs +16 -0
- package/libs/utils/lib/cssToIntDefault.mjs.map +1 -0
- package/libs/utils/lib/enhances/WithAutoFocus.d.ts +14 -0
- package/libs/utils/lib/enhances/WithAutoFocus.js +75 -0
- package/libs/utils/lib/enhances/WithAutoFocus.js.map +1 -0
- package/libs/utils/lib/enhances/WithAutoFocus.mjs +67 -0
- package/libs/utils/lib/enhances/WithAutoFocus.mjs.map +1 -0
- package/libs/utils/lib/enhances/WithCSS.d.ts +41 -0
- package/libs/utils/lib/enhances/WithCSS.js +93 -0
- package/libs/utils/lib/enhances/WithCSS.js.map +1 -0
- package/libs/utils/lib/enhances/WithCSS.mjs +79 -0
- package/libs/utils/lib/enhances/WithCSS.mjs.map +1 -0
- package/libs/utils/lib/enhances/WithI18n.d.ts +43 -0
- package/libs/utils/lib/enhances/WithI18n.js +85 -0
- package/libs/utils/lib/enhances/WithI18n.js.map +1 -0
- package/libs/utils/lib/enhances/WithI18n.mjs +73 -0
- package/libs/utils/lib/enhances/WithI18n.mjs.map +1 -0
- package/libs/utils/lib/enhances/WithKeyboardFocus.d.ts +45 -0
- package/libs/utils/lib/enhances/WithKeyboardFocus.js +93 -0
- package/libs/utils/lib/enhances/WithKeyboardFocus.js.map +1 -0
- package/libs/utils/lib/enhances/WithKeyboardFocus.mjs +84 -0
- package/libs/utils/lib/enhances/WithKeyboardFocus.mjs.map +1 -0
- package/libs/utils/lib/enhances/WithRef.d.ts +3 -0
- package/libs/utils/lib/enhances/WithRef.js +26 -0
- package/libs/utils/lib/enhances/WithRef.js.map +1 -0
- package/libs/utils/lib/enhances/WithRef.mjs +18 -0
- package/libs/utils/lib/enhances/WithRef.mjs.map +1 -0
- package/libs/utils/lib/enhances/a11yEnhance.d.ts +4 -0
- package/libs/utils/lib/enhances/a11yEnhance.js +74 -0
- package/libs/utils/lib/enhances/a11yEnhance.js.map +1 -0
- package/libs/utils/lib/enhances/a11yEnhance.mjs +66 -0
- package/libs/utils/lib/enhances/a11yEnhance.mjs.map +1 -0
- package/libs/utils/lib/enhances/animatedSizeEnhance.d.ts +12 -0
- package/libs/utils/lib/enhances/animatedSizeEnhance.js +98 -0
- package/libs/utils/lib/enhances/animatedSizeEnhance.js.map +1 -0
- package/libs/utils/lib/enhances/animatedSizeEnhance.mjs +90 -0
- package/libs/utils/lib/enhances/animatedSizeEnhance.mjs.map +1 -0
- package/libs/utils/lib/enhances/autoFocusEnhance.d.ts +10 -0
- package/libs/utils/lib/enhances/autoFocusEnhance.js +46 -0
- package/libs/utils/lib/enhances/autoFocusEnhance.js.map +1 -0
- package/libs/utils/lib/enhances/autoFocusEnhance.mjs +38 -0
- package/libs/utils/lib/enhances/autoFocusEnhance.mjs.map +1 -0
- package/libs/utils/lib/enhances/contextEnhance.d.ts +3 -0
- package/libs/utils/lib/enhances/contextEnhance.js +22 -0
- package/libs/utils/lib/enhances/contextEnhance.js.map +1 -0
- package/libs/utils/lib/enhances/contextEnhance.mjs +14 -0
- package/libs/utils/lib/enhances/contextEnhance.mjs.map +1 -0
- package/libs/utils/lib/enhances/i18nEnhance.d.ts +26 -0
- package/libs/utils/lib/enhances/i18nEnhance.js +133 -0
- package/libs/utils/lib/enhances/i18nEnhance.js.map +1 -0
- package/libs/utils/lib/enhances/i18nEnhance.mjs +122 -0
- package/libs/utils/lib/enhances/i18nEnhance.mjs.map +1 -0
- package/libs/utils/lib/enhances/keyboardFocusEnhance.d.ts +26 -0
- package/libs/utils/lib/enhances/keyboardFocusEnhance.js +114 -0
- package/libs/utils/lib/enhances/keyboardFocusEnhance.js.map +1 -0
- package/libs/utils/lib/enhances/keyboardFocusEnhance.mjs +105 -0
- package/libs/utils/lib/enhances/keyboardFocusEnhance.mjs.map +1 -0
- package/libs/utils/lib/enhances/resolveColorEnhance.d.ts +2 -0
- package/libs/utils/lib/enhances/resolveColorEnhance.js +25 -0
- package/libs/utils/lib/enhances/resolveColorEnhance.js.map +1 -0
- package/libs/utils/lib/enhances/resolveColorEnhance.mjs +17 -0
- package/libs/utils/lib/enhances/resolveColorEnhance.mjs.map +1 -0
- package/libs/utils/lib/eventEmitter.d.ts +5 -0
- package/libs/utils/lib/eventEmitter.js +49 -0
- package/libs/utils/lib/eventEmitter.js.map +1 -0
- package/libs/utils/lib/eventEmitter.mjs +42 -0
- package/libs/utils/lib/eventEmitter.mjs.map +1 -0
- package/libs/utils/lib/findComponent.d.ts +5 -0
- package/libs/utils/lib/findComponent.js +67 -0
- package/libs/utils/lib/findComponent.js.map +1 -0
- package/libs/utils/lib/findComponent.mjs +56 -0
- package/libs/utils/lib/findComponent.mjs.map +1 -0
- package/libs/utils/lib/fire.d.ts +2 -0
- package/libs/utils/lib/fire.js +23 -0
- package/libs/utils/lib/fire.js.map +1 -0
- package/libs/utils/lib/fire.mjs +15 -0
- package/libs/utils/lib/fire.mjs.map +1 -0
- package/libs/utils/lib/getDisplayName.d.ts +2 -0
- package/libs/utils/lib/getDisplayName.js +10 -0
- package/libs/utils/lib/getDisplayName.js.map +1 -0
- package/libs/utils/lib/getDisplayName.mjs +4 -0
- package/libs/utils/lib/getDisplayName.mjs.map +1 -0
- package/libs/utils/lib/getOriginChildren.d.ts +2 -0
- package/libs/utils/lib/getOriginChildren.js +20 -0
- package/libs/utils/lib/getOriginChildren.js.map +1 -0
- package/libs/utils/lib/getOriginChildren.mjs +11 -0
- package/libs/utils/lib/getOriginChildren.mjs.map +1 -0
- package/libs/utils/lib/getRandomInt.d.ts +1 -0
- package/libs/utils/lib/getRandomInt.js +11 -0
- package/libs/utils/lib/getRandomInt.js.map +1 -0
- package/libs/utils/lib/getRandomInt.mjs +5 -0
- package/libs/utils/lib/getRandomInt.mjs.map +1 -0
- package/libs/utils/lib/getValue.d.ts +1 -0
- package/libs/utils/lib/getValue.js +16 -0
- package/libs/utils/lib/getValue.js.map +1 -0
- package/libs/utils/lib/getValue.mjs +10 -0
- package/libs/utils/lib/getValue.mjs.map +1 -0
- package/libs/utils/lib/hasLabels.d.ts +7 -0
- package/libs/utils/lib/hasLabels.js +47 -0
- package/libs/utils/lib/hasLabels.js.map +1 -0
- package/libs/utils/lib/hasLabels.mjs +39 -0
- package/libs/utils/lib/hasLabels.mjs.map +1 -0
- package/libs/utils/lib/if.d.ts +11 -0
- package/libs/utils/lib/if.js +16 -0
- package/libs/utils/lib/if.js.map +1 -0
- package/libs/utils/lib/if.mjs +9 -0
- package/libs/utils/lib/if.mjs.map +1 -0
- package/libs/utils/lib/ifChildren.d.ts +8 -0
- package/libs/utils/lib/ifChildren.js +17 -0
- package/libs/utils/lib/ifChildren.js.map +1 -0
- package/libs/utils/lib/ifChildren.mjs +10 -0
- package/libs/utils/lib/ifChildren.mjs.map +1 -0
- package/libs/utils/lib/index.d.ts +0 -0
- package/libs/utils/lib/index.js +4 -0
- package/libs/utils/lib/index.js.map +1 -0
- package/libs/utils/lib/index.mjs +2 -0
- package/libs/utils/lib/index.mjs.map +1 -0
- package/libs/utils/lib/injectStyle.d.ts +2 -0
- package/libs/utils/lib/injectStyle.js +49 -0
- package/libs/utils/lib/injectStyle.js.map +1 -0
- package/libs/utils/lib/injectStyle.mjs +41 -0
- package/libs/utils/lib/injectStyle.mjs.map +1 -0
- package/libs/utils/lib/inputProps.d.ts +2 -0
- package/libs/utils/lib/inputProps.js +23 -0
- package/libs/utils/lib/inputProps.js.map +1 -0
- package/libs/utils/lib/inputProps.mjs +14 -0
- package/libs/utils/lib/inputProps.mjs.map +1 -0
- package/libs/utils/lib/isNode.d.ts +1 -0
- package/libs/utils/lib/isNode.js +28 -0
- package/libs/utils/lib/isNode.js.map +1 -0
- package/libs/utils/lib/isNode.mjs +21 -0
- package/libs/utils/lib/isNode.mjs.map +1 -0
- package/libs/utils/lib/isPromise.d.ts +1 -0
- package/libs/utils/lib/isPromise.js +10 -0
- package/libs/utils/lib/isPromise.js.map +1 -0
- package/libs/utils/lib/isPromise.mjs +4 -0
- package/libs/utils/lib/isPromise.mjs.map +1 -0
- package/libs/utils/lib/isRetina.d.ts +1 -0
- package/libs/utils/lib/isRetina.js +15 -0
- package/libs/utils/lib/isRetina.js.map +1 -0
- package/libs/utils/lib/isRetina.mjs +9 -0
- package/libs/utils/lib/isRetina.mjs.map +1 -0
- package/libs/utils/lib/logger.d.ts +9 -0
- package/libs/utils/lib/logger.js +40 -0
- package/libs/utils/lib/logger.js.map +1 -0
- package/libs/utils/lib/logger.mjs +32 -0
- package/libs/utils/lib/logger.mjs.map +1 -0
- package/libs/utils/lib/numericChecker.d.ts +5 -0
- package/libs/utils/lib/numericChecker.js +33 -0
- package/libs/utils/lib/numericChecker.js.map +1 -0
- package/libs/utils/lib/numericChecker.mjs +27 -0
- package/libs/utils/lib/numericChecker.mjs.map +1 -0
- package/libs/utils/lib/ownerDocument.d.ts +1 -0
- package/libs/utils/lib/ownerDocument.js +10 -0
- package/libs/utils/lib/ownerDocument.js.map +1 -0
- package/libs/utils/lib/ownerDocument.mjs +4 -0
- package/libs/utils/lib/ownerDocument.mjs.map +1 -0
- package/libs/utils/lib/pick.d.ts +1 -0
- package/libs/utils/lib/pick.js +19 -0
- package/libs/utils/lib/pick.js.map +1 -0
- package/libs/utils/lib/pick.mjs +13 -0
- package/libs/utils/lib/pick.mjs.map +1 -0
- package/libs/utils/lib/propsForElement.d.ts +14 -0
- package/libs/utils/lib/propsForElement.js +79 -0
- package/libs/utils/lib/propsForElement.js.map +1 -0
- package/libs/utils/lib/propsForElement.mjs +70 -0
- package/libs/utils/lib/propsForElement.mjs.map +1 -0
- package/libs/utils/lib/rafTrottle.d.ts +2 -0
- package/libs/utils/lib/rafTrottle.js +33 -0
- package/libs/utils/lib/rafTrottle.js.map +1 -0
- package/libs/utils/lib/rafTrottle.mjs +26 -0
- package/libs/utils/lib/rafTrottle.mjs.map +1 -0
- package/libs/utils/lib/reactToText.d.ts +3 -0
- package/libs/utils/lib/reactToText.js +28 -0
- package/libs/utils/lib/reactToText.js.map +1 -0
- package/libs/utils/lib/reactToText.mjs +21 -0
- package/libs/utils/lib/reactToText.mjs.map +1 -0
- package/libs/utils/lib/ref.d.ts +8 -0
- package/libs/utils/lib/ref.js +94 -0
- package/libs/utils/lib/ref.js.map +1 -0
- package/libs/utils/lib/ref.mjs +82 -0
- package/libs/utils/lib/ref.mjs.map +1 -0
- package/libs/utils/lib/setRef.d.ts +2 -0
- package/libs/utils/lib/setRef.js +10 -0
- package/libs/utils/lib/setRef.js.map +1 -0
- package/libs/utils/lib/setRef.mjs +3 -0
- package/libs/utils/lib/setRef.mjs.map +1 -0
- package/libs/utils/lib/syncScroll.d.ts +1 -0
- package/libs/utils/lib/syncScroll.js +61 -0
- package/libs/utils/lib/syncScroll.js.map +1 -0
- package/libs/utils/lib/syncScroll.mjs +54 -0
- package/libs/utils/lib/syncScroll.mjs.map +1 -0
- package/libs/utils/lib/themes/auto.css +1422 -0
- package/libs/utils/lib/themes/dark.css +701 -0
- package/libs/utils/lib/themes/dark.json +363 -0
- package/libs/utils/lib/themes/default.css +721 -0
- package/libs/utils/lib/themes/default.json +367 -0
- package/libs/utils/lib/themes/light.css +721 -0
- package/libs/utils/lib/themes/light.json +367 -0
- package/libs/utils/lib/uncontroll.d.ts +4 -0
- package/libs/utils/lib/uncontroll.js +47 -0
- package/libs/utils/lib/uncontroll.js.map +1 -0
- package/libs/utils/lib/uncontroll.mjs +38 -0
- package/libs/utils/lib/uncontroll.mjs.map +1 -0
- package/libs/utils/lib/uniqueID.d.ts +12 -0
- package/libs/utils/lib/uniqueID.js +43 -0
- package/libs/utils/lib/uniqueID.js.map +1 -0
- package/libs/utils/lib/uniqueID.mjs +33 -0
- package/libs/utils/lib/uniqueID.mjs.map +1 -0
- package/libs/utils/lib/use/useColorResolver.d.ts +1 -0
- package/libs/utils/lib/use/useColorResolver.js +208 -0
- package/libs/utils/lib/use/useColorResolver.js.map +1 -0
- package/libs/utils/lib/use/useColorResolver.mjs +200 -0
- package/libs/utils/lib/use/useColorResolver.mjs.map +1 -0
- package/libs/utils/lib/use/useCss.d.ts +4 -0
- package/libs/utils/lib/use/useCss.js +20 -0
- package/libs/utils/lib/use/useCss.js.map +1 -0
- package/libs/utils/lib/use/useCss.mjs +12 -0
- package/libs/utils/lib/use/useCss.mjs.map +1 -0
- package/libs/utils/lib/use/useEnhancedEffect.d.ts +3 -0
- package/libs/utils/lib/use/useEnhancedEffect.js +13 -0
- package/libs/utils/lib/use/useEnhancedEffect.js.map +1 -0
- package/libs/utils/lib/use/useEnhancedEffect.mjs +5 -0
- package/libs/utils/lib/use/useEnhancedEffect.mjs.map +1 -0
- package/libs/utils/lib/use/useEventCallback.d.ts +4 -0
- package/libs/utils/lib/use/useEventCallback.js +25 -0
- package/libs/utils/lib/use/useEventCallback.js.map +1 -0
- package/libs/utils/lib/use/useEventCallback.mjs +19 -0
- package/libs/utils/lib/use/useEventCallback.mjs.map +1 -0
- package/libs/utils/lib/use/useEventListener.d.ts +2 -0
- package/libs/utils/lib/use/useEventListener.js +33 -0
- package/libs/utils/lib/use/useEventListener.js.map +1 -0
- package/libs/utils/lib/use/useEventListener.mjs +25 -0
- package/libs/utils/lib/use/useEventListener.mjs.map +1 -0
- package/libs/utils/lib/use/useFocusLock.d.ts +4 -0
- package/libs/utils/lib/use/useFocusLock.js +293 -0
- package/libs/utils/lib/use/useFocusLock.js.map +1 -0
- package/libs/utils/lib/use/useFocusLock.mjs +282 -0
- package/libs/utils/lib/use/useFocusLock.mjs.map +1 -0
- package/libs/utils/lib/use/usePreventScroll.d.ts +2 -0
- package/libs/utils/lib/use/usePreventScroll.js +78 -0
- package/libs/utils/lib/use/usePreventScroll.js.map +1 -0
- package/libs/utils/lib/use/usePreventScroll.mjs +70 -0
- package/libs/utils/lib/use/usePreventScroll.mjs.map +1 -0
- package/libs/utils/lib/useCssVariable.d.ts +8 -0
- package/libs/utils/lib/useCssVariable.js +55 -0
- package/libs/utils/lib/useCssVariable.js.map +1 -0
- package/libs/utils/lib/useCssVariable.mjs +46 -0
- package/libs/utils/lib/useCssVariable.mjs.map +1 -0
- package/libs/widget-empty/lib/cjs/Error/index.js +49 -0
- package/libs/widget-empty/lib/cjs/Error/index.js.map +1 -0
- package/libs/widget-empty/lib/cjs/Error/translations/__intergalactic-dynamic-locales.js +41 -0
- package/libs/widget-empty/lib/cjs/Error/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/widget-empty/lib/cjs/Error/translations/de.json +4 -0
- package/libs/widget-empty/lib/cjs/Error/translations/en.json +4 -0
- package/libs/widget-empty/lib/cjs/Error/translations/es.json +4 -0
- package/libs/widget-empty/lib/cjs/Error/translations/fr.json +4 -0
- package/libs/widget-empty/lib/cjs/Error/translations/it.json +4 -0
- package/libs/widget-empty/lib/cjs/Error/translations/ja.json +4 -0
- package/libs/widget-empty/lib/cjs/Error/translations/ko.json +4 -0
- package/libs/widget-empty/lib/cjs/Error/translations/nl.json +4 -0
- package/libs/widget-empty/lib/cjs/Error/translations/pl.json +4 -0
- package/libs/widget-empty/lib/cjs/Error/translations/pt.json +4 -0
- package/libs/widget-empty/lib/cjs/Error/translations/ru.json +4 -0
- package/libs/widget-empty/lib/cjs/Error/translations/sv.json +4 -0
- package/libs/widget-empty/lib/cjs/Error/translations/tr.json +4 -0
- package/libs/widget-empty/lib/cjs/Error/translations/vi.json +4 -0
- package/libs/widget-empty/lib/cjs/Error/translations/zh.json +4 -0
- package/libs/widget-empty/lib/cjs/NoData/index.js +51 -0
- package/libs/widget-empty/lib/cjs/NoData/index.js.map +1 -0
- package/libs/widget-empty/lib/cjs/NoData/translations/__intergalactic-dynamic-locales.js +41 -0
- package/libs/widget-empty/lib/cjs/NoData/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/widget-empty/lib/cjs/NoData/translations/de.json +4 -0
- package/libs/widget-empty/lib/cjs/NoData/translations/en.json +4 -0
- package/libs/widget-empty/lib/cjs/NoData/translations/es.json +4 -0
- package/libs/widget-empty/lib/cjs/NoData/translations/fr.json +4 -0
- package/libs/widget-empty/lib/cjs/NoData/translations/it.json +4 -0
- package/libs/widget-empty/lib/cjs/NoData/translations/ja.json +4 -0
- package/libs/widget-empty/lib/cjs/NoData/translations/ko.json +4 -0
- package/libs/widget-empty/lib/cjs/NoData/translations/nl.json +4 -0
- package/libs/widget-empty/lib/cjs/NoData/translations/pl.json +4 -0
- package/libs/widget-empty/lib/cjs/NoData/translations/pt.json +4 -0
- package/libs/widget-empty/lib/cjs/NoData/translations/ru.json +4 -0
- package/libs/widget-empty/lib/cjs/NoData/translations/sv.json +4 -0
- package/libs/widget-empty/lib/cjs/NoData/translations/tr.json +4 -0
- package/libs/widget-empty/lib/cjs/NoData/translations/vi.json +4 -0
- package/libs/widget-empty/lib/cjs/NoData/translations/zh.json +4 -0
- package/libs/widget-empty/lib/cjs/WidgetEmpty.js +80 -0
- package/libs/widget-empty/lib/cjs/WidgetEmpty.js.map +1 -0
- package/libs/widget-empty/lib/cjs/index.d.js +2 -0
- package/libs/widget-empty/lib/cjs/index.d.js.map +1 -0
- package/libs/widget-empty/lib/cjs/index.js +44 -0
- package/libs/widget-empty/lib/cjs/index.js.map +1 -0
- package/libs/widget-empty/lib/es6/Error/index.js +41 -0
- package/libs/widget-empty/lib/es6/Error/index.js.map +1 -0
- package/libs/widget-empty/lib/es6/Error/translations/__intergalactic-dynamic-locales.js +33 -0
- package/libs/widget-empty/lib/es6/Error/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/widget-empty/lib/es6/Error/translations/de.json +4 -0
- package/libs/widget-empty/lib/es6/Error/translations/en.json +4 -0
- package/libs/widget-empty/lib/es6/Error/translations/es.json +4 -0
- package/libs/widget-empty/lib/es6/Error/translations/fr.json +4 -0
- package/libs/widget-empty/lib/es6/Error/translations/it.json +4 -0
- package/libs/widget-empty/lib/es6/Error/translations/ja.json +4 -0
- package/libs/widget-empty/lib/es6/Error/translations/ko.json +4 -0
- package/libs/widget-empty/lib/es6/Error/translations/nl.json +4 -0
- package/libs/widget-empty/lib/es6/Error/translations/pl.json +4 -0
- package/libs/widget-empty/lib/es6/Error/translations/pt.json +4 -0
- package/libs/widget-empty/lib/es6/Error/translations/ru.json +4 -0
- package/libs/widget-empty/lib/es6/Error/translations/sv.json +4 -0
- package/libs/widget-empty/lib/es6/Error/translations/tr.json +4 -0
- package/libs/widget-empty/lib/es6/Error/translations/vi.json +4 -0
- package/libs/widget-empty/lib/es6/Error/translations/zh.json +4 -0
- package/libs/widget-empty/lib/es6/NoData/index.js +43 -0
- package/libs/widget-empty/lib/es6/NoData/index.js.map +1 -0
- package/libs/widget-empty/lib/es6/NoData/translations/__intergalactic-dynamic-locales.js +33 -0
- package/libs/widget-empty/lib/es6/NoData/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/widget-empty/lib/es6/NoData/translations/de.json +4 -0
- package/libs/widget-empty/lib/es6/NoData/translations/en.json +4 -0
- package/libs/widget-empty/lib/es6/NoData/translations/es.json +4 -0
- package/libs/widget-empty/lib/es6/NoData/translations/fr.json +4 -0
- package/libs/widget-empty/lib/es6/NoData/translations/it.json +4 -0
- package/libs/widget-empty/lib/es6/NoData/translations/ja.json +4 -0
- package/libs/widget-empty/lib/es6/NoData/translations/ko.json +4 -0
- package/libs/widget-empty/lib/es6/NoData/translations/nl.json +4 -0
- package/libs/widget-empty/lib/es6/NoData/translations/pl.json +4 -0
- package/libs/widget-empty/lib/es6/NoData/translations/pt.json +4 -0
- package/libs/widget-empty/lib/es6/NoData/translations/ru.json +4 -0
- package/libs/widget-empty/lib/es6/NoData/translations/sv.json +4 -0
- package/libs/widget-empty/lib/es6/NoData/translations/tr.json +4 -0
- package/libs/widget-empty/lib/es6/NoData/translations/vi.json +4 -0
- package/libs/widget-empty/lib/es6/NoData/translations/zh.json +4 -0
- package/libs/widget-empty/lib/es6/WidgetEmpty.js +74 -0
- package/libs/widget-empty/lib/es6/WidgetEmpty.js.map +1 -0
- package/libs/widget-empty/lib/es6/index.d.js +2 -0
- package/libs/widget-empty/lib/es6/index.d.js.map +1 -0
- package/libs/widget-empty/lib/es6/index.js +5 -0
- package/libs/widget-empty/lib/es6/index.js.map +1 -0
- package/libs/widget-empty/lib/types/index.d.ts +44 -0
- package/libs/wizard/lib/cjs/Wizard.js +178 -0
- package/libs/wizard/lib/cjs/Wizard.js.map +1 -0
- package/libs/wizard/lib/cjs/index.d.js +2 -0
- package/libs/wizard/lib/cjs/index.d.js.map +1 -0
- package/libs/wizard/lib/cjs/index.js +14 -0
- package/libs/wizard/lib/cjs/index.js.map +1 -0
- package/libs/wizard/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/wizard/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/wizard/lib/cjs/translations/de.json +3 -0
- package/libs/wizard/lib/cjs/translations/en.json +3 -0
- package/libs/wizard/lib/cjs/translations/es.json +3 -0
- package/libs/wizard/lib/cjs/translations/fr.json +3 -0
- package/libs/wizard/lib/cjs/translations/it.json +3 -0
- package/libs/wizard/lib/cjs/translations/ja.json +3 -0
- package/libs/wizard/lib/cjs/translations/ko.json +3 -0
- package/libs/wizard/lib/cjs/translations/nl.json +3 -0
- package/libs/wizard/lib/cjs/translations/pl.json +3 -0
- package/libs/wizard/lib/cjs/translations/pt.json +3 -0
- package/libs/wizard/lib/cjs/translations/sv.json +3 -0
- package/libs/wizard/lib/cjs/translations/tr.json +3 -0
- package/libs/wizard/lib/cjs/translations/vi.json +3 -0
- package/libs/wizard/lib/cjs/translations/zh.json +3 -0
- package/libs/wizard/lib/es6/Wizard.js +174 -0
- package/libs/wizard/lib/es6/Wizard.js.map +1 -0
- package/libs/wizard/lib/es6/index.d.js +2 -0
- package/libs/wizard/lib/es6/index.d.js.map +1 -0
- package/libs/wizard/lib/es6/index.js +2 -0
- package/libs/wizard/lib/es6/index.js.map +1 -0
- package/libs/wizard/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/wizard/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/wizard/lib/es6/translations/de.json +3 -0
- package/libs/wizard/lib/es6/translations/en.json +3 -0
- package/libs/wizard/lib/es6/translations/es.json +3 -0
- package/libs/wizard/lib/es6/translations/fr.json +3 -0
- package/libs/wizard/lib/es6/translations/it.json +3 -0
- package/libs/wizard/lib/es6/translations/ja.json +3 -0
- package/libs/wizard/lib/es6/translations/ko.json +3 -0
- package/libs/wizard/lib/es6/translations/nl.json +3 -0
- package/libs/wizard/lib/es6/translations/pl.json +3 -0
- package/libs/wizard/lib/es6/translations/pt.json +3 -0
- package/libs/wizard/lib/es6/translations/sv.json +3 -0
- package/libs/wizard/lib/es6/translations/tr.json +3 -0
- package/libs/wizard/lib/es6/translations/vi.json +3 -0
- package/libs/wizard/lib/es6/translations/zh.json +3 -0
- package/libs/wizard/lib/types/index.d.ts +80 -0
- package/link/lib/cjs/Link.js +12 -12
- package/link/lib/es6/Link.js +12 -12
- package/mini-chart/lib/cjs/component/score/Donut.js +9 -9
- package/mini-chart/lib/cjs/component/score/Line.js +17 -17
- package/mini-chart/lib/cjs/component/trend/Bar.js +7 -7
- package/mini-chart/lib/cjs/component/trend/Line.js +7 -7
- package/mini-chart/lib/es6/component/score/Donut.js +9 -9
- package/mini-chart/lib/es6/component/score/Line.js +17 -17
- package/mini-chart/lib/es6/component/trend/Bar.js +7 -7
- package/mini-chart/lib/es6/component/trend/Line.js +7 -7
- package/modal/lib/cjs/Modal.js +9 -9
- package/modal/lib/es6/Modal.js +9 -9
- package/notice/lib/cjs/Notice.js +13 -13
- package/notice/lib/es6/Notice.js +13 -13
- package/notice-bubble/lib/cjs/NoticeBubble.js +12 -12
- package/notice-bubble/lib/es6/NoticeBubble.js +12 -12
- package/notice-global/lib/cjs/NoticeGlobal.js +11 -11
- package/notice-global/lib/es6/NoticeGlobal.js +11 -11
- package/package.json +2 -2
- package/pagination/lib/cjs/Pagination.js +10 -10
- package/pagination/lib/es6/Pagination.js +10 -10
- package/pills/lib/cjs/Pills.js +13 -13
- package/pills/lib/es6/Pills.js +13 -13
- package/popper/lib/cjs/Popper.js +6 -6
- package/popper/lib/es6/Popper.js +6 -6
- package/product-head/lib/cjs/Info.js +4 -4
- package/product-head/lib/cjs/ProductHead.js +5 -5
- package/product-head/lib/cjs/Title.js +4 -4
- package/product-head/lib/es6/Info.js +4 -4
- package/product-head/lib/es6/ProductHead.js +5 -5
- package/product-head/lib/es6/Title.js +4 -4
- package/progress-bar/lib/cjs/ProgressBar.js +15 -15
- package/progress-bar/lib/es6/ProgressBar.js +15 -15
- package/radio/lib/cjs/Radio.js +16 -16
- package/radio/lib/es6/Radio.js +16 -16
- package/scroll-area/lib/cjs/ScrollArea.js +21 -21
- package/scroll-area/lib/cjs/ScrollBar.js +6 -6
- package/scroll-area/lib/es6/ScrollArea.js +21 -21
- package/scroll-area/lib/es6/ScrollBar.js +6 -6
- package/select/lib/cjs/InputSearch.js +6 -6
- package/select/lib/cjs/Select.js +8 -8
- package/select/lib/es6/InputSearch.js +6 -6
- package/select/lib/es6/Select.js +8 -8
- package/side-panel/lib/cjs/SidePanel.js +15 -15
- package/side-panel/lib/es6/SidePanel.js +15 -15
- package/skeleton/lib/cjs/Charts/Area.js +9 -9
- package/skeleton/lib/cjs/Charts/Bar.js +9 -9
- package/skeleton/lib/cjs/Charts/Bubble.js +9 -9
- package/skeleton/lib/cjs/Charts/Donut.js +9 -9
- package/skeleton/lib/cjs/Charts/Histogram.js +9 -9
- package/skeleton/lib/cjs/Charts/Line.js +9 -9
- package/skeleton/lib/cjs/Charts/RadialTree.js +9 -9
- package/skeleton/lib/cjs/Charts/ScatterPlot.js +9 -9
- package/skeleton/lib/cjs/Charts/Venn.js +9 -9
- package/skeleton/lib/cjs/Skeleton.js +8 -8
- package/skeleton/lib/es6/Charts/Area.js +9 -9
- package/skeleton/lib/es6/Charts/Bar.js +9 -9
- package/skeleton/lib/es6/Charts/Bubble.js +9 -9
- package/skeleton/lib/es6/Charts/Donut.js +9 -9
- package/skeleton/lib/es6/Charts/Histogram.js +9 -9
- package/skeleton/lib/es6/Charts/Line.js +9 -9
- package/skeleton/lib/es6/Charts/RadialTree.js +9 -9
- package/skeleton/lib/es6/Charts/ScatterPlot.js +9 -9
- package/skeleton/lib/es6/Charts/Venn.js +9 -9
- package/skeleton/lib/es6/Skeleton.js +8 -8
- package/slider/lib/cjs/Slider.js +8 -8
- package/slider/lib/es6/Slider.js +8 -8
- package/spin/lib/cjs/Spin.js +13 -13
- package/spin/lib/es6/Spin.js +13 -13
- package/spin-container/lib/cjs/SpinContainer.js +8 -8
- package/spin-container/lib/es6/SpinContainer.js +8 -8
- package/sticky/lib/cjs/Sticky.js +2 -2
- package/sticky/lib/es6/Sticky.js +2 -2
- package/switch/lib/cjs/Switch.js +21 -21
- package/switch/lib/es6/Switch.js +21 -21
- package/tab-line/lib/cjs/TabLine.js +13 -13
- package/tab-line/lib/es6/TabLine.js +13 -13
- package/tab-panel/lib/cjs/TabPanel.js +8 -8
- package/tab-panel/lib/es6/TabPanel.js +8 -8
- package/tag/lib/cjs/Tag.js +20 -20
- package/tag/lib/es6/Tag.js +20 -20
- package/textarea/lib/cjs/Textarea.js +8 -8
- package/textarea/lib/es6/Textarea.js +8 -8
- package/time-picker/lib/cjs/TimePicker.js +12 -12
- package/time-picker/lib/es6/TimePicker.js +12 -12
- package/tooltip/lib/cjs/Tooltip.js +9 -9
- package/tooltip/lib/es6/Tooltip.js +9 -9
- package/typography/lib/cjs/Blockquote.js +4 -4
- package/typography/lib/cjs/Hint.js +7 -7
- package/typography/lib/cjs/List.js +5 -5
- package/typography/lib/cjs/Text.js +34 -34
- package/typography/lib/es6/Blockquote.js +4 -4
- package/typography/lib/es6/Hint.js +7 -7
- package/typography/lib/es6/List.js +5 -5
- package/typography/lib/es6/Text.js +34 -34
- package/utils/lib/components/invalid-state-pattern/InvalidStatePattern.js +2 -2
- package/utils/lib/components/invalid-state-pattern/InvalidStatePattern.mjs +2 -2
- package/utils/lib/injectStyle.js +1 -1
- package/utils/lib/injectStyle.mjs +1 -1
- package/utils/lib/themes/auto.css +4 -0
- package/utils/lib/themes/default.css +4 -0
- package/utils/lib/themes/default.json +2 -0
- package/utils/lib/themes/light.css +4 -0
- package/utils/lib/themes/light.json +2 -0
- package/widget-empty/lib/cjs/WidgetEmpty.js +5 -5
- package/widget-empty/lib/es6/WidgetEmpty.js +5 -5
- package/wizard/lib/cjs/Wizard.js +11 -11
- package/wizard/lib/es6/Wizard.js +11 -11
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"InputNumber.js","names":["React","createComponent","Component","sstyled","Root","Input","IncrementIcon","DecrementIcon","localizedMessages","i18nEnhance","style","_sstyled","insert","forkRef","parseValueWithMinMax","value","min","arguments","length","undefined","Number","MIN_SAFE_INTEGER","max","MAX_SAFE_INTEGER","Math","InputNumber","_Component","_inherits","_super","_createSuper","_this","_classCallCheck","_len","args","Array","_key","call","apply","concat","_defineProperty","_assertThisInitialized","createRef","event","_this$inputRef$curren","_this$inputRef$curren2","inputRef","current","stepUp","_this$inputRef$curren3","_this$inputRef$curren4","stepDown","_createClass","key","getValueProps","numberFormatter","Intl","NumberFormat","asProps","locale","increment","decrement","getControlsProps","_this$asProps","size","getI18nText","render","_ref","_ref4","SInputNumber","createElement","cn","_objectSpread","_assignProps","i18n","Value","_Component2","_super2","_this2","_len2","_key2","prevValue","prevDisplayValue","props","stringNumber","replace","RegExp","separatorThousands","separatorDecimal","isNaN","slice","includes","parsedValue","displayValue","format","_this2$asProps","step","_this2$valueParser","valueParser","currentTarget","roundCoefficient","toString","split","parseFloat","handlers","numberValue","rounded","round","abs","numberValueRounded","toFixed","String","target","valueInputRef","document","activeElement","preventDefault","wheelDelta","digits","test","cursorPosition","element","role","selectionStart","afterSelection","selectionEnd","requestAnimationFrame","newValue","state","index","lastIndexOf","setSelectionRange","cursorIndex","shiftKey","moveSelectionLeft","moveSelectionRight","nextPosition","handleValidation","_this2$asProps2","_this2$asProps2$max","_this2$asProps3","_this2$asProps3$min","uncontrolledProps","_this3","_this3$asProps","_this3$valueParser","get","countDecimals","floor","toPrecision","componentDidMount","_this$valueInputRef$c","addEventListener","handleWheel","_this$asProps2","_this$valueParser","componentDidUpdate","prevProps","_this$valueParser2","componentWillUnmount","_this$valueInputRef$c2","removeEventListener","_ref2","_ref5","SValue","SValueHidden","_this$asProps3","styles","forwardRef","Fragment","_assignProps2","handleChange","handleKeyDown","handleKeyUp","handleClick","defaultValue","defaultDisplayValue","Controls","_ref3","arguments[0]","_ref6","Children","SControls","Addon","SUp","SDown","_assignProps3"],"sources":["../../src/InputNumber.jsx"],"sourcesContent":["import React from 'react';\nimport createComponent, { Component, sstyled, Root } from '@semcore/core';\nimport Input from '@semcore/input';\nimport { IncrementIcon, DecrementIcon } from './buttons';\nimport { localizedMessages } from './translations/__intergalactic-dynamic-locales';\nimport i18nEnhance from '@semcore/utils/lib/enhances/i18nEnhance';\n\nimport style from './style/input-number.shadow.css';\nimport { forkRef } from '@semcore/utils/lib/ref';\n\nexport function parseValueWithMinMax(\n value,\n min = Number.MIN_SAFE_INTEGER,\n max = Number.MAX_SAFE_INTEGER,\n) {\n return Math.max(min, Math.min(max, value));\n}\n\nclass InputNumber extends Component {\n static displayName = 'InputNumber';\n static style = style;\n static enhance = [i18nEnhance(localizedMessages)];\n static defaultProps = {\n size: 'm',\n i18n: localizedMessages,\n locale: 'en',\n };\n\n inputRef = React.createRef();\n\n increment = (event) => {\n this.inputRef.current?.stepUp?.(event);\n };\n\n decrement = (event) => {\n this.inputRef.current?.stepDown?.(event);\n };\n\n getValueProps() {\n const numberFormatter = new Intl.NumberFormat(this.asProps.locale, { style: 'decimal' });\n\n return {\n inputRef: this.inputRef,\n increment: this.increment,\n decrement: this.decrement,\n numberFormatter,\n };\n }\n\n getControlsProps() {\n const { size, getI18nText } = this.asProps;\n return {\n size,\n increment: this.increment,\n decrement: this.decrement,\n getI18nText,\n };\n }\n\n render() {\n const SInputNumber = Root;\n return sstyled(this.asProps.style)(<SInputNumber render={Input} />);\n }\n}\n\nclass Value extends Component {\n static defaultProps = {\n defaultValue: '',\n defaultDisplayValue: '',\n step: 1,\n };\n\n valueInputRef = React.createRef();\n\n cursorPosition = -1;\n\n uncontrolledProps() {\n return {\n displayValue: null,\n value: [\n null,\n (newValue) => {\n const { value: prevValue, displayValue: prevDisplayValue } = this.asProps;\n\n if (newValue === '-') {\n this.handlers.displayValue(newValue);\n\n return newValue;\n } else {\n const { parsedValue, displayValue } = this.valueParser(\n newValue,\n prevValue,\n prevDisplayValue,\n );\n\n this.handlers.displayValue(displayValue);\n\n return parsedValue;\n }\n },\n ],\n };\n }\n\n get separatorDecimal() {\n const { numberFormatter } = this.props;\n\n return numberFormatter.format(11.11).replace(/\\d/g, '');\n }\n\n get separatorThousands() {\n const { numberFormatter } = this.props;\n\n return numberFormatter.format(1111).replace(/\\d/g, '');\n }\n\n valueParser = (value, prevValue, prevDisplayValue) => {\n const { numberFormatter } = this.props;\n\n const stringNumber = value\n .replace(new RegExp(`[${this.separatorThousands}]`, 'g'), '')\n .replace(this.separatorDecimal, '.');\n\n if (\n stringNumber[stringNumber.length - 1] === '.' &&\n !Number.isNaN(Number(prevValue)) &&\n !stringNumber.slice(0, -1).includes('.')\n ) {\n if (value.length > prevValue.length) {\n // type new value\n return {\n parsedValue: prevValue + this.separatorDecimal,\n displayValue: numberFormatter.format(prevValue) + this.separatorDecimal,\n };\n } else {\n // backspace value\n return {\n parsedValue: stringNumber,\n displayValue: value,\n };\n }\n }\n\n if (Number.isNaN(Number(stringNumber))) {\n return {\n parsedValue: prevValue,\n displayValue: prevDisplayValue,\n };\n }\n\n return {\n parsedValue: stringNumber,\n displayValue: stringNumber === '' ? '' : numberFormatter.format(stringNumber),\n };\n };\n\n round(value, step) {\n const countDecimals = Math.floor(step) === step ? 0 : step.toString().split('.')[1].length || 0;\n return countDecimals === 0\n ? Number.parseFloat(value)\n : Number.parseFloat(value).toPrecision(countDecimals);\n }\n\n handleValidation = (event) => {\n const { value, displayValue, min, max, step } = this.asProps;\n const { parsedValue } = this.valueParser(event.currentTarget.value, value, displayValue);\n const roundCoefficient = step < 1 ? step.toString().split('.')[1].length : 1;\n\n if (Number.isNaN(value) || Number.isNaN(Number.parseFloat(parsedValue))) {\n event.currentTarget.value = '';\n this.handlers.value('', event);\n } else {\n let numberValue = parseValueWithMinMax(Number.parseFloat(parsedValue), min, max);\n const rounded = this.round(numberValue % step, step);\n if (rounded !== 0) {\n if (rounded >= step / 2) {\n numberValue += step - rounded;\n } else if (Math.abs(rounded) < step) {\n numberValue -= rounded;\n }\n }\n const numberValueRounded = Number(numberValue.toFixed(roundCoefficient));\n\n this.handlers.value(String(numberValueRounded), event);\n }\n };\n\n // https://stackoverflow.com/questions/57358640/cancel-wheel-event-with-e-preventdefault-in-react-event-bubbling\n componentDidMount() {\n this.valueInputRef.current?.addEventListener('wheel', this.handleWheel);\n\n const { inputRef, value } = this.asProps;\n\n if (inputRef.current) {\n inputRef.current.stepUp = this.stepUp;\n inputRef.current.stepDown = this.stepDown;\n }\n\n if (value !== '') {\n const { displayValue } = this.valueParser(value, '', '');\n this.handlers.displayValue(displayValue);\n }\n }\n\n componentDidUpdate(prevProps) {\n if (prevProps.value !== this.props.value) {\n const { displayValue } = this.valueParser(\n this.props.value,\n prevProps.value,\n prevProps.displayValue,\n );\n this.handlers.displayValue(displayValue);\n }\n }\n\n componentWillUnmount() {\n this.valueInputRef.current?.removeEventListener('wheel', this.handleWheel);\n }\n\n handleWheel = (event) => {\n if (event.target !== this.valueInputRef.current) return;\n if (document.activeElement !== this.valueInputRef.current) return;\n event.preventDefault();\n if (event.wheelDelta > 0) {\n this.stepUp(event);\n } else if (event.wheelDelta < 0) {\n this.stepDown(event);\n }\n };\n\n handleChange = (event) => {\n const value = event.currentTarget.value;\n const digits = /[0-9,.-]+/.test(value);\n\n if (digits || value === '') {\n this.handlers.value(value, event);\n }\n\n return false;\n };\n\n handleKeyUp = (event) => {\n if (event.key === 'Shift') {\n this.cursorPosition = -1;\n }\n\n const element = event.currentTarget;\n\n element.role = 'input';\n };\n\n handleKeyDown = (event) => {\n const element = event.currentTarget;\n const value = element.value;\n const length = value.length;\n\n // we need this dirty hack for screen readers, because they couldn't read full value in input after adding there ','.\n // so, we change role to `region` here and back to `input` in handleKeyUp\n element.role = 'region';\n\n if (\n element.selectionStart !== length &&\n (event.key === 'Backspace' ||\n event.key === this.separatorDecimal ||\n ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'].includes(event.key))\n ) {\n const afterSelection = value.slice(element.selectionEnd);\n\n requestAnimationFrame(() => {\n const newValue = this.state.displayValue;\n const index = newValue.lastIndexOf(afterSelection);\n const selectionStart = index;\n const selectionEnd = index;\n\n element.setSelectionRange(selectionStart, selectionEnd);\n });\n }\n\n // For correct moving cursor with skip separatorThousands.\n // Examples:\n // - Press ArrowLeft: `12,3|4 -> 12|,34`\n // - Press ArrowRight: `1|,55 -> 1,5|5`\n const cursorIndex = 2;\n\n if (event.shiftKey && this.cursorPosition === -1) {\n this.cursorPosition = element.selectionStart;\n }\n\n switch (event.key) {\n case 'ArrowLeft': {\n event.preventDefault();\n this.moveSelectionLeft(element, cursorIndex);\n break;\n }\n case 'ArrowRight': {\n event.preventDefault();\n this.moveSelectionRight(element, cursorIndex);\n break;\n }\n case 'ArrowDown': {\n event.preventDefault();\n this.stepDown(event);\n break;\n }\n case 'ArrowUp': {\n event.preventDefault();\n this.stepUp(event);\n break;\n }\n }\n };\n\n moveSelectionLeft = (element, cursorIndex) => {\n const value = element.value;\n const nextPosition = element.selectionStart - 1 >= 0 ? element.selectionStart - 1 : 0;\n\n const cursorPosition =\n value[element.selectionStart - cursorIndex] === this.separatorThousands\n ? element.selectionStart - cursorIndex\n : nextPosition;\n\n if (this.cursorPosition === -1) {\n // without shift\n element.setSelectionRange(cursorPosition, cursorPosition);\n } else {\n if (\n element.selectionStart <= this.cursorPosition &&\n element.selectionEnd === this.cursorPosition\n ) {\n element.setSelectionRange(cursorPosition, element.selectionEnd);\n } else {\n element.setSelectionRange(\n element.selectionStart,\n value[element.selectionEnd - cursorIndex] === this.separatorThousands\n ? element.selectionEnd - cursorIndex\n : element.selectionEnd - 1,\n );\n }\n }\n };\n\n moveSelectionRight = (element, cursorIndex) => {\n const value = element.value;\n const nextPosition = element.selectionEnd + 1;\n\n const cursorPosition =\n value[element.selectionEnd] === this.separatorThousands\n ? element.selectionEnd + cursorIndex\n : nextPosition;\n\n if (this.cursorPosition === -1) {\n // without shift\n element.setSelectionRange(cursorPosition, cursorPosition);\n } else {\n if (\n element.selectionEnd >= this.cursorPosition &&\n element.selectionStart === this.cursorPosition\n ) {\n element.setSelectionRange(element.selectionStart, cursorPosition);\n } else {\n element.setSelectionRange(\n value[element.selectionStart] === this.separatorThousands\n ? element.selectionStart + cursorIndex\n : element.selectionStart + 1,\n element.selectionEnd,\n );\n }\n }\n };\n\n handleClick = (event) => {\n const element = event.target;\n const value = element.value;\n\n if (value[element.selectionStart - 1] === this.separatorThousands) {\n element.setSelectionRange(element.selectionStart - 1, element.selectionEnd - 1);\n }\n };\n\n handleBlur = (event) => {\n this.cursorPosition = -1;\n this.handleValidation(event);\n };\n\n stepUp = (event) => {\n const { max = Number.MAX_SAFE_INTEGER, min, step, value } = this.asProps;\n\n let numberValue;\n\n // https://stackoverflow.com/questions/68010124/safari-number-input-stepup-stepdown-not-functioning-with-empty-value\n if (value === '') {\n numberValue = min ?? 0;\n } else {\n numberValue = Number.parseFloat(value);\n }\n\n if (!Number.isNaN(numberValue)) {\n const newValue = numberValue + step <= max ? numberValue + step : max;\n\n this.handlers.value(newValue.toString(), event);\n }\n };\n\n stepDown = (event) => {\n const { max, min = Number.MIN_SAFE_INTEGER, step, value } = this.asProps;\n\n let numberValue;\n\n if (value === '') {\n numberValue = max ?? 0;\n } else {\n numberValue = Number.parseFloat(value);\n }\n\n if (!Number.isNaN(numberValue)) {\n const newValue = numberValue - step >= min ? numberValue - step : min;\n\n this.handlers.value(newValue.toString(), event);\n }\n };\n\n render() {\n const SValue = Root;\n const SValueHidden = 'div';\n const { styles, min, max, step, forwardRef, inputRef, value, displayValue } = this.asProps;\n\n return sstyled(styles)(\n <>\n <SValue\n render={Input.Value}\n autoComplete='off'\n onBlur={this.handleValidation}\n use:onChange={this.handleChange}\n onKeyDown={this.handleKeyDown}\n onKeyUp={this.handleKeyUp}\n onClick={this.handleClick}\n use:ref={forkRef(this.valueInputRef, inputRef, forwardRef)}\n use:value={displayValue}\n inputMode='decimal'\n aria-valuemin={min}\n aria-valuemax={max}\n min={min}\n max={max}\n step={step}\n />\n {/* the next hidden div is necessary for the screen reader to report the value\n in the input, because after validation the value can change to the `min` or `max`\n if entered less than `min` or more than `max` */}\n <SValueHidden aria-live='polite' aria-atomic={true}>\n {value}\n </SValueHidden>\n </>,\n );\n }\n}\n\nfunction Controls(props) {\n const { Children, increment, decrement, size, styles, getI18nText } = props;\n const SControls = Root;\n const SUp = 'button';\n const SDown = 'button';\n\n return sstyled(styles)(\n <SControls render={Input.Addon} aria-hidden='true'>\n <SUp\n onClick={increment}\n tabIndex={-1}\n type='button'\n size={size}\n aria-label={getI18nText('increment')}\n >\n <IncrementIcon />\n </SUp>\n <SDown\n onClick={decrement}\n tabIndex={-1}\n type='button'\n size={size}\n aria-label={getI18nText('decrement')}\n >\n <DecrementIcon />\n </SDown>\n <Children />\n </SControls>,\n );\n}\n\nexport default createComponent(InputNumber, {\n Value,\n Controls,\n Addon: Input.Addon,\n});\n"],"mappings":";;;;;;;;;;;AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,OAAOC,eAAe,IAAIC,SAAS,EAAEC,OAAO,EAAEC,IAAI,QAAQ,eAAe;AACzE,OAAOC,KAAK,MAAM,gBAAgB;AAClC,SAASC,aAAa,EAAEC,aAAa,QAAQ,WAAW;AACxD,SAASC,iBAAiB,QAAQ,gDAAgD;AAClF,OAAOC,WAAW,MAAM,yCAAyC;AAAC;AAAA,IAAAC,KAAA,+BAAAC,QAAA,CAAAC,MAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;AAAA;AAGlE,SAASC,OAAO,QAAQ,wBAAwB;AAEhD,OAAO,SAASC,oBAAoBA,CAClCC,KAAK,EAGL;EAAA,IAFAC,GAAG,GAAAC,SAAA,CAAAC,MAAA,QAAAD,SAAA,QAAAE,SAAA,GAAAF,SAAA,MAAGG,MAAM,CAACC,gBAAgB;EAAA,IAC7BC,GAAG,GAAAL,SAAA,CAAAC,MAAA,QAAAD,SAAA,QAAAE,SAAA,GAAAF,SAAA,MAAGG,MAAM,CAACG,gBAAgB;EAE7B,OAAOC,IAAI,CAACF,GAAG,CAACN,GAAG,EAAEQ,IAAI,CAACR,GAAG,CAACM,GAAG,EAAEP,KAAK,CAAC,CAAC;AAC5C;AAAC,IAEKU,WAAW,0BAAAC,UAAA;EAAAC,SAAA,CAAAF,WAAA,EAAAC,UAAA;EAAA,IAAAE,MAAA,GAAAC,YAAA,CAAAJ,WAAA;EAAA,SAAAA,YAAA;IAAA,IAAAK,KAAA;IAAAC,eAAA,OAAAN,WAAA;IAAA,SAAAO,IAAA,GAAAf,SAAA,CAAAC,MAAA,EAAAe,IAAA,OAAAC,KAAA,CAAAF,IAAA,GAAAG,IAAA,MAAAA,IAAA,GAAAH,IAAA,EAAAG,IAAA;MAAAF,IAAA,CAAAE,IAAA,IAAAlB,SAAA,CAAAkB,IAAA;IAAA;IAAAL,KAAA,GAAAF,MAAA,CAAAQ,IAAA,CAAAC,KAAA,CAAAT,MAAA,SAAAU,MAAA,CAAAL,IAAA;IAAAM,eAAA,CAAAC,sBAAA,CAAAV,KAAA,4BAUJ9B,KAAK,CAACyC,SAAS,EAAE;IAAAF,eAAA,CAAAC,sBAAA,CAAAV,KAAA,gBAEhB,UAACY,KAAK,EAAK;MAAA,IAAAC,qBAAA,EAAAC,sBAAA;MACrB,CAAAD,qBAAA,GAAAb,KAAA,CAAKe,QAAQ,CAACC,OAAO,cAAAH,qBAAA,wBAAAC,sBAAA,GAArBD,qBAAA,CAAuBI,MAAM,cAAAH,sBAAA,uBAA7BA,sBAAA,CAAAR,IAAA,CAAAO,qBAAA,EAAgCD,KAAK,CAAC;IACxC,CAAC;IAAAH,eAAA,CAAAC,sBAAA,CAAAV,KAAA,gBAEW,UAACY,KAAK,EAAK;MAAA,IAAAM,sBAAA,EAAAC,sBAAA;MACrB,CAAAD,sBAAA,GAAAlB,KAAA,CAAKe,QAAQ,CAACC,OAAO,cAAAE,sBAAA,wBAAAC,sBAAA,GAArBD,sBAAA,CAAuBE,QAAQ,cAAAD,sBAAA,uBAA/BA,sBAAA,CAAAb,IAAA,CAAAY,sBAAA,EAAkCN,KAAK,CAAC;IAC1C,CAAC;IAAA,OAAAZ,KAAA;EAAA;EAAAqB,YAAA,CAAA1B,WAAA;IAAA2B,GAAA;IAAArC,KAAA,EAED,SAAAsC,cAAA,EAAgB;MACd,IAAMC,eAAe,GAAG,IAAIC,IAAI,CAACC,YAAY,CAAC,IAAI,CAACC,OAAO,CAACC,MAAM,EAAE;QAAEhD,KAAK,EAAE;MAAU,CAAC,CAAC;MAExF,OAAO;QACLmC,QAAQ,EAAE,IAAI,CAACA,QAAQ;QACvBc,SAAS,EAAE,IAAI,CAACA,SAAS;QACzBC,SAAS,EAAE,IAAI,CAACA,SAAS;QACzBN,eAAe,EAAfA;MACF,CAAC;IACH;EAAC;IAAAF,GAAA;IAAArC,KAAA,EAED,SAAA8C,iBAAA,EAAmB;MACjB,IAAAC,aAAA,GAA8B,IAAI,CAACL,OAAO;QAAlCM,IAAI,GAAAD,aAAA,CAAJC,IAAI;QAAEC,WAAW,GAAAF,aAAA,CAAXE,WAAW;MACzB,OAAO;QACLD,IAAI,EAAJA,IAAI;QACJJ,SAAS,EAAE,IAAI,CAACA,SAAS;QACzBC,SAAS,EAAE,IAAI,CAACA,SAAS;QACzBI,WAAW,EAAXA;MACF,CAAC;IACH;EAAC;IAAAZ,GAAA;IAAArC,KAAA,EAED,SAAAkD,OAAA,EAAS;MAAA,IAAAC,IAAA,QAAAT,OAAA;QAAAU,KAAA;MACP,IAAMC,YAAY,GACuC/D,KAAK;MAA9D,OAAA8D,KAAA,GAAOhE,OAAO,CAAC,IAAI,CAACsD,OAAO,CAAC/C,KAAK,CAAC,eAACV,KAAA,CAAAqE,aAAA,CAACD,YAAY,EAAAD,KAAA,CAAAG,EAAA,iBAAAC,aAAA,KAAAC,YAAA,KAAAN,IAAA,IAAkB;IACpE;EAAC;EAAA,OAAAzC,WAAA;AAAA,EA5CuBvB,SAAS;AAAAqC,eAAA,CAA7Bd,WAAW,iBACM,aAAa;AAAAc,eAAA,CAD9Bd,WAAW,WAEAf,KAAK;AAAA6B,eAAA,CAFhBd,WAAW,aAGE,CAAChB,WAAW,CAACD,iBAAiB,CAAC,CAAC;AAAA+B,eAAA,CAH7Cd,WAAW,kBAIO;EACpBsC,IAAI,EAAE,GAAG;EACTU,IAAI,EAAEjE,iBAAiB;EACvBkD,MAAM,EAAE;AACV,CAAC;AAAA,IAuCGgB,KAAK,0BAAAC,WAAA;EAAAhD,SAAA,CAAA+C,KAAA,EAAAC,WAAA;EAAA,IAAAC,OAAA,GAAA/C,YAAA,CAAA6C,KAAA;EAAA,SAAAA,MAAA;IAAA,IAAAG,MAAA;IAAA9C,eAAA,OAAA2C,KAAA;IAAA,SAAAI,KAAA,GAAA7D,SAAA,CAAAC,MAAA,EAAAe,IAAA,OAAAC,KAAA,CAAA4C,KAAA,GAAAC,KAAA,MAAAA,KAAA,GAAAD,KAAA,EAAAC,KAAA;MAAA9C,IAAA,CAAA8C,KAAA,IAAA9D,SAAA,CAAA8D,KAAA;IAAA;IAAAF,MAAA,GAAAD,OAAA,CAAAxC,IAAA,CAAAC,KAAA,CAAAuC,OAAA,SAAAtC,MAAA,CAAAL,IAAA;IAAAM,eAAA,CAAAC,sBAAA,CAAAqC,MAAA,iCAOO7E,KAAK,CAACyC,SAAS,EAAE;IAAAF,eAAA,CAAAC,sBAAA,CAAAqC,MAAA,qBAEhB,CAAC,CAAC;IAAAtC,eAAA,CAAAC,sBAAA,CAAAqC,MAAA,kBA0CL,UAAC9D,KAAK,EAAEiE,SAAS,EAAEC,gBAAgB,EAAK;MACpD,IAAQ3B,eAAe,GAAKuB,MAAA,CAAKK,KAAK,CAA9B5B,eAAe;MAEvB,IAAM6B,YAAY,GAAGpE,KAAK,CACvBqE,OAAO,CAAC,IAAIC,MAAM,KAAA/C,MAAA,CAAKuC,MAAA,CAAKS,kBAAkB,QAAK,GAAG,CAAC,EAAE,EAAE,CAAC,CAC5DF,OAAO,CAACP,MAAA,CAAKU,gBAAgB,EAAE,GAAG,CAAC;MAEtC,IACEJ,YAAY,CAACA,YAAY,CAACjE,MAAM,GAAG,CAAC,CAAC,KAAK,GAAG,IAC7C,CAACE,MAAM,CAACoE,KAAK,CAACpE,MAAM,CAAC4D,SAAS,CAAC,CAAC,IAChC,CAACG,YAAY,CAACM,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAACC,QAAQ,CAAC,GAAG,CAAC,EACxC;QACA,IAAI3E,KAAK,CAACG,MAAM,GAAG8D,SAAS,CAAC9D,MAAM,EAAE;UACnC;UACA,OAAO;YACLyE,WAAW,EAAEX,SAAS,GAAGH,MAAA,CAAKU,gBAAgB;YAC9CK,YAAY,EAAEtC,eAAe,CAACuC,MAAM,CAACb,SAAS,CAAC,GAAGH,MAAA,CAAKU;UACzD,CAAC;QACH,CAAC,MAAM;UACL;UACA,OAAO;YACLI,WAAW,EAAER,YAAY;YACzBS,YAAY,EAAE7E;UAChB,CAAC;QACH;MACF;MAEA,IAAIK,MAAM,CAACoE,KAAK,CAACpE,MAAM,CAAC+D,YAAY,CAAC,CAAC,EAAE;QACtC,OAAO;UACLQ,WAAW,EAAEX,SAAS;UACtBY,YAAY,EAAEX;QAChB,CAAC;MACH;MAEA,OAAO;QACLU,WAAW,EAAER,YAAY;QACzBS,YAAY,EAAET,YAAY,KAAK,EAAE,GAAG,EAAE,GAAG7B,eAAe,CAACuC,MAAM,CAACV,YAAY;MAC9E,CAAC;IACH,CAAC;IAAA5C,eAAA,CAAAC,sBAAA,CAAAqC,MAAA,uBASkB,UAACnC,KAAK,EAAK;MAC5B,IAAAoD,cAAA,GAAgDjB,MAAA,CAAKpB,OAAO;QAApD1C,KAAK,GAAA+E,cAAA,CAAL/E,KAAK;QAAE6E,YAAY,GAAAE,cAAA,CAAZF,YAAY;QAAE5E,GAAG,GAAA8E,cAAA,CAAH9E,GAAG;QAAEM,GAAG,GAAAwE,cAAA,CAAHxE,GAAG;QAAEyE,IAAI,GAAAD,cAAA,CAAJC,IAAI;MAC3C,IAAAC,kBAAA,GAAwBnB,MAAA,CAAKoB,WAAW,CAACvD,KAAK,CAACwD,aAAa,CAACnF,KAAK,EAAEA,KAAK,EAAE6E,YAAY,CAAC;QAAhFD,WAAW,GAAAK,kBAAA,CAAXL,WAAW;MACnB,IAAMQ,gBAAgB,GAAGJ,IAAI,GAAG,CAAC,GAAGA,IAAI,CAACK,QAAQ,EAAE,CAACC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAACnF,MAAM,GAAG,CAAC;MAE5E,IAAIE,MAAM,CAACoE,KAAK,CAACzE,KAAK,CAAC,IAAIK,MAAM,CAACoE,KAAK,CAACpE,MAAM,CAACkF,UAAU,CAACX,WAAW,CAAC,CAAC,EAAE;QACvEjD,KAAK,CAACwD,aAAa,CAACnF,KAAK,GAAG,EAAE;QAC9B8D,MAAA,CAAK0B,QAAQ,CAACxF,KAAK,CAAC,EAAE,EAAE2B,KAAK,CAAC;MAChC,CAAC,MAAM;QACL,IAAI8D,WAAW,GAAG1F,oBAAoB,CAACM,MAAM,CAACkF,UAAU,CAACX,WAAW,CAAC,EAAE3E,GAAG,EAAEM,GAAG,CAAC;QAChF,IAAMmF,OAAO,GAAG5B,MAAA,CAAK6B,KAAK,CAACF,WAAW,GAAGT,IAAI,EAAEA,IAAI,CAAC;QACpD,IAAIU,OAAO,KAAK,CAAC,EAAE;UACjB,IAAIA,OAAO,IAAIV,IAAI,GAAG,CAAC,EAAE;YACvBS,WAAW,IAAIT,IAAI,GAAGU,OAAO;UAC/B,CAAC,MAAM,IAAIjF,IAAI,CAACmF,GAAG,CAACF,OAAO,CAAC,GAAGV,IAAI,EAAE;YACnCS,WAAW,IAAIC,OAAO;UACxB;QACF;QACA,IAAMG,kBAAkB,GAAGxF,MAAM,CAACoF,WAAW,CAACK,OAAO,CAACV,gBAAgB,CAAC,CAAC;QAExEtB,MAAA,CAAK0B,QAAQ,CAACxF,KAAK,CAAC+F,MAAM,CAACF,kBAAkB,CAAC,EAAElE,KAAK,CAAC;MACxD;IACF,CAAC;IAAAH,eAAA,CAAAC,sBAAA,CAAAqC,MAAA,kBAkCa,UAACnC,KAAK,EAAK;MACvB,IAAIA,KAAK,CAACqE,MAAM,KAAKlC,MAAA,CAAKmC,aAAa,CAAClE,OAAO,EAAE;MACjD,IAAImE,QAAQ,CAACC,aAAa,KAAKrC,MAAA,CAAKmC,aAAa,CAAClE,OAAO,EAAE;MAC3DJ,KAAK,CAACyE,cAAc,EAAE;MACtB,IAAIzE,KAAK,CAAC0E,UAAU,GAAG,CAAC,EAAE;QACxBvC,MAAA,CAAK9B,MAAM,CAACL,KAAK,CAAC;MACpB,CAAC,MAAM,IAAIA,KAAK,CAAC0E,UAAU,GAAG,CAAC,EAAE;QAC/BvC,MAAA,CAAK3B,QAAQ,CAACR,KAAK,CAAC;MACtB;IACF,CAAC;IAAAH,eAAA,CAAAC,sBAAA,CAAAqC,MAAA,mBAEc,UAACnC,KAAK,EAAK;MACxB,IAAM3B,KAAK,GAAG2B,KAAK,CAACwD,aAAa,CAACnF,KAAK;MACvC,IAAMsG,MAAM,GAAG,WAAW,CAACC,IAAI,CAACvG,KAAK,CAAC;MAEtC,IAAIsG,MAAM,IAAItG,KAAK,KAAK,EAAE,EAAE;QAC1B8D,MAAA,CAAK0B,QAAQ,CAACxF,KAAK,CAACA,KAAK,EAAE2B,KAAK,CAAC;MACnC;MAEA,OAAO,KAAK;IACd,CAAC;IAAAH,eAAA,CAAAC,sBAAA,CAAAqC,MAAA,kBAEa,UAACnC,KAAK,EAAK;MACvB,IAAIA,KAAK,CAACU,GAAG,KAAK,OAAO,EAAE;QACzByB,MAAA,CAAK0C,cAAc,GAAG,CAAC,CAAC;MAC1B;MAEA,IAAMC,OAAO,GAAG9E,KAAK,CAACwD,aAAa;MAEnCsB,OAAO,CAACC,IAAI,GAAG,OAAO;IACxB,CAAC;IAAAlF,eAAA,CAAAC,sBAAA,CAAAqC,MAAA,oBAEe,UAACnC,KAAK,EAAK;MACzB,IAAM8E,OAAO,GAAG9E,KAAK,CAACwD,aAAa;MACnC,IAAMnF,KAAK,GAAGyG,OAAO,CAACzG,KAAK;MAC3B,IAAMG,MAAM,GAAGH,KAAK,CAACG,MAAM;;MAE3B;MACA;MACAsG,OAAO,CAACC,IAAI,GAAG,QAAQ;MAEvB,IACED,OAAO,CAACE,cAAc,KAAKxG,MAAM,KAChCwB,KAAK,CAACU,GAAG,KAAK,WAAW,IACxBV,KAAK,CAACU,GAAG,KAAKyB,MAAA,CAAKU,gBAAgB,IACnC,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAACG,QAAQ,CAAChD,KAAK,CAACU,GAAG,CAAC,CAAC,EACzE;QACA,IAAMuE,cAAc,GAAG5G,KAAK,CAAC0E,KAAK,CAAC+B,OAAO,CAACI,YAAY,CAAC;QAExDC,qBAAqB,CAAC,YAAM;UAC1B,IAAMC,QAAQ,GAAGjD,MAAA,CAAKkD,KAAK,CAACnC,YAAY;UACxC,IAAMoC,KAAK,GAAGF,QAAQ,CAACG,WAAW,CAACN,cAAc,CAAC;UAClD,IAAMD,cAAc,GAAGM,KAAK;UAC5B,IAAMJ,YAAY,GAAGI,KAAK;UAE1BR,OAAO,CAACU,iBAAiB,CAACR,cAAc,EAAEE,YAAY,CAAC;QACzD,CAAC,CAAC;MACJ;;MAEA;MACA;MACA;MACA;MACA,IAAMO,WAAW,GAAG,CAAC;MAErB,IAAIzF,KAAK,CAAC0F,QAAQ,IAAIvD,MAAA,CAAK0C,cAAc,KAAK,CAAC,CAAC,EAAE;QAChD1C,MAAA,CAAK0C,cAAc,GAAGC,OAAO,CAACE,cAAc;MAC9C;MAEA,QAAQhF,KAAK,CAACU,GAAG;QACf,KAAK,WAAW;UAAE;YAChBV,KAAK,CAACyE,cAAc,EAAE;YACtBtC,MAAA,CAAKwD,iBAAiB,CAACb,OAAO,EAAEW,WAAW,CAAC;YAC5C;UACF;QACA,KAAK,YAAY;UAAE;YACjBzF,KAAK,CAACyE,cAAc,EAAE;YACtBtC,MAAA,CAAKyD,kBAAkB,CAACd,OAAO,EAAEW,WAAW,CAAC;YAC7C;UACF;QACA,KAAK,WAAW;UAAE;YAChBzF,KAAK,CAACyE,cAAc,EAAE;YACtBtC,MAAA,CAAK3B,QAAQ,CAACR,KAAK,CAAC;YACpB;UACF;QACA,KAAK,SAAS;UAAE;YACdA,KAAK,CAACyE,cAAc,EAAE;YACtBtC,MAAA,CAAK9B,MAAM,CAACL,KAAK,CAAC;YAClB;UACF;MAAC;IAEL,CAAC;IAAAH,eAAA,CAAAC,sBAAA,CAAAqC,MAAA,wBAEmB,UAAC2C,OAAO,EAAEW,WAAW,EAAK;MAC5C,IAAMpH,KAAK,GAAGyG,OAAO,CAACzG,KAAK;MAC3B,IAAMwH,YAAY,GAAGf,OAAO,CAACE,cAAc,GAAG,CAAC,IAAI,CAAC,GAAGF,OAAO,CAACE,cAAc,GAAG,CAAC,GAAG,CAAC;MAErF,IAAMH,cAAc,GAClBxG,KAAK,CAACyG,OAAO,CAACE,cAAc,GAAGS,WAAW,CAAC,KAAKtD,MAAA,CAAKS,kBAAkB,GACnEkC,OAAO,CAACE,cAAc,GAAGS,WAAW,GACpCI,YAAY;MAElB,IAAI1D,MAAA,CAAK0C,cAAc,KAAK,CAAC,CAAC,EAAE;QAC9B;QACAC,OAAO,CAACU,iBAAiB,CAACX,cAAc,EAAEA,cAAc,CAAC;MAC3D,CAAC,MAAM;QACL,IACEC,OAAO,CAACE,cAAc,IAAI7C,MAAA,CAAK0C,cAAc,IAC7CC,OAAO,CAACI,YAAY,KAAK/C,MAAA,CAAK0C,cAAc,EAC5C;UACAC,OAAO,CAACU,iBAAiB,CAACX,cAAc,EAAEC,OAAO,CAACI,YAAY,CAAC;QACjE,CAAC,MAAM;UACLJ,OAAO,CAACU,iBAAiB,CACvBV,OAAO,CAACE,cAAc,EACtB3G,KAAK,CAACyG,OAAO,CAACI,YAAY,GAAGO,WAAW,CAAC,KAAKtD,MAAA,CAAKS,kBAAkB,GACjEkC,OAAO,CAACI,YAAY,GAAGO,WAAW,GAClCX,OAAO,CAACI,YAAY,GAAG,CAAC,CAC7B;QACH;MACF;IACF,CAAC;IAAArF,eAAA,CAAAC,sBAAA,CAAAqC,MAAA,yBAEoB,UAAC2C,OAAO,EAAEW,WAAW,EAAK;MAC7C,IAAMpH,KAAK,GAAGyG,OAAO,CAACzG,KAAK;MAC3B,IAAMwH,YAAY,GAAGf,OAAO,CAACI,YAAY,GAAG,CAAC;MAE7C,IAAML,cAAc,GAClBxG,KAAK,CAACyG,OAAO,CAACI,YAAY,CAAC,KAAK/C,MAAA,CAAKS,kBAAkB,GACnDkC,OAAO,CAACI,YAAY,GAAGO,WAAW,GAClCI,YAAY;MAElB,IAAI1D,MAAA,CAAK0C,cAAc,KAAK,CAAC,CAAC,EAAE;QAC9B;QACAC,OAAO,CAACU,iBAAiB,CAACX,cAAc,EAAEA,cAAc,CAAC;MAC3D,CAAC,MAAM;QACL,IACEC,OAAO,CAACI,YAAY,IAAI/C,MAAA,CAAK0C,cAAc,IAC3CC,OAAO,CAACE,cAAc,KAAK7C,MAAA,CAAK0C,cAAc,EAC9C;UACAC,OAAO,CAACU,iBAAiB,CAACV,OAAO,CAACE,cAAc,EAAEH,cAAc,CAAC;QACnE,CAAC,MAAM;UACLC,OAAO,CAACU,iBAAiB,CACvBnH,KAAK,CAACyG,OAAO,CAACE,cAAc,CAAC,KAAK7C,MAAA,CAAKS,kBAAkB,GACrDkC,OAAO,CAACE,cAAc,GAAGS,WAAW,GACpCX,OAAO,CAACE,cAAc,GAAG,CAAC,EAC9BF,OAAO,CAACI,YAAY,CACrB;QACH;MACF;IACF,CAAC;IAAArF,eAAA,CAAAC,sBAAA,CAAAqC,MAAA,kBAEa,UAACnC,KAAK,EAAK;MACvB,IAAM8E,OAAO,GAAG9E,KAAK,CAACqE,MAAM;MAC5B,IAAMhG,KAAK,GAAGyG,OAAO,CAACzG,KAAK;MAE3B,IAAIA,KAAK,CAACyG,OAAO,CAACE,cAAc,GAAG,CAAC,CAAC,KAAK7C,MAAA,CAAKS,kBAAkB,EAAE;QACjEkC,OAAO,CAACU,iBAAiB,CAACV,OAAO,CAACE,cAAc,GAAG,CAAC,EAAEF,OAAO,CAACI,YAAY,GAAG,CAAC,CAAC;MACjF;IACF,CAAC;IAAArF,eAAA,CAAAC,sBAAA,CAAAqC,MAAA,iBAEY,UAACnC,KAAK,EAAK;MACtBmC,MAAA,CAAK0C,cAAc,GAAG,CAAC,CAAC;MACxB1C,MAAA,CAAK2D,gBAAgB,CAAC9F,KAAK,CAAC;IAC9B,CAAC;IAAAH,eAAA,CAAAC,sBAAA,CAAAqC,MAAA,aAEQ,UAACnC,KAAK,EAAK;MAClB,IAAA+F,eAAA,GAA4D5D,MAAA,CAAKpB,OAAO;QAAAiF,mBAAA,GAAAD,eAAA,CAAhEnH,GAAG;QAAHA,GAAG,GAAAoH,mBAAA,cAAGtH,MAAM,CAACG,gBAAgB,GAAAmH,mBAAA;QAAE1H,GAAG,GAAAyH,eAAA,CAAHzH,GAAG;QAAE+E,IAAI,GAAA0C,eAAA,CAAJ1C,IAAI;QAAEhF,KAAK,GAAA0H,eAAA,CAAL1H,KAAK;MAEvD,IAAIyF,WAAW;;MAEf;MACA,IAAIzF,KAAK,KAAK,EAAE,EAAE;QAChByF,WAAW,GAAGxF,GAAG,aAAHA,GAAG,cAAHA,GAAG,GAAI,CAAC;MACxB,CAAC,MAAM;QACLwF,WAAW,GAAGpF,MAAM,CAACkF,UAAU,CAACvF,KAAK,CAAC;MACxC;MAEA,IAAI,CAACK,MAAM,CAACoE,KAAK,CAACgB,WAAW,CAAC,EAAE;QAC9B,IAAMsB,QAAQ,GAAGtB,WAAW,GAAGT,IAAI,IAAIzE,GAAG,GAAGkF,WAAW,GAAGT,IAAI,GAAGzE,GAAG;QAErEuD,MAAA,CAAK0B,QAAQ,CAACxF,KAAK,CAAC+G,QAAQ,CAAC1B,QAAQ,EAAE,EAAE1D,KAAK,CAAC;MACjD;IACF,CAAC;IAAAH,eAAA,CAAAC,sBAAA,CAAAqC,MAAA,eAEU,UAACnC,KAAK,EAAK;MACpB,IAAAiG,eAAA,GAA4D9D,MAAA,CAAKpB,OAAO;QAAhEnC,GAAG,GAAAqH,eAAA,CAAHrH,GAAG;QAAAsH,mBAAA,GAAAD,eAAA,CAAE3H,GAAG;QAAHA,GAAG,GAAA4H,mBAAA,cAAGxH,MAAM,CAACC,gBAAgB,GAAAuH,mBAAA;QAAE7C,IAAI,GAAA4C,eAAA,CAAJ5C,IAAI;QAAEhF,KAAK,GAAA4H,eAAA,CAAL5H,KAAK;MAEvD,IAAIyF,WAAW;MAEf,IAAIzF,KAAK,KAAK,EAAE,EAAE;QAChByF,WAAW,GAAGlF,GAAG,aAAHA,GAAG,cAAHA,GAAG,GAAI,CAAC;MACxB,CAAC,MAAM;QACLkF,WAAW,GAAGpF,MAAM,CAACkF,UAAU,CAACvF,KAAK,CAAC;MACxC;MAEA,IAAI,CAACK,MAAM,CAACoE,KAAK,CAACgB,WAAW,CAAC,EAAE;QAC9B,IAAMsB,QAAQ,GAAGtB,WAAW,GAAGT,IAAI,IAAI/E,GAAG,GAAGwF,WAAW,GAAGT,IAAI,GAAG/E,GAAG;QAErE6D,MAAA,CAAK0B,QAAQ,CAACxF,KAAK,CAAC+G,QAAQ,CAAC1B,QAAQ,EAAE,EAAE1D,KAAK,CAAC;MACjD;IACF,CAAC;IAAA,OAAAmC,MAAA;EAAA;EAAA1B,YAAA,CAAAuB,KAAA;IAAAtB,GAAA;IAAArC,KAAA,EAvVD,SAAA8H,kBAAA,EAAoB;MAAA,IAAAC,MAAA;MAClB,OAAO;QACLlD,YAAY,EAAE,IAAI;QAClB7E,KAAK,EAAE,CACL,IAAI,EACJ,UAAC+G,QAAQ,EAAK;UACZ,IAAAiB,cAAA,GAA6DD,MAAI,CAACrF,OAAO;YAA1DuB,SAAS,GAAA+D,cAAA,CAAhBhI,KAAK;YAA2BkE,gBAAgB,GAAA8D,cAAA,CAA9BnD,YAAY;UAEtC,IAAIkC,QAAQ,KAAK,GAAG,EAAE;YACpBgB,MAAI,CAACvC,QAAQ,CAACX,YAAY,CAACkC,QAAQ,CAAC;YAEpC,OAAOA,QAAQ;UACjB,CAAC,MAAM;YACL,IAAAkB,kBAAA,GAAsCF,MAAI,CAAC7C,WAAW,CACpD6B,QAAQ,EACR9C,SAAS,EACTC,gBAAgB,CACjB;cAJOU,WAAW,GAAAqD,kBAAA,CAAXrD,WAAW;cAAEC,YAAY,GAAAoD,kBAAA,CAAZpD,YAAY;YAMjCkD,MAAI,CAACvC,QAAQ,CAACX,YAAY,CAACA,YAAY,CAAC;YAExC,OAAOD,WAAW;UACpB;QACF,CAAC;MAEL,CAAC;IACH;EAAC;IAAAvC,GAAA;IAAA6F,GAAA,EAED,SAAAA,IAAA,EAAuB;MACrB,IAAQ3F,eAAe,GAAK,IAAI,CAAC4B,KAAK,CAA9B5B,eAAe;MAEvB,OAAOA,eAAe,CAACuC,MAAM,CAAC,KAAK,CAAC,CAACT,OAAO,CAAC,KAAK,EAAE,EAAE,CAAC;IACzD;EAAC;IAAAhC,GAAA;IAAA6F,GAAA,EAED,SAAAA,IAAA,EAAyB;MACvB,IAAQ3F,eAAe,GAAK,IAAI,CAAC4B,KAAK,CAA9B5B,eAAe;MAEvB,OAAOA,eAAe,CAACuC,MAAM,CAAC,IAAI,CAAC,CAACT,OAAO,CAAC,KAAK,EAAE,EAAE,CAAC;IACxD;EAAC;IAAAhC,GAAA;IAAArC,KAAA,EA0CD,SAAA2F,MAAM3F,KAAK,EAAEgF,IAAI,EAAE;MACjB,IAAMmD,aAAa,GAAG1H,IAAI,CAAC2H,KAAK,CAACpD,IAAI,CAAC,KAAKA,IAAI,GAAG,CAAC,GAAGA,IAAI,CAACK,QAAQ,EAAE,CAACC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAACnF,MAAM,IAAI,CAAC;MAC/F,OAAOgI,aAAa,KAAK,CAAC,GACtB9H,MAAM,CAACkF,UAAU,CAACvF,KAAK,CAAC,GACxBK,MAAM,CAACkF,UAAU,CAACvF,KAAK,CAAC,CAACqI,WAAW,CAACF,aAAa,CAAC;IACzD;EAAC;IAAA9F,GAAA;IAAArC,KAAA;IA0BD;IACA,SAAAsI,kBAAA,EAAoB;MAAA,IAAAC,qBAAA;MAClB,CAAAA,qBAAA,OAAI,CAACtC,aAAa,CAAClE,OAAO,cAAAwG,qBAAA,uBAA1BA,qBAAA,CAA4BC,gBAAgB,CAAC,OAAO,EAAE,IAAI,CAACC,WAAW,CAAC;MAEvE,IAAAC,cAAA,GAA4B,IAAI,CAAChG,OAAO;QAAhCZ,QAAQ,GAAA4G,cAAA,CAAR5G,QAAQ;QAAE9B,KAAK,GAAA0I,cAAA,CAAL1I,KAAK;MAEvB,IAAI8B,QAAQ,CAACC,OAAO,EAAE;QACpBD,QAAQ,CAACC,OAAO,CAACC,MAAM,GAAG,IAAI,CAACA,MAAM;QACrCF,QAAQ,CAACC,OAAO,CAACI,QAAQ,GAAG,IAAI,CAACA,QAAQ;MAC3C;MAEA,IAAInC,KAAK,KAAK,EAAE,EAAE;QAChB,IAAA2I,iBAAA,GAAyB,IAAI,CAACzD,WAAW,CAAClF,KAAK,EAAE,EAAE,EAAE,EAAE,CAAC;UAAhD6E,YAAY,GAAA8D,iBAAA,CAAZ9D,YAAY;QACpB,IAAI,CAACW,QAAQ,CAACX,YAAY,CAACA,YAAY,CAAC;MAC1C;IACF;EAAC;IAAAxC,GAAA;IAAArC,KAAA,EAED,SAAA4I,mBAAmBC,SAAS,EAAE;MAC5B,IAAIA,SAAS,CAAC7I,KAAK,KAAK,IAAI,CAACmE,KAAK,CAACnE,KAAK,EAAE;QACxC,IAAA8I,kBAAA,GAAyB,IAAI,CAAC5D,WAAW,CACvC,IAAI,CAACf,KAAK,CAACnE,KAAK,EAChB6I,SAAS,CAAC7I,KAAK,EACf6I,SAAS,CAAChE,YAAY,CACvB;UAJOA,YAAY,GAAAiE,kBAAA,CAAZjE,YAAY;QAKpB,IAAI,CAACW,QAAQ,CAACX,YAAY,CAACA,YAAY,CAAC;MAC1C;IACF;EAAC;IAAAxC,GAAA;IAAArC,KAAA,EAED,SAAA+I,qBAAA,EAAuB;MAAA,IAAAC,sBAAA;MACrB,CAAAA,sBAAA,OAAI,CAAC/C,aAAa,CAAClE,OAAO,cAAAiH,sBAAA,uBAA1BA,sBAAA,CAA4BC,mBAAmB,CAAC,OAAO,EAAE,IAAI,CAACR,WAAW,CAAC;IAC5E;EAAC;IAAApG,GAAA;IAAArC,KAAA,EA4MD,SAAAkD,OAAA,EAAS;MAAA,IAAAgG,KAAA,QAAAxG,OAAA;QAAAyG,KAAA;MACP,IAAMC,MAAM,GAOE9J,KAAK,CAACqE,KAAK;MANzB,IAAM0F,YAAY,GAAG,KAAK;MAC1B,IAAAC,cAAA,GAA8E,IAAI,CAAC5G,OAAO;QAAlF6G,MAAM,GAAAD,cAAA,CAANC,MAAM;QAAEtJ,GAAG,GAAAqJ,cAAA,CAAHrJ,GAAG;QAAEM,GAAG,GAAA+I,cAAA,CAAH/I,GAAG;QAAEyE,IAAI,GAAAsE,cAAA,CAAJtE,IAAI;QAAEwE,UAAU,GAAAF,cAAA,CAAVE,UAAU;QAAE1H,QAAQ,GAAAwH,cAAA,CAARxH,QAAQ;QAAE9B,KAAK,GAAAsJ,cAAA,CAALtJ,KAAK;QAAE6E,YAAY,GAAAyE,cAAA,CAAZzE,YAAY;MAEzE,OAAAsE,KAAA,GAAO/J,OAAO,CAACmK,MAAM,CAAC,eACpBtK,KAAA,CAAAqE,aAAA,CAAArE,KAAA,CAAAwK,QAAA,qBACExK,KAAA,CAAAqE,aAAA,CAAC8F,MAAM,EAAAD,KAAA,CAAA5F,EAAA,WAAAC,aAAA,KAAAkG,aAAA;QAAA,gBAEQ,KAAK;QAAA,UACV,IAAI,CAACjC,gBAAgB;QAAA,gBACf,IAAI,CAACkC,YAAY;QAAA,aACpB,IAAI,CAACC,aAAa;QAAA,WACpB,IAAI,CAACC,WAAW;QAAA,WAChB,IAAI,CAACC,WAAW;QAAA,WAChBhK,OAAO,CAAC,IAAI,CAACmG,aAAa,EAAEnE,QAAQ,EAAE0H,UAAU,CAAC;QAAA,aAC/C3E,YAAY;QAAA,aACb,SAAS;QAAA,iBACJ5E,GAAG;QAAA,iBACHM,GAAG;QAAA,OACbN,GAAG;QAAA,OACHM,GAAG;QAAA,QACFyE;MAAI,GAAAkE,KAAA,IACV,eAIFjK,KAAA,CAAAqE,aAAA,CAAC+F,YAAY,EAAAF,KAAA,CAAA5F,EAAA;QAAA,aAAW,QAAQ;QAAA,eAAc;MAAI,IAC/CvD,KAAK,CACO,CACd;IAEP;EAAC;EAAA,OAAA2D,KAAA;AAAA,EApYiBxE,SAAS;AAAAqC,eAAA,CAAvBmC,KAAK,kBACa;EACpBoG,YAAY,EAAE,EAAE;EAChBC,mBAAmB,EAAE,EAAE;EACvBhF,IAAI,EAAE;AACR,CAAC;AAkYH,SAASiF,QAAQA,CAAC9F,KAAK,EAAE;EAAA,IAAA+F,KAAA,GAAAC,YAAA;IAAAC,KAAA;EACvB,IAAQC,QAAQ,GAAsDlG,KAAK,CAAnEkG,QAAQ;IAAEzH,SAAS,GAA2CuB,KAAK,CAAzDvB,SAAS;IAAEC,SAAS,GAAgCsB,KAAK,CAA9CtB,SAAS;IAAEG,IAAI,GAA0BmB,KAAK,CAAnCnB,IAAI;IAAEuG,MAAM,GAAkBpF,KAAK,CAA7BoF,MAAM;IAAEtG,WAAW,GAAKkB,KAAK,CAArBlB,WAAW;EACjE,IAAMqH,SAAS,GAKMhL,KAAK,CAACiL,KAAK;EAJhC,IAAMC,GAAG,GAAG,QAAQ;EACpB,IAAMC,KAAK,GAAG,QAAQ;EAEtB,OAAAL,KAAA,GAAOhL,OAAO,CAACmK,MAAM,CAAC,eACpBtK,KAAA,CAAAqE,aAAA,CAACgH,SAAS,EAAAF,KAAA,CAAA7G,EAAA,cAAAC,aAAA,KAAAkH,aAAA;IAAA,eAAkC;EAAM,GAAAR,KAAA,kBAChDjL,KAAA,CAAAqE,aAAA,CAACkH,GAAG,EAAAJ,KAAA,CAAA7G,EAAA;IAAA,WACOX,SAAS;IAAA,YACR,CAAC,CAAC;IAAA,QACP,QAAQ;IAAA,QACPI,IAAI;IAAA,cACEC,WAAW,CAAC,WAAW;EAAC,iBAEpChE,KAAA,CAAAqE,aAAA,CAAC/D,aAAa,EAAA6K,KAAA,CAAA7G,EAAA,sBAAG,CACb,eACNtE,KAAA,CAAAqE,aAAA,CAACmH,KAAK,EAAAL,KAAA,CAAA7G,EAAA;IAAA,WACKV,SAAS;IAAA,YACR,CAAC,CAAC;IAAA,QACP,QAAQ;IAAA,QACPG,IAAI;IAAA,cACEC,WAAW,CAAC,WAAW;EAAC,iBAEpChE,KAAA,CAAAqE,aAAA,CAAC9D,aAAa,EAAA4K,KAAA,CAAA7G,EAAA,sBAAG,CACX,eACRtE,KAAA,CAAAqE,aAAA,CAAC+G,QAAQ,EAAAD,KAAA,CAAA7G,EAAA,iBAAG,CACF;AAEhB;AAEA,eAAerE,eAAe,CAACwB,WAAW,EAAE;EAC1CiD,KAAK,EAALA,KAAK;EACLsG,QAAQ,EAARA,QAAQ;EACRM,KAAK,EAAEjL,KAAK,CAACiL;AACf,CAAC,CAAC"}
|
1
|
+
{"version":3,"file":"InputNumber.js","names":["React","createComponent","Component","sstyled","Root","Input","IncrementIcon","DecrementIcon","localizedMessages","i18nEnhance","style","_sstyled","insert","forkRef","parseValueWithMinMax","value","min","arguments","length","undefined","Number","MIN_SAFE_INTEGER","max","MAX_SAFE_INTEGER","Math","InputNumber","_Component","_inherits","_super","_createSuper","_this","_classCallCheck","_len","args","Array","_key","call","apply","concat","_defineProperty","_assertThisInitialized","createRef","event","_this$inputRef$curren","_this$inputRef$curren2","inputRef","current","stepUp","_this$inputRef$curren3","_this$inputRef$curren4","stepDown","_createClass","key","getValueProps","numberFormatter","Intl","NumberFormat","asProps","locale","increment","decrement","getControlsProps","_this$asProps","size","getI18nText","render","_ref","_ref4","SInputNumber","createElement","cn","_objectSpread","_assignProps","i18n","Value","_Component2","_super2","_this2","_len2","_key2","prevValue","prevDisplayValue","props","stringNumber","String","replace","RegExp","separatorThousands","separatorDecimal","isNaN","slice","includes","parsedValue","displayValue","format","_this2$asProps","step","_this2$valueParser","valueParser","currentTarget","roundCoefficient","toString","split","parseFloat","handlers","numberValue","rounded","round","abs","numberValueRounded","toFixed","target","valueInputRef","document","activeElement","preventDefault","wheelDelta","digits","test","cursorPosition","element","role","selectionStart","afterSelection","selectionEnd","requestAnimationFrame","newValue","state","index","lastIndexOf","setSelectionRange","cursorIndex","shiftKey","moveSelectionLeft","moveSelectionRight","nextPosition","handleValidation","_this2$asProps2","_this2$asProps2$max","_this2$asProps3","_this2$asProps3$min","uncontrolledProps","_this3","_this3$asProps","_this3$valueParser","get","countDecimals","floor","toPrecision","componentDidMount","_this$valueInputRef$c","addEventListener","handleWheel","_this$asProps2","_this$valueParser","componentDidUpdate","prevProps","_this$valueParser2","componentWillUnmount","_this$valueInputRef$c2","removeEventListener","_ref2","_ref5","SValue","SValueHidden","_this$asProps3","styles","forwardRef","Fragment","_assignProps2","handleChange","handleKeyDown","handleKeyUp","handleClick","defaultValue","defaultDisplayValue","Controls","_ref3","arguments[0]","_ref6","Children","SControls","Addon","SUp","SDown","_assignProps3"],"sources":["../../src/InputNumber.jsx"],"sourcesContent":["import React from 'react';\nimport createComponent, { Component, sstyled, Root } from '@semcore/core';\nimport Input from '@semcore/input';\nimport { IncrementIcon, DecrementIcon } from './buttons';\nimport { localizedMessages } from './translations/__intergalactic-dynamic-locales';\nimport i18nEnhance from '@semcore/utils/lib/enhances/i18nEnhance';\n\nimport style from './style/input-number.shadow.css';\nimport { forkRef } from '@semcore/utils/lib/ref';\n\nexport function parseValueWithMinMax(\n value,\n min = Number.MIN_SAFE_INTEGER,\n max = Number.MAX_SAFE_INTEGER,\n) {\n return Math.max(min, Math.min(max, value));\n}\n\nclass InputNumber extends Component {\n static displayName = 'InputNumber';\n static style = style;\n static enhance = [i18nEnhance(localizedMessages)];\n static defaultProps = {\n size: 'm',\n i18n: localizedMessages,\n locale: 'en',\n };\n\n inputRef = React.createRef();\n\n increment = (event) => {\n this.inputRef.current?.stepUp?.(event);\n };\n\n decrement = (event) => {\n this.inputRef.current?.stepDown?.(event);\n };\n\n getValueProps() {\n const numberFormatter = new Intl.NumberFormat(this.asProps.locale, { style: 'decimal' });\n\n return {\n inputRef: this.inputRef,\n increment: this.increment,\n decrement: this.decrement,\n numberFormatter,\n };\n }\n\n getControlsProps() {\n const { size, getI18nText } = this.asProps;\n return {\n size,\n increment: this.increment,\n decrement: this.decrement,\n getI18nText,\n };\n }\n\n render() {\n const SInputNumber = Root;\n return sstyled(this.asProps.style)(<SInputNumber render={Input} />);\n }\n}\n\nclass Value extends Component {\n static defaultProps = {\n defaultValue: '',\n defaultDisplayValue: '',\n step: 1,\n };\n\n valueInputRef = React.createRef();\n\n cursorPosition = -1;\n\n uncontrolledProps() {\n return {\n displayValue: null,\n value: [\n null,\n (newValue) => {\n const { value: prevValue, displayValue: prevDisplayValue } = this.asProps;\n\n if (newValue === '-') {\n this.handlers.displayValue(newValue);\n\n return newValue;\n } else {\n const { parsedValue, displayValue } = this.valueParser(\n newValue,\n prevValue,\n prevDisplayValue,\n );\n\n this.handlers.displayValue(displayValue);\n\n return parsedValue;\n }\n },\n ],\n };\n }\n\n get separatorDecimal() {\n const { numberFormatter } = this.props;\n\n return numberFormatter.format(11.11).replace(/\\d/g, '');\n }\n\n get separatorThousands() {\n const { numberFormatter } = this.props;\n\n return numberFormatter.format(1111).replace(/\\d/g, '');\n }\n\n valueParser = (value, prevValue, prevDisplayValue) => {\n const { numberFormatter } = this.props;\n\n const stringNumber = String(value)\n .replace(new RegExp(`[${this.separatorThousands}]`, 'g'), '')\n .replace(this.separatorDecimal, '.');\n\n if (\n stringNumber[stringNumber.length - 1] === '.' &&\n !Number.isNaN(Number(prevValue)) &&\n !stringNumber.slice(0, -1).includes('.')\n ) {\n if (value.length > prevValue.length) {\n // type new value\n return {\n parsedValue: prevValue + this.separatorDecimal,\n displayValue: numberFormatter.format(prevValue) + this.separatorDecimal,\n };\n } else {\n // backspace value\n return {\n parsedValue: stringNumber,\n displayValue: value,\n };\n }\n }\n\n if (Number.isNaN(Number(stringNumber))) {\n return {\n parsedValue: prevValue,\n displayValue: prevDisplayValue,\n };\n }\n\n return {\n parsedValue: stringNumber,\n displayValue: stringNumber === '' ? '' : numberFormatter.format(stringNumber),\n };\n };\n\n round(value, step) {\n const countDecimals = Math.floor(step) === step ? 0 : step.toString().split('.')[1].length || 0;\n return countDecimals === 0\n ? Number.parseFloat(value)\n : Number.parseFloat(value).toPrecision(countDecimals);\n }\n\n handleValidation = (event) => {\n const { value, displayValue, min, max, step } = this.asProps;\n const { parsedValue } = this.valueParser(event.currentTarget.value, value, displayValue);\n const roundCoefficient = step < 1 ? step.toString().split('.')[1].length : 1;\n\n if (Number.isNaN(value) || Number.isNaN(Number.parseFloat(parsedValue))) {\n event.currentTarget.value = '';\n this.handlers.value('', event);\n } else {\n let numberValue = parseValueWithMinMax(Number.parseFloat(parsedValue), min, max);\n const rounded = this.round(numberValue % step, step);\n if (rounded !== 0) {\n if (rounded >= step / 2) {\n numberValue += step - rounded;\n } else if (Math.abs(rounded) < step) {\n numberValue -= rounded;\n }\n }\n const numberValueRounded = Number(numberValue.toFixed(roundCoefficient));\n\n this.handlers.value(String(numberValueRounded), event);\n }\n };\n\n // https://stackoverflow.com/questions/57358640/cancel-wheel-event-with-e-preventdefault-in-react-event-bubbling\n componentDidMount() {\n this.valueInputRef.current?.addEventListener('wheel', this.handleWheel);\n\n const { inputRef, value } = this.asProps;\n\n if (inputRef.current) {\n inputRef.current.stepUp = this.stepUp;\n inputRef.current.stepDown = this.stepDown;\n }\n\n if (value !== '') {\n const { displayValue } = this.valueParser(value, '', '');\n this.handlers.displayValue(displayValue);\n }\n }\n\n componentDidUpdate(prevProps) {\n if (prevProps.value !== this.props.value) {\n const { displayValue } = this.valueParser(\n this.props.value,\n prevProps.value,\n prevProps.displayValue,\n );\n this.handlers.displayValue(displayValue);\n }\n }\n\n componentWillUnmount() {\n this.valueInputRef.current?.removeEventListener('wheel', this.handleWheel);\n }\n\n handleWheel = (event) => {\n if (event.target !== this.valueInputRef.current) return;\n if (document.activeElement !== this.valueInputRef.current) return;\n event.preventDefault();\n if (event.wheelDelta > 0) {\n this.stepUp(event);\n } else if (event.wheelDelta < 0) {\n this.stepDown(event);\n }\n };\n\n handleChange = (event) => {\n const value = event.currentTarget.value;\n const digits = /[0-9,.-]+/.test(value);\n\n if (digits || value === '') {\n this.handlers.value(value, event);\n }\n\n return false;\n };\n\n handleKeyUp = (event) => {\n if (event.key === 'Shift') {\n this.cursorPosition = -1;\n }\n\n const element = event.currentTarget;\n\n element.role = 'input';\n };\n\n handleKeyDown = (event) => {\n const element = event.currentTarget;\n const value = element.value;\n const length = value.length;\n\n // we need this dirty hack for screen readers, because they couldn't read full value in input after adding there ','.\n // so, we change role to `region` here and back to `input` in handleKeyUp\n element.role = 'region';\n\n if (\n element.selectionStart !== length &&\n (event.key === 'Backspace' ||\n event.key === this.separatorDecimal ||\n ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'].includes(event.key))\n ) {\n const afterSelection = value.slice(element.selectionEnd);\n\n requestAnimationFrame(() => {\n const newValue = this.state.displayValue;\n const index = newValue.lastIndexOf(afterSelection);\n const selectionStart = index;\n const selectionEnd = index;\n\n element.setSelectionRange(selectionStart, selectionEnd);\n });\n }\n\n // For correct moving cursor with skip separatorThousands.\n // Examples:\n // - Press ArrowLeft: `12,3|4 -> 12|,34`\n // - Press ArrowRight: `1|,55 -> 1,5|5`\n const cursorIndex = 2;\n\n if (event.shiftKey && this.cursorPosition === -1) {\n this.cursorPosition = element.selectionStart;\n }\n\n switch (event.key) {\n case 'ArrowLeft': {\n event.preventDefault();\n this.moveSelectionLeft(element, cursorIndex);\n break;\n }\n case 'ArrowRight': {\n event.preventDefault();\n this.moveSelectionRight(element, cursorIndex);\n break;\n }\n case 'ArrowDown': {\n event.preventDefault();\n this.stepDown(event);\n break;\n }\n case 'ArrowUp': {\n event.preventDefault();\n this.stepUp(event);\n break;\n }\n }\n };\n\n moveSelectionLeft = (element, cursorIndex) => {\n const value = element.value;\n const nextPosition = element.selectionStart - 1 >= 0 ? element.selectionStart - 1 : 0;\n\n const cursorPosition =\n value[element.selectionStart - cursorIndex] === this.separatorThousands\n ? element.selectionStart - cursorIndex\n : nextPosition;\n\n if (this.cursorPosition === -1) {\n // without shift\n element.setSelectionRange(cursorPosition, cursorPosition);\n } else {\n if (\n element.selectionStart <= this.cursorPosition &&\n element.selectionEnd === this.cursorPosition\n ) {\n element.setSelectionRange(cursorPosition, element.selectionEnd);\n } else {\n element.setSelectionRange(\n element.selectionStart,\n value[element.selectionEnd - cursorIndex] === this.separatorThousands\n ? element.selectionEnd - cursorIndex\n : element.selectionEnd - 1,\n );\n }\n }\n };\n\n moveSelectionRight = (element, cursorIndex) => {\n const value = element.value;\n const nextPosition = element.selectionEnd + 1;\n\n const cursorPosition =\n value[element.selectionEnd] === this.separatorThousands\n ? element.selectionEnd + cursorIndex\n : nextPosition;\n\n if (this.cursorPosition === -1) {\n // without shift\n element.setSelectionRange(cursorPosition, cursorPosition);\n } else {\n if (\n element.selectionEnd >= this.cursorPosition &&\n element.selectionStart === this.cursorPosition\n ) {\n element.setSelectionRange(element.selectionStart, cursorPosition);\n } else {\n element.setSelectionRange(\n value[element.selectionStart] === this.separatorThousands\n ? element.selectionStart + cursorIndex\n : element.selectionStart + 1,\n element.selectionEnd,\n );\n }\n }\n };\n\n handleClick = (event) => {\n const element = event.target;\n const value = element.value;\n\n if (value[element.selectionStart - 1] === this.separatorThousands) {\n element.setSelectionRange(element.selectionStart - 1, element.selectionEnd - 1);\n }\n };\n\n handleBlur = (event) => {\n this.cursorPosition = -1;\n this.handleValidation(event);\n };\n\n stepUp = (event) => {\n const { max = Number.MAX_SAFE_INTEGER, min, step, value } = this.asProps;\n\n let numberValue;\n\n // https://stackoverflow.com/questions/68010124/safari-number-input-stepup-stepdown-not-functioning-with-empty-value\n if (value === '') {\n numberValue = min ?? 0;\n } else {\n numberValue = Number.parseFloat(value);\n }\n\n if (!Number.isNaN(numberValue)) {\n const newValue = numberValue + step <= max ? numberValue + step : max;\n\n this.handlers.value(newValue.toString(), event);\n }\n };\n\n stepDown = (event) => {\n const { max, min = Number.MIN_SAFE_INTEGER, step, value } = this.asProps;\n\n let numberValue;\n\n if (value === '') {\n numberValue = max ?? 0;\n } else {\n numberValue = Number.parseFloat(value);\n }\n\n if (!Number.isNaN(numberValue)) {\n const newValue = numberValue - step >= min ? numberValue - step : min;\n\n this.handlers.value(newValue.toString(), event);\n }\n };\n\n render() {\n const SValue = Root;\n const SValueHidden = 'div';\n const { styles, min, max, step, forwardRef, inputRef, value, displayValue } = this.asProps;\n\n return sstyled(styles)(\n <>\n <SValue\n render={Input.Value}\n autoComplete='off'\n onBlur={this.handleValidation}\n use:onChange={this.handleChange}\n onKeyDown={this.handleKeyDown}\n onKeyUp={this.handleKeyUp}\n onClick={this.handleClick}\n use:ref={forkRef(this.valueInputRef, inputRef, forwardRef)}\n use:value={displayValue}\n inputMode='decimal'\n aria-valuemin={min}\n aria-valuemax={max}\n min={min}\n max={max}\n step={step}\n />\n {/* the next hidden div is necessary for the screen reader to report the value\n in the input, because after validation the value can change to the `min` or `max`\n if entered less than `min` or more than `max` */}\n <SValueHidden aria-live='polite' aria-atomic={true}>\n {value}\n </SValueHidden>\n </>,\n );\n }\n}\n\nfunction Controls(props) {\n const { Children, increment, decrement, size, styles, getI18nText } = props;\n const SControls = Root;\n const SUp = 'button';\n const SDown = 'button';\n\n return sstyled(styles)(\n <SControls render={Input.Addon} aria-hidden='true'>\n <SUp\n onClick={increment}\n tabIndex={-1}\n type='button'\n size={size}\n aria-label={getI18nText('increment')}\n >\n <IncrementIcon />\n </SUp>\n <SDown\n onClick={decrement}\n tabIndex={-1}\n type='button'\n size={size}\n aria-label={getI18nText('decrement')}\n >\n <DecrementIcon />\n </SDown>\n <Children />\n </SControls>,\n );\n}\n\nexport default createComponent(InputNumber, {\n Value,\n Controls,\n Addon: Input.Addon,\n});\n"],"mappings":"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"}
|
@@ -22,18 +22,18 @@ var _scrollArea = _interopRequireDefault(require("intergalactic/scroll-area"));
|
|
22
22
|
var _tag = _interopRequireDefault(require("intergalactic/tag"));
|
23
23
|
var _fire = _interopRequireDefault(require("intergalactic/utils/lib/fire"));
|
24
24
|
/*__reshadow-styles__:"./style/input-tag.shadow.css"*/
|
25
|
-
var style = ( /*__reshadow_css_start__*/_index.sstyled.insert( /*__inner_css_start__*/".
|
26
|
-
"__SInputTags": "
|
27
|
-
"__SContainer": "
|
28
|
-
"__SOutline": "
|
29
|
-
"_orientation_vertical": "
|
30
|
-
"_size_m": "
|
31
|
-
"_size_l": "
|
32
|
-
"__STag": "
|
33
|
-
"_editable": "
|
34
|
-
"__SValue": "
|
35
|
-
"__SSpacer": "
|
36
|
-
"__SListAriaWrapper": "
|
25
|
+
var style = ( /*__reshadow_css_start__*/_index.sstyled.insert( /*__inner_css_start__*/".___SInputTags_5b8r2_gg_{box-sizing:border-box;cursor:text;align-items:flex-start;overflow:visible;overflow:initial}.___SInputTags_5b8r2_gg_ .___SContainer_5b8r2_gg_:focus .___SOutline_5b8r2_gg_{border-color:var(--intergalactic-border-info-active, #006dca);box-shadow:var(--intergalactic-keyboard-focus, 0px 0px 0px 3px rgba(0, 143, 248, 0.5))}.___SInputTags_5b8r2_gg_ .___SContainer_5b8r2_gg_:focus:has(.___SOutline_5b8r2_gg_)::after{box-shadow:none}.___SContainer_5b8r2_gg_{padding:1px 0;box-sizing:border-box;border-bottom:1px solid transparent;border-top:1px solid transparent}.___SInputTags_5b8r2_gg_>div>div{display:flex;align-items:center;flex-flow:row wrap}.___SInputTags_5b8r2_gg_>div[data-ui-name=\"ScrollArea.Bar\"]._orientation_vertical_5b8r2_gg_{right:1px!important}.___SInputTags_5b8r2_gg_._size_m_5b8r2_gg_{min-height:var(--intergalactic-form-control-m, 28px);height:auto;padding:0 calc(var(--intergalactic-spacing-1x, 4px) + var(--intergalactic-spacing-05x, 2px))}.___SInputTags_5b8r2_gg_._size_l_5b8r2_gg_{min-height:var(--intergalactic-form-control-l, 40px);height:auto;padding:0 calc(var(--intergalactic-spacing-2x, 8px) + var(--intergalactic-spacing-05x, 2px))}.___STag_5b8r2_gg_{margin:var(--intergalactic-spacing-05x, 2px)}.___STag_5b8r2_gg_.__editable_5b8r2_gg_{cursor:pointer}.___SInputTags_5b8r2_gg_._size_m_5b8r2_gg_ .___SValue_5b8r2_gg_{height:calc(var(--intergalactic-form-control-m, 28px) - var(--intergalactic-spacing-1x, 4px))}.___SInputTags_5b8r2_gg_._size_l_5b8r2_gg_ .___SValue_5b8r2_gg_{height:calc(var(--intergalactic-form-control-l, 40px) - var(--intergalactic-spacing-1x, 4px))}.___SValue_5b8r2_gg_{padding:0!important;margin-left:var(--intergalactic-spacing-05x, 2px);margin-right:var(--intergalactic-spacing-05x, 2px)}.___SSpacer_5b8r2_gg_{position:absolute;top:0;left:0;visibility:hidden;height:0;overflow:scroll;white-space:pre;font-family:inherit;font-size:inherit;font-weight:inherit;font-style:inherit;letter-spacing:inherit;text-transform:inherit}.___SListAriaWrapper_5b8r2_gg_{display:contents}" /*__inner_css_end__*/, "5b8r2_gg_") /*__reshadow_css_end__*/, {
|
26
|
+
"__SInputTags": "___SInputTags_5b8r2_gg_",
|
27
|
+
"__SContainer": "___SContainer_5b8r2_gg_",
|
28
|
+
"__SOutline": "___SOutline_5b8r2_gg_",
|
29
|
+
"_orientation_vertical": "_orientation_vertical_5b8r2_gg_",
|
30
|
+
"_size_m": "_size_m_5b8r2_gg_",
|
31
|
+
"_size_l": "_size_l_5b8r2_gg_",
|
32
|
+
"__STag": "___STag_5b8r2_gg_",
|
33
|
+
"_editable": "__editable_5b8r2_gg_",
|
34
|
+
"__SValue": "___SValue_5b8r2_gg_",
|
35
|
+
"__SSpacer": "___SSpacer_5b8r2_gg_",
|
36
|
+
"__SListAriaWrapper": "___SListAriaWrapper_5b8r2_gg_"
|
37
37
|
});
|
38
38
|
/** @deprecated */
|
39
39
|
var InputTags = /*#__PURE__*/function (_Component) {
|
@@ -17,18 +17,18 @@ import ScrollArea from 'intergalactic/scroll-area';
|
|
17
17
|
import Tag from 'intergalactic/tag';
|
18
18
|
import fire from 'intergalactic/utils/lib/fire';
|
19
19
|
/*__reshadow-styles__:"./style/input-tag.shadow.css"*/
|
20
|
-
var style = ( /*__reshadow_css_start__*/_sstyled.insert( /*__inner_css_start__*/".
|
21
|
-
"__SInputTags": "
|
22
|
-
"__SContainer": "
|
23
|
-
"__SOutline": "
|
24
|
-
"_orientation_vertical": "
|
25
|
-
"_size_m": "
|
26
|
-
"_size_l": "
|
27
|
-
"__STag": "
|
28
|
-
"_editable": "
|
29
|
-
"__SValue": "
|
30
|
-
"__SSpacer": "
|
31
|
-
"__SListAriaWrapper": "
|
20
|
+
var style = ( /*__reshadow_css_start__*/_sstyled.insert( /*__inner_css_start__*/".___SInputTags_5b8r2_gg_{box-sizing:border-box;cursor:text;align-items:flex-start;overflow:visible;overflow:initial}.___SInputTags_5b8r2_gg_ .___SContainer_5b8r2_gg_:focus .___SOutline_5b8r2_gg_{border-color:var(--intergalactic-border-info-active, #006dca);box-shadow:var(--intergalactic-keyboard-focus, 0px 0px 0px 3px rgba(0, 143, 248, 0.5))}.___SInputTags_5b8r2_gg_ .___SContainer_5b8r2_gg_:focus:has(.___SOutline_5b8r2_gg_)::after{box-shadow:none}.___SContainer_5b8r2_gg_{padding:1px 0;box-sizing:border-box;border-bottom:1px solid transparent;border-top:1px solid transparent}.___SInputTags_5b8r2_gg_>div>div{display:flex;align-items:center;flex-flow:row wrap}.___SInputTags_5b8r2_gg_>div[data-ui-name=\"ScrollArea.Bar\"]._orientation_vertical_5b8r2_gg_{right:1px!important}.___SInputTags_5b8r2_gg_._size_m_5b8r2_gg_{min-height:var(--intergalactic-form-control-m, 28px);height:auto;padding:0 calc(var(--intergalactic-spacing-1x, 4px) + var(--intergalactic-spacing-05x, 2px))}.___SInputTags_5b8r2_gg_._size_l_5b8r2_gg_{min-height:var(--intergalactic-form-control-l, 40px);height:auto;padding:0 calc(var(--intergalactic-spacing-2x, 8px) + var(--intergalactic-spacing-05x, 2px))}.___STag_5b8r2_gg_{margin:var(--intergalactic-spacing-05x, 2px)}.___STag_5b8r2_gg_.__editable_5b8r2_gg_{cursor:pointer}.___SInputTags_5b8r2_gg_._size_m_5b8r2_gg_ .___SValue_5b8r2_gg_{height:calc(var(--intergalactic-form-control-m, 28px) - var(--intergalactic-spacing-1x, 4px))}.___SInputTags_5b8r2_gg_._size_l_5b8r2_gg_ .___SValue_5b8r2_gg_{height:calc(var(--intergalactic-form-control-l, 40px) - var(--intergalactic-spacing-1x, 4px))}.___SValue_5b8r2_gg_{padding:0!important;margin-left:var(--intergalactic-spacing-05x, 2px);margin-right:var(--intergalactic-spacing-05x, 2px)}.___SSpacer_5b8r2_gg_{position:absolute;top:0;left:0;visibility:hidden;height:0;overflow:scroll;white-space:pre;font-family:inherit;font-size:inherit;font-weight:inherit;font-style:inherit;letter-spacing:inherit;text-transform:inherit}.___SListAriaWrapper_5b8r2_gg_{display:contents}" /*__inner_css_end__*/, "5b8r2_gg_") /*__reshadow_css_end__*/, {
|
21
|
+
"__SInputTags": "___SInputTags_5b8r2_gg_",
|
22
|
+
"__SContainer": "___SContainer_5b8r2_gg_",
|
23
|
+
"__SOutline": "___SOutline_5b8r2_gg_",
|
24
|
+
"_orientation_vertical": "_orientation_vertical_5b8r2_gg_",
|
25
|
+
"_size_m": "_size_m_5b8r2_gg_",
|
26
|
+
"_size_l": "_size_l_5b8r2_gg_",
|
27
|
+
"__STag": "___STag_5b8r2_gg_",
|
28
|
+
"_editable": "__editable_5b8r2_gg_",
|
29
|
+
"__SValue": "___SValue_5b8r2_gg_",
|
30
|
+
"__SSpacer": "___SSpacer_5b8r2_gg_",
|
31
|
+
"__SListAriaWrapper": "___SListAriaWrapper_5b8r2_gg_"
|
32
32
|
});
|
33
33
|
/** @deprecated */
|
34
34
|
var InputTags = /*#__PURE__*/function (_Component) {
|
@@ -0,0 +1,229 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard");
|
4
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
6
|
+
value: true
|
7
|
+
});
|
8
|
+
exports["default"] = exports.RootItem = void 0;
|
9
|
+
var _objectSpread2 = _interopRequireDefault(require("@babel/runtime/helpers/objectSpread2"));
|
10
|
+
var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
|
11
|
+
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
|
12
|
+
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
13
|
+
var _assertThisInitialized2 = _interopRequireDefault(require("@babel/runtime/helpers/assertThisInitialized"));
|
14
|
+
var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
|
15
|
+
var _createSuper2 = _interopRequireDefault(require("@babel/runtime/helpers/createSuper"));
|
16
|
+
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
17
|
+
var _core = _interopRequireWildcard(require("@semcore/core"));
|
18
|
+
var _react = _interopRequireDefault(require("react"));
|
19
|
+
var _flexBox = require("@semcore/flex-box");
|
20
|
+
var _animation = require("@semcore/animation");
|
21
|
+
var _m = _interopRequireDefault(require("@semcore/icon/ChevronRight/m"));
|
22
|
+
var _keyboardFocusEnhance = _interopRequireDefault(require("@semcore/utils/lib/enhances/keyboardFocusEnhance"));
|
23
|
+
var _uniqueID = _interopRequireDefault(require("@semcore/utils/lib/uniqueID"));
|
24
|
+
var _useCssVariable = require("@semcore/utils/lib/useCssVariable");
|
25
|
+
/*__reshadow-styles__:"./style/accordion.shadow.css"*/
|
26
|
+
var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".___SItemToggle_1jqq9_gg_{cursor:pointer;outline:0}.___SItemToggle_1jqq9_gg_.__keyboardFocused_1jqq9_gg_{box-shadow:var(--intergalactic-keyboard-focus, 0px 0px 0px 3px rgba(0, 143, 248, 0.5))}.___SItemToggle_1jqq9_gg_.__disabled_1jqq9_gg_{opacity:var(--intergalactic-disabled-opacity, 0.3);cursor:default}.___SItemChevron_1jqq9_gg_{transform:rotate(0deg);transition:transform calc(var(--intergalactic-duration-accordion, 200)*1ms) ease-out}.___SItemChevron_1jqq9_gg_.__selected_1jqq9_gg_{transform:rotate(90deg)}@media (prefers-reduced-motion){.___SItemChevron_1jqq9_gg_{transition:none}}" /*__inner_css_end__*/, "1jqq9_gg_") /*__reshadow_css_end__*/, {
|
27
|
+
"__SItemToggle": "___SItemToggle_1jqq9_gg_",
|
28
|
+
"_keyboardFocused": "__keyboardFocused_1jqq9_gg_",
|
29
|
+
"_disabled": "__disabled_1jqq9_gg_",
|
30
|
+
"__SItemChevron": "___SItemChevron_1jqq9_gg_",
|
31
|
+
"_selected": "__selected_1jqq9_gg_"
|
32
|
+
});
|
33
|
+
var RootAccordion = /*#__PURE__*/function (_Component) {
|
34
|
+
(0, _inherits2["default"])(RootAccordion, _Component);
|
35
|
+
var _super = (0, _createSuper2["default"])(RootAccordion);
|
36
|
+
function RootAccordion() {
|
37
|
+
var _this;
|
38
|
+
(0, _classCallCheck2["default"])(this, RootAccordion);
|
39
|
+
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
40
|
+
args[_key] = arguments[_key];
|
41
|
+
}
|
42
|
+
_this = _super.call.apply(_super, [this].concat(args));
|
43
|
+
(0, _defineProperty2["default"])((0, _assertThisInitialized2["default"])(_this), "handleToggleInteraction", function (newValue) {
|
44
|
+
var value = _this.asProps.value;
|
45
|
+
if (Array.isArray(value)) {
|
46
|
+
var indexOfNewValue = value.indexOf(newValue);
|
47
|
+
var result = (0, _toConsumableArray2["default"])(value);
|
48
|
+
indexOfNewValue === -1 ? result.push(newValue) : result.splice(indexOfNewValue, 1);
|
49
|
+
_this.handlers.value(result);
|
50
|
+
} else {
|
51
|
+
_this.handlers.value(value === newValue ? null : newValue);
|
52
|
+
}
|
53
|
+
});
|
54
|
+
return _this;
|
55
|
+
}
|
56
|
+
(0, _createClass2["default"])(RootAccordion, [{
|
57
|
+
key: "uncontrolledProps",
|
58
|
+
value: function uncontrolledProps() {
|
59
|
+
return {
|
60
|
+
value: null
|
61
|
+
};
|
62
|
+
}
|
63
|
+
}, {
|
64
|
+
key: "getItemProps",
|
65
|
+
value: function getItemProps(_ref6) {
|
66
|
+
var value = _ref6.value;
|
67
|
+
var _this$asProps = this.asProps,
|
68
|
+
selectedValue = _this$asProps.value,
|
69
|
+
duration = _this$asProps.duration;
|
70
|
+
var selected = Array.isArray(selectedValue) ? selectedValue.includes(value) : selectedValue === value;
|
71
|
+
return {
|
72
|
+
selected: selected,
|
73
|
+
duration: duration,
|
74
|
+
$handleInteraction: this.handleToggleInteraction
|
75
|
+
};
|
76
|
+
}
|
77
|
+
}, {
|
78
|
+
key: "render",
|
79
|
+
value: function render() {
|
80
|
+
var Children = this.asProps.Children;
|
81
|
+
return /*#__PURE__*/_react["default"].createElement(Children, null);
|
82
|
+
}
|
83
|
+
}]);
|
84
|
+
return RootAccordion;
|
85
|
+
}(_core.Component);
|
86
|
+
(0, _defineProperty2["default"])(RootAccordion, "displayName", 'Accordion');
|
87
|
+
(0, _defineProperty2["default"])(RootAccordion, "style", style);
|
88
|
+
(0, _defineProperty2["default"])(RootAccordion, "defaultProps", {
|
89
|
+
defaultValue: []
|
90
|
+
});
|
91
|
+
(0, _defineProperty2["default"])(RootAccordion, "enhance", [(0, _useCssVariable.cssVariableEnhance)({
|
92
|
+
variable: '--intergalactic-duration-accordion',
|
93
|
+
fallback: '200',
|
94
|
+
map: Number.parseInt,
|
95
|
+
prop: 'duration'
|
96
|
+
})]);
|
97
|
+
var RootItem = /*#__PURE__*/function (_Component2) {
|
98
|
+
(0, _inherits2["default"])(RootItem, _Component2);
|
99
|
+
var _super2 = (0, _createSuper2["default"])(RootItem);
|
100
|
+
function RootItem() {
|
101
|
+
var _this2;
|
102
|
+
(0, _classCallCheck2["default"])(this, RootItem);
|
103
|
+
for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
|
104
|
+
args[_key2] = arguments[_key2];
|
105
|
+
}
|
106
|
+
_this2 = _super2.call.apply(_super2, [this].concat(args));
|
107
|
+
(0, _defineProperty2["default"])((0, _assertThisInitialized2["default"])(_this2), "handleClick", function () {
|
108
|
+
var _this2$asProps = _this2.asProps,
|
109
|
+
value = _this2$asProps.value,
|
110
|
+
$handleInteraction = _this2$asProps.$handleInteraction;
|
111
|
+
$handleInteraction(value);
|
112
|
+
});
|
113
|
+
return _this2;
|
114
|
+
}
|
115
|
+
(0, _createClass2["default"])(RootItem, [{
|
116
|
+
key: "getToggleProps",
|
117
|
+
value: function getToggleProps() {
|
118
|
+
var _this$asProps2 = this.asProps,
|
119
|
+
value = _this$asProps2.value,
|
120
|
+
uid = _this$asProps2.uid,
|
121
|
+
selected = _this$asProps2.selected,
|
122
|
+
disabled = _this$asProps2.disabled;
|
123
|
+
return {
|
124
|
+
disabled: disabled,
|
125
|
+
onClick: disabled ? undefined : this.handleClick,
|
126
|
+
id: "igc-".concat(uid, "-").concat(value, "-toggle"),
|
127
|
+
role: 'button',
|
128
|
+
'aria-expanded': selected ? 'true' : 'false',
|
129
|
+
'aria-controls': "igc-".concat(uid, "-").concat(value, "-collapse")
|
130
|
+
};
|
131
|
+
}
|
132
|
+
}, {
|
133
|
+
key: "getCollapseProps",
|
134
|
+
value: function getCollapseProps() {
|
135
|
+
var _this$asProps3 = this.asProps,
|
136
|
+
selected = _this$asProps3.selected,
|
137
|
+
uid = _this$asProps3.uid,
|
138
|
+
duration = _this$asProps3.duration,
|
139
|
+
value = _this$asProps3.value;
|
140
|
+
return {
|
141
|
+
selected: selected,
|
142
|
+
duration: duration,
|
143
|
+
id: "igc-".concat(uid, "-").concat(value, "-collapse"),
|
144
|
+
role: 'region',
|
145
|
+
'aria-labelledby': "igc-".concat(uid, "-").concat(value, "-toggle")
|
146
|
+
};
|
147
|
+
}
|
148
|
+
}, {
|
149
|
+
key: "getChevronProps",
|
150
|
+
value: function getChevronProps() {
|
151
|
+
var selected = this.asProps.selected;
|
152
|
+
return {
|
153
|
+
selected: selected
|
154
|
+
};
|
155
|
+
}
|
156
|
+
}, {
|
157
|
+
key: "render",
|
158
|
+
value: function render() {
|
159
|
+
var Children = this.asProps.Children;
|
160
|
+
return /*#__PURE__*/_react["default"].createElement(Children, null);
|
161
|
+
}
|
162
|
+
}]);
|
163
|
+
return RootItem;
|
164
|
+
}(_core.Component);
|
165
|
+
exports.RootItem = RootItem;
|
166
|
+
(0, _defineProperty2["default"])(RootItem, "displayName", 'Item');
|
167
|
+
(0, _defineProperty2["default"])(RootItem, "style", style);
|
168
|
+
(0, _defineProperty2["default"])(RootItem, "enhance", [(0, _uniqueID["default"])()]);
|
169
|
+
var Toggle = /*#__PURE__*/function (_Component3) {
|
170
|
+
(0, _inherits2["default"])(Toggle, _Component3);
|
171
|
+
var _super3 = (0, _createSuper2["default"])(Toggle);
|
172
|
+
function Toggle() {
|
173
|
+
(0, _classCallCheck2["default"])(this, Toggle);
|
174
|
+
return _super3.apply(this, arguments);
|
175
|
+
}
|
176
|
+
(0, _createClass2["default"])(Toggle, [{
|
177
|
+
key: "handleKeyDown",
|
178
|
+
value: function handleKeyDown(e) {
|
179
|
+
switch (e.key) {
|
180
|
+
case 'Enter':
|
181
|
+
case ' ':
|
182
|
+
e.preventDefault();
|
183
|
+
e.currentTarget.click();
|
184
|
+
}
|
185
|
+
}
|
186
|
+
}, {
|
187
|
+
key: "render",
|
188
|
+
value: function render() {
|
189
|
+
var _ref = this.asProps,
|
190
|
+
_ref4;
|
191
|
+
var _this$asProps4 = this.asProps,
|
192
|
+
styles = _this$asProps4.styles,
|
193
|
+
disabled = _this$asProps4.disabled;
|
194
|
+
var SItemToggle = _flexBox.Box;
|
195
|
+
return _ref4 = (0, _core.sstyled)(styles), /*#__PURE__*/_react["default"].createElement(SItemToggle, _ref4.cn("SItemToggle", (0, _objectSpread2["default"])({}, (0, _core.assignProps)({
|
196
|
+
"onKeyDown": this.handleKeyDown,
|
197
|
+
"aria-disabled": disabled ? 'true' : undefined
|
198
|
+
}, _ref))));
|
199
|
+
}
|
200
|
+
}]);
|
201
|
+
return Toggle;
|
202
|
+
}(_core.Component);
|
203
|
+
(0, _defineProperty2["default"])(Toggle, "enhance", [(0, _keyboardFocusEnhance["default"])()]);
|
204
|
+
function Chevron(props) {
|
205
|
+
var _ref2 = arguments[0],
|
206
|
+
_ref5;
|
207
|
+
var styles = props.styles;
|
208
|
+
var SItemChevron = _m["default"];
|
209
|
+
return _ref5 = (0, _core.sstyled)(styles), /*#__PURE__*/_react["default"].createElement(SItemChevron, _ref5.cn("SItemChevron", (0, _objectSpread2["default"])({}, (0, _core.assignProps)({}, _ref2))));
|
210
|
+
}
|
211
|
+
function Collapse(props) {
|
212
|
+
var _ref3 = arguments[0];
|
213
|
+
var selected = props.selected;
|
214
|
+
return /*#__PURE__*/_react["default"].createElement(_animation.Collapse, (0, _core.assignProps)({
|
215
|
+
"visible": selected,
|
216
|
+
"interactive": true
|
217
|
+
}, _ref3));
|
218
|
+
}
|
219
|
+
var Item = (0, _core["default"])(RootItem, {
|
220
|
+
Toggle: Toggle,
|
221
|
+
Chevron: Chevron,
|
222
|
+
Collapse: Collapse
|
223
|
+
});
|
224
|
+
var Accordion = (0, _core["default"])(RootAccordion, {
|
225
|
+
Item: Item
|
226
|
+
});
|
227
|
+
var _default = Accordion;
|
228
|
+
exports["default"] = _default;
|
229
|
+
//# sourceMappingURL=Accordion.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"Accordion.js","names":["_core","_interopRequireWildcard","require","_react","_interopRequireDefault","_flexBox","_animation","_m","_keyboardFocusEnhance","_uniqueID","_useCssVariable","style","sstyled","insert","RootAccordion","_Component","_inherits2","_super","_createSuper2","_this","_classCallCheck2","_len","arguments","length","args","Array","_key","call","apply","concat","_defineProperty2","_assertThisInitialized2","newValue","value","asProps","isArray","indexOfNewValue","indexOf","result","_toConsumableArray2","push","splice","handlers","_createClass2","key","uncontrolledProps","getItemProps","_ref6","_this$asProps","selectedValue","duration","selected","includes","$handleInteraction","handleToggleInteraction","render","Children","createElement","Component","defaultValue","cssVariableEnhance","variable","fallback","map","Number","parseInt","prop","RootItem","_Component2","_super2","_this2","_len2","_key2","_this2$asProps","getToggleProps","_this$asProps2","uid","disabled","onClick","undefined","handleClick","id","role","getCollapseProps","_this$asProps3","getChevronProps","exports","uniqueIDEnhancement","Toggle","_Component3","_super3","handleKeyDown","e","preventDefault","currentTarget","click","_ref","_ref4","_this$asProps4","styles","SItemToggle","Box","cn","_objectSpread2","assignProps","keyboardFocusEnhance","Chevron","props","_ref2","arguments[0]","_ref5","SItemChevron","ChevronRight","Collapse","_ref3","CollapseAnimate","Item","createComponent","Accordion","_default"],"sources":["../../src/Accordion.jsx"],"sourcesContent":["import React from 'react';\nimport createComponent, { Component, sstyled, Root } from '@semcore/core';\nimport { Box } from '@semcore/flex-box';\nimport { Collapse as CollapseAnimate } from '@semcore/animation';\nimport ChevronRight from '@semcore/icon/ChevronRight/m';\nimport keyboardFocusEnhance from '@semcore/utils/lib/enhances/keyboardFocusEnhance';\nimport uniqueIDEnhancement from '@semcore/utils/lib/uniqueID';\nimport { cssVariableEnhance } from '@semcore/utils/lib/useCssVariable';\n\nimport style from './style/accordion.shadow.css';\n\nclass RootAccordion extends Component {\n static displayName = 'Accordion';\n static style = style;\n static defaultProps = {\n defaultValue: [],\n };\n static enhance = [\n cssVariableEnhance({\n variable: '--intergalactic-duration-accordion',\n fallback: '200',\n map: Number.parseInt,\n prop: 'duration',\n }),\n ];\n\n uncontrolledProps() {\n return {\n value: null,\n };\n }\n\n handleToggleInteraction = (newValue) => {\n const { value } = this.asProps;\n\n if (Array.isArray(value)) {\n const indexOfNewValue = value.indexOf(newValue);\n const result = [...value];\n indexOfNewValue === -1 ? result.push(newValue) : result.splice(indexOfNewValue, 1);\n this.handlers.value(result);\n } else {\n this.handlers.value(value === newValue ? null : newValue);\n }\n };\n\n getItemProps({ value }) {\n const { value: selectedValue, duration } = this.asProps;\n const selected = Array.isArray(selectedValue)\n ? selectedValue.includes(value)\n : selectedValue === value;\n return {\n selected,\n duration,\n $handleInteraction: this.handleToggleInteraction,\n };\n }\n\n render() {\n const { Children } = this.asProps;\n return <Children />;\n }\n}\n\nexport class RootItem extends Component {\n static displayName = 'Item';\n static style = style;\n static enhance = [uniqueIDEnhancement()];\n\n handleClick = () => {\n const { value, $handleInteraction } = this.asProps;\n\n $handleInteraction(value);\n };\n\n getToggleProps() {\n const { value, uid, selected, disabled } = this.asProps;\n return {\n disabled,\n onClick: disabled ? undefined : this.handleClick,\n id: `igc-${uid}-${value}-toggle`,\n role: 'button',\n 'aria-expanded': selected ? 'true' : 'false',\n 'aria-controls': `igc-${uid}-${value}-collapse`,\n };\n }\n\n getCollapseProps() {\n const { selected, uid, duration, value } = this.asProps;\n return {\n selected,\n duration,\n id: `igc-${uid}-${value}-collapse`,\n role: 'region',\n 'aria-labelledby': `igc-${uid}-${value}-toggle`,\n };\n }\n\n getChevronProps() {\n const { selected } = this.asProps;\n return {\n selected,\n };\n }\n\n render() {\n const { Children } = this.asProps;\n return <Children />;\n }\n}\n\nclass Toggle extends Component {\n static enhance = [keyboardFocusEnhance()];\n\n handleKeyDown(e) {\n switch (e.key) {\n case 'Enter':\n case ' ':\n e.preventDefault();\n e.currentTarget.click();\n }\n }\n\n render() {\n const { styles, disabled } = this.asProps;\n const SItemToggle = Root;\n\n return sstyled(styles)(\n <SItemToggle\n render={Box}\n onKeyDown={this.handleKeyDown}\n aria-disabled={disabled ? 'true' : undefined}\n />,\n );\n }\n}\n\nfunction Chevron(props) {\n const { styles } = props;\n const SItemChevron = Root;\n return sstyled(styles)(<SItemChevron render={ChevronRight} />);\n}\n\nfunction Collapse(props) {\n const { selected } = props;\n return <Root render={CollapseAnimate} visible={selected} interactive />;\n}\n\nconst Item = createComponent(RootItem, {\n Toggle,\n Chevron,\n Collapse,\n});\n\nconst Accordion = createComponent(RootAccordion, {\n Item,\n});\n\nexport default Accordion;\n"],"mappings":";;;;;;;;;;;;;;;;AACA,IAAAA,KAAA,GAAAC,uBAAA,CAAAC,OAAA;AADA,IAAAC,MAAA,GAAAC,sBAAA,CAAAF,OAAA;AAEA,IAAAG,QAAA,GAAAH,OAAA;AACA,IAAAI,UAAA,GAAAJ,OAAA;AACA,IAAAK,EAAA,GAAAH,sBAAA,CAAAF,OAAA;AACA,IAAAM,qBAAA,GAAAJ,sBAAA,CAAAF,OAAA;AACA,IAAAO,SAAA,GAAAL,sBAAA,CAAAF,OAAA;AACA,IAAAQ,eAAA,GAAAR,OAAA;AAAuE;AAAA,IAAAS,KAAA,+BAAAX,KAAA,CAAAY,OAAA,CAAAC,MAAA;EAAA;EAAA;EAAA;EAAA;EAAA;AAAA;AAAA,IAIjEC,aAAa,0BAAAC,UAAA;EAAA,IAAAC,UAAA,aAAAF,aAAA,EAAAC,UAAA;EAAA,IAAAE,MAAA,OAAAC,aAAA,aAAAJ,aAAA;EAAA,SAAAA,cAAA;IAAA,IAAAK,KAAA;IAAA,IAAAC,gBAAA,mBAAAN,aAAA;IAAA,SAAAO,IAAA,GAAAC,SAAA,CAAAC,MAAA,EAAAC,IAAA,OAAAC,KAAA,CAAAJ,IAAA,GAAAK,IAAA,MAAAA,IAAA,GAAAL,IAAA,EAAAK,IAAA;MAAAF,IAAA,CAAAE,IAAA,IAAAJ,SAAA,CAAAI,IAAA;IAAA;IAAAP,KAAA,GAAAF,MAAA,CAAAU,IAAA,CAAAC,KAAA,CAAAX,MAAA,SAAAY,MAAA,CAAAL,IAAA;IAAA,IAAAM,gBAAA,iBAAAC,uBAAA,aAAAZ,KAAA,8BAqBS,UAACa,QAAQ,EAAK;MACtC,IAAQC,KAAK,GAAKd,KAAA,CAAKe,OAAO,CAAtBD,KAAK;MAEb,IAAIR,KAAK,CAACU,OAAO,CAACF,KAAK,CAAC,EAAE;QACxB,IAAMG,eAAe,GAAGH,KAAK,CAACI,OAAO,CAACL,QAAQ,CAAC;QAC/C,IAAMM,MAAM,OAAAC,mBAAA,aAAON,KAAK,CAAC;QACzBG,eAAe,KAAK,CAAC,CAAC,GAAGE,MAAM,CAACE,IAAI,CAACR,QAAQ,CAAC,GAAGM,MAAM,CAACG,MAAM,CAACL,eAAe,EAAE,CAAC,CAAC;QAClFjB,KAAA,CAAKuB,QAAQ,CAACT,KAAK,CAACK,MAAM,CAAC;MAC7B,CAAC,MAAM;QACLnB,KAAA,CAAKuB,QAAQ,CAACT,KAAK,CAACA,KAAK,KAAKD,QAAQ,GAAG,IAAI,GAAGA,QAAQ,CAAC;MAC3D;IACF,CAAC;IAAA,OAAAb,KAAA;EAAA;EAAA,IAAAwB,aAAA,aAAA7B,aAAA;IAAA8B,GAAA;IAAAX,KAAA,EAjBD,SAAAY,kBAAA,EAAoB;MAClB,OAAO;QACLZ,KAAK,EAAE;MACT,CAAC;IACH;EAAC;IAAAW,GAAA;IAAAX,KAAA,EAeD,SAAAa,aAAAC,KAAA,EAAwB;MAAA,IAATd,KAAK,GAAAc,KAAA,CAALd,KAAK;MAClB,IAAAe,aAAA,GAA2C,IAAI,CAACd,OAAO;QAAxCe,aAAa,GAAAD,aAAA,CAApBf,KAAK;QAAiBiB,QAAQ,GAAAF,aAAA,CAARE,QAAQ;MACtC,IAAMC,QAAQ,GAAG1B,KAAK,CAACU,OAAO,CAACc,aAAa,CAAC,GACzCA,aAAa,CAACG,QAAQ,CAACnB,KAAK,CAAC,GAC7BgB,aAAa,KAAKhB,KAAK;MAC3B,OAAO;QACLkB,QAAQ,EAARA,QAAQ;QACRD,QAAQ,EAARA,QAAQ;QACRG,kBAAkB,EAAE,IAAI,CAACC;MAC3B,CAAC;IACH;EAAC;IAAAV,GAAA;IAAAX,KAAA,EAED,SAAAsB,OAAA,EAAS;MACP,IAAQC,QAAQ,GAAK,IAAI,CAACtB,OAAO,CAAzBsB,QAAQ;MAChB,oBAAOrD,MAAA,YAAAsD,aAAA,CAACD,QAAQ,OAAG;IACrB;EAAC;EAAA,OAAA1C,aAAA;AAAA,EAjDyB4C,eAAS;AAAA,IAAA5B,gBAAA,aAA/BhB,aAAa,iBACI,WAAW;AAAA,IAAAgB,gBAAA,aAD5BhB,aAAa,WAEFH,KAAK;AAAA,IAAAmB,gBAAA,aAFhBhB,aAAa,kBAGK;EACpB6C,YAAY,EAAE;AAChB,CAAC;AAAA,IAAA7B,gBAAA,aALGhB,aAAa,aAMA,CACf,IAAA8C,kCAAkB,EAAC;EACjBC,QAAQ,EAAE,oCAAoC;EAC9CC,QAAQ,EAAE,KAAK;EACfC,GAAG,EAAEC,MAAM,CAACC,QAAQ;EACpBC,IAAI,EAAE;AACR,CAAC,CAAC,CACH;AAAA,IAuCUC,QAAQ,0BAAAC,WAAA;EAAA,IAAApD,UAAA,aAAAmD,QAAA,EAAAC,WAAA;EAAA,IAAAC,OAAA,OAAAnD,aAAA,aAAAiD,QAAA;EAAA,SAAAA,SAAA;IAAA,IAAAG,MAAA;IAAA,IAAAlD,gBAAA,mBAAA+C,QAAA;IAAA,SAAAI,KAAA,GAAAjD,SAAA,CAAAC,MAAA,EAAAC,IAAA,OAAAC,KAAA,CAAA8C,KAAA,GAAAC,KAAA,MAAAA,KAAA,GAAAD,KAAA,EAAAC,KAAA;MAAAhD,IAAA,CAAAgD,KAAA,IAAAlD,SAAA,CAAAkD,KAAA;IAAA;IAAAF,MAAA,GAAAD,OAAA,CAAA1C,IAAA,CAAAC,KAAA,CAAAyC,OAAA,SAAAxC,MAAA,CAAAL,IAAA;IAAA,IAAAM,gBAAA,iBAAAC,uBAAA,aAAAuC,MAAA,kBAKL,YAAM;MAClB,IAAAG,cAAA,GAAsCH,MAAA,CAAKpC,OAAO;QAA1CD,KAAK,GAAAwC,cAAA,CAALxC,KAAK;QAAEoB,kBAAkB,GAAAoB,cAAA,CAAlBpB,kBAAkB;MAEjCA,kBAAkB,CAACpB,KAAK,CAAC;IAC3B,CAAC;IAAA,OAAAqC,MAAA;EAAA;EAAA,IAAA3B,aAAA,aAAAwB,QAAA;IAAAvB,GAAA;IAAAX,KAAA,EAED,SAAAyC,eAAA,EAAiB;MACf,IAAAC,cAAA,GAA2C,IAAI,CAACzC,OAAO;QAA/CD,KAAK,GAAA0C,cAAA,CAAL1C,KAAK;QAAE2C,GAAG,GAAAD,cAAA,CAAHC,GAAG;QAAEzB,QAAQ,GAAAwB,cAAA,CAARxB,QAAQ;QAAE0B,QAAQ,GAAAF,cAAA,CAARE,QAAQ;MACtC,OAAO;QACLA,QAAQ,EAARA,QAAQ;QACRC,OAAO,EAAED,QAAQ,GAAGE,SAAS,GAAG,IAAI,CAACC,WAAW;QAChDC,EAAE,SAAApD,MAAA,CAAS+C,GAAG,OAAA/C,MAAA,CAAII,KAAK,YAAS;QAChCiD,IAAI,EAAE,QAAQ;QACd,eAAe,EAAE/B,QAAQ,GAAG,MAAM,GAAG,OAAO;QAC5C,eAAe,SAAAtB,MAAA,CAAS+C,GAAG,OAAA/C,MAAA,CAAII,KAAK;MACtC,CAAC;IACH;EAAC;IAAAW,GAAA;IAAAX,KAAA,EAED,SAAAkD,iBAAA,EAAmB;MACjB,IAAAC,cAAA,GAA2C,IAAI,CAAClD,OAAO;QAA/CiB,QAAQ,GAAAiC,cAAA,CAARjC,QAAQ;QAAEyB,GAAG,GAAAQ,cAAA,CAAHR,GAAG;QAAE1B,QAAQ,GAAAkC,cAAA,CAARlC,QAAQ;QAAEjB,KAAK,GAAAmD,cAAA,CAALnD,KAAK;MACtC,OAAO;QACLkB,QAAQ,EAARA,QAAQ;QACRD,QAAQ,EAARA,QAAQ;QACR+B,EAAE,SAAApD,MAAA,CAAS+C,GAAG,OAAA/C,MAAA,CAAII,KAAK,cAAW;QAClCiD,IAAI,EAAE,QAAQ;QACd,iBAAiB,SAAArD,MAAA,CAAS+C,GAAG,OAAA/C,MAAA,CAAII,KAAK;MACxC,CAAC;IACH;EAAC;IAAAW,GAAA;IAAAX,KAAA,EAED,SAAAoD,gBAAA,EAAkB;MAChB,IAAQlC,QAAQ,GAAK,IAAI,CAACjB,OAAO,CAAzBiB,QAAQ;MAChB,OAAO;QACLA,QAAQ,EAARA;MACF,CAAC;IACH;EAAC;IAAAP,GAAA;IAAAX,KAAA,EAED,SAAAsB,OAAA,EAAS;MACP,IAAQC,QAAQ,GAAK,IAAI,CAACtB,OAAO,CAAzBsB,QAAQ;MAChB,oBAAOrD,MAAA,YAAAsD,aAAA,CAACD,QAAQ,OAAG;IACrB;EAAC;EAAA,OAAAW,QAAA;AAAA,EA5C2BT,eAAS;AAAA4B,OAAA,CAAAnB,QAAA,GAAAA,QAAA;AAAA,IAAArC,gBAAA,aAA1BqC,QAAQ,iBACE,MAAM;AAAA,IAAArC,gBAAA,aADhBqC,QAAQ,WAEJxD,KAAK;AAAA,IAAAmB,gBAAA,aAFTqC,QAAQ,aAGF,CAAC,IAAAoB,oBAAmB,GAAE,CAAC;AAAA,IA4CpCC,MAAM,0BAAAC,WAAA;EAAA,IAAAzE,UAAA,aAAAwE,MAAA,EAAAC,WAAA;EAAA,IAAAC,OAAA,OAAAxE,aAAA,aAAAsE,MAAA;EAAA,SAAAA,OAAA;IAAA,IAAApE,gBAAA,mBAAAoE,MAAA;IAAA,OAAAE,OAAA,CAAA9D,KAAA,OAAAN,SAAA;EAAA;EAAA,IAAAqB,aAAA,aAAA6C,MAAA;IAAA5C,GAAA;IAAAX,KAAA,EAGV,SAAA0D,cAAcC,CAAC,EAAE;MACf,QAAQA,CAAC,CAAChD,GAAG;QACX,KAAK,OAAO;QACZ,KAAK,GAAG;UACNgD,CAAC,CAACC,cAAc,EAAE;UAClBD,CAAC,CAACE,aAAa,CAACC,KAAK,EAAE;MAAC;IAE9B;EAAC;IAAAnD,GAAA;IAAAX,KAAA,EAED,SAAAsB,OAAA,EAAS;MAAA,IAAAyC,IAAA,QAAA9D,OAAA;QAAA+D,KAAA;MACP,IAAAC,cAAA,GAA6B,IAAI,CAAChE,OAAO;QAAjCiE,MAAM,GAAAD,cAAA,CAANC,MAAM;QAAEtB,QAAQ,GAAAqB,cAAA,CAARrB,QAAQ;MACxB,IAAMuB,WAAW,GAILC,YAAG;MAFf,OAAAJ,KAAA,GAAO,IAAArF,aAAO,EAACuF,MAAM,CAAC,eACpBhG,MAAA,YAAAsD,aAAA,CAAC2C,WAAW,EAAAH,KAAA,CAAAK,EAAA,oBAAAC,cAAA,qBAAAvG,KAAA,CAAAwG,WAAA;QAAA,aAEC,IAAI,CAACb,aAAa;QAAA,iBACdd,QAAQ,GAAG,MAAM,GAAGE;MAAS,GAAAiB,IAAA,IAC5C;IAEN;EAAC;EAAA,OAAAR,MAAA;AAAA,EAvBkB9B,eAAS;AAAA,IAAA5B,gBAAA,aAAxB0D,MAAM,aACO,CAAC,IAAAiB,gCAAoB,GAAE,CAAC;AAyB3C,SAASC,OAAOA,CAACC,KAAK,EAAE;EAAA,IAAAC,KAAA,GAAAC,YAAA;IAAAC,KAAA;EACtB,IAAQX,MAAM,GAAKQ,KAAK,CAAhBR,MAAM;EACd,IAAMY,YAAY,GAC2BC,aAAY;EAAzD,OAAAF,KAAA,GAAO,IAAAlG,aAAO,EAACuF,MAAM,CAAC,eAAChG,MAAA,YAAAsD,aAAA,CAACsD,YAAY,EAAAD,KAAA,CAAAR,EAAA,qBAAAC,cAAA,qBAAAvG,KAAA,CAAAwG,WAAA,MAAAI,KAAA,IAAyB;AAC/D;AAEA,SAASK,QAAQA,CAACN,KAAK,EAAE;EAAA,IAAAO,KAAA,GAAAL,YAAA;EACvB,IAAQ1D,QAAQ,GAAKwD,KAAK,CAAlBxD,QAAQ;EAChB,oBAAOhD,MAAA,YAAAsD,aAAA,CAAc0D,mBAAe,MAAAnH,KAAA,CAAAwG,WAAA;IAAA,WAAWrD,QAAQ;IAAA;EAAA,GAAA+D,KAAA,EAAgB;AACzE;AAEA,IAAME,IAAI,GAAG,IAAAC,gBAAe,EAAClD,QAAQ,EAAE;EACrCqB,MAAM,EAANA,MAAM;EACNkB,OAAO,EAAPA,OAAO;EACPO,QAAQ,EAARA;AACF,CAAC,CAAC;AAEF,IAAMK,SAAS,GAAG,IAAAD,gBAAe,EAACvG,aAAa,EAAE;EAC/CsG,IAAI,EAAJA;AACF,CAAC,CAAC;AAAC,IAAAG,QAAA,GAEYD,SAAS;AAAAhC,OAAA,cAAAiC,QAAA"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.d.js","names":[],"sources":["../../src/index.d.ts"],"sourcesContent":["import { Box, BoxProps, FlexProps } from '@semcore/flex-box';\nimport { PropGetterFn, Intergalactic, UnknownProperties } from '@semcore/core';\nimport { CollapseProps } from '@semcore/animation';\nimport { KeyboardFocusProps } from '@semcore/utils/lib/enhances/keyboardFocusEnhance';\n\nexport type AccordionValue = null | number | string | Array<number | string | null>;\n\nexport type AccordionProps<T extends AccordionValue = AccordionValue> = FlexProps & {\n /** Value for the active tab. Can be set as stroke, number, null or as array.\n * @type AccordionValue\n * */\n value?: T;\n /**\n * Value of the active tabs selected by default\n * @type AccordionValue\n * @default []\n */\n defaultValue?: T;\n /** Called when the selection is changed\n * @type (value: AccordionValue, event?: React.SyntheticEvent) => void\n * */\n onChange?:\n | ((value: T, event?: React.SyntheticEvent) => void)\n | React.Dispatch<React.SetStateAction<T>>;\n /** Animation duration of each Accordion.Item inside\n * @default 350 */\n duration?: number;\n};\n\nexport interface IAccordionProps<T extends AccordionValue = AccordionValue>\n extends AccordionProps<T> {}\n\n/** @deprecated */\nexport interface IAccordionContext extends AccordionContext, UnknownProperties {}\nexport type AccordionContext = {\n getItemProps: PropGetterFn;\n};\n\n/** @deprecated */\nexport interface IAccordionHandlers extends AccordionHandlers, UnknownProperties {}\nexport type AccordionHandlers = {\n value: (value: AccordionValue) => void;\n};\n\n/** @deprecated */\nexport interface IAccordionItemProps extends AccordionItemProps, UnknownProperties {}\nexport type AccordionItemProps = {\n /** Tab value */\n value: string | number;\n /** Disabling selection changes */\n disabled?: boolean;\n /** Animation duration\n * @default 350 */\n duration?: number;\n};\n\n/** @deprecated */\nexport interface IAccordionItemContext extends AccordionItemContext, UnknownProperties {}\nexport type AccordionItemContext = {\n getToggleProps?: PropGetterFn;\n getCollapseProps?: PropGetterFn;\n getChevronProps?: PropGetterFn;\n selected?: boolean;\n};\n\nexport type AccordionItemToggleProps = BoxProps & KeyboardFocusProps;\n\ntype IntergalacticAccordionComponent = (<\n Value extends AccordionValue,\n Tag extends Intergalactic.Tag = 'div',\n>(\n props: Intergalactic.InternalTypings.ComponentProps<\n Tag,\n 'div',\n AccordionProps<Value>,\n AccordionContext & { value: Value },\n [handlers: AccordionHandlers]\n >,\n) => Intergalactic.InternalTypings.ComponentRenderingResults) &\n Intergalactic.InternalTypings.ComponentAdditive<'div'>;\n\ndeclare const Accordion: IntergalacticAccordionComponent & {\n Item: Intergalactic.Component<\n 'div',\n AccordionItemProps,\n AccordionItemContext,\n [handlers: AccordionHandlers]\n > & {\n Toggle: Intergalactic.Component<'div', AccordionItemToggleProps>;\n Chevron: typeof Box;\n Collapse: Intergalactic.Component<'div', CollapseProps>;\n };\n};\n\nexport default Accordion;\n"],"mappings":""}
|
@@ -0,0 +1,26 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard");
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
5
|
+
value: true
|
6
|
+
});
|
7
|
+
var _exportNames = {};
|
8
|
+
Object.defineProperty(exports, "default", {
|
9
|
+
enumerable: true,
|
10
|
+
get: function get() {
|
11
|
+
return _Accordion["default"];
|
12
|
+
}
|
13
|
+
});
|
14
|
+
var _Accordion = _interopRequireWildcard(require("./Accordion"));
|
15
|
+
Object.keys(_Accordion).forEach(function (key) {
|
16
|
+
if (key === "default" || key === "__esModule") return;
|
17
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
18
|
+
if (key in exports && exports[key] === _Accordion[key]) return;
|
19
|
+
Object.defineProperty(exports, key, {
|
20
|
+
enumerable: true,
|
21
|
+
get: function get() {
|
22
|
+
return _Accordion[key];
|
23
|
+
}
|
24
|
+
});
|
25
|
+
});
|
26
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","names":["_Accordion","_interopRequireWildcard","require","Object","keys","forEach","key","prototype","hasOwnProperty","call","_exportNames","exports","defineProperty","enumerable","get"],"sources":["../../src/index.js"],"sourcesContent":["export { default } from './Accordion';\nexport * from './Accordion';\n"],"mappings":";;;;;;;;;;;;;AAAA,IAAAA,UAAA,GAAAC,uBAAA,CAAAC,OAAA;AACAC,MAAA,CAAAC,IAAA,CAAAJ,UAAA,EAAAK,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAH,MAAA,CAAAI,SAAA,CAAAC,cAAA,CAAAC,IAAA,CAAAC,YAAA,EAAAJ,GAAA;EAAA,IAAAA,GAAA,IAAAK,OAAA,IAAAA,OAAA,CAAAL,GAAA,MAAAN,UAAA,CAAAM,GAAA;EAAAH,MAAA,CAAAS,cAAA,CAAAD,OAAA,EAAAL,GAAA;IAAAO,UAAA;IAAAC,GAAA,WAAAA,IAAA;MAAA,OAAAd,UAAA,CAAAM,GAAA;IAAA;EAAA;AAAA"}
|