intergalactic 15.43.0-prerelease-f399822f → 15.43.0-prerelease-960d7de5
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 +14 -1
- package/accordion/index.js +25 -1
- package/accordion/lib/cjs/Accordion.js +6 -6
- package/accordion/lib/cjs/style/accordion.shadow.css +1 -0
- package/accordion/lib/es6/Accordion.js +6 -6
- package/accordion/lib/es6/style/accordion.shadow.css +1 -0
- package/animation/index.js +25 -1
- package/badge/index.js +25 -1
- package/base-trigger/index.js +25 -1
- package/breadcrumbs/index.js +25 -1
- package/breakpoints/index.js +25 -1
- package/button/index.js +25 -1
- package/card/index.js +25 -1
- package/card/lib/cjs/Card.js +8 -8
- package/card/lib/es6/Card.js +8 -8
- package/carousel/index.js +25 -1
- package/checkbox/index.js +25 -1
- package/color-picker/index.js +25 -1
- 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/core/index.js +25 -1
- package/core/lib/cjs/enhancement/Root.js +2 -2
- package/core/lib/cjs/enhancement/Root.js.map +1 -1
- package/core/lib/cjs/enhancement/hoistProps.js +9 -3
- package/core/lib/cjs/enhancement/hoistProps.js.map +1 -1
- package/core/lib/cjs/enhancement/i18n.js +1 -1
- package/core/lib/cjs/enhancement/i18n.js.map +1 -1
- package/core/lib/cjs/enhancement/staticChildren.js +9 -3
- package/core/lib/cjs/enhancement/staticChildren.js.map +1 -1
- package/core/lib/cjs/enhancement/uncontrolledProps.js +6 -2
- package/core/lib/cjs/enhancement/uncontrolledProps.js.map +1 -1
- package/core/lib/cjs/index.js +3 -3
- package/core/lib/cjs/index.js.map +1 -1
- package/core/lib/es6/enhancement/Root.js +4 -2
- package/core/lib/es6/enhancement/Root.js.map +1 -1
- package/core/lib/es6/enhancement/hoistProps.js +6 -3
- package/core/lib/es6/enhancement/hoistProps.js.map +1 -1
- package/core/lib/es6/enhancement/i18n.js +2 -1
- package/core/lib/es6/enhancement/i18n.js.map +1 -1
- package/core/lib/es6/enhancement/staticChildren.js +6 -3
- package/core/lib/es6/enhancement/staticChildren.js.map +1 -1
- package/core/lib/es6/enhancement/uncontrolledProps.js +4 -2
- package/core/lib/es6/enhancement/uncontrolledProps.js.map +1 -1
- package/core/lib/es6/index.js +6 -3
- package/core/lib/es6/index.js.map +1 -1
- package/counter/index.js +25 -1
- package/d3-chart/index.js +25 -1
- package/d3-chart/lib/cjs/Area.js +9 -9
- package/d3-chart/lib/cjs/Axis.js +14 -14
- package/d3-chart/lib/cjs/Bar.js +8 -8
- package/d3-chart/lib/cjs/Bubble.js +10 -10
- package/d3-chart/lib/cjs/Donut.js +7 -7
- package/d3-chart/lib/cjs/Dots.js +10 -10
- package/d3-chart/lib/cjs/HorizontalBar.js +8 -8
- 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 +17 -17
- package/d3-chart/lib/cjs/RadialTree.js +10 -10
- package/d3-chart/lib/cjs/ReferenceLine.js +9 -9
- package/d3-chart/lib/cjs/ScatterPlot.js +7 -7
- package/d3-chart/lib/cjs/Tooltip.js +8 -8
- package/d3-chart/lib/cjs/Venn.js +7 -7
- 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 +15 -15
- package/d3-chart/lib/cjs/component/ChartLegend/LegendItem/legend-item.shadow.css +6 -0
- package/d3-chart/lib/cjs/component/ChartLegend/LegendTable/LegendTable.js +6 -6
- package/d3-chart/lib/cjs/component/ChartLegend/LegendTable/legend-table.shadow.css +1 -1
- package/d3-chart/lib/es6/Area.js +9 -9
- package/d3-chart/lib/es6/Axis.js +14 -14
- package/d3-chart/lib/es6/Bar.js +8 -8
- package/d3-chart/lib/es6/Bubble.js +10 -10
- package/d3-chart/lib/es6/Donut.js +7 -7
- package/d3-chart/lib/es6/Dots.js +10 -10
- package/d3-chart/lib/es6/HorizontalBar.js +8 -8
- 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 +17 -17
- package/d3-chart/lib/es6/RadialTree.js +10 -10
- package/d3-chart/lib/es6/ReferenceLine.js +9 -9
- package/d3-chart/lib/es6/ScatterPlot.js +7 -7
- package/d3-chart/lib/es6/Tooltip.js +8 -8
- package/d3-chart/lib/es6/Venn.js +7 -7
- 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 +15 -15
- package/d3-chart/lib/es6/component/ChartLegend/LegendItem/legend-item.shadow.css +6 -0
- package/d3-chart/lib/es6/component/ChartLegend/LegendTable/LegendTable.js +6 -6
- package/d3-chart/lib/es6/component/ChartLegend/LegendTable/legend-table.shadow.css +1 -1
- package/data-table/index.js +25 -1
- package/date-picker/index.d.ts +1 -1
- package/date-picker/index.js +25 -1
- package/date-picker/lib/cjs/index.d.js.map +1 -1
- package/date-picker/lib/es6/index.d.js.map +1 -1
- package/date-picker/lib/types/index.d.ts +1 -1
- package/divider/index.js +25 -1
- package/dot/index.js +25 -1
- package/drag-and-drop/index.js +25 -1
- package/drag-and-drop/lib/cjs/DragAndDrop.js +12 -12
- package/drag-and-drop/lib/es6/DragAndDrop.js +12 -12
- package/dropdown/index.js +25 -1
- package/dropdown/lib/cjs/Dropdown.js +2 -2
- package/dropdown/lib/es6/Dropdown.js +2 -2
- package/dropdown-menu/index.js +25 -1
- package/dropdown-menu/lib/cjs/DropdownMenu.js +12 -12
- package/dropdown-menu/lib/cjs/styleScrollArea.js +6 -6
- package/dropdown-menu/lib/es6/DropdownMenu.js +12 -12
- package/dropdown-menu/lib/es6/styleScrollArea.js +6 -6
- package/ellipsis/index.js +25 -1
- package/ellipsis/lib/cjs/Ellipsis.js +10 -10
- package/ellipsis/lib/es6/Ellipsis.js +10 -10
- package/errors/index.js +25 -1
- package/feature-popover/index.js +25 -1
- package/feature-popover/lib/cjs/FeaturePopover.js +10 -10
- package/feature-popover/lib/es6/FeaturePopover.js +10 -10
- package/feedback-form/index.js +25 -1
- package/feedback-form/lib/cjs/FeedbackForm.js +7 -7
- package/feedback-form/lib/es6/FeedbackForm.js +7 -7
- package/flags/index.js +25 -1
- package/flags/lib/sprites/sprite@1x.png +0 -0
- package/flags/lib/sprites/sprite@2x.png +0 -0
- package/flex-box/index.js +25 -1
- package/format-text/index.js +25 -1
- package/fullscreen-modal/index.js +25 -1
- package/grid/index.js +25 -1
- package/i18n-unplugin/index.js +25 -1
- package/icon/index.js +25 -1
- package/illustration/index.js +25 -1
- package/inline-edit/index.js +25 -1
- package/inline-input/index.d.ts +2 -0
- package/inline-input/index.js +25 -1
- package/inline-input/lib/cjs/InlineInput.js +18 -18
- package/inline-input/lib/cjs/index.d.js.map +1 -1
- package/inline-input/lib/es6/InlineInput.js +18 -18
- package/inline-input/lib/es6/index.d.js.map +1 -1
- package/inline-input/lib/types/index.d.ts +2 -0
- package/input/index.js +25 -1
- package/input-mask/index.js +25 -1
- package/input-number/index.js +25 -1
- package/input-tags/index.js +25 -1
- 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/cjs/style/accordion.shadow.css +28 -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/es6/style/accordion.shadow.css +28 -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/cjs/style/animate.shadow.css +44 -0
- package/libs/animation/lib/cjs/style/keyframes.shadow.css +244 -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/es6/style/animate.shadow.css +44 -0
- package/libs/animation/lib/es6/style/keyframes.shadow.css +244 -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/cjs/style/badge.shadow.css +21 -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/es6/style/badge.shadow.css +21 -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/style/base-trigger.shadow.css +176 -0
- package/libs/base-trigger/lib/cjs/style/button-trigger.shadow.css +8 -0
- package/libs/base-trigger/lib/cjs/style/filter-trigger.shadow.css +30 -0
- package/libs/base-trigger/lib/cjs/style/link-trigger.shadow.css +99 -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/style/base-trigger.shadow.css +176 -0
- package/libs/base-trigger/lib/es6/style/button-trigger.shadow.css +8 -0
- package/libs/base-trigger/lib/es6/style/filter-trigger.shadow.css +30 -0
- package/libs/base-trigger/lib/es6/style/link-trigger.shadow.css +99 -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/style/breadcrumbs.shadow.css +48 -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/style/breadcrumbs.shadow.css +48 -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/cjs/style/button.shadow.css +360 -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/es6/style/button.shadow.css +360 -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/cjs/style/card.shadow.css +51 -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/es6/style/card.shadow.css +51 -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/style/carousel.shadow.css +91 -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/style/carousel.shadow.css +91 -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/cjs/style/checkbox.shadow.css +179 -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/es6/style/checkbox.shadow.css +179 -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/style/color-picker.shadow.css +163 -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/style/color-picker.shadow.css +163 -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/cjs/style/counter.shadow.css +62 -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/es6/style/counter.shadow.css +62 -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/LegendFlex/legend-flex.shadow.css +11 -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/LegendItem/legend-item.shadow.css +109 -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/LegendTable/legend-table.shadow.css +19 -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/area.shadow.css +45 -0
- package/libs/d3-chart/lib/cjs/style/axis.shadow.css +88 -0
- package/libs/d3-chart/lib/cjs/style/bar.shadow.css +24 -0
- package/libs/d3-chart/lib/cjs/style/bubble.shadow.css +57 -0
- package/libs/d3-chart/lib/cjs/style/donut.shadow.css +30 -0
- package/libs/d3-chart/lib/cjs/style/dot.shadow.css +32 -0
- package/libs/d3-chart/lib/cjs/style/hover.shadow.css +7 -0
- package/libs/d3-chart/lib/cjs/style/line.shadow.css +43 -0
- package/libs/d3-chart/lib/cjs/style/plot.shadow.css +19 -0
- package/libs/d3-chart/lib/cjs/style/plotA11yModule.shadow.css +12 -0
- package/libs/d3-chart/lib/cjs/style/plotA11yView.shadow.css +39 -0
- package/libs/d3-chart/lib/cjs/style/radar.shadow.css +73 -0
- package/libs/d3-chart/lib/cjs/style/radial-tree.shadow.css +49 -0
- package/libs/d3-chart/lib/cjs/style/reference-line.shadow.css +35 -0
- package/libs/d3-chart/lib/cjs/style/scatterplot.shadow.css +34 -0
- package/libs/d3-chart/lib/cjs/style/tooltip.shadow.css +42 -0
- package/libs/d3-chart/lib/cjs/style/var.css +125 -0
- package/libs/d3-chart/lib/cjs/style/venn.shadow.css +37 -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/LegendFlex/legend-flex.shadow.css +11 -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/LegendItem/legend-item.shadow.css +109 -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/LegendTable/legend-table.shadow.css +19 -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/area.shadow.css +45 -0
- package/libs/d3-chart/lib/es6/style/axis.shadow.css +88 -0
- package/libs/d3-chart/lib/es6/style/bar.shadow.css +24 -0
- package/libs/d3-chart/lib/es6/style/bubble.shadow.css +57 -0
- package/libs/d3-chart/lib/es6/style/donut.shadow.css +30 -0
- package/libs/d3-chart/lib/es6/style/dot.shadow.css +32 -0
- package/libs/d3-chart/lib/es6/style/hover.shadow.css +7 -0
- package/libs/d3-chart/lib/es6/style/line.shadow.css +43 -0
- package/libs/d3-chart/lib/es6/style/plot.shadow.css +19 -0
- package/libs/d3-chart/lib/es6/style/plotA11yModule.shadow.css +12 -0
- package/libs/d3-chart/lib/es6/style/plotA11yView.shadow.css +39 -0
- package/libs/d3-chart/lib/es6/style/radar.shadow.css +73 -0
- package/libs/d3-chart/lib/es6/style/radial-tree.shadow.css +49 -0
- package/libs/d3-chart/lib/es6/style/reference-line.shadow.css +35 -0
- package/libs/d3-chart/lib/es6/style/scatterplot.shadow.css +34 -0
- package/libs/d3-chart/lib/es6/style/tooltip.shadow.css +42 -0
- package/libs/d3-chart/lib/es6/style/var.css +125 -0
- package/libs/d3-chart/lib/es6/style/venn.shadow.css +37 -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/style/data-table.shadow.css +398 -0
- package/libs/data-table/lib/cjs/style/scroll-area.shadow.css +7 -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/style/data-table.shadow.css +398 -0
- package/libs/data-table/lib/es6/style/scroll-area.shadow.css +7 -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/style/calendar.shadow.css +199 -0
- package/libs/date-picker/lib/cjs/style/date-picker.shadow.css +110 -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/style/calendar.shadow.css +199 -0
- package/libs/date-picker/lib/es6/style/date-picker.shadow.css +110 -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/cjs/style/divider.shadow.css +82 -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/es6/style/divider.shadow.css +82 -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/cjs/style/dot.shadow.css +54 -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/es6/style/dot.shadow.css +54 -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/style/drag-and-drop.shadow.css +106 -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/style/drag-and-drop.shadow.css +106 -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/style/dropdown.shadow.css +10 -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/style/dropdown.shadow.css +10 -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/style/dropdown-menu.shadow.css +112 -0
- package/libs/dropdown-menu/lib/cjs/style/scroll-area.shadow.css +85 -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/style/dropdown-menu.shadow.css +112 -0
- package/libs/dropdown-menu/lib/es6/style/scroll-area.shadow.css +85 -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/style/ellipsis.shadow.css +31 -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/style/ellipsis.shadow.css +31 -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/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/cjs/style/errors.shadow.css +67 -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/es6/style/errors.shadow.css +67 -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/style/feature-popover.shadow.css +95 -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/style/feature-popover.shadow.css +95 -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/cjs/style/feedback-form.shadow.css +35 -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/es6/style/feedback-form.shadow.css +35 -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/cjs/style/flags.shadow.css +35 -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/es6/style/flags.shadow.css +35 -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/style/use-box.shadow.css +7 -0
- package/libs/flex-box/lib/cjs/style/use-flex.shadow.css +7 -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/style/use-box.shadow.css +7 -0
- package/libs/flex-box/lib/es6/style/use-flex.shadow.css +7 -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/cjs/style/format-text.shadow.css +308 -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/es6/style/format-text.shadow.css +308 -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/style/fullscreen-modal.shadow.css +137 -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/style/fullscreen-modal.shadow.css +137 -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/cjs/style/grid.shadow.css +513 -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/es6/style/grid.shadow.css +513 -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/cjs/style/icon.shadow.css +22 -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/es6/style/icon.shadow.css +22 -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/style/inline-edit.shadow.css +26 -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/style/inline-edit.shadow.css +26 -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/style/inline-input.shadow.css +189 -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/style/inline-input.shadow.css +189 -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/cjs/style/input.shadow.css +190 -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/es6/style/input.shadow.css +190 -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/cjs/style/input-mask.shadow.css +38 -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/es6/style/input-mask.shadow.css +38 -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/style/input-number.shadow.css +73 -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/style/input-number.shadow.css +73 -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/cjs/style/input-tag.shadow.css +91 -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/es6/style/input-tag.shadow.css +91 -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/cjs/style/link.shadow.css +113 -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/es6/style/link.shadow.css +113 -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/style/modal.shadow.css +90 -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/style/modal.shadow.css +90 -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/style/notice.shadow.css +109 -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/style/notice.shadow.css +109 -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/style/notice-bubble.shadow.css +92 -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/style/notice-bubble.shadow.css +92 -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/style/notice-global.shadow.css +84 -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/style/notice-global.shadow.css +84 -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/style/pagination.shadow.css +61 -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/style/pagination.shadow.css +61 -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/cjs/style/pills.shadow.css +163 -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/es6/style/pills.shadow.css +163 -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/cjs/style/popper.shadow.css +23 -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/es6/style/popper.shadow.css +23 -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/cjs/style/info.shadow.css +31 -0
- package/libs/product-head/lib/cjs/style/product-head.shadow.css +53 -0
- package/libs/product-head/lib/cjs/style/title.shadow.css +30 -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/es6/style/info.shadow.css +31 -0
- package/libs/product-head/lib/es6/style/product-head.shadow.css +53 -0
- package/libs/product-head/lib/es6/style/title.shadow.css +30 -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/cjs/style/progress-bar.shadow.css +97 -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/es6/style/progress-bar.shadow.css +97 -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/cjs/style/radio.shadow.css +120 -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/es6/style/radio.shadow.css +120 -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/cjs/style/scroll-area.shadow.css +130 -0
- package/libs/scroll-area/lib/cjs/style/scroll-bar.shadow.css +29 -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/es6/style/scroll-area.shadow.css +130 -0
- package/libs/scroll-area/lib/es6/style/scroll-bar.shadow.css +29 -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/style/input-search.shadow.css +15 -0
- package/libs/select/lib/cjs/style/select.shadow.css +66 -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/style/input-search.shadow.css +15 -0
- package/libs/select/lib/es6/style/select.shadow.css +66 -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/cjs/style/side-panel.shadow.css +140 -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/es6/style/side-panel.shadow.css +140 -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/style/chart.shadow.css +17 -0
- package/libs/skeleton/lib/cjs/style/skeleton.shadow.css +39 -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/style/chart.shadow.css +17 -0
- package/libs/skeleton/lib/es6/style/skeleton.shadow.css +39 -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/cjs/style/slider.shadow.css +74 -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/es6/style/slider.shadow.css +74 -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/cjs/style/spin.shadow.css +67 -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/es6/style/spin.shadow.css +67 -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/cjs/style/spin-container.shadow.css +35 -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/es6/style/spin-container.shadow.css +35 -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/cjs/style/sticky.shadow.css +3 -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/es6/style/sticky.shadow.css +3 -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/cjs/style/switch.shadow.css +176 -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/es6/style/switch.shadow.css +176 -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/cjs/style/tab-line.shadow.css +159 -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/es6/style/tab-line.shadow.css +159 -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/cjs/style/tab-panel.shadow.css +130 -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/es6/style/tab-panel.shadow.css +130 -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/style/tag.shadow.css +235 -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/style/tag.shadow.css +235 -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/cjs/style/textarea.shadow.css +58 -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/es6/style/textarea.shadow.css +58 -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/style/time-picker.shadow.css +116 -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/style/time-picker.shadow.css +116 -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/cjs/style/tooltip.shadow.css +138 -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/es6/style/tooltip.shadow.css +138 -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/cjs/style/blockquote.shadow.css +28 -0
- package/libs/typography/lib/cjs/style/hint.shadow.css +51 -0
- package/libs/typography/lib/cjs/style/list.shadow.css +27 -0
- package/libs/typography/lib/cjs/style/text.shadow.css +118 -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/es6/style/blockquote.shadow.css +28 -0
- package/libs/typography/lib/es6/style/hint.shadow.css +51 -0
- package/libs/typography/lib/es6/style/list.shadow.css +27 -0
- package/libs/typography/lib/es6/style/text.shadow.css +118 -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.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.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.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.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.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.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.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.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.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.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.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/cjs/style/widget-empty.shadow.css +36 -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/es6/style/widget-empty.shadow.css +36 -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/style/wizard.shadow.css +99 -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/style/wizard.shadow.css +99 -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/index.js +25 -1
- package/modal/index.js +25 -1
- package/neighbor-location/index.js +25 -1
- package/notice/index.js +25 -1
- package/notice-bubble/index.js +25 -1
- package/notice-global/index.js +25 -1
- package/outside-click/index.js +25 -1
- package/package.json +4 -4
- package/pagination/index.js +25 -1
- package/pills/index.js +25 -1
- package/popper/index.js +25 -1
- package/popper/lib/cjs/Popper.js +7 -7
- package/popper/lib/cjs/Popper.js.map +1 -1
- package/popper/lib/es6/Popper.js +7 -7
- package/popper/lib/es6/Popper.js.map +1 -1
- package/portal/index.js +25 -1
- package/product-head/index.js +25 -1
- package/progress-bar/index.js +25 -1
- package/radio/index.js +25 -1
- package/scroll-area/index.js +25 -1
- package/select/index.js +25 -1
- package/select/lib/cjs/InputSearch.js +6 -6
- package/select/lib/cjs/Select.js +7 -7
- package/select/lib/es6/InputSearch.js +6 -6
- package/select/lib/es6/Select.js +7 -7
- package/side-panel/index.js +25 -1
- package/skeleton/index.js +25 -1
- package/slider/index.js +25 -1
- package/spin/index.js +25 -1
- package/spin-container/index.js +25 -1
- package/sticky/index.js +25 -1
- package/switch/index.js +25 -1
- package/tab-line/index.js +25 -1
- package/tab-panel/index.js +25 -1
- package/tag/index.js +25 -1
- package/textarea/index.js +25 -1
- package/time-picker/index.js +25 -1
- package/time-picker/lib/cjs/TimePicker.js +12 -12
- package/time-picker/lib/es6/TimePicker.js +12 -12
- package/tooltip/index.js +25 -1
- package/tooltip/lib/cjs/Tooltip.js +6 -8
- package/tooltip/lib/cjs/Tooltip.js.map +1 -1
- package/tooltip/lib/es6/Tooltip.js +6 -8
- package/tooltip/lib/es6/Tooltip.js.map +1 -1
- package/typography/index.js +25 -1
- package/widget-empty/index.js +25 -1
- package/wizard/index.js +25 -1
- package/core/lib/cjs/utils/assignProps.js +0 -93
- package/core/lib/cjs/utils/assignProps.js.map +0 -1
- package/core/lib/cjs/utils/canUseDOM.js.map +0 -1
- package/core/lib/cjs/utils/capitalizeFirstLetter.js.map +0 -1
- package/core/lib/cjs/utils/createHoc.js.map +0 -1
- package/core/lib/cjs/utils/enhances/WithI18n.js.map +0 -1
- package/core/lib/cjs/utils/enhances/i18nEnhance.js.map +0 -1
- package/core/lib/cjs/utils/getDisplayName.js.map +0 -1
- package/core/lib/cjs/utils/logger.js.map +0 -1
- package/core/lib/cjs/utils/pick.js.map +0 -1
- package/core/lib/cjs/utils/ref.js.map +0 -1
- package/core/lib/cjs/utils/use/useEnhancedEffect.js.map +0 -1
- package/core/lib/es6/utils/assignProps.js +0 -84
- package/core/lib/es6/utils/assignProps.js.map +0 -1
- package/core/lib/es6/utils/canUseDOM.js +0 -4
- package/core/lib/es6/utils/canUseDOM.js.map +0 -1
- package/core/lib/es6/utils/capitalizeFirstLetter.js +0 -4
- package/core/lib/es6/utils/capitalizeFirstLetter.js.map +0 -1
- package/core/lib/es6/utils/createHoc.js +0 -46
- package/core/lib/es6/utils/createHoc.js.map +0 -1
- package/core/lib/es6/utils/enhances/WithI18n.js +0 -73
- package/core/lib/es6/utils/enhances/WithI18n.js.map +0 -1
- package/core/lib/es6/utils/enhances/i18nEnhance.js +0 -122
- package/core/lib/es6/utils/enhances/i18nEnhance.js.map +0 -1
- package/core/lib/es6/utils/getDisplayName.js +0 -4
- package/core/lib/es6/utils/getDisplayName.js.map +0 -1
- package/core/lib/es6/utils/logger.js +0 -32
- package/core/lib/es6/utils/logger.js.map +0 -1
- package/core/lib/es6/utils/pick.js +0 -13
- package/core/lib/es6/utils/pick.js.map +0 -1
- package/core/lib/es6/utils/ref.js +0 -82
- package/core/lib/es6/utils/ref.js.map +0 -1
- package/core/lib/es6/utils/use/useEnhancedEffect.js +0 -5
- package/core/lib/es6/utils/use/useEnhancedEffect.js.map +0 -1
- package/core/lib/types/utils/enhances/WithI18n.d.ts +0 -43
- package/core/lib/types/utils/enhances/i18nEnhance.d.ts +0 -26
- package/core/utils/assignProps.d.ts +0 -13
- package/core/utils/canUseDOM.d.ts +0 -1
- package/core/utils/capitalizeFirstLetter.d.ts +0 -1
- package/core/utils/createHoc.d.ts +0 -3
- package/core/utils/enhances/WithI18n.d.ts +0 -43
- package/core/utils/enhances/i18nEnhance.d.ts +0 -26
- package/core/utils/getDisplayName.d.ts +0 -2
- package/core/utils/logger.d.ts +0 -9
- package/core/utils/pick.d.ts +0 -1
- package/core/utils/ref.d.ts +0 -8
- package/core/utils/use/useEnhancedEffect.d.ts +0 -3
- /package/{email → libs/email}/lib/badge/index.css +0 -0
- /package/{email → libs/email}/lib/button/index.css +0 -0
- /package/{email → libs/email}/lib/core/base.css +0 -0
- /package/{email → libs/email}/lib/core/index.css +0 -0
- /package/{email → libs/email}/lib/core/var.css +0 -0
- /package/{email → libs/email}/lib/divider/index.css +0 -0
- /package/{email → libs/email}/lib/grid/index.css +0 -0
- /package/{email → libs/email}/lib/notice/index.css +0 -0
- /package/{email → libs/email}/lib/summary/index.css +0 -0
- /package/{email → libs/email}/lib/table/index.css +0 -0
- /package/{email → libs/email}/lib/typography/index.css +0 -0
- /package/{core/lib/types/utils → libs/utils/lib}/assignProps.d.ts +0 -0
- /package/{core/lib/types/utils → libs/utils/lib}/canUseDOM.d.ts +0 -0
- /package/{core/lib/cjs/utils → libs/utils/lib}/canUseDOM.js +0 -0
- /package/{core/lib/types/utils → libs/utils/lib}/capitalizeFirstLetter.d.ts +0 -0
- /package/{core/lib/cjs/utils → libs/utils/lib}/capitalizeFirstLetter.js +0 -0
- /package/{core/lib/types/utils → libs/utils/lib}/createHoc.d.ts +0 -0
- /package/{core/lib/cjs/utils → libs/utils/lib}/createHoc.js +0 -0
- /package/{core/lib/cjs/utils → libs/utils/lib}/enhances/WithI18n.js +0 -0
- /package/{core/lib/cjs/utils → libs/utils/lib}/enhances/i18nEnhance.js +0 -0
- /package/{core/lib/types/utils → libs/utils/lib}/getDisplayName.d.ts +0 -0
- /package/{core/lib/cjs/utils → libs/utils/lib}/getDisplayName.js +0 -0
- /package/{core/lib/types/utils → libs/utils/lib}/logger.d.ts +0 -0
- /package/{core/lib/cjs/utils → libs/utils/lib}/logger.js +0 -0
- /package/{core/lib/types/utils → libs/utils/lib}/pick.d.ts +0 -0
- /package/{core/lib/cjs/utils → libs/utils/lib}/pick.js +0 -0
- /package/{core/lib/types/utils → libs/utils/lib}/ref.d.ts +0 -0
- /package/{core/lib/cjs/utils → libs/utils/lib}/ref.js +0 -0
- /package/{core/lib/types/utils → libs/utils/lib}/use/useEnhancedEffect.d.ts +0 -0
- /package/{core/lib/cjs/utils → libs/utils/lib}/use/useEnhancedEffect.js +0 -0
package/core/lib/cjs/index.js
CHANGED
@@ -66,9 +66,9 @@ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends")
|
|
66
66
|
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
|
67
67
|
var _react = _interopRequireDefault(require("react"));
|
68
68
|
var _hoistNonReactStatics = _interopRequireDefault(require("hoist-non-react-statics"));
|
69
|
-
var _ref4 = require("
|
70
|
-
var _useEnhancedEffect = _interopRequireDefault(require("
|
71
|
-
var _assignProps2 = _interopRequireDefault(require("
|
69
|
+
var _ref4 = require("intergalactic/utils/lib/ref");
|
70
|
+
var _useEnhancedEffect = _interopRequireDefault(require("intergalactic/utils/lib/use/useEnhancedEffect"));
|
71
|
+
var _assignProps2 = _interopRequireDefault(require("intergalactic/utils/lib/assignProps"));
|
72
72
|
var _Component = require("./Component");
|
73
73
|
Object.keys(_Component).forEach(function (key) {
|
74
74
|
if (key === "default" || key === "__esModule") return;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","names":["_react","_interopRequireDefault","require","_hoistNonReactStatics","_ref4","_useEnhancedEffect","_assignProps2","_Component","Object","keys","forEach","key","prototype","hasOwnProperty","call","_exportNames","exports","defineProperty","enumerable","get","_register","_interopRequireWildcard","_Children","_Root","_uncontrolledProps","_functionDefaultProps","_staticChildren","_inheritedName","_hoistProps","_dataName","_enhance","_style","_bindHandler","_i18n","_styled","_excluded","_excluded2","_excluded3","CORE_COMPONENT","Symbol","CORE_INSTANCE","CORE_AS_PROPS","CORE_INIT","CONTEXT_COMPONENT","CREATE_COMPONENT","PARENT_COMPONENTS","isEmptyObject","obj","getOwnPropertyNames","length","getOwnPropertySymbols","getPrototypeOf","createGetField","enhancements","Component","isFunction","getField","filter","enhancement","condition","reduce","acc","item","push","createForwardWrapper","wrapperProps","statics","RootComponent","ROOT_COMPONENT","getterMethodName","getterMethodNameByDisplayName","displayName","getterMethod","undefined","useGetterIndex","WrapperForwardRefWithBind","_ref","ref","_ref$forwardRef","forwardRef","other","_objectWithoutProperties2","createElement","BindingWrapper","_extends2","useForkRef","WrapperForwardRef","_ref2","_ref2$forwardRef","__WRAPPER_PROPS_BIND__","_reduce","WrapperComponent","_reduce$ref","enhancementRef","props","_React$Component","_inherits2","_super","_createSuper2","_this","_classCallCheck2","_len","arguments","args","Array","_key","apply","concat","_defineProperty2","_assertThisInitialized2","_createClass2","value","render","_this2","map","fn","bind","React","hoistNonReactStatics","defaultProps","assign","wrapClass","OriginComponent","Context","inits","renders","contexts","_OriginComponent2","_super2","context","_this3","_this4","Error","setContext","_this5","contextProps","_get2","_getPrototypeOf2","_this6","asProps","ctx","STATIC_COMPONENT","Provider","_objectSpread2","wrapFunction","memo","FunctionMemoComponent","selfRef","useRef","firstRender","useEnhancedEffect","current","wrapCore","_ref3","Root","createComposeComponent","PureComponent","isPrototypeOf","assignProps","p1","p2","_assignProps","createComponent","childComponents","options","_options$context","createContext","_options$parent","parent","_options$enhancements","parents","isArray","wholeFamily","_toConsumableArray2","f","i18nAppLocaleEnhance","bindHandlerEnhancement","childrenEnhancement","rootEnhancement","uncontrolledPropsEnhancement","staticChildrenEnhancement","functionDefaultPropsEnhancement","inheritedNameEnhancement","dataNameEnhancement","enhanceEnhancement","styleEnhancement","hoistPropsEnhancement","_______childrenComponents","_OriginComponent","_childComponents","_options","createBaseComponent","_default"],"sources":["../../src/index.tsx"],"sourcesContent":["import React, { ForwardRefExoticComponent, RefAttributes } from 'react';\nimport hoistNonReactStatics from 'hoist-non-react-statics';\nimport { useForkRef } from './utils/ref';\nimport useEnhancedEffect from './utils/use/useEnhancedEffect';\nimport _assignProps from './utils/assignProps';\n\nimport { Component, PropsWithRenderFnChildren } from './Component';\nimport register from './register';\n\nimport childrenEnhancement, { CHILDREN_COMPONENT } from './enhancement/Children';\nimport rootEnhancement from './enhancement/Root';\nimport uncontrolledPropsEnhancement from './enhancement/uncontrolledProps';\nimport functionDefaultPropsEnhancement from './enhancement/functionDefaultProps';\nimport staticChildrenEnhancement, {\n STATIC_COMPONENT,\n ROOT_COMPONENT,\n getterMethodNameByDisplayName,\n} from './enhancement/staticChildren';\nimport inheritedNameEnhancement, { INHERITED_NAME } from './enhancement/inheritedName';\nimport hoistPropsEnhancement from './enhancement/hoistProps';\nimport dataNameEnhancement from './enhancement/dataName';\nimport enhanceEnhancement from './enhancement/enhance';\nimport styleEnhancement from './enhancement/style';\nimport bindHandlerEnhancement from './enhancement/bindHandler';\nimport i18nAppLocaleEnhance from './enhancement/i18n';\n\nconst CORE_COMPONENT = Symbol('CORE_COMPONENT');\nconst CORE_INSTANCE = Symbol('CORE_INSTANCE');\nconst CORE_AS_PROPS = Symbol('CORE_AS_PROPS');\nconst CORE_INIT = Symbol('CORE_INIT');\nconst CONTEXT_COMPONENT = Symbol('CONTEXT_COMPONENT');\nconst CREATE_COMPONENT = Symbol('CREATE_COMPONENT');\nconst PARENT_COMPONENTS = Symbol('PARENT_COMPONENTS');\n\nfunction isEmptyObject(obj: any) {\n return (\n Object.getOwnPropertyNames(obj).length === 0 &&\n Object.getOwnPropertySymbols && // For IE 11\n Object.getOwnPropertySymbols(obj).length === 0 &&\n Object.getPrototypeOf(obj) === Object.prototype\n );\n}\n\nfunction createGetField(enhancements: any, Component: any, isFunction: boolean) {\n return function getField(key: string) {\n return enhancements\n .filter((enhancement: any) => {\n if (!enhancement.condition) {\n return true;\n }\n return enhancement.condition(Component, isFunction);\n })\n .reduce((acc: any, item: any) => {\n if (item[key]) {\n acc.push(item[key]);\n }\n return acc;\n }, []);\n };\n}\n\nfunction createForwardWrapper(Component: any, wrapperProps: any, statics: any, isFunction: any) {\n const RootComponent = Component[ROOT_COMPONENT];\n const getterMethodName = getterMethodNameByDisplayName(Component?.displayName);\n const getterMethod = RootComponent?.prototype\n ? RootComponent.prototype[getterMethodName]\n : undefined;\n const useGetterIndex = getterMethod?.length >= 2;\n\n function WrapperForwardRefWithBind({ forwardRef = null, ...other }, ref: any) {\n return <BindingWrapper {...other} forwardRef={useForkRef(ref, forwardRef)} />;\n }\n\n function WrapperForwardRef(\n { forwardRef = null, __WRAPPER_PROPS_BIND__, ...other }: any,\n ref: any,\n ) {\n const { ref: enhancementRef = null, ...props } = (\n __WRAPPER_PROPS_BIND__ || wrapperProps\n ).reduce((acc: any, enhancement: any) => enhancement(acc, WrapperComponent, isFunction), other);\n return <Component {...props} forwardRef={useForkRef(enhancementRef, ref, forwardRef)} />;\n }\n\n class BindingWrapper extends React.Component<any> {\n index = -1;\n render() {\n return (\n <WrapperForwardRef\n {...this.props}\n __WRAPPER_PROPS_BIND__={wrapperProps.map((fn: any) => fn.bind(this))}\n />\n );\n }\n }\n\n const WrapperComponent = React.forwardRef(\n useGetterIndex ? WrapperForwardRefWithBind : WrapperForwardRef,\n );\n\n hoistNonReactStatics(WrapperComponent, Component);\n\n WrapperComponent.displayName = Component.displayName;\n // TODO: defaultProps is only empty\n WrapperComponent.defaultProps = Component.defaultProps;\n // STATIC\n statics.forEach((enhancement: any) =>\n Object.assign(WrapperComponent, enhancement(WrapperComponent, Component, isFunction)),\n );\n\n return WrapperComponent;\n}\n\nfunction wrapClass(OriginComponent: any, enhancements: any, Context: any) {\n const getField = createGetField(enhancements, OriginComponent, false);\n\n const inits = getField('init');\n const props = getField('asProps');\n const renders = getField('render');\n const statics = getField('static');\n const wrapperProps = getField('wrapperProps');\n const contexts = getField('context');\n\n class Component extends OriginComponent {\n [CORE_AS_PROPS] = null;\n [CORE_INSTANCE] = WrapperComponent;\n [CORE_INIT] = false;\n\n constructor(props: any, context: any) {\n super(props, context);\n // INITS\n inits.forEach((enhancement: any) => enhancement.call(this, props, WrapperComponent, false));\n this[CORE_INIT] = true;\n }\n\n get asProps() {\n // TODO if not production\n if (!this[CORE_INIT]) {\n throw new Error('Can not call asProps in constructor');\n }\n if (!this[CORE_AS_PROPS]) {\n // PROPS\n this[CORE_AS_PROPS] = props.reduce(\n (acc: any, enhancement: any) => enhancement.call(this, acc, WrapperComponent, false),\n this.props,\n );\n }\n return this[CORE_AS_PROPS];\n }\n\n setContext() {\n const contextProps = super.setContext ? super.setContext() : {};\n // CONTEXT\n return contexts.reduce(\n (acc: any, enhancement: any) => enhancement.call(this, acc, WrapperComponent, false),\n contextProps,\n );\n }\n\n render() {\n this[CORE_AS_PROPS] = null;\n // TODO if not production\n if (!super.render) {\n throw new Error('Component `render` method is not defined');\n }\n const asProps: any = this.asProps;\n const ctx = this.setContext();\n // RENDER\n const render = renders.reduce(\n (acc: any, enhancement: any) =>\n enhancement.call(this, acc, asProps, WrapperComponent, false),\n super.render(),\n );\n if (!WrapperComponent[STATIC_COMPONENT] && !isEmptyObject(ctx)) {\n return <Context.Provider value={{ ...asProps, ...ctx }}>{render}</Context.Provider>;\n } else {\n return render;\n }\n }\n }\n\n const WrapperComponent: any = createForwardWrapper(Component, wrapperProps, statics, false);\n return WrapperComponent;\n}\n\nfunction wrapFunction(OriginComponent: any, enhancements: any, Context: any) {\n const getField = createGetField(enhancements, OriginComponent, true);\n\n const inits = getField('init');\n const props = getField('asProps');\n const renders = getField('render');\n const statics = getField('static');\n const wrapperProps = getField('wrapperProps');\n const contexts = getField('context');\n\n const Component = React.memo(function FunctionMemoComponent(other) {\n const selfRef = React.useRef({});\n const firstRender = React.useRef(true);\n useEnhancedEffect(() => {\n firstRender.current = false;\n }, []);\n if (firstRender.current) {\n // INITS\n inits.forEach((enhancement: any) =>\n enhancement.call(selfRef.current, other, WrapperComponent, true),\n );\n }\n // PROPS\n const asProps = props.reduce(\n (acc: any, enhancement: any) =>\n enhancement.call(selfRef.current, acc, WrapperComponent, true),\n other,\n );\n // CONTEXT\n const ctx = contexts.reduce(\n (acc: any, enhancement: any) =>\n enhancement.call(selfRef.current, acc, WrapperComponent, true),\n {},\n );\n\n // RENDER\n const render = renders.reduce(\n (acc: any, enhancement: any) =>\n enhancement.call(selfRef.current, acc, asProps, WrapperComponent, true),\n <OriginComponent {...asProps} />,\n );\n\n if (!WrapperComponent[STATIC_COMPONENT] && !isEmptyObject(ctx)) {\n return <Context.Provider value={{ ...asProps, ...ctx }}>{render}</Context.Provider>;\n } else {\n return render;\n }\n });\n Object.assign(Component, OriginComponent);\n const WrapperComponent: any = createForwardWrapper(Component, wrapperProps, statics, true);\n return WrapperComponent;\n}\n\nfunction wrapCore(OriginComponent: any, enhancements: any, Context: any) {\n const Component = function ({ Root }: any) {\n const defaultProps = OriginComponent.defaultProps || {};\n return <Root {...defaultProps} render={OriginComponent} />;\n };\n hoistNonReactStatics(Component, OriginComponent);\n Component.displayName = OriginComponent.displayName;\n return wrapFunction(Component, enhancements, Context);\n}\n\nfunction createComposeComponent(OriginComponent: any, Context: any, enhancements: any): any {\n if (\n React.PureComponent.isPrototypeOf(OriginComponent) ||\n React.Component.isPrototypeOf(OriginComponent)\n ) {\n if (OriginComponent.prototype instanceof Component) {\n return wrapClass(OriginComponent, enhancements, Context);\n } else {\n throw new Error('Must inherit from our component');\n }\n } else if (typeof OriginComponent === 'function') {\n return wrapFunction(OriginComponent, enhancements, Context);\n } else if (OriginComponent[CORE_COMPONENT]) {\n return wrapCore(OriginComponent, enhancements, Context);\n } else {\n throw new Error('Must be a React component');\n }\n}\n\nexport type PropsAndRef<T, Ctx, UCProps> = PropsWithRenderFnChildren<T, Ctx, UCProps> &\n RefAttributes<unknown>;\nexport type ForwardRefComponent<T, Ctx, UCProps> = ForwardRefExoticComponent<\n PropsAndRef<T, Ctx, UCProps>\n>;\ntype ComponentOrProps<T, Context, UCProps> = T extends [infer ParentProps, infer ChildProps]\n ? ComponentType<ParentProps, ChildProps, Context, UCProps>\n : ForwardRefComponent<T, Context, UCProps>;\n\nexport type ComponentType<\n ComponentProps,\n ChildComponentProps = {},\n ContextType = {},\n UCProps = {},\n FNType = null,\n> = (FNType extends null\n ? ForwardRefComponent<ComponentProps, ContextType, UCProps>\n : FNType & { displayName: string }) & {\n [K in keyof ChildComponentProps]: ComponentOrProps<ChildComponentProps[K], ContextType, UCProps>;\n} & {\n [CORE_COMPONENT]: boolean;\n [CREATE_COMPONENT]: () => ComponentType<\n ComponentProps,\n ChildComponentProps,\n ContextType,\n UCProps\n >;\n};\n\ninterface ClassWithUncontrolledProps<Props> {\n uncontrolledProps(): unknown;\n}\n\nfunction assignProps(p1: any, p2: any) {\n return _assignProps(p2, p1);\n}\n\nfunction createComponent<ComponentProps, ChildComponentProps = {}, ContextType = {}, FNType = null>(\n OriginComponent: any,\n childComponents: any = {},\n options: {\n context?: React.Context<ContextType>;\n parent?: ComponentType<unknown> | ComponentType<unknown>[];\n enhancements?: [any];\n } = {},\n): ComponentType<\n ComponentProps extends Component<infer Props> ? Props : ComponentProps,\n ChildComponentProps,\n ContextType,\n ComponentProps extends ClassWithUncontrolledProps<any>\n ? ReturnType<ComponentProps['uncontrolledProps']>\n : { [key: string]: (arg: unknown) => void },\n FNType\n> {\n const {\n context = React.createContext<ContextType>({} as ContextType),\n parent = [],\n enhancements = [],\n } = options;\n let parents = Array.isArray(parent) ? parent : [parent];\n if (parents.length) {\n const wholeFamily = parents.reduce((acc: any, parent: any) => {\n if (parent[PARENT_COMPONENTS]) {\n acc = [...parent[PARENT_COMPONENTS], ...acc];\n }\n return acc;\n }, parents);\n OriginComponent[PARENT_COMPONENTS] = wholeFamily;\n parents = wholeFamily;\n }\n if (OriginComponent[CORE_COMPONENT]) {\n parents.push(OriginComponent);\n }\n const Component = createComposeComponent(OriginComponent, context, [\n // @ts-ignore\n ...enhancements.map((f) => f(context, parents, createComponent, childComponents)),\n i18nAppLocaleEnhance(),\n bindHandlerEnhancement(),\n childrenEnhancement(context, parents),\n // root must be under the children\n rootEnhancement(),\n uncontrolledPropsEnhancement(),\n staticChildrenEnhancement(childComponents, createComponent, {\n context,\n parent,\n enhancements,\n }),\n // functionDefaultProps must be under the staticChild\n functionDefaultPropsEnhancement(),\n // inheritedName must be under the staticChild\n inheritedNameEnhancement(),\n // dataName must be under the staticChild\n dataNameEnhancement(),\n // enhanceEnhancement must be under the functionDefaultPropsEnhancement\n enhanceEnhancement(),\n styleEnhancement(childComponents, context),\n // must be the last one so any properties can be raised\n hoistPropsEnhancement(childComponents, context),\n ]);\n Component[CONTEXT_COMPONENT] = context;\n Component._______childrenComponents = childComponents;\n Component[CREATE_COMPONENT] = function (\n _OriginComponent = OriginComponent,\n _childComponents = childComponents,\n _options = options,\n ) {\n return createComponent(_OriginComponent, _childComponents, _options);\n };\n Component[CORE_COMPONENT] = true;\n return Component;\n}\n\nfunction createBaseComponent<ComponentProps>(OriginComponent: any): ComponentType<ComponentProps> {\n let Component = null;\n if (\n !React.PureComponent.isPrototypeOf(OriginComponent) &&\n !React.Component.isPrototypeOf(OriginComponent) &&\n typeof OriginComponent === 'function'\n ) {\n Component = React.forwardRef(OriginComponent);\n Component.displayName = OriginComponent.displayName;\n Component.defaultProps = {\n 'data-ui-name': OriginComponent.displayName,\n ...OriginComponent.defaultProps,\n };\n (Component as any)[CORE_COMPONENT] = true;\n } else {\n throw new Error('createBaseComponent accepts only functional component');\n }\n return Component as any;\n}\n\nexport type UnknownProperties = {\n [key: string]: unknown;\n};\n\nexport * from './Component';\nexport * from './styled';\nexport * from './register';\nexport {\n createBaseComponent,\n register,\n CREATE_COMPONENT,\n CORE_INSTANCE,\n CONTEXT_COMPONENT,\n CHILDREN_COMPONENT,\n INHERITED_NAME,\n CORE_COMPONENT,\n STATIC_COMPONENT,\n ROOT_COMPONENT,\n assignProps,\n};\nexport default createComponent;\n"],"mappings":"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"}
|
1
|
+
{"version":3,"file":"index.js","names":["_react","_interopRequireDefault","require","_hoistNonReactStatics","_ref4","_useEnhancedEffect","_assignProps2","_Component","Object","keys","forEach","key","prototype","hasOwnProperty","call","_exportNames","exports","defineProperty","enumerable","get","_register","_interopRequireWildcard","_Children","_Root","_uncontrolledProps","_functionDefaultProps","_staticChildren","_inheritedName","_hoistProps","_dataName","_enhance","_style","_bindHandler","_i18n","_styled","_excluded","_excluded2","_excluded3","CORE_COMPONENT","Symbol","CORE_INSTANCE","CORE_AS_PROPS","CORE_INIT","CONTEXT_COMPONENT","CREATE_COMPONENT","PARENT_COMPONENTS","isEmptyObject","obj","getOwnPropertyNames","length","getOwnPropertySymbols","getPrototypeOf","createGetField","enhancements","Component","isFunction","getField","filter","enhancement","condition","reduce","acc","item","push","createForwardWrapper","wrapperProps","statics","RootComponent","ROOT_COMPONENT","getterMethodName","getterMethodNameByDisplayName","displayName","getterMethod","undefined","useGetterIndex","WrapperForwardRefWithBind","_ref","ref","_ref$forwardRef","forwardRef","other","_objectWithoutProperties2","createElement","BindingWrapper","_extends2","useForkRef","WrapperForwardRef","_ref2","_ref2$forwardRef","__WRAPPER_PROPS_BIND__","_reduce","WrapperComponent","_reduce$ref","enhancementRef","props","_React$Component","_inherits2","_super","_createSuper2","_this","_classCallCheck2","_len","arguments","args","Array","_key","apply","concat","_defineProperty2","_assertThisInitialized2","_createClass2","value","render","_this2","map","fn","bind","React","hoistNonReactStatics","defaultProps","assign","wrapClass","OriginComponent","Context","inits","renders","contexts","_OriginComponent2","_super2","context","_this3","_this4","Error","setContext","_this5","contextProps","_get2","_getPrototypeOf2","_this6","asProps","ctx","STATIC_COMPONENT","Provider","_objectSpread2","wrapFunction","memo","FunctionMemoComponent","selfRef","useRef","firstRender","useEnhancedEffect","current","wrapCore","_ref3","Root","createComposeComponent","PureComponent","isPrototypeOf","assignProps","p1","p2","_assignProps","createComponent","childComponents","options","_options$context","createContext","_options$parent","parent","_options$enhancements","parents","isArray","wholeFamily","_toConsumableArray2","f","i18nAppLocaleEnhance","bindHandlerEnhancement","childrenEnhancement","rootEnhancement","uncontrolledPropsEnhancement","staticChildrenEnhancement","functionDefaultPropsEnhancement","inheritedNameEnhancement","dataNameEnhancement","enhanceEnhancement","styleEnhancement","hoistPropsEnhancement","_______childrenComponents","_OriginComponent","_childComponents","_options","createBaseComponent","_default"],"sources":["../../src/index.tsx"],"sourcesContent":["import React, { ForwardRefExoticComponent, RefAttributes } from 'react';\nimport hoistNonReactStatics from 'hoist-non-react-statics';\n// @ts-ignore\nimport { useForkRef } from '@semcore/utils/lib/ref';\n// @ts-ignore\nimport useEnhancedEffect from '@semcore/utils/lib/use/useEnhancedEffect';\n// @ts-ignore\nimport _assignProps from '@semcore/utils/lib/assignProps';\n\nimport { Component, PropsWithRenderFnChildren } from './Component';\nimport register from './register';\n\nimport childrenEnhancement, { CHILDREN_COMPONENT } from './enhancement/Children';\nimport rootEnhancement from './enhancement/Root';\nimport uncontrolledPropsEnhancement from './enhancement/uncontrolledProps';\nimport functionDefaultPropsEnhancement from './enhancement/functionDefaultProps';\nimport staticChildrenEnhancement, {\n STATIC_COMPONENT,\n ROOT_COMPONENT,\n getterMethodNameByDisplayName,\n} from './enhancement/staticChildren';\nimport inheritedNameEnhancement, { INHERITED_NAME } from './enhancement/inheritedName';\nimport hoistPropsEnhancement from './enhancement/hoistProps';\nimport dataNameEnhancement from './enhancement/dataName';\nimport enhanceEnhancement from './enhancement/enhance';\nimport styleEnhancement from './enhancement/style';\nimport bindHandlerEnhancement from './enhancement/bindHandler';\nimport i18nAppLocaleEnhance from './enhancement/i18n';\n\nconst CORE_COMPONENT = Symbol('CORE_COMPONENT');\nconst CORE_INSTANCE = Symbol('CORE_INSTANCE');\nconst CORE_AS_PROPS = Symbol('CORE_AS_PROPS');\nconst CORE_INIT = Symbol('CORE_INIT');\nconst CONTEXT_COMPONENT = Symbol('CONTEXT_COMPONENT');\nconst CREATE_COMPONENT = Symbol('CREATE_COMPONENT');\nconst PARENT_COMPONENTS = Symbol('PARENT_COMPONENTS');\n\nfunction isEmptyObject(obj: any) {\n return (\n Object.getOwnPropertyNames(obj).length === 0 &&\n Object.getOwnPropertySymbols && // For IE 11\n Object.getOwnPropertySymbols(obj).length === 0 &&\n Object.getPrototypeOf(obj) === Object.prototype\n );\n}\n\nfunction createGetField(enhancements: any, Component: any, isFunction: boolean) {\n return function getField(key: string) {\n return enhancements\n .filter((enhancement: any) => {\n if (!enhancement.condition) {\n return true;\n }\n return enhancement.condition(Component, isFunction);\n })\n .reduce((acc: any, item: any) => {\n if (item[key]) {\n acc.push(item[key]);\n }\n return acc;\n }, []);\n };\n}\n\nfunction createForwardWrapper(Component: any, wrapperProps: any, statics: any, isFunction: any) {\n const RootComponent = Component[ROOT_COMPONENT];\n const getterMethodName = getterMethodNameByDisplayName(Component?.displayName);\n const getterMethod = RootComponent?.prototype\n ? RootComponent.prototype[getterMethodName]\n : undefined;\n const useGetterIndex = getterMethod?.length >= 2;\n\n function WrapperForwardRefWithBind({ forwardRef = null, ...other }, ref: any) {\n return <BindingWrapper {...other} forwardRef={useForkRef(ref, forwardRef)} />;\n }\n\n function WrapperForwardRef(\n { forwardRef = null, __WRAPPER_PROPS_BIND__, ...other }: any,\n ref: any,\n ) {\n const { ref: enhancementRef = null, ...props } = (\n __WRAPPER_PROPS_BIND__ || wrapperProps\n ).reduce((acc: any, enhancement: any) => enhancement(acc, WrapperComponent, isFunction), other);\n return <Component {...props} forwardRef={useForkRef(enhancementRef, ref, forwardRef)} />;\n }\n\n class BindingWrapper extends React.Component<any> {\n index = -1;\n render() {\n return (\n <WrapperForwardRef\n {...this.props}\n __WRAPPER_PROPS_BIND__={wrapperProps.map((fn: any) => fn.bind(this))}\n />\n );\n }\n }\n\n const WrapperComponent = React.forwardRef(\n useGetterIndex ? WrapperForwardRefWithBind : WrapperForwardRef,\n );\n\n hoistNonReactStatics(WrapperComponent, Component);\n\n WrapperComponent.displayName = Component.displayName;\n // TODO: defaultProps is only empty\n WrapperComponent.defaultProps = Component.defaultProps;\n // STATIC\n statics.forEach((enhancement: any) =>\n Object.assign(WrapperComponent, enhancement(WrapperComponent, Component, isFunction)),\n );\n\n return WrapperComponent;\n}\n\nfunction wrapClass(OriginComponent: any, enhancements: any, Context: any) {\n const getField = createGetField(enhancements, OriginComponent, false);\n\n const inits = getField('init');\n const props = getField('asProps');\n const renders = getField('render');\n const statics = getField('static');\n const wrapperProps = getField('wrapperProps');\n const contexts = getField('context');\n\n class Component extends OriginComponent {\n [CORE_AS_PROPS] = null;\n [CORE_INSTANCE] = WrapperComponent;\n [CORE_INIT] = false;\n\n constructor(props: any, context: any) {\n super(props, context);\n // INITS\n inits.forEach((enhancement: any) => enhancement.call(this, props, WrapperComponent, false));\n this[CORE_INIT] = true;\n }\n\n get asProps() {\n // TODO if not production\n if (!this[CORE_INIT]) {\n throw new Error('Can not call asProps in constructor');\n }\n if (!this[CORE_AS_PROPS]) {\n // PROPS\n this[CORE_AS_PROPS] = props.reduce(\n (acc: any, enhancement: any) => enhancement.call(this, acc, WrapperComponent, false),\n this.props,\n );\n }\n return this[CORE_AS_PROPS];\n }\n\n setContext() {\n const contextProps = super.setContext ? super.setContext() : {};\n // CONTEXT\n return contexts.reduce(\n (acc: any, enhancement: any) => enhancement.call(this, acc, WrapperComponent, false),\n contextProps,\n );\n }\n\n render() {\n this[CORE_AS_PROPS] = null;\n // TODO if not production\n if (!super.render) {\n throw new Error('Component `render` method is not defined');\n }\n const asProps: any = this.asProps;\n const ctx = this.setContext();\n // RENDER\n const render = renders.reduce(\n (acc: any, enhancement: any) =>\n enhancement.call(this, acc, asProps, WrapperComponent, false),\n super.render(),\n );\n if (!WrapperComponent[STATIC_COMPONENT] && !isEmptyObject(ctx)) {\n return <Context.Provider value={{ ...asProps, ...ctx }}>{render}</Context.Provider>;\n } else {\n return render;\n }\n }\n }\n\n const WrapperComponent: any = createForwardWrapper(Component, wrapperProps, statics, false);\n return WrapperComponent;\n}\n\nfunction wrapFunction(OriginComponent: any, enhancements: any, Context: any) {\n const getField = createGetField(enhancements, OriginComponent, true);\n\n const inits = getField('init');\n const props = getField('asProps');\n const renders = getField('render');\n const statics = getField('static');\n const wrapperProps = getField('wrapperProps');\n const contexts = getField('context');\n\n const Component = React.memo(function FunctionMemoComponent(other) {\n const selfRef = React.useRef({});\n const firstRender = React.useRef(true);\n useEnhancedEffect(() => {\n firstRender.current = false;\n }, []);\n if (firstRender.current) {\n // INITS\n inits.forEach((enhancement: any) =>\n enhancement.call(selfRef.current, other, WrapperComponent, true),\n );\n }\n // PROPS\n const asProps = props.reduce(\n (acc: any, enhancement: any) =>\n enhancement.call(selfRef.current, acc, WrapperComponent, true),\n other,\n );\n // CONTEXT\n const ctx = contexts.reduce(\n (acc: any, enhancement: any) =>\n enhancement.call(selfRef.current, acc, WrapperComponent, true),\n {},\n );\n\n // RENDER\n const render = renders.reduce(\n (acc: any, enhancement: any) =>\n enhancement.call(selfRef.current, acc, asProps, WrapperComponent, true),\n <OriginComponent {...asProps} />,\n );\n\n if (!WrapperComponent[STATIC_COMPONENT] && !isEmptyObject(ctx)) {\n return <Context.Provider value={{ ...asProps, ...ctx }}>{render}</Context.Provider>;\n } else {\n return render;\n }\n });\n Object.assign(Component, OriginComponent);\n const WrapperComponent: any = createForwardWrapper(Component, wrapperProps, statics, true);\n return WrapperComponent;\n}\n\nfunction wrapCore(OriginComponent: any, enhancements: any, Context: any) {\n const Component = function ({ Root }: any) {\n const defaultProps = OriginComponent.defaultProps || {};\n return <Root {...defaultProps} render={OriginComponent} />;\n };\n hoistNonReactStatics(Component, OriginComponent);\n Component.displayName = OriginComponent.displayName;\n return wrapFunction(Component, enhancements, Context);\n}\n\nfunction createComposeComponent(OriginComponent: any, Context: any, enhancements: any): any {\n if (\n React.PureComponent.isPrototypeOf(OriginComponent) ||\n React.Component.isPrototypeOf(OriginComponent)\n ) {\n if (OriginComponent.prototype instanceof Component) {\n return wrapClass(OriginComponent, enhancements, Context);\n } else {\n throw new Error('Must inherit from our component');\n }\n } else if (typeof OriginComponent === 'function') {\n return wrapFunction(OriginComponent, enhancements, Context);\n } else if (OriginComponent[CORE_COMPONENT]) {\n return wrapCore(OriginComponent, enhancements, Context);\n } else {\n throw new Error('Must be a React component');\n }\n}\n\nexport type PropsAndRef<T, Ctx, UCProps> = PropsWithRenderFnChildren<T, Ctx, UCProps> &\n RefAttributes<unknown>;\nexport type ForwardRefComponent<T, Ctx, UCProps> = ForwardRefExoticComponent<\n PropsAndRef<T, Ctx, UCProps>\n>;\ntype ComponentOrProps<T, Context, UCProps> = T extends [infer ParentProps, infer ChildProps]\n ? ComponentType<ParentProps, ChildProps, Context, UCProps>\n : ForwardRefComponent<T, Context, UCProps>;\n\nexport type ComponentType<\n ComponentProps,\n ChildComponentProps = {},\n ContextType = {},\n UCProps = {},\n FNType = null,\n> = (FNType extends null\n ? ForwardRefComponent<ComponentProps, ContextType, UCProps>\n : FNType & { displayName: string }) & {\n [K in keyof ChildComponentProps]: ComponentOrProps<ChildComponentProps[K], ContextType, UCProps>;\n} & {\n [CORE_COMPONENT]: boolean;\n [CREATE_COMPONENT]: () => ComponentType<\n ComponentProps,\n ChildComponentProps,\n ContextType,\n UCProps\n >;\n};\n\ninterface ClassWithUncontrolledProps<Props> {\n uncontrolledProps(): unknown;\n}\n\nfunction assignProps(p1: any, p2: any) {\n return _assignProps(p2, p1);\n}\n\nfunction createComponent<ComponentProps, ChildComponentProps = {}, ContextType = {}, FNType = null>(\n OriginComponent: any,\n childComponents: any = {},\n options: {\n context?: React.Context<ContextType>;\n parent?: ComponentType<unknown> | ComponentType<unknown>[];\n enhancements?: [any];\n } = {},\n): ComponentType<\n ComponentProps extends Component<infer Props> ? Props : ComponentProps,\n ChildComponentProps,\n ContextType,\n ComponentProps extends ClassWithUncontrolledProps<any>\n ? ReturnType<ComponentProps['uncontrolledProps']>\n : { [key: string]: (arg: unknown) => void },\n FNType\n> {\n const {\n context = React.createContext<ContextType>({} as ContextType),\n parent = [],\n enhancements = [],\n } = options;\n let parents = Array.isArray(parent) ? parent : [parent];\n if (parents.length) {\n const wholeFamily = parents.reduce((acc: any, parent: any) => {\n if (parent[PARENT_COMPONENTS]) {\n acc = [...parent[PARENT_COMPONENTS], ...acc];\n }\n return acc;\n }, parents);\n OriginComponent[PARENT_COMPONENTS] = wholeFamily;\n parents = wholeFamily;\n }\n if (OriginComponent[CORE_COMPONENT]) {\n parents.push(OriginComponent);\n }\n const Component = createComposeComponent(OriginComponent, context, [\n // @ts-ignore\n ...enhancements.map((f) => f(context, parents, createComponent, childComponents)),\n i18nAppLocaleEnhance(),\n bindHandlerEnhancement(),\n childrenEnhancement(context, parents),\n // root must be under the children\n rootEnhancement(),\n uncontrolledPropsEnhancement(),\n staticChildrenEnhancement(childComponents, createComponent, {\n context,\n parent,\n enhancements,\n }),\n // functionDefaultProps must be under the staticChild\n functionDefaultPropsEnhancement(),\n // inheritedName must be under the staticChild\n inheritedNameEnhancement(),\n // dataName must be under the staticChild\n dataNameEnhancement(),\n // enhanceEnhancement must be under the functionDefaultPropsEnhancement\n enhanceEnhancement(),\n styleEnhancement(childComponents, context),\n // must be the last one so any properties can be raised\n hoistPropsEnhancement(childComponents, context),\n ]);\n Component[CONTEXT_COMPONENT] = context;\n Component._______childrenComponents = childComponents;\n Component[CREATE_COMPONENT] = function (\n _OriginComponent = OriginComponent,\n _childComponents = childComponents,\n _options = options,\n ) {\n return createComponent(_OriginComponent, _childComponents, _options);\n };\n Component[CORE_COMPONENT] = true;\n return Component;\n}\n\nfunction createBaseComponent<ComponentProps>(OriginComponent: any): ComponentType<ComponentProps> {\n let Component = null;\n if (\n !React.PureComponent.isPrototypeOf(OriginComponent) &&\n !React.Component.isPrototypeOf(OriginComponent) &&\n typeof OriginComponent === 'function'\n ) {\n Component = React.forwardRef(OriginComponent);\n Component.displayName = OriginComponent.displayName;\n Component.defaultProps = {\n 'data-ui-name': OriginComponent.displayName,\n ...OriginComponent.defaultProps,\n };\n (Component as any)[CORE_COMPONENT] = true;\n } else {\n throw new Error('createBaseComponent accepts only functional component');\n }\n return Component as any;\n}\n\nexport type UnknownProperties = {\n [key: string]: unknown;\n};\n\nexport * from './Component';\nexport * from './styled';\nexport * from './register';\nexport {\n createBaseComponent,\n register,\n CREATE_COMPONENT,\n CORE_INSTANCE,\n CONTEXT_COMPONENT,\n CHILDREN_COMPONENT,\n INHERITED_NAME,\n CORE_COMPONENT,\n STATIC_COMPONENT,\n ROOT_COMPONENT,\n assignProps,\n};\nexport default createComponent;\n"],"mappings":"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"}
|
@@ -4,8 +4,10 @@ import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProper
|
|
4
4
|
var _excluded = ["render"],
|
5
5
|
_excluded2 = ["Root", "styles", "children", "Children", "forwardRef"];
|
6
6
|
import React from 'react';
|
7
|
-
|
8
|
-
import
|
7
|
+
// @ts-ignore
|
8
|
+
import assignProps from 'intergalactic/utils/lib/assignProps';
|
9
|
+
// @ts-ignore
|
10
|
+
import { useForkRef } from 'intergalactic/utils/lib/ref';
|
9
11
|
function createRootRender() {
|
10
12
|
// @ts-ignore
|
11
13
|
var Root = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"Root.js","names":["React","assignProps","useForkRef","createRootRender","Root","forwardRef","_ref","ref","Tag","render","source","_objectWithoutProperties","_excluded","_Root$props","props","_Root","styles","children","Children","_Root$props$forwardRe","_excluded2","clearProps","Object","entries","reduce","_ref2","_ref3","_slicedToArray","name","value","undefined","child","origin","createElement","other","_objectSpread","Error","Fragment","Enhancement","init","asProps","WrapperComponent","isFunction"],"sources":["../../../src/enhancement/Root.tsx"],"sourcesContent":["import React from 'react';\nimport assignProps from '
|
1
|
+
{"version":3,"file":"Root.js","names":["React","assignProps","useForkRef","createRootRender","Root","forwardRef","_ref","ref","Tag","render","source","_objectWithoutProperties","_excluded","_Root$props","props","_Root","styles","children","Children","_Root$props$forwardRe","_excluded2","clearProps","Object","entries","reduce","_ref2","_ref3","_slicedToArray","name","value","undefined","child","origin","createElement","other","_objectSpread","Error","Fragment","Enhancement","init","asProps","WrapperComponent","isFunction"],"sources":["../../../src/enhancement/Root.tsx"],"sourcesContent":["import React from 'react';\n// @ts-ignore\nimport assignProps from '@semcore/utils/lib/assignProps';\n// @ts-ignore\nimport { useForkRef } from '@semcore/utils/lib/ref';\n\nfunction createRootRender() {\n // @ts-ignore\n const Root = React.forwardRef(function ({ render: Tag, ...source }, ref) {\n const {\n Root: _Root,\n\n styles,\n\n children,\n Children,\n forwardRef = null,\n ...props\n // @ts-ignore\n } = Root.props;\n\n const clearProps = Object.entries(props).reduce((props: any, [name, value]) => {\n if (value !== undefined) {\n props[name] = value;\n }\n return props;\n }, {});\n\n const child = {};\n // TODO: need to find better check solution (by lsroman)\n if (typeof Children.origin !== 'undefined') {\n // @ts-ignore\n child.children = <Children />;\n }\n\n const other = assignProps(\n {\n ...clearProps,\n ref: useForkRef(forwardRef, ref),\n },\n {\n ...child,\n ...source,\n },\n );\n if (!Tag) {\n throw new Error('`render` prop of Root is not provided');\n }\n if (Tag === React.Fragment) return <React.Fragment>{other.children}</React.Fragment>;\n\n return <Tag {...other} />;\n });\n // @ts-ignore\n Root.props = {};\n return Root;\n}\n\nfunction Enhancement() {\n return {\n init: function (this: any) {\n this.Root = createRootRender();\n },\n asProps: function (this: any, props: any, WrapperComponent: any, isFunction: boolean) {\n if (isFunction) {\n return {\n ...props,\n Root: this.Root,\n };\n }\n return props;\n },\n render: function (this: any, render: any, props: any) {\n this.Root.props = props;\n return render;\n },\n };\n}\n\nexport default Enhancement;\n"],"mappings":"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"}
|
@@ -3,9 +3,12 @@ import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
3
3
|
import _objectSpread from "@babel/runtime/helpers/objectSpread2";
|
4
4
|
import _toConsumableArray from "@babel/runtime/helpers/toConsumableArray";
|
5
5
|
import React from 'react';
|
6
|
-
|
7
|
-
import
|
8
|
-
|
6
|
+
// @ts-ignore
|
7
|
+
import assignProps from 'intergalactic/utils/lib/assignProps';
|
8
|
+
// @ts-ignore
|
9
|
+
import useEnhancedEffect from 'intergalactic/utils/lib/use/useEnhancedEffect';
|
10
|
+
// @ts-ignore
|
11
|
+
import pick from 'intergalactic/utils/lib/pick';
|
9
12
|
export var HOIST_CONTEXT = Symbol('HOIST_CONTEXT');
|
10
13
|
var HOIST_SELF = Symbol('HOIST_SELF');
|
11
14
|
var HOIST_SET = Symbol('HOIST_SET');
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"hoistProps.js","names":["React","assignProps","useEnhancedEffect","pick","HOIST_CONTEXT","Symbol","HOIST_SELF","HOIST_SET","flatChildComponent","childComponents","Object","values","reduce","acc","Component","Array","isArray","concat","_toConsumableArray","push","Enhancement","Context","condition","some","_Component$hoistProps","Boolean","hoistProps","length","init","props","WrapperComponent","isFunction","_this","useState","obj","forceUpdate","context","_objectSpread","_defineProperty","asProps","wrapperProps","_WrapperComponent$hoi","useContext","renameProps","propName","_propName$split","split","_propName$split2","_slicedToArray","name","rename","entries","keys","_ref","_ref2","value"],"sources":["../../../src/enhancement/hoistProps.tsx"],"sourcesContent":["import React from 'react';\nimport assignProps from '
|
1
|
+
{"version":3,"file":"hoistProps.js","names":["React","assignProps","useEnhancedEffect","pick","HOIST_CONTEXT","Symbol","HOIST_SELF","HOIST_SET","flatChildComponent","childComponents","Object","values","reduce","acc","Component","Array","isArray","concat","_toConsumableArray","push","Enhancement","Context","condition","some","_Component$hoistProps","Boolean","hoistProps","length","init","props","WrapperComponent","isFunction","_this","useState","obj","forceUpdate","context","_objectSpread","_defineProperty","asProps","wrapperProps","_WrapperComponent$hoi","useContext","renameProps","propName","_propName$split","split","_propName$split2","_slicedToArray","name","rename","entries","keys","_ref","_ref2","value"],"sources":["../../../src/enhancement/hoistProps.tsx"],"sourcesContent":["import React from 'react';\n// @ts-ignore\nimport assignProps from '@semcore/utils/lib/assignProps';\n// @ts-ignore\nimport useEnhancedEffect from '@semcore/utils/lib/use/useEnhancedEffect';\n// @ts-ignore\nimport pick from '@semcore/utils/lib/pick';\n\nexport const HOIST_CONTEXT = Symbol('HOIST_CONTEXT');\nconst HOIST_SELF = Symbol('HOIST_SELF');\nconst HOIST_SET = Symbol('HOIST_SET');\n\nfunction flatChildComponent(childComponents: any) {\n return Object.values(childComponents).reduce<unknown[]>((acc, Component) => {\n if (Array.isArray(Component)) {\n acc = [...acc, Component[0], ...flatChildComponent(Component[1])];\n } else {\n acc.push(Component);\n }\n return acc;\n }, []);\n}\n\n/** @deprecated Doesn't work in ssr and sometimes breakes rulles of hooks. We should never use it. */\nfunction Enhancement(childComponents: any, Context: any) {\n return {\n condition: function (Component: any) {\n return [Component, ...flatChildComponent(childComponents)].some((Component) =>\n Boolean(Component.hoistProps?.length),\n );\n },\n init: function (this: any, props: any, WrapperComponent: any, isFunction: boolean) {\n if (isFunction) {\n // TODO: might breake rules of hooks (by lsroman)\n this[HOIST_SELF] = React.useState({});\n } else {\n this[HOIST_SELF] = [\n {},\n (obj: any) => {\n this[HOIST_SELF][0] = obj;\n this.forceUpdate();\n },\n ];\n }\n // For optimization render\n this[HOIST_SET] = (obj: any) => {\n this[HOIST_SELF][1](obj);\n };\n },\n context: function (this: any, context: any) {\n // TODO: need to optimizte container initialization (by lsroman)\n // WrapperComponent.hoistProps\n return {\n ...context,\n [HOIST_CONTEXT]: this[HOIST_SET],\n };\n },\n asProps: function (this: any, props: any) {\n // TODO: need to check for no props overwriting (by lsroman)\n return assignProps(this[HOIST_SELF][0], props);\n },\n wrapperProps: function (props: any, WrapperComponent: any) {\n if (WrapperComponent.hoistProps?.length) {\n const context: any = React.useContext(Context);\n const renameProps: any = WrapperComponent.hoistProps.reduce((acc: any, propName: any) => {\n const [name, rename] = propName.split(':');\n acc[name] = rename || name;\n return acc;\n }, {});\n const hoistProps = Object.entries(pick(props, Object.keys(renameProps))).reduce(\n (acc: any, [name, value]) => {\n acc[renameProps[name]] = value;\n return acc;\n },\n {},\n );\n\n useEnhancedEffect(() => {\n if (context[HOIST_CONTEXT]) {\n context[HOIST_CONTEXT](hoistProps);\n }\n }, Object.values(hoistProps));\n }\n return props;\n },\n };\n}\n\nexport default Enhancement;\n"],"mappings":"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"}
|
@@ -2,7 +2,8 @@ import _objectSpread from "@babel/runtime/helpers/objectSpread2";
|
|
2
2
|
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
3
3
|
var _excluded = ["locale"];
|
4
4
|
import React from 'react';
|
5
|
-
|
5
|
+
// @ts-ignore
|
6
|
+
import { Context } from 'intergalactic/utils/lib/enhances/WithI18n';
|
6
7
|
function i18nAppLocaleEnhance() {
|
7
8
|
return {
|
8
9
|
wrapperProps: function wrapperProps(props) {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"i18n.js","names":["React","Context","i18nAppLocaleEnhance","wrapperProps","props","locale","other","_objectWithoutProperties","_excluded","contextLocale","useContext","_objectSpread"],"sources":["../../../src/enhancement/i18n.tsx"],"sourcesContent":["import React from 'react';\nimport { Context } from '
|
1
|
+
{"version":3,"file":"i18n.js","names":["React","Context","i18nAppLocaleEnhance","wrapperProps","props","locale","other","_objectWithoutProperties","_excluded","contextLocale","useContext","_objectSpread"],"sources":["../../../src/enhancement/i18n.tsx"],"sourcesContent":["import React from 'react';\n// @ts-ignore\nimport { Context } from '@semcore/utils/lib/enhances/WithI18n';\n\nfunction i18nAppLocaleEnhance() {\n return {\n wrapperProps: (props: any) => {\n const { locale, ...other } = props;\n const contextLocale = React.useContext(Context);\n if (!locale && !contextLocale) return props;\n return {\n ...other,\n locale: locale ?? contextLocale,\n };\n },\n };\n}\n\nexport default i18nAppLocaleEnhance;\n"],"mappings":";;;AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB;AACA,SAASC,OAAO,QAAQ,sCAAsC;AAE9D,SAASC,oBAAoBA,CAAA,EAAG;EAC9B,OAAO;IACLC,YAAY,EAAE,SAAAA,aAACC,KAAU,EAAK;MAC5B,IAAQC,MAAM,GAAeD,KAAK,CAA1BC,MAAM;QAAKC,KAAK,GAAAC,wBAAA,CAAKH,KAAK,EAAAI,SAAA;MAClC,IAAMC,aAAa,GAAGT,KAAK,CAACU,UAAU,CAACT,OAAO,CAAC;MAC/C,IAAI,CAACI,MAAM,IAAI,CAACI,aAAa,EAAE,OAAOL,KAAK;MAC3C,OAAAO,aAAA,CAAAA,aAAA,KACKL,KAAK;QACRD,MAAM,EAAEA,MAAM,aAANA,MAAM,cAANA,MAAM,GAAII;MAAa;IAEnC;EACF,CAAC;AACH;AAEA,eAAeP,oBAAoB"}
|
@@ -2,9 +2,12 @@ import _objectSpread from "@babel/runtime/helpers/objectSpread2";
|
|
2
2
|
import _toConsumableArray from "@babel/runtime/helpers/toConsumableArray";
|
3
3
|
import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
|
4
4
|
import React from 'react';
|
5
|
-
|
6
|
-
import
|
7
|
-
|
5
|
+
// @ts-ignore
|
6
|
+
import assignProps from 'intergalactic/utils/lib/assignProps';
|
7
|
+
// @ts-ignore
|
8
|
+
import pick from 'intergalactic/utils/lib/pick';
|
9
|
+
// @ts-ignore
|
10
|
+
import logger from 'intergalactic/utils/lib/logger';
|
8
11
|
function assign(target, source) {
|
9
12
|
return Object.defineProperties(target, Object.keys(source).reduce(function (descriptors, key) {
|
10
13
|
descriptors[key] = Object.getOwnPropertyDescriptor(source, key);
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"staticChildren.js","names":["React","assignProps","pick","logger","assign","target","source","Object","defineProperties","keys","reduce","descriptors","key","getOwnPropertyDescriptor","getterMethodName","name","concat","getterMethodNameByDisplayName","displayName","arguments","length","undefined","displayNames","split","slice","join","flatGetterMethodNames","childComponents","parentName","entries","acc","_ref","_ref2","_slicedToArray","value","Array","isArray","_toConsumableArray","push","STATIC_COMPONENT","Symbol","ROOT_COMPONENT","SELF_GETTER_METHOD","Enhancement","createComponent","options","getterMethodNames","condition","Component","Boolean","init","props","WrapperComponent","_this","getterMethods","selfGetterMethod","warn","getterMethod","childrenProps","getterProps","call","index","cache","Set","_static","Error","_ref3","_ref4","prevStaticComponent","prevDisplayName","context","_objectSpread","wrapperProps","useContext","has","add","render","_this2","forEach","clear"],"sources":["../../../src/enhancement/staticChildren.tsx"],"sourcesContent":["import React from 'react';\nimport assignProps from '../utils/assignProps';\nimport pick from '../utils/pick';\nimport logger from '../utils/logger';\n\nfunction assign(target: any, source: any) {\n return Object.defineProperties(\n target,\n Object.keys(source).reduce((descriptors: any, key) => {\n descriptors[key] = Object.getOwnPropertyDescriptor(source, key);\n return descriptors;\n }, {}),\n );\n}\n\nexport function getterMethodName(name: string) {\n return `get${name}Props`;\n}\n\nexport function getterMethodNameByDisplayName(displayName = '') {\n const displayNames = displayName.split('.');\n const name = displayNames.slice(-(displayNames.length - 1)).join('');\n return getterMethodName(name);\n}\n\nfunction flatGetterMethodNames(childComponents: any, parentName?: string) {\n return Object.entries(childComponents).reduce<string[]>((acc, [name, value]) => {\n if (Array.isArray(value)) {\n acc = [...acc, ...flatGetterMethodNames(value[1], name)];\n }\n name = parentName ? `${parentName}${name}` : name;\n acc.push(getterMethodName(name));\n return acc;\n }, []);\n}\n\nexport const STATIC_COMPONENT = Symbol('STATIC_COMPONENT');\nexport const ROOT_COMPONENT = Symbol('ROOT_COMPONENT');\nconst SELF_GETTER_METHOD = Symbol('SELF_GETTER_METHOD');\n\nfunction Enhancement(childComponents: any, createComponent: any, options: any) {\n const getterMethodNames = flatGetterMethodNames(childComponents);\n return {\n condition: function (Component: any) {\n return Boolean(Component[STATIC_COMPONENT] || Object.keys(childComponents).length);\n },\n init: function (this: any, props: any, WrapperComponent: any) {\n const getterMethods: any = pick(this, getterMethodNames);\n this[SELF_GETTER_METHOD] = () => {\n const selfGetterMethod = getterMethodNameByDisplayName(WrapperComponent.displayName);\n logger.warn(\n true,\n `Getter \\`${selfGetterMethod}\\` can't be fired as it is a getter of static component`,\n props['data-ui-name'] || WrapperComponent.displayName,\n );\n };\n assign(\n this,\n getterMethodNames.reduce((acc: any, name) => {\n const getterMethod = getterMethods[name];\n if (!getterMethod) return acc;\n acc[name] = (childrenProps = {}) => {\n const getterProps = getterMethod.call(this, childrenProps, acc[name].index);\n return assignProps(childrenProps, getterProps);\n };\n acc[name].index = -1;\n acc[name].cache = new Set();\n return acc;\n }, {}),\n );\n },\n static: function (WrapperComponent: any, Component: any) {\n if (Object.keys(childComponents).length && !WrapperComponent.displayName) {\n throw new Error('\"displayName\" is not defined');\n }\n return Object.entries(childComponents).reduce((acc: any, [name, value]: any) => {\n let childComponents = {};\n\n if (Array.isArray(value)) {\n childComponents = value[1];\n value = value[0];\n }\n\n const prevStaticComponent = value[STATIC_COMPONENT];\n // @ts-ignore\n const prevDisplayName = value.displayName;\n // @ts-ignore\n value.displayName = `${WrapperComponent.displayName}.${name}`;\n value[STATIC_COMPONENT] = true;\n value[ROOT_COMPONENT] = Component[ROOT_COMPONENT] || Component;\n acc[name] = createComponent(value, childComponents, options);\n // @ts-ignore\n value.displayName = prevDisplayName;\n value[STATIC_COMPONENT] = prevStaticComponent;\n return acc;\n }, {});\n },\n context: function (context: any /*, WrapperComponent*/) {\n // const getterMethod = getterMethodNameByDisplayName(WrapperComponent.displayName);\n return {\n ...context,\n // [getterMethod]: this[SELF_GETTER_METHOD],\n ...pick(this, getterMethodNames as any),\n };\n },\n wrapperProps: function (this: any, props: any, WrapperComponent: any) {\n if (!WrapperComponent[STATIC_COMPONENT]) return props;\n const context: any = React.useContext(options.context);\n const getterMethod = context[getterMethodNameByDisplayName(WrapperComponent.displayName)];\n if (getterMethod) {\n if (!getterMethod.cache.has(this)) {\n getterMethod.cache.add(this);\n getterMethod.index++;\n if (this) this.index = getterMethod.index;\n }\n if (this) getterMethod.index = this.index;\n return getterMethod(props);\n }\n return props;\n },\n render: function (this: any, render: any) {\n getterMethodNames.forEach((name) => {\n if (this[name] === undefined) return;\n this[name].index = -1;\n this[name].cache.clear();\n });\n return render;\n },\n };\n}\n\nexport default Enhancement;\n"],"mappings":"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"}
|
1
|
+
{"version":3,"file":"staticChildren.js","names":["React","assignProps","pick","logger","assign","target","source","Object","defineProperties","keys","reduce","descriptors","key","getOwnPropertyDescriptor","getterMethodName","name","concat","getterMethodNameByDisplayName","displayName","arguments","length","undefined","displayNames","split","slice","join","flatGetterMethodNames","childComponents","parentName","entries","acc","_ref","_ref2","_slicedToArray","value","Array","isArray","_toConsumableArray","push","STATIC_COMPONENT","Symbol","ROOT_COMPONENT","SELF_GETTER_METHOD","Enhancement","createComponent","options","getterMethodNames","condition","Component","Boolean","init","props","WrapperComponent","_this","getterMethods","selfGetterMethod","warn","getterMethod","childrenProps","getterProps","call","index","cache","Set","_static","Error","_ref3","_ref4","prevStaticComponent","prevDisplayName","context","_objectSpread","wrapperProps","useContext","has","add","render","_this2","forEach","clear"],"sources":["../../../src/enhancement/staticChildren.tsx"],"sourcesContent":["import React from 'react';\n// @ts-ignore\nimport assignProps from '@semcore/utils/lib/assignProps';\n// @ts-ignore\nimport pick from '@semcore/utils/lib/pick';\n// @ts-ignore\nimport logger from '@semcore/utils/lib/logger';\n\nfunction assign(target: any, source: any) {\n return Object.defineProperties(\n target,\n Object.keys(source).reduce((descriptors: any, key) => {\n descriptors[key] = Object.getOwnPropertyDescriptor(source, key);\n return descriptors;\n }, {}),\n );\n}\n\nexport function getterMethodName(name: string) {\n return `get${name}Props`;\n}\n\nexport function getterMethodNameByDisplayName(displayName = '') {\n const displayNames = displayName.split('.');\n const name = displayNames.slice(-(displayNames.length - 1)).join('');\n return getterMethodName(name);\n}\n\nfunction flatGetterMethodNames(childComponents: any, parentName?: string) {\n return Object.entries(childComponents).reduce<string[]>((acc, [name, value]) => {\n if (Array.isArray(value)) {\n acc = [...acc, ...flatGetterMethodNames(value[1], name)];\n }\n name = parentName ? `${parentName}${name}` : name;\n acc.push(getterMethodName(name));\n return acc;\n }, []);\n}\n\nexport const STATIC_COMPONENT = Symbol('STATIC_COMPONENT');\nexport const ROOT_COMPONENT = Symbol('ROOT_COMPONENT');\nconst SELF_GETTER_METHOD = Symbol('SELF_GETTER_METHOD');\n\nfunction Enhancement(childComponents: any, createComponent: any, options: any) {\n const getterMethodNames = flatGetterMethodNames(childComponents);\n return {\n condition: function (Component: any) {\n return Boolean(Component[STATIC_COMPONENT] || Object.keys(childComponents).length);\n },\n init: function (this: any, props: any, WrapperComponent: any) {\n const getterMethods: any = pick(this, getterMethodNames);\n this[SELF_GETTER_METHOD] = () => {\n const selfGetterMethod = getterMethodNameByDisplayName(WrapperComponent.displayName);\n logger.warn(\n true,\n `Getter \\`${selfGetterMethod}\\` can't be fired as it is a getter of static component`,\n props['data-ui-name'] || WrapperComponent.displayName,\n );\n };\n assign(\n this,\n getterMethodNames.reduce((acc: any, name) => {\n const getterMethod = getterMethods[name];\n if (!getterMethod) return acc;\n acc[name] = (childrenProps = {}) => {\n const getterProps = getterMethod.call(this, childrenProps, acc[name].index);\n return assignProps(childrenProps, getterProps);\n };\n acc[name].index = -1;\n acc[name].cache = new Set();\n return acc;\n }, {}),\n );\n },\n static: function (WrapperComponent: any, Component: any) {\n if (Object.keys(childComponents).length && !WrapperComponent.displayName) {\n throw new Error('\"displayName\" is not defined');\n }\n return Object.entries(childComponents).reduce((acc: any, [name, value]: any) => {\n let childComponents = {};\n\n if (Array.isArray(value)) {\n childComponents = value[1];\n value = value[0];\n }\n\n const prevStaticComponent = value[STATIC_COMPONENT];\n // @ts-ignore\n const prevDisplayName = value.displayName;\n // @ts-ignore\n value.displayName = `${WrapperComponent.displayName}.${name}`;\n value[STATIC_COMPONENT] = true;\n value[ROOT_COMPONENT] = Component[ROOT_COMPONENT] || Component;\n acc[name] = createComponent(value, childComponents, options);\n // @ts-ignore\n value.displayName = prevDisplayName;\n value[STATIC_COMPONENT] = prevStaticComponent;\n return acc;\n }, {});\n },\n context: function (context: any /*, WrapperComponent*/) {\n // const getterMethod = getterMethodNameByDisplayName(WrapperComponent.displayName);\n return {\n ...context,\n // [getterMethod]: this[SELF_GETTER_METHOD],\n ...pick(this, getterMethodNames as any),\n };\n },\n wrapperProps: function (this: any, props: any, WrapperComponent: any) {\n if (!WrapperComponent[STATIC_COMPONENT]) return props;\n const context: any = React.useContext(options.context);\n const getterMethod = context[getterMethodNameByDisplayName(WrapperComponent.displayName)];\n if (getterMethod) {\n if (!getterMethod.cache.has(this)) {\n getterMethod.cache.add(this);\n getterMethod.index++;\n if (this) this.index = getterMethod.index;\n }\n if (this) getterMethod.index = this.index;\n return getterMethod(props);\n }\n return props;\n },\n render: function (this: any, render: any) {\n getterMethodNames.forEach((name) => {\n if (this[name] === undefined) return;\n this[name].index = -1;\n this[name].cache.clear();\n });\n return render;\n },\n };\n}\n\nexport default Enhancement;\n"],"mappings":"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"}
|
@@ -5,8 +5,10 @@ import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProper
|
|
5
5
|
import _toPropertyKey from "@babel/runtime/helpers/toPropertyKey";
|
6
6
|
import _toConsumableArray from "@babel/runtime/helpers/toConsumableArray";
|
7
7
|
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
8
|
-
|
9
|
-
import
|
8
|
+
// @ts-ignore
|
9
|
+
import { callAllEventHandlers } from 'intergalactic/utils/lib/assignProps';
|
10
|
+
// @ts-ignore
|
11
|
+
import capitalizeFirstLetter from 'intergalactic/utils/lib/capitalizeFirstLetter';
|
10
12
|
function assign(target, source) {
|
11
13
|
return Object.defineProperties(target, Object.keys(source).reduce(function (descriptors, key) {
|
12
14
|
descriptors[key] = Object.getOwnPropertyDescriptor(source, key);
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"uncontrolledProps.js","names":["callAllEventHandlers","capitalizeFirstLetter","assign","target","source","Object","defineProperties","keys","reduce","descriptors","key","getOwnPropertyDescriptor","defaultProp","prop","concat","handlerProp","isControlled","propValue","undefined","uncontrolledProp","self","propName","propDefaultValue","propHandler","chainHandler","getValue","state","value","oldValue","setState","_defineProperty","_len","arguments","length","args","Array","_key","apply","_toConsumableArray","uncontrolledUniversal","props","config","handlerProps","uncontrolledProps","result","_objectSpread2","handlerName","defaultPropName","other","_objectWithoutProperties","map","_toPropertyKey","console","warn","setter","isArray","_setter","_setter2","_toArray","slice","v","_uncontrolledProp","_uncontrolledProp2","_slicedToArray","handler","_objectSpread","eventOrValue","_len2","_key2","push","uncontrolled","bind","Enhancement","condition","Component","Boolean","prototype","init","handlers","_uncontrolled","_uncontrolled2","uncontrolledHandlers","context","asProps","_uncontrolled3","_uncontrolled4"],"sources":["../../../src/enhancement/uncontrolledProps.tsx"],"sourcesContent":["
|
1
|
+
{"version":3,"file":"uncontrolledProps.js","names":["callAllEventHandlers","capitalizeFirstLetter","assign","target","source","Object","defineProperties","keys","reduce","descriptors","key","getOwnPropertyDescriptor","defaultProp","prop","concat","handlerProp","isControlled","propValue","undefined","uncontrolledProp","self","propName","propDefaultValue","propHandler","chainHandler","getValue","state","value","oldValue","setState","_defineProperty","_len","arguments","length","args","Array","_key","apply","_toConsumableArray","uncontrolledUniversal","props","config","handlerProps","uncontrolledProps","result","_objectSpread2","handlerName","defaultPropName","other","_objectWithoutProperties","map","_toPropertyKey","console","warn","setter","isArray","_setter","_setter2","_toArray","slice","v","_uncontrolledProp","_uncontrolledProp2","_slicedToArray","handler","_objectSpread","eventOrValue","_len2","_key2","push","uncontrolled","bind","Enhancement","condition","Component","Boolean","prototype","init","handlers","_uncontrolled","_uncontrolled2","uncontrolledHandlers","context","asProps","_uncontrolled3","_uncontrolled4"],"sources":["../../../src/enhancement/uncontrolledProps.tsx"],"sourcesContent":["// @ts-ignore\nimport { callAllEventHandlers } from '@semcore/utils/lib/assignProps';\n// @ts-ignore\nimport capitalizeFirstLetter from '@semcore/utils/lib/capitalizeFirstLetter';\n\nfunction assign(target: any, source: any) {\n return Object.defineProperties(\n target,\n Object.keys(source).reduce((descriptors: any, key) => {\n descriptors[key] = Object.getOwnPropertyDescriptor(source, key);\n return descriptors;\n }, {}),\n );\n}\n\nfunction defaultProp(prop: any) {\n return `default${capitalizeFirstLetter(prop)}`;\n}\n\nfunction handlerProp(prop: any) {\n if (prop === 'value') prop = '';\n if (prop === 'checked') prop = '';\n return `on${capitalizeFirstLetter(prop)}Change`;\n}\n\nfunction isControlled(propValue: any) {\n return propValue !== undefined;\n}\n\nfunction uncontrolledProp(\n self: any,\n propName: any,\n propValue: any,\n propDefaultValue: any,\n propHandler: any,\n chainHandler: any,\n) {\n function getValue() {\n return isControlled(propValue)\n ? propValue\n : propName in self.state\n ? self.state[propName]\n : propDefaultValue;\n }\n\n return [\n getValue(),\n (value: any, ...args: any[]) => {\n const oldValue = getValue();\n if (oldValue === value) return false;\n if (!isControlled(propValue)) self.setState({ [propName]: value });\n return callAllEventHandlers(propHandler, ...chainHandler)(value, ...args);\n },\n ];\n}\n\nfunction uncontrolledUniversal(props: any, config: any, uncontrolledProp: any) {\n const handlerProps = {};\n const uncontrolledProps = Object.keys(config).reduce((result, propName) => {\n const handlerName = handlerProp(propName);\n const defaultPropName = defaultProp(propName);\n const {\n [defaultPropName]: propDefaultValue,\n [propName]: propValue,\n [handlerName]: propHandler,\n ...other\n } = result;\n\n if (propDefaultValue === undefined) {\n console.warn(defaultPropName, 'must be installed in \"defaultProps\"');\n }\n\n // if (typeof propDefaultValue === 'function' && propDefaultValue.defaultInit) {\n // propDefaultValue = propDefaultValue(result);\n // }\n\n let setter = config[propName];\n let chainHandler = [];\n\n if (Array.isArray(setter)) [setter, ...chainHandler] = setter;\n setter = setter || ((v: any) => v);\n\n const [value, handler] = uncontrolledProp(\n propName,\n propValue,\n propDefaultValue,\n propHandler,\n chainHandler,\n );\n // TODO: need to warn about recursion (by lsroman)\n (handlerProps as any)[propName] = handler;\n\n return {\n ...other,\n [propName]: value,\n [handlerName]: (eventOrValue: any, ...args: any[]) => {\n const result = [setter(eventOrValue, ...args), ...args];\n if (eventOrValue?.target) {\n result.push(eventOrValue);\n }\n return handler(...result);\n },\n };\n }, props);\n return [uncontrolledProps, handlerProps];\n}\n\nfunction uncontrolled(self: any, props: any, config: any) {\n return uncontrolledUniversal(props, config, uncontrolledProp.bind(undefined, self));\n}\n\nfunction Enhancement() {\n return {\n condition: function (Component: any) {\n return Boolean(Component.prototype.uncontrolledProps);\n },\n init: function (this: any) {\n this.state = this.state || {};\n assign(this, {\n get handlers() {\n const [, uncontrolledHandlers] = uncontrolled(this, this.props, this.uncontrolledProps());\n return uncontrolledHandlers;\n },\n });\n },\n context: function (this: any, context: any) {\n return {\n ...context,\n handlers: this.handlers,\n };\n },\n asProps: function (this: any, props: any) {\n // TODO: need to omit unneccessary props (by lsroman)\n const [uncontrolledProps] = uncontrolled(this, props, this.uncontrolledProps());\n return uncontrolledProps;\n },\n };\n}\n\nexport default Enhancement;\n"],"mappings":"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"}
|
package/core/lib/es6/index.js
CHANGED
@@ -15,9 +15,12 @@ var _excluded = ["forwardRef"],
|
|
15
15
|
_excluded3 = ["ref"];
|
16
16
|
import React from 'react';
|
17
17
|
import hoistNonReactStatics from 'hoist-non-react-statics';
|
18
|
-
|
19
|
-
import
|
20
|
-
|
18
|
+
// @ts-ignore
|
19
|
+
import { useForkRef } from 'intergalactic/utils/lib/ref';
|
20
|
+
// @ts-ignore
|
21
|
+
import useEnhancedEffect from 'intergalactic/utils/lib/use/useEnhancedEffect';
|
22
|
+
// @ts-ignore
|
23
|
+
import _assignProps from 'intergalactic/utils/lib/assignProps';
|
21
24
|
import { Component } from './Component';
|
22
25
|
import register from './register';
|
23
26
|
import childrenEnhancement, { CHILDREN_COMPONENT } from './enhancement/Children';
|