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,79 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
5
|
+
value: true
|
6
|
+
});
|
7
|
+
exports["default"] = propsForElement;
|
8
|
+
exports.validAttr = void 0;
|
9
|
+
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
|
10
|
+
var _excluded = ["__excludeProps"];
|
11
|
+
/*
|
12
|
+
* COPY FROM https://github.com/styled-components/styled-components/blob/master/src/utils/validAttr.js
|
13
|
+
* */
|
14
|
+
/**
|
15
|
+
* Trying to avoid the unknown-prop errors on styled components by filtering by
|
16
|
+
* React's attribute whitelist.
|
17
|
+
*
|
18
|
+
* To regenerate this regex:
|
19
|
+
*
|
20
|
+
* 1. `npm i -g regexgen` (https://github.com/devongovett/regexgen)
|
21
|
+
* 2. Run `regexgen` with the list of space-separated words below as input
|
22
|
+
* 3. Surround the emitted regex with this: `/^(GENERATED_REGEX)$/` -- this will ensure a full string match
|
23
|
+
* and no false positives from partials
|
24
|
+
* */
|
25
|
+
/*
|
26
|
+
children dangerouslySetInnerHTML key ref autoFocus defaultValue valueLink defaultChecked checkedLink innerHTML suppressContentEditableWarning onFocusIn onFocusOut className onCopy onCut onPaste onCompositionEnd onCompositionStart onCompositionUpdate onKeyDown onKeyPress onKeyUp onFocus onBlur onChange onInput onInvalid onSubmit onReset onClick onContextMenu onDoubleClick onDrag onDragEnd onDragEnter onDragExit onDragLeave onDragOver onDragStart onDrop onMouseDown onMouseEnter onMouseLeave onMouseMove onMouseOut onMouseOver onMouseUp onSelect onTouchCancel onTouchEnd onTouchMove onTouchStart onScroll onWheel onAbort onCanPlay onCanPlayThrough onDurationChange onEmptied onEncrypted onEnded onError onLoadedData onLoadedMetadata onLoadStart onPause onPlay onPlaying onProgress onRateChange onSeeked onSeeking onStalled onSuspend onTimeUpdate onVolumeChange onWaiting onLoad onAnimationStart onAnimationEnd onAnimationIteration onTransitionEnd onCopyCapture onCutCapture onPasteCapture onCompositionEndCapture onCompositionStartCapture onCompositionUpdateCapture onKeyDownCapture onKeyPressCapture onKeyUpCapture onFocusCapture onBlurCapture onChangeCapture onInputCapture onSubmitCapture onResetCapture onClickCapture onContextMenuCapture onDoubleClickCapture onDragCapture onDragEndCapture onDragEnterCapture onDragExitCapture onDragLeaveCapture onDragOverCapture onDragStartCapture onDropCapture onMouseDownCapture onMouseEnterCapture onMouseLeaveCapture onMouseMoveCapture onMouseOutCapture onMouseOverCapture onMouseUpCapture onSelectCapture onTouchCancelCapture onTouchEndCapture onTouchMoveCapture onTouchStartCapture onScrollCapture onWheelCapture onAbortCapture onCanPlayCapture onCanPlayThroughCapture onDurationChangeCapture onEmptiedCapture onEncryptedCapture onEndedCapture onErrorCapture onLoadedDataCapture onLoadedMetadataCapture onLoadStartCapture onPauseCapture onPlayCapture onPlayingCapture onProgressCapture onRateChangeCapture onSeekedCapture onSeekingCapture onStalledCapture onSuspendCapture onTimeUpdateCapture onVolumeChangeCapture onWaitingCapture onLoadCapture onAnimationStartCapture onAnimationEndCapture onAnimationIterationCapture onTransitionEndCapture accept acceptCharset accessKey action allowFullScreen allowTransparency alt as async autoComplete autoPlay capture cellPadding cellSpacing charSet challenge checked cite classID className cols colSpan content contentEditable contextMenu controlsList controls coords crossOrigin data dateTime default defer dir disabled download draggable encType form formAction formEncType formMethod formNoValidate formTarget frameBorder headers height hidden high href hrefLang htmlFor httpEquiv icon id inputMode integrity is keyParams keyType kind label lang list loop low manifest marginHeight marginWidth max maxLength media mediaGroup method min minLength multiple muted name nonce noValidate open optimum pattern placeholder playsInline poster preload profile radioGroup readOnly referrerPolicy rel required reversed role rows rowSpan sandbox scope scoped scrolling seamless selected shape size sizes span spellCheck src srcDoc srcLang srcSet start step style summary tabIndex target title type useMap value width wmode wrap about datatype inlist prefix property resource typeof vocab autoCapitalize autoCorrect autoSave color itemProp itemScope itemType itemID itemRef results security unselectable accentHeight accumulate additive alignmentBaseline allowReorder alphabetic amplitude arabicForm ascent attributeName attributeType autoReverse azimuth baseFrequency baseProfile baselineShift bbox begin bias by calcMode capHeight clip clipPath clipRule clipPathUnits colorInterpolation colorInterpolationFilters colorProfile colorRendering contentScriptType contentStyleType cursor cx cy d decelerate descent diffuseConstant direction display divisor dominantBaseline dur dx dy edgeMode elevation enableBackground end exponent externalResourcesRequired fill fillOpacity fillRule filter filterRes filterUnits floodColor floodOpacity focusable fontFamily fontSize fontSizeAdjust fontStretch fontStyle fontVariant fontWeight format from fx fy g1 g2 glyphName glyphOrientationHorizontal glyphOrientationVertical glyphRef gradientTransform gradientUnits hanging horizAdvX horizOriginX ideographic imageRendering in in2 intercept k k1 k2 k3 k4 kernelMatrix kernelUnitLength kerning keyPoints keySplines keyTimes lengthAdjust letterSpacing lightingColor limitingConeAngle local markerEnd markerMid markerStart markerHeight markerUnits markerWidth mask maskContentUnits maskUnits mathematical mode numOctaves offset opacity operator order orient orientation origin overflow overlinePosition overlineThickness paintOrder panose1 pathLength patternContentUnits patternTransform patternUnits pointerEvents points pointsAtX pointsAtY pointsAtZ preserveAlpha preserveAspectRatio primitiveUnits r radius refX refY renderingIntent repeatCount repeatDur requiredExtensions requiredFeatures restart result rotate rx ry scale seed shapeRendering slope spacing specularConstant specularExponent speed spreadMethod startOffset stdDeviation stemh stemv stitchTiles stopColor stopOpacity strikethroughPosition strikethroughThickness string stroke strokeDasharray strokeDashoffset strokeLinecap strokeLinejoin strokeMiterlimit strokeOpacity strokeWidth surfaceScale systemLanguage tableValues targetX targetY textAnchor textDecoration textRendering textLength to transform u1 u2 underlinePosition underlineThickness unicode unicodeBidi unicodeRange unitsPerEm vAlphabetic vHanging vIdeographic vMathematical values vectorEffect version vertAdvY vertOriginX vertOriginY viewBox viewTarget visibility widths wordSpacing writingMode x xHeight x1 x2 xChannelSelector xlinkActuate xlinkArcrole xlinkHref xlinkRole xlinkShow xlinkTitle xlinkType xmlBase xmlns xmlnsXlink xmlLang xmlSpace y y1 y2 yChannelSelector z zoomAndPan onPointerDown onPointerMove onPointerUp onPointerCancel onGotPointerCapture onLostPointerCapture onPointerEnter onPointerLeave onPointerOver onPointerOut class for autofocus
|
27
|
+
*/
|
28
|
+
|
29
|
+
var ATTRIBUTE_REGEX = /^((?:s(?:uppressContentEditableWarn|croll|pac)|(?:shape|image|text)Render|(?:letter|word)Spac|vHang|hang)ing|(?:on(?:AnimationIteration|C(?:o(?:mposition(?:Update|Start|End)|ntextMenu|py)|anPlayThrough|anPlay|hange|lick|ut)|(?:Animation|Touch|Load|Drag)Start|(?:(?:Duration|Volume|Rate)Chang|(?:MouseLea|(?:Touch|Mouse)Mo|DragLea)v|Paus)e|Loaded(?:Metad|D)ata|(?:(?:T(?:ransition|ouch)|Animation)E|Suspe)nd|DoubleClick|(?:TouchCanc|Whe)el|Lo(?:stPointer|ad)|TimeUpdate|(?:Mouse(?:Ent|Ov)e|Drag(?:Ent|Ov)e|Erro)r|GotPointer|MouseDown|(?:E(?:n(?:crypt|d)|mpti)|S(?:tall|eek))ed|KeyPress|(?:MouseOu|DragExi|S(?:elec|ubmi)|Rese|Inpu)t|P(?:rogress|laying)|DragEnd|Key(?:Down|Up)|(?:MouseU|Dro)p|(?:Wait|Seek)ing|Scroll|Focus|Paste|Abort|Drag|Play|Blur)Captur|alignmentBaselin|(?:limitingConeAng|xlink(?:(?:Arcr|R)o|Tit)|s(?:urfaceSca|ty|ca)|unselectab|baseProfi|fontSty|(?:focus|dragg)ab|multip|profi|tit)l|d(?:ominantBaselin|efaultValu)|onPointerLeav|a(?:uto(?:Capitaliz|Revers|Sav)|dditiv)|(?:(?:formNoValid|xlinkActu|noValid|accumul|rot)a|autoComple|decelera)t|(?:(?:attribute|item)T|datat)yp|onPointerMov|(?:attribute|glyph)Nam|playsInlin|(?:writing|input|edge)Mod|(?:formE|e)ncTyp|(?:amplitu|mo)d|(?:xlinkTy|itemSco|keyTy|slo)p|(?:xmlSpa|non)c|fillRul|(?:dateTi|na)m|r(?:esourc|ol)|xmlBas|wmod)e|(?:glyphOrientationHorizont|loc)al|(?:externalResourcesRequir|select|revers|mut)ed|c(?:o(?:lorInterpolationFilter|ord)s|o(?:lor(?:Interpolation)?|nt(?:rols|ent))|(?:ontentS(?:cript|tyle)Typ|o(?:ntentEditab|lorProfi)l|l(?:assNam|ipRul)|a(?:lcMod|ptur)|it)e|olorRendering|l(?:ipPathUnits|assID)|(?:ontrolsLis|apHeigh)t|h(?:eckedLink|a(?:llenge|rSet)|ildren|ecked)|ell(?:Spac|Padd)ing|o(?:ntextMenu|ls)|(?:rossOrigi|olSpa)n|l(?:ip(?:Path)?|ass)|ursor|[xy])|glyphOrientationVertical|d(?:angerouslySetInnerHTML|efaultChecked|ownload|isabled|isplay|[xy])|(?:s(?:trikethroughThickn|eaml)es|(?:und|ov)erlineThicknes|r(?:equiredExtension|adiu)|(?:requiredFeatur|tableValu|stitchTil|numOctav|filterR)e|key(?:(?:Splin|Tim)e|Param)|auto[Ff]ocu|header|bia)s|(?:(?:st(?:rikethroughPosi|dDevia)|(?:und|ov)erlinePosi|(?:textDecor|elev)a|orienta)tio|(?:strokeLinejo|orig)i|on(?:PointerDow|FocusI)|formActio|zoomAndPa|directio|(?:vers|act)io|rowSpa|begi|ico)n|o(?:n(?:AnimationIteration|C(?:o(?:mposition(?:Update|Start|End)|ntextMenu|py)|anPlayThrough|anPlay|hange|lick|ut)|(?:(?:Duration|Volume|Rate)Chang|(?:MouseLea|(?:Touch|Mouse)Mo|DragLea)v|Paus)e|Loaded(?:Metad|D)ata|(?:Animation|Touch|Load|Drag)Start|(?:(?:T(?:ransition|ouch)|Animation)E|Suspe)nd|DoubleClick|(?:TouchCanc|Whe)el|(?:Mouse(?:Ent|Ov)e|Drag(?:Ent|Ov)e|Erro)r|TimeUpdate|(?:E(?:n(?:crypt|d)|mpti)|S(?:tall|eek))ed|MouseDown|P(?:rogress|laying)|(?:MouseOu|DragExi|S(?:elec|ubmi)|Rese|Inpu)t|KeyPress|DragEnd|Key(?:Down|Up)|(?:Wait|Seek)ing|(?:MouseU|Dro)p|Scroll|Paste|Focus|Abort|Drag|Play|Load|Blur)|rient)|p(?:reserveA(?:spectRatio|lpha)|ointsAt[X-Z]|anose1)|(?:patternContent|ma(?:sk(?:Content)?|rker)|primitive|gradient|pattern|filter)Units|(?:(?:allowTranspar|baseFrequ)enc|re(?:ferrerPolic|adOnl)|(?:(?:st(?:roke|op)O|floodO|fillO|o)pac|integr|secur)it|visibilit|fontFamil|accessKe|propert|summar)y|(?:gradientT|patternT|t)ransform|(?:[xy]ChannelSelect|lightingCol|textAnch|floodCol|stopCol|operat|htmlF)or|(?:strokeMiterlimi|(?:specularConsta|repeatCou|fontVaria)n|(?:(?:specularE|e)xpon|renderingInt|asc)en|d(?:iffuseConsta|esce)n|(?:fontSizeAdju|lengthAdju|manife)s|baselineShif|onPointerOu|vectorEffec|(?:(?:mar(?:ker|gin)|x)H|accentH|fontW)eigh|markerStar|a(?:utoCorrec|bou)|onFocusOu|intercep|restar|forma|inlis|heigh|lis)t|(?:(?:st(?:rokeDasho|artO)|o)ffs|acceptChars|formTarg|viewTarg|srcS)et|k(?:ernel(?:UnitLength|Matrix)|[1-4])|(?:(?:enableBackgrou|markerE)n|s(?:p(?:readMetho|ee)|ee)|formMetho|(?:markerM|onInval)i|preloa|metho|kin)d|strokeDasharray|(?:onPointerCanc|lab)el|(?:allowFullScre|hidd)en|systemLanguage|(?:(?:o(?:nPointer(?:Ent|Ov)|rd)|allowReord|placehold|frameBord|paintOrd|post)e|repeatDu|d(?:efe|u))r|v(?:Mathematical|ert(?:Origin[XY]|AdvY)|alues|ocab)|(?:pointerEve|keyPoi)nts|(?:strokeLineca|onPointerU|itemPro|useMa|wra|loo)p|h(?:oriz(?:Origin|Adv)X|ttpEquiv)|(?:vI|i)deographic|unicodeRange|mathematical|vAlphabetic|u(?:nicodeBidi|[12])|(?:fontStretc|hig)h|(?:(?:mar(?:ker|gin)W|strokeW)id|azimu)th|(?:xmlnsXl|valueL)ink|mediaGroup|spellCheck|(?:text|m(?:in|ax))Length|(?:unitsPerE|optimu|fro)m|r(?:adioGroup|e(?:sults|f[XY]|l)|ows|[xy])|a(?:rabicForm|l(?:phabetic|t)|sync)|pathLength|innerHTML|xlinkShow|(?:xlinkHr|glyphR)ef|(?:tabInde|(?:sand|b)bo|viewBo)x|(?:(?:href|xml|src)La|kerni)ng|autoPlay|o(?:verflow|pen)|f(?:o(?:ntSize|rm?)|il(?:ter|l))|r(?:e(?:quired|sult|f))?|divisor|p(?:attern|oints)|unicode|d(?:efault|ata|ir)?|i(?:temRef|n2|s)|t(?:arget[XY]|o)|srcDoc|s(?:coped|te(?:m[hv]|p)|pan)|(?:width|size)s|prefix|typeof|itemID|s(?:t(?:roke|art)|hape|cope|rc)|t(?:arget|ype)|(?:stri|la)ng|a(?:ccept|s)|m(?:edia|a(?:sk|x)|in)|x(?:mlns)?|width|value|size|href|elementtiming|k(?:ey)?|end|low|by|i[dn]|y[12]|g[12]|x[12]|f[xy]|[yz])$/;
|
30
|
+
|
31
|
+
/* From DOMProperty */
|
32
|
+
var ATTRIBUTE_NAME_START_CHAR = ":A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD";
|
33
|
+
var ATTRIBUTE_NAME_CHAR = "".concat(ATTRIBUTE_NAME_START_CHAR, "\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040");
|
34
|
+
var isCustomAttribute = RegExp.prototype.test.bind(new RegExp("^(x|data|aria)-[".concat(ATTRIBUTE_NAME_CHAR, "]*$")));
|
35
|
+
var validAttr = function validAttr(name) {
|
36
|
+
return ATTRIBUTE_REGEX.test(name) || isCustomAttribute(name.toLowerCase());
|
37
|
+
};
|
38
|
+
exports.validAttr = validAttr;
|
39
|
+
var omittedCloseTags = {
|
40
|
+
area: true,
|
41
|
+
base: true,
|
42
|
+
br: true,
|
43
|
+
col: true,
|
44
|
+
embed: true,
|
45
|
+
hr: true,
|
46
|
+
img: true,
|
47
|
+
input: true,
|
48
|
+
keygen: true,
|
49
|
+
link: true,
|
50
|
+
meta: true,
|
51
|
+
param: true,
|
52
|
+
source: true,
|
53
|
+
track: true,
|
54
|
+
wbr: true,
|
55
|
+
// because Children default value [Object object]
|
56
|
+
textarea: true
|
57
|
+
};
|
58
|
+
function propsForElement(props, element) {
|
59
|
+
if (element && typeof element !== 'string') {
|
60
|
+
return props;
|
61
|
+
} else {
|
62
|
+
// @ts-ignore
|
63
|
+
var _ref = props,
|
64
|
+
_ref$__excludeProps = _ref.__excludeProps,
|
65
|
+
__excludeProps = _ref$__excludeProps === void 0 ? [] : _ref$__excludeProps,
|
66
|
+
other = (0, _objectWithoutProperties2["default"])(_ref, _excluded);
|
67
|
+
var validProps = Object.keys(other).reduce(function (acc, propName) {
|
68
|
+
if (!__excludeProps.includes(propName) && validAttr(propName)) {
|
69
|
+
acc[propName] = other[propName];
|
70
|
+
}
|
71
|
+
return acc;
|
72
|
+
}, {});
|
73
|
+
if (element && omittedCloseTags[element]) {
|
74
|
+
validProps['children'] = undefined;
|
75
|
+
}
|
76
|
+
return validProps;
|
77
|
+
}
|
78
|
+
}
|
79
|
+
//# sourceMappingURL=propsForElement.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"propsForElement.js","names":["ATTRIBUTE_REGEX","ATTRIBUTE_NAME_START_CHAR","ATTRIBUTE_NAME_CHAR","concat","isCustomAttribute","RegExp","prototype","test","bind","validAttr","name","toLowerCase","exports","omittedCloseTags","area","base","br","col","embed","hr","img","input","keygen","link","meta","param","source","track","wbr","textarea","propsForElement","props","element","_ref","_ref$__excludeProps","__excludeProps","other","_objectWithoutProperties2","_excluded","validProps","Object","keys","reduce","acc","propName","includes","undefined"],"sources":["../src/propsForElement.ts"],"sourcesContent":["/*\n * COPY FROM https://github.com/styled-components/styled-components/blob/master/src/utils/validAttr.js\n * */\n/**\n * Trying to avoid the unknown-prop errors on styled components by filtering by\n * React's attribute whitelist.\n *\n * To regenerate this regex:\n *\n * 1. `npm i -g regexgen` (https://github.com/devongovett/regexgen)\n * 2. Run `regexgen` with the list of space-separated words below as input\n * 3. Surround the emitted regex with this: `/^(GENERATED_REGEX)$/` -- this will ensure a full string match\n * and no false positives from partials\n * */\n/*\nchildren dangerouslySetInnerHTML key ref autoFocus defaultValue valueLink defaultChecked checkedLink innerHTML suppressContentEditableWarning onFocusIn onFocusOut className onCopy onCut onPaste onCompositionEnd onCompositionStart onCompositionUpdate onKeyDown onKeyPress onKeyUp onFocus onBlur onChange onInput onInvalid onSubmit onReset onClick onContextMenu onDoubleClick onDrag onDragEnd onDragEnter onDragExit onDragLeave onDragOver onDragStart onDrop onMouseDown onMouseEnter onMouseLeave onMouseMove onMouseOut onMouseOver onMouseUp onSelect onTouchCancel onTouchEnd onTouchMove onTouchStart onScroll onWheel onAbort onCanPlay onCanPlayThrough onDurationChange onEmptied onEncrypted onEnded onError onLoadedData onLoadedMetadata onLoadStart onPause onPlay onPlaying onProgress onRateChange onSeeked onSeeking onStalled onSuspend onTimeUpdate onVolumeChange onWaiting onLoad onAnimationStart onAnimationEnd onAnimationIteration onTransitionEnd onCopyCapture onCutCapture onPasteCapture onCompositionEndCapture onCompositionStartCapture onCompositionUpdateCapture onKeyDownCapture onKeyPressCapture onKeyUpCapture onFocusCapture onBlurCapture onChangeCapture onInputCapture onSubmitCapture onResetCapture onClickCapture onContextMenuCapture onDoubleClickCapture onDragCapture onDragEndCapture onDragEnterCapture onDragExitCapture onDragLeaveCapture onDragOverCapture onDragStartCapture onDropCapture onMouseDownCapture onMouseEnterCapture onMouseLeaveCapture onMouseMoveCapture onMouseOutCapture onMouseOverCapture onMouseUpCapture onSelectCapture onTouchCancelCapture onTouchEndCapture onTouchMoveCapture onTouchStartCapture onScrollCapture onWheelCapture onAbortCapture onCanPlayCapture onCanPlayThroughCapture onDurationChangeCapture onEmptiedCapture onEncryptedCapture onEndedCapture onErrorCapture onLoadedDataCapture onLoadedMetadataCapture onLoadStartCapture onPauseCapture onPlayCapture onPlayingCapture onProgressCapture onRateChangeCapture onSeekedCapture onSeekingCapture onStalledCapture onSuspendCapture onTimeUpdateCapture onVolumeChangeCapture onWaitingCapture onLoadCapture onAnimationStartCapture onAnimationEndCapture onAnimationIterationCapture onTransitionEndCapture accept acceptCharset accessKey action allowFullScreen allowTransparency alt as async autoComplete autoPlay capture cellPadding cellSpacing charSet challenge checked cite classID className cols colSpan content contentEditable contextMenu controlsList controls coords crossOrigin data dateTime default defer dir disabled download draggable encType form formAction formEncType formMethod formNoValidate formTarget frameBorder headers height hidden high href hrefLang htmlFor httpEquiv icon id inputMode integrity is keyParams keyType kind label lang list loop low manifest marginHeight marginWidth max maxLength media mediaGroup method min minLength multiple muted name nonce noValidate open optimum pattern placeholder playsInline poster preload profile radioGroup readOnly referrerPolicy rel required reversed role rows rowSpan sandbox scope scoped scrolling seamless selected shape size sizes span spellCheck src srcDoc srcLang srcSet start step style summary tabIndex target title type useMap value width wmode wrap about datatype inlist prefix property resource typeof vocab autoCapitalize autoCorrect autoSave color itemProp itemScope itemType itemID itemRef results security unselectable accentHeight accumulate additive alignmentBaseline allowReorder alphabetic amplitude arabicForm ascent attributeName attributeType autoReverse azimuth baseFrequency baseProfile baselineShift bbox begin bias by calcMode capHeight clip clipPath clipRule clipPathUnits colorInterpolation colorInterpolationFilters colorProfile colorRendering contentScriptType contentStyleType cursor cx cy d decelerate descent diffuseConstant direction display divisor dominantBaseline dur dx dy edgeMode elevation enableBackground end exponent externalResourcesRequired fill fillOpacity fillRule filter filterRes filterUnits floodColor floodOpacity focusable fontFamily fontSize fontSizeAdjust fontStretch fontStyle fontVariant fontWeight format from fx fy g1 g2 glyphName glyphOrientationHorizontal glyphOrientationVertical glyphRef gradientTransform gradientUnits hanging horizAdvX horizOriginX ideographic imageRendering in in2 intercept k k1 k2 k3 k4 kernelMatrix kernelUnitLength kerning keyPoints keySplines keyTimes lengthAdjust letterSpacing lightingColor limitingConeAngle local markerEnd markerMid markerStart markerHeight markerUnits markerWidth mask maskContentUnits maskUnits mathematical mode numOctaves offset opacity operator order orient orientation origin overflow overlinePosition overlineThickness paintOrder panose1 pathLength patternContentUnits patternTransform patternUnits pointerEvents points pointsAtX pointsAtY pointsAtZ preserveAlpha preserveAspectRatio primitiveUnits r radius refX refY renderingIntent repeatCount repeatDur requiredExtensions requiredFeatures restart result rotate rx ry scale seed shapeRendering slope spacing specularConstant specularExponent speed spreadMethod startOffset stdDeviation stemh stemv stitchTiles stopColor stopOpacity strikethroughPosition strikethroughThickness string stroke strokeDasharray strokeDashoffset strokeLinecap strokeLinejoin strokeMiterlimit strokeOpacity strokeWidth surfaceScale systemLanguage tableValues targetX targetY textAnchor textDecoration textRendering textLength to transform u1 u2 underlinePosition underlineThickness unicode unicodeBidi unicodeRange unitsPerEm vAlphabetic vHanging vIdeographic vMathematical values vectorEffect version vertAdvY vertOriginX vertOriginY viewBox viewTarget visibility widths wordSpacing writingMode x xHeight x1 x2 xChannelSelector xlinkActuate xlinkArcrole xlinkHref xlinkRole xlinkShow xlinkTitle xlinkType xmlBase xmlns xmlnsXlink xmlLang xmlSpace y y1 y2 yChannelSelector z zoomAndPan onPointerDown onPointerMove onPointerUp onPointerCancel onGotPointerCapture onLostPointerCapture onPointerEnter onPointerLeave onPointerOver onPointerOut class for autofocus\n*/\n\nimport { ElementType } from 'react';\n\nconst ATTRIBUTE_REGEX =\n /^((?:s(?:uppressContentEditableWarn|croll|pac)|(?:shape|image|text)Render|(?:letter|word)Spac|vHang|hang)ing|(?:on(?:AnimationIteration|C(?:o(?:mposition(?:Update|Start|End)|ntextMenu|py)|anPlayThrough|anPlay|hange|lick|ut)|(?:Animation|Touch|Load|Drag)Start|(?:(?:Duration|Volume|Rate)Chang|(?:MouseLea|(?:Touch|Mouse)Mo|DragLea)v|Paus)e|Loaded(?:Metad|D)ata|(?:(?:T(?:ransition|ouch)|Animation)E|Suspe)nd|DoubleClick|(?:TouchCanc|Whe)el|Lo(?:stPointer|ad)|TimeUpdate|(?:Mouse(?:Ent|Ov)e|Drag(?:Ent|Ov)e|Erro)r|GotPointer|MouseDown|(?:E(?:n(?:crypt|d)|mpti)|S(?:tall|eek))ed|KeyPress|(?:MouseOu|DragExi|S(?:elec|ubmi)|Rese|Inpu)t|P(?:rogress|laying)|DragEnd|Key(?:Down|Up)|(?:MouseU|Dro)p|(?:Wait|Seek)ing|Scroll|Focus|Paste|Abort|Drag|Play|Blur)Captur|alignmentBaselin|(?:limitingConeAng|xlink(?:(?:Arcr|R)o|Tit)|s(?:urfaceSca|ty|ca)|unselectab|baseProfi|fontSty|(?:focus|dragg)ab|multip|profi|tit)l|d(?:ominantBaselin|efaultValu)|onPointerLeav|a(?:uto(?:Capitaliz|Revers|Sav)|dditiv)|(?:(?:formNoValid|xlinkActu|noValid|accumul|rot)a|autoComple|decelera)t|(?:(?:attribute|item)T|datat)yp|onPointerMov|(?:attribute|glyph)Nam|playsInlin|(?:writing|input|edge)Mod|(?:formE|e)ncTyp|(?:amplitu|mo)d|(?:xlinkTy|itemSco|keyTy|slo)p|(?:xmlSpa|non)c|fillRul|(?:dateTi|na)m|r(?:esourc|ol)|xmlBas|wmod)e|(?:glyphOrientationHorizont|loc)al|(?:externalResourcesRequir|select|revers|mut)ed|c(?:o(?:lorInterpolationFilter|ord)s|o(?:lor(?:Interpolation)?|nt(?:rols|ent))|(?:ontentS(?:cript|tyle)Typ|o(?:ntentEditab|lorProfi)l|l(?:assNam|ipRul)|a(?:lcMod|ptur)|it)e|olorRendering|l(?:ipPathUnits|assID)|(?:ontrolsLis|apHeigh)t|h(?:eckedLink|a(?:llenge|rSet)|ildren|ecked)|ell(?:Spac|Padd)ing|o(?:ntextMenu|ls)|(?:rossOrigi|olSpa)n|l(?:ip(?:Path)?|ass)|ursor|[xy])|glyphOrientationVertical|d(?:angerouslySetInnerHTML|efaultChecked|ownload|isabled|isplay|[xy])|(?:s(?:trikethroughThickn|eaml)es|(?:und|ov)erlineThicknes|r(?:equiredExtension|adiu)|(?:requiredFeatur|tableValu|stitchTil|numOctav|filterR)e|key(?:(?:Splin|Tim)e|Param)|auto[Ff]ocu|header|bia)s|(?:(?:st(?:rikethroughPosi|dDevia)|(?:und|ov)erlinePosi|(?:textDecor|elev)a|orienta)tio|(?:strokeLinejo|orig)i|on(?:PointerDow|FocusI)|formActio|zoomAndPa|directio|(?:vers|act)io|rowSpa|begi|ico)n|o(?:n(?:AnimationIteration|C(?:o(?:mposition(?:Update|Start|End)|ntextMenu|py)|anPlayThrough|anPlay|hange|lick|ut)|(?:(?:Duration|Volume|Rate)Chang|(?:MouseLea|(?:Touch|Mouse)Mo|DragLea)v|Paus)e|Loaded(?:Metad|D)ata|(?:Animation|Touch|Load|Drag)Start|(?:(?:T(?:ransition|ouch)|Animation)E|Suspe)nd|DoubleClick|(?:TouchCanc|Whe)el|(?:Mouse(?:Ent|Ov)e|Drag(?:Ent|Ov)e|Erro)r|TimeUpdate|(?:E(?:n(?:crypt|d)|mpti)|S(?:tall|eek))ed|MouseDown|P(?:rogress|laying)|(?:MouseOu|DragExi|S(?:elec|ubmi)|Rese|Inpu)t|KeyPress|DragEnd|Key(?:Down|Up)|(?:Wait|Seek)ing|(?:MouseU|Dro)p|Scroll|Paste|Focus|Abort|Drag|Play|Load|Blur)|rient)|p(?:reserveA(?:spectRatio|lpha)|ointsAt[X-Z]|anose1)|(?:patternContent|ma(?:sk(?:Content)?|rker)|primitive|gradient|pattern|filter)Units|(?:(?:allowTranspar|baseFrequ)enc|re(?:ferrerPolic|adOnl)|(?:(?:st(?:roke|op)O|floodO|fillO|o)pac|integr|secur)it|visibilit|fontFamil|accessKe|propert|summar)y|(?:gradientT|patternT|t)ransform|(?:[xy]ChannelSelect|lightingCol|textAnch|floodCol|stopCol|operat|htmlF)or|(?:strokeMiterlimi|(?:specularConsta|repeatCou|fontVaria)n|(?:(?:specularE|e)xpon|renderingInt|asc)en|d(?:iffuseConsta|esce)n|(?:fontSizeAdju|lengthAdju|manife)s|baselineShif|onPointerOu|vectorEffec|(?:(?:mar(?:ker|gin)|x)H|accentH|fontW)eigh|markerStar|a(?:utoCorrec|bou)|onFocusOu|intercep|restar|forma|inlis|heigh|lis)t|(?:(?:st(?:rokeDasho|artO)|o)ffs|acceptChars|formTarg|viewTarg|srcS)et|k(?:ernel(?:UnitLength|Matrix)|[1-4])|(?:(?:enableBackgrou|markerE)n|s(?:p(?:readMetho|ee)|ee)|formMetho|(?:markerM|onInval)i|preloa|metho|kin)d|strokeDasharray|(?:onPointerCanc|lab)el|(?:allowFullScre|hidd)en|systemLanguage|(?:(?:o(?:nPointer(?:Ent|Ov)|rd)|allowReord|placehold|frameBord|paintOrd|post)e|repeatDu|d(?:efe|u))r|v(?:Mathematical|ert(?:Origin[XY]|AdvY)|alues|ocab)|(?:pointerEve|keyPoi)nts|(?:strokeLineca|onPointerU|itemPro|useMa|wra|loo)p|h(?:oriz(?:Origin|Adv)X|ttpEquiv)|(?:vI|i)deographic|unicodeRange|mathematical|vAlphabetic|u(?:nicodeBidi|[12])|(?:fontStretc|hig)h|(?:(?:mar(?:ker|gin)W|strokeW)id|azimu)th|(?:xmlnsXl|valueL)ink|mediaGroup|spellCheck|(?:text|m(?:in|ax))Length|(?:unitsPerE|optimu|fro)m|r(?:adioGroup|e(?:sults|f[XY]|l)|ows|[xy])|a(?:rabicForm|l(?:phabetic|t)|sync)|pathLength|innerHTML|xlinkShow|(?:xlinkHr|glyphR)ef|(?:tabInde|(?:sand|b)bo|viewBo)x|(?:(?:href|xml|src)La|kerni)ng|autoPlay|o(?:verflow|pen)|f(?:o(?:ntSize|rm?)|il(?:ter|l))|r(?:e(?:quired|sult|f))?|divisor|p(?:attern|oints)|unicode|d(?:efault|ata|ir)?|i(?:temRef|n2|s)|t(?:arget[XY]|o)|srcDoc|s(?:coped|te(?:m[hv]|p)|pan)|(?:width|size)s|prefix|typeof|itemID|s(?:t(?:roke|art)|hape|cope|rc)|t(?:arget|ype)|(?:stri|la)ng|a(?:ccept|s)|m(?:edia|a(?:sk|x)|in)|x(?:mlns)?|width|value|size|href|elementtiming|k(?:ey)?|end|low|by|i[dn]|y[12]|g[12]|x[12]|f[xy]|[yz])$/;\n\n/* From DOMProperty */\nconst ATTRIBUTE_NAME_START_CHAR =\n ':A-Z_a-z\\\\u00C0-\\\\u00D6\\\\u00D8-\\\\u00F6\\\\u00F8-\\\\u02FF\\\\u0370-\\\\u037D\\\\u037F-\\\\u1FFF\\\\u200C-\\\\u200D\\\\u2070-\\\\u218F\\\\u2C00-\\\\u2FEF\\\\u3001-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFFFD';\nconst ATTRIBUTE_NAME_CHAR = `${ATTRIBUTE_NAME_START_CHAR}\\\\-.0-9\\\\u00B7\\\\u0300-\\\\u036F\\\\u203F-\\\\u2040`;\nconst isCustomAttribute = RegExp.prototype.test.bind(\n new RegExp(`^(x|data|aria)-[${ATTRIBUTE_NAME_CHAR}]*$`),\n);\n\nexport const validAttr = (name: string) =>\n ATTRIBUTE_REGEX.test(name) || isCustomAttribute(name.toLowerCase());\n\nconst omittedCloseTags = {\n area: true,\n base: true,\n br: true,\n col: true,\n embed: true,\n hr: true,\n img: true,\n input: true,\n keygen: true,\n link: true,\n meta: true,\n param: true,\n source: true,\n track: true,\n wbr: true,\n // because Children default value [Object object]\n textarea: true,\n};\n\nexport default function propsForElement<T extends {}>(\n props: T,\n element?: ElementType | string,\n): Partial<T> {\n if (element && typeof element !== 'string') {\n return props;\n } else {\n // @ts-ignore\n const { __excludeProps = [], ...other } = props as any;\n const validProps = Object.keys(other).reduce((acc: any, propName) => {\n if (!__excludeProps.includes(propName) && validAttr(propName)) {\n acc[propName] = other[propName];\n }\n return acc;\n }, {});\n if (element && (omittedCloseTags as any)[element as any]) {\n validProps['children'] = undefined;\n }\n return validProps;\n }\n}\n"],"mappings":";;;;;;;;;;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAIA,IAAMA,eAAe,GACnB,i6JAAi6J;;AAEn6J;AACA,IAAMC,yBAAyB,GAC7B,+KAA+K;AACjL,IAAMC,mBAAmB,MAAAC,MAAA,CAAMF,yBAAyB,iDAA8C;AACtG,IAAMG,iBAAiB,GAAGC,MAAM,CAACC,SAAS,CAACC,IAAI,CAACC,IAAI,CAClD,IAAIH,MAAM,oBAAAF,MAAA,CAAoBD,mBAAmB,SAAM,CACxD;AAEM,IAAMO,SAAS,GAAG,SAAZA,SAASA,CAAIC,IAAY;EAAA,OACpCV,eAAe,CAACO,IAAI,CAACG,IAAI,CAAC,IAAIN,iBAAiB,CAACM,IAAI,CAACC,WAAW,EAAE,CAAC;AAAA;AAACC,OAAA,CAAAH,SAAA,GAAAA,SAAA;AAEtE,IAAMI,gBAAgB,GAAG;EACvBC,IAAI,EAAE,IAAI;EACVC,IAAI,EAAE,IAAI;EACVC,EAAE,EAAE,IAAI;EACRC,GAAG,EAAE,IAAI;EACTC,KAAK,EAAE,IAAI;EACXC,EAAE,EAAE,IAAI;EACRC,GAAG,EAAE,IAAI;EACTC,KAAK,EAAE,IAAI;EACXC,MAAM,EAAE,IAAI;EACZC,IAAI,EAAE,IAAI;EACVC,IAAI,EAAE,IAAI;EACVC,KAAK,EAAE,IAAI;EACXC,MAAM,EAAE,IAAI;EACZC,KAAK,EAAE,IAAI;EACXC,GAAG,EAAE,IAAI;EACT;EACAC,QAAQ,EAAE;AACZ,CAAC;AAEc,SAASC,eAAeA,CACrCC,KAAQ,EACRC,OAA8B,EAClB;EACZ,IAAIA,OAAO,IAAI,OAAOA,OAAO,KAAK,QAAQ,EAAE;IAC1C,OAAOD,KAAK;EACd,CAAC,MAAM;IACL;IACA,IAAAE,IAAA,GAA0CF,KAAK;MAAAG,mBAAA,GAAAD,IAAA,CAAvCE,cAAc;MAAdA,cAAc,GAAAD,mBAAA,cAAG,EAAE,GAAAA,mBAAA;MAAKE,KAAK,OAAAC,yBAAA,aAAAJ,IAAA,EAAAK,SAAA;IACrC,IAAMC,UAAU,GAAGC,MAAM,CAACC,IAAI,CAACL,KAAK,CAAC,CAACM,MAAM,CAAC,UAACC,GAAQ,EAAEC,QAAQ,EAAK;MACnE,IAAI,CAACT,cAAc,CAACU,QAAQ,CAACD,QAAQ,CAAC,IAAInC,SAAS,CAACmC,QAAQ,CAAC,EAAE;QAC7DD,GAAG,CAACC,QAAQ,CAAC,GAAGR,KAAK,CAACQ,QAAQ,CAAC;MACjC;MACA,OAAOD,GAAG;IACZ,CAAC,EAAE,CAAC,CAAC,CAAC;IACN,IAAIX,OAAO,IAAKnB,gBAAgB,CAASmB,OAAO,CAAQ,EAAE;MACxDO,UAAU,CAAC,UAAU,CAAC,GAAGO,SAAS;IACpC;IACA,OAAOP,UAAU;EACnB;AACF"}
|
@@ -0,0 +1,70 @@
|
|
1
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
2
|
+
var _excluded = ["__excludeProps"];
|
3
|
+
/*
|
4
|
+
* COPY FROM https://github.com/styled-components/styled-components/blob/master/src/utils/validAttr.js
|
5
|
+
* */
|
6
|
+
/**
|
7
|
+
* Trying to avoid the unknown-prop errors on styled components by filtering by
|
8
|
+
* React's attribute whitelist.
|
9
|
+
*
|
10
|
+
* To regenerate this regex:
|
11
|
+
*
|
12
|
+
* 1. `npm i -g regexgen` (https://github.com/devongovett/regexgen)
|
13
|
+
* 2. Run `regexgen` with the list of space-separated words below as input
|
14
|
+
* 3. Surround the emitted regex with this: `/^(GENERATED_REGEX)$/` -- this will ensure a full string match
|
15
|
+
* and no false positives from partials
|
16
|
+
* */
|
17
|
+
/*
|
18
|
+
children dangerouslySetInnerHTML key ref autoFocus defaultValue valueLink defaultChecked checkedLink innerHTML suppressContentEditableWarning onFocusIn onFocusOut className onCopy onCut onPaste onCompositionEnd onCompositionStart onCompositionUpdate onKeyDown onKeyPress onKeyUp onFocus onBlur onChange onInput onInvalid onSubmit onReset onClick onContextMenu onDoubleClick onDrag onDragEnd onDragEnter onDragExit onDragLeave onDragOver onDragStart onDrop onMouseDown onMouseEnter onMouseLeave onMouseMove onMouseOut onMouseOver onMouseUp onSelect onTouchCancel onTouchEnd onTouchMove onTouchStart onScroll onWheel onAbort onCanPlay onCanPlayThrough onDurationChange onEmptied onEncrypted onEnded onError onLoadedData onLoadedMetadata onLoadStart onPause onPlay onPlaying onProgress onRateChange onSeeked onSeeking onStalled onSuspend onTimeUpdate onVolumeChange onWaiting onLoad onAnimationStart onAnimationEnd onAnimationIteration onTransitionEnd onCopyCapture onCutCapture onPasteCapture onCompositionEndCapture onCompositionStartCapture onCompositionUpdateCapture onKeyDownCapture onKeyPressCapture onKeyUpCapture onFocusCapture onBlurCapture onChangeCapture onInputCapture onSubmitCapture onResetCapture onClickCapture onContextMenuCapture onDoubleClickCapture onDragCapture onDragEndCapture onDragEnterCapture onDragExitCapture onDragLeaveCapture onDragOverCapture onDragStartCapture onDropCapture onMouseDownCapture onMouseEnterCapture onMouseLeaveCapture onMouseMoveCapture onMouseOutCapture onMouseOverCapture onMouseUpCapture onSelectCapture onTouchCancelCapture onTouchEndCapture onTouchMoveCapture onTouchStartCapture onScrollCapture onWheelCapture onAbortCapture onCanPlayCapture onCanPlayThroughCapture onDurationChangeCapture onEmptiedCapture onEncryptedCapture onEndedCapture onErrorCapture onLoadedDataCapture onLoadedMetadataCapture onLoadStartCapture onPauseCapture onPlayCapture onPlayingCapture onProgressCapture onRateChangeCapture onSeekedCapture onSeekingCapture onStalledCapture onSuspendCapture onTimeUpdateCapture onVolumeChangeCapture onWaitingCapture onLoadCapture onAnimationStartCapture onAnimationEndCapture onAnimationIterationCapture onTransitionEndCapture accept acceptCharset accessKey action allowFullScreen allowTransparency alt as async autoComplete autoPlay capture cellPadding cellSpacing charSet challenge checked cite classID className cols colSpan content contentEditable contextMenu controlsList controls coords crossOrigin data dateTime default defer dir disabled download draggable encType form formAction formEncType formMethod formNoValidate formTarget frameBorder headers height hidden high href hrefLang htmlFor httpEquiv icon id inputMode integrity is keyParams keyType kind label lang list loop low manifest marginHeight marginWidth max maxLength media mediaGroup method min minLength multiple muted name nonce noValidate open optimum pattern placeholder playsInline poster preload profile radioGroup readOnly referrerPolicy rel required reversed role rows rowSpan sandbox scope scoped scrolling seamless selected shape size sizes span spellCheck src srcDoc srcLang srcSet start step style summary tabIndex target title type useMap value width wmode wrap about datatype inlist prefix property resource typeof vocab autoCapitalize autoCorrect autoSave color itemProp itemScope itemType itemID itemRef results security unselectable accentHeight accumulate additive alignmentBaseline allowReorder alphabetic amplitude arabicForm ascent attributeName attributeType autoReverse azimuth baseFrequency baseProfile baselineShift bbox begin bias by calcMode capHeight clip clipPath clipRule clipPathUnits colorInterpolation colorInterpolationFilters colorProfile colorRendering contentScriptType contentStyleType cursor cx cy d decelerate descent diffuseConstant direction display divisor dominantBaseline dur dx dy edgeMode elevation enableBackground end exponent externalResourcesRequired fill fillOpacity fillRule filter filterRes filterUnits floodColor floodOpacity focusable fontFamily fontSize fontSizeAdjust fontStretch fontStyle fontVariant fontWeight format from fx fy g1 g2 glyphName glyphOrientationHorizontal glyphOrientationVertical glyphRef gradientTransform gradientUnits hanging horizAdvX horizOriginX ideographic imageRendering in in2 intercept k k1 k2 k3 k4 kernelMatrix kernelUnitLength kerning keyPoints keySplines keyTimes lengthAdjust letterSpacing lightingColor limitingConeAngle local markerEnd markerMid markerStart markerHeight markerUnits markerWidth mask maskContentUnits maskUnits mathematical mode numOctaves offset opacity operator order orient orientation origin overflow overlinePosition overlineThickness paintOrder panose1 pathLength patternContentUnits patternTransform patternUnits pointerEvents points pointsAtX pointsAtY pointsAtZ preserveAlpha preserveAspectRatio primitiveUnits r radius refX refY renderingIntent repeatCount repeatDur requiredExtensions requiredFeatures restart result rotate rx ry scale seed shapeRendering slope spacing specularConstant specularExponent speed spreadMethod startOffset stdDeviation stemh stemv stitchTiles stopColor stopOpacity strikethroughPosition strikethroughThickness string stroke strokeDasharray strokeDashoffset strokeLinecap strokeLinejoin strokeMiterlimit strokeOpacity strokeWidth surfaceScale systemLanguage tableValues targetX targetY textAnchor textDecoration textRendering textLength to transform u1 u2 underlinePosition underlineThickness unicode unicodeBidi unicodeRange unitsPerEm vAlphabetic vHanging vIdeographic vMathematical values vectorEffect version vertAdvY vertOriginX vertOriginY viewBox viewTarget visibility widths wordSpacing writingMode x xHeight x1 x2 xChannelSelector xlinkActuate xlinkArcrole xlinkHref xlinkRole xlinkShow xlinkTitle xlinkType xmlBase xmlns xmlnsXlink xmlLang xmlSpace y y1 y2 yChannelSelector z zoomAndPan onPointerDown onPointerMove onPointerUp onPointerCancel onGotPointerCapture onLostPointerCapture onPointerEnter onPointerLeave onPointerOver onPointerOut class for autofocus
|
19
|
+
*/
|
20
|
+
|
21
|
+
var ATTRIBUTE_REGEX = /^((?:s(?:uppressContentEditableWarn|croll|pac)|(?:shape|image|text)Render|(?:letter|word)Spac|vHang|hang)ing|(?:on(?:AnimationIteration|C(?:o(?:mposition(?:Update|Start|End)|ntextMenu|py)|anPlayThrough|anPlay|hange|lick|ut)|(?:Animation|Touch|Load|Drag)Start|(?:(?:Duration|Volume|Rate)Chang|(?:MouseLea|(?:Touch|Mouse)Mo|DragLea)v|Paus)e|Loaded(?:Metad|D)ata|(?:(?:T(?:ransition|ouch)|Animation)E|Suspe)nd|DoubleClick|(?:TouchCanc|Whe)el|Lo(?:stPointer|ad)|TimeUpdate|(?:Mouse(?:Ent|Ov)e|Drag(?:Ent|Ov)e|Erro)r|GotPointer|MouseDown|(?:E(?:n(?:crypt|d)|mpti)|S(?:tall|eek))ed|KeyPress|(?:MouseOu|DragExi|S(?:elec|ubmi)|Rese|Inpu)t|P(?:rogress|laying)|DragEnd|Key(?:Down|Up)|(?:MouseU|Dro)p|(?:Wait|Seek)ing|Scroll|Focus|Paste|Abort|Drag|Play|Blur)Captur|alignmentBaselin|(?:limitingConeAng|xlink(?:(?:Arcr|R)o|Tit)|s(?:urfaceSca|ty|ca)|unselectab|baseProfi|fontSty|(?:focus|dragg)ab|multip|profi|tit)l|d(?:ominantBaselin|efaultValu)|onPointerLeav|a(?:uto(?:Capitaliz|Revers|Sav)|dditiv)|(?:(?:formNoValid|xlinkActu|noValid|accumul|rot)a|autoComple|decelera)t|(?:(?:attribute|item)T|datat)yp|onPointerMov|(?:attribute|glyph)Nam|playsInlin|(?:writing|input|edge)Mod|(?:formE|e)ncTyp|(?:amplitu|mo)d|(?:xlinkTy|itemSco|keyTy|slo)p|(?:xmlSpa|non)c|fillRul|(?:dateTi|na)m|r(?:esourc|ol)|xmlBas|wmod)e|(?:glyphOrientationHorizont|loc)al|(?:externalResourcesRequir|select|revers|mut)ed|c(?:o(?:lorInterpolationFilter|ord)s|o(?:lor(?:Interpolation)?|nt(?:rols|ent))|(?:ontentS(?:cript|tyle)Typ|o(?:ntentEditab|lorProfi)l|l(?:assNam|ipRul)|a(?:lcMod|ptur)|it)e|olorRendering|l(?:ipPathUnits|assID)|(?:ontrolsLis|apHeigh)t|h(?:eckedLink|a(?:llenge|rSet)|ildren|ecked)|ell(?:Spac|Padd)ing|o(?:ntextMenu|ls)|(?:rossOrigi|olSpa)n|l(?:ip(?:Path)?|ass)|ursor|[xy])|glyphOrientationVertical|d(?:angerouslySetInnerHTML|efaultChecked|ownload|isabled|isplay|[xy])|(?:s(?:trikethroughThickn|eaml)es|(?:und|ov)erlineThicknes|r(?:equiredExtension|adiu)|(?:requiredFeatur|tableValu|stitchTil|numOctav|filterR)e|key(?:(?:Splin|Tim)e|Param)|auto[Ff]ocu|header|bia)s|(?:(?:st(?:rikethroughPosi|dDevia)|(?:und|ov)erlinePosi|(?:textDecor|elev)a|orienta)tio|(?:strokeLinejo|orig)i|on(?:PointerDow|FocusI)|formActio|zoomAndPa|directio|(?:vers|act)io|rowSpa|begi|ico)n|o(?:n(?:AnimationIteration|C(?:o(?:mposition(?:Update|Start|End)|ntextMenu|py)|anPlayThrough|anPlay|hange|lick|ut)|(?:(?:Duration|Volume|Rate)Chang|(?:MouseLea|(?:Touch|Mouse)Mo|DragLea)v|Paus)e|Loaded(?:Metad|D)ata|(?:Animation|Touch|Load|Drag)Start|(?:(?:T(?:ransition|ouch)|Animation)E|Suspe)nd|DoubleClick|(?:TouchCanc|Whe)el|(?:Mouse(?:Ent|Ov)e|Drag(?:Ent|Ov)e|Erro)r|TimeUpdate|(?:E(?:n(?:crypt|d)|mpti)|S(?:tall|eek))ed|MouseDown|P(?:rogress|laying)|(?:MouseOu|DragExi|S(?:elec|ubmi)|Rese|Inpu)t|KeyPress|DragEnd|Key(?:Down|Up)|(?:Wait|Seek)ing|(?:MouseU|Dro)p|Scroll|Paste|Focus|Abort|Drag|Play|Load|Blur)|rient)|p(?:reserveA(?:spectRatio|lpha)|ointsAt[X-Z]|anose1)|(?:patternContent|ma(?:sk(?:Content)?|rker)|primitive|gradient|pattern|filter)Units|(?:(?:allowTranspar|baseFrequ)enc|re(?:ferrerPolic|adOnl)|(?:(?:st(?:roke|op)O|floodO|fillO|o)pac|integr|secur)it|visibilit|fontFamil|accessKe|propert|summar)y|(?:gradientT|patternT|t)ransform|(?:[xy]ChannelSelect|lightingCol|textAnch|floodCol|stopCol|operat|htmlF)or|(?:strokeMiterlimi|(?:specularConsta|repeatCou|fontVaria)n|(?:(?:specularE|e)xpon|renderingInt|asc)en|d(?:iffuseConsta|esce)n|(?:fontSizeAdju|lengthAdju|manife)s|baselineShif|onPointerOu|vectorEffec|(?:(?:mar(?:ker|gin)|x)H|accentH|fontW)eigh|markerStar|a(?:utoCorrec|bou)|onFocusOu|intercep|restar|forma|inlis|heigh|lis)t|(?:(?:st(?:rokeDasho|artO)|o)ffs|acceptChars|formTarg|viewTarg|srcS)et|k(?:ernel(?:UnitLength|Matrix)|[1-4])|(?:(?:enableBackgrou|markerE)n|s(?:p(?:readMetho|ee)|ee)|formMetho|(?:markerM|onInval)i|preloa|metho|kin)d|strokeDasharray|(?:onPointerCanc|lab)el|(?:allowFullScre|hidd)en|systemLanguage|(?:(?:o(?:nPointer(?:Ent|Ov)|rd)|allowReord|placehold|frameBord|paintOrd|post)e|repeatDu|d(?:efe|u))r|v(?:Mathematical|ert(?:Origin[XY]|AdvY)|alues|ocab)|(?:pointerEve|keyPoi)nts|(?:strokeLineca|onPointerU|itemPro|useMa|wra|loo)p|h(?:oriz(?:Origin|Adv)X|ttpEquiv)|(?:vI|i)deographic|unicodeRange|mathematical|vAlphabetic|u(?:nicodeBidi|[12])|(?:fontStretc|hig)h|(?:(?:mar(?:ker|gin)W|strokeW)id|azimu)th|(?:xmlnsXl|valueL)ink|mediaGroup|spellCheck|(?:text|m(?:in|ax))Length|(?:unitsPerE|optimu|fro)m|r(?:adioGroup|e(?:sults|f[XY]|l)|ows|[xy])|a(?:rabicForm|l(?:phabetic|t)|sync)|pathLength|innerHTML|xlinkShow|(?:xlinkHr|glyphR)ef|(?:tabInde|(?:sand|b)bo|viewBo)x|(?:(?:href|xml|src)La|kerni)ng|autoPlay|o(?:verflow|pen)|f(?:o(?:ntSize|rm?)|il(?:ter|l))|r(?:e(?:quired|sult|f))?|divisor|p(?:attern|oints)|unicode|d(?:efault|ata|ir)?|i(?:temRef|n2|s)|t(?:arget[XY]|o)|srcDoc|s(?:coped|te(?:m[hv]|p)|pan)|(?:width|size)s|prefix|typeof|itemID|s(?:t(?:roke|art)|hape|cope|rc)|t(?:arget|ype)|(?:stri|la)ng|a(?:ccept|s)|m(?:edia|a(?:sk|x)|in)|x(?:mlns)?|width|value|size|href|elementtiming|k(?:ey)?|end|low|by|i[dn]|y[12]|g[12]|x[12]|f[xy]|[yz])$/;
|
22
|
+
|
23
|
+
/* From DOMProperty */
|
24
|
+
var ATTRIBUTE_NAME_START_CHAR = ":A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD";
|
25
|
+
var ATTRIBUTE_NAME_CHAR = "".concat(ATTRIBUTE_NAME_START_CHAR, "\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040");
|
26
|
+
var isCustomAttribute = RegExp.prototype.test.bind(new RegExp("^(x|data|aria)-[".concat(ATTRIBUTE_NAME_CHAR, "]*$")));
|
27
|
+
export var validAttr = function validAttr(name) {
|
28
|
+
return ATTRIBUTE_REGEX.test(name) || isCustomAttribute(name.toLowerCase());
|
29
|
+
};
|
30
|
+
var omittedCloseTags = {
|
31
|
+
area: true,
|
32
|
+
base: true,
|
33
|
+
br: true,
|
34
|
+
col: true,
|
35
|
+
embed: true,
|
36
|
+
hr: true,
|
37
|
+
img: true,
|
38
|
+
input: true,
|
39
|
+
keygen: true,
|
40
|
+
link: true,
|
41
|
+
meta: true,
|
42
|
+
param: true,
|
43
|
+
source: true,
|
44
|
+
track: true,
|
45
|
+
wbr: true,
|
46
|
+
// because Children default value [Object object]
|
47
|
+
textarea: true
|
48
|
+
};
|
49
|
+
export default function propsForElement(props, element) {
|
50
|
+
if (element && typeof element !== 'string') {
|
51
|
+
return props;
|
52
|
+
} else {
|
53
|
+
// @ts-ignore
|
54
|
+
var _ref = props,
|
55
|
+
_ref$__excludeProps = _ref.__excludeProps,
|
56
|
+
__excludeProps = _ref$__excludeProps === void 0 ? [] : _ref$__excludeProps,
|
57
|
+
other = _objectWithoutProperties(_ref, _excluded);
|
58
|
+
var validProps = Object.keys(other).reduce(function (acc, propName) {
|
59
|
+
if (!__excludeProps.includes(propName) && validAttr(propName)) {
|
60
|
+
acc[propName] = other[propName];
|
61
|
+
}
|
62
|
+
return acc;
|
63
|
+
}, {});
|
64
|
+
if (element && omittedCloseTags[element]) {
|
65
|
+
validProps['children'] = undefined;
|
66
|
+
}
|
67
|
+
return validProps;
|
68
|
+
}
|
69
|
+
}
|
70
|
+
//# sourceMappingURL=propsForElement.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"propsForElement.mjs","names":["ATTRIBUTE_REGEX","ATTRIBUTE_NAME_START_CHAR","ATTRIBUTE_NAME_CHAR","concat","isCustomAttribute","RegExp","prototype","test","bind","validAttr","name","toLowerCase","omittedCloseTags","area","base","br","col","embed","hr","img","input","keygen","link","meta","param","source","track","wbr","textarea","propsForElement","props","element","_ref","_ref$__excludeProps","__excludeProps","other","_objectWithoutProperties","_excluded","validProps","Object","keys","reduce","acc","propName","includes","undefined"],"sources":["../src/propsForElement.ts"],"sourcesContent":["/*\n * COPY FROM https://github.com/styled-components/styled-components/blob/master/src/utils/validAttr.js\n * */\n/**\n * Trying to avoid the unknown-prop errors on styled components by filtering by\n * React's attribute whitelist.\n *\n * To regenerate this regex:\n *\n * 1. `npm i -g regexgen` (https://github.com/devongovett/regexgen)\n * 2. Run `regexgen` with the list of space-separated words below as input\n * 3. Surround the emitted regex with this: `/^(GENERATED_REGEX)$/` -- this will ensure a full string match\n * and no false positives from partials\n * */\n/*\nchildren dangerouslySetInnerHTML key ref autoFocus defaultValue valueLink defaultChecked checkedLink innerHTML suppressContentEditableWarning onFocusIn onFocusOut className onCopy onCut onPaste onCompositionEnd onCompositionStart onCompositionUpdate onKeyDown onKeyPress onKeyUp onFocus onBlur onChange onInput onInvalid onSubmit onReset onClick onContextMenu onDoubleClick onDrag onDragEnd onDragEnter onDragExit onDragLeave onDragOver onDragStart onDrop onMouseDown onMouseEnter onMouseLeave onMouseMove onMouseOut onMouseOver onMouseUp onSelect onTouchCancel onTouchEnd onTouchMove onTouchStart onScroll onWheel onAbort onCanPlay onCanPlayThrough onDurationChange onEmptied onEncrypted onEnded onError onLoadedData onLoadedMetadata onLoadStart onPause onPlay onPlaying onProgress onRateChange onSeeked onSeeking onStalled onSuspend onTimeUpdate onVolumeChange onWaiting onLoad onAnimationStart onAnimationEnd onAnimationIteration onTransitionEnd onCopyCapture onCutCapture onPasteCapture onCompositionEndCapture onCompositionStartCapture onCompositionUpdateCapture onKeyDownCapture onKeyPressCapture onKeyUpCapture onFocusCapture onBlurCapture onChangeCapture onInputCapture onSubmitCapture onResetCapture onClickCapture onContextMenuCapture onDoubleClickCapture onDragCapture onDragEndCapture onDragEnterCapture onDragExitCapture onDragLeaveCapture onDragOverCapture onDragStartCapture onDropCapture onMouseDownCapture onMouseEnterCapture onMouseLeaveCapture onMouseMoveCapture onMouseOutCapture onMouseOverCapture onMouseUpCapture onSelectCapture onTouchCancelCapture onTouchEndCapture onTouchMoveCapture onTouchStartCapture onScrollCapture onWheelCapture onAbortCapture onCanPlayCapture onCanPlayThroughCapture onDurationChangeCapture onEmptiedCapture onEncryptedCapture onEndedCapture onErrorCapture onLoadedDataCapture onLoadedMetadataCapture onLoadStartCapture onPauseCapture onPlayCapture onPlayingCapture onProgressCapture onRateChangeCapture onSeekedCapture onSeekingCapture onStalledCapture onSuspendCapture onTimeUpdateCapture onVolumeChangeCapture onWaitingCapture onLoadCapture onAnimationStartCapture onAnimationEndCapture onAnimationIterationCapture onTransitionEndCapture accept acceptCharset accessKey action allowFullScreen allowTransparency alt as async autoComplete autoPlay capture cellPadding cellSpacing charSet challenge checked cite classID className cols colSpan content contentEditable contextMenu controlsList controls coords crossOrigin data dateTime default defer dir disabled download draggable encType form formAction formEncType formMethod formNoValidate formTarget frameBorder headers height hidden high href hrefLang htmlFor httpEquiv icon id inputMode integrity is keyParams keyType kind label lang list loop low manifest marginHeight marginWidth max maxLength media mediaGroup method min minLength multiple muted name nonce noValidate open optimum pattern placeholder playsInline poster preload profile radioGroup readOnly referrerPolicy rel required reversed role rows rowSpan sandbox scope scoped scrolling seamless selected shape size sizes span spellCheck src srcDoc srcLang srcSet start step style summary tabIndex target title type useMap value width wmode wrap about datatype inlist prefix property resource typeof vocab autoCapitalize autoCorrect autoSave color itemProp itemScope itemType itemID itemRef results security unselectable accentHeight accumulate additive alignmentBaseline allowReorder alphabetic amplitude arabicForm ascent attributeName attributeType autoReverse azimuth baseFrequency baseProfile baselineShift bbox begin bias by calcMode capHeight clip clipPath clipRule clipPathUnits colorInterpolation colorInterpolationFilters colorProfile colorRendering contentScriptType contentStyleType cursor cx cy d decelerate descent diffuseConstant direction display divisor dominantBaseline dur dx dy edgeMode elevation enableBackground end exponent externalResourcesRequired fill fillOpacity fillRule filter filterRes filterUnits floodColor floodOpacity focusable fontFamily fontSize fontSizeAdjust fontStretch fontStyle fontVariant fontWeight format from fx fy g1 g2 glyphName glyphOrientationHorizontal glyphOrientationVertical glyphRef gradientTransform gradientUnits hanging horizAdvX horizOriginX ideographic imageRendering in in2 intercept k k1 k2 k3 k4 kernelMatrix kernelUnitLength kerning keyPoints keySplines keyTimes lengthAdjust letterSpacing lightingColor limitingConeAngle local markerEnd markerMid markerStart markerHeight markerUnits markerWidth mask maskContentUnits maskUnits mathematical mode numOctaves offset opacity operator order orient orientation origin overflow overlinePosition overlineThickness paintOrder panose1 pathLength patternContentUnits patternTransform patternUnits pointerEvents points pointsAtX pointsAtY pointsAtZ preserveAlpha preserveAspectRatio primitiveUnits r radius refX refY renderingIntent repeatCount repeatDur requiredExtensions requiredFeatures restart result rotate rx ry scale seed shapeRendering slope spacing specularConstant specularExponent speed spreadMethod startOffset stdDeviation stemh stemv stitchTiles stopColor stopOpacity strikethroughPosition strikethroughThickness string stroke strokeDasharray strokeDashoffset strokeLinecap strokeLinejoin strokeMiterlimit strokeOpacity strokeWidth surfaceScale systemLanguage tableValues targetX targetY textAnchor textDecoration textRendering textLength to transform u1 u2 underlinePosition underlineThickness unicode unicodeBidi unicodeRange unitsPerEm vAlphabetic vHanging vIdeographic vMathematical values vectorEffect version vertAdvY vertOriginX vertOriginY viewBox viewTarget visibility widths wordSpacing writingMode x xHeight x1 x2 xChannelSelector xlinkActuate xlinkArcrole xlinkHref xlinkRole xlinkShow xlinkTitle xlinkType xmlBase xmlns xmlnsXlink xmlLang xmlSpace y y1 y2 yChannelSelector z zoomAndPan onPointerDown onPointerMove onPointerUp onPointerCancel onGotPointerCapture onLostPointerCapture onPointerEnter onPointerLeave onPointerOver onPointerOut class for autofocus\n*/\n\nimport { ElementType } from 'react';\n\nconst ATTRIBUTE_REGEX =\n /^((?:s(?:uppressContentEditableWarn|croll|pac)|(?:shape|image|text)Render|(?:letter|word)Spac|vHang|hang)ing|(?:on(?:AnimationIteration|C(?:o(?:mposition(?:Update|Start|End)|ntextMenu|py)|anPlayThrough|anPlay|hange|lick|ut)|(?:Animation|Touch|Load|Drag)Start|(?:(?:Duration|Volume|Rate)Chang|(?:MouseLea|(?:Touch|Mouse)Mo|DragLea)v|Paus)e|Loaded(?:Metad|D)ata|(?:(?:T(?:ransition|ouch)|Animation)E|Suspe)nd|DoubleClick|(?:TouchCanc|Whe)el|Lo(?:stPointer|ad)|TimeUpdate|(?:Mouse(?:Ent|Ov)e|Drag(?:Ent|Ov)e|Erro)r|GotPointer|MouseDown|(?:E(?:n(?:crypt|d)|mpti)|S(?:tall|eek))ed|KeyPress|(?:MouseOu|DragExi|S(?:elec|ubmi)|Rese|Inpu)t|P(?:rogress|laying)|DragEnd|Key(?:Down|Up)|(?:MouseU|Dro)p|(?:Wait|Seek)ing|Scroll|Focus|Paste|Abort|Drag|Play|Blur)Captur|alignmentBaselin|(?:limitingConeAng|xlink(?:(?:Arcr|R)o|Tit)|s(?:urfaceSca|ty|ca)|unselectab|baseProfi|fontSty|(?:focus|dragg)ab|multip|profi|tit)l|d(?:ominantBaselin|efaultValu)|onPointerLeav|a(?:uto(?:Capitaliz|Revers|Sav)|dditiv)|(?:(?:formNoValid|xlinkActu|noValid|accumul|rot)a|autoComple|decelera)t|(?:(?:attribute|item)T|datat)yp|onPointerMov|(?:attribute|glyph)Nam|playsInlin|(?:writing|input|edge)Mod|(?:formE|e)ncTyp|(?:amplitu|mo)d|(?:xlinkTy|itemSco|keyTy|slo)p|(?:xmlSpa|non)c|fillRul|(?:dateTi|na)m|r(?:esourc|ol)|xmlBas|wmod)e|(?:glyphOrientationHorizont|loc)al|(?:externalResourcesRequir|select|revers|mut)ed|c(?:o(?:lorInterpolationFilter|ord)s|o(?:lor(?:Interpolation)?|nt(?:rols|ent))|(?:ontentS(?:cript|tyle)Typ|o(?:ntentEditab|lorProfi)l|l(?:assNam|ipRul)|a(?:lcMod|ptur)|it)e|olorRendering|l(?:ipPathUnits|assID)|(?:ontrolsLis|apHeigh)t|h(?:eckedLink|a(?:llenge|rSet)|ildren|ecked)|ell(?:Spac|Padd)ing|o(?:ntextMenu|ls)|(?:rossOrigi|olSpa)n|l(?:ip(?:Path)?|ass)|ursor|[xy])|glyphOrientationVertical|d(?:angerouslySetInnerHTML|efaultChecked|ownload|isabled|isplay|[xy])|(?:s(?:trikethroughThickn|eaml)es|(?:und|ov)erlineThicknes|r(?:equiredExtension|adiu)|(?:requiredFeatur|tableValu|stitchTil|numOctav|filterR)e|key(?:(?:Splin|Tim)e|Param)|auto[Ff]ocu|header|bia)s|(?:(?:st(?:rikethroughPosi|dDevia)|(?:und|ov)erlinePosi|(?:textDecor|elev)a|orienta)tio|(?:strokeLinejo|orig)i|on(?:PointerDow|FocusI)|formActio|zoomAndPa|directio|(?:vers|act)io|rowSpa|begi|ico)n|o(?:n(?:AnimationIteration|C(?:o(?:mposition(?:Update|Start|End)|ntextMenu|py)|anPlayThrough|anPlay|hange|lick|ut)|(?:(?:Duration|Volume|Rate)Chang|(?:MouseLea|(?:Touch|Mouse)Mo|DragLea)v|Paus)e|Loaded(?:Metad|D)ata|(?:Animation|Touch|Load|Drag)Start|(?:(?:T(?:ransition|ouch)|Animation)E|Suspe)nd|DoubleClick|(?:TouchCanc|Whe)el|(?:Mouse(?:Ent|Ov)e|Drag(?:Ent|Ov)e|Erro)r|TimeUpdate|(?:E(?:n(?:crypt|d)|mpti)|S(?:tall|eek))ed|MouseDown|P(?:rogress|laying)|(?:MouseOu|DragExi|S(?:elec|ubmi)|Rese|Inpu)t|KeyPress|DragEnd|Key(?:Down|Up)|(?:Wait|Seek)ing|(?:MouseU|Dro)p|Scroll|Paste|Focus|Abort|Drag|Play|Load|Blur)|rient)|p(?:reserveA(?:spectRatio|lpha)|ointsAt[X-Z]|anose1)|(?:patternContent|ma(?:sk(?:Content)?|rker)|primitive|gradient|pattern|filter)Units|(?:(?:allowTranspar|baseFrequ)enc|re(?:ferrerPolic|adOnl)|(?:(?:st(?:roke|op)O|floodO|fillO|o)pac|integr|secur)it|visibilit|fontFamil|accessKe|propert|summar)y|(?:gradientT|patternT|t)ransform|(?:[xy]ChannelSelect|lightingCol|textAnch|floodCol|stopCol|operat|htmlF)or|(?:strokeMiterlimi|(?:specularConsta|repeatCou|fontVaria)n|(?:(?:specularE|e)xpon|renderingInt|asc)en|d(?:iffuseConsta|esce)n|(?:fontSizeAdju|lengthAdju|manife)s|baselineShif|onPointerOu|vectorEffec|(?:(?:mar(?:ker|gin)|x)H|accentH|fontW)eigh|markerStar|a(?:utoCorrec|bou)|onFocusOu|intercep|restar|forma|inlis|heigh|lis)t|(?:(?:st(?:rokeDasho|artO)|o)ffs|acceptChars|formTarg|viewTarg|srcS)et|k(?:ernel(?:UnitLength|Matrix)|[1-4])|(?:(?:enableBackgrou|markerE)n|s(?:p(?:readMetho|ee)|ee)|formMetho|(?:markerM|onInval)i|preloa|metho|kin)d|strokeDasharray|(?:onPointerCanc|lab)el|(?:allowFullScre|hidd)en|systemLanguage|(?:(?:o(?:nPointer(?:Ent|Ov)|rd)|allowReord|placehold|frameBord|paintOrd|post)e|repeatDu|d(?:efe|u))r|v(?:Mathematical|ert(?:Origin[XY]|AdvY)|alues|ocab)|(?:pointerEve|keyPoi)nts|(?:strokeLineca|onPointerU|itemPro|useMa|wra|loo)p|h(?:oriz(?:Origin|Adv)X|ttpEquiv)|(?:vI|i)deographic|unicodeRange|mathematical|vAlphabetic|u(?:nicodeBidi|[12])|(?:fontStretc|hig)h|(?:(?:mar(?:ker|gin)W|strokeW)id|azimu)th|(?:xmlnsXl|valueL)ink|mediaGroup|spellCheck|(?:text|m(?:in|ax))Length|(?:unitsPerE|optimu|fro)m|r(?:adioGroup|e(?:sults|f[XY]|l)|ows|[xy])|a(?:rabicForm|l(?:phabetic|t)|sync)|pathLength|innerHTML|xlinkShow|(?:xlinkHr|glyphR)ef|(?:tabInde|(?:sand|b)bo|viewBo)x|(?:(?:href|xml|src)La|kerni)ng|autoPlay|o(?:verflow|pen)|f(?:o(?:ntSize|rm?)|il(?:ter|l))|r(?:e(?:quired|sult|f))?|divisor|p(?:attern|oints)|unicode|d(?:efault|ata|ir)?|i(?:temRef|n2|s)|t(?:arget[XY]|o)|srcDoc|s(?:coped|te(?:m[hv]|p)|pan)|(?:width|size)s|prefix|typeof|itemID|s(?:t(?:roke|art)|hape|cope|rc)|t(?:arget|ype)|(?:stri|la)ng|a(?:ccept|s)|m(?:edia|a(?:sk|x)|in)|x(?:mlns)?|width|value|size|href|elementtiming|k(?:ey)?|end|low|by|i[dn]|y[12]|g[12]|x[12]|f[xy]|[yz])$/;\n\n/* From DOMProperty */\nconst ATTRIBUTE_NAME_START_CHAR =\n ':A-Z_a-z\\\\u00C0-\\\\u00D6\\\\u00D8-\\\\u00F6\\\\u00F8-\\\\u02FF\\\\u0370-\\\\u037D\\\\u037F-\\\\u1FFF\\\\u200C-\\\\u200D\\\\u2070-\\\\u218F\\\\u2C00-\\\\u2FEF\\\\u3001-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFFFD';\nconst ATTRIBUTE_NAME_CHAR = `${ATTRIBUTE_NAME_START_CHAR}\\\\-.0-9\\\\u00B7\\\\u0300-\\\\u036F\\\\u203F-\\\\u2040`;\nconst isCustomAttribute = RegExp.prototype.test.bind(\n new RegExp(`^(x|data|aria)-[${ATTRIBUTE_NAME_CHAR}]*$`),\n);\n\nexport const validAttr = (name: string) =>\n ATTRIBUTE_REGEX.test(name) || isCustomAttribute(name.toLowerCase());\n\nconst omittedCloseTags = {\n area: true,\n base: true,\n br: true,\n col: true,\n embed: true,\n hr: true,\n img: true,\n input: true,\n keygen: true,\n link: true,\n meta: true,\n param: true,\n source: true,\n track: true,\n wbr: true,\n // because Children default value [Object object]\n textarea: true,\n};\n\nexport default function propsForElement<T extends {}>(\n props: T,\n element?: ElementType | string,\n): Partial<T> {\n if (element && typeof element !== 'string') {\n return props;\n } else {\n // @ts-ignore\n const { __excludeProps = [], ...other } = props as any;\n const validProps = Object.keys(other).reduce((acc: any, propName) => {\n if (!__excludeProps.includes(propName) && validAttr(propName)) {\n acc[propName] = other[propName];\n }\n return acc;\n }, {});\n if (element && (omittedCloseTags as any)[element as any]) {\n validProps['children'] = undefined;\n }\n return validProps;\n }\n}\n"],"mappings":";;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAIA,IAAMA,eAAe,GACnB,i6JAAi6J;;AAEn6J;AACA,IAAMC,yBAAyB,GAC7B,+KAA+K;AACjL,IAAMC,mBAAmB,MAAAC,MAAA,CAAMF,yBAAyB,iDAA8C;AACtG,IAAMG,iBAAiB,GAAGC,MAAM,CAACC,SAAS,CAACC,IAAI,CAACC,IAAI,CAClD,IAAIH,MAAM,oBAAAF,MAAA,CAAoBD,mBAAmB,SAAM,CACxD;AAED,OAAO,IAAMO,SAAS,GAAG,SAAZA,SAASA,CAAIC,IAAY;EAAA,OACpCV,eAAe,CAACO,IAAI,CAACG,IAAI,CAAC,IAAIN,iBAAiB,CAACM,IAAI,CAACC,WAAW,EAAE,CAAC;AAAA;AAErE,IAAMC,gBAAgB,GAAG;EACvBC,IAAI,EAAE,IAAI;EACVC,IAAI,EAAE,IAAI;EACVC,EAAE,EAAE,IAAI;EACRC,GAAG,EAAE,IAAI;EACTC,KAAK,EAAE,IAAI;EACXC,EAAE,EAAE,IAAI;EACRC,GAAG,EAAE,IAAI;EACTC,KAAK,EAAE,IAAI;EACXC,MAAM,EAAE,IAAI;EACZC,IAAI,EAAE,IAAI;EACVC,IAAI,EAAE,IAAI;EACVC,KAAK,EAAE,IAAI;EACXC,MAAM,EAAE,IAAI;EACZC,KAAK,EAAE,IAAI;EACXC,GAAG,EAAE,IAAI;EACT;EACAC,QAAQ,EAAE;AACZ,CAAC;AAED,eAAe,SAASC,eAAeA,CACrCC,KAAQ,EACRC,OAA8B,EAClB;EACZ,IAAIA,OAAO,IAAI,OAAOA,OAAO,KAAK,QAAQ,EAAE;IAC1C,OAAOD,KAAK;EACd,CAAC,MAAM;IACL;IACA,IAAAE,IAAA,GAA0CF,KAAK;MAAAG,mBAAA,GAAAD,IAAA,CAAvCE,cAAc;MAAdA,cAAc,GAAAD,mBAAA,cAAG,EAAE,GAAAA,mBAAA;MAAKE,KAAK,GAAAC,wBAAA,CAAAJ,IAAA,EAAAK,SAAA;IACrC,IAAMC,UAAU,GAAGC,MAAM,CAACC,IAAI,CAACL,KAAK,CAAC,CAACM,MAAM,CAAC,UAACC,GAAQ,EAAEC,QAAQ,EAAK;MACnE,IAAI,CAACT,cAAc,CAACU,QAAQ,CAACD,QAAQ,CAAC,IAAIlC,SAAS,CAACkC,QAAQ,CAAC,EAAE;QAC7DD,GAAG,CAACC,QAAQ,CAAC,GAAGR,KAAK,CAACQ,QAAQ,CAAC;MACjC;MACA,OAAOD,GAAG;IACZ,CAAC,EAAE,CAAC,CAAC,CAAC;IACN,IAAIX,OAAO,IAAKnB,gBAAgB,CAASmB,OAAO,CAAQ,EAAE;MACxDO,UAAU,CAAC,UAAU,CAAC,GAAGO,SAAS;IACpC;IACA,OAAOP,UAAU;EACnB;AACF"}
|
@@ -0,0 +1,33 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
4
|
+
value: true
|
5
|
+
});
|
6
|
+
exports["default"] = void 0;
|
7
|
+
function rafTrottle(callback) {
|
8
|
+
var ticking = null;
|
9
|
+
var lastArgs;
|
10
|
+
var update = function update(context) {
|
11
|
+
return function () {
|
12
|
+
ticking = null;
|
13
|
+
callback.apply(context, lastArgs);
|
14
|
+
};
|
15
|
+
};
|
16
|
+
var throttled = function throttled() {
|
17
|
+
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
18
|
+
args[_key] = arguments[_key];
|
19
|
+
}
|
20
|
+
lastArgs = args;
|
21
|
+
if (ticking === null) {
|
22
|
+
ticking = requestAnimationFrame(update(this));
|
23
|
+
}
|
24
|
+
};
|
25
|
+
throttled.cancel = function () {
|
26
|
+
if (typeof ticking === 'number') cancelAnimationFrame(ticking);
|
27
|
+
ticking = null;
|
28
|
+
};
|
29
|
+
return throttled;
|
30
|
+
}
|
31
|
+
var _default = rafTrottle;
|
32
|
+
exports["default"] = _default;
|
33
|
+
//# sourceMappingURL=rafTrottle.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"rafTrottle.js","names":["rafTrottle","callback","ticking","lastArgs","update","context","apply","throttled","_len","arguments","length","args","Array","_key","requestAnimationFrame","cancel","cancelAnimationFrame","_default","exports"],"sources":["../src/rafTrottle.tsx"],"sourcesContent":["function rafTrottle<T extends (...args: any[]) => any>(callback: T) {\n let ticking: number | null = null;\n\n let lastArgs: any;\n\n const update = (context: any) => () => {\n ticking = null;\n callback.apply(context, lastArgs);\n };\n\n const throttled = function (this: any, ...args: any[]) {\n lastArgs = args;\n if (ticking === null) {\n ticking = requestAnimationFrame(update(this));\n }\n };\n\n throttled.cancel = () => {\n if (typeof ticking === 'number') cancelAnimationFrame(ticking);\n ticking = null;\n };\n\n return throttled as any as T;\n}\n\nexport default rafTrottle;\n"],"mappings":";;;;;;AAAA,SAASA,UAAUA,CAAoCC,QAAW,EAAE;EAClE,IAAIC,OAAsB,GAAG,IAAI;EAEjC,IAAIC,QAAa;EAEjB,IAAMC,MAAM,GAAG,SAATA,MAAMA,CAAIC,OAAY;IAAA,OAAK,YAAM;MACrCH,OAAO,GAAG,IAAI;MACdD,QAAQ,CAACK,KAAK,CAACD,OAAO,EAAEF,QAAQ,CAAC;IACnC,CAAC;EAAA;EAED,IAAMI,SAAS,GAAG,SAAZA,SAASA,CAAA,EAAwC;IAAA,SAAAC,IAAA,GAAAC,SAAA,CAAAC,MAAA,EAAbC,IAAI,OAAAC,KAAA,CAAAJ,IAAA,GAAAK,IAAA,MAAAA,IAAA,GAAAL,IAAA,EAAAK,IAAA;MAAJF,IAAI,CAAAE,IAAA,IAAAJ,SAAA,CAAAI,IAAA;IAAA;IAC5CV,QAAQ,GAAGQ,IAAI;IACf,IAAIT,OAAO,KAAK,IAAI,EAAE;MACpBA,OAAO,GAAGY,qBAAqB,CAACV,MAAM,CAAC,IAAI,CAAC,CAAC;IAC/C;EACF,CAAC;EAEDG,SAAS,CAACQ,MAAM,GAAG,YAAM;IACvB,IAAI,OAAOb,OAAO,KAAK,QAAQ,EAAEc,oBAAoB,CAACd,OAAO,CAAC;IAC9DA,OAAO,GAAG,IAAI;EAChB,CAAC;EAED,OAAOK,SAAS;AAClB;AAAC,IAAAU,QAAA,GAEcjB,UAAU;AAAAkB,OAAA,cAAAD,QAAA"}
|
@@ -0,0 +1,26 @@
|
|
1
|
+
function rafTrottle(callback) {
|
2
|
+
var ticking = null;
|
3
|
+
var lastArgs;
|
4
|
+
var update = function update(context) {
|
5
|
+
return function () {
|
6
|
+
ticking = null;
|
7
|
+
callback.apply(context, lastArgs);
|
8
|
+
};
|
9
|
+
};
|
10
|
+
var throttled = function throttled() {
|
11
|
+
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
12
|
+
args[_key] = arguments[_key];
|
13
|
+
}
|
14
|
+
lastArgs = args;
|
15
|
+
if (ticking === null) {
|
16
|
+
ticking = requestAnimationFrame(update(this));
|
17
|
+
}
|
18
|
+
};
|
19
|
+
throttled.cancel = function () {
|
20
|
+
if (typeof ticking === 'number') cancelAnimationFrame(ticking);
|
21
|
+
ticking = null;
|
22
|
+
};
|
23
|
+
return throttled;
|
24
|
+
}
|
25
|
+
export default rafTrottle;
|
26
|
+
//# sourceMappingURL=rafTrottle.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"rafTrottle.mjs","names":["rafTrottle","callback","ticking","lastArgs","update","context","apply","throttled","_len","arguments","length","args","Array","_key","requestAnimationFrame","cancel","cancelAnimationFrame"],"sources":["../src/rafTrottle.tsx"],"sourcesContent":["function rafTrottle<T extends (...args: any[]) => any>(callback: T) {\n let ticking: number | null = null;\n\n let lastArgs: any;\n\n const update = (context: any) => () => {\n ticking = null;\n callback.apply(context, lastArgs);\n };\n\n const throttled = function (this: any, ...args: any[]) {\n lastArgs = args;\n if (ticking === null) {\n ticking = requestAnimationFrame(update(this));\n }\n };\n\n throttled.cancel = () => {\n if (typeof ticking === 'number') cancelAnimationFrame(ticking);\n ticking = null;\n };\n\n return throttled as any as T;\n}\n\nexport default rafTrottle;\n"],"mappings":"AAAA,SAASA,UAAUA,CAAoCC,QAAW,EAAE;EAClE,IAAIC,OAAsB,GAAG,IAAI;EAEjC,IAAIC,QAAa;EAEjB,IAAMC,MAAM,GAAG,SAATA,MAAMA,CAAIC,OAAY;IAAA,OAAK,YAAM;MACrCH,OAAO,GAAG,IAAI;MACdD,QAAQ,CAACK,KAAK,CAACD,OAAO,EAAEF,QAAQ,CAAC;IACnC,CAAC;EAAA;EAED,IAAMI,SAAS,GAAG,SAAZA,SAASA,CAAA,EAAwC;IAAA,SAAAC,IAAA,GAAAC,SAAA,CAAAC,MAAA,EAAbC,IAAI,OAAAC,KAAA,CAAAJ,IAAA,GAAAK,IAAA,MAAAA,IAAA,GAAAL,IAAA,EAAAK,IAAA;MAAJF,IAAI,CAAAE,IAAA,IAAAJ,SAAA,CAAAI,IAAA;IAAA;IAC5CV,QAAQ,GAAGQ,IAAI;IACf,IAAIT,OAAO,KAAK,IAAI,EAAE;MACpBA,OAAO,GAAGY,qBAAqB,CAACV,MAAM,CAAC,IAAI,CAAC,CAAC;IAC/C;EACF,CAAC;EAEDG,SAAS,CAACQ,MAAM,GAAG,YAAM;IACvB,IAAI,OAAOb,OAAO,KAAK,QAAQ,EAAEc,oBAAoB,CAACd,OAAO,CAAC;IAC9DA,OAAO,GAAG,IAAI;EAChB,CAAC;EAED,OAAOK,SAAS;AAClB;AAEA,eAAeP,UAAU"}
|
@@ -0,0 +1,28 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
4
|
+
value: true
|
5
|
+
});
|
6
|
+
exports["default"] = void 0;
|
7
|
+
function reactToText(node) {
|
8
|
+
if (typeof node === 'string' || typeof node === 'number' || typeof node === 'boolean') {
|
9
|
+
if (Number.isNaN(node)) return '';
|
10
|
+
return node.toString();
|
11
|
+
}
|
12
|
+
if (!node) {
|
13
|
+
return '';
|
14
|
+
}
|
15
|
+
if (Array.isArray(node)) {
|
16
|
+
return node.map(function (entry) {
|
17
|
+
return reactToText(entry);
|
18
|
+
}).join('');
|
19
|
+
}
|
20
|
+
var props = node.props ? node.props : {};
|
21
|
+
if (!props || !props.children) {
|
22
|
+
return '';
|
23
|
+
}
|
24
|
+
return reactToText(props.children);
|
25
|
+
}
|
26
|
+
var _default = reactToText;
|
27
|
+
exports["default"] = _default;
|
28
|
+
//# sourceMappingURL=reactToText.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"reactToText.js","names":["reactToText","node","Number","isNaN","toString","Array","isArray","map","entry","join","props","children","_default","exports"],"sources":["../src/reactToText.ts"],"sourcesContent":["import React from 'react';\n\nfunction reactToText(node: React.ReactNode): string {\n if (typeof node === 'string' || typeof node === 'number' || typeof node === 'boolean') {\n if (Number.isNaN(node)) return '';\n return node.toString();\n }\n if (!node) {\n return '';\n }\n if (Array.isArray(node)) {\n return node.map((entry) => reactToText(entry)).join('');\n }\n\n const props: { children?: React.ReactNode } = (node as any).props ? (node as any).props : {};\n\n if (!props || !props.children) {\n return '';\n }\n\n return reactToText(props.children);\n}\n\nexport default reactToText;\n"],"mappings":";;;;;;AAEA,SAASA,WAAWA,CAACC,IAAqB,EAAU;EAClD,IAAI,OAAOA,IAAI,KAAK,QAAQ,IAAI,OAAOA,IAAI,KAAK,QAAQ,IAAI,OAAOA,IAAI,KAAK,SAAS,EAAE;IACrF,IAAIC,MAAM,CAACC,KAAK,CAACF,IAAI,CAAC,EAAE,OAAO,EAAE;IACjC,OAAOA,IAAI,CAACG,QAAQ,EAAE;EACxB;EACA,IAAI,CAACH,IAAI,EAAE;IACT,OAAO,EAAE;EACX;EACA,IAAII,KAAK,CAACC,OAAO,CAACL,IAAI,CAAC,EAAE;IACvB,OAAOA,IAAI,CAACM,GAAG,CAAC,UAACC,KAAK;MAAA,OAAKR,WAAW,CAACQ,KAAK,CAAC;IAAA,EAAC,CAACC,IAAI,CAAC,EAAE,CAAC;EACzD;EAEA,IAAMC,KAAqC,GAAIT,IAAI,CAASS,KAAK,GAAIT,IAAI,CAASS,KAAK,GAAG,CAAC,CAAC;EAE5F,IAAI,CAACA,KAAK,IAAI,CAACA,KAAK,CAACC,QAAQ,EAAE;IAC7B,OAAO,EAAE;EACX;EAEA,OAAOX,WAAW,CAACU,KAAK,CAACC,QAAQ,CAAC;AACpC;AAAC,IAAAC,QAAA,GAEcZ,WAAW;AAAAa,OAAA,cAAAD,QAAA"}
|
@@ -0,0 +1,21 @@
|
|
1
|
+
function reactToText(node) {
|
2
|
+
if (typeof node === 'string' || typeof node === 'number' || typeof node === 'boolean') {
|
3
|
+
if (Number.isNaN(node)) return '';
|
4
|
+
return node.toString();
|
5
|
+
}
|
6
|
+
if (!node) {
|
7
|
+
return '';
|
8
|
+
}
|
9
|
+
if (Array.isArray(node)) {
|
10
|
+
return node.map(function (entry) {
|
11
|
+
return reactToText(entry);
|
12
|
+
}).join('');
|
13
|
+
}
|
14
|
+
var props = node.props ? node.props : {};
|
15
|
+
if (!props || !props.children) {
|
16
|
+
return '';
|
17
|
+
}
|
18
|
+
return reactToText(props.children);
|
19
|
+
}
|
20
|
+
export default reactToText;
|
21
|
+
//# sourceMappingURL=reactToText.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"reactToText.mjs","names":["reactToText","node","Number","isNaN","toString","Array","isArray","map","entry","join","props","children"],"sources":["../src/reactToText.ts"],"sourcesContent":["import React from 'react';\n\nfunction reactToText(node: React.ReactNode): string {\n if (typeof node === 'string' || typeof node === 'number' || typeof node === 'boolean') {\n if (Number.isNaN(node)) return '';\n return node.toString();\n }\n if (!node) {\n return '';\n }\n if (Array.isArray(node)) {\n return node.map((entry) => reactToText(entry)).join('');\n }\n\n const props: { children?: React.ReactNode } = (node as any).props ? (node as any).props : {};\n\n if (!props || !props.children) {\n return '';\n }\n\n return reactToText(props.children);\n}\n\nexport default reactToText;\n"],"mappings":"AAEA,SAASA,WAAWA,CAACC,IAAqB,EAAU;EAClD,IAAI,OAAOA,IAAI,KAAK,QAAQ,IAAI,OAAOA,IAAI,KAAK,QAAQ,IAAI,OAAOA,IAAI,KAAK,SAAS,EAAE;IACrF,IAAIC,MAAM,CAACC,KAAK,CAACF,IAAI,CAAC,EAAE,OAAO,EAAE;IACjC,OAAOA,IAAI,CAACG,QAAQ,EAAE;EACxB;EACA,IAAI,CAACH,IAAI,EAAE;IACT,OAAO,EAAE;EACX;EACA,IAAII,KAAK,CAACC,OAAO,CAACL,IAAI,CAAC,EAAE;IACvB,OAAOA,IAAI,CAACM,GAAG,CAAC,UAACC,KAAK;MAAA,OAAKR,WAAW,CAACQ,KAAK,CAAC;IAAA,EAAC,CAACC,IAAI,CAAC,EAAE,CAAC;EACzD;EAEA,IAAMC,KAAqC,GAAIT,IAAI,CAASS,KAAK,GAAIT,IAAI,CAASS,KAAK,GAAG,CAAC,CAAC;EAE5F,IAAI,CAACA,KAAK,IAAI,CAACA,KAAK,CAACC,QAAQ,EAAE;IAC7B,OAAO,EAAE;EACX;EAEA,OAAOX,WAAW,CAACU,KAAK,CAACC,QAAQ,CAAC;AACpC;AAEA,eAAeX,WAAW"}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import { MutableRefObject, Ref, RefObject } from 'react';
|
2
|
+
export declare function setRef<T>(ref: Ref<T>, value: T): void;
|
3
|
+
export declare function getRef(ref: RefObject<Element> | Element): Element | null;
|
4
|
+
export declare function useCallbackRef<T>(initialValue: T | null, callback: (newValue: T | null, lastValue: T | null) => void): MutableRefObject<T | null>;
|
5
|
+
export declare function useForkRef<T>(...refs: Ref<T>[]): Ref<T>;
|
6
|
+
export declare function forkRef<T>(...refs: Ref<T>[]): Ref<T>;
|
7
|
+
export type NodeByRef = RefObject<Element> | Element | (() => RefObject<Element> | Element);
|
8
|
+
export declare function getNodeByRef(ref: NodeByRef): Element | null;
|
@@ -0,0 +1,94 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
5
|
+
value: true
|
6
|
+
});
|
7
|
+
exports.forkRef = forkRef;
|
8
|
+
exports.getNodeByRef = getNodeByRef;
|
9
|
+
exports.getRef = getRef;
|
10
|
+
exports.setRef = setRef;
|
11
|
+
exports.useCallbackRef = useCallbackRef;
|
12
|
+
exports.useForkRef = useForkRef;
|
13
|
+
var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
|
14
|
+
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
|
15
|
+
var _react = _interopRequireDefault(require("react"));
|
16
|
+
var _reactDom = require("react-dom");
|
17
|
+
function setRef(ref, value) {
|
18
|
+
if (typeof ref === 'function') {
|
19
|
+
ref(value);
|
20
|
+
} else if (ref !== null && ref !== void 0 && ref.hasOwnProperty('current')) {
|
21
|
+
// @ts-ignore
|
22
|
+
ref['current'] = value;
|
23
|
+
}
|
24
|
+
}
|
25
|
+
function getRef(ref) {
|
26
|
+
if (!ref) return null;
|
27
|
+
return 'current' in ref ? ref.current : ref;
|
28
|
+
}
|
29
|
+
function useCallbackRef(initialValue, callback) {
|
30
|
+
var _React$useState = _react["default"].useState(function () {
|
31
|
+
return {
|
32
|
+
// value
|
33
|
+
value: initialValue,
|
34
|
+
// last callback
|
35
|
+
callback: callback,
|
36
|
+
// "memoized" public interface
|
37
|
+
facade: {
|
38
|
+
get current() {
|
39
|
+
return ref.value;
|
40
|
+
},
|
41
|
+
set current(value) {
|
42
|
+
var last = ref.value;
|
43
|
+
if (last !== value) {
|
44
|
+
ref.value = value;
|
45
|
+
ref.callback(value, last);
|
46
|
+
}
|
47
|
+
}
|
48
|
+
}
|
49
|
+
};
|
50
|
+
}),
|
51
|
+
_React$useState2 = (0, _slicedToArray2["default"])(_React$useState, 1),
|
52
|
+
ref = _React$useState2[0];
|
53
|
+
// update callback
|
54
|
+
ref.callback = callback;
|
55
|
+
return ref.facade;
|
56
|
+
}
|
57
|
+
function useForkRef() {
|
58
|
+
for (var _len = arguments.length, refs = new Array(_len), _key = 0; _key < _len; _key++) {
|
59
|
+
refs[_key] = arguments[_key];
|
60
|
+
}
|
61
|
+
return _react["default"].useCallback(function (refValue) {
|
62
|
+
var uniqueRefs = (0, _toConsumableArray2["default"])(new Set(refs));
|
63
|
+
uniqueRefs.forEach(function (ref) {
|
64
|
+
return setRef(ref, refValue);
|
65
|
+
});
|
66
|
+
}, refs);
|
67
|
+
}
|
68
|
+
function forkRef() {
|
69
|
+
for (var _len2 = arguments.length, refs = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
|
70
|
+
refs[_key2] = arguments[_key2];
|
71
|
+
}
|
72
|
+
if (refs.every(function (ref) {
|
73
|
+
return ref == null;
|
74
|
+
})) {
|
75
|
+
return null;
|
76
|
+
}
|
77
|
+
return function (refValue) {
|
78
|
+
var uniqueRefs = (0, _toConsumableArray2["default"])(new Set(refs));
|
79
|
+
uniqueRefs.forEach(function (ref) {
|
80
|
+
return setRef(ref, refValue);
|
81
|
+
});
|
82
|
+
};
|
83
|
+
}
|
84
|
+
function getNodeByRef(ref) {
|
85
|
+
if (typeof ref === 'function') {
|
86
|
+
ref = ref();
|
87
|
+
}
|
88
|
+
if (!ref) return null;
|
89
|
+
var node = getRef(ref);
|
90
|
+
if (!node) return null;
|
91
|
+
if (node.nodeType === 1) return node;
|
92
|
+
return (0, _reactDom.findDOMNode)(node);
|
93
|
+
}
|
94
|
+
//# sourceMappingURL=ref.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"ref.js","names":["_react","_interopRequireDefault","require","_reactDom","setRef","ref","value","hasOwnProperty","getRef","current","useCallbackRef","initialValue","callback","_React$useState","React","useState","facade","last","_React$useState2","_slicedToArray2","useForkRef","_len","arguments","length","refs","Array","_key","useCallback","refValue","uniqueRefs","_toConsumableArray2","Set","forEach","forkRef","_len2","_key2","every","getNodeByRef","node","nodeType","findDOMNode"],"sources":["../src/ref.ts"],"sourcesContent":["import React, { MutableRefObject, Ref, RefObject } from 'react';\nimport { findDOMNode } from 'react-dom';\n\nexport function setRef<T>(ref: Ref<T>, value: T) {\n if (typeof ref === 'function') {\n ref(value);\n } else if (ref?.hasOwnProperty('current')) {\n // @ts-ignore\n ref['current'] = value;\n }\n}\n\nexport function getRef(ref: RefObject<Element> | Element): Element | null {\n if (!ref) return null;\n return 'current' in ref ? ref.current : ref;\n}\n\nexport function useCallbackRef<T>(\n initialValue: T | null,\n callback: (newValue: T | null, lastValue: T | null) => void,\n): MutableRefObject<T | null> {\n const [ref] = React.useState(() => ({\n // value\n value: initialValue,\n // last callback\n callback,\n // \"memoized\" public interface\n facade: {\n get current() {\n return ref.value;\n },\n set current(value) {\n const last = ref.value;\n if (last !== value) {\n ref.value = value;\n ref.callback(value, last);\n }\n },\n },\n }));\n // update callback\n ref.callback = callback;\n\n return ref.facade;\n}\n\nexport function useForkRef<T>(...refs: Ref<T>[]): Ref<T> {\n return React.useCallback((refValue: any) => {\n const uniqueRefs = [...new Set(refs)];\n uniqueRefs.forEach((ref) => setRef(ref, refValue));\n }, refs);\n}\n\nexport function forkRef<T>(...refs: Ref<T>[]): Ref<T> {\n if (refs.every((ref) => ref == null)) {\n return null;\n }\n return (refValue) => {\n const uniqueRefs = [...new Set(refs)];\n uniqueRefs.forEach((ref) => setRef(ref, refValue));\n };\n}\n\nexport type NodeByRef = RefObject<Element> | Element | (() => RefObject<Element> | Element);\n\nexport function getNodeByRef(ref: NodeByRef): Element | null {\n if (typeof ref === 'function') {\n ref = ref();\n }\n if (!ref) return null;\n\n const node = getRef(ref);\n if (!node) return null;\n if (node.nodeType === 1) return node;\n\n return findDOMNode(node) as Element;\n}\n"],"mappings":";;;;;;;;;;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,SAAA,GAAAD,OAAA;AAEO,SAASE,MAAMA,CAAIC,GAAW,EAAEC,KAAQ,EAAE;EAC/C,IAAI,OAAOD,GAAG,KAAK,UAAU,EAAE;IAC7BA,GAAG,CAACC,KAAK,CAAC;EACZ,CAAC,MAAM,IAAID,GAAG,aAAHA,GAAG,eAAHA,GAAG,CAAEE,cAAc,CAAC,SAAS,CAAC,EAAE;IACzC;IACAF,GAAG,CAAC,SAAS,CAAC,GAAGC,KAAK;EACxB;AACF;AAEO,SAASE,MAAMA,CAACH,GAAiC,EAAkB;EACxE,IAAI,CAACA,GAAG,EAAE,OAAO,IAAI;EACrB,OAAO,SAAS,IAAIA,GAAG,GAAGA,GAAG,CAACI,OAAO,GAAGJ,GAAG;AAC7C;AAEO,SAASK,cAAcA,CAC5BC,YAAsB,EACtBC,QAA2D,EAC/B;EAC5B,IAAAC,eAAA,GAAcC,iBAAK,CAACC,QAAQ,CAAC;MAAA,OAAO;QAClC;QACAT,KAAK,EAAEK,YAAY;QACnB;QACAC,QAAQ,EAARA,QAAQ;QACR;QACAI,MAAM,EAAE;UACN,IAAIP,OAAOA,CAAA,EAAG;YACZ,OAAOJ,GAAG,CAACC,KAAK;UAClB,CAAC;UACD,IAAIG,OAAOA,CAACH,KAAK,EAAE;YACjB,IAAMW,IAAI,GAAGZ,GAAG,CAACC,KAAK;YACtB,IAAIW,IAAI,KAAKX,KAAK,EAAE;cAClBD,GAAG,CAACC,KAAK,GAAGA,KAAK;cACjBD,GAAG,CAACO,QAAQ,CAACN,KAAK,EAAEW,IAAI,CAAC;YAC3B;UACF;QACF;MACF,CAAC;IAAA,CAAC,CAAC;IAAAC,gBAAA,OAAAC,eAAA,aAAAN,eAAA;IAlBIR,GAAG,GAAAa,gBAAA;EAmBV;EACAb,GAAG,CAACO,QAAQ,GAAGA,QAAQ;EAEvB,OAAOP,GAAG,CAACW,MAAM;AACnB;AAEO,SAASI,UAAUA,CAAA,EAA+B;EAAA,SAAAC,IAAA,GAAAC,SAAA,CAAAC,MAAA,EAAxBC,IAAI,OAAAC,KAAA,CAAAJ,IAAA,GAAAK,IAAA,MAAAA,IAAA,GAAAL,IAAA,EAAAK,IAAA;IAAJF,IAAI,CAAAE,IAAA,IAAAJ,SAAA,CAAAI,IAAA;EAAA;EACnC,OAAOZ,iBAAK,CAACa,WAAW,CAAC,UAACC,QAAa,EAAK;IAC1C,IAAMC,UAAU,OAAAC,mBAAA,aAAO,IAAIC,GAAG,CAACP,IAAI,CAAC,CAAC;IACrCK,UAAU,CAACG,OAAO,CAAC,UAAC3B,GAAG;MAAA,OAAKD,MAAM,CAACC,GAAG,EAAEuB,QAAQ,CAAC;IAAA,EAAC;EACpD,CAAC,EAAEJ,IAAI,CAAC;AACV;AAEO,SAASS,OAAOA,CAAA,EAA+B;EAAA,SAAAC,KAAA,GAAAZ,SAAA,CAAAC,MAAA,EAAxBC,IAAI,OAAAC,KAAA,CAAAS,KAAA,GAAAC,KAAA,MAAAA,KAAA,GAAAD,KAAA,EAAAC,KAAA;IAAJX,IAAI,CAAAW,KAAA,IAAAb,SAAA,CAAAa,KAAA;EAAA;EAChC,IAAIX,IAAI,CAACY,KAAK,CAAC,UAAC/B,GAAG;IAAA,OAAKA,GAAG,IAAI,IAAI;EAAA,EAAC,EAAE;IACpC,OAAO,IAAI;EACb;EACA,OAAO,UAACuB,QAAQ,EAAK;IACnB,IAAMC,UAAU,OAAAC,mBAAA,aAAO,IAAIC,GAAG,CAACP,IAAI,CAAC,CAAC;IACrCK,UAAU,CAACG,OAAO,CAAC,UAAC3B,GAAG;MAAA,OAAKD,MAAM,CAACC,GAAG,EAAEuB,QAAQ,CAAC;IAAA,EAAC;EACpD,CAAC;AACH;AAIO,SAASS,YAAYA,CAAChC,GAAc,EAAkB;EAC3D,IAAI,OAAOA,GAAG,KAAK,UAAU,EAAE;IAC7BA,GAAG,GAAGA,GAAG,EAAE;EACb;EACA,IAAI,CAACA,GAAG,EAAE,OAAO,IAAI;EAErB,IAAMiC,IAAI,GAAG9B,MAAM,CAACH,GAAG,CAAC;EACxB,IAAI,CAACiC,IAAI,EAAE,OAAO,IAAI;EACtB,IAAIA,IAAI,CAACC,QAAQ,KAAK,CAAC,EAAE,OAAOD,IAAI;EAEpC,OAAO,IAAAE,qBAAW,EAACF,IAAI,CAAC;AAC1B"}
|
@@ -0,0 +1,82 @@
|
|
1
|
+
import _toConsumableArray from "@babel/runtime/helpers/toConsumableArray";
|
2
|
+
import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
|
3
|
+
import React from 'react';
|
4
|
+
import { findDOMNode } from 'react-dom';
|
5
|
+
export function setRef(ref, value) {
|
6
|
+
if (typeof ref === 'function') {
|
7
|
+
ref(value);
|
8
|
+
} else if (ref !== null && ref !== void 0 && ref.hasOwnProperty('current')) {
|
9
|
+
// @ts-ignore
|
10
|
+
ref['current'] = value;
|
11
|
+
}
|
12
|
+
}
|
13
|
+
export function getRef(ref) {
|
14
|
+
if (!ref) return null;
|
15
|
+
return 'current' in ref ? ref.current : ref;
|
16
|
+
}
|
17
|
+
export function useCallbackRef(initialValue, callback) {
|
18
|
+
var _React$useState = React.useState(function () {
|
19
|
+
return {
|
20
|
+
// value
|
21
|
+
value: initialValue,
|
22
|
+
// last callback
|
23
|
+
callback: callback,
|
24
|
+
// "memoized" public interface
|
25
|
+
facade: {
|
26
|
+
get current() {
|
27
|
+
return ref.value;
|
28
|
+
},
|
29
|
+
set current(value) {
|
30
|
+
var last = ref.value;
|
31
|
+
if (last !== value) {
|
32
|
+
ref.value = value;
|
33
|
+
ref.callback(value, last);
|
34
|
+
}
|
35
|
+
}
|
36
|
+
}
|
37
|
+
};
|
38
|
+
}),
|
39
|
+
_React$useState2 = _slicedToArray(_React$useState, 1),
|
40
|
+
ref = _React$useState2[0];
|
41
|
+
// update callback
|
42
|
+
ref.callback = callback;
|
43
|
+
return ref.facade;
|
44
|
+
}
|
45
|
+
export function useForkRef() {
|
46
|
+
for (var _len = arguments.length, refs = new Array(_len), _key = 0; _key < _len; _key++) {
|
47
|
+
refs[_key] = arguments[_key];
|
48
|
+
}
|
49
|
+
return React.useCallback(function (refValue) {
|
50
|
+
var uniqueRefs = _toConsumableArray(new Set(refs));
|
51
|
+
uniqueRefs.forEach(function (ref) {
|
52
|
+
return setRef(ref, refValue);
|
53
|
+
});
|
54
|
+
}, refs);
|
55
|
+
}
|
56
|
+
export function forkRef() {
|
57
|
+
for (var _len2 = arguments.length, refs = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
|
58
|
+
refs[_key2] = arguments[_key2];
|
59
|
+
}
|
60
|
+
if (refs.every(function (ref) {
|
61
|
+
return ref == null;
|
62
|
+
})) {
|
63
|
+
return null;
|
64
|
+
}
|
65
|
+
return function (refValue) {
|
66
|
+
var uniqueRefs = _toConsumableArray(new Set(refs));
|
67
|
+
uniqueRefs.forEach(function (ref) {
|
68
|
+
return setRef(ref, refValue);
|
69
|
+
});
|
70
|
+
};
|
71
|
+
}
|
72
|
+
export function getNodeByRef(ref) {
|
73
|
+
if (typeof ref === 'function') {
|
74
|
+
ref = ref();
|
75
|
+
}
|
76
|
+
if (!ref) return null;
|
77
|
+
var node = getRef(ref);
|
78
|
+
if (!node) return null;
|
79
|
+
if (node.nodeType === 1) return node;
|
80
|
+
return findDOMNode(node);
|
81
|
+
}
|
82
|
+
//# sourceMappingURL=ref.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"ref.mjs","names":["React","findDOMNode","setRef","ref","value","hasOwnProperty","getRef","current","useCallbackRef","initialValue","callback","_React$useState","useState","facade","last","_React$useState2","_slicedToArray","useForkRef","_len","arguments","length","refs","Array","_key","useCallback","refValue","uniqueRefs","_toConsumableArray","Set","forEach","forkRef","_len2","_key2","every","getNodeByRef","node","nodeType"],"sources":["../src/ref.ts"],"sourcesContent":["import React, { MutableRefObject, Ref, RefObject } from 'react';\nimport { findDOMNode } from 'react-dom';\n\nexport function setRef<T>(ref: Ref<T>, value: T) {\n if (typeof ref === 'function') {\n ref(value);\n } else if (ref?.hasOwnProperty('current')) {\n // @ts-ignore\n ref['current'] = value;\n }\n}\n\nexport function getRef(ref: RefObject<Element> | Element): Element | null {\n if (!ref) return null;\n return 'current' in ref ? ref.current : ref;\n}\n\nexport function useCallbackRef<T>(\n initialValue: T | null,\n callback: (newValue: T | null, lastValue: T | null) => void,\n): MutableRefObject<T | null> {\n const [ref] = React.useState(() => ({\n // value\n value: initialValue,\n // last callback\n callback,\n // \"memoized\" public interface\n facade: {\n get current() {\n return ref.value;\n },\n set current(value) {\n const last = ref.value;\n if (last !== value) {\n ref.value = value;\n ref.callback(value, last);\n }\n },\n },\n }));\n // update callback\n ref.callback = callback;\n\n return ref.facade;\n}\n\nexport function useForkRef<T>(...refs: Ref<T>[]): Ref<T> {\n return React.useCallback((refValue: any) => {\n const uniqueRefs = [...new Set(refs)];\n uniqueRefs.forEach((ref) => setRef(ref, refValue));\n }, refs);\n}\n\nexport function forkRef<T>(...refs: Ref<T>[]): Ref<T> {\n if (refs.every((ref) => ref == null)) {\n return null;\n }\n return (refValue) => {\n const uniqueRefs = [...new Set(refs)];\n uniqueRefs.forEach((ref) => setRef(ref, refValue));\n };\n}\n\nexport type NodeByRef = RefObject<Element> | Element | (() => RefObject<Element> | Element);\n\nexport function getNodeByRef(ref: NodeByRef): Element | null {\n if (typeof ref === 'function') {\n ref = ref();\n }\n if (!ref) return null;\n\n const node = getRef(ref);\n if (!node) return null;\n if (node.nodeType === 1) return node;\n\n return findDOMNode(node) as Element;\n}\n"],"mappings":";;AAAA,OAAOA,KAAK,MAA4C,OAAO;AAC/D,SAASC,WAAW,QAAQ,WAAW;AAEvC,OAAO,SAASC,MAAMA,CAAIC,GAAW,EAAEC,KAAQ,EAAE;EAC/C,IAAI,OAAOD,GAAG,KAAK,UAAU,EAAE;IAC7BA,GAAG,CAACC,KAAK,CAAC;EACZ,CAAC,MAAM,IAAID,GAAG,aAAHA,GAAG,eAAHA,GAAG,CAAEE,cAAc,CAAC,SAAS,CAAC,EAAE;IACzC;IACAF,GAAG,CAAC,SAAS,CAAC,GAAGC,KAAK;EACxB;AACF;AAEA,OAAO,SAASE,MAAMA,CAACH,GAAiC,EAAkB;EACxE,IAAI,CAACA,GAAG,EAAE,OAAO,IAAI;EACrB,OAAO,SAAS,IAAIA,GAAG,GAAGA,GAAG,CAACI,OAAO,GAAGJ,GAAG;AAC7C;AAEA,OAAO,SAASK,cAAcA,CAC5BC,YAAsB,EACtBC,QAA2D,EAC/B;EAC5B,IAAAC,eAAA,GAAcX,KAAK,CAACY,QAAQ,CAAC;MAAA,OAAO;QAClC;QACAR,KAAK,EAAEK,YAAY;QACnB;QACAC,QAAQ,EAARA,QAAQ;QACR;QACAG,MAAM,EAAE;UACN,IAAIN,OAAOA,CAAA,EAAG;YACZ,OAAOJ,GAAG,CAACC,KAAK;UAClB,CAAC;UACD,IAAIG,OAAOA,CAACH,KAAK,EAAE;YACjB,IAAMU,IAAI,GAAGX,GAAG,CAACC,KAAK;YACtB,IAAIU,IAAI,KAAKV,KAAK,EAAE;cAClBD,GAAG,CAACC,KAAK,GAAGA,KAAK;cACjBD,GAAG,CAACO,QAAQ,CAACN,KAAK,EAAEU,IAAI,CAAC;YAC3B;UACF;QACF;MACF,CAAC;IAAA,CAAC,CAAC;IAAAC,gBAAA,GAAAC,cAAA,CAAAL,eAAA;IAlBIR,GAAG,GAAAY,gBAAA;EAmBV;EACAZ,GAAG,CAACO,QAAQ,GAAGA,QAAQ;EAEvB,OAAOP,GAAG,CAACU,MAAM;AACnB;AAEA,OAAO,SAASI,UAAUA,CAAA,EAA+B;EAAA,SAAAC,IAAA,GAAAC,SAAA,CAAAC,MAAA,EAAxBC,IAAI,OAAAC,KAAA,CAAAJ,IAAA,GAAAK,IAAA,MAAAA,IAAA,GAAAL,IAAA,EAAAK,IAAA;IAAJF,IAAI,CAAAE,IAAA,IAAAJ,SAAA,CAAAI,IAAA;EAAA;EACnC,OAAOvB,KAAK,CAACwB,WAAW,CAAC,UAACC,QAAa,EAAK;IAC1C,IAAMC,UAAU,GAAAC,kBAAA,CAAO,IAAIC,GAAG,CAACP,IAAI,CAAC,CAAC;IACrCK,UAAU,CAACG,OAAO,CAAC,UAAC1B,GAAG;MAAA,OAAKD,MAAM,CAACC,GAAG,EAAEsB,QAAQ,CAAC;IAAA,EAAC;EACpD,CAAC,EAAEJ,IAAI,CAAC;AACV;AAEA,OAAO,SAASS,OAAOA,CAAA,EAA+B;EAAA,SAAAC,KAAA,GAAAZ,SAAA,CAAAC,MAAA,EAAxBC,IAAI,OAAAC,KAAA,CAAAS,KAAA,GAAAC,KAAA,MAAAA,KAAA,GAAAD,KAAA,EAAAC,KAAA;IAAJX,IAAI,CAAAW,KAAA,IAAAb,SAAA,CAAAa,KAAA;EAAA;EAChC,IAAIX,IAAI,CAACY,KAAK,CAAC,UAAC9B,GAAG;IAAA,OAAKA,GAAG,IAAI,IAAI;EAAA,EAAC,EAAE;IACpC,OAAO,IAAI;EACb;EACA,OAAO,UAACsB,QAAQ,EAAK;IACnB,IAAMC,UAAU,GAAAC,kBAAA,CAAO,IAAIC,GAAG,CAACP,IAAI,CAAC,CAAC;IACrCK,UAAU,CAACG,OAAO,CAAC,UAAC1B,GAAG;MAAA,OAAKD,MAAM,CAACC,GAAG,EAAEsB,QAAQ,CAAC;IAAA,EAAC;EACpD,CAAC;AACH;AAIA,OAAO,SAASS,YAAYA,CAAC/B,GAAc,EAAkB;EAC3D,IAAI,OAAOA,GAAG,KAAK,UAAU,EAAE;IAC7BA,GAAG,GAAGA,GAAG,EAAE;EACb;EACA,IAAI,CAACA,GAAG,EAAE,OAAO,IAAI;EAErB,IAAMgC,IAAI,GAAG7B,MAAM,CAACH,GAAG,CAAC;EACxB,IAAI,CAACgC,IAAI,EAAE,OAAO,IAAI;EACtB,IAAIA,IAAI,CAACC,QAAQ,KAAK,CAAC,EAAE,OAAOD,IAAI;EAEpC,OAAOlC,WAAW,CAACkC,IAAI,CAAC;AAC1B"}
|