intergalactic 15.87.0-prerelease.3 → 15.88.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/core/Component.d.ts +152 -0
- package/core/enhancement/Children.d.ts +6 -0
- package/core/enhancement/Root.d.ts +6 -0
- package/core/enhancement/bindHandler.d.ts +5 -0
- package/core/enhancement/dataName.d.ts +4 -0
- package/core/enhancement/enhance.d.ts +5 -0
- package/core/enhancement/functionDefaultProps.d.ts +8 -0
- package/core/enhancement/hoistProps.d.ts +10 -0
- package/core/enhancement/i18n.d.ts +4 -0
- package/core/enhancement/inheritedName.d.ts +8 -0
- package/core/enhancement/staticChildren.d.ts +13 -0
- package/core/enhancement/style.d.ts +9 -0
- package/core/enhancement/uncontrolledProps.d.ts +7 -0
- package/core/lib/cjs/Component.js +58 -0
- package/core/lib/cjs/Component.js.map +1 -0
- package/core/lib/cjs/enhancement/Children.js +121 -0
- package/core/lib/cjs/enhancement/Children.js.map +1 -0
- package/core/lib/cjs/enhancement/Root.js +78 -0
- package/core/lib/cjs/enhancement/Root.js.map +1 -0
- package/core/lib/cjs/enhancement/bindHandler.js +54 -0
- package/core/lib/cjs/enhancement/bindHandler.js.map +1 -0
- package/core/lib/cjs/enhancement/dataName.js +20 -0
- package/core/lib/cjs/enhancement/dataName.js.map +1 -0
- package/core/lib/cjs/enhancement/enhance.js +22 -0
- package/core/lib/cjs/enhancement/enhance.js.map +1 -0
- package/core/lib/cjs/enhancement/functionDefaultProps.js +36 -0
- package/core/lib/cjs/enhancement/functionDefaultProps.js.map +1 -0
- package/core/lib/cjs/enhancement/hoistProps.js +102 -0
- package/core/lib/cjs/enhancement/hoistProps.js.map +1 -0
- package/core/lib/cjs/enhancement/i18n.js +28 -0
- package/core/lib/cjs/enhancement/i18n.js.map +1 -0
- package/core/lib/cjs/enhancement/inheritedName.js +24 -0
- package/core/lib/cjs/enhancement/inheritedName.js.map +1 -0
- package/core/lib/cjs/enhancement/staticChildren.js +141 -0
- package/core/lib/cjs/enhancement/staticChildren.js.map +1 -0
- package/core/lib/cjs/enhancement/style.js +60 -0
- package/core/lib/cjs/enhancement/style.js.map +1 -0
- package/core/lib/cjs/enhancement/uncontrolledProps.js +135 -0
- package/core/lib/cjs/enhancement/uncontrolledProps.js.map +1 -0
- package/core/lib/cjs/register.js +37 -0
- package/core/lib/cjs/register.js.map +1 -0
- package/core/lib/cjs/reshadow.d.js +2 -0
- package/core/lib/cjs/reshadow.d.js.map +1 -0
- package/core/lib/cjs/styled/index.js +54 -0
- package/core/lib/cjs/styled/index.js.map +1 -0
- package/core/lib/cjs/styled/sstyled.js +150 -0
- package/core/lib/cjs/styled/sstyled.js.map +1 -0
- package/core/lib/es6/Component.js +50 -0
- package/core/lib/es6/Component.js.map +1 -0
- package/core/lib/es6/enhancement/Children.js +112 -0
- package/core/lib/es6/enhancement/Children.js.map +1 -0
- package/core/lib/es6/enhancement/Root.js +72 -0
- package/core/lib/es6/enhancement/Root.js.map +1 -0
- package/core/lib/es6/enhancement/bindHandler.js +47 -0
- package/core/lib/es6/enhancement/bindHandler.js.map +1 -0
- package/core/lib/es6/enhancement/dataName.js +12 -0
- package/core/lib/es6/enhancement/dataName.js.map +1 -0
- package/core/lib/es6/enhancement/enhance.js +15 -0
- package/core/lib/es6/enhancement/enhance.js.map +1 -0
- package/core/lib/es6/enhancement/functionDefaultProps.js +29 -0
- package/core/lib/es6/enhancement/functionDefaultProps.js.map +1 -0
- package/core/lib/es6/enhancement/hoistProps.js +90 -0
- package/core/lib/es6/enhancement/hoistProps.js.map +1 -0
- package/core/lib/es6/enhancement/i18n.js +21 -0
- package/core/lib/es6/enhancement/i18n.js.map +1 -0
- package/core/lib/es6/enhancement/inheritedName.js +15 -0
- package/core/lib/es6/enhancement/inheritedName.js.map +1 -0
- package/core/lib/es6/enhancement/staticChildren.js +126 -0
- package/core/lib/es6/enhancement/staticChildren.js.map +1 -0
- package/core/lib/es6/enhancement/style.js +52 -0
- package/core/lib/es6/enhancement/style.js.map +1 -0
- package/core/lib/es6/enhancement/uncontrolledProps.js +125 -0
- package/core/lib/es6/enhancement/uncontrolledProps.js.map +1 -0
- package/core/lib/es6/register.js +29 -0
- package/core/lib/es6/register.js.map +1 -0
- package/core/lib/es6/reshadow.d.js +2 -0
- package/core/lib/es6/reshadow.d.js.map +1 -0
- package/core/lib/es6/styled/index.js +10 -0
- package/core/lib/es6/styled/index.js.map +1 -0
- package/core/lib/es6/styled/sstyled.js +143 -0
- package/core/lib/es6/styled/sstyled.js.map +1 -0
- package/core/lib/types/Component.d.ts +152 -0
- package/core/lib/types/enhancement/Children.d.ts +6 -0
- package/core/lib/types/enhancement/Root.d.ts +6 -0
- package/core/lib/types/enhancement/bindHandler.d.ts +5 -0
- package/core/lib/types/enhancement/dataName.d.ts +4 -0
- package/core/lib/types/enhancement/enhance.d.ts +5 -0
- package/core/lib/types/enhancement/functionDefaultProps.d.ts +8 -0
- package/core/lib/types/enhancement/hoistProps.d.ts +10 -0
- package/core/lib/types/enhancement/i18n.d.ts +4 -0
- package/core/lib/types/enhancement/inheritedName.d.ts +8 -0
- package/core/lib/types/enhancement/staticChildren.d.ts +13 -0
- package/core/lib/types/enhancement/style.d.ts +9 -0
- package/core/lib/types/enhancement/uncontrolledProps.d.ts +7 -0
- package/core/lib/types/register.d.ts +8 -0
- package/core/lib/types/styled/index.d.ts +14 -0
- package/core/lib/types/styled/sstyled.d.ts +17 -0
- package/core/register.d.ts +8 -0
- package/core/styled/index.d.ts +14 -0
- package/core/styled/sstyled.d.ts +17 -0
- package/d3-chart/lib/cjs/ClipPath.js +94 -0
- package/d3-chart/lib/cjs/ClipPath.js.map +1 -0
- package/d3-chart/lib/es6/ClipPath.js +85 -0
- package/d3-chart/lib/es6/ClipPath.js.map +1 -0
- package/flags/lib/sprites/sprite@1x.png +0 -0
- package/flags/lib/sprites/sprite@2x.png +0 -0
- package/libs/accordion/lib/cjs/Accordion.js +229 -0
- package/libs/accordion/lib/cjs/Accordion.js.map +1 -0
- package/libs/accordion/lib/cjs/index.d.js +2 -0
- package/libs/accordion/lib/cjs/index.d.js.map +1 -0
- package/libs/accordion/lib/cjs/index.js +26 -0
- package/libs/accordion/lib/cjs/index.js.map +1 -0
- package/libs/accordion/lib/es6/Accordion.js +223 -0
- package/libs/accordion/lib/es6/Accordion.js.map +1 -0
- package/libs/accordion/lib/es6/index.d.js +2 -0
- package/libs/accordion/lib/es6/index.d.js.map +1 -0
- package/libs/accordion/lib/es6/index.js +3 -0
- package/libs/accordion/lib/es6/index.js.map +1 -0
- package/libs/accordion/lib/types/index.d.ts +95 -0
- package/libs/animation/lib/cjs/Animation.js +165 -0
- package/libs/animation/lib/cjs/Animation.js.map +1 -0
- package/libs/animation/lib/cjs/Collapse.js +103 -0
- package/libs/animation/lib/cjs/Collapse.js.map +1 -0
- package/libs/animation/lib/cjs/FadeInOut.js +53 -0
- package/libs/animation/lib/cjs/FadeInOut.js.map +1 -0
- package/libs/animation/lib/cjs/Scale.js +80 -0
- package/libs/animation/lib/cjs/Scale.js.map +1 -0
- package/libs/animation/lib/cjs/Slide.js +53 -0
- package/libs/animation/lib/cjs/Slide.js.map +1 -0
- package/libs/animation/lib/cjs/Transform.js +60 -0
- package/libs/animation/lib/cjs/Transform.js.map +1 -0
- package/libs/animation/lib/cjs/index.d.js +2 -0
- package/libs/animation/lib/cjs/index.d.js.map +1 -0
- package/libs/animation/lib/cjs/index.js +56 -0
- package/libs/animation/lib/cjs/index.js.map +1 -0
- package/libs/animation/lib/es6/Animation.js +157 -0
- package/libs/animation/lib/es6/Animation.js.map +1 -0
- package/libs/animation/lib/es6/Collapse.js +96 -0
- package/libs/animation/lib/es6/Collapse.js.map +1 -0
- package/libs/animation/lib/es6/FadeInOut.js +46 -0
- package/libs/animation/lib/es6/FadeInOut.js.map +1 -0
- package/libs/animation/lib/es6/Scale.js +73 -0
- package/libs/animation/lib/es6/Scale.js.map +1 -0
- package/libs/animation/lib/es6/Slide.js +46 -0
- package/libs/animation/lib/es6/Slide.js.map +1 -0
- package/libs/animation/lib/es6/Transform.js +53 -0
- package/libs/animation/lib/es6/Transform.js.map +1 -0
- package/libs/animation/lib/es6/index.d.js +2 -0
- package/libs/animation/lib/es6/index.d.js.map +1 -0
- package/libs/animation/lib/es6/index.js +7 -0
- package/libs/animation/lib/es6/index.js.map +1 -0
- package/libs/animation/lib/types/index.d.ts +103 -0
- package/libs/badge/lib/cjs/Badge.js +63 -0
- package/libs/badge/lib/cjs/Badge.js.map +1 -0
- package/libs/badge/lib/cjs/index.d.js +2 -0
- package/libs/badge/lib/cjs/index.d.js.map +1 -0
- package/libs/badge/lib/cjs/index.js +14 -0
- package/libs/badge/lib/cjs/index.js.map +1 -0
- package/libs/badge/lib/es6/Badge.js +56 -0
- package/libs/badge/lib/es6/Badge.js.map +1 -0
- package/libs/badge/lib/es6/index.d.js +2 -0
- package/libs/badge/lib/es6/index.d.js.map +1 -0
- package/libs/badge/lib/es6/index.js +2 -0
- package/libs/badge/lib/es6/index.js.map +1 -0
- package/libs/badge/lib/types/index.d.ts +20 -0
- package/libs/base-trigger/lib/cjs/BaseTrigger.js +128 -0
- package/libs/base-trigger/lib/cjs/BaseTrigger.js.map +1 -0
- package/libs/base-trigger/lib/cjs/ButtonTrigger.js +73 -0
- package/libs/base-trigger/lib/cjs/ButtonTrigger.js.map +1 -0
- package/libs/base-trigger/lib/cjs/FilterTrigger.js +159 -0
- package/libs/base-trigger/lib/cjs/FilterTrigger.js.map +1 -0
- package/libs/base-trigger/lib/cjs/LinkTrigger.js +113 -0
- package/libs/base-trigger/lib/cjs/LinkTrigger.js.map +1 -0
- package/libs/base-trigger/lib/cjs/index.d.js +2 -0
- package/libs/base-trigger/lib/cjs/index.d.js.map +1 -0
- package/libs/base-trigger/lib/cjs/index.js +35 -0
- package/libs/base-trigger/lib/cjs/index.js.map +1 -0
- package/libs/base-trigger/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/base-trigger/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/base-trigger/lib/cjs/translations/de.json +4 -0
- package/libs/base-trigger/lib/cjs/translations/en.json +4 -0
- package/libs/base-trigger/lib/cjs/translations/es.json +4 -0
- package/libs/base-trigger/lib/cjs/translations/fr.json +4 -0
- package/libs/base-trigger/lib/cjs/translations/it.json +4 -0
- package/libs/base-trigger/lib/cjs/translations/ja.json +4 -0
- package/libs/base-trigger/lib/cjs/translations/ko.json +4 -0
- package/libs/base-trigger/lib/cjs/translations/nl.json +4 -0
- package/libs/base-trigger/lib/cjs/translations/pl.json +4 -0
- package/libs/base-trigger/lib/cjs/translations/pt.json +4 -0
- package/libs/base-trigger/lib/cjs/translations/sv.json +4 -0
- package/libs/base-trigger/lib/cjs/translations/tr.json +4 -0
- package/libs/base-trigger/lib/cjs/translations/vi.json +4 -0
- package/libs/base-trigger/lib/cjs/translations/zh.json +4 -0
- package/libs/base-trigger/lib/es6/BaseTrigger.js +123 -0
- package/libs/base-trigger/lib/es6/BaseTrigger.js.map +1 -0
- package/libs/base-trigger/lib/es6/ButtonTrigger.js +66 -0
- package/libs/base-trigger/lib/es6/ButtonTrigger.js.map +1 -0
- package/libs/base-trigger/lib/es6/FilterTrigger.js +153 -0
- package/libs/base-trigger/lib/es6/FilterTrigger.js.map +1 -0
- package/libs/base-trigger/lib/es6/LinkTrigger.js +108 -0
- package/libs/base-trigger/lib/es6/LinkTrigger.js.map +1 -0
- package/libs/base-trigger/lib/es6/index.d.js +2 -0
- package/libs/base-trigger/lib/es6/index.d.js.map +1 -0
- package/libs/base-trigger/lib/es6/index.js +5 -0
- package/libs/base-trigger/lib/es6/index.js.map +1 -0
- package/libs/base-trigger/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/base-trigger/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/base-trigger/lib/es6/translations/de.json +4 -0
- package/libs/base-trigger/lib/es6/translations/en.json +4 -0
- package/libs/base-trigger/lib/es6/translations/es.json +4 -0
- package/libs/base-trigger/lib/es6/translations/fr.json +4 -0
- package/libs/base-trigger/lib/es6/translations/it.json +4 -0
- package/libs/base-trigger/lib/es6/translations/ja.json +4 -0
- package/libs/base-trigger/lib/es6/translations/ko.json +4 -0
- package/libs/base-trigger/lib/es6/translations/nl.json +4 -0
- package/libs/base-trigger/lib/es6/translations/pl.json +4 -0
- package/libs/base-trigger/lib/es6/translations/pt.json +4 -0
- package/libs/base-trigger/lib/es6/translations/sv.json +4 -0
- package/libs/base-trigger/lib/es6/translations/tr.json +4 -0
- package/libs/base-trigger/lib/es6/translations/vi.json +4 -0
- package/libs/base-trigger/lib/es6/translations/zh.json +4 -0
- package/libs/base-trigger/lib/types/index.d.ts +95 -0
- package/libs/breadcrumbs/lib/cjs/Breadcrumbs.js +116 -0
- package/libs/breadcrumbs/lib/cjs/Breadcrumbs.js.map +1 -0
- package/libs/breadcrumbs/lib/cjs/index.d.js +2 -0
- package/libs/breadcrumbs/lib/cjs/index.d.js.map +1 -0
- package/libs/breadcrumbs/lib/cjs/index.js +14 -0
- package/libs/breadcrumbs/lib/cjs/index.js.map +1 -0
- package/libs/breadcrumbs/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/breadcrumbs/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/breadcrumbs/lib/cjs/translations/de.json +3 -0
- package/libs/breadcrumbs/lib/cjs/translations/en.json +3 -0
- package/libs/breadcrumbs/lib/cjs/translations/es.json +3 -0
- package/libs/breadcrumbs/lib/cjs/translations/fr.json +3 -0
- package/libs/breadcrumbs/lib/cjs/translations/it.json +3 -0
- package/libs/breadcrumbs/lib/cjs/translations/ja.json +3 -0
- package/libs/breadcrumbs/lib/cjs/translations/ko.json +3 -0
- package/libs/breadcrumbs/lib/cjs/translations/nl.json +3 -0
- package/libs/breadcrumbs/lib/cjs/translations/pl.json +3 -0
- package/libs/breadcrumbs/lib/cjs/translations/pt.json +3 -0
- package/libs/breadcrumbs/lib/cjs/translations/sv.json +3 -0
- package/libs/breadcrumbs/lib/cjs/translations/tr.json +3 -0
- package/libs/breadcrumbs/lib/cjs/translations/vi.json +3 -0
- package/libs/breadcrumbs/lib/cjs/translations/zh.json +3 -0
- package/libs/breadcrumbs/lib/es6/Breadcrumbs.js +110 -0
- package/libs/breadcrumbs/lib/es6/Breadcrumbs.js.map +1 -0
- package/libs/breadcrumbs/lib/es6/index.d.js +2 -0
- package/libs/breadcrumbs/lib/es6/index.d.js.map +1 -0
- package/libs/breadcrumbs/lib/es6/index.js +2 -0
- package/libs/breadcrumbs/lib/es6/index.js.map +1 -0
- package/libs/breadcrumbs/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/breadcrumbs/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/breadcrumbs/lib/es6/translations/de.json +3 -0
- package/libs/breadcrumbs/lib/es6/translations/en.json +3 -0
- package/libs/breadcrumbs/lib/es6/translations/es.json +3 -0
- package/libs/breadcrumbs/lib/es6/translations/fr.json +3 -0
- package/libs/breadcrumbs/lib/es6/translations/it.json +3 -0
- package/libs/breadcrumbs/lib/es6/translations/ja.json +3 -0
- package/libs/breadcrumbs/lib/es6/translations/ko.json +3 -0
- package/libs/breadcrumbs/lib/es6/translations/nl.json +3 -0
- package/libs/breadcrumbs/lib/es6/translations/pl.json +3 -0
- package/libs/breadcrumbs/lib/es6/translations/pt.json +3 -0
- package/libs/breadcrumbs/lib/es6/translations/sv.json +3 -0
- package/libs/breadcrumbs/lib/es6/translations/tr.json +3 -0
- package/libs/breadcrumbs/lib/es6/translations/vi.json +3 -0
- package/libs/breadcrumbs/lib/es6/translations/zh.json +3 -0
- package/libs/breadcrumbs/lib/types/index.d.ts +34 -0
- package/libs/breakpoints/lib/cjs/Breakpoints.js +99 -0
- package/libs/breakpoints/lib/cjs/Breakpoints.js.map +1 -0
- package/libs/breakpoints/lib/cjs/index.d.js +2 -0
- package/libs/breakpoints/lib/cjs/index.d.js.map +1 -0
- package/libs/breakpoints/lib/cjs/index.js +26 -0
- package/libs/breakpoints/lib/cjs/index.js.map +1 -0
- package/libs/breakpoints/lib/es6/Breakpoints.js +88 -0
- package/libs/breakpoints/lib/es6/Breakpoints.js.map +1 -0
- package/libs/breakpoints/lib/es6/index.d.js +2 -0
- package/libs/breakpoints/lib/es6/index.d.js.map +1 -0
- package/libs/breakpoints/lib/es6/index.js +3 -0
- package/libs/breakpoints/lib/es6/index.js.map +1 -0
- package/libs/breakpoints/lib/types/index.d.ts +46 -0
- package/libs/button/lib/cjs/Button.js +178 -0
- package/libs/button/lib/cjs/Button.js.map +1 -0
- package/libs/button/lib/cjs/SpinButton.js +42 -0
- package/libs/button/lib/cjs/SpinButton.js.map +1 -0
- package/libs/button/lib/cjs/index.d.js +2 -0
- package/libs/button/lib/cjs/index.d.js.map +1 -0
- package/libs/button/lib/cjs/index.js +26 -0
- package/libs/button/lib/cjs/index.js.map +1 -0
- package/libs/button/lib/es6/Button.js +172 -0
- package/libs/button/lib/es6/Button.js.map +1 -0
- package/libs/button/lib/es6/SpinButton.js +32 -0
- package/libs/button/lib/es6/SpinButton.js.map +1 -0
- package/libs/button/lib/es6/index.d.js +2 -0
- package/libs/button/lib/es6/index.d.js.map +1 -0
- package/libs/button/lib/es6/index.js +3 -0
- package/libs/button/lib/es6/index.js.map +1 -0
- package/libs/button/lib/types/index.d.ts +62 -0
- package/libs/card/lib/cjs/Card.js +102 -0
- package/libs/card/lib/cjs/Card.js.map +1 -0
- package/libs/card/lib/cjs/index.d.js +2 -0
- package/libs/card/lib/cjs/index.d.js.map +1 -0
- package/libs/card/lib/cjs/index.js +14 -0
- package/libs/card/lib/cjs/index.js.map +1 -0
- package/libs/card/lib/es6/Card.js +99 -0
- package/libs/card/lib/es6/Card.js.map +1 -0
- package/libs/card/lib/es6/index.d.js +2 -0
- package/libs/card/lib/es6/index.d.js.map +1 -0
- package/libs/card/lib/es6/index.js +2 -0
- package/libs/card/lib/es6/index.js.map +1 -0
- package/libs/card/lib/types/index.d.ts +22 -0
- package/libs/carousel/lib/cjs/Carousel.js +692 -0
- package/libs/carousel/lib/cjs/Carousel.js.map +1 -0
- package/libs/carousel/lib/cjs/Carousel.types.js +2 -0
- package/libs/carousel/lib/cjs/Carousel.types.js.map +1 -0
- package/libs/carousel/lib/cjs/index.js +14 -0
- package/libs/carousel/lib/cjs/index.js.map +1 -0
- package/libs/carousel/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/carousel/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/carousel/lib/cjs/translations/de.json +4 -0
- package/libs/carousel/lib/cjs/translations/en.json +4 -0
- package/libs/carousel/lib/cjs/translations/es.json +4 -0
- package/libs/carousel/lib/cjs/translations/fr.json +4 -0
- package/libs/carousel/lib/cjs/translations/it.json +4 -0
- package/libs/carousel/lib/cjs/translations/ja.json +4 -0
- package/libs/carousel/lib/cjs/translations/ko.json +4 -0
- package/libs/carousel/lib/cjs/translations/nl.json +4 -0
- package/libs/carousel/lib/cjs/translations/pl.json +4 -0
- package/libs/carousel/lib/cjs/translations/pt.json +4 -0
- package/libs/carousel/lib/cjs/translations/sv.json +4 -0
- package/libs/carousel/lib/cjs/translations/tr.json +4 -0
- package/libs/carousel/lib/cjs/translations/vi.json +4 -0
- package/libs/carousel/lib/cjs/translations/zh.json +4 -0
- package/libs/carousel/lib/es6/Carousel.js +693 -0
- package/libs/carousel/lib/es6/Carousel.js.map +1 -0
- package/libs/carousel/lib/es6/Carousel.types.js +2 -0
- package/libs/carousel/lib/es6/Carousel.types.js.map +1 -0
- package/libs/carousel/lib/es6/index.js +2 -0
- package/libs/carousel/lib/es6/index.js.map +1 -0
- package/libs/carousel/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/carousel/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/carousel/lib/es6/translations/de.json +4 -0
- package/libs/carousel/lib/es6/translations/en.json +4 -0
- package/libs/carousel/lib/es6/translations/es.json +4 -0
- package/libs/carousel/lib/es6/translations/fr.json +4 -0
- package/libs/carousel/lib/es6/translations/it.json +4 -0
- package/libs/carousel/lib/es6/translations/ja.json +4 -0
- package/libs/carousel/lib/es6/translations/ko.json +4 -0
- package/libs/carousel/lib/es6/translations/nl.json +4 -0
- package/libs/carousel/lib/es6/translations/pl.json +4 -0
- package/libs/carousel/lib/es6/translations/pt.json +4 -0
- package/libs/carousel/lib/es6/translations/sv.json +4 -0
- package/libs/carousel/lib/es6/translations/tr.json +4 -0
- package/libs/carousel/lib/es6/translations/vi.json +4 -0
- package/libs/carousel/lib/es6/translations/zh.json +4 -0
- package/libs/checkbox/lib/cjs/Checkbox.js +298 -0
- package/libs/checkbox/lib/cjs/Checkbox.js.map +1 -0
- package/libs/checkbox/lib/cjs/index.d.js +2 -0
- package/libs/checkbox/lib/cjs/index.d.js.map +1 -0
- package/libs/checkbox/lib/cjs/index.js +26 -0
- package/libs/checkbox/lib/cjs/index.js.map +1 -0
- package/libs/checkbox/lib/es6/Checkbox.js +289 -0
- package/libs/checkbox/lib/es6/Checkbox.js.map +1 -0
- package/libs/checkbox/lib/es6/index.d.js +2 -0
- package/libs/checkbox/lib/es6/index.d.js.map +1 -0
- package/libs/checkbox/lib/es6/index.js +3 -0
- package/libs/checkbox/lib/es6/index.js.map +1 -0
- package/libs/checkbox/lib/types/index.d.ts +106 -0
- package/libs/color-picker/lib/cjs/ColorPicker.js +250 -0
- package/libs/color-picker/lib/cjs/ColorPicker.js.map +1 -0
- package/libs/color-picker/lib/cjs/PaletteManager.js +166 -0
- package/libs/color-picker/lib/cjs/PaletteManager.js.map +1 -0
- package/libs/color-picker/lib/cjs/components/InputColor.js +190 -0
- package/libs/color-picker/lib/cjs/components/InputColor.js.map +1 -0
- package/libs/color-picker/lib/cjs/components/Item.js +61 -0
- package/libs/color-picker/lib/cjs/components/Item.js.map +1 -0
- package/libs/color-picker/lib/cjs/components/colors.js +59 -0
- package/libs/color-picker/lib/cjs/components/colors.js.map +1 -0
- package/libs/color-picker/lib/cjs/components/index.js +40 -0
- package/libs/color-picker/lib/cjs/components/index.js.map +1 -0
- package/libs/color-picker/lib/cjs/index.d.js +2 -0
- package/libs/color-picker/lib/cjs/index.d.js.map +1 -0
- package/libs/color-picker/lib/cjs/index.js +26 -0
- package/libs/color-picker/lib/cjs/index.js.map +1 -0
- package/libs/color-picker/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/color-picker/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/color-picker/lib/cjs/translations/de.json +13 -0
- package/libs/color-picker/lib/cjs/translations/en.json +13 -0
- package/libs/color-picker/lib/cjs/translations/es.json +13 -0
- package/libs/color-picker/lib/cjs/translations/fr.json +13 -0
- package/libs/color-picker/lib/cjs/translations/it.json +13 -0
- package/libs/color-picker/lib/cjs/translations/ja.json +13 -0
- package/libs/color-picker/lib/cjs/translations/ko.json +13 -0
- package/libs/color-picker/lib/cjs/translations/nl.json +13 -0
- package/libs/color-picker/lib/cjs/translations/pl.json +13 -0
- package/libs/color-picker/lib/cjs/translations/pt.json +13 -0
- package/libs/color-picker/lib/cjs/translations/sv.json +13 -0
- package/libs/color-picker/lib/cjs/translations/tr.json +13 -0
- package/libs/color-picker/lib/cjs/translations/vi.json +13 -0
- package/libs/color-picker/lib/cjs/translations/zh.json +13 -0
- package/libs/color-picker/lib/es6/ColorPicker.js +242 -0
- package/libs/color-picker/lib/es6/ColorPicker.js.map +1 -0
- package/libs/color-picker/lib/es6/PaletteManager.js +159 -0
- package/libs/color-picker/lib/es6/PaletteManager.js.map +1 -0
- package/libs/color-picker/lib/es6/components/InputColor.js +183 -0
- package/libs/color-picker/lib/es6/components/InputColor.js.map +1 -0
- package/libs/color-picker/lib/es6/components/Item.js +55 -0
- package/libs/color-picker/lib/es6/components/Item.js.map +1 -0
- package/libs/color-picker/lib/es6/components/colors.js +52 -0
- package/libs/color-picker/lib/es6/components/colors.js.map +1 -0
- package/libs/color-picker/lib/es6/components/index.js +4 -0
- package/libs/color-picker/lib/es6/components/index.js.map +1 -0
- package/libs/color-picker/lib/es6/index.d.js +2 -0
- package/libs/color-picker/lib/es6/index.d.js.map +1 -0
- package/libs/color-picker/lib/es6/index.js +3 -0
- package/libs/color-picker/lib/es6/index.js.map +1 -0
- package/libs/color-picker/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/color-picker/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/color-picker/lib/es6/translations/de.json +13 -0
- package/libs/color-picker/lib/es6/translations/en.json +13 -0
- package/libs/color-picker/lib/es6/translations/es.json +13 -0
- package/libs/color-picker/lib/es6/translations/fr.json +13 -0
- package/libs/color-picker/lib/es6/translations/it.json +13 -0
- package/libs/color-picker/lib/es6/translations/ja.json +13 -0
- package/libs/color-picker/lib/es6/translations/ko.json +13 -0
- package/libs/color-picker/lib/es6/translations/nl.json +13 -0
- package/libs/color-picker/lib/es6/translations/pl.json +13 -0
- package/libs/color-picker/lib/es6/translations/pt.json +13 -0
- package/libs/color-picker/lib/es6/translations/sv.json +13 -0
- package/libs/color-picker/lib/es6/translations/tr.json +13 -0
- package/libs/color-picker/lib/es6/translations/vi.json +13 -0
- package/libs/color-picker/lib/es6/translations/zh.json +13 -0
- package/libs/color-picker/lib/types/ColorPicker.d.ts +28 -0
- package/libs/color-picker/lib/types/PaletteManager.d.ts +253 -0
- package/libs/color-picker/lib/types/components/InputColor.d.ts +3 -0
- package/libs/color-picker/lib/types/components/Item.d.ts +18 -0
- package/libs/color-picker/lib/types/components/colors.d.ts +15 -0
- package/libs/color-picker/lib/types/components/index.d.ts +3 -0
- package/libs/color-picker/lib/types/translations/__intergalactic-dynamic-locales.d.ts +184 -0
- package/libs/core/lib/cjs/Component.js +54 -0
- package/libs/core/lib/cjs/Component.js.map +1 -0
- package/libs/core/lib/cjs/enhancement/Children.js +121 -0
- package/libs/core/lib/cjs/enhancement/Children.js.map +1 -0
- package/libs/core/lib/cjs/enhancement/Root.js +78 -0
- package/libs/core/lib/cjs/enhancement/Root.js.map +1 -0
- package/libs/core/lib/cjs/enhancement/bindHandler.js +54 -0
- package/libs/core/lib/cjs/enhancement/bindHandler.js.map +1 -0
- package/libs/core/lib/cjs/enhancement/dataName.js +20 -0
- package/libs/core/lib/cjs/enhancement/dataName.js.map +1 -0
- package/libs/core/lib/cjs/enhancement/enhance.js +22 -0
- package/libs/core/lib/cjs/enhancement/enhance.js.map +1 -0
- package/libs/core/lib/cjs/enhancement/functionDefaultProps.js +36 -0
- package/libs/core/lib/cjs/enhancement/functionDefaultProps.js.map +1 -0
- package/libs/core/lib/cjs/enhancement/hoistProps.js +102 -0
- package/libs/core/lib/cjs/enhancement/hoistProps.js.map +1 -0
- package/libs/core/lib/cjs/enhancement/i18n.js +28 -0
- package/libs/core/lib/cjs/enhancement/i18n.js.map +1 -0
- package/libs/core/lib/cjs/enhancement/inheritedName.js +24 -0
- package/libs/core/lib/cjs/enhancement/inheritedName.js.map +1 -0
- package/libs/core/lib/cjs/enhancement/staticChildren.js +141 -0
- package/libs/core/lib/cjs/enhancement/staticChildren.js.map +1 -0
- package/libs/core/lib/cjs/enhancement/style.js +60 -0
- package/libs/core/lib/cjs/enhancement/style.js.map +1 -0
- package/libs/core/lib/cjs/enhancement/uncontrolledProps.js +135 -0
- package/libs/core/lib/cjs/enhancement/uncontrolledProps.js.map +1 -0
- package/libs/core/lib/cjs/index.js +443 -0
- package/libs/core/lib/cjs/index.js.map +1 -0
- package/libs/core/lib/cjs/register.js +37 -0
- package/libs/core/lib/cjs/register.js.map +1 -0
- package/libs/core/lib/cjs/reshadow.d.js +2 -0
- package/libs/core/lib/cjs/reshadow.d.js.map +1 -0
- package/libs/core/lib/cjs/styled/index.js +54 -0
- package/libs/core/lib/cjs/styled/index.js.map +1 -0
- package/libs/core/lib/cjs/styled/sstyled.js +150 -0
- package/libs/core/lib/cjs/styled/sstyled.js.map +1 -0
- package/libs/core/lib/es6/Component.js +47 -0
- package/libs/core/lib/es6/Component.js.map +1 -0
- package/libs/core/lib/es6/enhancement/Children.js +112 -0
- package/libs/core/lib/es6/enhancement/Children.js.map +1 -0
- package/libs/core/lib/es6/enhancement/Root.js +72 -0
- package/libs/core/lib/es6/enhancement/Root.js.map +1 -0
- package/libs/core/lib/es6/enhancement/bindHandler.js +47 -0
- package/libs/core/lib/es6/enhancement/bindHandler.js.map +1 -0
- package/libs/core/lib/es6/enhancement/dataName.js +12 -0
- package/libs/core/lib/es6/enhancement/dataName.js.map +1 -0
- package/libs/core/lib/es6/enhancement/enhance.js +15 -0
- package/libs/core/lib/es6/enhancement/enhance.js.map +1 -0
- package/libs/core/lib/es6/enhancement/functionDefaultProps.js +29 -0
- package/libs/core/lib/es6/enhancement/functionDefaultProps.js.map +1 -0
- package/libs/core/lib/es6/enhancement/hoistProps.js +90 -0
- package/libs/core/lib/es6/enhancement/hoistProps.js.map +1 -0
- package/libs/core/lib/es6/enhancement/i18n.js +21 -0
- package/libs/core/lib/es6/enhancement/i18n.js.map +1 -0
- package/libs/core/lib/es6/enhancement/inheritedName.js +15 -0
- package/libs/core/lib/es6/enhancement/inheritedName.js.map +1 -0
- package/libs/core/lib/es6/enhancement/staticChildren.js +126 -0
- package/libs/core/lib/es6/enhancement/staticChildren.js.map +1 -0
- package/libs/core/lib/es6/enhancement/style.js +52 -0
- package/libs/core/lib/es6/enhancement/style.js.map +1 -0
- package/libs/core/lib/es6/enhancement/uncontrolledProps.js +125 -0
- package/libs/core/lib/es6/enhancement/uncontrolledProps.js.map +1 -0
- package/libs/core/lib/es6/index.js +357 -0
- package/libs/core/lib/es6/index.js.map +1 -0
- package/libs/core/lib/es6/register.js +29 -0
- package/libs/core/lib/es6/register.js.map +1 -0
- package/libs/core/lib/es6/reshadow.d.js +2 -0
- package/libs/core/lib/es6/reshadow.d.js.map +1 -0
- package/libs/core/lib/es6/styled/index.js +10 -0
- package/libs/core/lib/es6/styled/index.js.map +1 -0
- package/libs/core/lib/es6/styled/sstyled.js +143 -0
- package/libs/core/lib/es6/styled/sstyled.js.map +1 -0
- package/libs/core/lib/types/Component.d.ts +139 -0
- package/libs/core/lib/types/enhancement/Children.d.ts +6 -0
- package/libs/core/lib/types/enhancement/Root.d.ts +6 -0
- package/libs/core/lib/types/enhancement/bindHandler.d.ts +5 -0
- package/libs/core/lib/types/enhancement/dataName.d.ts +4 -0
- package/libs/core/lib/types/enhancement/enhance.d.ts +5 -0
- package/libs/core/lib/types/enhancement/functionDefaultProps.d.ts +8 -0
- package/libs/core/lib/types/enhancement/hoistProps.d.ts +10 -0
- package/libs/core/lib/types/enhancement/i18n.d.ts +4 -0
- package/libs/core/lib/types/enhancement/inheritedName.d.ts +8 -0
- package/libs/core/lib/types/enhancement/staticChildren.d.ts +13 -0
- package/libs/core/lib/types/enhancement/style.d.ts +9 -0
- package/libs/core/lib/types/enhancement/uncontrolledProps.d.ts +7 -0
- package/libs/core/lib/types/index.d.ts +41 -0
- package/libs/core/lib/types/register.d.ts +8 -0
- package/libs/core/lib/types/styled/index.d.ts +14 -0
- package/libs/core/lib/types/styled/sstyled.d.ts +17 -0
- package/libs/counter/lib/cjs/AnimatedNumber.js +76 -0
- package/libs/counter/lib/cjs/AnimatedNumber.js.map +1 -0
- package/libs/counter/lib/cjs/Counter.js +79 -0
- package/libs/counter/lib/cjs/Counter.js.map +1 -0
- package/libs/counter/lib/cjs/index.d.js +2 -0
- package/libs/counter/lib/cjs/index.d.js.map +1 -0
- package/libs/counter/lib/cjs/index.js +20 -0
- package/libs/counter/lib/cjs/index.js.map +1 -0
- package/libs/counter/lib/es6/AnimatedNumber.js +68 -0
- package/libs/counter/lib/es6/AnimatedNumber.js.map +1 -0
- package/libs/counter/lib/es6/Counter.js +60 -0
- package/libs/counter/lib/es6/Counter.js.map +1 -0
- package/libs/counter/lib/es6/index.d.js +2 -0
- package/libs/counter/lib/es6/index.d.js.map +1 -0
- package/libs/counter/lib/es6/index.js +2 -0
- package/libs/counter/lib/es6/index.js.map +1 -0
- package/libs/counter/lib/types/index.d.ts +32 -0
- package/libs/d3-chart/lib/cjs/Area.js +236 -0
- package/libs/d3-chart/lib/cjs/Area.js.map +1 -0
- package/libs/d3-chart/lib/cjs/Axis.js +468 -0
- package/libs/d3-chart/lib/cjs/Axis.js.map +1 -0
- package/libs/d3-chart/lib/cjs/Bar.js +221 -0
- package/libs/d3-chart/lib/cjs/Bar.js.map +1 -0
- package/libs/d3-chart/lib/cjs/Bubble.js +235 -0
- package/libs/d3-chart/lib/cjs/Bubble.js.map +1 -0
- package/libs/d3-chart/lib/cjs/ClipPath.js +94 -0
- package/libs/d3-chart/lib/cjs/ClipPath.js.map +1 -0
- package/libs/d3-chart/lib/cjs/Donut.js +490 -0
- package/libs/d3-chart/lib/cjs/Donut.js.map +1 -0
- package/libs/d3-chart/lib/cjs/Dots.js +116 -0
- package/libs/d3-chart/lib/cjs/Dots.js.map +1 -0
- package/libs/d3-chart/lib/cjs/GroupBar.js +111 -0
- package/libs/d3-chart/lib/cjs/GroupBar.js.map +1 -0
- package/libs/d3-chart/lib/cjs/HorizontalBar.js +200 -0
- package/libs/d3-chart/lib/cjs/HorizontalBar.js.map +1 -0
- package/libs/d3-chart/lib/cjs/Hover.js +252 -0
- package/libs/d3-chart/lib/cjs/Hover.js.map +1 -0
- package/libs/d3-chart/lib/cjs/Line.js +231 -0
- package/libs/d3-chart/lib/cjs/Line.js.map +1 -0
- package/libs/d3-chart/lib/cjs/Plot.js +155 -0
- package/libs/d3-chart/lib/cjs/Plot.js.map +1 -0
- package/libs/d3-chart/lib/cjs/Radar.js +817 -0
- package/libs/d3-chart/lib/cjs/Radar.js.map +1 -0
- package/libs/d3-chart/lib/cjs/RadialTree.js +663 -0
- package/libs/d3-chart/lib/cjs/RadialTree.js.map +1 -0
- package/libs/d3-chart/lib/cjs/ReferenceLine.js +239 -0
- package/libs/d3-chart/lib/cjs/ReferenceLine.js.map +1 -0
- package/libs/d3-chart/lib/cjs/ResponsiveContainer.js +116 -0
- package/libs/d3-chart/lib/cjs/ResponsiveContainer.js.map +1 -0
- package/libs/d3-chart/lib/cjs/ScatterPlot.js +205 -0
- package/libs/d3-chart/lib/cjs/ScatterPlot.js.map +1 -0
- package/libs/d3-chart/lib/cjs/StackBar.js +197 -0
- package/libs/d3-chart/lib/cjs/StackBar.js.map +1 -0
- package/libs/d3-chart/lib/cjs/StackedArea.js +94 -0
- package/libs/d3-chart/lib/cjs/StackedArea.js.map +1 -0
- package/libs/d3-chart/lib/cjs/Tooltip.js +233 -0
- package/libs/d3-chart/lib/cjs/Tooltip.js.map +1 -0
- package/libs/d3-chart/lib/cjs/Venn.js +240 -0
- package/libs/d3-chart/lib/cjs/Venn.js.map +1 -0
- package/libs/d3-chart/lib/cjs/a11y/PlotA11yModule.js +133 -0
- package/libs/d3-chart/lib/cjs/a11y/PlotA11yModule.js.map +1 -0
- package/libs/d3-chart/lib/cjs/a11y/PlotA11yView.js +229 -0
- package/libs/d3-chart/lib/cjs/a11y/PlotA11yView.js.map +1 -0
- package/libs/d3-chart/lib/cjs/a11y/bezier.js +37 -0
- package/libs/d3-chart/lib/cjs/a11y/bezier.js.map +1 -0
- package/libs/d3-chart/lib/cjs/a11y/focus.js +45 -0
- package/libs/d3-chart/lib/cjs/a11y/focus.js.map +1 -0
- package/libs/d3-chart/lib/cjs/a11y/hints.js +128 -0
- package/libs/d3-chart/lib/cjs/a11y/hints.js.map +1 -0
- package/libs/d3-chart/lib/cjs/a11y/insights.js +722 -0
- package/libs/d3-chart/lib/cjs/a11y/insights.js.map +1 -0
- package/libs/d3-chart/lib/cjs/a11y/intl.js +22 -0
- package/libs/d3-chart/lib/cjs/a11y/intl.js.map +1 -0
- package/libs/d3-chart/lib/cjs/a11y/locale.js +49 -0
- package/libs/d3-chart/lib/cjs/a11y/locale.js.map +1 -0
- package/libs/d3-chart/lib/cjs/a11y/serialize.js +381 -0
- package/libs/d3-chart/lib/cjs/a11y/serialize.js.map +1 -0
- package/libs/d3-chart/lib/cjs/a11y/summarize.js +19 -0
- package/libs/d3-chart/lib/cjs/a11y/summarize.js.map +1 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/module/__intergalactic-dynamic-locales.js +39 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/module/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/module/de.json +5 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/module/en.json +5 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/module/es.json +5 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/module/fr.json +5 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/module/it.json +5 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/module/ja.json +5 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/module/ko.json +5 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/module/nl.json +5 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/module/pl.json +5 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/module/pt.json +5 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/module/sv.json +5 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/module/tr.json +5 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/module/vi.json +5 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/module/zh.json +5 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/view/__intergalactic-dynamic-locales.js +39 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/view/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/view/de.json +43 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/view/en.csv +42 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/view/en.json +43 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/view/es.json +43 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/view/fr.json +43 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/view/it.json +43 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/view/ja.json +43 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/view/ko.json +43 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/view/nl.json +43 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/view/pl.json +43 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/view/pt.json +43 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/view/sv.json +43 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/view/tr.json +43 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/view/vi.json +43 -0
- package/libs/d3-chart/lib/cjs/a11y/translations/view/zh.json +43 -0
- package/libs/d3-chart/lib/cjs/color.js +133 -0
- package/libs/d3-chart/lib/cjs/color.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/AbstractChart.js +420 -0
- package/libs/d3-chart/lib/cjs/component/Chart/AbstractChart.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/AbstractChart.type.js +2 -0
- package/libs/d3-chart/lib/cjs/component/Chart/AbstractChart.type.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/AreaChart.js +160 -0
- package/libs/d3-chart/lib/cjs/component/Chart/AreaChart.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/AreaChart.type.js +2 -0
- package/libs/d3-chart/lib/cjs/component/Chart/AreaChart.type.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/BarChart.js +253 -0
- package/libs/d3-chart/lib/cjs/component/Chart/BarChart.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/BarChart.type.js +2 -0
- package/libs/d3-chart/lib/cjs/component/Chart/BarChart.type.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/BubbleChart.js +145 -0
- package/libs/d3-chart/lib/cjs/component/Chart/BubbleChart.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/BubbleChart.type.js +2 -0
- package/libs/d3-chart/lib/cjs/component/Chart/BubbleChart.type.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/DonutChart.js +117 -0
- package/libs/d3-chart/lib/cjs/component/Chart/DonutChart.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/DonutChart.type.js +2 -0
- package/libs/d3-chart/lib/cjs/component/Chart/DonutChart.type.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/HistogramChart.js +189 -0
- package/libs/d3-chart/lib/cjs/component/Chart/HistogramChart.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/HistogramChart.type.js +2 -0
- package/libs/d3-chart/lib/cjs/component/Chart/HistogramChart.type.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/LineChart.js +147 -0
- package/libs/d3-chart/lib/cjs/component/Chart/LineChart.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/LineChart.type.js +2 -0
- package/libs/d3-chart/lib/cjs/component/Chart/LineChart.type.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/RadarChart.js +121 -0
- package/libs/d3-chart/lib/cjs/component/Chart/RadarChart.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/RadarChart.type.js +2 -0
- package/libs/d3-chart/lib/cjs/component/Chart/RadarChart.type.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/ScatterPlotChart.js +159 -0
- package/libs/d3-chart/lib/cjs/component/Chart/ScatterPlotChart.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/ScatterPlotChart.type.js +2 -0
- package/libs/d3-chart/lib/cjs/component/Chart/ScatterPlotChart.type.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/VennChart.js +144 -0
- package/libs/d3-chart/lib/cjs/component/Chart/VennChart.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/VennChart.type.js +2 -0
- package/libs/d3-chart/lib/cjs/component/Chart/VennChart.type.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/Chart/index.js +28 -0
- package/libs/d3-chart/lib/cjs/component/Chart/index.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/ChartLegend/BaseLegend.js +108 -0
- package/libs/d3-chart/lib/cjs/component/ChartLegend/BaseLegend.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/ChartLegend/BaseLegend.type.js +2 -0
- package/libs/d3-chart/lib/cjs/component/ChartLegend/BaseLegend.type.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendFlex/LegendFlex.js +93 -0
- package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendFlex/LegendFlex.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendFlex/LegendFlex.type.js +2 -0
- package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendFlex/LegendFlex.type.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendItem/LegendItem.js +233 -0
- package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendItem/LegendItem.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendItem/LegendItem.type.js +13 -0
- package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendItem/LegendItem.type.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendTable/LegendTable.js +99 -0
- package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendTable/LegendTable.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendTable/LegendTable.type.js +2 -0
- package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendTable/LegendTable.type.js.map +1 -0
- package/libs/d3-chart/lib/cjs/component/ChartLegend/index.js +23 -0
- package/libs/d3-chart/lib/cjs/component/ChartLegend/index.js.map +1 -0
- package/libs/d3-chart/lib/cjs/createElement.d.js +2 -0
- package/libs/d3-chart/lib/cjs/createElement.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/createElement.js +128 -0
- package/libs/d3-chart/lib/cjs/createElement.js.map +1 -0
- package/libs/d3-chart/lib/cjs/index.js +206 -0
- package/libs/d3-chart/lib/cjs/index.js.map +1 -0
- package/libs/d3-chart/lib/cjs/style/var.css +125 -0
- package/libs/d3-chart/lib/cjs/translations/__intergalactic-dynamic-locales.js +37 -0
- package/libs/d3-chart/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/d3-chart/lib/cjs/translations/de.json +3 -0
- package/libs/d3-chart/lib/cjs/translations/en.json +3 -0
- package/libs/d3-chart/lib/cjs/translations/es.json +3 -0
- package/libs/d3-chart/lib/cjs/translations/fr.json +3 -0
- package/libs/d3-chart/lib/cjs/translations/it.json +3 -0
- package/libs/d3-chart/lib/cjs/translations/ja.json +3 -0
- package/libs/d3-chart/lib/cjs/translations/ko.json +3 -0
- package/libs/d3-chart/lib/cjs/translations/nl.json +3 -0
- package/libs/d3-chart/lib/cjs/translations/pl.json +3 -0
- package/libs/d3-chart/lib/cjs/translations/pt.json +3 -0
- package/libs/d3-chart/lib/cjs/translations/sv.json +3 -0
- package/libs/d3-chart/lib/cjs/translations/tr.json +3 -0
- package/libs/d3-chart/lib/cjs/translations/vi.json +3 -0
- package/libs/d3-chart/lib/cjs/translations/zh.json +3 -0
- package/libs/d3-chart/lib/cjs/types/Area.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/Area.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/Axis.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/Axis.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/Bar.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/Bar.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/Bubble.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/Bubble.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/ClipPath.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/ClipPath.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/Donut.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/Donut.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/GroupBar.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/GroupBar.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/HorizontalBar.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/HorizontalBar.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/Hover.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/Hover.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/Line.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/Line.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/Plot.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/Plot.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/Radar.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/Radar.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/ReferenceLine.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/ReferenceLine.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/ResponsiveContainer.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/ResponsiveContainer.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/ScatterPlot.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/ScatterPlot.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/StackBar.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/StackBar.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/StackedArea.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/StackedArea.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/Tooltip.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/Tooltip.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/Venn.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/Venn.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/context.d.js +2 -0
- package/libs/d3-chart/lib/cjs/types/context.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/types/index.d.js +544 -0
- package/libs/d3-chart/lib/cjs/types/index.d.js.map +1 -0
- package/libs/d3-chart/lib/cjs/utils.js +211 -0
- package/libs/d3-chart/lib/cjs/utils.js.map +1 -0
- package/libs/d3-chart/lib/es6/Area.js +229 -0
- package/libs/d3-chart/lib/es6/Area.js.map +1 -0
- package/libs/d3-chart/lib/es6/Axis.js +461 -0
- package/libs/d3-chart/lib/es6/Axis.js.map +1 -0
- package/libs/d3-chart/lib/es6/Bar.js +213 -0
- package/libs/d3-chart/lib/es6/Bar.js.map +1 -0
- package/libs/d3-chart/lib/es6/Bubble.js +229 -0
- package/libs/d3-chart/lib/es6/Bubble.js.map +1 -0
- package/libs/d3-chart/lib/es6/ClipPath.js +85 -0
- package/libs/d3-chart/lib/es6/ClipPath.js.map +1 -0
- package/libs/d3-chart/lib/es6/Donut.js +484 -0
- package/libs/d3-chart/lib/es6/Donut.js.map +1 -0
- package/libs/d3-chart/lib/es6/Dots.js +109 -0
- package/libs/d3-chart/lib/es6/Dots.js.map +1 -0
- package/libs/d3-chart/lib/es6/GroupBar.js +103 -0
- package/libs/d3-chart/lib/es6/GroupBar.js.map +1 -0
- package/libs/d3-chart/lib/es6/HorizontalBar.js +192 -0
- package/libs/d3-chart/lib/es6/HorizontalBar.js.map +1 -0
- package/libs/d3-chart/lib/es6/Hover.js +247 -0
- package/libs/d3-chart/lib/es6/Hover.js.map +1 -0
- package/libs/d3-chart/lib/es6/Line.js +223 -0
- package/libs/d3-chart/lib/es6/Line.js.map +1 -0
- package/libs/d3-chart/lib/es6/Plot.js +148 -0
- package/libs/d3-chart/lib/es6/Plot.js.map +1 -0
- package/libs/d3-chart/lib/es6/Radar.js +809 -0
- package/libs/d3-chart/lib/es6/Radar.js.map +1 -0
- package/libs/d3-chart/lib/es6/RadialTree.js +656 -0
- package/libs/d3-chart/lib/es6/RadialTree.js.map +1 -0
- package/libs/d3-chart/lib/es6/ReferenceLine.js +232 -0
- package/libs/d3-chart/lib/es6/ReferenceLine.js.map +1 -0
- package/libs/d3-chart/lib/es6/ResponsiveContainer.js +108 -0
- package/libs/d3-chart/lib/es6/ResponsiveContainer.js.map +1 -0
- package/libs/d3-chart/lib/es6/ScatterPlot.js +199 -0
- package/libs/d3-chart/lib/es6/ScatterPlot.js.map +1 -0
- package/libs/d3-chart/lib/es6/StackBar.js +188 -0
- package/libs/d3-chart/lib/es6/StackBar.js.map +1 -0
- package/libs/d3-chart/lib/es6/StackedArea.js +86 -0
- package/libs/d3-chart/lib/es6/StackedArea.js.map +1 -0
- package/libs/d3-chart/lib/es6/Tooltip.js +230 -0
- package/libs/d3-chart/lib/es6/Tooltip.js.map +1 -0
- package/libs/d3-chart/lib/es6/Venn.js +234 -0
- package/libs/d3-chart/lib/es6/Venn.js.map +1 -0
- package/libs/d3-chart/lib/es6/a11y/PlotA11yModule.js +126 -0
- package/libs/d3-chart/lib/es6/a11y/PlotA11yModule.js.map +1 -0
- package/libs/d3-chart/lib/es6/a11y/PlotA11yView.js +223 -0
- package/libs/d3-chart/lib/es6/a11y/PlotA11yView.js.map +1 -0
- package/libs/d3-chart/lib/es6/a11y/bezier.js +30 -0
- package/libs/d3-chart/lib/es6/a11y/bezier.js.map +1 -0
- package/libs/d3-chart/lib/es6/a11y/focus.js +38 -0
- package/libs/d3-chart/lib/es6/a11y/focus.js.map +1 -0
- package/libs/d3-chart/lib/es6/a11y/hints.js +118 -0
- package/libs/d3-chart/lib/es6/a11y/hints.js.map +1 -0
- package/libs/d3-chart/lib/es6/a11y/insights.js +714 -0
- package/libs/d3-chart/lib/es6/a11y/insights.js.map +1 -0
- package/libs/d3-chart/lib/es6/a11y/intl.js +15 -0
- package/libs/d3-chart/lib/es6/a11y/intl.js.map +1 -0
- package/libs/d3-chart/lib/es6/a11y/locale.js +41 -0
- package/libs/d3-chart/lib/es6/a11y/locale.js.map +1 -0
- package/libs/d3-chart/lib/es6/a11y/serialize.js +372 -0
- package/libs/d3-chart/lib/es6/a11y/serialize.js.map +1 -0
- package/libs/d3-chart/lib/es6/a11y/summarize.js +12 -0
- package/libs/d3-chart/lib/es6/a11y/summarize.js.map +1 -0
- package/libs/d3-chart/lib/es6/a11y/translations/module/__intergalactic-dynamic-locales.js +31 -0
- package/libs/d3-chart/lib/es6/a11y/translations/module/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/d3-chart/lib/es6/a11y/translations/module/de.json +5 -0
- package/libs/d3-chart/lib/es6/a11y/translations/module/en.json +5 -0
- package/libs/d3-chart/lib/es6/a11y/translations/module/es.json +5 -0
- package/libs/d3-chart/lib/es6/a11y/translations/module/fr.json +5 -0
- package/libs/d3-chart/lib/es6/a11y/translations/module/it.json +5 -0
- package/libs/d3-chart/lib/es6/a11y/translations/module/ja.json +5 -0
- package/libs/d3-chart/lib/es6/a11y/translations/module/ko.json +5 -0
- package/libs/d3-chart/lib/es6/a11y/translations/module/nl.json +5 -0
- package/libs/d3-chart/lib/es6/a11y/translations/module/pl.json +5 -0
- package/libs/d3-chart/lib/es6/a11y/translations/module/pt.json +5 -0
- package/libs/d3-chart/lib/es6/a11y/translations/module/sv.json +5 -0
- package/libs/d3-chart/lib/es6/a11y/translations/module/tr.json +5 -0
- package/libs/d3-chart/lib/es6/a11y/translations/module/vi.json +5 -0
- package/libs/d3-chart/lib/es6/a11y/translations/module/zh.json +5 -0
- package/libs/d3-chart/lib/es6/a11y/translations/view/__intergalactic-dynamic-locales.js +31 -0
- package/libs/d3-chart/lib/es6/a11y/translations/view/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/d3-chart/lib/es6/a11y/translations/view/de.json +43 -0
- package/libs/d3-chart/lib/es6/a11y/translations/view/en.csv +42 -0
- package/libs/d3-chart/lib/es6/a11y/translations/view/en.json +43 -0
- package/libs/d3-chart/lib/es6/a11y/translations/view/es.json +43 -0
- package/libs/d3-chart/lib/es6/a11y/translations/view/fr.json +43 -0
- package/libs/d3-chart/lib/es6/a11y/translations/view/it.json +43 -0
- package/libs/d3-chart/lib/es6/a11y/translations/view/ja.json +43 -0
- package/libs/d3-chart/lib/es6/a11y/translations/view/ko.json +43 -0
- package/libs/d3-chart/lib/es6/a11y/translations/view/nl.json +43 -0
- package/libs/d3-chart/lib/es6/a11y/translations/view/pl.json +43 -0
- package/libs/d3-chart/lib/es6/a11y/translations/view/pt.json +43 -0
- package/libs/d3-chart/lib/es6/a11y/translations/view/sv.json +43 -0
- package/libs/d3-chart/lib/es6/a11y/translations/view/tr.json +43 -0
- package/libs/d3-chart/lib/es6/a11y/translations/view/vi.json +43 -0
- package/libs/d3-chart/lib/es6/a11y/translations/view/zh.json +43 -0
- package/libs/d3-chart/lib/es6/color.js +127 -0
- package/libs/d3-chart/lib/es6/color.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/AbstractChart.js +412 -0
- package/libs/d3-chart/lib/es6/component/Chart/AbstractChart.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/AbstractChart.type.js +2 -0
- package/libs/d3-chart/lib/es6/component/Chart/AbstractChart.type.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/AreaChart.js +152 -0
- package/libs/d3-chart/lib/es6/component/Chart/AreaChart.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/AreaChart.type.js +2 -0
- package/libs/d3-chart/lib/es6/component/Chart/AreaChart.type.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/BarChart.js +245 -0
- package/libs/d3-chart/lib/es6/component/Chart/BarChart.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/BarChart.type.js +2 -0
- package/libs/d3-chart/lib/es6/component/Chart/BarChart.type.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/BubbleChart.js +137 -0
- package/libs/d3-chart/lib/es6/component/Chart/BubbleChart.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/BubbleChart.type.js +2 -0
- package/libs/d3-chart/lib/es6/component/Chart/BubbleChart.type.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/DonutChart.js +109 -0
- package/libs/d3-chart/lib/es6/component/Chart/DonutChart.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/DonutChart.type.js +2 -0
- package/libs/d3-chart/lib/es6/component/Chart/DonutChart.type.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/HistogramChart.js +181 -0
- package/libs/d3-chart/lib/es6/component/Chart/HistogramChart.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/HistogramChart.type.js +2 -0
- package/libs/d3-chart/lib/es6/component/Chart/HistogramChart.type.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/LineChart.js +139 -0
- package/libs/d3-chart/lib/es6/component/Chart/LineChart.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/LineChart.type.js +2 -0
- package/libs/d3-chart/lib/es6/component/Chart/LineChart.type.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/RadarChart.js +113 -0
- package/libs/d3-chart/lib/es6/component/Chart/RadarChart.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/RadarChart.type.js +2 -0
- package/libs/d3-chart/lib/es6/component/Chart/RadarChart.type.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/ScatterPlotChart.js +151 -0
- package/libs/d3-chart/lib/es6/component/Chart/ScatterPlotChart.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/ScatterPlotChart.type.js +2 -0
- package/libs/d3-chart/lib/es6/component/Chart/ScatterPlotChart.type.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/VennChart.js +136 -0
- package/libs/d3-chart/lib/es6/component/Chart/VennChart.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/VennChart.type.js +2 -0
- package/libs/d3-chart/lib/es6/component/Chart/VennChart.type.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/Chart/index.js +21 -0
- package/libs/d3-chart/lib/es6/component/Chart/index.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/ChartLegend/BaseLegend.js +100 -0
- package/libs/d3-chart/lib/es6/component/ChartLegend/BaseLegend.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/ChartLegend/BaseLegend.type.js +2 -0
- package/libs/d3-chart/lib/es6/component/ChartLegend/BaseLegend.type.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/ChartLegend/LegendFlex/LegendFlex.js +86 -0
- package/libs/d3-chart/lib/es6/component/ChartLegend/LegendFlex/LegendFlex.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/ChartLegend/LegendFlex/LegendFlex.type.js +2 -0
- package/libs/d3-chart/lib/es6/component/ChartLegend/LegendFlex/LegendFlex.type.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/ChartLegend/LegendItem/LegendItem.js +231 -0
- package/libs/d3-chart/lib/es6/component/ChartLegend/LegendItem/LegendItem.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/ChartLegend/LegendItem/LegendItem.type.js +6 -0
- package/libs/d3-chart/lib/es6/component/ChartLegend/LegendItem/LegendItem.type.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/ChartLegend/LegendTable/LegendTable.js +93 -0
- package/libs/d3-chart/lib/es6/component/ChartLegend/LegendTable/LegendTable.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/ChartLegend/LegendTable/LegendTable.type.js +2 -0
- package/libs/d3-chart/lib/es6/component/ChartLegend/LegendTable/LegendTable.type.js.map +1 -0
- package/libs/d3-chart/lib/es6/component/ChartLegend/index.js +5 -0
- package/libs/d3-chart/lib/es6/component/ChartLegend/index.js.map +1 -0
- package/libs/d3-chart/lib/es6/createElement.d.js +2 -0
- package/libs/d3-chart/lib/es6/createElement.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/createElement.js +119 -0
- package/libs/d3-chart/lib/es6/createElement.js.map +1 -0
- package/libs/d3-chart/lib/es6/index.js +25 -0
- package/libs/d3-chart/lib/es6/index.js.map +1 -0
- package/libs/d3-chart/lib/es6/style/var.css +125 -0
- package/libs/d3-chart/lib/es6/translations/__intergalactic-dynamic-locales.js +29 -0
- package/libs/d3-chart/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/d3-chart/lib/es6/translations/de.json +3 -0
- package/libs/d3-chart/lib/es6/translations/en.json +3 -0
- package/libs/d3-chart/lib/es6/translations/es.json +3 -0
- package/libs/d3-chart/lib/es6/translations/fr.json +3 -0
- package/libs/d3-chart/lib/es6/translations/it.json +3 -0
- package/libs/d3-chart/lib/es6/translations/ja.json +3 -0
- package/libs/d3-chart/lib/es6/translations/ko.json +3 -0
- package/libs/d3-chart/lib/es6/translations/nl.json +3 -0
- package/libs/d3-chart/lib/es6/translations/pl.json +3 -0
- package/libs/d3-chart/lib/es6/translations/pt.json +3 -0
- package/libs/d3-chart/lib/es6/translations/sv.json +3 -0
- package/libs/d3-chart/lib/es6/translations/tr.json +3 -0
- package/libs/d3-chart/lib/es6/translations/vi.json +3 -0
- package/libs/d3-chart/lib/es6/translations/zh.json +3 -0
- package/libs/d3-chart/lib/es6/types/Area.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/Area.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/Axis.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/Axis.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/Bar.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/Bar.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/Bubble.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/Bubble.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/ClipPath.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/ClipPath.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/Donut.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/Donut.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/GroupBar.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/GroupBar.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/HorizontalBar.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/HorizontalBar.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/Hover.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/Hover.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/Line.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/Line.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/Plot.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/Plot.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/Radar.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/Radar.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/ReferenceLine.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/ReferenceLine.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/ResponsiveContainer.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/ResponsiveContainer.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/ScatterPlot.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/ScatterPlot.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/StackBar.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/StackBar.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/StackedArea.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/StackedArea.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/Tooltip.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/Tooltip.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/Venn.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/Venn.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/context.d.js +2 -0
- package/libs/d3-chart/lib/es6/types/context.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/types/index.d.js +75 -0
- package/libs/d3-chart/lib/es6/types/index.d.js.map +1 -0
- package/libs/d3-chart/lib/es6/utils.js +189 -0
- package/libs/d3-chart/lib/es6/utils.js.map +1 -0
- package/libs/d3-chart/lib/types/Area.d.ts +61 -0
- package/libs/d3-chart/lib/types/Axis.d.ts +90 -0
- package/libs/d3-chart/lib/types/Bar.d.ts +80 -0
- package/libs/d3-chart/lib/types/Bubble.d.ts +53 -0
- package/libs/d3-chart/lib/types/ClipPath.d.ts +24 -0
- package/libs/d3-chart/lib/types/Donut.d.ts +67 -0
- package/libs/d3-chart/lib/types/GroupBar.d.ts +29 -0
- package/libs/d3-chart/lib/types/HorizontalBar.d.ts +35 -0
- package/libs/d3-chart/lib/types/Hover.d.ts +45 -0
- package/libs/d3-chart/lib/types/Line.d.ts +83 -0
- package/libs/d3-chart/lib/types/Plot.d.ts +118 -0
- package/libs/d3-chart/lib/types/Radar.d.ts +145 -0
- package/libs/d3-chart/lib/types/RadialTree.d.ts +240 -0
- package/libs/d3-chart/lib/types/ReferenceLine.d.ts +45 -0
- package/libs/d3-chart/lib/types/ResponsiveContainer.d.ts +29 -0
- package/libs/d3-chart/lib/types/ScatterPlot.d.ts +46 -0
- package/libs/d3-chart/lib/types/StackBar.d.ts +37 -0
- package/libs/d3-chart/lib/types/StackedArea.d.ts +31 -0
- package/libs/d3-chart/lib/types/Tooltip.d.ts +66 -0
- package/libs/d3-chart/lib/types/Venn.d.ts +68 -0
- package/libs/d3-chart/lib/types/a11y/PlotA11yModule.d.ts +12 -0
- package/libs/d3-chart/lib/types/a11y/PlotA11yView.d.ts +3 -0
- package/libs/d3-chart/lib/types/a11y/bezier.d.ts +8 -0
- package/libs/d3-chart/lib/types/a11y/focus.d.ts +5 -0
- package/libs/d3-chart/lib/types/a11y/hints.d.ts +79 -0
- package/libs/d3-chart/lib/types/a11y/insights.d.ts +55 -0
- package/libs/d3-chart/lib/types/a11y/intl.d.ts +8 -0
- package/libs/d3-chart/lib/types/a11y/locale.d.ts +3 -0
- package/libs/d3-chart/lib/types/a11y/serialize.d.ts +17 -0
- package/libs/d3-chart/lib/types/a11y/summarize.d.ts +6 -0
- package/libs/d3-chart/lib/types/a11y/translations/module/__intergalactic-dynamic-locales.d.ts +72 -0
- package/libs/d3-chart/lib/types/a11y/translations/view/__intergalactic-dynamic-locales.d.ts +604 -0
- package/libs/d3-chart/lib/types/component/Chart/AbstractChart.d.ts +50 -0
- package/libs/d3-chart/lib/types/component/Chart/AbstractChart.type.d.ts +161 -0
- package/libs/d3-chart/lib/types/component/Chart/AreaChart.d.ts +2 -0
- package/libs/d3-chart/lib/types/component/Chart/AreaChart.type.d.ts +16 -0
- package/libs/d3-chart/lib/types/component/Chart/BarChart.d.ts +2 -0
- package/libs/d3-chart/lib/types/component/Chart/BarChart.type.d.ts +19 -0
- package/libs/d3-chart/lib/types/component/Chart/BubbleChart.d.ts +2 -0
- package/libs/d3-chart/lib/types/component/Chart/BubbleChart.type.d.ts +17 -0
- package/libs/d3-chart/lib/types/component/Chart/DonutChart.d.ts +2 -0
- package/libs/d3-chart/lib/types/component/Chart/DonutChart.type.d.ts +15 -0
- package/libs/d3-chart/lib/types/component/Chart/HistogramChart.d.ts +2 -0
- package/libs/d3-chart/lib/types/component/Chart/HistogramChart.type.d.ts +11 -0
- package/libs/d3-chart/lib/types/component/Chart/LineChart.d.ts +2 -0
- package/libs/d3-chart/lib/types/component/Chart/LineChart.type.d.ts +24 -0
- package/libs/d3-chart/lib/types/component/Chart/RadarChart.d.ts +2 -0
- package/libs/d3-chart/lib/types/component/Chart/RadarChart.type.d.ts +14 -0
- package/libs/d3-chart/lib/types/component/Chart/ScatterPlotChart.d.ts +2 -0
- package/libs/d3-chart/lib/types/component/Chart/ScatterPlotChart.type.d.ts +13 -0
- package/libs/d3-chart/lib/types/component/Chart/VennChart.d.ts +2 -0
- package/libs/d3-chart/lib/types/component/Chart/VennChart.type.d.ts +11 -0
- package/libs/d3-chart/lib/types/component/Chart/index.d.ts +12 -0
- package/libs/d3-chart/lib/types/component/ChartLegend/BaseLegend.d.ts +14 -0
- package/libs/d3-chart/lib/types/component/ChartLegend/BaseLegend.type.d.ts +27 -0
- package/libs/d3-chart/lib/types/component/ChartLegend/LegendFlex/LegendFlex.d.ts +2 -0
- package/libs/d3-chart/lib/types/component/ChartLegend/LegendFlex/LegendFlex.type.d.ts +38 -0
- package/libs/d3-chart/lib/types/component/ChartLegend/LegendItem/LegendItem.d.ts +2 -0
- package/libs/d3-chart/lib/types/component/ChartLegend/LegendItem/LegendItem.type.d.ts +67 -0
- package/libs/d3-chart/lib/types/component/ChartLegend/LegendTable/LegendTable.d.ts +2 -0
- package/libs/d3-chart/lib/types/component/ChartLegend/LegendTable/LegendTable.type.d.ts +21 -0
- package/libs/d3-chart/lib/types/component/ChartLegend/index.d.ts +4 -0
- package/libs/d3-chart/lib/types/context.d.ts +18 -0
- package/libs/d3-chart/lib/types/createElement.d.ts +2 -0
- package/libs/d3-chart/lib/types/index.d.ts +94 -0
- package/libs/d3-chart/lib/types/translations/__intergalactic-dynamic-locales.d.ts +41 -0
- package/libs/d3-chart/lib/types/utils.d.ts +32 -0
- package/libs/data-table/lib/cjs/Body.js +386 -0
- package/libs/data-table/lib/cjs/Body.js.map +1 -0
- package/libs/data-table/lib/cjs/DataTable.js +429 -0
- package/libs/data-table/lib/cjs/DataTable.js.map +1 -0
- package/libs/data-table/lib/cjs/Head.js +189 -0
- package/libs/data-table/lib/cjs/Head.js.map +1 -0
- package/libs/data-table/lib/cjs/index.js +26 -0
- package/libs/data-table/lib/cjs/index.js.map +1 -0
- package/libs/data-table/lib/cjs/types.js +4 -0
- package/libs/data-table/lib/cjs/types.js.map +1 -0
- package/libs/data-table/lib/cjs/utils.js +57 -0
- package/libs/data-table/lib/cjs/utils.js.map +1 -0
- package/libs/data-table/lib/es6/Body.js +379 -0
- package/libs/data-table/lib/es6/Body.js.map +1 -0
- package/libs/data-table/lib/es6/DataTable.js +422 -0
- package/libs/data-table/lib/es6/DataTable.js.map +1 -0
- package/libs/data-table/lib/es6/Head.js +183 -0
- package/libs/data-table/lib/es6/Head.js.map +1 -0
- package/libs/data-table/lib/es6/index.js +3 -0
- package/libs/data-table/lib/es6/index.js.map +1 -0
- package/libs/data-table/lib/es6/types.js +2 -0
- package/libs/data-table/lib/es6/types.js.map +1 -0
- package/libs/data-table/lib/es6/utils.js +48 -0
- package/libs/data-table/lib/es6/utils.js.map +1 -0
- package/libs/data-table/lib/types/Body.d.ts +46 -0
- package/libs/data-table/lib/types/DataTable.d.ts +157 -0
- package/libs/data-table/lib/types/Head.d.ts +25 -0
- package/libs/data-table/lib/types/index.d.ts +2 -0
- package/libs/data-table/lib/types/types.d.ts +71 -0
- package/libs/data-table/lib/types/utils.d.ts +4 -0
- package/libs/date-picker/lib/cjs/DatePicker.js +183 -0
- package/libs/date-picker/lib/cjs/DatePicker.js.map +1 -0
- package/libs/date-picker/lib/cjs/DateRangeComparator.js +188 -0
- package/libs/date-picker/lib/cjs/DateRangeComparator.js.map +1 -0
- package/libs/date-picker/lib/cjs/DateRangePicker.js +133 -0
- package/libs/date-picker/lib/cjs/DateRangePicker.js.map +1 -0
- package/libs/date-picker/lib/cjs/MonthDateRangeComparator.js +223 -0
- package/libs/date-picker/lib/cjs/MonthDateRangeComparator.js.map +1 -0
- package/libs/date-picker/lib/cjs/MonthPicker.js +122 -0
- package/libs/date-picker/lib/cjs/MonthPicker.js.map +1 -0
- package/libs/date-picker/lib/cjs/MonthRangePicker.js +147 -0
- package/libs/date-picker/lib/cjs/MonthRangePicker.js.map +1 -0
- package/libs/date-picker/lib/cjs/components/ButtonTrigger.js +32 -0
- package/libs/date-picker/lib/cjs/components/ButtonTrigger.js.map +1 -0
- package/libs/date-picker/lib/cjs/components/Calendar.js +413 -0
- package/libs/date-picker/lib/cjs/components/Calendar.js.map +1 -0
- package/libs/date-picker/lib/cjs/components/DateRangeComparatorAbstract.js +584 -0
- package/libs/date-picker/lib/cjs/components/DateRangeComparatorAbstract.js.map +1 -0
- package/libs/date-picker/lib/cjs/components/InputTrigger.js +665 -0
- package/libs/date-picker/lib/cjs/components/InputTrigger.js.map +1 -0
- package/libs/date-picker/lib/cjs/components/PickerAbstract.js +250 -0
- package/libs/date-picker/lib/cjs/components/PickerAbstract.js.map +1 -0
- package/libs/date-picker/lib/cjs/components/RangePickerAbstract.js +406 -0
- package/libs/date-picker/lib/cjs/components/RangePickerAbstract.js.map +1 -0
- package/libs/date-picker/lib/cjs/components/index.js +175 -0
- package/libs/date-picker/lib/cjs/components/index.js.map +1 -0
- package/libs/date-picker/lib/cjs/index.d.js +2 -0
- package/libs/date-picker/lib/cjs/index.d.js.map +1 -0
- package/libs/date-picker/lib/cjs/index.js +53 -0
- package/libs/date-picker/lib/cjs/index.js.map +1 -0
- package/libs/date-picker/lib/cjs/translations/__intergalactic-dynamic-locales.js +41 -0
- package/libs/date-picker/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/date-picker/lib/cjs/translations/de.json +16 -0
- package/libs/date-picker/lib/cjs/translations/en.json +17 -0
- package/libs/date-picker/lib/cjs/translations/es.json +16 -0
- package/libs/date-picker/lib/cjs/translations/fr.json +16 -0
- package/libs/date-picker/lib/cjs/translations/it.json +16 -0
- package/libs/date-picker/lib/cjs/translations/ja.json +16 -0
- package/libs/date-picker/lib/cjs/translations/ko.json +16 -0
- package/libs/date-picker/lib/cjs/translations/nl.json +16 -0
- package/libs/date-picker/lib/cjs/translations/pl.json +16 -0
- package/libs/date-picker/lib/cjs/translations/pt.json +16 -0
- package/libs/date-picker/lib/cjs/translations/ru.json +13 -0
- package/libs/date-picker/lib/cjs/translations/sv.json +16 -0
- package/libs/date-picker/lib/cjs/translations/tr.json +16 -0
- package/libs/date-picker/lib/cjs/translations/vi.json +16 -0
- package/libs/date-picker/lib/cjs/translations/zh.json +16 -0
- package/libs/date-picker/lib/cjs/utils/cronTabScheduler.js +98 -0
- package/libs/date-picker/lib/cjs/utils/cronTabScheduler.js.map +1 -0
- package/libs/date-picker/lib/cjs/utils/formatDate.js +22 -0
- package/libs/date-picker/lib/cjs/utils/formatDate.js.map +1 -0
- package/libs/date-picker/lib/cjs/utils/includesDate.js +26 -0
- package/libs/date-picker/lib/cjs/utils/includesDate.js.map +1 -0
- package/libs/date-picker/lib/cjs/utils/shortDateRangeFormat.js +69 -0
- package/libs/date-picker/lib/cjs/utils/shortDateRangeFormat.js.map +1 -0
- package/libs/date-picker/lib/es6/DatePicker.js +174 -0
- package/libs/date-picker/lib/es6/DatePicker.js.map +1 -0
- package/libs/date-picker/lib/es6/DateRangeComparator.js +180 -0
- package/libs/date-picker/lib/es6/DateRangeComparator.js.map +1 -0
- package/libs/date-picker/lib/es6/DateRangePicker.js +124 -0
- package/libs/date-picker/lib/es6/DateRangePicker.js.map +1 -0
- package/libs/date-picker/lib/es6/MonthDateRangeComparator.js +215 -0
- package/libs/date-picker/lib/es6/MonthDateRangeComparator.js.map +1 -0
- package/libs/date-picker/lib/es6/MonthPicker.js +114 -0
- package/libs/date-picker/lib/es6/MonthPicker.js.map +1 -0
- package/libs/date-picker/lib/es6/MonthRangePicker.js +138 -0
- package/libs/date-picker/lib/es6/MonthRangePicker.js.map +1 -0
- package/libs/date-picker/lib/es6/components/ButtonTrigger.js +24 -0
- package/libs/date-picker/lib/es6/components/ButtonTrigger.js.map +1 -0
- package/libs/date-picker/lib/es6/components/Calendar.js +407 -0
- package/libs/date-picker/lib/es6/components/Calendar.js.map +1 -0
- package/libs/date-picker/lib/es6/components/DateRangeComparatorAbstract.js +574 -0
- package/libs/date-picker/lib/es6/components/DateRangeComparatorAbstract.js.map +1 -0
- package/libs/date-picker/lib/es6/components/InputTrigger.js +664 -0
- package/libs/date-picker/lib/es6/components/InputTrigger.js.map +1 -0
- package/libs/date-picker/lib/es6/components/PickerAbstract.js +244 -0
- package/libs/date-picker/lib/es6/components/PickerAbstract.js.map +1 -0
- package/libs/date-picker/lib/es6/components/RangePickerAbstract.js +401 -0
- package/libs/date-picker/lib/es6/components/RangePickerAbstract.js.map +1 -0
- package/libs/date-picker/lib/es6/components/index.js +168 -0
- package/libs/date-picker/lib/es6/components/index.js.map +1 -0
- package/libs/date-picker/lib/es6/index.d.js +2 -0
- package/libs/date-picker/lib/es6/index.d.js.map +1 -0
- package/libs/date-picker/lib/es6/index.js +6 -0
- package/libs/date-picker/lib/es6/index.js.map +1 -0
- package/libs/date-picker/lib/es6/translations/__intergalactic-dynamic-locales.js +33 -0
- package/libs/date-picker/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/date-picker/lib/es6/translations/de.json +16 -0
- package/libs/date-picker/lib/es6/translations/en.json +17 -0
- package/libs/date-picker/lib/es6/translations/es.json +16 -0
- package/libs/date-picker/lib/es6/translations/fr.json +16 -0
- package/libs/date-picker/lib/es6/translations/it.json +16 -0
- package/libs/date-picker/lib/es6/translations/ja.json +16 -0
- package/libs/date-picker/lib/es6/translations/ko.json +16 -0
- package/libs/date-picker/lib/es6/translations/nl.json +16 -0
- package/libs/date-picker/lib/es6/translations/pl.json +16 -0
- package/libs/date-picker/lib/es6/translations/pt.json +16 -0
- package/libs/date-picker/lib/es6/translations/ru.json +13 -0
- package/libs/date-picker/lib/es6/translations/sv.json +16 -0
- package/libs/date-picker/lib/es6/translations/tr.json +16 -0
- package/libs/date-picker/lib/es6/translations/vi.json +16 -0
- package/libs/date-picker/lib/es6/translations/zh.json +16 -0
- package/libs/date-picker/lib/es6/utils/cronTabScheduler.js +90 -0
- package/libs/date-picker/lib/es6/utils/cronTabScheduler.js.map +1 -0
- package/libs/date-picker/lib/es6/utils/formatDate.js +14 -0
- package/libs/date-picker/lib/es6/utils/formatDate.js.map +1 -0
- package/libs/date-picker/lib/es6/utils/includesDate.js +18 -0
- package/libs/date-picker/lib/es6/utils/includesDate.js.map +1 -0
- package/libs/date-picker/lib/es6/utils/shortDateRangeFormat.js +62 -0
- package/libs/date-picker/lib/es6/utils/shortDateRangeFormat.js.map +1 -0
- package/libs/date-picker/lib/types/index.d.ts +470 -0
- package/libs/divider/lib/cjs/Divider.js +59 -0
- package/libs/divider/lib/cjs/Divider.js.map +1 -0
- package/libs/divider/lib/cjs/index.d.js +2 -0
- package/libs/divider/lib/cjs/index.d.js.map +1 -0
- package/libs/divider/lib/cjs/index.js +14 -0
- package/libs/divider/lib/cjs/index.js.map +1 -0
- package/libs/divider/lib/es6/Divider.js +52 -0
- package/libs/divider/lib/es6/Divider.js.map +1 -0
- package/libs/divider/lib/es6/index.d.js +2 -0
- package/libs/divider/lib/es6/index.d.js.map +1 -0
- package/libs/divider/lib/es6/index.js +2 -0
- package/libs/divider/lib/es6/index.js.map +1 -0
- package/libs/divider/lib/types/index.d.ts +25 -0
- package/libs/dot/lib/cjs/Dot.js +107 -0
- package/libs/dot/lib/cjs/Dot.js.map +1 -0
- package/libs/dot/lib/cjs/index.d.js +2 -0
- package/libs/dot/lib/cjs/index.d.js.map +1 -0
- package/libs/dot/lib/cjs/index.js +14 -0
- package/libs/dot/lib/cjs/index.js.map +1 -0
- package/libs/dot/lib/es6/Dot.js +100 -0
- package/libs/dot/lib/es6/Dot.js.map +1 -0
- package/libs/dot/lib/es6/index.d.js +2 -0
- package/libs/dot/lib/es6/index.d.js.map +1 -0
- package/libs/dot/lib/es6/index.js +2 -0
- package/libs/dot/lib/es6/index.js.map +1 -0
- package/libs/dot/lib/types/index.d.ts +23 -0
- package/libs/drag-and-drop/lib/cjs/DragAndDrop.js +410 -0
- package/libs/drag-and-drop/lib/cjs/DragAndDrop.js.map +1 -0
- package/libs/drag-and-drop/lib/cjs/index.d.js +2 -0
- package/libs/drag-and-drop/lib/cjs/index.d.js.map +1 -0
- package/libs/drag-and-drop/lib/cjs/index.js +14 -0
- package/libs/drag-and-drop/lib/cjs/index.js.map +1 -0
- package/libs/drag-and-drop/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/drag-and-drop/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/drag-and-drop/lib/cjs/translations/de.json +6 -0
- package/libs/drag-and-drop/lib/cjs/translations/en.json +6 -0
- package/libs/drag-and-drop/lib/cjs/translations/es.json +6 -0
- package/libs/drag-and-drop/lib/cjs/translations/fr.json +6 -0
- package/libs/drag-and-drop/lib/cjs/translations/it.json +6 -0
- package/libs/drag-and-drop/lib/cjs/translations/ja.json +6 -0
- package/libs/drag-and-drop/lib/cjs/translations/ko.json +6 -0
- package/libs/drag-and-drop/lib/cjs/translations/nl.json +6 -0
- package/libs/drag-and-drop/lib/cjs/translations/pl.json +6 -0
- package/libs/drag-and-drop/lib/cjs/translations/pt.json +6 -0
- package/libs/drag-and-drop/lib/cjs/translations/sv.json +6 -0
- package/libs/drag-and-drop/lib/cjs/translations/tr.json +6 -0
- package/libs/drag-and-drop/lib/cjs/translations/vi.json +6 -0
- package/libs/drag-and-drop/lib/cjs/translations/zh.json +6 -0
- package/libs/drag-and-drop/lib/es6/DragAndDrop.js +405 -0
- package/libs/drag-and-drop/lib/es6/DragAndDrop.js.map +1 -0
- package/libs/drag-and-drop/lib/es6/index.d.js +2 -0
- package/libs/drag-and-drop/lib/es6/index.d.js.map +1 -0
- package/libs/drag-and-drop/lib/es6/index.js +2 -0
- package/libs/drag-and-drop/lib/es6/index.js.map +1 -0
- package/libs/drag-and-drop/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/drag-and-drop/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/drag-and-drop/lib/es6/translations/de.json +6 -0
- package/libs/drag-and-drop/lib/es6/translations/en.json +6 -0
- package/libs/drag-and-drop/lib/es6/translations/es.json +6 -0
- package/libs/drag-and-drop/lib/es6/translations/fr.json +6 -0
- package/libs/drag-and-drop/lib/es6/translations/it.json +6 -0
- package/libs/drag-and-drop/lib/es6/translations/ja.json +6 -0
- package/libs/drag-and-drop/lib/es6/translations/ko.json +6 -0
- package/libs/drag-and-drop/lib/es6/translations/nl.json +6 -0
- package/libs/drag-and-drop/lib/es6/translations/pl.json +6 -0
- package/libs/drag-and-drop/lib/es6/translations/pt.json +6 -0
- package/libs/drag-and-drop/lib/es6/translations/sv.json +6 -0
- package/libs/drag-and-drop/lib/es6/translations/tr.json +6 -0
- package/libs/drag-and-drop/lib/es6/translations/vi.json +6 -0
- package/libs/drag-and-drop/lib/es6/translations/zh.json +6 -0
- package/libs/drag-and-drop/lib/types/index.d.ts +62 -0
- package/libs/dropdown/lib/cjs/Dropdown.js +177 -0
- package/libs/dropdown/lib/cjs/Dropdown.js.map +1 -0
- package/libs/dropdown/lib/cjs/index.d.js +2 -0
- package/libs/dropdown/lib/cjs/index.d.js.map +1 -0
- package/libs/dropdown/lib/cjs/index.js +14 -0
- package/libs/dropdown/lib/cjs/index.js.map +1 -0
- package/libs/dropdown/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/dropdown/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/dropdown/lib/cjs/translations/de.json +3 -0
- package/libs/dropdown/lib/cjs/translations/en.json +3 -0
- package/libs/dropdown/lib/cjs/translations/es.json +3 -0
- package/libs/dropdown/lib/cjs/translations/fr.json +3 -0
- package/libs/dropdown/lib/cjs/translations/it.json +3 -0
- package/libs/dropdown/lib/cjs/translations/ja.json +3 -0
- package/libs/dropdown/lib/cjs/translations/ko.json +3 -0
- package/libs/dropdown/lib/cjs/translations/nl.json +3 -0
- package/libs/dropdown/lib/cjs/translations/pl.json +3 -0
- package/libs/dropdown/lib/cjs/translations/pt.json +3 -0
- package/libs/dropdown/lib/cjs/translations/sv.json +3 -0
- package/libs/dropdown/lib/cjs/translations/tr.json +3 -0
- package/libs/dropdown/lib/cjs/translations/vi.json +3 -0
- package/libs/dropdown/lib/cjs/translations/zh.json +3 -0
- package/libs/dropdown/lib/es6/Dropdown.js +170 -0
- package/libs/dropdown/lib/es6/Dropdown.js.map +1 -0
- package/libs/dropdown/lib/es6/index.d.js +2 -0
- package/libs/dropdown/lib/es6/index.d.js.map +1 -0
- package/libs/dropdown/lib/es6/index.js +2 -0
- package/libs/dropdown/lib/es6/index.js.map +1 -0
- package/libs/dropdown/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/dropdown/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/dropdown/lib/es6/translations/de.json +3 -0
- package/libs/dropdown/lib/es6/translations/en.json +3 -0
- package/libs/dropdown/lib/es6/translations/es.json +3 -0
- package/libs/dropdown/lib/es6/translations/fr.json +3 -0
- package/libs/dropdown/lib/es6/translations/it.json +3 -0
- package/libs/dropdown/lib/es6/translations/ja.json +3 -0
- package/libs/dropdown/lib/es6/translations/ko.json +3 -0
- package/libs/dropdown/lib/es6/translations/nl.json +3 -0
- package/libs/dropdown/lib/es6/translations/pl.json +3 -0
- package/libs/dropdown/lib/es6/translations/pt.json +3 -0
- package/libs/dropdown/lib/es6/translations/sv.json +3 -0
- package/libs/dropdown/lib/es6/translations/tr.json +3 -0
- package/libs/dropdown/lib/es6/translations/vi.json +3 -0
- package/libs/dropdown/lib/es6/translations/zh.json +3 -0
- package/libs/dropdown/lib/types/index.d.ts +43 -0
- package/libs/dropdown-menu/lib/cjs/DropdownMenu.js +372 -0
- package/libs/dropdown-menu/lib/cjs/DropdownMenu.js.map +1 -0
- package/libs/dropdown-menu/lib/cjs/index.d.js +2 -0
- package/libs/dropdown-menu/lib/cjs/index.d.js.map +1 -0
- package/libs/dropdown-menu/lib/cjs/index.js +14 -0
- package/libs/dropdown-menu/lib/cjs/index.js.map +1 -0
- package/libs/dropdown-menu/lib/cjs/styleScrollArea.js +23 -0
- package/libs/dropdown-menu/lib/cjs/styleScrollArea.js.map +1 -0
- package/libs/dropdown-menu/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/dropdown-menu/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/dropdown-menu/lib/cjs/translations/de.json +3 -0
- package/libs/dropdown-menu/lib/cjs/translations/en.json +3 -0
- package/libs/dropdown-menu/lib/cjs/translations/es.json +3 -0
- package/libs/dropdown-menu/lib/cjs/translations/fr.json +3 -0
- package/libs/dropdown-menu/lib/cjs/translations/it.json +3 -0
- package/libs/dropdown-menu/lib/cjs/translations/ja.json +3 -0
- package/libs/dropdown-menu/lib/cjs/translations/ko.json +3 -0
- package/libs/dropdown-menu/lib/cjs/translations/nl.json +3 -0
- package/libs/dropdown-menu/lib/cjs/translations/pl.json +3 -0
- package/libs/dropdown-menu/lib/cjs/translations/pt.json +3 -0
- package/libs/dropdown-menu/lib/cjs/translations/sv.json +3 -0
- package/libs/dropdown-menu/lib/cjs/translations/tr.json +3 -0
- package/libs/dropdown-menu/lib/cjs/translations/vi.json +3 -0
- package/libs/dropdown-menu/lib/cjs/translations/zh.json +3 -0
- package/libs/dropdown-menu/lib/es6/DropdownMenu.js +370 -0
- package/libs/dropdown-menu/lib/es6/DropdownMenu.js.map +1 -0
- package/libs/dropdown-menu/lib/es6/index.d.js +2 -0
- package/libs/dropdown-menu/lib/es6/index.d.js.map +1 -0
- package/libs/dropdown-menu/lib/es6/index.js +2 -0
- package/libs/dropdown-menu/lib/es6/index.js.map +1 -0
- package/libs/dropdown-menu/lib/es6/styleScrollArea.js +16 -0
- package/libs/dropdown-menu/lib/es6/styleScrollArea.js.map +1 -0
- package/libs/dropdown-menu/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/dropdown-menu/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/dropdown-menu/lib/es6/translations/de.json +3 -0
- package/libs/dropdown-menu/lib/es6/translations/en.json +3 -0
- package/libs/dropdown-menu/lib/es6/translations/es.json +3 -0
- package/libs/dropdown-menu/lib/es6/translations/fr.json +3 -0
- package/libs/dropdown-menu/lib/es6/translations/it.json +3 -0
- package/libs/dropdown-menu/lib/es6/translations/ja.json +3 -0
- package/libs/dropdown-menu/lib/es6/translations/ko.json +3 -0
- package/libs/dropdown-menu/lib/es6/translations/nl.json +3 -0
- package/libs/dropdown-menu/lib/es6/translations/pl.json +3 -0
- package/libs/dropdown-menu/lib/es6/translations/pt.json +3 -0
- package/libs/dropdown-menu/lib/es6/translations/sv.json +3 -0
- package/libs/dropdown-menu/lib/es6/translations/tr.json +3 -0
- package/libs/dropdown-menu/lib/es6/translations/vi.json +3 -0
- package/libs/dropdown-menu/lib/es6/translations/zh.json +3 -0
- package/libs/dropdown-menu/lib/types/index.d.ts +151 -0
- package/libs/ellipsis/lib/cjs/Ellipsis.js +290 -0
- package/libs/ellipsis/lib/cjs/Ellipsis.js.map +1 -0
- package/libs/ellipsis/lib/cjs/index.d.js +2 -0
- package/libs/ellipsis/lib/cjs/index.d.js.map +1 -0
- package/libs/ellipsis/lib/cjs/index.js +21 -0
- package/libs/ellipsis/lib/cjs/index.js.map +1 -0
- package/libs/ellipsis/lib/cjs/useResizeObserver.js +45 -0
- package/libs/ellipsis/lib/cjs/useResizeObserver.js.map +1 -0
- package/libs/ellipsis/lib/es6/Ellipsis.js +284 -0
- package/libs/ellipsis/lib/es6/Ellipsis.js.map +1 -0
- package/libs/ellipsis/lib/es6/index.d.js +2 -0
- package/libs/ellipsis/lib/es6/index.d.js.map +1 -0
- package/libs/ellipsis/lib/es6/index.js +3 -0
- package/libs/ellipsis/lib/es6/index.js.map +1 -0
- package/libs/ellipsis/lib/es6/useResizeObserver.js +37 -0
- package/libs/ellipsis/lib/es6/useResizeObserver.js.map +1 -0
- package/libs/ellipsis/lib/types/index.d.ts +50 -0
- package/libs/email/lib/badge/index.css +1 -0
- package/libs/email/lib/button/index.css +1 -0
- package/libs/email/lib/core/base.css +1 -0
- package/libs/email/lib/core/index.css +1 -0
- package/libs/email/lib/core/var.css +47 -0
- package/libs/email/lib/divider/index.css +1 -0
- package/libs/email/lib/grid/index.css +1 -0
- package/libs/email/lib/notice/index.css +1 -0
- package/libs/email/lib/summary/index.css +1 -0
- package/libs/email/lib/table/index.css +1 -0
- package/libs/email/lib/typography/index.css +1 -0
- package/libs/errors/lib/cjs/AccessDenied/index.js +63 -0
- package/libs/errors/lib/cjs/AccessDenied/index.js.map +1 -0
- package/libs/errors/lib/cjs/AccessDenied/translations/__intergalactic-dynamic-locales.js +41 -0
- package/libs/errors/lib/cjs/AccessDenied/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/errors/lib/cjs/AccessDenied/translations/de.json +5 -0
- package/libs/errors/lib/cjs/AccessDenied/translations/en.json +5 -0
- package/libs/errors/lib/cjs/AccessDenied/translations/es.json +5 -0
- package/libs/errors/lib/cjs/AccessDenied/translations/fr.json +5 -0
- package/libs/errors/lib/cjs/AccessDenied/translations/it.json +5 -0
- package/libs/errors/lib/cjs/AccessDenied/translations/ja.json +5 -0
- package/libs/errors/lib/cjs/AccessDenied/translations/ko.json +5 -0
- package/libs/errors/lib/cjs/AccessDenied/translations/nl.json +5 -0
- package/libs/errors/lib/cjs/AccessDenied/translations/pl.json +5 -0
- package/libs/errors/lib/cjs/AccessDenied/translations/pt.json +5 -0
- package/libs/errors/lib/cjs/AccessDenied/translations/ru.json +5 -0
- package/libs/errors/lib/cjs/AccessDenied/translations/sv.json +5 -0
- package/libs/errors/lib/cjs/AccessDenied/translations/tr.json +5 -0
- package/libs/errors/lib/cjs/AccessDenied/translations/vi.json +5 -0
- package/libs/errors/lib/cjs/AccessDenied/translations/zh.json +5 -0
- package/libs/errors/lib/cjs/Error.js +97 -0
- package/libs/errors/lib/cjs/Error.js.map +1 -0
- package/libs/errors/lib/cjs/Maintenance/index.js +62 -0
- package/libs/errors/lib/cjs/Maintenance/index.js.map +1 -0
- package/libs/errors/lib/cjs/Maintenance/translations/__intergalactic-dynamic-locales.js +41 -0
- package/libs/errors/lib/cjs/Maintenance/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/errors/lib/cjs/Maintenance/translations/de.json +5 -0
- package/libs/errors/lib/cjs/Maintenance/translations/en.json +5 -0
- package/libs/errors/lib/cjs/Maintenance/translations/es.json +5 -0
- package/libs/errors/lib/cjs/Maintenance/translations/fr.json +5 -0
- package/libs/errors/lib/cjs/Maintenance/translations/it.json +5 -0
- package/libs/errors/lib/cjs/Maintenance/translations/ja.json +5 -0
- package/libs/errors/lib/cjs/Maintenance/translations/ko.json +5 -0
- package/libs/errors/lib/cjs/Maintenance/translations/nl.json +5 -0
- package/libs/errors/lib/cjs/Maintenance/translations/pl.json +5 -0
- package/libs/errors/lib/cjs/Maintenance/translations/pt.json +5 -0
- package/libs/errors/lib/cjs/Maintenance/translations/ru.json +5 -0
- package/libs/errors/lib/cjs/Maintenance/translations/sv.json +5 -0
- package/libs/errors/lib/cjs/Maintenance/translations/tr.json +5 -0
- package/libs/errors/lib/cjs/Maintenance/translations/vi.json +5 -0
- package/libs/errors/lib/cjs/Maintenance/translations/zh.json +5 -0
- package/libs/errors/lib/cjs/PageError/index.js +73 -0
- package/libs/errors/lib/cjs/PageError/index.js.map +1 -0
- package/libs/errors/lib/cjs/PageError/translations/__intergalactic-dynamic-locales.js +41 -0
- package/libs/errors/lib/cjs/PageError/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/errors/lib/cjs/PageError/translations/de.json +5 -0
- package/libs/errors/lib/cjs/PageError/translations/en.json +5 -0
- package/libs/errors/lib/cjs/PageError/translations/es.json +5 -0
- package/libs/errors/lib/cjs/PageError/translations/fr.json +5 -0
- package/libs/errors/lib/cjs/PageError/translations/it.json +5 -0
- package/libs/errors/lib/cjs/PageError/translations/ja.json +5 -0
- package/libs/errors/lib/cjs/PageError/translations/ko.json +5 -0
- package/libs/errors/lib/cjs/PageError/translations/nl.json +5 -0
- package/libs/errors/lib/cjs/PageError/translations/pl.json +5 -0
- package/libs/errors/lib/cjs/PageError/translations/pt.json +5 -0
- package/libs/errors/lib/cjs/PageError/translations/ru.json +5 -0
- package/libs/errors/lib/cjs/PageError/translations/sv.json +5 -0
- package/libs/errors/lib/cjs/PageError/translations/tr.json +5 -0
- package/libs/errors/lib/cjs/PageError/translations/vi.json +5 -0
- package/libs/errors/lib/cjs/PageError/translations/zh.json +5 -0
- package/libs/errors/lib/cjs/PageNotFound/index.js +61 -0
- package/libs/errors/lib/cjs/PageNotFound/index.js.map +1 -0
- package/libs/errors/lib/cjs/PageNotFound/translations/__intergalactic-dynamic-locales.js +41 -0
- package/libs/errors/lib/cjs/PageNotFound/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/errors/lib/cjs/PageNotFound/translations/de.json +5 -0
- package/libs/errors/lib/cjs/PageNotFound/translations/en.json +5 -0
- package/libs/errors/lib/cjs/PageNotFound/translations/es.json +5 -0
- package/libs/errors/lib/cjs/PageNotFound/translations/fr.json +5 -0
- package/libs/errors/lib/cjs/PageNotFound/translations/it.json +5 -0
- package/libs/errors/lib/cjs/PageNotFound/translations/ja.json +5 -0
- package/libs/errors/lib/cjs/PageNotFound/translations/ko.json +5 -0
- package/libs/errors/lib/cjs/PageNotFound/translations/nl.json +5 -0
- package/libs/errors/lib/cjs/PageNotFound/translations/pl.json +5 -0
- package/libs/errors/lib/cjs/PageNotFound/translations/pt.json +5 -0
- package/libs/errors/lib/cjs/PageNotFound/translations/ru.json +5 -0
- package/libs/errors/lib/cjs/PageNotFound/translations/sv.json +5 -0
- package/libs/errors/lib/cjs/PageNotFound/translations/tr.json +5 -0
- package/libs/errors/lib/cjs/PageNotFound/translations/vi.json +5 -0
- package/libs/errors/lib/cjs/PageNotFound/translations/zh.json +5 -0
- package/libs/errors/lib/cjs/ProjectNotFound/index.js +80 -0
- package/libs/errors/lib/cjs/ProjectNotFound/index.js.map +1 -0
- package/libs/errors/lib/cjs/ProjectNotFound/translations/__intergalactic-dynamic-locales.js +41 -0
- package/libs/errors/lib/cjs/ProjectNotFound/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/errors/lib/cjs/ProjectNotFound/translations/de.json +6 -0
- package/libs/errors/lib/cjs/ProjectNotFound/translations/en.json +6 -0
- package/libs/errors/lib/cjs/ProjectNotFound/translations/es.json +6 -0
- package/libs/errors/lib/cjs/ProjectNotFound/translations/fr.json +6 -0
- package/libs/errors/lib/cjs/ProjectNotFound/translations/it.json +6 -0
- package/libs/errors/lib/cjs/ProjectNotFound/translations/ja.json +6 -0
- package/libs/errors/lib/cjs/ProjectNotFound/translations/ko.json +6 -0
- package/libs/errors/lib/cjs/ProjectNotFound/translations/nl.json +6 -0
- package/libs/errors/lib/cjs/ProjectNotFound/translations/pl.json +6 -0
- package/libs/errors/lib/cjs/ProjectNotFound/translations/pt.json +6 -0
- package/libs/errors/lib/cjs/ProjectNotFound/translations/ru.json +6 -0
- package/libs/errors/lib/cjs/ProjectNotFound/translations/sv.json +6 -0
- package/libs/errors/lib/cjs/ProjectNotFound/translations/tr.json +6 -0
- package/libs/errors/lib/cjs/ProjectNotFound/translations/vi.json +6 -0
- package/libs/errors/lib/cjs/ProjectNotFound/translations/zh.json +6 -0
- package/libs/errors/lib/cjs/index.d.js +16 -0
- package/libs/errors/lib/cjs/index.d.js.map +1 -0
- package/libs/errors/lib/cjs/index.js +68 -0
- package/libs/errors/lib/cjs/index.js.map +1 -0
- package/libs/errors/lib/es6/AccessDenied/index.js +55 -0
- package/libs/errors/lib/es6/AccessDenied/index.js.map +1 -0
- package/libs/errors/lib/es6/AccessDenied/translations/__intergalactic-dynamic-locales.js +33 -0
- package/libs/errors/lib/es6/AccessDenied/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/errors/lib/es6/AccessDenied/translations/de.json +5 -0
- package/libs/errors/lib/es6/AccessDenied/translations/en.json +5 -0
- package/libs/errors/lib/es6/AccessDenied/translations/es.json +5 -0
- package/libs/errors/lib/es6/AccessDenied/translations/fr.json +5 -0
- package/libs/errors/lib/es6/AccessDenied/translations/it.json +5 -0
- package/libs/errors/lib/es6/AccessDenied/translations/ja.json +5 -0
- package/libs/errors/lib/es6/AccessDenied/translations/ko.json +5 -0
- package/libs/errors/lib/es6/AccessDenied/translations/nl.json +5 -0
- package/libs/errors/lib/es6/AccessDenied/translations/pl.json +5 -0
- package/libs/errors/lib/es6/AccessDenied/translations/pt.json +5 -0
- package/libs/errors/lib/es6/AccessDenied/translations/ru.json +5 -0
- package/libs/errors/lib/es6/AccessDenied/translations/sv.json +5 -0
- package/libs/errors/lib/es6/AccessDenied/translations/tr.json +5 -0
- package/libs/errors/lib/es6/AccessDenied/translations/vi.json +5 -0
- package/libs/errors/lib/es6/AccessDenied/translations/zh.json +5 -0
- package/libs/errors/lib/es6/Error.js +92 -0
- package/libs/errors/lib/es6/Error.js.map +1 -0
- package/libs/errors/lib/es6/Maintenance/index.js +54 -0
- package/libs/errors/lib/es6/Maintenance/index.js.map +1 -0
- package/libs/errors/lib/es6/Maintenance/translations/__intergalactic-dynamic-locales.js +33 -0
- package/libs/errors/lib/es6/Maintenance/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/errors/lib/es6/Maintenance/translations/de.json +5 -0
- package/libs/errors/lib/es6/Maintenance/translations/en.json +5 -0
- package/libs/errors/lib/es6/Maintenance/translations/es.json +5 -0
- package/libs/errors/lib/es6/Maintenance/translations/fr.json +5 -0
- package/libs/errors/lib/es6/Maintenance/translations/it.json +5 -0
- package/libs/errors/lib/es6/Maintenance/translations/ja.json +5 -0
- package/libs/errors/lib/es6/Maintenance/translations/ko.json +5 -0
- package/libs/errors/lib/es6/Maintenance/translations/nl.json +5 -0
- package/libs/errors/lib/es6/Maintenance/translations/pl.json +5 -0
- package/libs/errors/lib/es6/Maintenance/translations/pt.json +5 -0
- package/libs/errors/lib/es6/Maintenance/translations/ru.json +5 -0
- package/libs/errors/lib/es6/Maintenance/translations/sv.json +5 -0
- package/libs/errors/lib/es6/Maintenance/translations/tr.json +5 -0
- package/libs/errors/lib/es6/Maintenance/translations/vi.json +5 -0
- package/libs/errors/lib/es6/Maintenance/translations/zh.json +5 -0
- package/libs/errors/lib/es6/PageError/index.js +64 -0
- package/libs/errors/lib/es6/PageError/index.js.map +1 -0
- package/libs/errors/lib/es6/PageError/translations/__intergalactic-dynamic-locales.js +33 -0
- package/libs/errors/lib/es6/PageError/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/errors/lib/es6/PageError/translations/de.json +5 -0
- package/libs/errors/lib/es6/PageError/translations/en.json +5 -0
- package/libs/errors/lib/es6/PageError/translations/es.json +5 -0
- package/libs/errors/lib/es6/PageError/translations/fr.json +5 -0
- package/libs/errors/lib/es6/PageError/translations/it.json +5 -0
- package/libs/errors/lib/es6/PageError/translations/ja.json +5 -0
- package/libs/errors/lib/es6/PageError/translations/ko.json +5 -0
- package/libs/errors/lib/es6/PageError/translations/nl.json +5 -0
- package/libs/errors/lib/es6/PageError/translations/pl.json +5 -0
- package/libs/errors/lib/es6/PageError/translations/pt.json +5 -0
- package/libs/errors/lib/es6/PageError/translations/ru.json +5 -0
- package/libs/errors/lib/es6/PageError/translations/sv.json +5 -0
- package/libs/errors/lib/es6/PageError/translations/tr.json +5 -0
- package/libs/errors/lib/es6/PageError/translations/vi.json +5 -0
- package/libs/errors/lib/es6/PageError/translations/zh.json +5 -0
- package/libs/errors/lib/es6/PageNotFound/index.js +53 -0
- package/libs/errors/lib/es6/PageNotFound/index.js.map +1 -0
- package/libs/errors/lib/es6/PageNotFound/translations/__intergalactic-dynamic-locales.js +33 -0
- package/libs/errors/lib/es6/PageNotFound/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/errors/lib/es6/PageNotFound/translations/de.json +5 -0
- package/libs/errors/lib/es6/PageNotFound/translations/en.json +5 -0
- package/libs/errors/lib/es6/PageNotFound/translations/es.json +5 -0
- package/libs/errors/lib/es6/PageNotFound/translations/fr.json +5 -0
- package/libs/errors/lib/es6/PageNotFound/translations/it.json +5 -0
- package/libs/errors/lib/es6/PageNotFound/translations/ja.json +5 -0
- package/libs/errors/lib/es6/PageNotFound/translations/ko.json +5 -0
- package/libs/errors/lib/es6/PageNotFound/translations/nl.json +5 -0
- package/libs/errors/lib/es6/PageNotFound/translations/pl.json +5 -0
- package/libs/errors/lib/es6/PageNotFound/translations/pt.json +5 -0
- package/libs/errors/lib/es6/PageNotFound/translations/ru.json +5 -0
- package/libs/errors/lib/es6/PageNotFound/translations/sv.json +5 -0
- package/libs/errors/lib/es6/PageNotFound/translations/tr.json +5 -0
- package/libs/errors/lib/es6/PageNotFound/translations/vi.json +5 -0
- package/libs/errors/lib/es6/PageNotFound/translations/zh.json +5 -0
- package/libs/errors/lib/es6/ProjectNotFound/index.js +72 -0
- package/libs/errors/lib/es6/ProjectNotFound/index.js.map +1 -0
- package/libs/errors/lib/es6/ProjectNotFound/translations/__intergalactic-dynamic-locales.js +33 -0
- package/libs/errors/lib/es6/ProjectNotFound/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/errors/lib/es6/ProjectNotFound/translations/de.json +6 -0
- package/libs/errors/lib/es6/ProjectNotFound/translations/en.json +6 -0
- package/libs/errors/lib/es6/ProjectNotFound/translations/es.json +6 -0
- package/libs/errors/lib/es6/ProjectNotFound/translations/fr.json +6 -0
- package/libs/errors/lib/es6/ProjectNotFound/translations/it.json +6 -0
- package/libs/errors/lib/es6/ProjectNotFound/translations/ja.json +6 -0
- package/libs/errors/lib/es6/ProjectNotFound/translations/ko.json +6 -0
- package/libs/errors/lib/es6/ProjectNotFound/translations/nl.json +6 -0
- package/libs/errors/lib/es6/ProjectNotFound/translations/pl.json +6 -0
- package/libs/errors/lib/es6/ProjectNotFound/translations/pt.json +6 -0
- package/libs/errors/lib/es6/ProjectNotFound/translations/ru.json +6 -0
- package/libs/errors/lib/es6/ProjectNotFound/translations/sv.json +6 -0
- package/libs/errors/lib/es6/ProjectNotFound/translations/tr.json +6 -0
- package/libs/errors/lib/es6/ProjectNotFound/translations/vi.json +6 -0
- package/libs/errors/lib/es6/ProjectNotFound/translations/zh.json +6 -0
- package/libs/errors/lib/es6/index.d.js +16 -0
- package/libs/errors/lib/es6/index.d.js.map +1 -0
- package/libs/errors/lib/es6/index.js +8 -0
- package/libs/errors/lib/es6/index.js.map +1 -0
- package/libs/errors/lib/types/index.d.ts +120 -0
- package/libs/feature-popover/lib/cjs/FeaturePopover.js +202 -0
- package/libs/feature-popover/lib/cjs/FeaturePopover.js.map +1 -0
- package/libs/feature-popover/lib/cjs/index.d.js +2 -0
- package/libs/feature-popover/lib/cjs/index.d.js.map +1 -0
- package/libs/feature-popover/lib/cjs/index.js +14 -0
- package/libs/feature-popover/lib/cjs/index.js.map +1 -0
- package/libs/feature-popover/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/feature-popover/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/feature-popover/lib/cjs/translations/de.json +3 -0
- package/libs/feature-popover/lib/cjs/translations/en.json +3 -0
- package/libs/feature-popover/lib/cjs/translations/es.json +3 -0
- package/libs/feature-popover/lib/cjs/translations/fr.json +3 -0
- package/libs/feature-popover/lib/cjs/translations/it.json +3 -0
- package/libs/feature-popover/lib/cjs/translations/ja.json +3 -0
- package/libs/feature-popover/lib/cjs/translations/ko.json +3 -0
- package/libs/feature-popover/lib/cjs/translations/nl.json +3 -0
- package/libs/feature-popover/lib/cjs/translations/pl.json +3 -0
- package/libs/feature-popover/lib/cjs/translations/pt.json +3 -0
- package/libs/feature-popover/lib/cjs/translations/sv.json +3 -0
- package/libs/feature-popover/lib/cjs/translations/tr.json +3 -0
- package/libs/feature-popover/lib/cjs/translations/vi.json +3 -0
- package/libs/feature-popover/lib/cjs/translations/zh.json +3 -0
- package/libs/feature-popover/lib/es6/FeaturePopover.js +197 -0
- package/libs/feature-popover/lib/es6/FeaturePopover.js.map +1 -0
- package/libs/feature-popover/lib/es6/index.d.js +2 -0
- package/libs/feature-popover/lib/es6/index.d.js.map +1 -0
- package/libs/feature-popover/lib/es6/index.js +2 -0
- package/libs/feature-popover/lib/es6/index.js.map +1 -0
- package/libs/feature-popover/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/feature-popover/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/feature-popover/lib/es6/translations/de.json +3 -0
- package/libs/feature-popover/lib/es6/translations/en.json +3 -0
- package/libs/feature-popover/lib/es6/translations/es.json +3 -0
- package/libs/feature-popover/lib/es6/translations/fr.json +3 -0
- package/libs/feature-popover/lib/es6/translations/it.json +3 -0
- package/libs/feature-popover/lib/es6/translations/ja.json +3 -0
- package/libs/feature-popover/lib/es6/translations/ko.json +3 -0
- package/libs/feature-popover/lib/es6/translations/nl.json +3 -0
- package/libs/feature-popover/lib/es6/translations/pl.json +3 -0
- package/libs/feature-popover/lib/es6/translations/pt.json +3 -0
- package/libs/feature-popover/lib/es6/translations/sv.json +3 -0
- package/libs/feature-popover/lib/es6/translations/tr.json +3 -0
- package/libs/feature-popover/lib/es6/translations/vi.json +3 -0
- package/libs/feature-popover/lib/es6/translations/zh.json +3 -0
- package/libs/feature-popover/lib/types/index.d.ts +33 -0
- package/libs/feedback-form/lib/cjs/FeedbackForm.js +216 -0
- package/libs/feedback-form/lib/cjs/FeedbackForm.js.map +1 -0
- package/libs/feedback-form/lib/cjs/index.d.js +2 -0
- package/libs/feedback-form/lib/cjs/index.d.js.map +1 -0
- package/libs/feedback-form/lib/cjs/index.js +14 -0
- package/libs/feedback-form/lib/cjs/index.js.map +1 -0
- package/libs/feedback-form/lib/es6/FeedbackForm.js +213 -0
- package/libs/feedback-form/lib/es6/FeedbackForm.js.map +1 -0
- package/libs/feedback-form/lib/es6/index.d.js +2 -0
- package/libs/feedback-form/lib/es6/index.d.js.map +1 -0
- package/libs/feedback-form/lib/es6/index.js +2 -0
- package/libs/feedback-form/lib/es6/index.js.map +1 -0
- package/libs/feedback-form/lib/types/index.d.ts +35 -0
- package/libs/flags/lib/cjs/Flags.js +108 -0
- package/libs/flags/lib/cjs/Flags.js.map +1 -0
- package/libs/flags/lib/cjs/aliases.json +7 -0
- package/libs/flags/lib/cjs/countries.json +509 -0
- package/libs/flags/lib/cjs/index.d.js +2 -0
- package/libs/flags/lib/cjs/index.d.js.map +1 -0
- package/libs/flags/lib/cjs/index.js +26 -0
- package/libs/flags/lib/cjs/index.js.map +1 -0
- package/libs/flags/lib/es6/Flags.js +98 -0
- package/libs/flags/lib/es6/Flags.js.map +1 -0
- package/libs/flags/lib/es6/aliases.json +7 -0
- package/libs/flags/lib/es6/countries.json +509 -0
- package/libs/flags/lib/es6/index.d.js +2 -0
- package/libs/flags/lib/es6/index.d.js.map +1 -0
- package/libs/flags/lib/es6/index.js +3 -0
- package/libs/flags/lib/es6/index.js.map +1 -0
- package/libs/flags/lib/sprites/sprite@1x.css +766 -0
- package/libs/flags/lib/sprites/sprite@1x.png +0 -0
- package/libs/flags/lib/sprites/sprite@2x.css +769 -0
- package/libs/flags/lib/sprites/sprite@2x.png +0 -0
- package/libs/flags/lib/types/index.d.ts +1344 -0
- package/libs/flex-box/lib/cjs/Box/index.js +22 -0
- package/libs/flex-box/lib/cjs/Box/index.js.map +1 -0
- package/libs/flex-box/lib/cjs/Box/useBox.js +132 -0
- package/libs/flex-box/lib/cjs/Box/useBox.js.map +1 -0
- package/libs/flex-box/lib/cjs/Flex/index.js +22 -0
- package/libs/flex-box/lib/cjs/Flex/index.js.map +1 -0
- package/libs/flex-box/lib/cjs/Flex/useFlex.js +77 -0
- package/libs/flex-box/lib/cjs/Flex/useFlex.js.map +1 -0
- package/libs/flex-box/lib/cjs/index.js +64 -0
- package/libs/flex-box/lib/cjs/index.js.map +1 -0
- package/libs/flex-box/lib/cjs/utils.js +20 -0
- package/libs/flex-box/lib/cjs/utils.js.map +1 -0
- package/libs/flex-box/lib/es6/Box/index.js +14 -0
- package/libs/flex-box/lib/es6/Box/index.js.map +1 -0
- package/libs/flex-box/lib/es6/Box/useBox.js +125 -0
- package/libs/flex-box/lib/es6/Box/useBox.js.map +1 -0
- package/libs/flex-box/lib/es6/Flex/index.js +14 -0
- package/libs/flex-box/lib/es6/Flex/index.js.map +1 -0
- package/libs/flex-box/lib/es6/Flex/useFlex.js +70 -0
- package/libs/flex-box/lib/es6/Flex/useFlex.js.map +1 -0
- package/libs/flex-box/lib/es6/index.js +9 -0
- package/libs/flex-box/lib/es6/index.js.map +1 -0
- package/libs/flex-box/lib/es6/utils.js +13 -0
- package/libs/flex-box/lib/es6/utils.js.map +1 -0
- package/libs/flex-box/lib/types/Box/index.d.ts +4 -0
- package/libs/flex-box/lib/types/Box/useBox.d.ts +109 -0
- package/libs/flex-box/lib/types/Flex/index.d.ts +4 -0
- package/libs/flex-box/lib/types/Flex/useFlex.d.ts +54 -0
- package/libs/flex-box/lib/types/index.d.ts +6 -0
- package/libs/flex-box/lib/types/utils.d.ts +1 -0
- package/libs/format-text/lib/cjs/FormatText.js +51 -0
- package/libs/format-text/lib/cjs/FormatText.js.map +1 -0
- package/libs/format-text/lib/cjs/index.js +26 -0
- package/libs/format-text/lib/cjs/index.js.map +1 -0
- package/libs/format-text/lib/es6/FormatText.js +44 -0
- package/libs/format-text/lib/es6/FormatText.js.map +1 -0
- package/libs/format-text/lib/es6/index.js +3 -0
- package/libs/format-text/lib/es6/index.js.map +1 -0
- package/libs/format-text/lib/types/FormatText.d.ts +10 -0
- package/libs/format-text/lib/types/index.d.ts +2 -0
- package/libs/fullscreen-modal/lib/cjs/FullscreenModal.js +219 -0
- package/libs/fullscreen-modal/lib/cjs/FullscreenModal.js.map +1 -0
- package/libs/fullscreen-modal/lib/cjs/index.d.js +2 -0
- package/libs/fullscreen-modal/lib/cjs/index.d.js.map +1 -0
- package/libs/fullscreen-modal/lib/cjs/index.js +14 -0
- package/libs/fullscreen-modal/lib/cjs/index.js.map +1 -0
- package/libs/fullscreen-modal/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/fullscreen-modal/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/fullscreen-modal/lib/cjs/translations/de.json +4 -0
- package/libs/fullscreen-modal/lib/cjs/translations/en.json +4 -0
- package/libs/fullscreen-modal/lib/cjs/translations/es.json +4 -0
- package/libs/fullscreen-modal/lib/cjs/translations/fr.json +4 -0
- package/libs/fullscreen-modal/lib/cjs/translations/it.json +4 -0
- package/libs/fullscreen-modal/lib/cjs/translations/ja.json +4 -0
- package/libs/fullscreen-modal/lib/cjs/translations/ko.json +4 -0
- package/libs/fullscreen-modal/lib/cjs/translations/nl.json +4 -0
- package/libs/fullscreen-modal/lib/cjs/translations/pl.json +4 -0
- package/libs/fullscreen-modal/lib/cjs/translations/pt.json +4 -0
- package/libs/fullscreen-modal/lib/cjs/translations/sv.json +4 -0
- package/libs/fullscreen-modal/lib/cjs/translations/tr.json +4 -0
- package/libs/fullscreen-modal/lib/cjs/translations/vi.json +4 -0
- package/libs/fullscreen-modal/lib/cjs/translations/zh.json +4 -0
- package/libs/fullscreen-modal/lib/es6/FullscreenModal.js +220 -0
- package/libs/fullscreen-modal/lib/es6/FullscreenModal.js.map +1 -0
- package/libs/fullscreen-modal/lib/es6/index.d.js +2 -0
- package/libs/fullscreen-modal/lib/es6/index.d.js.map +1 -0
- package/libs/fullscreen-modal/lib/es6/index.js +2 -0
- package/libs/fullscreen-modal/lib/es6/index.js.map +1 -0
- package/libs/fullscreen-modal/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/fullscreen-modal/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/fullscreen-modal/lib/es6/translations/de.json +4 -0
- package/libs/fullscreen-modal/lib/es6/translations/en.json +4 -0
- package/libs/fullscreen-modal/lib/es6/translations/es.json +4 -0
- package/libs/fullscreen-modal/lib/es6/translations/fr.json +4 -0
- package/libs/fullscreen-modal/lib/es6/translations/it.json +4 -0
- package/libs/fullscreen-modal/lib/es6/translations/ja.json +4 -0
- package/libs/fullscreen-modal/lib/es6/translations/ko.json +4 -0
- package/libs/fullscreen-modal/lib/es6/translations/nl.json +4 -0
- package/libs/fullscreen-modal/lib/es6/translations/pl.json +4 -0
- package/libs/fullscreen-modal/lib/es6/translations/pt.json +4 -0
- package/libs/fullscreen-modal/lib/es6/translations/sv.json +4 -0
- package/libs/fullscreen-modal/lib/es6/translations/tr.json +4 -0
- package/libs/fullscreen-modal/lib/es6/translations/vi.json +4 -0
- package/libs/fullscreen-modal/lib/es6/translations/zh.json +4 -0
- package/libs/fullscreen-modal/lib/types/index.d.ts +48 -0
- package/libs/grid/lib/cjs/Grid.js +218 -0
- package/libs/grid/lib/cjs/Grid.js.map +1 -0
- package/libs/grid/lib/cjs/index.d.js +2 -0
- package/libs/grid/lib/cjs/index.d.js.map +1 -0
- package/libs/grid/lib/cjs/index.js +17 -0
- package/libs/grid/lib/cjs/index.js.map +1 -0
- package/libs/grid/lib/es6/Grid.js +212 -0
- package/libs/grid/lib/es6/Grid.js.map +1 -0
- package/libs/grid/lib/es6/index.d.js +2 -0
- package/libs/grid/lib/es6/index.d.js.map +1 -0
- package/libs/grid/lib/es6/index.js +4 -0
- package/libs/grid/lib/es6/index.js.map +1 -0
- package/libs/grid/lib/types/index.d.ts +48 -0
- package/libs/i18n-unplugin/lib/cjs/index.js +140 -0
- package/libs/i18n-unplugin/lib/cjs/index.js.map +1 -0
- package/libs/i18n-unplugin/lib/es6/index.js +128 -0
- package/libs/i18n-unplugin/lib/es6/index.js.map +1 -0
- package/libs/i18n-unplugin/lib/types/index.d.ts +12 -0
- package/libs/icon/lib/cjs/Icon.js +89 -0
- package/libs/icon/lib/cjs/Icon.js.map +1 -0
- package/libs/icon/lib/cjs/index.d.js +2 -0
- package/libs/icon/lib/cjs/index.d.js.map +1 -0
- package/libs/icon/lib/cjs/index.js +14 -0
- package/libs/icon/lib/cjs/index.js.map +1 -0
- package/libs/icon/lib/es6/Icon.js +82 -0
- package/libs/icon/lib/es6/Icon.js.map +1 -0
- package/libs/icon/lib/es6/index.d.js +2 -0
- package/libs/icon/lib/es6/index.d.js.map +1 -0
- package/libs/icon/lib/es6/index.js +2 -0
- package/libs/icon/lib/es6/index.js.map +1 -0
- package/libs/icon/lib/types/index.d.ts +20 -0
- package/libs/illustration/lib/cjs/index.d.js +2 -0
- package/libs/illustration/lib/cjs/index.d.js.map +1 -0
- package/libs/illustration/lib/cjs/index.js +22 -0
- package/libs/illustration/lib/cjs/index.js.map +1 -0
- package/libs/illustration/lib/es6/index.d.js +2 -0
- package/libs/illustration/lib/es6/index.d.js.map +1 -0
- package/libs/illustration/lib/es6/index.js +15 -0
- package/libs/illustration/lib/es6/index.js.map +1 -0
- package/libs/illustration/lib/types/index.d.ts +55 -0
- package/libs/inline-edit/lib/cjs/InlineEdit.js +156 -0
- package/libs/inline-edit/lib/cjs/InlineEdit.js.map +1 -0
- package/libs/inline-edit/lib/cjs/index.d.js +2 -0
- package/libs/inline-edit/lib/cjs/index.d.js.map +1 -0
- package/libs/inline-edit/lib/cjs/index.js +14 -0
- package/libs/inline-edit/lib/cjs/index.js.map +1 -0
- package/libs/inline-edit/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/inline-edit/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/inline-edit/lib/cjs/translations/de.json +3 -0
- package/libs/inline-edit/lib/cjs/translations/en.json +3 -0
- package/libs/inline-edit/lib/cjs/translations/es.json +3 -0
- package/libs/inline-edit/lib/cjs/translations/fr.json +3 -0
- package/libs/inline-edit/lib/cjs/translations/it.json +3 -0
- package/libs/inline-edit/lib/cjs/translations/ja.json +3 -0
- package/libs/inline-edit/lib/cjs/translations/ko.json +3 -0
- package/libs/inline-edit/lib/cjs/translations/nl.json +3 -0
- package/libs/inline-edit/lib/cjs/translations/pl.json +3 -0
- package/libs/inline-edit/lib/cjs/translations/pt.json +3 -0
- package/libs/inline-edit/lib/cjs/translations/sv.json +3 -0
- package/libs/inline-edit/lib/cjs/translations/tr.json +3 -0
- package/libs/inline-edit/lib/cjs/translations/vi.json +3 -0
- package/libs/inline-edit/lib/cjs/translations/zh.json +3 -0
- package/libs/inline-edit/lib/es6/InlineEdit.js +151 -0
- package/libs/inline-edit/lib/es6/InlineEdit.js.map +1 -0
- package/libs/inline-edit/lib/es6/index.d.js +2 -0
- package/libs/inline-edit/lib/es6/index.d.js.map +1 -0
- package/libs/inline-edit/lib/es6/index.js +2 -0
- package/libs/inline-edit/lib/es6/index.js.map +1 -0
- package/libs/inline-edit/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/inline-edit/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/inline-edit/lib/es6/translations/de.json +3 -0
- package/libs/inline-edit/lib/es6/translations/en.json +3 -0
- package/libs/inline-edit/lib/es6/translations/es.json +3 -0
- package/libs/inline-edit/lib/es6/translations/fr.json +3 -0
- package/libs/inline-edit/lib/es6/translations/it.json +3 -0
- package/libs/inline-edit/lib/es6/translations/ja.json +3 -0
- package/libs/inline-edit/lib/es6/translations/ko.json +3 -0
- package/libs/inline-edit/lib/es6/translations/nl.json +3 -0
- package/libs/inline-edit/lib/es6/translations/pl.json +3 -0
- package/libs/inline-edit/lib/es6/translations/pt.json +3 -0
- package/libs/inline-edit/lib/es6/translations/sv.json +3 -0
- package/libs/inline-edit/lib/es6/translations/tr.json +3 -0
- package/libs/inline-edit/lib/es6/translations/vi.json +3 -0
- package/libs/inline-edit/lib/es6/translations/zh.json +3 -0
- package/libs/inline-edit/lib/types/index.d.ts +43 -0
- package/libs/inline-input/lib/cjs/InlineInput.js +541 -0
- package/libs/inline-input/lib/cjs/InlineInput.js.map +1 -0
- package/libs/inline-input/lib/cjs/index.d.js +2 -0
- package/libs/inline-input/lib/cjs/index.d.js.map +1 -0
- package/libs/inline-input/lib/cjs/index.js +11 -0
- package/libs/inline-input/lib/cjs/index.js.map +1 -0
- package/libs/inline-input/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/inline-input/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/inline-input/lib/cjs/translations/de.json +5 -0
- package/libs/inline-input/lib/cjs/translations/en.json +5 -0
- package/libs/inline-input/lib/cjs/translations/es.json +5 -0
- package/libs/inline-input/lib/cjs/translations/fr.json +5 -0
- package/libs/inline-input/lib/cjs/translations/it.json +5 -0
- package/libs/inline-input/lib/cjs/translations/ja.json +5 -0
- package/libs/inline-input/lib/cjs/translations/ko.json +5 -0
- package/libs/inline-input/lib/cjs/translations/nl.json +5 -0
- package/libs/inline-input/lib/cjs/translations/pl.json +5 -0
- package/libs/inline-input/lib/cjs/translations/pt.json +5 -0
- package/libs/inline-input/lib/cjs/translations/sv.json +5 -0
- package/libs/inline-input/lib/cjs/translations/tr.json +5 -0
- package/libs/inline-input/lib/cjs/translations/vi.json +5 -0
- package/libs/inline-input/lib/cjs/translations/zh.json +5 -0
- package/libs/inline-input/lib/es6/InlineInput.js +542 -0
- package/libs/inline-input/lib/es6/InlineInput.js.map +1 -0
- package/libs/inline-input/lib/es6/index.d.js +2 -0
- package/libs/inline-input/lib/es6/index.d.js.map +1 -0
- package/libs/inline-input/lib/es6/index.js +3 -0
- package/libs/inline-input/lib/es6/index.js.map +1 -0
- package/libs/inline-input/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/inline-input/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/inline-input/lib/es6/translations/de.json +5 -0
- package/libs/inline-input/lib/es6/translations/en.json +5 -0
- package/libs/inline-input/lib/es6/translations/es.json +5 -0
- package/libs/inline-input/lib/es6/translations/fr.json +5 -0
- package/libs/inline-input/lib/es6/translations/it.json +5 -0
- package/libs/inline-input/lib/es6/translations/ja.json +5 -0
- package/libs/inline-input/lib/es6/translations/ko.json +5 -0
- package/libs/inline-input/lib/es6/translations/nl.json +5 -0
- package/libs/inline-input/lib/es6/translations/pl.json +5 -0
- package/libs/inline-input/lib/es6/translations/pt.json +5 -0
- package/libs/inline-input/lib/es6/translations/sv.json +5 -0
- package/libs/inline-input/lib/es6/translations/tr.json +5 -0
- package/libs/inline-input/lib/es6/translations/vi.json +5 -0
- package/libs/inline-input/lib/es6/translations/zh.json +5 -0
- package/libs/inline-input/lib/types/index.d.ts +151 -0
- package/libs/input/lib/cjs/Input.js +223 -0
- package/libs/input/lib/cjs/Input.js.map +1 -0
- package/libs/input/lib/cjs/index.d.js +2 -0
- package/libs/input/lib/cjs/index.d.js.map +1 -0
- package/libs/input/lib/cjs/index.js +14 -0
- package/libs/input/lib/cjs/index.js.map +1 -0
- package/libs/input/lib/es6/Input.js +218 -0
- package/libs/input/lib/es6/Input.js.map +1 -0
- package/libs/input/lib/es6/index.d.js +2 -0
- package/libs/input/lib/es6/index.d.js.map +1 -0
- package/libs/input/lib/es6/index.js +2 -0
- package/libs/input/lib/es6/index.js.map +1 -0
- package/libs/input/lib/types/index.d.ts +92 -0
- package/libs/input-mask/lib/cjs/InputMask.js +336 -0
- package/libs/input-mask/lib/cjs/InputMask.js.map +1 -0
- package/libs/input-mask/lib/cjs/index.js +26 -0
- package/libs/input-mask/lib/cjs/index.js.map +1 -0
- package/libs/input-mask/lib/es6/InputMask.js +329 -0
- package/libs/input-mask/lib/es6/InputMask.js.map +1 -0
- package/libs/input-mask/lib/es6/index.js +3 -0
- package/libs/input-mask/lib/es6/index.js.map +1 -0
- package/libs/input-mask/lib/types/InputMask.d.ts +59 -0
- package/libs/input-mask/lib/types/index.d.ts +2 -0
- package/libs/input-number/lib/cjs/InputNumber.js +251 -0
- package/libs/input-number/lib/cjs/InputNumber.js.map +1 -0
- package/libs/input-number/lib/cjs/buttons.js +31 -0
- package/libs/input-number/lib/cjs/buttons.js.map +1 -0
- package/libs/input-number/lib/cjs/index.d.js +2 -0
- package/libs/input-number/lib/cjs/index.d.js.map +1 -0
- package/libs/input-number/lib/cjs/index.js +33 -0
- package/libs/input-number/lib/cjs/index.js.map +1 -0
- package/libs/input-number/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/input-number/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/input-number/lib/cjs/translations/de.json +4 -0
- package/libs/input-number/lib/cjs/translations/en.json +4 -0
- package/libs/input-number/lib/cjs/translations/es.json +4 -0
- package/libs/input-number/lib/cjs/translations/fr.json +4 -0
- package/libs/input-number/lib/cjs/translations/it.json +4 -0
- package/libs/input-number/lib/cjs/translations/ja.json +4 -0
- package/libs/input-number/lib/cjs/translations/ko.json +4 -0
- package/libs/input-number/lib/cjs/translations/nl.json +4 -0
- package/libs/input-number/lib/cjs/translations/pl.json +4 -0
- package/libs/input-number/lib/cjs/translations/pt.json +4 -0
- package/libs/input-number/lib/cjs/translations/sv.json +4 -0
- package/libs/input-number/lib/cjs/translations/tr.json +4 -0
- package/libs/input-number/lib/cjs/translations/vi.json +4 -0
- package/libs/input-number/lib/cjs/translations/zh.json +4 -0
- package/libs/input-number/lib/es6/InputNumber.js +245 -0
- package/libs/input-number/lib/es6/InputNumber.js.map +1 -0
- package/libs/input-number/lib/es6/buttons.js +22 -0
- package/libs/input-number/lib/es6/buttons.js.map +1 -0
- package/libs/input-number/lib/es6/index.d.js +2 -0
- package/libs/input-number/lib/es6/index.d.js.map +1 -0
- package/libs/input-number/lib/es6/index.js +3 -0
- package/libs/input-number/lib/es6/index.js.map +1 -0
- package/libs/input-number/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/input-number/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/input-number/lib/es6/translations/de.json +4 -0
- package/libs/input-number/lib/es6/translations/en.json +4 -0
- package/libs/input-number/lib/es6/translations/es.json +4 -0
- package/libs/input-number/lib/es6/translations/fr.json +4 -0
- package/libs/input-number/lib/es6/translations/it.json +4 -0
- package/libs/input-number/lib/es6/translations/ja.json +4 -0
- package/libs/input-number/lib/es6/translations/ko.json +4 -0
- package/libs/input-number/lib/es6/translations/nl.json +4 -0
- package/libs/input-number/lib/es6/translations/pl.json +4 -0
- package/libs/input-number/lib/es6/translations/pt.json +4 -0
- package/libs/input-number/lib/es6/translations/sv.json +4 -0
- package/libs/input-number/lib/es6/translations/tr.json +4 -0
- package/libs/input-number/lib/es6/translations/vi.json +4 -0
- package/libs/input-number/lib/es6/translations/zh.json +4 -0
- package/libs/input-number/lib/types/index.d.ts +68 -0
- package/libs/input-tags/lib/cjs/InputTags.js +284 -0
- package/libs/input-tags/lib/cjs/InputTags.js.map +1 -0
- package/libs/input-tags/lib/cjs/index.js +26 -0
- package/libs/input-tags/lib/cjs/index.js.map +1 -0
- package/libs/input-tags/lib/es6/InputTags.js +279 -0
- package/libs/input-tags/lib/es6/InputTags.js.map +1 -0
- package/libs/input-tags/lib/es6/index.js +3 -0
- package/libs/input-tags/lib/es6/index.js.map +1 -0
- package/libs/input-tags/lib/types/InputTags.d.ts +68 -0
- package/libs/input-tags/lib/types/index.d.ts +2 -0
- package/libs/link/lib/cjs/Link.js +122 -0
- package/libs/link/lib/cjs/Link.js.map +1 -0
- package/libs/link/lib/cjs/index.d.js +2 -0
- package/libs/link/lib/cjs/index.d.js.map +1 -0
- package/libs/link/lib/cjs/index.js +14 -0
- package/libs/link/lib/cjs/index.js.map +1 -0
- package/libs/link/lib/es6/Link.js +117 -0
- package/libs/link/lib/es6/Link.js.map +1 -0
- package/libs/link/lib/es6/index.d.js +2 -0
- package/libs/link/lib/es6/index.d.js.map +1 -0
- package/libs/link/lib/es6/index.js +2 -0
- package/libs/link/lib/es6/index.js.map +1 -0
- package/libs/link/lib/types/index.d.ts +42 -0
- package/libs/modal/lib/cjs/Modal.js +242 -0
- package/libs/modal/lib/cjs/Modal.js.map +1 -0
- package/libs/modal/lib/cjs/index.d.js +2 -0
- package/libs/modal/lib/cjs/index.d.js.map +1 -0
- package/libs/modal/lib/cjs/index.js +14 -0
- package/libs/modal/lib/cjs/index.js.map +1 -0
- package/libs/modal/lib/cjs/modal.vo-test.js +106 -0
- package/libs/modal/lib/cjs/modal.vo-test.js.map +1 -0
- package/libs/modal/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/modal/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/modal/lib/cjs/translations/de.json +4 -0
- package/libs/modal/lib/cjs/translations/en.json +4 -0
- package/libs/modal/lib/cjs/translations/es.json +4 -0
- package/libs/modal/lib/cjs/translations/fr.json +4 -0
- package/libs/modal/lib/cjs/translations/it.json +4 -0
- package/libs/modal/lib/cjs/translations/ja.json +4 -0
- package/libs/modal/lib/cjs/translations/ko.json +4 -0
- package/libs/modal/lib/cjs/translations/nl.json +4 -0
- package/libs/modal/lib/cjs/translations/pl.json +4 -0
- package/libs/modal/lib/cjs/translations/pt.json +4 -0
- package/libs/modal/lib/cjs/translations/sv.json +4 -0
- package/libs/modal/lib/cjs/translations/tr.json +4 -0
- package/libs/modal/lib/cjs/translations/vi.json +4 -0
- package/libs/modal/lib/cjs/translations/zh.json +4 -0
- package/libs/modal/lib/es6/Modal.js +239 -0
- package/libs/modal/lib/es6/Modal.js.map +1 -0
- package/libs/modal/lib/es6/index.d.js +2 -0
- package/libs/modal/lib/es6/index.d.js.map +1 -0
- package/libs/modal/lib/es6/index.js +2 -0
- package/libs/modal/lib/es6/index.js.map +1 -0
- package/libs/modal/lib/es6/modal.vo-test.js +103 -0
- package/libs/modal/lib/es6/modal.vo-test.js.map +1 -0
- package/libs/modal/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/modal/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/modal/lib/es6/translations/de.json +4 -0
- package/libs/modal/lib/es6/translations/en.json +4 -0
- package/libs/modal/lib/es6/translations/es.json +4 -0
- package/libs/modal/lib/es6/translations/fr.json +4 -0
- package/libs/modal/lib/es6/translations/it.json +4 -0
- package/libs/modal/lib/es6/translations/ja.json +4 -0
- package/libs/modal/lib/es6/translations/ko.json +4 -0
- package/libs/modal/lib/es6/translations/nl.json +4 -0
- package/libs/modal/lib/es6/translations/pl.json +4 -0
- package/libs/modal/lib/es6/translations/pt.json +4 -0
- package/libs/modal/lib/es6/translations/sv.json +4 -0
- package/libs/modal/lib/es6/translations/tr.json +4 -0
- package/libs/modal/lib/es6/translations/vi.json +4 -0
- package/libs/modal/lib/es6/translations/zh.json +4 -0
- package/libs/modal/lib/types/index.d.ts +61 -0
- package/libs/neighbor-location/lib/cjs/NeighborLocation.js +145 -0
- package/libs/neighbor-location/lib/cjs/NeighborLocation.js.map +1 -0
- package/libs/neighbor-location/lib/cjs/index.d.js +2 -0
- package/libs/neighbor-location/lib/cjs/index.d.js.map +1 -0
- package/libs/neighbor-location/lib/cjs/index.js +26 -0
- package/libs/neighbor-location/lib/cjs/index.js.map +1 -0
- package/libs/neighbor-location/lib/es6/NeighborLocation.js +137 -0
- package/libs/neighbor-location/lib/es6/NeighborLocation.js.map +1 -0
- package/libs/neighbor-location/lib/es6/index.d.js +2 -0
- package/libs/neighbor-location/lib/es6/index.d.js.map +1 -0
- package/libs/neighbor-location/lib/es6/index.js +3 -0
- package/libs/neighbor-location/lib/es6/index.js.map +1 -0
- package/libs/neighbor-location/lib/types/index.d.ts +42 -0
- package/libs/notice/lib/cjs/Notice.js +161 -0
- package/libs/notice/lib/cjs/Notice.js.map +1 -0
- package/libs/notice/lib/cjs/NoticeSmart.js +49 -0
- package/libs/notice/lib/cjs/NoticeSmart.js.map +1 -0
- package/libs/notice/lib/cjs/index.d.js +2 -0
- package/libs/notice/lib/cjs/index.d.js.map +1 -0
- package/libs/notice/lib/cjs/index.js +18 -0
- package/libs/notice/lib/cjs/index.js.map +1 -0
- package/libs/notice/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/notice/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/notice/lib/cjs/translations/de.json +3 -0
- package/libs/notice/lib/cjs/translations/en.json +3 -0
- package/libs/notice/lib/cjs/translations/es.json +3 -0
- package/libs/notice/lib/cjs/translations/fr.json +3 -0
- package/libs/notice/lib/cjs/translations/it.json +3 -0
- package/libs/notice/lib/cjs/translations/ja.json +3 -0
- package/libs/notice/lib/cjs/translations/ko.json +3 -0
- package/libs/notice/lib/cjs/translations/nl.json +3 -0
- package/libs/notice/lib/cjs/translations/pl.json +3 -0
- package/libs/notice/lib/cjs/translations/pt.json +3 -0
- package/libs/notice/lib/cjs/translations/sv.json +3 -0
- package/libs/notice/lib/cjs/translations/tr.json +3 -0
- package/libs/notice/lib/cjs/translations/vi.json +3 -0
- package/libs/notice/lib/cjs/translations/zh.json +3 -0
- package/libs/notice/lib/es6/Notice.js +158 -0
- package/libs/notice/lib/es6/Notice.js.map +1 -0
- package/libs/notice/lib/es6/NoticeSmart.js +41 -0
- package/libs/notice/lib/es6/NoticeSmart.js.map +1 -0
- package/libs/notice/lib/es6/index.d.js +2 -0
- package/libs/notice/lib/es6/index.d.js.map +1 -0
- package/libs/notice/lib/es6/index.js +4 -0
- package/libs/notice/lib/es6/index.js.map +1 -0
- package/libs/notice/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/notice/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/notice/lib/es6/translations/de.json +3 -0
- package/libs/notice/lib/es6/translations/en.json +3 -0
- package/libs/notice/lib/es6/translations/es.json +3 -0
- package/libs/notice/lib/es6/translations/fr.json +3 -0
- package/libs/notice/lib/es6/translations/it.json +3 -0
- package/libs/notice/lib/es6/translations/ja.json +3 -0
- package/libs/notice/lib/es6/translations/ko.json +3 -0
- package/libs/notice/lib/es6/translations/nl.json +3 -0
- package/libs/notice/lib/es6/translations/pl.json +3 -0
- package/libs/notice/lib/es6/translations/pt.json +3 -0
- package/libs/notice/lib/es6/translations/sv.json +3 -0
- package/libs/notice/lib/es6/translations/tr.json +3 -0
- package/libs/notice/lib/es6/translations/vi.json +3 -0
- package/libs/notice/lib/es6/translations/zh.json +3 -0
- package/libs/notice/lib/types/index.d.ts +74 -0
- package/libs/notice-bubble/lib/cjs/NoticeBubble.js +315 -0
- package/libs/notice-bubble/lib/cjs/NoticeBubble.js.map +1 -0
- package/libs/notice-bubble/lib/cjs/NoticeBubbleManager.js +104 -0
- package/libs/notice-bubble/lib/cjs/NoticeBubbleManager.js.map +1 -0
- package/libs/notice-bubble/lib/cjs/index.d.js +20 -0
- package/libs/notice-bubble/lib/cjs/index.d.js.map +1 -0
- package/libs/notice-bubble/lib/cjs/index.js +50 -0
- package/libs/notice-bubble/lib/cjs/index.js.map +1 -0
- package/libs/notice-bubble/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/notice-bubble/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/notice-bubble/lib/cjs/translations/de.json +3 -0
- package/libs/notice-bubble/lib/cjs/translations/en.json +3 -0
- package/libs/notice-bubble/lib/cjs/translations/es.json +3 -0
- package/libs/notice-bubble/lib/cjs/translations/fr.json +3 -0
- package/libs/notice-bubble/lib/cjs/translations/it.json +3 -0
- package/libs/notice-bubble/lib/cjs/translations/ja.json +3 -0
- package/libs/notice-bubble/lib/cjs/translations/ko.json +3 -0
- package/libs/notice-bubble/lib/cjs/translations/nl.json +3 -0
- package/libs/notice-bubble/lib/cjs/translations/pl.json +3 -0
- package/libs/notice-bubble/lib/cjs/translations/pt.json +3 -0
- package/libs/notice-bubble/lib/cjs/translations/sv.json +3 -0
- package/libs/notice-bubble/lib/cjs/translations/tr.json +3 -0
- package/libs/notice-bubble/lib/cjs/translations/vi.json +3 -0
- package/libs/notice-bubble/lib/cjs/translations/zh.json +3 -0
- package/libs/notice-bubble/lib/cjs/utils.js +46 -0
- package/libs/notice-bubble/lib/cjs/utils.js.map +1 -0
- package/libs/notice-bubble/lib/es6/NoticeBubble.js +307 -0
- package/libs/notice-bubble/lib/es6/NoticeBubble.js.map +1 -0
- package/libs/notice-bubble/lib/es6/NoticeBubbleManager.js +96 -0
- package/libs/notice-bubble/lib/es6/NoticeBubbleManager.js.map +1 -0
- package/libs/notice-bubble/lib/es6/index.d.js +18 -0
- package/libs/notice-bubble/lib/es6/index.d.js.map +1 -0
- package/libs/notice-bubble/lib/es6/index.js +7 -0
- package/libs/notice-bubble/lib/es6/index.js.map +1 -0
- package/libs/notice-bubble/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/notice-bubble/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/notice-bubble/lib/es6/translations/de.json +3 -0
- package/libs/notice-bubble/lib/es6/translations/en.json +3 -0
- package/libs/notice-bubble/lib/es6/translations/es.json +3 -0
- package/libs/notice-bubble/lib/es6/translations/fr.json +3 -0
- package/libs/notice-bubble/lib/es6/translations/it.json +3 -0
- package/libs/notice-bubble/lib/es6/translations/ja.json +3 -0
- package/libs/notice-bubble/lib/es6/translations/ko.json +3 -0
- package/libs/notice-bubble/lib/es6/translations/nl.json +3 -0
- package/libs/notice-bubble/lib/es6/translations/pl.json +3 -0
- package/libs/notice-bubble/lib/es6/translations/pt.json +3 -0
- package/libs/notice-bubble/lib/es6/translations/sv.json +3 -0
- package/libs/notice-bubble/lib/es6/translations/tr.json +3 -0
- package/libs/notice-bubble/lib/es6/translations/vi.json +3 -0
- package/libs/notice-bubble/lib/es6/translations/zh.json +3 -0
- package/libs/notice-bubble/lib/es6/utils.js +39 -0
- package/libs/notice-bubble/lib/es6/utils.js.map +1 -0
- package/libs/notice-bubble/lib/types/index.d.ts +145 -0
- package/libs/notice-global/lib/cjs/NoticeGlobal.js +126 -0
- package/libs/notice-global/lib/cjs/NoticeGlobal.js.map +1 -0
- package/libs/notice-global/lib/cjs/index.d.js +2 -0
- package/libs/notice-global/lib/cjs/index.d.js.map +1 -0
- package/libs/notice-global/lib/cjs/index.js +14 -0
- package/libs/notice-global/lib/cjs/index.js.map +1 -0
- package/libs/notice-global/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/notice-global/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/notice-global/lib/cjs/translations/de.json +3 -0
- package/libs/notice-global/lib/cjs/translations/en.json +3 -0
- package/libs/notice-global/lib/cjs/translations/es.json +3 -0
- package/libs/notice-global/lib/cjs/translations/fr.json +3 -0
- package/libs/notice-global/lib/cjs/translations/it.json +3 -0
- package/libs/notice-global/lib/cjs/translations/ja.json +3 -0
- package/libs/notice-global/lib/cjs/translations/ko.json +3 -0
- package/libs/notice-global/lib/cjs/translations/nl.json +3 -0
- package/libs/notice-global/lib/cjs/translations/pl.json +3 -0
- package/libs/notice-global/lib/cjs/translations/pt.json +3 -0
- package/libs/notice-global/lib/cjs/translations/sv.json +3 -0
- package/libs/notice-global/lib/cjs/translations/tr.json +3 -0
- package/libs/notice-global/lib/cjs/translations/vi.json +3 -0
- package/libs/notice-global/lib/cjs/translations/zh.json +3 -0
- package/libs/notice-global/lib/es6/NoticeGlobal.js +121 -0
- package/libs/notice-global/lib/es6/NoticeGlobal.js.map +1 -0
- package/libs/notice-global/lib/es6/index.d.js +2 -0
- package/libs/notice-global/lib/es6/index.d.js.map +1 -0
- package/libs/notice-global/lib/es6/index.js +2 -0
- package/libs/notice-global/lib/es6/index.js.map +1 -0
- package/libs/notice-global/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/notice-global/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/notice-global/lib/es6/translations/de.json +3 -0
- package/libs/notice-global/lib/es6/translations/en.json +3 -0
- package/libs/notice-global/lib/es6/translations/es.json +3 -0
- package/libs/notice-global/lib/es6/translations/fr.json +3 -0
- package/libs/notice-global/lib/es6/translations/it.json +3 -0
- package/libs/notice-global/lib/es6/translations/ja.json +3 -0
- package/libs/notice-global/lib/es6/translations/ko.json +3 -0
- package/libs/notice-global/lib/es6/translations/nl.json +3 -0
- package/libs/notice-global/lib/es6/translations/pl.json +3 -0
- package/libs/notice-global/lib/es6/translations/pt.json +3 -0
- package/libs/notice-global/lib/es6/translations/sv.json +3 -0
- package/libs/notice-global/lib/es6/translations/tr.json +3 -0
- package/libs/notice-global/lib/es6/translations/vi.json +3 -0
- package/libs/notice-global/lib/es6/translations/zh.json +3 -0
- package/libs/notice-global/lib/types/index.d.ts +36 -0
- package/libs/outside-click/lib/cjs/OutsideClick.js +61 -0
- package/libs/outside-click/lib/cjs/OutsideClick.js.map +1 -0
- package/libs/outside-click/lib/cjs/index.js +26 -0
- package/libs/outside-click/lib/cjs/index.js.map +1 -0
- package/libs/outside-click/lib/es6/OutsideClick.js +55 -0
- package/libs/outside-click/lib/es6/OutsideClick.js.map +1 -0
- package/libs/outside-click/lib/es6/index.js +3 -0
- package/libs/outside-click/lib/es6/index.js.map +1 -0
- package/libs/outside-click/lib/types/OutsideClick.d.ts +24 -0
- package/libs/outside-click/lib/types/index.d.ts +2 -0
- package/libs/pagination/lib/cjs/Pagination.js +432 -0
- package/libs/pagination/lib/cjs/Pagination.js.map +1 -0
- package/libs/pagination/lib/cjs/index.d.js +2 -0
- package/libs/pagination/lib/cjs/index.d.js.map +1 -0
- package/libs/pagination/lib/cjs/index.js +14 -0
- package/libs/pagination/lib/cjs/index.js.map +1 -0
- package/libs/pagination/lib/cjs/translations/__intergalactic-dynamic-locales.js +41 -0
- package/libs/pagination/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/pagination/lib/cjs/translations/de.json +14 -0
- package/libs/pagination/lib/cjs/translations/en.json +14 -0
- package/libs/pagination/lib/cjs/translations/es.json +14 -0
- package/libs/pagination/lib/cjs/translations/fr.json +14 -0
- package/libs/pagination/lib/cjs/translations/it.json +14 -0
- package/libs/pagination/lib/cjs/translations/ja.json +14 -0
- package/libs/pagination/lib/cjs/translations/ko.json +14 -0
- package/libs/pagination/lib/cjs/translations/nl.json +14 -0
- package/libs/pagination/lib/cjs/translations/pl.json +14 -0
- package/libs/pagination/lib/cjs/translations/pt.json +14 -0
- package/libs/pagination/lib/cjs/translations/ru.json +6 -0
- package/libs/pagination/lib/cjs/translations/sv.json +14 -0
- package/libs/pagination/lib/cjs/translations/tr.json +14 -0
- package/libs/pagination/lib/cjs/translations/vi.json +14 -0
- package/libs/pagination/lib/cjs/translations/zh.json +14 -0
- package/libs/pagination/lib/es6/Pagination.js +432 -0
- package/libs/pagination/lib/es6/Pagination.js.map +1 -0
- package/libs/pagination/lib/es6/index.d.js +2 -0
- package/libs/pagination/lib/es6/index.d.js.map +1 -0
- package/libs/pagination/lib/es6/index.js +2 -0
- package/libs/pagination/lib/es6/index.js.map +1 -0
- package/libs/pagination/lib/es6/translations/__intergalactic-dynamic-locales.js +33 -0
- package/libs/pagination/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/pagination/lib/es6/translations/de.json +14 -0
- package/libs/pagination/lib/es6/translations/en.json +14 -0
- package/libs/pagination/lib/es6/translations/es.json +14 -0
- package/libs/pagination/lib/es6/translations/fr.json +14 -0
- package/libs/pagination/lib/es6/translations/it.json +14 -0
- package/libs/pagination/lib/es6/translations/ja.json +14 -0
- package/libs/pagination/lib/es6/translations/ko.json +14 -0
- package/libs/pagination/lib/es6/translations/nl.json +14 -0
- package/libs/pagination/lib/es6/translations/pl.json +14 -0
- package/libs/pagination/lib/es6/translations/pt.json +14 -0
- package/libs/pagination/lib/es6/translations/ru.json +6 -0
- package/libs/pagination/lib/es6/translations/sv.json +14 -0
- package/libs/pagination/lib/es6/translations/tr.json +14 -0
- package/libs/pagination/lib/es6/translations/vi.json +14 -0
- package/libs/pagination/lib/es6/translations/zh.json +14 -0
- package/libs/pagination/lib/types/index.d.ts +76 -0
- package/libs/pills/lib/cjs/Pills.js +228 -0
- package/libs/pills/lib/cjs/Pills.js.map +1 -0
- package/libs/pills/lib/cjs/index.d.js +2 -0
- package/libs/pills/lib/cjs/index.d.js.map +1 -0
- package/libs/pills/lib/cjs/index.js +14 -0
- package/libs/pills/lib/cjs/index.js.map +1 -0
- package/libs/pills/lib/es6/Pills.js +224 -0
- package/libs/pills/lib/es6/Pills.js.map +1 -0
- package/libs/pills/lib/es6/index.d.js +2 -0
- package/libs/pills/lib/es6/index.d.js.map +1 -0
- package/libs/pills/lib/es6/index.js +2 -0
- package/libs/pills/lib/es6/index.js.map +1 -0
- package/libs/pills/lib/types/index.d.ts +94 -0
- package/libs/popper/lib/cjs/Popper.js +596 -0
- package/libs/popper/lib/cjs/Popper.js.map +1 -0
- package/libs/popper/lib/cjs/arrowOffset.js +66 -0
- package/libs/popper/lib/cjs/arrowOffset.js.map +1 -0
- package/libs/popper/lib/cjs/createPopper.js +15 -0
- package/libs/popper/lib/cjs/createPopper.js.map +1 -0
- package/libs/popper/lib/cjs/index.d.js +2 -0
- package/libs/popper/lib/cjs/index.d.js.map +1 -0
- package/libs/popper/lib/cjs/index.js +14 -0
- package/libs/popper/lib/cjs/index.js.map +1 -0
- package/libs/popper/lib/es6/Popper.js +590 -0
- package/libs/popper/lib/es6/Popper.js.map +1 -0
- package/libs/popper/lib/es6/arrowOffset.js +58 -0
- package/libs/popper/lib/es6/arrowOffset.js.map +1 -0
- package/libs/popper/lib/es6/createPopper.js +7 -0
- package/libs/popper/lib/es6/createPopper.js.map +1 -0
- package/libs/popper/lib/es6/index.d.js +2 -0
- package/libs/popper/lib/es6/index.d.js.map +1 -0
- package/libs/popper/lib/es6/index.js +2 -0
- package/libs/popper/lib/es6/index.js.map +1 -0
- package/libs/popper/lib/types/index.d.ts +134 -0
- package/libs/portal/lib/cjs/Portal.js +48 -0
- package/libs/portal/lib/cjs/Portal.js.map +1 -0
- package/libs/portal/lib/cjs/index.js +26 -0
- package/libs/portal/lib/cjs/index.js.map +1 -0
- package/libs/portal/lib/es6/Portal.js +42 -0
- package/libs/portal/lib/es6/Portal.js.map +1 -0
- package/libs/portal/lib/es6/index.js +3 -0
- package/libs/portal/lib/es6/index.js.map +1 -0
- package/libs/portal/lib/types/Portal.d.ts +16 -0
- package/libs/portal/lib/types/index.d.ts +2 -0
- package/libs/product-head/lib/cjs/Info.js +68 -0
- package/libs/product-head/lib/cjs/Info.js.map +1 -0
- package/libs/product-head/lib/cjs/ProductHead.js +70 -0
- package/libs/product-head/lib/cjs/ProductHead.js.map +1 -0
- package/libs/product-head/lib/cjs/Title.js +64 -0
- package/libs/product-head/lib/cjs/Title.js.map +1 -0
- package/libs/product-head/lib/cjs/index.js +55 -0
- package/libs/product-head/lib/cjs/index.js.map +1 -0
- package/libs/product-head/lib/es6/Info.js +63 -0
- package/libs/product-head/lib/es6/Info.js.map +1 -0
- package/libs/product-head/lib/es6/ProductHead.js +66 -0
- package/libs/product-head/lib/es6/ProductHead.js.map +1 -0
- package/libs/product-head/lib/es6/Title.js +58 -0
- package/libs/product-head/lib/es6/Title.js.map +1 -0
- package/libs/product-head/lib/es6/index.js +6 -0
- package/libs/product-head/lib/es6/index.js.map +1 -0
- package/libs/product-head/lib/types/Info.d.ts +16 -0
- package/libs/product-head/lib/types/ProductHead.d.ts +7 -0
- package/libs/product-head/lib/types/Title.d.ts +13 -0
- package/libs/product-head/lib/types/index.d.ts +5 -0
- package/libs/progress-bar/lib/cjs/ProgressBar.js +119 -0
- package/libs/progress-bar/lib/cjs/ProgressBar.js.map +1 -0
- package/libs/progress-bar/lib/cjs/index.d.js +2 -0
- package/libs/progress-bar/lib/cjs/index.d.js.map +1 -0
- package/libs/progress-bar/lib/cjs/index.js +14 -0
- package/libs/progress-bar/lib/cjs/index.js.map +1 -0
- package/libs/progress-bar/lib/es6/ProgressBar.js +113 -0
- package/libs/progress-bar/lib/es6/ProgressBar.js.map +1 -0
- package/libs/progress-bar/lib/es6/index.d.js +2 -0
- package/libs/progress-bar/lib/es6/index.d.js.map +1 -0
- package/libs/progress-bar/lib/es6/index.js +2 -0
- package/libs/progress-bar/lib/es6/index.js.map +1 -0
- package/libs/progress-bar/lib/types/index.d.ts +44 -0
- package/libs/radio/lib/cjs/Radio.js +377 -0
- package/libs/radio/lib/cjs/Radio.js.map +1 -0
- package/libs/radio/lib/cjs/index.d.js +2 -0
- package/libs/radio/lib/cjs/index.d.js.map +1 -0
- package/libs/radio/lib/cjs/index.js +26 -0
- package/libs/radio/lib/cjs/index.js.map +1 -0
- package/libs/radio/lib/es6/Radio.js +368 -0
- package/libs/radio/lib/es6/Radio.js.map +1 -0
- package/libs/radio/lib/es6/index.d.js +2 -0
- package/libs/radio/lib/es6/index.d.js.map +1 -0
- package/libs/radio/lib/es6/index.js +3 -0
- package/libs/radio/lib/es6/index.js.map +1 -0
- package/libs/radio/lib/types/index.d.ts +138 -0
- package/libs/scroll-area/lib/cjs/ScrollArea.js +302 -0
- package/libs/scroll-area/lib/cjs/ScrollArea.js.map +1 -0
- package/libs/scroll-area/lib/cjs/ScrollBar.js +393 -0
- package/libs/scroll-area/lib/cjs/ScrollBar.js.map +1 -0
- package/libs/scroll-area/lib/cjs/index.d.js +2 -0
- package/libs/scroll-area/lib/cjs/index.d.js.map +1 -0
- package/libs/scroll-area/lib/cjs/index.js +26 -0
- package/libs/scroll-area/lib/cjs/index.js.map +1 -0
- package/libs/scroll-area/lib/es6/ScrollArea.js +295 -0
- package/libs/scroll-area/lib/es6/ScrollArea.js.map +1 -0
- package/libs/scroll-area/lib/es6/ScrollBar.js +386 -0
- package/libs/scroll-area/lib/es6/ScrollBar.js.map +1 -0
- package/libs/scroll-area/lib/es6/index.d.js +2 -0
- package/libs/scroll-area/lib/es6/index.d.js.map +1 -0
- package/libs/scroll-area/lib/es6/index.js +3 -0
- package/libs/scroll-area/lib/es6/index.js.map +1 -0
- package/libs/scroll-area/lib/types/index.d.ts +58 -0
- package/libs/select/lib/cjs/InputSearch.js +150 -0
- package/libs/select/lib/cjs/InputSearch.js.map +1 -0
- package/libs/select/lib/cjs/Select.js +405 -0
- package/libs/select/lib/cjs/Select.js.map +1 -0
- package/libs/select/lib/cjs/context.js +11 -0
- package/libs/select/lib/cjs/context.js.map +1 -0
- package/libs/select/lib/cjs/index.d.js +2 -0
- package/libs/select/lib/cjs/index.d.js.map +1 -0
- package/libs/select/lib/cjs/index.js +21 -0
- package/libs/select/lib/cjs/index.js.map +1 -0
- package/libs/select/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/select/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/select/lib/cjs/translations/de.json +6 -0
- package/libs/select/lib/cjs/translations/en.json +6 -0
- package/libs/select/lib/cjs/translations/es.json +6 -0
- package/libs/select/lib/cjs/translations/fr.json +6 -0
- package/libs/select/lib/cjs/translations/it.json +6 -0
- package/libs/select/lib/cjs/translations/ja.json +6 -0
- package/libs/select/lib/cjs/translations/ko.json +6 -0
- package/libs/select/lib/cjs/translations/nl.json +6 -0
- package/libs/select/lib/cjs/translations/pl.json +6 -0
- package/libs/select/lib/cjs/translations/pt.json +6 -0
- package/libs/select/lib/cjs/translations/sv.json +6 -0
- package/libs/select/lib/cjs/translations/tr.json +6 -0
- package/libs/select/lib/cjs/translations/vi.json +6 -0
- package/libs/select/lib/cjs/translations/zh.json +6 -0
- package/libs/select/lib/es6/InputSearch.js +146 -0
- package/libs/select/lib/es6/InputSearch.js.map +1 -0
- package/libs/select/lib/es6/Select.js +401 -0
- package/libs/select/lib/es6/Select.js.map +1 -0
- package/libs/select/lib/es6/context.js +3 -0
- package/libs/select/lib/es6/context.js.map +1 -0
- package/libs/select/lib/es6/index.d.js +2 -0
- package/libs/select/lib/es6/index.d.js.map +1 -0
- package/libs/select/lib/es6/index.js +3 -0
- package/libs/select/lib/es6/index.js.map +1 -0
- package/libs/select/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/select/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/select/lib/es6/translations/de.json +6 -0
- package/libs/select/lib/es6/translations/en.json +6 -0
- package/libs/select/lib/es6/translations/es.json +6 -0
- package/libs/select/lib/es6/translations/fr.json +6 -0
- package/libs/select/lib/es6/translations/it.json +6 -0
- package/libs/select/lib/es6/translations/ja.json +6 -0
- package/libs/select/lib/es6/translations/ko.json +6 -0
- package/libs/select/lib/es6/translations/nl.json +6 -0
- package/libs/select/lib/es6/translations/pl.json +6 -0
- package/libs/select/lib/es6/translations/pt.json +6 -0
- package/libs/select/lib/es6/translations/sv.json +6 -0
- package/libs/select/lib/es6/translations/tr.json +6 -0
- package/libs/select/lib/es6/translations/vi.json +6 -0
- package/libs/select/lib/es6/translations/zh.json +6 -0
- package/libs/select/lib/types/index.d.ts +162 -0
- package/libs/side-panel/lib/cjs/SidePanel.js +270 -0
- package/libs/side-panel/lib/cjs/SidePanel.js.map +1 -0
- package/libs/side-panel/lib/cjs/index.d.js +2 -0
- package/libs/side-panel/lib/cjs/index.d.js.map +1 -0
- package/libs/side-panel/lib/cjs/index.js +14 -0
- package/libs/side-panel/lib/cjs/index.js.map +1 -0
- package/libs/side-panel/lib/es6/SidePanel.js +271 -0
- package/libs/side-panel/lib/es6/SidePanel.js.map +1 -0
- package/libs/side-panel/lib/es6/index.d.js +2 -0
- package/libs/side-panel/lib/es6/index.d.js.map +1 -0
- package/libs/side-panel/lib/es6/index.js +2 -0
- package/libs/side-panel/lib/es6/index.js.map +1 -0
- package/libs/side-panel/lib/types/index.d.ts +85 -0
- package/libs/skeleton/lib/cjs/Charts/Area.js +44 -0
- package/libs/skeleton/lib/cjs/Charts/Area.js.map +1 -0
- package/libs/skeleton/lib/cjs/Charts/Bar.js +54 -0
- package/libs/skeleton/lib/cjs/Charts/Bar.js.map +1 -0
- package/libs/skeleton/lib/cjs/Charts/Bubble.js +38 -0
- package/libs/skeleton/lib/cjs/Charts/Bubble.js.map +1 -0
- package/libs/skeleton/lib/cjs/Charts/Donut.js +48 -0
- package/libs/skeleton/lib/cjs/Charts/Donut.js.map +1 -0
- package/libs/skeleton/lib/cjs/Charts/Histogram.js +54 -0
- package/libs/skeleton/lib/cjs/Charts/Histogram.js.map +1 -0
- package/libs/skeleton/lib/cjs/Charts/Line.js +44 -0
- package/libs/skeleton/lib/cjs/Charts/Line.js.map +1 -0
- package/libs/skeleton/lib/cjs/Charts/RadialTree.js +38 -0
- package/libs/skeleton/lib/cjs/Charts/RadialTree.js.map +1 -0
- package/libs/skeleton/lib/cjs/Charts/ScatterPlot.js +38 -0
- package/libs/skeleton/lib/cjs/Charts/ScatterPlot.js.map +1 -0
- package/libs/skeleton/lib/cjs/Charts/Venn.js +38 -0
- package/libs/skeleton/lib/cjs/Charts/Venn.js.map +1 -0
- package/libs/skeleton/lib/cjs/Charts/index.js +70 -0
- package/libs/skeleton/lib/cjs/Charts/index.js.map +1 -0
- package/libs/skeleton/lib/cjs/Skeleton.d.js +2 -0
- package/libs/skeleton/lib/cjs/Skeleton.d.js.map +1 -0
- package/libs/skeleton/lib/cjs/Skeleton.js +165 -0
- package/libs/skeleton/lib/cjs/Skeleton.js.map +1 -0
- package/libs/skeleton/lib/cjs/index.d.js +2 -0
- package/libs/skeleton/lib/cjs/index.d.js.map +1 -0
- package/libs/skeleton/lib/cjs/index.js +27 -0
- package/libs/skeleton/lib/cjs/index.js.map +1 -0
- package/libs/skeleton/lib/cjs/svg/area-chart-linear.svg +3 -0
- package/libs/skeleton/lib/cjs/svg/area-chart-monotone.svg +3 -0
- package/libs/skeleton/lib/cjs/svg/bar-chart-horizontal.svg +6 -0
- package/libs/skeleton/lib/cjs/svg/bar-chart-vertical.svg +7 -0
- package/libs/skeleton/lib/cjs/svg/bubble-chart.svg +7 -0
- package/libs/skeleton/lib/cjs/svg/donut-chart-halfsize.svg +4 -0
- package/libs/skeleton/lib/cjs/svg/donut-chart.svg +9 -0
- package/libs/skeleton/lib/cjs/svg/histogram-chart-horizontal.svg +6 -0
- package/libs/skeleton/lib/cjs/svg/histogram-chart-vertical.svg +7 -0
- package/libs/skeleton/lib/cjs/svg/line-chart-linear.svg +10 -0
- package/libs/skeleton/lib/cjs/svg/line-chart-monotone.svg +3 -0
- package/libs/skeleton/lib/cjs/svg/radial-chart.svg +19 -0
- package/libs/skeleton/lib/cjs/svg/scatter-plot-chart.svg +16 -0
- package/libs/skeleton/lib/cjs/svg/venn-chart.svg +13 -0
- package/libs/skeleton/lib/es6/Charts/Area.js +37 -0
- package/libs/skeleton/lib/es6/Charts/Area.js.map +1 -0
- package/libs/skeleton/lib/es6/Charts/Bar.js +47 -0
- package/libs/skeleton/lib/es6/Charts/Bar.js.map +1 -0
- package/libs/skeleton/lib/es6/Charts/Bubble.js +31 -0
- package/libs/skeleton/lib/es6/Charts/Bubble.js.map +1 -0
- package/libs/skeleton/lib/es6/Charts/Donut.js +41 -0
- package/libs/skeleton/lib/es6/Charts/Donut.js.map +1 -0
- package/libs/skeleton/lib/es6/Charts/Histogram.js +47 -0
- package/libs/skeleton/lib/es6/Charts/Histogram.js.map +1 -0
- package/libs/skeleton/lib/es6/Charts/Line.js +37 -0
- package/libs/skeleton/lib/es6/Charts/Line.js.map +1 -0
- package/libs/skeleton/lib/es6/Charts/RadialTree.js +31 -0
- package/libs/skeleton/lib/es6/Charts/RadialTree.js.map +1 -0
- package/libs/skeleton/lib/es6/Charts/ScatterPlot.js +31 -0
- package/libs/skeleton/lib/es6/Charts/ScatterPlot.js.map +1 -0
- package/libs/skeleton/lib/es6/Charts/Venn.js +31 -0
- package/libs/skeleton/lib/es6/Charts/Venn.js.map +1 -0
- package/libs/skeleton/lib/es6/Charts/index.js +10 -0
- package/libs/skeleton/lib/es6/Charts/index.js.map +1 -0
- package/libs/skeleton/lib/es6/Skeleton.d.js +2 -0
- package/libs/skeleton/lib/es6/Skeleton.d.js.map +1 -0
- package/libs/skeleton/lib/es6/Skeleton.js +159 -0
- package/libs/skeleton/lib/es6/Skeleton.js.map +1 -0
- package/libs/skeleton/lib/es6/index.d.js +2 -0
- package/libs/skeleton/lib/es6/index.d.js.map +1 -0
- package/libs/skeleton/lib/es6/index.js +3 -0
- package/libs/skeleton/lib/es6/index.js.map +1 -0
- package/libs/skeleton/lib/es6/svg/area-chart-linear.svg +3 -0
- package/libs/skeleton/lib/es6/svg/area-chart-monotone.svg +3 -0
- package/libs/skeleton/lib/es6/svg/bar-chart-horizontal.svg +6 -0
- package/libs/skeleton/lib/es6/svg/bar-chart-vertical.svg +7 -0
- package/libs/skeleton/lib/es6/svg/bubble-chart.svg +7 -0
- package/libs/skeleton/lib/es6/svg/donut-chart-halfsize.svg +4 -0
- package/libs/skeleton/lib/es6/svg/donut-chart.svg +9 -0
- package/libs/skeleton/lib/es6/svg/histogram-chart-horizontal.svg +6 -0
- package/libs/skeleton/lib/es6/svg/histogram-chart-vertical.svg +7 -0
- package/libs/skeleton/lib/es6/svg/line-chart-linear.svg +10 -0
- package/libs/skeleton/lib/es6/svg/line-chart-monotone.svg +3 -0
- package/libs/skeleton/lib/es6/svg/radial-chart.svg +19 -0
- package/libs/skeleton/lib/es6/svg/scatter-plot-chart.svg +16 -0
- package/libs/skeleton/lib/es6/svg/venn-chart.svg +13 -0
- package/libs/skeleton/lib/types/Skeleton.d.ts +4 -0
- package/libs/skeleton/lib/types/index.d.ts +86 -0
- package/libs/slider/lib/cjs/Slider.js +312 -0
- package/libs/slider/lib/cjs/Slider.js.map +1 -0
- package/libs/slider/lib/cjs/index.d.js +2 -0
- package/libs/slider/lib/cjs/index.d.js.map +1 -0
- package/libs/slider/lib/cjs/index.js +14 -0
- package/libs/slider/lib/cjs/index.js.map +1 -0
- package/libs/slider/lib/es6/Slider.js +309 -0
- package/libs/slider/lib/es6/Slider.js.map +1 -0
- package/libs/slider/lib/es6/index.d.js +2 -0
- package/libs/slider/lib/es6/index.d.js.map +1 -0
- package/libs/slider/lib/es6/index.js +2 -0
- package/libs/slider/lib/es6/index.js.map +1 -0
- package/libs/slider/lib/types/index.d.ts +83 -0
- package/libs/spin/lib/cjs/Spin.js +74 -0
- package/libs/spin/lib/cjs/Spin.js.map +1 -0
- package/libs/spin/lib/cjs/index.d.js +2 -0
- package/libs/spin/lib/cjs/index.d.js.map +1 -0
- package/libs/spin/lib/cjs/index.js +14 -0
- package/libs/spin/lib/cjs/index.js.map +1 -0
- package/libs/spin/lib/es6/Spin.js +67 -0
- package/libs/spin/lib/es6/Spin.js.map +1 -0
- package/libs/spin/lib/es6/index.d.js +2 -0
- package/libs/spin/lib/es6/index.d.js.map +1 -0
- package/libs/spin/lib/es6/index.js +2 -0
- package/libs/spin/lib/es6/index.js.map +1 -0
- package/libs/spin/lib/types/index.d.ts +26 -0
- package/libs/spin-container/lib/cjs/SpinContainer.js +142 -0
- package/libs/spin-container/lib/cjs/SpinContainer.js.map +1 -0
- package/libs/spin-container/lib/cjs/index.d.js +2 -0
- package/libs/spin-container/lib/cjs/index.d.js.map +1 -0
- package/libs/spin-container/lib/cjs/index.js +14 -0
- package/libs/spin-container/lib/cjs/index.js.map +1 -0
- package/libs/spin-container/lib/es6/SpinContainer.js +137 -0
- package/libs/spin-container/lib/es6/SpinContainer.js.map +1 -0
- package/libs/spin-container/lib/es6/index.d.js +2 -0
- package/libs/spin-container/lib/es6/index.d.js.map +1 -0
- package/libs/spin-container/lib/es6/index.js +2 -0
- package/libs/spin-container/lib/es6/index.js.map +1 -0
- package/libs/spin-container/lib/types/index.d.ts +52 -0
- package/libs/sticky/lib/cjs/Sticky.js +53 -0
- package/libs/sticky/lib/cjs/Sticky.js.map +1 -0
- package/libs/sticky/lib/cjs/index.js +26 -0
- package/libs/sticky/lib/cjs/index.js.map +1 -0
- package/libs/sticky/lib/es6/Sticky.js +46 -0
- package/libs/sticky/lib/es6/Sticky.js.map +1 -0
- package/libs/sticky/lib/es6/index.js +3 -0
- package/libs/sticky/lib/es6/index.js.map +1 -0
- package/libs/sticky/lib/types/Sticky.d.ts +17 -0
- package/libs/sticky/lib/types/index.d.ts +2 -0
- package/libs/switch/lib/cjs/Switch.js +287 -0
- package/libs/switch/lib/cjs/Switch.js.map +1 -0
- package/libs/switch/lib/cjs/index.d.js +13 -0
- package/libs/switch/lib/cjs/index.d.js.map +1 -0
- package/libs/switch/lib/cjs/index.js +26 -0
- package/libs/switch/lib/cjs/index.js.map +1 -0
- package/libs/switch/lib/es6/Switch.js +276 -0
- package/libs/switch/lib/es6/Switch.js.map +1 -0
- package/libs/switch/lib/es6/index.d.js +3 -0
- package/libs/switch/lib/es6/index.d.js.map +1 -0
- package/libs/switch/lib/es6/index.js +3 -0
- package/libs/switch/lib/es6/index.js.map +1 -0
- package/libs/switch/lib/types/index.d.ts +61 -0
- package/libs/tab-line/lib/cjs/TabLine.js +261 -0
- package/libs/tab-line/lib/cjs/TabLine.js.map +1 -0
- package/libs/tab-line/lib/cjs/index.d.js +2 -0
- package/libs/tab-line/lib/cjs/index.d.js.map +1 -0
- package/libs/tab-line/lib/cjs/index.js +14 -0
- package/libs/tab-line/lib/cjs/index.js.map +1 -0
- package/libs/tab-line/lib/es6/TabLine.js +257 -0
- package/libs/tab-line/lib/es6/TabLine.js.map +1 -0
- package/libs/tab-line/lib/es6/index.d.js +2 -0
- package/libs/tab-line/lib/es6/index.d.js.map +1 -0
- package/libs/tab-line/lib/es6/index.js +2 -0
- package/libs/tab-line/lib/es6/index.js.map +1 -0
- package/libs/tab-line/lib/types/index.d.ts +93 -0
- package/libs/tab-panel/lib/cjs/TabPanel.js +154 -0
- package/libs/tab-panel/lib/cjs/TabPanel.js.map +1 -0
- package/libs/tab-panel/lib/cjs/index.d.js +2 -0
- package/libs/tab-panel/lib/cjs/index.d.js.map +1 -0
- package/libs/tab-panel/lib/cjs/index.js +14 -0
- package/libs/tab-panel/lib/cjs/index.js.map +1 -0
- package/libs/tab-panel/lib/es6/TabPanel.js +150 -0
- package/libs/tab-panel/lib/es6/TabPanel.js.map +1 -0
- package/libs/tab-panel/lib/es6/index.d.js +2 -0
- package/libs/tab-panel/lib/es6/index.d.js.map +1 -0
- package/libs/tab-panel/lib/es6/index.js +2 -0
- package/libs/tab-panel/lib/es6/index.js.map +1 -0
- package/libs/tab-panel/lib/types/index.d.ts +81 -0
- package/libs/tag/lib/cjs/Tag.js +207 -0
- package/libs/tag/lib/cjs/Tag.js.map +1 -0
- package/libs/tag/lib/cjs/index.d.js +2 -0
- package/libs/tag/lib/cjs/index.d.js.map +1 -0
- package/libs/tag/lib/cjs/index.js +14 -0
- package/libs/tag/lib/cjs/index.js.map +1 -0
- package/libs/tag/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/tag/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/tag/lib/cjs/translations/de.json +3 -0
- package/libs/tag/lib/cjs/translations/en.json +3 -0
- package/libs/tag/lib/cjs/translations/es.json +3 -0
- package/libs/tag/lib/cjs/translations/fr.json +3 -0
- package/libs/tag/lib/cjs/translations/it.json +3 -0
- package/libs/tag/lib/cjs/translations/ja.json +3 -0
- package/libs/tag/lib/cjs/translations/ko.json +3 -0
- package/libs/tag/lib/cjs/translations/nl.json +3 -0
- package/libs/tag/lib/cjs/translations/pl.json +3 -0
- package/libs/tag/lib/cjs/translations/pt.json +3 -0
- package/libs/tag/lib/cjs/translations/sv.json +3 -0
- package/libs/tag/lib/cjs/translations/tr.json +3 -0
- package/libs/tag/lib/cjs/translations/vi.json +3 -0
- package/libs/tag/lib/cjs/translations/zh.json +3 -0
- package/libs/tag/lib/es6/Tag.js +204 -0
- package/libs/tag/lib/es6/Tag.js.map +1 -0
- package/libs/tag/lib/es6/index.d.js +2 -0
- package/libs/tag/lib/es6/index.d.js.map +1 -0
- package/libs/tag/lib/es6/index.js +2 -0
- package/libs/tag/lib/es6/index.js.map +1 -0
- package/libs/tag/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/tag/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/tag/lib/es6/translations/de.json +3 -0
- package/libs/tag/lib/es6/translations/en.json +3 -0
- package/libs/tag/lib/es6/translations/es.json +3 -0
- package/libs/tag/lib/es6/translations/fr.json +3 -0
- package/libs/tag/lib/es6/translations/it.json +3 -0
- package/libs/tag/lib/es6/translations/ja.json +3 -0
- package/libs/tag/lib/es6/translations/ko.json +3 -0
- package/libs/tag/lib/es6/translations/nl.json +3 -0
- package/libs/tag/lib/es6/translations/pl.json +3 -0
- package/libs/tag/lib/es6/translations/pt.json +3 -0
- package/libs/tag/lib/es6/translations/sv.json +3 -0
- package/libs/tag/lib/es6/translations/tr.json +3 -0
- package/libs/tag/lib/es6/translations/vi.json +3 -0
- package/libs/tag/lib/es6/translations/zh.json +3 -0
- package/libs/tag/lib/types/index.d.ts +88 -0
- package/libs/textarea/lib/cjs/Textarea.js +151 -0
- package/libs/textarea/lib/cjs/Textarea.js.map +1 -0
- package/libs/textarea/lib/cjs/index.d.js +2 -0
- package/libs/textarea/lib/cjs/index.d.js.map +1 -0
- package/libs/textarea/lib/cjs/index.js +14 -0
- package/libs/textarea/lib/cjs/index.js.map +1 -0
- package/libs/textarea/lib/es6/Textarea.js +144 -0
- package/libs/textarea/lib/es6/Textarea.js.map +1 -0
- package/libs/textarea/lib/es6/index.d.js +2 -0
- package/libs/textarea/lib/es6/index.d.js.map +1 -0
- package/libs/textarea/lib/es6/index.js +2 -0
- package/libs/textarea/lib/es6/index.js.map +1 -0
- package/libs/textarea/lib/types/index.d.ts +45 -0
- package/libs/time-picker/lib/cjs/PickerFormat.js +55 -0
- package/libs/time-picker/lib/cjs/PickerFormat.js.map +1 -0
- package/libs/time-picker/lib/cjs/PickerInput.js +306 -0
- package/libs/time-picker/lib/cjs/PickerInput.js.map +1 -0
- package/libs/time-picker/lib/cjs/TimePicker.js +338 -0
- package/libs/time-picker/lib/cjs/TimePicker.js.map +1 -0
- package/libs/time-picker/lib/cjs/index.d.js +2 -0
- package/libs/time-picker/lib/cjs/index.d.js.map +1 -0
- package/libs/time-picker/lib/cjs/index.js +26 -0
- package/libs/time-picker/lib/cjs/index.js.map +1 -0
- package/libs/time-picker/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/time-picker/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/time-picker/lib/cjs/translations/de.json +7 -0
- package/libs/time-picker/lib/cjs/translations/en.json +7 -0
- package/libs/time-picker/lib/cjs/translations/es.json +7 -0
- package/libs/time-picker/lib/cjs/translations/fr.json +7 -0
- package/libs/time-picker/lib/cjs/translations/it.json +7 -0
- package/libs/time-picker/lib/cjs/translations/ja.json +7 -0
- package/libs/time-picker/lib/cjs/translations/ko.json +7 -0
- package/libs/time-picker/lib/cjs/translations/nl.json +7 -0
- package/libs/time-picker/lib/cjs/translations/pl.json +7 -0
- package/libs/time-picker/lib/cjs/translations/pt.json +7 -0
- package/libs/time-picker/lib/cjs/translations/sv.json +7 -0
- package/libs/time-picker/lib/cjs/translations/tr.json +7 -0
- package/libs/time-picker/lib/cjs/translations/vi.json +7 -0
- package/libs/time-picker/lib/cjs/translations/zh.json +7 -0
- package/libs/time-picker/lib/es6/PickerFormat.js +48 -0
- package/libs/time-picker/lib/es6/PickerFormat.js.map +1 -0
- package/libs/time-picker/lib/es6/PickerInput.js +299 -0
- package/libs/time-picker/lib/es6/PickerInput.js.map +1 -0
- package/libs/time-picker/lib/es6/TimePicker.js +327 -0
- package/libs/time-picker/lib/es6/TimePicker.js.map +1 -0
- package/libs/time-picker/lib/es6/index.d.js +2 -0
- package/libs/time-picker/lib/es6/index.d.js.map +1 -0
- package/libs/time-picker/lib/es6/index.js +3 -0
- package/libs/time-picker/lib/es6/index.js.map +1 -0
- package/libs/time-picker/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/time-picker/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/time-picker/lib/es6/translations/de.json +7 -0
- package/libs/time-picker/lib/es6/translations/en.json +7 -0
- package/libs/time-picker/lib/es6/translations/es.json +7 -0
- package/libs/time-picker/lib/es6/translations/fr.json +7 -0
- package/libs/time-picker/lib/es6/translations/it.json +7 -0
- package/libs/time-picker/lib/es6/translations/ja.json +7 -0
- package/libs/time-picker/lib/es6/translations/ko.json +7 -0
- package/libs/time-picker/lib/es6/translations/nl.json +7 -0
- package/libs/time-picker/lib/es6/translations/pl.json +7 -0
- package/libs/time-picker/lib/es6/translations/pt.json +7 -0
- package/libs/time-picker/lib/es6/translations/sv.json +7 -0
- package/libs/time-picker/lib/es6/translations/tr.json +7 -0
- package/libs/time-picker/lib/es6/translations/vi.json +7 -0
- package/libs/time-picker/lib/es6/translations/zh.json +7 -0
- package/libs/time-picker/lib/types/index.d.ts +63 -0
- package/libs/tooltip/lib/cjs/Tooltip.js +158 -0
- package/libs/tooltip/lib/cjs/Tooltip.js.map +1 -0
- package/libs/tooltip/lib/cjs/index.d.js +2 -0
- package/libs/tooltip/lib/cjs/index.d.js.map +1 -0
- package/libs/tooltip/lib/cjs/index.js +14 -0
- package/libs/tooltip/lib/cjs/index.js.map +1 -0
- package/libs/tooltip/lib/es6/Tooltip.js +153 -0
- package/libs/tooltip/lib/es6/Tooltip.js.map +1 -0
- package/libs/tooltip/lib/es6/index.d.js +2 -0
- package/libs/tooltip/lib/es6/index.d.js.map +1 -0
- package/libs/tooltip/lib/es6/index.js +2 -0
- package/libs/tooltip/lib/es6/index.js.map +1 -0
- package/libs/tooltip/lib/types/index.d.ts +29 -0
- package/libs/typography/lib/cjs/Blockquote.js +35 -0
- package/libs/typography/lib/cjs/Blockquote.js.map +1 -0
- package/libs/typography/lib/cjs/Hint.js +86 -0
- package/libs/typography/lib/cjs/Hint.js.map +1 -0
- package/libs/typography/lib/cjs/List.js +81 -0
- package/libs/typography/lib/cjs/List.js.map +1 -0
- package/libs/typography/lib/cjs/Text.js +77 -0
- package/libs/typography/lib/cjs/Text.js.map +1 -0
- package/libs/typography/lib/cjs/index.d.js +2 -0
- package/libs/typography/lib/cjs/index.d.js.map +1 -0
- package/libs/typography/lib/cjs/index.js +35 -0
- package/libs/typography/lib/cjs/index.js.map +1 -0
- package/libs/typography/lib/es6/Blockquote.js +29 -0
- package/libs/typography/lib/es6/Blockquote.js.map +1 -0
- package/libs/typography/lib/es6/Hint.js +81 -0
- package/libs/typography/lib/es6/Hint.js.map +1 -0
- package/libs/typography/lib/es6/List.js +75 -0
- package/libs/typography/lib/es6/List.js.map +1 -0
- package/libs/typography/lib/es6/Text.js +71 -0
- package/libs/typography/lib/es6/Text.js.map +1 -0
- package/libs/typography/lib/es6/index.d.js +2 -0
- package/libs/typography/lib/es6/index.d.js.map +1 -0
- package/libs/typography/lib/es6/index.js +5 -0
- package/libs/typography/lib/es6/index.js.map +1 -0
- package/libs/typography/lib/types/index.d.ts +108 -0
- package/libs/utils/lib/CSSinJS.d.ts +5 -0
- package/libs/utils/lib/CSSinJS.js +36 -0
- package/libs/utils/lib/CSSinJS.js.map +1 -0
- package/libs/utils/lib/CSSinJS.mjs +28 -0
- package/libs/utils/lib/CSSinJS.mjs.map +1 -0
- package/libs/utils/lib/ScreenReaderOnly.d.ts +5 -0
- package/libs/utils/lib/ScreenReaderOnly.js +29 -0
- package/libs/utils/lib/ScreenReaderOnly.js.map +1 -0
- package/libs/utils/lib/ScreenReaderOnly.mjs +21 -0
- package/libs/utils/lib/ScreenReaderOnly.mjs.map +1 -0
- package/libs/utils/lib/ThemeProvider.d.ts +13 -0
- package/libs/utils/lib/ThemeProvider.js +74 -0
- package/libs/utils/lib/ThemeProvider.js.map +1 -0
- package/libs/utils/lib/ThemeProvider.mjs +63 -0
- package/libs/utils/lib/ThemeProvider.mjs.map +1 -0
- package/libs/utils/lib/addonText.d.ts +2 -0
- package/libs/utils/lib/addonText.js +18 -0
- package/libs/utils/lib/addonText.js.map +1 -0
- package/libs/utils/lib/addonText.mjs +11 -0
- package/libs/utils/lib/addonText.mjs.map +1 -0
- package/libs/utils/lib/addonTextChildren.d.ts +3 -0
- package/libs/utils/lib/addonTextChildren.js +47 -0
- package/libs/utils/lib/addonTextChildren.js.map +1 -0
- package/libs/utils/lib/addonTextChildren.mjs +38 -0
- package/libs/utils/lib/addonTextChildren.mjs.map +1 -0
- package/libs/utils/lib/assignProps.d.ts +13 -0
- package/libs/utils/lib/assignProps.js +93 -0
- package/libs/utils/lib/assignProps.js.map +1 -0
- package/libs/utils/lib/assignProps.mjs +84 -0
- package/libs/utils/lib/assignProps.mjs.map +1 -0
- package/libs/utils/lib/canUseDOM.d.ts +1 -0
- package/libs/utils/lib/canUseDOM.js +10 -0
- package/libs/utils/lib/canUseDOM.js.map +1 -0
- package/libs/utils/lib/canUseDOM.mjs +4 -0
- package/libs/utils/lib/canUseDOM.mjs.map +1 -0
- package/libs/utils/lib/capitalizeFirstLetter.d.ts +1 -0
- package/libs/utils/lib/capitalizeFirstLetter.js +10 -0
- package/libs/utils/lib/capitalizeFirstLetter.js.map +1 -0
- package/libs/utils/lib/capitalizeFirstLetter.mjs +4 -0
- package/libs/utils/lib/capitalizeFirstLetter.mjs.map +1 -0
- package/libs/utils/lib/color.d.ts +6 -0
- package/libs/utils/lib/color.js +370 -0
- package/libs/utils/lib/color.js.map +1 -0
- package/libs/utils/lib/color.mjs +357 -0
- package/libs/utils/lib/color.mjs.map +1 -0
- package/libs/utils/lib/compose.d.ts +1 -0
- package/libs/utils/lib/compose.js +21 -0
- package/libs/utils/lib/compose.js.map +1 -0
- package/libs/utils/lib/compose.mjs +15 -0
- package/libs/utils/lib/compose.mjs.map +1 -0
- package/libs/utils/lib/createHoc.d.ts +3 -0
- package/libs/utils/lib/createHoc.js +55 -0
- package/libs/utils/lib/createHoc.js.map +1 -0
- package/libs/utils/lib/createHoc.mjs +46 -0
- package/libs/utils/lib/createHoc.mjs.map +1 -0
- package/libs/utils/lib/createUUID.d.ts +1 -0
- package/libs/utils/lib/createUUID.js +15 -0
- package/libs/utils/lib/createUUID.js.map +1 -0
- package/libs/utils/lib/createUUID.mjs +9 -0
- package/libs/utils/lib/createUUID.mjs.map +1 -0
- package/libs/utils/lib/cssToIntDefault.d.ts +8 -0
- package/libs/utils/lib/cssToIntDefault.js +22 -0
- package/libs/utils/lib/cssToIntDefault.js.map +1 -0
- package/libs/utils/lib/cssToIntDefault.mjs +16 -0
- package/libs/utils/lib/cssToIntDefault.mjs.map +1 -0
- package/libs/utils/lib/enhances/WithAutoFocus.d.ts +14 -0
- package/libs/utils/lib/enhances/WithAutoFocus.js +75 -0
- package/libs/utils/lib/enhances/WithAutoFocus.js.map +1 -0
- package/libs/utils/lib/enhances/WithAutoFocus.mjs +67 -0
- package/libs/utils/lib/enhances/WithAutoFocus.mjs.map +1 -0
- package/libs/utils/lib/enhances/WithCSS.d.ts +41 -0
- package/libs/utils/lib/enhances/WithCSS.js +93 -0
- package/libs/utils/lib/enhances/WithCSS.js.map +1 -0
- package/libs/utils/lib/enhances/WithCSS.mjs +79 -0
- package/libs/utils/lib/enhances/WithCSS.mjs.map +1 -0
- package/libs/utils/lib/enhances/WithI18n.d.ts +43 -0
- package/libs/utils/lib/enhances/WithI18n.js +85 -0
- package/libs/utils/lib/enhances/WithI18n.js.map +1 -0
- package/libs/utils/lib/enhances/WithI18n.mjs +73 -0
- package/libs/utils/lib/enhances/WithI18n.mjs.map +1 -0
- package/libs/utils/lib/enhances/WithKeyboardFocus.d.ts +45 -0
- package/libs/utils/lib/enhances/WithKeyboardFocus.js +93 -0
- package/libs/utils/lib/enhances/WithKeyboardFocus.js.map +1 -0
- package/libs/utils/lib/enhances/WithKeyboardFocus.mjs +84 -0
- package/libs/utils/lib/enhances/WithKeyboardFocus.mjs.map +1 -0
- package/libs/utils/lib/enhances/WithRef.d.ts +3 -0
- package/libs/utils/lib/enhances/WithRef.js +26 -0
- package/libs/utils/lib/enhances/WithRef.js.map +1 -0
- package/libs/utils/lib/enhances/WithRef.mjs +18 -0
- package/libs/utils/lib/enhances/WithRef.mjs.map +1 -0
- package/libs/utils/lib/enhances/a11yEnhance.d.ts +4 -0
- package/libs/utils/lib/enhances/a11yEnhance.js +74 -0
- package/libs/utils/lib/enhances/a11yEnhance.js.map +1 -0
- package/libs/utils/lib/enhances/a11yEnhance.mjs +66 -0
- package/libs/utils/lib/enhances/a11yEnhance.mjs.map +1 -0
- package/libs/utils/lib/enhances/animatedSizeEnhance.d.ts +12 -0
- package/libs/utils/lib/enhances/animatedSizeEnhance.js +98 -0
- package/libs/utils/lib/enhances/animatedSizeEnhance.js.map +1 -0
- package/libs/utils/lib/enhances/animatedSizeEnhance.mjs +90 -0
- package/libs/utils/lib/enhances/animatedSizeEnhance.mjs.map +1 -0
- package/libs/utils/lib/enhances/autoFocusEnhance.d.ts +10 -0
- package/libs/utils/lib/enhances/autoFocusEnhance.js +46 -0
- package/libs/utils/lib/enhances/autoFocusEnhance.js.map +1 -0
- package/libs/utils/lib/enhances/autoFocusEnhance.mjs +38 -0
- package/libs/utils/lib/enhances/autoFocusEnhance.mjs.map +1 -0
- package/libs/utils/lib/enhances/contextEnhance.d.ts +3 -0
- package/libs/utils/lib/enhances/contextEnhance.js +22 -0
- package/libs/utils/lib/enhances/contextEnhance.js.map +1 -0
- package/libs/utils/lib/enhances/contextEnhance.mjs +14 -0
- package/libs/utils/lib/enhances/contextEnhance.mjs.map +1 -0
- package/libs/utils/lib/enhances/i18nEnhance.d.ts +26 -0
- package/libs/utils/lib/enhances/i18nEnhance.js +133 -0
- package/libs/utils/lib/enhances/i18nEnhance.js.map +1 -0
- package/libs/utils/lib/enhances/i18nEnhance.mjs +122 -0
- package/libs/utils/lib/enhances/i18nEnhance.mjs.map +1 -0
- package/libs/utils/lib/enhances/keyboardFocusEnhance.d.ts +26 -0
- package/libs/utils/lib/enhances/keyboardFocusEnhance.js +114 -0
- package/libs/utils/lib/enhances/keyboardFocusEnhance.js.map +1 -0
- package/libs/utils/lib/enhances/keyboardFocusEnhance.mjs +105 -0
- package/libs/utils/lib/enhances/keyboardFocusEnhance.mjs.map +1 -0
- package/libs/utils/lib/enhances/resolveColorEnhance.d.ts +2 -0
- package/libs/utils/lib/enhances/resolveColorEnhance.js +25 -0
- package/libs/utils/lib/enhances/resolveColorEnhance.js.map +1 -0
- package/libs/utils/lib/enhances/resolveColorEnhance.mjs +17 -0
- package/libs/utils/lib/enhances/resolveColorEnhance.mjs.map +1 -0
- package/libs/utils/lib/eventEmitter.d.ts +5 -0
- package/libs/utils/lib/eventEmitter.js +49 -0
- package/libs/utils/lib/eventEmitter.js.map +1 -0
- package/libs/utils/lib/eventEmitter.mjs +42 -0
- package/libs/utils/lib/eventEmitter.mjs.map +1 -0
- package/libs/utils/lib/findComponent.d.ts +5 -0
- package/libs/utils/lib/findComponent.js +67 -0
- package/libs/utils/lib/findComponent.js.map +1 -0
- package/libs/utils/lib/findComponent.mjs +56 -0
- package/libs/utils/lib/findComponent.mjs.map +1 -0
- package/libs/utils/lib/fire.d.ts +2 -0
- package/libs/utils/lib/fire.js +23 -0
- package/libs/utils/lib/fire.js.map +1 -0
- package/libs/utils/lib/fire.mjs +15 -0
- package/libs/utils/lib/fire.mjs.map +1 -0
- package/libs/utils/lib/getDisplayName.d.ts +2 -0
- package/libs/utils/lib/getDisplayName.js +10 -0
- package/libs/utils/lib/getDisplayName.js.map +1 -0
- package/libs/utils/lib/getDisplayName.mjs +4 -0
- package/libs/utils/lib/getDisplayName.mjs.map +1 -0
- package/libs/utils/lib/getOriginChildren.d.ts +2 -0
- package/libs/utils/lib/getOriginChildren.js +20 -0
- package/libs/utils/lib/getOriginChildren.js.map +1 -0
- package/libs/utils/lib/getOriginChildren.mjs +11 -0
- package/libs/utils/lib/getOriginChildren.mjs.map +1 -0
- package/libs/utils/lib/getRandomInt.d.ts +1 -0
- package/libs/utils/lib/getRandomInt.js +11 -0
- package/libs/utils/lib/getRandomInt.js.map +1 -0
- package/libs/utils/lib/getRandomInt.mjs +5 -0
- package/libs/utils/lib/getRandomInt.mjs.map +1 -0
- package/libs/utils/lib/getValue.d.ts +1 -0
- package/libs/utils/lib/getValue.js +16 -0
- package/libs/utils/lib/getValue.js.map +1 -0
- package/libs/utils/lib/getValue.mjs +10 -0
- package/libs/utils/lib/getValue.mjs.map +1 -0
- package/libs/utils/lib/hasLabels.d.ts +7 -0
- package/libs/utils/lib/hasLabels.js +47 -0
- package/libs/utils/lib/hasLabels.js.map +1 -0
- package/libs/utils/lib/hasLabels.mjs +39 -0
- package/libs/utils/lib/hasLabels.mjs.map +1 -0
- package/libs/utils/lib/if.d.ts +11 -0
- package/libs/utils/lib/if.js +16 -0
- package/libs/utils/lib/if.js.map +1 -0
- package/libs/utils/lib/if.mjs +9 -0
- package/libs/utils/lib/if.mjs.map +1 -0
- package/libs/utils/lib/ifChildren.d.ts +8 -0
- package/libs/utils/lib/ifChildren.js +17 -0
- package/libs/utils/lib/ifChildren.js.map +1 -0
- package/libs/utils/lib/ifChildren.mjs +10 -0
- package/libs/utils/lib/ifChildren.mjs.map +1 -0
- package/libs/utils/lib/index.d.ts +0 -0
- package/libs/utils/lib/index.js +4 -0
- package/libs/utils/lib/index.js.map +1 -0
- package/libs/utils/lib/index.mjs +2 -0
- package/libs/utils/lib/index.mjs.map +1 -0
- package/libs/utils/lib/injectStyle.d.ts +2 -0
- package/libs/utils/lib/injectStyle.js +49 -0
- package/libs/utils/lib/injectStyle.js.map +1 -0
- package/libs/utils/lib/injectStyle.mjs +41 -0
- package/libs/utils/lib/injectStyle.mjs.map +1 -0
- package/libs/utils/lib/inputProps.d.ts +2 -0
- package/libs/utils/lib/inputProps.js +23 -0
- package/libs/utils/lib/inputProps.js.map +1 -0
- package/libs/utils/lib/inputProps.mjs +14 -0
- package/libs/utils/lib/inputProps.mjs.map +1 -0
- package/libs/utils/lib/isNode.d.ts +1 -0
- package/libs/utils/lib/isNode.js +28 -0
- package/libs/utils/lib/isNode.js.map +1 -0
- package/libs/utils/lib/isNode.mjs +21 -0
- package/libs/utils/lib/isNode.mjs.map +1 -0
- package/libs/utils/lib/isPromise.d.ts +1 -0
- package/libs/utils/lib/isPromise.js +10 -0
- package/libs/utils/lib/isPromise.js.map +1 -0
- package/libs/utils/lib/isPromise.mjs +4 -0
- package/libs/utils/lib/isPromise.mjs.map +1 -0
- package/libs/utils/lib/isRetina.d.ts +1 -0
- package/libs/utils/lib/isRetina.js +15 -0
- package/libs/utils/lib/isRetina.js.map +1 -0
- package/libs/utils/lib/isRetina.mjs +9 -0
- package/libs/utils/lib/isRetina.mjs.map +1 -0
- package/libs/utils/lib/logger.d.ts +9 -0
- package/libs/utils/lib/logger.js +40 -0
- package/libs/utils/lib/logger.js.map +1 -0
- package/libs/utils/lib/logger.mjs +32 -0
- package/libs/utils/lib/logger.mjs.map +1 -0
- package/libs/utils/lib/numericChecker.d.ts +5 -0
- package/libs/utils/lib/numericChecker.js +33 -0
- package/libs/utils/lib/numericChecker.js.map +1 -0
- package/libs/utils/lib/numericChecker.mjs +27 -0
- package/libs/utils/lib/numericChecker.mjs.map +1 -0
- package/libs/utils/lib/ownerDocument.d.ts +1 -0
- package/libs/utils/lib/ownerDocument.js +10 -0
- package/libs/utils/lib/ownerDocument.js.map +1 -0
- package/libs/utils/lib/ownerDocument.mjs +4 -0
- package/libs/utils/lib/ownerDocument.mjs.map +1 -0
- package/libs/utils/lib/pick.d.ts +1 -0
- package/libs/utils/lib/pick.js +19 -0
- package/libs/utils/lib/pick.js.map +1 -0
- package/libs/utils/lib/pick.mjs +13 -0
- package/libs/utils/lib/pick.mjs.map +1 -0
- package/libs/utils/lib/propsForElement.d.ts +14 -0
- package/libs/utils/lib/propsForElement.js +79 -0
- package/libs/utils/lib/propsForElement.js.map +1 -0
- package/libs/utils/lib/propsForElement.mjs +70 -0
- package/libs/utils/lib/propsForElement.mjs.map +1 -0
- package/libs/utils/lib/rafTrottle.d.ts +2 -0
- package/libs/utils/lib/rafTrottle.js +33 -0
- package/libs/utils/lib/rafTrottle.js.map +1 -0
- package/libs/utils/lib/rafTrottle.mjs +26 -0
- package/libs/utils/lib/rafTrottle.mjs.map +1 -0
- package/libs/utils/lib/reactToText.d.ts +3 -0
- package/libs/utils/lib/reactToText.js +28 -0
- package/libs/utils/lib/reactToText.js.map +1 -0
- package/libs/utils/lib/reactToText.mjs +21 -0
- package/libs/utils/lib/reactToText.mjs.map +1 -0
- package/libs/utils/lib/ref.d.ts +8 -0
- package/libs/utils/lib/ref.js +94 -0
- package/libs/utils/lib/ref.js.map +1 -0
- package/libs/utils/lib/ref.mjs +82 -0
- package/libs/utils/lib/ref.mjs.map +1 -0
- package/libs/utils/lib/setRef.d.ts +2 -0
- package/libs/utils/lib/setRef.js +10 -0
- package/libs/utils/lib/setRef.js.map +1 -0
- package/libs/utils/lib/setRef.mjs +3 -0
- package/libs/utils/lib/setRef.mjs.map +1 -0
- package/libs/utils/lib/syncScroll.d.ts +1 -0
- package/libs/utils/lib/syncScroll.js +61 -0
- package/libs/utils/lib/syncScroll.js.map +1 -0
- package/libs/utils/lib/syncScroll.mjs +54 -0
- package/libs/utils/lib/syncScroll.mjs.map +1 -0
- package/libs/utils/lib/themes/auto.css +1422 -0
- package/libs/utils/lib/themes/dark.css +701 -0
- package/libs/utils/lib/themes/dark.json +363 -0
- package/libs/utils/lib/themes/default.css +721 -0
- package/libs/utils/lib/themes/default.json +367 -0
- package/libs/utils/lib/themes/light.css +721 -0
- package/libs/utils/lib/themes/light.json +367 -0
- package/libs/utils/lib/uncontroll.d.ts +4 -0
- package/libs/utils/lib/uncontroll.js +47 -0
- package/libs/utils/lib/uncontroll.js.map +1 -0
- package/libs/utils/lib/uncontroll.mjs +38 -0
- package/libs/utils/lib/uncontroll.mjs.map +1 -0
- package/libs/utils/lib/uniqueID.d.ts +12 -0
- package/libs/utils/lib/uniqueID.js +43 -0
- package/libs/utils/lib/uniqueID.js.map +1 -0
- package/libs/utils/lib/uniqueID.mjs +33 -0
- package/libs/utils/lib/uniqueID.mjs.map +1 -0
- package/libs/utils/lib/use/useColorResolver.d.ts +1 -0
- package/libs/utils/lib/use/useColorResolver.js +208 -0
- package/libs/utils/lib/use/useColorResolver.js.map +1 -0
- package/libs/utils/lib/use/useColorResolver.mjs +200 -0
- package/libs/utils/lib/use/useColorResolver.mjs.map +1 -0
- package/libs/utils/lib/use/useCss.d.ts +4 -0
- package/libs/utils/lib/use/useCss.js +20 -0
- package/libs/utils/lib/use/useCss.js.map +1 -0
- package/libs/utils/lib/use/useCss.mjs +12 -0
- package/libs/utils/lib/use/useCss.mjs.map +1 -0
- package/libs/utils/lib/use/useEnhancedEffect.d.ts +3 -0
- package/libs/utils/lib/use/useEnhancedEffect.js +13 -0
- package/libs/utils/lib/use/useEnhancedEffect.js.map +1 -0
- package/libs/utils/lib/use/useEnhancedEffect.mjs +5 -0
- package/libs/utils/lib/use/useEnhancedEffect.mjs.map +1 -0
- package/libs/utils/lib/use/useEventCallback.d.ts +4 -0
- package/libs/utils/lib/use/useEventCallback.js +25 -0
- package/libs/utils/lib/use/useEventCallback.js.map +1 -0
- package/libs/utils/lib/use/useEventCallback.mjs +19 -0
- package/libs/utils/lib/use/useEventCallback.mjs.map +1 -0
- package/libs/utils/lib/use/useEventListener.d.ts +2 -0
- package/libs/utils/lib/use/useEventListener.js +33 -0
- package/libs/utils/lib/use/useEventListener.js.map +1 -0
- package/libs/utils/lib/use/useEventListener.mjs +25 -0
- package/libs/utils/lib/use/useEventListener.mjs.map +1 -0
- package/libs/utils/lib/use/useFocusLock.d.ts +4 -0
- package/libs/utils/lib/use/useFocusLock.js +293 -0
- package/libs/utils/lib/use/useFocusLock.js.map +1 -0
- package/libs/utils/lib/use/useFocusLock.mjs +282 -0
- package/libs/utils/lib/use/useFocusLock.mjs.map +1 -0
- package/libs/utils/lib/use/usePreventScroll.d.ts +2 -0
- package/libs/utils/lib/use/usePreventScroll.js +78 -0
- package/libs/utils/lib/use/usePreventScroll.js.map +1 -0
- package/libs/utils/lib/use/usePreventScroll.mjs +70 -0
- package/libs/utils/lib/use/usePreventScroll.mjs.map +1 -0
- package/libs/utils/lib/useCssVariable.d.ts +8 -0
- package/libs/utils/lib/useCssVariable.js +55 -0
- package/libs/utils/lib/useCssVariable.js.map +1 -0
- package/libs/utils/lib/useCssVariable.mjs +46 -0
- package/libs/utils/lib/useCssVariable.mjs.map +1 -0
- package/libs/widget-empty/lib/cjs/Error/index.js +49 -0
- package/libs/widget-empty/lib/cjs/Error/index.js.map +1 -0
- package/libs/widget-empty/lib/cjs/Error/translations/__intergalactic-dynamic-locales.js +41 -0
- package/libs/widget-empty/lib/cjs/Error/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/widget-empty/lib/cjs/Error/translations/de.json +4 -0
- package/libs/widget-empty/lib/cjs/Error/translations/en.json +4 -0
- package/libs/widget-empty/lib/cjs/Error/translations/es.json +4 -0
- package/libs/widget-empty/lib/cjs/Error/translations/fr.json +4 -0
- package/libs/widget-empty/lib/cjs/Error/translations/it.json +4 -0
- package/libs/widget-empty/lib/cjs/Error/translations/ja.json +4 -0
- package/libs/widget-empty/lib/cjs/Error/translations/ko.json +4 -0
- package/libs/widget-empty/lib/cjs/Error/translations/nl.json +4 -0
- package/libs/widget-empty/lib/cjs/Error/translations/pl.json +4 -0
- package/libs/widget-empty/lib/cjs/Error/translations/pt.json +4 -0
- package/libs/widget-empty/lib/cjs/Error/translations/ru.json +4 -0
- package/libs/widget-empty/lib/cjs/Error/translations/sv.json +4 -0
- package/libs/widget-empty/lib/cjs/Error/translations/tr.json +4 -0
- package/libs/widget-empty/lib/cjs/Error/translations/vi.json +4 -0
- package/libs/widget-empty/lib/cjs/Error/translations/zh.json +4 -0
- package/libs/widget-empty/lib/cjs/NoData/index.js +51 -0
- package/libs/widget-empty/lib/cjs/NoData/index.js.map +1 -0
- package/libs/widget-empty/lib/cjs/NoData/translations/__intergalactic-dynamic-locales.js +41 -0
- package/libs/widget-empty/lib/cjs/NoData/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/widget-empty/lib/cjs/NoData/translations/de.json +4 -0
- package/libs/widget-empty/lib/cjs/NoData/translations/en.json +4 -0
- package/libs/widget-empty/lib/cjs/NoData/translations/es.json +4 -0
- package/libs/widget-empty/lib/cjs/NoData/translations/fr.json +4 -0
- package/libs/widget-empty/lib/cjs/NoData/translations/it.json +4 -0
- package/libs/widget-empty/lib/cjs/NoData/translations/ja.json +4 -0
- package/libs/widget-empty/lib/cjs/NoData/translations/ko.json +4 -0
- package/libs/widget-empty/lib/cjs/NoData/translations/nl.json +4 -0
- package/libs/widget-empty/lib/cjs/NoData/translations/pl.json +4 -0
- package/libs/widget-empty/lib/cjs/NoData/translations/pt.json +4 -0
- package/libs/widget-empty/lib/cjs/NoData/translations/ru.json +4 -0
- package/libs/widget-empty/lib/cjs/NoData/translations/sv.json +4 -0
- package/libs/widget-empty/lib/cjs/NoData/translations/tr.json +4 -0
- package/libs/widget-empty/lib/cjs/NoData/translations/vi.json +4 -0
- package/libs/widget-empty/lib/cjs/NoData/translations/zh.json +4 -0
- package/libs/widget-empty/lib/cjs/WidgetEmpty.js +80 -0
- package/libs/widget-empty/lib/cjs/WidgetEmpty.js.map +1 -0
- package/libs/widget-empty/lib/cjs/index.d.js +2 -0
- package/libs/widget-empty/lib/cjs/index.d.js.map +1 -0
- package/libs/widget-empty/lib/cjs/index.js +44 -0
- package/libs/widget-empty/lib/cjs/index.js.map +1 -0
- package/libs/widget-empty/lib/es6/Error/index.js +41 -0
- package/libs/widget-empty/lib/es6/Error/index.js.map +1 -0
- package/libs/widget-empty/lib/es6/Error/translations/__intergalactic-dynamic-locales.js +33 -0
- package/libs/widget-empty/lib/es6/Error/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/widget-empty/lib/es6/Error/translations/de.json +4 -0
- package/libs/widget-empty/lib/es6/Error/translations/en.json +4 -0
- package/libs/widget-empty/lib/es6/Error/translations/es.json +4 -0
- package/libs/widget-empty/lib/es6/Error/translations/fr.json +4 -0
- package/libs/widget-empty/lib/es6/Error/translations/it.json +4 -0
- package/libs/widget-empty/lib/es6/Error/translations/ja.json +4 -0
- package/libs/widget-empty/lib/es6/Error/translations/ko.json +4 -0
- package/libs/widget-empty/lib/es6/Error/translations/nl.json +4 -0
- package/libs/widget-empty/lib/es6/Error/translations/pl.json +4 -0
- package/libs/widget-empty/lib/es6/Error/translations/pt.json +4 -0
- package/libs/widget-empty/lib/es6/Error/translations/ru.json +4 -0
- package/libs/widget-empty/lib/es6/Error/translations/sv.json +4 -0
- package/libs/widget-empty/lib/es6/Error/translations/tr.json +4 -0
- package/libs/widget-empty/lib/es6/Error/translations/vi.json +4 -0
- package/libs/widget-empty/lib/es6/Error/translations/zh.json +4 -0
- package/libs/widget-empty/lib/es6/NoData/index.js +43 -0
- package/libs/widget-empty/lib/es6/NoData/index.js.map +1 -0
- package/libs/widget-empty/lib/es6/NoData/translations/__intergalactic-dynamic-locales.js +33 -0
- package/libs/widget-empty/lib/es6/NoData/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/widget-empty/lib/es6/NoData/translations/de.json +4 -0
- package/libs/widget-empty/lib/es6/NoData/translations/en.json +4 -0
- package/libs/widget-empty/lib/es6/NoData/translations/es.json +4 -0
- package/libs/widget-empty/lib/es6/NoData/translations/fr.json +4 -0
- package/libs/widget-empty/lib/es6/NoData/translations/it.json +4 -0
- package/libs/widget-empty/lib/es6/NoData/translations/ja.json +4 -0
- package/libs/widget-empty/lib/es6/NoData/translations/ko.json +4 -0
- package/libs/widget-empty/lib/es6/NoData/translations/nl.json +4 -0
- package/libs/widget-empty/lib/es6/NoData/translations/pl.json +4 -0
- package/libs/widget-empty/lib/es6/NoData/translations/pt.json +4 -0
- package/libs/widget-empty/lib/es6/NoData/translations/ru.json +4 -0
- package/libs/widget-empty/lib/es6/NoData/translations/sv.json +4 -0
- package/libs/widget-empty/lib/es6/NoData/translations/tr.json +4 -0
- package/libs/widget-empty/lib/es6/NoData/translations/vi.json +4 -0
- package/libs/widget-empty/lib/es6/NoData/translations/zh.json +4 -0
- package/libs/widget-empty/lib/es6/WidgetEmpty.js +74 -0
- package/libs/widget-empty/lib/es6/WidgetEmpty.js.map +1 -0
- package/libs/widget-empty/lib/es6/index.d.js +2 -0
- package/libs/widget-empty/lib/es6/index.d.js.map +1 -0
- package/libs/widget-empty/lib/es6/index.js +5 -0
- package/libs/widget-empty/lib/es6/index.js.map +1 -0
- package/libs/widget-empty/lib/types/index.d.ts +44 -0
- package/libs/wizard/lib/cjs/Wizard.js +178 -0
- package/libs/wizard/lib/cjs/Wizard.js.map +1 -0
- package/libs/wizard/lib/cjs/index.d.js +2 -0
- package/libs/wizard/lib/cjs/index.d.js.map +1 -0
- package/libs/wizard/lib/cjs/index.js +14 -0
- package/libs/wizard/lib/cjs/index.js.map +1 -0
- package/libs/wizard/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
- package/libs/wizard/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/wizard/lib/cjs/translations/de.json +3 -0
- package/libs/wizard/lib/cjs/translations/en.json +3 -0
- package/libs/wizard/lib/cjs/translations/es.json +3 -0
- package/libs/wizard/lib/cjs/translations/fr.json +3 -0
- package/libs/wizard/lib/cjs/translations/it.json +3 -0
- package/libs/wizard/lib/cjs/translations/ja.json +3 -0
- package/libs/wizard/lib/cjs/translations/ko.json +3 -0
- package/libs/wizard/lib/cjs/translations/nl.json +3 -0
- package/libs/wizard/lib/cjs/translations/pl.json +3 -0
- package/libs/wizard/lib/cjs/translations/pt.json +3 -0
- package/libs/wizard/lib/cjs/translations/sv.json +3 -0
- package/libs/wizard/lib/cjs/translations/tr.json +3 -0
- package/libs/wizard/lib/cjs/translations/vi.json +3 -0
- package/libs/wizard/lib/cjs/translations/zh.json +3 -0
- package/libs/wizard/lib/es6/Wizard.js +174 -0
- package/libs/wizard/lib/es6/Wizard.js.map +1 -0
- package/libs/wizard/lib/es6/index.d.js +2 -0
- package/libs/wizard/lib/es6/index.d.js.map +1 -0
- package/libs/wizard/lib/es6/index.js +2 -0
- package/libs/wizard/lib/es6/index.js.map +1 -0
- package/libs/wizard/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
- package/libs/wizard/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
- package/libs/wizard/lib/es6/translations/de.json +3 -0
- package/libs/wizard/lib/es6/translations/en.json +3 -0
- package/libs/wizard/lib/es6/translations/es.json +3 -0
- package/libs/wizard/lib/es6/translations/fr.json +3 -0
- package/libs/wizard/lib/es6/translations/it.json +3 -0
- package/libs/wizard/lib/es6/translations/ja.json +3 -0
- package/libs/wizard/lib/es6/translations/ko.json +3 -0
- package/libs/wizard/lib/es6/translations/nl.json +3 -0
- package/libs/wizard/lib/es6/translations/pl.json +3 -0
- package/libs/wizard/lib/es6/translations/pt.json +3 -0
- package/libs/wizard/lib/es6/translations/sv.json +3 -0
- package/libs/wizard/lib/es6/translations/tr.json +3 -0
- package/libs/wizard/lib/es6/translations/vi.json +3 -0
- package/libs/wizard/lib/es6/translations/zh.json +3 -0
- package/libs/wizard/lib/types/index.d.ts +80 -0
- package/package.json +1 -1
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"Carousel.js","names":["React","createComponent","Component","sstyled","Root","Button","Modal","Box","Flex","ChevronRight","ChevronLeft","uniqueIDEnhancement","i18nEnhance","localizedMessages","logger","style","_sstyled","insert","findAllComponents","createBreakpoints","MAP_TRANSFORM","ArrowLeft","ArrowRight","enhance","uid","getI18nText","media","BreakPoints","isSmallScreen","index","CarouselRoot","_Component","_inherits","_super","_createSuper","props","_ref18","_props$index","_this","_classCallCheck","call","_defineProperty","_assertThisInitialized","createRef","e","key","preventDefault","transformItem","item","removeItem","arguments","length","undefined","setState","prevState","newItems","items","filter","element","node","concat","_toConsumableArray","defaultItemsCount","transform","state","selectedIndex","refContainer","current","refModalContainer","currentIndex","nextIndex","bounded","asProps","listIndex","map","_","ind","tmpArr","minTmpArr","maxTmpArr","unshift","pop","shift","push","tmpCurrentIndex","indexOf","left","direction","diff","Math","abs","_this$state","maxIndexIndicator","handlers","isControlled","transformContainer","value","_this$state2","newValueIndex","floor","slideToValue","_touchStartCoord","changedTouches","clientX","touchEndCoord","delta","isOpenZoom","bindHandlerClick","defaultIndex","_createClass","uncontrolledProps","componentDidMount","warn","displayName","deprecatedComponents","Children","componentDidUpdate","prevProps","_this2","getContainerProps","duration","ref","getItemProps","zoom","isCurrent","isSelected","toggleItem","zoomIn","onToggleZoomModal","handleToggleZoomModal","getTransform","getPrevProps","_this$asProps","_this$state3","disabled","onClick","onKeyDown","bindHandlerKeydownControl","label","getNextProps","_this$asProps2","_this$state4","getIndicatorsProps","_this3","active","bindHandlerClickIndicator","_this$state5","count","_this$state6","renderModal","isSmall","ComponentItems","_ref","_ref9","_this4","SModalContainer","_this$asProps3","styles","hasZoom","zoomWidth","ariaLabel","ariaRoledescription","createElement","cn","Carousel","Prev","inverted","overflow","borderRadius","_objectSpread","_assignProps","i","Item","_extends","zoomOut","Next","Indicators","render","_ref2","_ref10","_this5","SCarousel","_this$asProps4","indicators","Controls","_assignProps2","handlerKeyDown","handlerTouchStart","handlerTouchEnd","Fragment","Container","Indicator","w","h","Context","Consumer","mediaIndex","step","i18n","locale","Object","values","_ref3","arguments[0]","_ref11","SContainer","_assignProps3","_Component2","_super2","_this6","_len","args","Array","_key","apply","refItem","componentWillUnmount","_ref4","_ref12","_this$props","SItem","_assignProps4","_ref5","_ref13","children","_props$top","top","SPrev","_React$useState","useState","_React$useState2","_slicedToArray","isActive","setIsActive","handleMouseEnter","useCallback","handleMouseLeave","_assignProps5","_ref6","_ref14","_props$top2","SNext","_React$useState3","_React$useState4","_assignProps6","_ref19","_ref7","_ref16","SIndicators","origin","_ref15","_assignProps7","_assignProps8","_ref20","_ref8","_ref17","SIndicator","_assignProps9"],"sources":["../../src/Carousel.tsx"],"sourcesContent":["import React from 'react';\nimport createComponent, { Component, sstyled, Root } from '@semcore/core';\nimport Button from '@semcore/button';\nimport Modal from '@semcore/modal';\nimport { Box, Flex } from '@semcore/flex-box';\nimport ChevronRight from '@semcore/icon/ChevronRight/l';\nimport ChevronLeft from '@semcore/icon/ChevronLeft/l';\nimport uniqueIDEnhancement from '@semcore/utils/lib/uniqueID';\nimport i18nEnhance from '@semcore/utils/lib/enhances/i18nEnhance';\nimport { localizedMessages } from './translations/__intergalactic-dynamic-locales';\nimport logger from '@semcore/utils/lib/logger';\nimport style from './style/carousel.shadow.css';\nimport CarouselType, {\n CarouselProps,\n CarouselState,\n CarouselContext,\n CarouselItem,\n CarouselItemProps,\n CarouselButtonProps,\n CarouselIndicatorsProps,\n CarouselIndicatorProps,\n} from './Carousel.types';\nimport { BoxProps } from '@semcore/flex-box';\nimport { findAllComponents } from '@semcore/utils/lib/findComponent';\nimport { createBreakpoints } from '@semcore/breakpoints';\n\nconst MAP_TRANSFORM: Record<string, 'left' | 'right'> = {\n ArrowLeft: 'left',\n ArrowRight: 'right',\n};\n\nconst enhance = {\n uid: uniqueIDEnhancement(),\n getI18nText: i18nEnhance(localizedMessages),\n};\nconst media = ['(min-width: 481px)', '(max-width: 480px)'];\nconst BreakPoints = createBreakpoints(media);\nconst isSmallScreen = (index: number) => index === 1;\n\nclass CarouselRoot extends Component<\n CarouselProps,\n CarouselContext,\n CarouselState,\n typeof enhance\n> {\n static displayName = 'Carousel';\n static defaultProps = {\n defaultIndex: 0,\n duration: 350,\n step: 100,\n bounded: false,\n i18n: localizedMessages,\n locale: 'en',\n indicators: 'default',\n };\n\n static style = style;\n static enhance = Object.values(enhance);\n\n defaultItemsCount = 0;\n refContainer = React.createRef<HTMLElement>();\n refModalContainer = React.createRef<HTMLElement>();\n _touchStartCoord = -1;\n\n constructor(props: CarouselProps) {\n super(props);\n this.isControlled = props.index !== undefined;\n this.state = {\n items: [],\n isOpenZoom: false,\n selectedIndex: props.index ?? props.defaultIndex ?? 0,\n };\n }\n\n uncontrolledProps() {\n return {\n index: null,\n };\n }\n\n componentDidMount() {\n const { selectedIndex } = this.state;\n\n if (selectedIndex !== 0) {\n if (selectedIndex < 0 || selectedIndex >= this.defaultItemsCount) {\n logger.warn(\n true,\n `You couldn't use value for the \\`index\\` or \\`defaultIndex\\` not from \\`Item's\\` length range.`,\n CarouselRoot.displayName,\n );\n this.setState({ selectedIndex: 0 });\n } else {\n this.transformContainer();\n }\n }\n\n const deprecatedComponents = findAllComponents(this.asProps.Children, [\n 'Carousel.Prev',\n 'Carousel.Next',\n 'Carousel.Indicators',\n ]);\n\n logger.warn(\n deprecatedComponents.length > 0,\n 'Please, try to remove `Prev`, `Next`, `Indicators` and other children components from your Carousel, except only `Item` elements.',\n CarouselRoot.displayName,\n );\n }\n\n componentDidUpdate(prevProps: CarouselProps) {\n const { index } = this.asProps;\n if (prevProps.index !== index && this.isControlled && index !== undefined) {\n this.setState({ selectedIndex: index }, () => this.transformContainer());\n }\n }\n\n handlerKeyDown = (e: React.KeyboardEvent) => {\n switch (e.key) {\n case 'ArrowLeft':\n case 'ArrowRight': {\n e.preventDefault();\n this.transformItem(MAP_TRANSFORM[e.key]);\n }\n }\n };\n\n toggleItem = (item: CarouselItem, removeItem = false) => {\n this.setState((prevState) => {\n const newItems = removeItem\n ? prevState.items.filter((element) => element.node !== item.node)\n : [...prevState.items, item];\n\n return {\n items: newItems,\n };\n });\n\n if (!removeItem) {\n this.defaultItemsCount++;\n }\n };\n\n transformContainer = () => {\n const transform = this.state.selectedIndex * -1 * 100;\n\n if (this.refContainer.current) {\n this.refContainer.current.style.transform = `translateX(${transform}%)`;\n }\n if (this.refModalContainer.current) {\n this.refModalContainer.current.style.transform = `translateX(${transform}%)`;\n }\n };\n\n getDirection = (currentIndex: number, nextIndex: number) => {\n const { bounded } = this.asProps;\n\n if (bounded) {\n return currentIndex < nextIndex ? 'right' : 'left';\n }\n const { items } = this.state;\n const listIndex = items.map((_, ind) => ind);\n const tmpArr = [...listIndex];\n const minTmpArr = tmpArr[0];\n const maxTmpArr = tmpArr[tmpArr.length - 1];\n\n if (tmpArr.length === 2) {\n return currentIndex < nextIndex ? 'right' : 'left';\n }\n if (currentIndex === minTmpArr) {\n tmpArr.unshift(maxTmpArr);\n tmpArr.pop();\n }\n if (currentIndex === maxTmpArr) {\n tmpArr.shift();\n tmpArr.push(minTmpArr);\n }\n\n const tmpCurrentIndex = tmpArr.indexOf(currentIndex);\n const left = tmpArr.indexOf(nextIndex);\n\n return left - tmpCurrentIndex < 0 ? 'left' : 'right';\n };\n\n slideToValue = (nextIndex: number) => {\n const { selectedIndex } = this.state;\n const direction = selectedIndex < nextIndex ? 'right' : 'left';\n let diff = Math.abs(selectedIndex - nextIndex);\n while (diff > 0) {\n this.transformItem(direction);\n diff--;\n }\n };\n\n transformItem = (direction: 'left' | 'right') => {\n const { bounded } = this.asProps;\n const { items, selectedIndex } = this.state;\n const maxIndexIndicator = items.length - 1;\n\n if (direction === 'right') {\n if (bounded && selectedIndex === maxIndexIndicator) {\n this.handlers.index(maxIndexIndicator);\n\n return;\n }\n if (this.isControlled) {\n this.handlers.index(selectedIndex === maxIndexIndicator ? 0 : selectedIndex + 1);\n\n return;\n }\n\n this.setState(\n (prevState) => ({\n selectedIndex: prevState.selectedIndex + 1,\n }),\n () => {\n this.transformContainer();\n this.handlers.index(this.state.selectedIndex);\n },\n );\n\n return;\n }\n if (direction === 'left') {\n if (bounded && selectedIndex === 0) {\n this.handlers.index(0);\n\n return;\n }\n if (this.isControlled) {\n this.handlers.index(selectedIndex === 0 ? maxIndexIndicator : selectedIndex - 1);\n\n return;\n }\n\n this.setState(\n (prevState) => ({\n selectedIndex: prevState.selectedIndex - 1,\n }),\n () => {\n this.transformContainer();\n this.handlers.index(this.state.selectedIndex);\n },\n );\n\n return;\n }\n };\n\n bindHandlerClick = (direction: 'left' | 'right') => {\n return () => {\n this.transformItem(direction);\n };\n };\n\n bindHandlerClickIndicator = (value: number) => {\n return () => {\n const { selectedIndex, items } = this.state;\n if (!this.isControlled && value !== selectedIndex) {\n const newValueIndex = Math.floor(selectedIndex / items.length) * items.length + value;\n this.slideToValue(newValueIndex);\n }\n this.handlers.index(value);\n };\n };\n\n handlerTouchStart = (e: React.TouchEvent) => {\n this._touchStartCoord = e.changedTouches[0].clientX;\n };\n\n handlerTouchEnd = (e: React.TouchEvent) => {\n const touchEndCoord = e.changedTouches[0].clientX;\n const delta = touchEndCoord - this._touchStartCoord;\n if (delta > 50) {\n this.transformItem('left');\n } else if (delta < -50) {\n this.transformItem('right');\n }\n };\n\n getContainerProps() {\n const { duration } = this.asProps;\n\n return {\n ref: this.refContainer,\n duration,\n };\n }\n\n getItemProps(props: CarouselItemProps, index: number) {\n const { zoom } = this.asProps;\n const isCurrent = this.isSelected(index);\n\n return {\n toggleItem: this.toggleItem,\n uid: this.asProps.uid,\n index,\n current: isCurrent,\n zoomIn: zoom,\n onToggleZoomModal: this.handleToggleZoomModal,\n transform: isCurrent ? this.getTransform() : undefined,\n };\n }\n\n handleToggleZoomModal = () => {\n this.setState(\n (prevState) => {\n return {\n isOpenZoom: !prevState.isOpenZoom,\n };\n },\n () => {\n this.state.isOpenZoom && this.transformContainer();\n },\n );\n };\n\n bindHandlerKeydownControl = (direction: 'left' | 'right') => (e: React.KeyboardEvent) => {\n const { key } = e;\n if (key === 'Enter') {\n e.preventDefault();\n this.bindHandlerClick(direction)();\n }\n };\n\n getPrevProps() {\n const { bounded, getI18nText } = this.asProps;\n const { items, selectedIndex } = this.state;\n let disabled = false;\n if (items.length && bounded) {\n disabled = selectedIndex === 0;\n }\n return {\n onClick: this.bindHandlerClick('left'),\n onKeyDown: this.bindHandlerKeydownControl('left'),\n disabled,\n label: getI18nText('prev'),\n };\n }\n\n getNextProps() {\n const { bounded, getI18nText } = this.asProps;\n const { items, selectedIndex } = this.state;\n let disabled = false;\n if (items.length && bounded) {\n disabled = selectedIndex === items.length - 1;\n }\n\n return {\n onClick: this.bindHandlerClick('right'),\n onKeyDown: this.bindHandlerKeydownControl('right'),\n disabled,\n label: getI18nText('next'),\n };\n }\n\n getIndicatorsProps() {\n const { items } = this.state;\n\n return {\n items: items.map((item, key) => ({\n active: this.isSelected(key),\n onClick: this.bindHandlerClickIndicator(key),\n key,\n })),\n };\n }\n\n getTransform() {\n const { items, selectedIndex } = this.state;\n\n const direction = selectedIndex > 0 ? 1 : -1;\n const count = items.length === 0 ? 0 : Math.floor(selectedIndex / items.length) * direction;\n const transform =\n selectedIndex > 0 && selectedIndex < items.length\n ? 0\n : 100 * direction * count * items.length;\n\n return transform;\n }\n\n isSelected(index: number) {\n const { items, selectedIndex } = this.state;\n\n if (items.length === 0) {\n return true;\n }\n\n if (selectedIndex >= 0) {\n return index === selectedIndex % items.length;\n }\n\n return index === (items.length + (selectedIndex % items.length)) % items.length;\n }\n\n renderModal(isSmall: boolean, ComponentItems: any[]) {\n const SModalContainer = Root;\n const {\n styles,\n uid,\n duration,\n zoom: hasZoom,\n zoomWidth,\n 'aria-label': ariaLabel,\n 'aria-roledescription': ariaRoledescription,\n } = this.asProps;\n const { isOpenZoom } = this.state;\n\n return sstyled(styles)(\n <Modal\n visible={isOpenZoom}\n onClose={this.handleToggleZoomModal}\n ghost={true}\n closable={!isSmall}\n >\n <Flex direction={isSmall ? 'column' : 'row'}>\n {!isSmall && <Carousel.Prev inverted={true} />}\n <Box style={{ overflow: 'hidden', borderRadius: 6 }}>\n <SModalContainer\n render={Box}\n role='list'\n use:duration={`${duration}ms`}\n ref={this.refModalContainer}\n use:w={undefined}\n wMax={zoomWidth}\n >\n {ComponentItems.map((item, i) => {\n return (\n <Carousel.Item\n {...item.props}\n key={item.key}\n uid={uid}\n index={i}\n current={this.isSelected(i)}\n toggleItem={undefined}\n zoom={true}\n zoomOut={true}\n transform={this.isSelected(i) ? this.getTransform() : undefined}\n />\n );\n })}\n </SModalContainer>\n </Box>\n {isSmall ? (\n <Flex justifyContent={'center'} mt={2}>\n <Carousel.Prev inverted={true} />\n <Carousel.Next inverted={true} />\n </Flex>\n ) : (\n <Carousel.Next inverted={true} />\n )}\n </Flex>\n {!isSmall && <Carousel.Indicators inverted={true} />}\n </Modal>,\n );\n }\n\n render() {\n const SCarousel = Root;\n const {\n styles,\n Children,\n zoom: hasZoom,\n 'aria-label': ariaLabel,\n 'aria-roledescription': ariaRoledescription,\n indicators,\n } = this.asProps;\n const ComponentItems = findAllComponents(Children, ['Carousel.Item']);\n const Controls = findAllComponents(Children, [\n 'Carousel.Prev',\n 'Carousel.Next',\n 'Carousel.Indicators',\n ]);\n\n return sstyled(styles)(\n <SCarousel\n render={Box}\n role='group'\n onKeyDown={this.handlerKeyDown}\n tabIndex={0}\n onTouchStart={this.handlerTouchStart}\n onTouchEnd={this.handlerTouchEnd}\n >\n {Controls.length === 0 ? (\n <>\n <Flex>\n <Carousel.Prev />\n <Box style={{ overflow: 'hidden', borderRadius: 6 }}>\n <Carousel.Container\n aria-roledescription={ariaRoledescription}\n aria-label={ariaLabel}\n >\n <Children />\n </Carousel.Container>\n </Box>\n <Carousel.Next />\n </Flex>\n {indicators === 'default' && <Carousel.Indicators />}\n {indicators === 'preview' && (\n <Carousel.Indicators>\n {() =>\n ComponentItems.map((item, index) => (\n <Carousel.Indicator\n {...item.props}\n key={item.key}\n w={100}\n h={100}\n aria-roledescription='slide'\n active={this.isSelected(index)}\n onClick={this.bindHandlerClickIndicator(index)}\n />\n ))\n }\n </Carousel.Indicators>\n )}\n </>\n ) : (\n <Children />\n )}\n {hasZoom && (\n <BreakPoints>\n <BreakPoints.Context.Consumer>\n {(mediaIndex) => this.renderModal(isSmallScreen(mediaIndex), ComponentItems)}\n </BreakPoints.Context.Consumer>\n </BreakPoints>\n )}\n </SCarousel>,\n );\n }\n}\n\nconst Container = (props: BoxProps & { duration?: number }) => {\n const SContainer = Root;\n const { styles, duration } = props;\n\n return sstyled(styles)(<SContainer render={Box} role='list' use:duration={`${duration}ms`} />);\n};\n\nclass Item extends Component<CarouselItemProps> {\n refItem = React.createRef<HTMLElement>();\n\n componentDidMount() {\n const { toggleItem } = this.props;\n const refItem = this.refItem.current;\n\n toggleItem && refItem && toggleItem({ node: refItem });\n }\n\n componentWillUnmount() {\n const { toggleItem } = this.props;\n const refItem = this.refItem.current;\n\n toggleItem && refItem && toggleItem({ node: refItem }, true);\n }\n\n componentDidUpdate(prevProps: CarouselItemProps) {\n const transform = this.props.transform;\n const refItem = this.refItem.current;\n\n if (prevProps.transform !== transform && refItem) {\n refItem.style.transform = `translateX(${transform}%)`;\n }\n }\n\n render() {\n const { styles, index, uid, current, zoomIn, onToggleZoomModal, transform } = this.props;\n const SItem = Root;\n\n return sstyled(styles)(\n <SItem\n render={Box}\n ref={this.refItem}\n role='listitem'\n id={`igc-${uid}-carousel-item-${index}`}\n aria-current={current}\n onClick={zoomIn ? onToggleZoomModal : undefined}\n zoomIn={zoomIn}\n />,\n );\n }\n}\n\nconst Prev = (props: CarouselButtonProps) => {\n const { styles, children, Children, label, top = 0, inverted } = props;\n const SPrev = Root;\n const [isActive, setIsActive] = React.useState(false);\n const handleMouseEnter = React.useCallback(() => {\n setIsActive(true);\n }, []);\n const handleMouseLeave = React.useCallback(() => {\n setIsActive(false);\n }, []);\n\n return sstyled(styles)(\n <SPrev render={Box} top={top} onMouseEnter={handleMouseEnter} onMouseLeave={handleMouseLeave}>\n {children ? (\n <Children />\n ) : (\n <Button\n addonLeft={ChevronLeft}\n aria-label={label}\n theme={inverted ? 'invert' : 'muted'}\n use={'tertiary'}\n active={isActive}\n size={'l'}\n />\n )}\n </SPrev>,\n );\n};\n\nconst Next = (props: CarouselButtonProps) => {\n const { styles, children, Children, label, top = 0, inverted } = props;\n const SNext = Root;\n const [isActive, setIsActive] = React.useState(false);\n const handleMouseEnter = React.useCallback(() => {\n setIsActive(true);\n }, []);\n const handleMouseLeave = React.useCallback(() => {\n setIsActive(false);\n }, []);\n\n return sstyled(styles)(\n <SNext render={Box} top={top} onMouseEnter={handleMouseEnter} onMouseLeave={handleMouseLeave}>\n {children ? (\n <Children />\n ) : (\n <Button\n addonLeft={ChevronRight}\n aria-label={label}\n theme={inverted ? 'invert' : 'muted'}\n use={'tertiary'}\n active={isActive}\n size={'l'}\n />\n )}\n </SNext>,\n );\n};\n\nconst Indicators = ({ items, styles, Children, inverted }: CarouselIndicatorsProps) => {\n const SIndicators = Root;\n if (Children.origin) {\n return sstyled(styles)(\n <SIndicators render={Box} aria-hidden='true'>\n <Children />\n </SIndicators>,\n );\n }\n return sstyled(styles)(\n <SIndicators render={Box} aria-hidden='true'>\n {items?.map((item, index) => (\n <Carousel.Indicator key={index} {...item} inverted={inverted} />\n ))}\n </SIndicators>,\n );\n};\n\nconst Indicator = ({ styles, Children }: CarouselIndicatorProps) => {\n const SIndicator = Root;\n return sstyled(styles)(\n <SIndicator render={Box}>\n <Children />\n </SIndicator>,\n );\n};\n\nconst Carousel: typeof CarouselType = createComponent(CarouselRoot, {\n Container,\n Indicators,\n Indicator,\n Item,\n Prev,\n Next,\n});\n\nexport default Carousel;\n"],"mappings":"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"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"Carousel.types.js","names":[],"sources":["../../src/Carousel.types.ts"],"sourcesContent":["import { PropGetterFn, UnknownProperties, Intergalactic } from '@semcore/core';\nimport { BoxProps } from '@semcore/flex-box';\nimport { IRootComponentProps } from '@semcore/core/src';\n\n/** @deprecated */\nexport interface ICarouselProps extends CarouselProps, UnknownProperties {}\nexport type CarouselProps = BoxProps & {\n /** Index active item */\n index?: number;\n /**\n * Index of the active item selected by default\n * @default 0\n */\n defaultIndex?: number;\n /** Called when the selection is changed */\n onIndexChange?: (index: number) => void;\n /** Animation duration\n * @default 300 */\n duration?: number;\n /** Disables infinite items change in the carousel\n * @default false */\n bounded?: boolean;\n /** @ignore */\n step?: number;\n locale?: string;\n /** Enable zoom feature for carousel items */\n zoom?: boolean;\n /** Width for items in zooming modal */\n zoomWidth?: number;\n /** Type of indicators */\n indicators?: 'default' | 'hide' | 'preview';\n};\n\n/** @deprecated */\nexport interface ICarouselContext extends CarouselContext, UnknownProperties {}\nexport type CarouselContext = {\n getContainerProps: PropGetterFn;\n getItemProps: PropGetterFn;\n getPrevProps: PropGetterFn;\n getNextProps: PropGetterFn;\n getIndicatorsProps: PropGetterFn;\n};\n\nexport type CarouselItem = {\n node: HTMLElement;\n};\n\nexport type CarouselItemProps = BoxProps & {\n /** Flag for css cursor\n * @private\n */\n zoomIn?: boolean;\n /** Flag for css cursor\n * @private\n */\n zoomOut?: boolean;\n\n /** Function to add item to list in Carousel\n * @private\n */\n toggleItem?: (item: CarouselItem, toRemove?: boolean) => void;\n\n /** Index of item in carousel */\n index?: number;\n\n uid?: string;\n\n /** Flag - is current item shown now */\n current?: boolean;\n\n /** Handler for show item in modal window\n * @private\n */\n onToggleZoomModal?: () => void;\n\n /** Value for transform item\n * @private\n */\n transform?: number;\n};\n\n/** @deprecated */\nexport interface ICarouselState extends CarouselState, UnknownProperties {}\nexport type CarouselState = {\n isOpenZoom: boolean;\n selectedIndex: number;\n items: CarouselItem[];\n};\n\nexport type CarouselButtonProps = IRootComponentProps &\n BoxProps & {\n label?: string;\n inverted?: boolean;\n };\n\nexport type CarouselIndicatorsProps = IRootComponentProps &\n BoxProps & {\n items?: CarouselItem[];\n inverted?: boolean;\n };\n\nexport type CarouselIndicatorProps = IRootComponentProps &\n Omit<BoxProps, 'position'> & {\n active?: boolean;\n onClick?: () => void;\n inverted?: boolean;\n } & CarouselItem;\n\ndeclare const CarouselType: Intergalactic.Component<\n 'div',\n CarouselProps,\n CarouselContext & CarouselState\n> & {\n Container: Intergalactic.Component<'div', BoxProps>;\n Indicators: Intergalactic.Component<'div', CarouselIndicatorsProps, CarouselState>;\n Indicator: Intergalactic.Component<'div', CarouselIndicatorProps>;\n Item: Intergalactic.Component<'div', CarouselItemProps>;\n Prev: Intergalactic.Component<'div', CarouselButtonProps>;\n Next: Intergalactic.Component<'div', CarouselButtonProps>;\n};\n\nexport default CarouselType;\n"],"mappings":""}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","names":["default"],"sources":["../../src/index.ts"],"sourcesContent":["export { default } from './Carousel';\n"],"mappings":"AAAA,SAASA,OAAO,QAAQ,YAAY"}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
import de from './de.json';
|
2
|
+
import en from './en.json';
|
3
|
+
import es from './es.json';
|
4
|
+
import fr from './fr.json';
|
5
|
+
import it from './it.json';
|
6
|
+
import ja from './ja.json';
|
7
|
+
import ko from './ko.json';
|
8
|
+
import nl from './nl.json';
|
9
|
+
import pt from './pt.json';
|
10
|
+
import tr from './tr.json';
|
11
|
+
import vi from './vi.json';
|
12
|
+
import zh from './zh.json';
|
13
|
+
import pl from './pl.json';
|
14
|
+
import sv from './sv.json';
|
15
|
+
export var localizedMessages = {
|
16
|
+
de: de,
|
17
|
+
en: en,
|
18
|
+
es: es,
|
19
|
+
fr: fr,
|
20
|
+
it: it,
|
21
|
+
ja: ja,
|
22
|
+
ko: ko,
|
23
|
+
nl: nl,
|
24
|
+
pt: pt,
|
25
|
+
tr: tr,
|
26
|
+
vi: vi,
|
27
|
+
zh: zh,
|
28
|
+
pl: pl,
|
29
|
+
sv: sv
|
30
|
+
};
|
31
|
+
//# sourceMappingURL=__intergalactic-dynamic-locales.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"__intergalactic-dynamic-locales.js","names":["de","en","es","fr","it","ja","ko","nl","pt","tr","vi","zh","pl","sv","localizedMessages"],"sources":["../../../src/translations/__intergalactic-dynamic-locales.ts"],"sourcesContent":["import de from './de.json';\nimport en from './en.json';\nimport es from './es.json';\nimport fr from './fr.json';\nimport it from './it.json';\nimport ja from './ja.json';\nimport ko from './ko.json';\nimport nl from './nl.json';\nimport pt from './pt.json';\nimport tr from './tr.json';\nimport vi from './vi.json';\nimport zh from './zh.json';\nimport pl from './pl.json';\nimport sv from './sv.json';\n\nexport const localizedMessages = {\n de,\n en,\n es,\n fr,\n it,\n ja,\n ko,\n nl,\n pt,\n tr,\n vi,\n zh,\n pl,\n sv,\n};\n"],"mappings":"AAAA,OAAOA,EAAE,MAAM,WAAW;AAC1B,OAAOC,EAAE,MAAM,WAAW;AAC1B,OAAOC,EAAE,MAAM,WAAW;AAC1B,OAAOC,EAAE,MAAM,WAAW;AAC1B,OAAOC,EAAE,MAAM,WAAW;AAC1B,OAAOC,EAAE,MAAM,WAAW;AAC1B,OAAOC,EAAE,MAAM,WAAW;AAC1B,OAAOC,EAAE,MAAM,WAAW;AAC1B,OAAOC,EAAE,MAAM,WAAW;AAC1B,OAAOC,EAAE,MAAM,WAAW;AAC1B,OAAOC,EAAE,MAAM,WAAW;AAC1B,OAAOC,EAAE,MAAM,WAAW;AAC1B,OAAOC,EAAE,MAAM,WAAW;AAC1B,OAAOC,EAAE,MAAM,WAAW;AAE1B,OAAO,IAAMC,iBAAiB,GAAG;EAC/Bd,EAAE,EAAFA,EAAE;EACFC,EAAE,EAAFA,EAAE;EACFC,EAAE,EAAFA,EAAE;EACFC,EAAE,EAAFA,EAAE;EACFC,EAAE,EAAFA,EAAE;EACFC,EAAE,EAAFA,EAAE;EACFC,EAAE,EAAFA,EAAE;EACFC,EAAE,EAAFA,EAAE;EACFC,EAAE,EAAFA,EAAE;EACFC,EAAE,EAAFA,EAAE;EACFC,EAAE,EAAFA,EAAE;EACFC,EAAE,EAAFA,EAAE;EACFC,EAAE,EAAFA,EAAE;EACFC,EAAE,EAAFA;AACF,CAAC"}
|
@@ -0,0 +1,298 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
4
|
+
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard");
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
6
|
+
value: true
|
7
|
+
});
|
8
|
+
exports["default"] = void 0;
|
9
|
+
Object.defineProperty(exports, "inputProps", {
|
10
|
+
enumerable: true,
|
11
|
+
get: function get() {
|
12
|
+
return _inputProps.inputProps;
|
13
|
+
}
|
14
|
+
});
|
15
|
+
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
|
16
|
+
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
|
17
|
+
var _objectSpread2 = _interopRequireDefault(require("@babel/runtime/helpers/objectSpread2"));
|
18
|
+
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
|
19
|
+
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
20
|
+
var _assertThisInitialized2 = _interopRequireDefault(require("@babel/runtime/helpers/assertThisInitialized"));
|
21
|
+
var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
|
22
|
+
var _createSuper2 = _interopRequireDefault(require("@babel/runtime/helpers/createSuper"));
|
23
|
+
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
24
|
+
var _core = _interopRequireWildcard(require("@semcore/core"));
|
25
|
+
var _react = _interopRequireDefault(require("react"));
|
26
|
+
var _flexBox = require("@semcore/flex-box");
|
27
|
+
var _typography = require("@semcore/typography");
|
28
|
+
var _resolveColorEnhance = _interopRequireDefault(require("@semcore/utils/lib/enhances/resolveColorEnhance"));
|
29
|
+
var _assignProps5 = require("@semcore/utils/lib/assignProps");
|
30
|
+
var _keyboardFocusEnhance = _interopRequireDefault(require("@semcore/utils/lib/enhances/keyboardFocusEnhance"));
|
31
|
+
var _inputProps = _interopRequireWildcard(require("@semcore/utils/lib/inputProps"));
|
32
|
+
var _logger = _interopRequireDefault(require("@semcore/utils/lib/logger"));
|
33
|
+
var _excluded = ["size", "state", "theme", "keyboardFocused", "checked", "includeInputProps", "resolveColor"],
|
34
|
+
_excluded2 = ["children", "Children"];
|
35
|
+
/*__reshadow-styles__:"./style/checkbox.shadow.css"*/
|
36
|
+
var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".___SLabel_gri9m_gg_{position:relative;display:inline-flex;align-items:flex-start;cursor:pointer}.___SLabel_gri9m_gg_.__disabled_gri9m_gg_{cursor:default}.___SText_gri9m_gg_{margin-left:var(--intergalactic-spacing-2x, 8px);color:var(--intergalactic-text-primary, #191b23)}.___SText_gri9m_gg_.__disabled_gri9m_gg_{opacity:var(--intergalactic-disabled-opacity, 0.3)}.___SControl_gri9m_gg_{position:absolute;overflow:hidden;width:1px;height:1px;clip:rect(0,0,0,0)}.___SCheckbox_gri9m_gg_{position:relative;flex-shrink:0;margin:0;padding:0;outline:0}.___SCheckbox_gri9m_gg_::before{content:\"\";position:absolute;top:0;left:0;right:0;bottom:0;background:var(--intergalactic-bg-primary-neutral, #ffffff);border:1px solid;border-radius:var(--intergalactic-addon-rounded, 4px);transition:calc(var(--intergalactic-duration-control, 200)*1ms) all ease-in-out}.___SCheckbox_gri9m_gg_::after{content:\"\";position:absolute;top:1px;left:0;right:0;bottom:0;margin:0 var(--intergalactic-spacing-05x, 2px);background-repeat:no-repeat;background-position:center center}.___SCheckbox_gri9m_gg_._state_normal_gri9m_gg_:before{border-color:var(--intergalactic-border-primary, #c4c7cf)}.___SCheckbox_gri9m_gg_._state_normal_gri9m_gg_.__keyboardFocused_gri9m_gg_:before{border-color:var(--intergalactic-border-info-active, #006dca)}.___SCheckbox_gri9m_gg_._size_l_gri9m_gg_,.___SCheckbox_gri9m_gg_._size_m_gri9m_gg_{margin-top:var(--intergalactic-spacing-05x, 2px);width:20px;height:20px}.___SCheckbox_gri9m_gg_._size_l_gri9m_gg_.__checked_gri9m_gg_::after{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iOSIgdmlld0JveD0iMCAwIDEyIDkiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xMSAxLjVMNC43NSA3Ljc1TDEgNCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==)}.___SCheckbox_gri9m_gg_._size_m_gri9m_gg_{width:16px;height:16px}.___SCheckbox_gri9m_gg_._size_m_gri9m_gg_.__checked_gri9m_gg_::after{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iNyIgdmlld0JveD0iMCAwIDEwIDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik04LjI1IDFMNCA1LjI1TDEuNzUgMyIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==)}.___SText_gri9m_gg_._size_l_gri9m_gg_{font-size:var(--intergalactic-fs-300, 16px);line-height:var(--intergalactic-lh-300, 150%)}.___SText_gri9m_gg_._size_m_gri9m_gg_{font-size:var(--intergalactic-fs-200, 14px);line-height:var(--intergalactic-lh-200, 142%)}.___SControl_gri9m_gg_.__checked_gri9m_gg_~.___SCheckbox_gri9m_gg_._state_invalid_gri9m_gg_:before,.___SControl_gri9m_gg_.__checked_gri9m_gg_~.___SCheckbox_gri9m_gg_._state_normal_gri9m_gg_:before,.___SControl_gri9m_gg_.__indeterminate_gri9m_gg_~.___SCheckbox_gri9m_gg_._state_normal_gri9m_gg_:before{background-color:var(--intergalactic-control-primary-info, #008ff8);border-color:var(--intergalactic-control-primary-info, #008ff8)}.___SCheckbox_gri9m_gg_._state_invalid_gri9m_gg_:before,.___SControl_gri9m_gg_.__checked_gri9m_gg_~.___SCheckbox_gri9m_gg_._state_invalid_gri9m_gg_:before{border-color:var(--intergalactic-border-critical-active, #d1002f)}.___SCheckbox_gri9m_gg_._state_invalid_gri9m_gg_.__keyboardFocused_gri9m_gg_:before,.___SControl_gri9m_gg_.__checked_gri9m_gg_~.___SCheckbox_gri9m_gg_._state_invalid_gri9m_gg_.__keyboardFocused_gri9m_gg_:before{box-shadow:var(--intergalactic-keyboard-focus-invalid, 0px 0px 0px 3px rgba(255, 73, 83, 0.5))}.___SCheckbox_gri9m_gg_._state_normal_gri9m_gg_.__keyboardFocused_gri9m_gg_:before,.___SControl_gri9m_gg_.__checked_gri9m_gg_.__keyboardFocused_gri9m_gg_:before{box-shadow:var(--intergalactic-keyboard-focus, 0px 0px 0px 3px rgba(0, 143, 248, 0.5))}.___SControl_gri9m_gg_.__disabled_gri9m_gg_~.___SCheckbox_gri9m_gg_:before{opacity:var(--intergalactic-disabled-opacity, 0.3);cursor:default}.___SControl_gri9m_gg_.__checked_gri9m_gg_~.___SCheckbox_gri9m_gg_._state_invalid_gri9m_gg_:before{background-color:var(--intergalactic-control-primary-critical, #ff4953);border-color:var(--intergalactic-control-primary-critical, #ff4953)}.___SControl_gri9m_gg_.__indeterminate_gri9m_gg_~.___SCheckbox_gri9m_gg_:after{background-color:var(--intergalactic-bg-primary-neutral, #ffffff);margin:auto;border-radius:1px}.___SControl_gri9m_gg_.__indeterminate_gri9m_gg_~.___SCheckbox_gri9m_gg_._size_l_gri9m_gg_:after{width:12px;height:2px}.___SControl_gri9m_gg_.__indeterminate_gri9m_gg_~.___SCheckbox_gri9m_gg_._size_m_gri9m_gg_:after{width:8px;height:2px}.___SControl_gri9m_gg_.__indeterminate_gri9m_gg_~.___SCheckbox_gri9m_gg_._state_invalid_gri9m_gg_:before{background-color:var(--intergalactic-control-primary-critical, #ff4953);border-color:var(--intergalactic-control-primary-critical, #ff4953)}.___SCheckbox_gri9m_gg_.__theme_gri9m_gg_._state_normal_gri9m_gg_.__keyboardFocused_gri9m_gg_:before,.___SCheckbox_gri9m_gg_.__theme_gri9m_gg_._state_normal_gri9m_gg_:before{border-color:var(--theme_gri9m)}.___SControl_gri9m_gg_.__checked_gri9m_gg_~.___SCheckbox_gri9m_gg_.__theme_gri9m_gg_._state_invalid_gri9m_gg_:before,.___SControl_gri9m_gg_.__checked_gri9m_gg_~.___SCheckbox_gri9m_gg_.__theme_gri9m_gg_._state_normal_gri9m_gg_:before,.___SControl_gri9m_gg_.__indeterminate_gri9m_gg_~.___SCheckbox_gri9m_gg_.__theme_gri9m_gg_._state_normal_gri9m_gg_:before{background-color:var(--theme_gri9m);border-color:var(--theme_gri9m)}" /*__inner_css_end__*/, "gri9m_gg_") /*__reshadow_css_end__*/, {
|
37
|
+
"__SControl": "___SControl_gri9m_gg_",
|
38
|
+
"__SText": "___SText_gri9m_gg_",
|
39
|
+
"_size_l": "_size_l_gri9m_gg_",
|
40
|
+
"_size_m": "_size_m_gri9m_gg_",
|
41
|
+
"_checked": "__checked_gri9m_gg_",
|
42
|
+
"__SCheckbox": "___SCheckbox_gri9m_gg_",
|
43
|
+
"_state_normal": "_state_normal_gri9m_gg_",
|
44
|
+
"_state_invalid": "_state_invalid_gri9m_gg_",
|
45
|
+
"_indeterminate": "__indeterminate_gri9m_gg_",
|
46
|
+
"_disabled": "__disabled_gri9m_gg_",
|
47
|
+
"_theme": "__theme_gri9m_gg_",
|
48
|
+
"--theme": "--theme_gri9m",
|
49
|
+
"_keyboardFocused": "__keyboardFocused_gri9m_gg_",
|
50
|
+
"__SLabel": "___SLabel_gri9m_gg_"
|
51
|
+
});
|
52
|
+
var CheckboxRoot = /*#__PURE__*/function (_Component) {
|
53
|
+
(0, _inherits2["default"])(CheckboxRoot, _Component);
|
54
|
+
var _super = (0, _createSuper2["default"])(CheckboxRoot);
|
55
|
+
function CheckboxRoot() {
|
56
|
+
var _this;
|
57
|
+
(0, _classCallCheck2["default"])(this, CheckboxRoot);
|
58
|
+
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
59
|
+
args[_key] = arguments[_key];
|
60
|
+
}
|
61
|
+
_this = _super.call.apply(_super, [this].concat(args));
|
62
|
+
(0, _defineProperty2["default"])((0, _assertThisInitialized2["default"])(_this), "state", {
|
63
|
+
hoistedDisabled: undefined
|
64
|
+
});
|
65
|
+
(0, _defineProperty2["default"])((0, _assertThisInitialized2["default"])(_this), "hoistDisabled", function (disabled) {
|
66
|
+
_logger["default"].warn(true, "Don't set disabled on Checkbox.Value or Checkbox.Text, set it on Checkbox instead. Otherwise it will produce wrong SSR output.", _this.asProps['data-ui-name']);
|
67
|
+
_this.setState({
|
68
|
+
hoistedDisabled: disabled
|
69
|
+
});
|
70
|
+
});
|
71
|
+
return _this;
|
72
|
+
}
|
73
|
+
(0, _createClass2["default"])(CheckboxRoot, [{
|
74
|
+
key: "getTextProps",
|
75
|
+
value: function getTextProps() {
|
76
|
+
var _this$asProps = this.asProps,
|
77
|
+
size = _this$asProps.size,
|
78
|
+
disabled = _this$asProps.disabled,
|
79
|
+
label = _this$asProps.label;
|
80
|
+
var hoistedDisabled = this.state.hoistedDisabled;
|
81
|
+
return {
|
82
|
+
size: size,
|
83
|
+
disabled: disabled !== null && disabled !== void 0 ? disabled : hoistedDisabled,
|
84
|
+
children: label,
|
85
|
+
hoistDisabled: this.hoistDisabled,
|
86
|
+
rootDisabled: this.props.disabled
|
87
|
+
};
|
88
|
+
}
|
89
|
+
}, {
|
90
|
+
key: "getValueProps",
|
91
|
+
value: function getValueProps() {
|
92
|
+
var _this$asProps2 = this.asProps,
|
93
|
+
size = _this$asProps2.size,
|
94
|
+
state = _this$asProps2.state,
|
95
|
+
theme = _this$asProps2.theme,
|
96
|
+
onChange = _this$asProps2.onChange,
|
97
|
+
defaultChecked = _this$asProps2.defaultChecked,
|
98
|
+
checked = _this$asProps2.checked,
|
99
|
+
disabled = _this$asProps2.disabled,
|
100
|
+
indeterminate = _this$asProps2.indeterminate;
|
101
|
+
var hoistedDisabled = this.state.hoistedDisabled;
|
102
|
+
return {
|
103
|
+
size: size,
|
104
|
+
disabled: disabled !== null && disabled !== void 0 ? disabled : hoistedDisabled,
|
105
|
+
state: state,
|
106
|
+
theme: theme,
|
107
|
+
onChange: onChange,
|
108
|
+
checked: checked,
|
109
|
+
defaultChecked: defaultChecked,
|
110
|
+
indeterminate: indeterminate,
|
111
|
+
hoistDisabled: this.hoistDisabled,
|
112
|
+
rootDisabled: this.props.disabled
|
113
|
+
};
|
114
|
+
}
|
115
|
+
}, {
|
116
|
+
key: "render",
|
117
|
+
value: function render() {
|
118
|
+
var _ref = this.asProps,
|
119
|
+
_ref5;
|
120
|
+
var SLabel = _flexBox.Box;
|
121
|
+
var _this$asProps3 = this.asProps,
|
122
|
+
Children = _this$asProps3.Children,
|
123
|
+
hasChildren = _this$asProps3.children,
|
124
|
+
styles = _this$asProps3.styles;
|
125
|
+
return _ref5 = (0, _core.sstyled)(styles), /*#__PURE__*/_react["default"].createElement(SLabel, _ref5.cn("SLabel", (0, _objectSpread2["default"])({}, (0, _core.assignProps)({
|
126
|
+
"tag": 'label',
|
127
|
+
"__excludeProps": ['onChange', 'indeterminate', 'checked', 'checkedDefault', 'label']
|
128
|
+
}, _ref))), hasChildren ? /*#__PURE__*/_react["default"].createElement(Children, _ref5.cn("Children", {})) : /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, /*#__PURE__*/_react["default"].createElement(Checkbox.Value, null), /*#__PURE__*/_react["default"].createElement(Checkbox.Text, null)));
|
129
|
+
}
|
130
|
+
}]);
|
131
|
+
return CheckboxRoot;
|
132
|
+
}(_core.Component);
|
133
|
+
(0, _defineProperty2["default"])(CheckboxRoot, "displayName", 'Checkbox');
|
134
|
+
(0, _defineProperty2["default"])(CheckboxRoot, "style", style);
|
135
|
+
(0, _defineProperty2["default"])(CheckboxRoot, "defaultProps", {
|
136
|
+
size: 'm',
|
137
|
+
state: 'normal',
|
138
|
+
defaultChecked: false
|
139
|
+
});
|
140
|
+
var ValueRoot = /*#__PURE__*/function (_Component2) {
|
141
|
+
(0, _inherits2["default"])(ValueRoot, _Component2);
|
142
|
+
var _super2 = (0, _createSuper2["default"])(ValueRoot);
|
143
|
+
function ValueRoot() {
|
144
|
+
(0, _classCallCheck2["default"])(this, ValueRoot);
|
145
|
+
return _super2.apply(this, arguments);
|
146
|
+
}
|
147
|
+
(0, _createClass2["default"])(ValueRoot, [{
|
148
|
+
key: "handleClick",
|
149
|
+
value: function handleClick(e) {
|
150
|
+
// idk for what it exists, leaving just in case it saves us from some bugs
|
151
|
+
e.stopPropagation();
|
152
|
+
}
|
153
|
+
}, {
|
154
|
+
key: "uncontrolledProps",
|
155
|
+
value: function uncontrolledProps() {
|
156
|
+
return {
|
157
|
+
checked: function checked(e) {
|
158
|
+
return e.target.checked;
|
159
|
+
}
|
160
|
+
};
|
161
|
+
}
|
162
|
+
}, {
|
163
|
+
key: "getControlProps",
|
164
|
+
value: function getControlProps() {
|
165
|
+
var _this$asProps4 = this.asProps,
|
166
|
+
forwardRef = _this$asProps4.forwardRef,
|
167
|
+
includeInputProps = _this$asProps4.includeInputProps,
|
168
|
+
indeterminate = _this$asProps4.indeterminate,
|
169
|
+
state = _this$asProps4.state;
|
170
|
+
var _getInputProps = (0, _inputProps["default"])(this.asProps, includeInputProps),
|
171
|
+
_getInputProps2 = (0, _slicedToArray2["default"])(_getInputProps, 1),
|
172
|
+
controlProps = _getInputProps2[0];
|
173
|
+
return (0, _objectSpread2["default"])((0, _objectSpread2["default"])({
|
174
|
+
indeterminate: indeterminate,
|
175
|
+
ref: forwardRef,
|
176
|
+
state: state
|
177
|
+
}, controlProps), {}, {
|
178
|
+
onClick: (0, _assignProps5.callAllEventHandlers)(controlProps.onClick, this.handleClick)
|
179
|
+
});
|
180
|
+
}
|
181
|
+
}, {
|
182
|
+
key: "getCheckMarkProps",
|
183
|
+
value: function getCheckMarkProps() {
|
184
|
+
var _this$asProps5 = this.asProps,
|
185
|
+
size = _this$asProps5.size,
|
186
|
+
state = _this$asProps5.state,
|
187
|
+
theme = _this$asProps5.theme,
|
188
|
+
keyboardFocused = _this$asProps5.keyboardFocused,
|
189
|
+
checked = _this$asProps5.checked,
|
190
|
+
includeInputProps = _this$asProps5.includeInputProps,
|
191
|
+
resolveColor = _this$asProps5.resolveColor,
|
192
|
+
other = (0, _objectWithoutProperties2["default"])(_this$asProps5, _excluded);
|
193
|
+
var _getInputProps3 = (0, _inputProps["default"])(other, includeInputProps),
|
194
|
+
_getInputProps4 = (0, _slicedToArray2["default"])(_getInputProps3, 2),
|
195
|
+
checkMarkProps = _getInputProps4[1];
|
196
|
+
var children = checkMarkProps.children,
|
197
|
+
Children = checkMarkProps.Children,
|
198
|
+
propsWithoutChildren = (0, _objectWithoutProperties2["default"])(checkMarkProps, _excluded2);
|
199
|
+
return (0, _objectSpread2["default"])({
|
200
|
+
theme: theme,
|
201
|
+
size: size,
|
202
|
+
state: state,
|
203
|
+
keyboardFocused: keyboardFocused,
|
204
|
+
checked: checked,
|
205
|
+
resolveColor: resolveColor
|
206
|
+
}, propsWithoutChildren);
|
207
|
+
}
|
208
|
+
}, {
|
209
|
+
key: "componentDidUpdate",
|
210
|
+
value: function componentDidUpdate() {
|
211
|
+
if (this.asProps.rootDisabled !== this.asProps.disabled) {
|
212
|
+
this.asProps.hoistDisabled(this.asProps.disabled);
|
213
|
+
}
|
214
|
+
}
|
215
|
+
}, {
|
216
|
+
key: "componentDidMount",
|
217
|
+
value: function componentDidMount() {
|
218
|
+
if (this.asProps.rootDisabled !== this.asProps.disabled) {
|
219
|
+
this.asProps.hoistDisabled(this.asProps.disabled);
|
220
|
+
}
|
221
|
+
}
|
222
|
+
}, {
|
223
|
+
key: "render",
|
224
|
+
value: function render() {
|
225
|
+
var _ref7;
|
226
|
+
var _this$asProps6 = this.asProps,
|
227
|
+
styles = _this$asProps6.styles,
|
228
|
+
hasChildren = _this$asProps6.children,
|
229
|
+
Children = _this$asProps6.Children;
|
230
|
+
if (!hasChildren) {
|
231
|
+
var _ref6;
|
232
|
+
return _ref6 = (0, _core.sstyled)(styles), /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, /*#__PURE__*/_react["default"].createElement(Checkbox.Value.Control, null), /*#__PURE__*/_react["default"].createElement(Checkbox.Value.CheckMark, null));
|
233
|
+
}
|
234
|
+
return _ref7 = (0, _core.sstyled)(styles), /*#__PURE__*/_react["default"].createElement(Children, _ref7.cn("Children", {}));
|
235
|
+
}
|
236
|
+
}]);
|
237
|
+
return ValueRoot;
|
238
|
+
}(_core.Component);
|
239
|
+
(0, _defineProperty2["default"])(ValueRoot, "defaultProps", {
|
240
|
+
includeInputProps: _inputProps.inputProps
|
241
|
+
});
|
242
|
+
(0, _defineProperty2["default"])(ValueRoot, "enhance", [(0, _keyboardFocusEnhance["default"])(), (0, _resolveColorEnhance["default"])()]);
|
243
|
+
(0, _defineProperty2["default"])(ValueRoot, "displayName", 'Value');
|
244
|
+
(0, _defineProperty2["default"])(ValueRoot, "style", style);
|
245
|
+
var Control = function Control(props) {
|
246
|
+
var _ref2 = arguments[0],
|
247
|
+
_ref8;
|
248
|
+
var SControl = _flexBox.Box;
|
249
|
+
var indeterminate = props.indeterminate,
|
250
|
+
styles = props.styles,
|
251
|
+
state = props.state;
|
252
|
+
return _ref8 = (0, _core.sstyled)(styles), /*#__PURE__*/_react["default"].createElement(SControl, _ref8.cn("SControl", (0, _objectSpread2["default"])({}, (0, _core.assignProps)({
|
253
|
+
"tag": 'input',
|
254
|
+
"type": 'checkbox',
|
255
|
+
"aria-checked": indeterminate ? 'mixed' : undefined,
|
256
|
+
"aria-invalid": state === 'invalid'
|
257
|
+
}, _ref2))));
|
258
|
+
};
|
259
|
+
Control.displayName = 'Control';
|
260
|
+
var CheckMark = function CheckMark(props) {
|
261
|
+
var _ref3 = arguments[0],
|
262
|
+
_ref9;
|
263
|
+
var SCheckbox = _flexBox.Flex;
|
264
|
+
var theme = props.theme,
|
265
|
+
styles = props.styles,
|
266
|
+
resolveColor = props.resolveColor;
|
267
|
+
return _ref9 = (0, _core.sstyled)(styles), /*#__PURE__*/_react["default"].createElement(SCheckbox, _ref9.cn("SCheckbox", (0, _objectSpread2["default"])({}, (0, _core.assignProps)({
|
268
|
+
"tag": 'span',
|
269
|
+
"use:theme": resolveColor(theme)
|
270
|
+
}, _ref3))));
|
271
|
+
};
|
272
|
+
CheckMark.displayName = 'CheckMark';
|
273
|
+
var Text = function Text(props) {
|
274
|
+
var _ref4 = arguments[0],
|
275
|
+
_ref10;
|
276
|
+
var SText = _typography.Text;
|
277
|
+
var styles = props.styles;
|
278
|
+
_react["default"].useEffect(function () {
|
279
|
+
if (props.rootDisabled !== props.disabled) {
|
280
|
+
props.hoistDisabled(props.disabled);
|
281
|
+
}
|
282
|
+
}, [props.rootDisabled, props.disabled, props.hoistDisabled]);
|
283
|
+
return _ref10 = (0, _core.sstyled)(styles), /*#__PURE__*/_react["default"].createElement(SText, _ref10.cn("SText", (0, _objectSpread2["default"])({}, (0, _core.assignProps)({
|
284
|
+
"tag": 'span'
|
285
|
+
}, _ref4))));
|
286
|
+
};
|
287
|
+
Text.displayName = 'Text';
|
288
|
+
var Value = (0, _core["default"])(ValueRoot, {
|
289
|
+
Control: Control,
|
290
|
+
CheckMark: CheckMark
|
291
|
+
});
|
292
|
+
var Checkbox = (0, _core["default"])(CheckboxRoot, {
|
293
|
+
Text: Text,
|
294
|
+
Value: Value
|
295
|
+
});
|
296
|
+
var _default = Checkbox;
|
297
|
+
exports["default"] = _default;
|
298
|
+
//# sourceMappingURL=Checkbox.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"Checkbox.js","names":["_core","_interopRequireWildcard","require","_react","_interopRequireDefault","_flexBox","_typography","_resolveColorEnhance","_assignProps5","_keyboardFocusEnhance","_inputProps","_logger","_excluded","_excluded2","style","sstyled","insert","CheckboxRoot","_Component","_inherits2","_super","_createSuper2","_this","_classCallCheck2","_len","arguments","length","args","Array","_key","call","apply","concat","_defineProperty2","_assertThisInitialized2","hoistedDisabled","undefined","disabled","logger","warn","asProps","setState","_createClass2","key","value","getTextProps","_this$asProps","size","label","state","children","hoistDisabled","rootDisabled","props","getValueProps","_this$asProps2","theme","onChange","defaultChecked","checked","indeterminate","render","_ref","_ref5","SLabel","Box","_this$asProps3","Children","hasChildren","styles","createElement","cn","_objectSpread2","assignProps","Fragment","Checkbox","Value","Text","Component","ValueRoot","_Component2","_super2","handleClick","e","stopPropagation","uncontrolledProps","target","getControlProps","_this$asProps4","forwardRef","includeInputProps","_getInputProps","getInputProps","_getInputProps2","_slicedToArray2","controlProps","ref","onClick","callAllEventHandlers","getCheckMarkProps","_this$asProps5","keyboardFocused","resolveColor","other","_objectWithoutProperties2","_getInputProps3","_getInputProps4","checkMarkProps","propsWithoutChildren","componentDidUpdate","componentDidMount","_ref7","_this$asProps6","_ref6","Control","CheckMark","inputProps","autoFocusEnhance","resolveColorEnhance","_ref2","arguments[0]","_ref8","SControl","displayName","_ref3","_ref9","SCheckbox","Flex","_ref4","_ref10","SText","TypographyText","React","useEffect","createComponent","_default","exports"],"sources":["../../src/Checkbox.jsx"],"sourcesContent":["import React from 'react';\nimport createComponent, { Component, sstyled, Root } from '@semcore/core';\nimport { Box, Flex } from '@semcore/flex-box';\nimport { Text as TypographyText } from '@semcore/typography';\nimport resolveColorEnhance from '@semcore/utils/lib/enhances/resolveColorEnhance';\nimport { callAllEventHandlers } from '@semcore/utils/lib/assignProps';\nimport autoFocusEnhance from '@semcore/utils/lib/enhances/keyboardFocusEnhance';\nimport getInputProps, { inputProps } from '@semcore/utils/lib/inputProps';\nimport logger from '@semcore/utils/lib/logger';\n\nimport style from './style/checkbox.shadow.css';\n\nclass CheckboxRoot extends Component {\n static displayName = 'Checkbox';\n static style = style;\n\n static defaultProps = {\n size: 'm',\n state: 'normal',\n defaultChecked: false,\n };\n state = {\n hoistedDisabled: undefined,\n };\n\n hoistDisabled = (disabled) => {\n logger.warn(\n true,\n `Don't set disabled on Checkbox.Value or Checkbox.Text, set it on Checkbox instead. Otherwise it will produce wrong SSR output.`,\n this.asProps['data-ui-name'],\n );\n this.setState({ hoistedDisabled: disabled });\n };\n\n getTextProps() {\n const { size, disabled, label } = this.asProps;\n const { hoistedDisabled } = this.state;\n return {\n size,\n disabled: disabled ?? hoistedDisabled,\n children: label,\n hoistDisabled: this.hoistDisabled,\n rootDisabled: this.props.disabled,\n };\n }\n\n getValueProps() {\n const { size, state, theme, onChange, defaultChecked, checked, disabled, indeterminate } =\n this.asProps;\n const { hoistedDisabled } = this.state;\n\n return {\n size,\n disabled: disabled ?? hoistedDisabled,\n state,\n theme,\n onChange,\n checked,\n defaultChecked,\n indeterminate,\n hoistDisabled: this.hoistDisabled,\n rootDisabled: this.props.disabled,\n };\n }\n\n render() {\n const SLabel = Root;\n const { Children, children: hasChildren, styles } = this.asProps;\n return sstyled(styles)(\n <SLabel\n render={Box}\n tag='label'\n __excludeProps={['onChange', 'indeterminate', 'checked', 'checkedDefault', 'label']}\n >\n {hasChildren ? (\n <Children />\n ) : (\n <>\n <Checkbox.Value />\n <Checkbox.Text />\n </>\n )}\n </SLabel>,\n );\n }\n}\n\nclass ValueRoot extends Component {\n static defaultProps = {\n includeInputProps: inputProps,\n };\n static enhance = [autoFocusEnhance(), resolveColorEnhance()];\n static displayName = 'Value';\n static style = style;\n\n handleClick(e) {\n // idk for what it exists, leaving just in case it saves us from some bugs\n e.stopPropagation();\n }\n\n uncontrolledProps() {\n return {\n checked: (e) => e.target.checked,\n };\n }\n\n getControlProps() {\n const { forwardRef, includeInputProps, indeterminate, state } = this.asProps;\n const [controlProps] = getInputProps(this.asProps, includeInputProps);\n\n return {\n indeterminate,\n ref: forwardRef,\n state,\n ...controlProps,\n onClick: callAllEventHandlers(controlProps.onClick, this.handleClick),\n };\n }\n\n getCheckMarkProps() {\n const {\n size,\n state,\n theme,\n keyboardFocused,\n checked,\n includeInputProps,\n resolveColor,\n ...other\n } = this.asProps;\n const [, checkMarkProps] = getInputProps(other, includeInputProps);\n const { children, Children, ...propsWithoutChildren } = checkMarkProps;\n return {\n theme,\n size,\n state,\n keyboardFocused,\n checked,\n resolveColor,\n ...propsWithoutChildren,\n };\n }\n\n componentDidUpdate() {\n if (this.asProps.rootDisabled !== this.asProps.disabled) {\n this.asProps.hoistDisabled(this.asProps.disabled);\n }\n }\n componentDidMount() {\n if (this.asProps.rootDisabled !== this.asProps.disabled) {\n this.asProps.hoistDisabled(this.asProps.disabled);\n }\n }\n\n render() {\n const { styles, children: hasChildren, Children } = this.asProps;\n\n if (!hasChildren) {\n return sstyled(styles)(\n <>\n <Checkbox.Value.Control />\n <Checkbox.Value.CheckMark />\n </>,\n );\n }\n\n return sstyled(styles)(<Children />);\n }\n}\n\nconst Control = (props) => {\n const SControl = Root;\n const { indeterminate, styles, state } = props;\n return sstyled(styles)(\n <SControl\n render={Box}\n tag='input'\n type='checkbox'\n aria-checked={indeterminate ? 'mixed' : undefined}\n aria-invalid={state === 'invalid'}\n />,\n );\n};\nControl.displayName = 'Control';\n\nconst CheckMark = (props) => {\n const SCheckbox = Root;\n const { theme, styles, resolveColor } = props;\n return sstyled(styles)(<SCheckbox render={Flex} tag='span' use:theme={resolveColor(theme)} />);\n};\nCheckMark.displayName = 'CheckMark';\n\nconst Text = (props) => {\n const SText = Root;\n const { styles } = props;\n\n React.useEffect(() => {\n if (props.rootDisabled !== props.disabled) {\n props.hoistDisabled(props.disabled);\n }\n }, [props.rootDisabled, props.disabled, props.hoistDisabled]);\n\n return sstyled(styles)(<SText render={TypographyText} tag='span' />);\n};\nText.displayName = 'Text';\n\nconst Value = createComponent(ValueRoot, {\n Control,\n CheckMark,\n});\n\nconst Checkbox = createComponent(CheckboxRoot, {\n Text,\n Value,\n});\nexport { inputProps };\nexport default Checkbox;\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;AACA,IAAAA,KAAA,GAAAC,uBAAA,CAAAC,OAAA;AADA,IAAAC,MAAA,GAAAC,sBAAA,CAAAF,OAAA;AAEA,IAAAG,QAAA,GAAAH,OAAA;AACA,IAAAI,WAAA,GAAAJ,OAAA;AACA,IAAAK,oBAAA,GAAAH,sBAAA,CAAAF,OAAA;AACA,IAAAM,aAAA,GAAAN,OAAA;AACA,IAAAO,qBAAA,GAAAL,sBAAA,CAAAF,OAAA;AACA,IAAAQ,WAAA,GAAAT,uBAAA,CAAAC,OAAA;AACA,IAAAS,OAAA,GAAAP,sBAAA,CAAAF,OAAA;AAA+C,IAAAU,SAAA;EAAAC,UAAA;AAAA;AAAA,IAAAC,KAAA,+BAAAd,KAAA,CAAAe,OAAA,CAAAC,MAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;AAAA;AAAA,IAIzCC,YAAY,0BAAAC,UAAA;EAAA,IAAAC,UAAA,aAAAF,YAAA,EAAAC,UAAA;EAAA,IAAAE,MAAA,OAAAC,aAAA,aAAAJ,YAAA;EAAA,SAAAA,aAAA;IAAA,IAAAK,KAAA;IAAA,IAAAC,gBAAA,mBAAAN,YAAA;IAAA,SAAAO,IAAA,GAAAC,SAAA,CAAAC,MAAA,EAAAC,IAAA,OAAAC,KAAA,CAAAJ,IAAA,GAAAK,IAAA,MAAAA,IAAA,GAAAL,IAAA,EAAAK,IAAA;MAAAF,IAAA,CAAAE,IAAA,IAAAJ,SAAA,CAAAI,IAAA;IAAA;IAAAP,KAAA,GAAAF,MAAA,CAAAU,IAAA,CAAAC,KAAA,CAAAX,MAAA,SAAAY,MAAA,CAAAL,IAAA;IAAA,IAAAM,gBAAA,iBAAAC,uBAAA,aAAAZ,KAAA,YASR;MACNa,eAAe,EAAEC;IACnB,CAAC;IAAA,IAAAH,gBAAA,iBAAAC,uBAAA,aAAAZ,KAAA,oBAEe,UAACe,QAAQ,EAAK;MAC5BC,kBAAM,CAACC,IAAI,CACT,IAAI,oIAEJjB,KAAA,CAAKkB,OAAO,CAAC,cAAc,CAAC,CAC7B;MACDlB,KAAA,CAAKmB,QAAQ,CAAC;QAAEN,eAAe,EAAEE;MAAS,CAAC,CAAC;IAC9C,CAAC;IAAA,OAAAf,KAAA;EAAA;EAAA,IAAAoB,aAAA,aAAAzB,YAAA;IAAA0B,GAAA;IAAAC,KAAA,EAED,SAAAC,aAAA,EAAe;MACb,IAAAC,aAAA,GAAkC,IAAI,CAACN,OAAO;QAAtCO,IAAI,GAAAD,aAAA,CAAJC,IAAI;QAAEV,QAAQ,GAAAS,aAAA,CAART,QAAQ;QAAEW,KAAK,GAAAF,aAAA,CAALE,KAAK;MAC7B,IAAQb,eAAe,GAAK,IAAI,CAACc,KAAK,CAA9Bd,eAAe;MACvB,OAAO;QACLY,IAAI,EAAJA,IAAI;QACJV,QAAQ,EAAEA,QAAQ,aAARA,QAAQ,cAARA,QAAQ,GAAIF,eAAe;QACrCe,QAAQ,EAAEF,KAAK;QACfG,aAAa,EAAE,IAAI,CAACA,aAAa;QACjCC,YAAY,EAAE,IAAI,CAACC,KAAK,CAAChB;MAC3B,CAAC;IACH;EAAC;IAAAM,GAAA;IAAAC,KAAA,EAED,SAAAU,cAAA,EAAgB;MACd,IAAAC,cAAA,GACE,IAAI,CAACf,OAAO;QADNO,IAAI,GAAAQ,cAAA,CAAJR,IAAI;QAAEE,KAAK,GAAAM,cAAA,CAALN,KAAK;QAAEO,KAAK,GAAAD,cAAA,CAALC,KAAK;QAAEC,QAAQ,GAAAF,cAAA,CAARE,QAAQ;QAAEC,cAAc,GAAAH,cAAA,CAAdG,cAAc;QAAEC,OAAO,GAAAJ,cAAA,CAAPI,OAAO;QAAEtB,QAAQ,GAAAkB,cAAA,CAARlB,QAAQ;QAAEuB,aAAa,GAAAL,cAAA,CAAbK,aAAa;MAEtF,IAAQzB,eAAe,GAAK,IAAI,CAACc,KAAK,CAA9Bd,eAAe;MAEvB,OAAO;QACLY,IAAI,EAAJA,IAAI;QACJV,QAAQ,EAAEA,QAAQ,aAARA,QAAQ,cAARA,QAAQ,GAAIF,eAAe;QACrCc,KAAK,EAALA,KAAK;QACLO,KAAK,EAALA,KAAK;QACLC,QAAQ,EAARA,QAAQ;QACRE,OAAO,EAAPA,OAAO;QACPD,cAAc,EAAdA,cAAc;QACdE,aAAa,EAAbA,aAAa;QACbT,aAAa,EAAE,IAAI,CAACA,aAAa;QACjCC,YAAY,EAAE,IAAI,CAACC,KAAK,CAAChB;MAC3B,CAAC;IACH;EAAC;IAAAM,GAAA;IAAAC,KAAA,EAED,SAAAiB,OAAA,EAAS;MAAA,IAAAC,IAAA,QAAAtB,OAAA;QAAAuB,KAAA;MACP,IAAMC,MAAM,GAIAC,YAAG;MAHf,IAAAC,cAAA,GAAoD,IAAI,CAAC1B,OAAO;QAAxD2B,QAAQ,GAAAD,cAAA,CAARC,QAAQ;QAAYC,WAAW,GAAAF,cAAA,CAArBhB,QAAQ;QAAemB,MAAM,GAAAH,cAAA,CAANG,MAAM;MAC/C,OAAAN,KAAA,GAAO,IAAAhD,aAAO,EAACsD,MAAM,CAAC,eACpBlE,MAAA,YAAAmE,aAAA,CAACN,MAAM,EAAAD,KAAA,CAAAQ,EAAA,eAAAC,cAAA,qBAAAxE,KAAA,CAAAyE,WAAA;QAAA,OAED,OAAO;QAAA,kBACK,CAAC,UAAU,EAAE,eAAe,EAAE,SAAS,EAAE,gBAAgB,EAAE,OAAO;MAAC,GAAAX,IAAA,KAElFM,WAAW,gBACVjE,MAAA,YAAAmE,aAAA,CAACH,QAAQ,EAAAJ,KAAA,CAAAQ,EAAA,iBAAG,gBAEZpE,MAAA,YAAAmE,aAAA,CAAAnE,MAAA,YAAAuE,QAAA,qBACEvE,MAAA,YAAAmE,aAAA,CAACK,QAAQ,CAACC,KAAK,OAAG,eAClBzE,MAAA,YAAAmE,aAAA,CAACK,QAAQ,CAACE,IAAI,OAAG,CAEpB,CACM;IAEb;EAAC;EAAA,OAAA5D,YAAA;AAAA,EAxEwB6D,eAAS;AAAA,IAAA7C,gBAAA,aAA9BhB,YAAY,iBACK,UAAU;AAAA,IAAAgB,gBAAA,aAD3BhB,YAAY,WAEDH,KAAK;AAAA,IAAAmB,gBAAA,aAFhBhB,YAAY,kBAIM;EACpB8B,IAAI,EAAE,GAAG;EACTE,KAAK,EAAE,QAAQ;EACfS,cAAc,EAAE;AAClB,CAAC;AAAA,IAmEGqB,SAAS,0BAAAC,WAAA;EAAA,IAAA7D,UAAA,aAAA4D,SAAA,EAAAC,WAAA;EAAA,IAAAC,OAAA,OAAA5D,aAAA,aAAA0D,SAAA;EAAA,SAAAA,UAAA;IAAA,IAAAxD,gBAAA,mBAAAwD,SAAA;IAAA,OAAAE,OAAA,CAAAlD,KAAA,OAAAN,SAAA;EAAA;EAAA,IAAAiB,aAAA,aAAAqC,SAAA;IAAApC,GAAA;IAAAC,KAAA,EAQb,SAAAsC,YAAYC,CAAC,EAAE;MACb;MACAA,CAAC,CAACC,eAAe,EAAE;IACrB;EAAC;IAAAzC,GAAA;IAAAC,KAAA,EAED,SAAAyC,kBAAA,EAAoB;MAClB,OAAO;QACL1B,OAAO,EAAE,SAAAA,QAACwB,CAAC;UAAA,OAAKA,CAAC,CAACG,MAAM,CAAC3B,OAAO;QAAA;MAClC,CAAC;IACH;EAAC;IAAAhB,GAAA;IAAAC,KAAA,EAED,SAAA2C,gBAAA,EAAkB;MAChB,IAAAC,cAAA,GAAgE,IAAI,CAAChD,OAAO;QAApEiD,UAAU,GAAAD,cAAA,CAAVC,UAAU;QAAEC,iBAAiB,GAAAF,cAAA,CAAjBE,iBAAiB;QAAE9B,aAAa,GAAA4B,cAAA,CAAb5B,aAAa;QAAEX,KAAK,GAAAuC,cAAA,CAALvC,KAAK;MAC3D,IAAA0C,cAAA,GAAuB,IAAAC,sBAAa,EAAC,IAAI,CAACpD,OAAO,EAAEkD,iBAAiB,CAAC;QAAAG,eAAA,OAAAC,eAAA,aAAAH,cAAA;QAA9DI,YAAY,GAAAF,eAAA;MAEnB,WAAArB,cAAA,iBAAAA,cAAA;QACEZ,aAAa,EAAbA,aAAa;QACboC,GAAG,EAAEP,UAAU;QACfxC,KAAK,EAALA;MAAK,GACF8C,YAAY;QACfE,OAAO,EAAE,IAAAC,kCAAoB,EAACH,YAAY,CAACE,OAAO,EAAE,IAAI,CAACf,WAAW;MAAC;IAEzE;EAAC;IAAAvC,GAAA;IAAAC,KAAA,EAED,SAAAuD,kBAAA,EAAoB;MAClB,IAAAC,cAAA,GASI,IAAI,CAAC5D,OAAO;QARdO,IAAI,GAAAqD,cAAA,CAAJrD,IAAI;QACJE,KAAK,GAAAmD,cAAA,CAALnD,KAAK;QACLO,KAAK,GAAA4C,cAAA,CAAL5C,KAAK;QACL6C,eAAe,GAAAD,cAAA,CAAfC,eAAe;QACf1C,OAAO,GAAAyC,cAAA,CAAPzC,OAAO;QACP+B,iBAAiB,GAAAU,cAAA,CAAjBV,iBAAiB;QACjBY,YAAY,GAAAF,cAAA,CAAZE,YAAY;QACTC,KAAK,OAAAC,yBAAA,aAAAJ,cAAA,EAAAxF,SAAA;MAEV,IAAA6F,eAAA,GAA2B,IAAAb,sBAAa,EAACW,KAAK,EAAEb,iBAAiB,CAAC;QAAAgB,eAAA,OAAAZ,eAAA,aAAAW,eAAA;QAAzDE,cAAc,GAAAD,eAAA;MACvB,IAAQxD,QAAQ,GAAwCyD,cAAc,CAA9DzD,QAAQ;QAAEiB,QAAQ,GAA8BwC,cAAc,CAApDxC,QAAQ;QAAKyC,oBAAoB,OAAAJ,yBAAA,aAAKG,cAAc,EAAA9F,UAAA;MACtE,WAAA2D,cAAA;QACEhB,KAAK,EAALA,KAAK;QACLT,IAAI,EAAJA,IAAI;QACJE,KAAK,EAALA,KAAK;QACLoD,eAAe,EAAfA,eAAe;QACf1C,OAAO,EAAPA,OAAO;QACP2C,YAAY,EAAZA;MAAY,GACTM,oBAAoB;IAE3B;EAAC;IAAAjE,GAAA;IAAAC,KAAA,EAED,SAAAiE,mBAAA,EAAqB;MACnB,IAAI,IAAI,CAACrE,OAAO,CAACY,YAAY,KAAK,IAAI,CAACZ,OAAO,CAACH,QAAQ,EAAE;QACvD,IAAI,CAACG,OAAO,CAACW,aAAa,CAAC,IAAI,CAACX,OAAO,CAACH,QAAQ,CAAC;MACnD;IACF;EAAC;IAAAM,GAAA;IAAAC,KAAA,EACD,SAAAkE,kBAAA,EAAoB;MAClB,IAAI,IAAI,CAACtE,OAAO,CAACY,YAAY,KAAK,IAAI,CAACZ,OAAO,CAACH,QAAQ,EAAE;QACvD,IAAI,CAACG,OAAO,CAACW,aAAa,CAAC,IAAI,CAACX,OAAO,CAACH,QAAQ,CAAC;MACnD;IACF;EAAC;IAAAM,GAAA;IAAAC,KAAA,EAED,SAAAiB,OAAA,EAAS;MAAA,IAAAkD,KAAA;MACP,IAAAC,cAAA,GAAoD,IAAI,CAACxE,OAAO;QAAxD6B,MAAM,GAAA2C,cAAA,CAAN3C,MAAM;QAAYD,WAAW,GAAA4C,cAAA,CAArB9D,QAAQ;QAAeiB,QAAQ,GAAA6C,cAAA,CAAR7C,QAAQ;MAE/C,IAAI,CAACC,WAAW,EAAE;QAAA,IAAA6C,KAAA;QAChB,OAAAA,KAAA,GAAO,IAAAlG,aAAO,EAACsD,MAAM,CAAC,eACpBlE,MAAA,YAAAmE,aAAA,CAAAnE,MAAA,YAAAuE,QAAA,qBACEvE,MAAA,YAAAmE,aAAA,CAACK,QAAQ,CAACC,KAAK,CAACsC,OAAO,OAAG,eAC1B/G,MAAA,YAAAmE,aAAA,CAACK,QAAQ,CAACC,KAAK,CAACuC,SAAS,OAAG,CAC3B;MAEP;MAEA,OAAAJ,KAAA,GAAO,IAAAhG,aAAO,EAACsD,MAAM,CAAC,eAAClE,MAAA,YAAAmE,aAAA,CAACH,QAAQ,EAAA4C,KAAA,CAAAxC,EAAA,iBAAG;IACrC;EAAC;EAAA,OAAAQ,SAAA;AAAA,EAhFqBD,eAAS;AAAA,IAAA7C,gBAAA,aAA3B8C,SAAS,kBACS;EACpBW,iBAAiB,EAAE0B;AACrB,CAAC;AAAA,IAAAnF,gBAAA,aAHG8C,SAAS,aAII,CAAC,IAAAsC,gCAAgB,GAAE,EAAE,IAAAC,+BAAmB,GAAE,CAAC;AAAA,IAAArF,gBAAA,aAJxD8C,SAAS,iBAKQ,OAAO;AAAA,IAAA9C,gBAAA,aALxB8C,SAAS,WAMEjE,KAAK;AA6EtB,IAAMoG,OAAO,GAAG,SAAVA,OAAOA,CAAI7D,KAAK,EAAK;EAAA,IAAAkE,KAAA,GAAAC,YAAA;IAAAC,KAAA;EACzB,IAAMC,QAAQ,GAIFzD,YAAG;EAHf,IAAQL,aAAa,GAAoBP,KAAK,CAAtCO,aAAa;IAAES,MAAM,GAAYhB,KAAK,CAAvBgB,MAAM;IAAEpB,KAAK,GAAKI,KAAK,CAAfJ,KAAK;EACpC,OAAAwE,KAAA,GAAO,IAAA1G,aAAO,EAACsD,MAAM,CAAC,eACpBlE,MAAA,YAAAmE,aAAA,CAACoD,QAAQ,EAAAD,KAAA,CAAAlD,EAAA,iBAAAC,cAAA,qBAAAxE,KAAA,CAAAyE,WAAA;IAAA,OAEH,OAAO;IAAA,QACN,UAAU;IAAA,gBACDb,aAAa,GAAG,OAAO,GAAGxB,SAAS;IAAA,gBACnCa,KAAK,KAAK;EAAS,GAAAsE,KAAA,IACjC;AAEN,CAAC;AACDL,OAAO,CAACS,WAAW,GAAG,SAAS;AAE/B,IAAMR,SAAS,GAAG,SAAZA,SAASA,CAAI9D,KAAK,EAAK;EAAA,IAAAuE,KAAA,GAAAJ,YAAA;IAAAK,KAAA;EAC3B,IAAMC,SAAS,GAE2BC,aAAI;EAD9C,IAAQvE,KAAK,GAA2BH,KAAK,CAArCG,KAAK;IAAEa,MAAM,GAAmBhB,KAAK,CAA9BgB,MAAM;IAAEiC,YAAY,GAAKjD,KAAK,CAAtBiD,YAAY;EACnC,OAAAuB,KAAA,GAAO,IAAA9G,aAAO,EAACsD,MAAM,CAAC,eAAClE,MAAA,YAAAmE,aAAA,CAACwD,SAAS,EAAAD,KAAA,CAAAtD,EAAA,kBAAAC,cAAA,qBAAAxE,KAAA,CAAAyE,WAAA;IAAA,OAAmB,MAAM;IAAA,aAAY6B,YAAY,CAAC9C,KAAK;EAAC,GAAAoE,KAAA,IAAI;AAC/F,CAAC;AACDT,SAAS,CAACQ,WAAW,GAAG,WAAW;AAEnC,IAAM9C,IAAI,GAAG,SAAPA,IAAIA,CAAIxB,KAAK,EAAK;EAAA,IAAA2E,KAAA,GAAAR,YAAA;IAAAS,MAAA;EACtB,IAAMC,KAAK,GAS2BC,gBAAc;EARpD,IAAQ9D,MAAM,GAAKhB,KAAK,CAAhBgB,MAAM;EAEd+D,iBAAK,CAACC,SAAS,CAAC,YAAM;IACpB,IAAIhF,KAAK,CAACD,YAAY,KAAKC,KAAK,CAAChB,QAAQ,EAAE;MACzCgB,KAAK,CAACF,aAAa,CAACE,KAAK,CAAChB,QAAQ,CAAC;IACrC;EACF,CAAC,EAAE,CAACgB,KAAK,CAACD,YAAY,EAAEC,KAAK,CAAChB,QAAQ,EAAEgB,KAAK,CAACF,aAAa,CAAC,CAAC;EAE7D,OAAA8E,MAAA,GAAO,IAAAlH,aAAO,EAACsD,MAAM,CAAC,eAAClE,MAAA,YAAAmE,aAAA,CAAC4D,KAAK,EAAAD,MAAA,CAAA1D,EAAA,cAAAC,cAAA,qBAAAxE,KAAA,CAAAyE,WAAA;IAAA,OAA6B;EAAM,GAAAuD,KAAA,IAAG;AACrE,CAAC;AACDnD,IAAI,CAAC8C,WAAW,GAAG,MAAM;AAEzB,IAAM/C,KAAK,GAAG,IAAA0D,gBAAe,EAACvD,SAAS,EAAE;EACvCmC,OAAO,EAAPA,OAAO;EACPC,SAAS,EAATA;AACF,CAAC,CAAC;AAEF,IAAMxC,QAAQ,GAAG,IAAA2D,gBAAe,EAACrH,YAAY,EAAE;EAC7C4D,IAAI,EAAJA,IAAI;EACJD,KAAK,EAALA;AACF,CAAC,CAAC;AAAC,IAAA2D,QAAA,GAEY5D,QAAQ;AAAA6D,OAAA,cAAAD,QAAA"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.d.js","names":[],"sources":["../../src/index.d.ts"],"sourcesContent":["import { PropGetterFn, UnknownProperties, Intergalactic } from '@semcore/core';\nimport { Box, BoxProps, FlexProps } from '@semcore/flex-box';\nimport { TextProps } from '@semcore/typography';\nimport { KeyboardFocusProps } from '@semcore/utils/lib/enhances/keyboardFocusEnhance';\n\nexport type CheckboxSize = 'm' | 'l';\nexport type CheckboxState = 'normal' | 'invalid';\n\n/** @deprecated */\nexport interface ICheckboxProps extends CheckboxProps, UnknownProperties {}\nexport type CheckboxProps = BoxProps & {\n onChange?: (checked: boolean, e?: React.SyntheticEvent<HTMLInputElement>) => void;\n checked?: boolean;\n /** Default state of uncontrolled checkbox */\n defaultChecked?: boolean;\n /** Checkbox text */\n label?: string;\n /** Special indeterminate state */\n indeterminate?: boolean;\n /** Special disabled state */\n disabled?: boolean;\n /**\n * Checkbox visual state\n * @default normal\n */\n state?: CheckboxState;\n /**\n * Checkbox size\n * @default m\n */\n size?: CheckboxSize;\n /**\n * Checkbox color\n */\n theme?: string;\n};\n\n/** @deprecated */\nexport interface ICheckboxValueProps extends CheckboxValueProps, UnknownProperties {}\nexport type CheckboxValueProps = KeyboardFocusProps &\n FlexProps &\n CheckboxValueControlProps & {\n /**\n * @deprecated set `onChange` on root Checkbox instead\n * */\n onChange?: (checked: boolean, e?: React.SyntheticEvent<HTMLInputElement>) => void;\n /**\n * @deprecated set `checked` on root Checkbox instead\n * */\n checked?: boolean;\n /**\n * @deprecated set `defaultChecked` on root Checkbox instead\n * */\n defaultChecked?: boolean;\n /**\n * @deprecated set `defaultChecked` on root Checkbox instead\n * */\n indeterminate?: boolean;\n /**\n * @deprecated set `disabled` on root Checkbox instead\n * */\n disabled?: boolean;\n /** List of props that will be added to the hidden input\n * @deprecated use `Checkbox.Value.Control` and `Checkbox.Value.CheckMark` instead\n * */\n includeInputProps?: string[];\n /**\n * @deprecated set `state` on root Checkbox instead\n * */\n state?: CheckboxState;\n /**\n * @deprecated set `size` on root Checkbox instead\n * */\n size?: CheckboxSize;\n /**\n * @deprecated\n * */\n theme?: string;\n };\n\nexport type CheckboxValueControlProps = {};\nexport type CheckboxValueCheckMarkProps = {};\n\n/** @deprecated */\nexport interface ICheckboxContext extends CheckboxContext, UnknownProperties {}\nexport type CheckboxContext = {\n getTextProps: PropGetterFn;\n getValueProps: PropGetterFn;\n};\n\n/** @deprecated */\nexport interface ICheckboxTextProps extends CheckboxTextProps, UnknownProperties {}\nexport type CheckboxTextProps = TextProps & {\n /** @deprecated Set disabled state on Checkbox root component */\n disabled?: boolean;\n};\n\ndeclare const Checkbox: Intergalactic.Component<'label', CheckboxProps, CheckboxContext> & {\n Text: Intergalactic.Component<'span', CheckboxTextProps>;\n Value: Intergalactic.Component<'input', CheckboxValueProps> & {\n Control: Intergalactic.Component<'input', CheckboxValueControlProps>;\n CheckMark: Intergalactic.Component<typeof Box, CheckboxValueCheckMarkProps>;\n };\n};\n\nexport default Checkbox;\n"],"mappings":""}
|