@salutejs/plasma-new-hope 0.110.0-canary.1307.10059399396.0 → 0.110.1-canary.1233.10062283292.0
Sign up to get free protection for your applications and to get access to all the features.
- package/cjs/components/Accordion/ui/AccordionItem/AccordionItem.js.map +1 -1
- package/cjs/components/Button/Button.styles.js.map +1 -1
- package/cjs/components/Chip/Chip.tokens.js +2 -0
- package/cjs/components/Chip/Chip.tokens.js.map +1 -1
- package/cjs/components/Combobox/Combobox.js +2 -2
- package/cjs/components/Combobox/Combobox.js.map +1 -1
- package/cjs/components/Combobox/hooks/useKeyNavigation.js.map +1 -0
- package/cjs/components/Combobox/ui/ComboboxTarget/ComboboxTarget.js +1 -1
- package/cjs/components/Combobox/ui/ComboboxTarget/ComboboxTarget.js.map +1 -1
- package/cjs/components/Combobox/utils/index.js +103 -0
- package/cjs/components/Combobox/utils/index.js.map +1 -1
- package/cjs/components/Dropdown/Dropdown.tokens.js +32 -18
- package/cjs/components/Dropdown/Dropdown.tokens.js.map +1 -1
- package/cjs/components/Dropdown/hooks/useKeyboardNavigation.js +63 -24
- package/cjs/components/Dropdown/hooks/useKeyboardNavigation.js.map +1 -1
- package/cjs/components/Pagination/Pagination.css +56 -48
- package/cjs/components/Pagination/Pagination.js +12 -5
- package/cjs/components/Pagination/Pagination.js.map +1 -1
- package/cjs/components/Pagination/Pagination.styles.js.map +1 -1
- package/cjs/components/Pagination/Pagination.tokens.js +9 -11
- package/cjs/components/Pagination/Pagination.tokens.js.map +1 -1
- package/cjs/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.css +74 -66
- package/cjs/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.js +20 -26
- package/cjs/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.js.map +1 -1
- package/cjs/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.styles.js +2 -22
- package/cjs/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.styles.js.map +1 -1
- package/cjs/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.styles_187mk6b.css +3 -0
- package/cjs/components/Select/Select.css +71 -62
- package/cjs/components/Select/Select.js +265 -193
- package/cjs/components/Select/Select.js.map +1 -1
- package/cjs/components/Select/Select.styles.js +51 -36
- package/cjs/components/Select/Select.styles.js.map +1 -1
- package/cjs/components/Select/Select.styles_zx0ztg.css +5 -0
- package/cjs/components/Select/Select.tokens.js +57 -166
- package/cjs/components/Select/Select.tokens.js.map +1 -1
- package/cjs/components/Select/hooks/useKeyboardNavigation.js +353 -0
- package/cjs/components/Select/hooks/useKeyboardNavigation.js.map +1 -0
- package/cjs/components/Select/hooks/usePathMaps.js +37 -0
- package/cjs/components/Select/hooks/usePathMaps.js.map +1 -0
- package/cjs/components/Select/reducers/focusedChipIndexReducer.js +39 -0
- package/cjs/components/Select/reducers/focusedChipIndexReducer.js.map +1 -0
- package/cjs/components/Select/reducers/focusedPathReducer.js +37 -0
- package/cjs/components/Select/reducers/focusedPathReducer.js.map +1 -0
- package/cjs/components/Select/reducers/pathReducer.js +41 -0
- package/cjs/components/Select/reducers/pathReducer.js.map +1 -0
- package/cjs/components/Select/ui/Inner/Inner.css +110 -0
- package/cjs/components/Select/ui/Inner/Inner.js +82 -0
- package/cjs/components/Select/ui/Inner/Inner.js.map +1 -0
- package/cjs/components/Select/ui/Inner/ui/Item/Item.css +110 -0
- package/cjs/components/Select/ui/Inner/ui/Item/Item.js +97 -0
- package/cjs/components/Select/ui/Inner/ui/Item/Item.js.map +1 -0
- package/cjs/components/Select/ui/Inner/ui/Item/Item.styles.js +110 -0
- package/cjs/components/Select/ui/Inner/ui/Item/Item.styles.js.map +1 -0
- package/cjs/components/Select/ui/Inner/ui/Item/Item.styles_y3jg1m.css +9 -0
- package/cjs/components/Select/ui/Target/Target.css +66 -0
- package/cjs/components/Select/ui/Target/Target.js +63 -0
- package/cjs/components/Select/ui/Target/Target.js.map +1 -0
- package/cjs/components/Select/ui/Target/ui/Button/Button.css +33 -0
- package/cjs/components/Select/ui/Target/ui/Button/Button.js +59 -0
- package/cjs/components/Select/ui/Target/ui/Button/Button.js.map +1 -0
- package/cjs/components/Select/ui/Target/ui/Button/Button.styles.js +52 -0
- package/cjs/components/Select/ui/Target/ui/Button/Button.styles.js.map +1 -0
- package/cjs/components/Select/ui/Target/ui/Button/Button.styles_nn6pg.css +5 -0
- package/{es/components/Select/ui/SelectTarget/SelectTarget.css → cjs/components/Select/ui/Target/ui/Textfield/Textfield.css} +13 -7
- package/cjs/components/Select/ui/Target/ui/Textfield/Textfield.js +113 -0
- package/cjs/components/Select/ui/Target/ui/Textfield/Textfield.js.map +1 -0
- package/cjs/components/Select/ui/Target/ui/Textfield/Textfield.styles.js +113 -0
- package/cjs/components/Select/ui/Target/ui/Textfield/Textfield.styles.js.map +1 -0
- package/cjs/components/Select/ui/Target/ui/Textfield/Textfield.styles_16d02b7.css +12 -0
- package/cjs/components/Select/ui/{SelectChip/SelectChip.css → Target/ui/Textfield/ui/Chip/Chip.css} +1 -1
- package/cjs/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.js +36 -0
- package/cjs/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.js.map +1 -0
- package/cjs/components/Select/ui/{SelectChip/SelectChip.styles.js → Target/ui/Textfield/ui/Chip/Chip.styles.js} +5 -8
- package/cjs/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.styles.js.map +1 -0
- package/cjs/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.styles_1a752pa.css +1 -0
- package/cjs/components/Select/utils/getButtonLabel.js +47 -0
- package/cjs/components/Select/utils/getButtonLabel.js.map +1 -0
- package/cjs/components/Select/utils/getCorrectHeight.js +13 -0
- package/cjs/components/Select/utils/getCorrectHeight.js.map +1 -0
- package/cjs/components/Select/utils/initialItemsTransform.js +19 -0
- package/cjs/components/Select/utils/initialItemsTransform.js.map +1 -0
- package/cjs/components/Select/utils/sizeToIconSize.js +11 -0
- package/cjs/components/Select/utils/sizeToIconSize.js.map +1 -0
- package/cjs/components/Select/utils/updateAncestors.js +34 -0
- package/cjs/components/Select/utils/updateAncestors.js.map +1 -0
- package/cjs/components/Select/utils/updateDescendants.js +18 -0
- package/cjs/components/Select/utils/updateDescendants.js.map +1 -0
- package/cjs/components/Select/utils/updateSingleAncestors.js +15 -0
- package/cjs/components/Select/utils/updateSingleAncestors.js.map +1 -0
- package/cjs/components/_Icon/Icon.assets/DisclosureDownCentered.js +33 -0
- package/cjs/components/_Icon/Icon.assets/DisclosureDownCentered.js.map +1 -0
- package/cjs/components/_Icon/Icon.assets/DisclosureRightCentered.js +31 -0
- package/cjs/components/_Icon/Icon.assets/DisclosureRightCentered.js.map +1 -0
- package/cjs/components/_Icon/Icons/IconDisclosureDownCentered.js +23 -0
- package/cjs/components/_Icon/Icons/IconDisclosureDownCentered.js.map +1 -0
- package/cjs/components/_Icon/Icons/IconDisclosureRightCentered.js +23 -0
- package/cjs/components/_Icon/Icons/IconDisclosureRightCentered.js.map +1 -0
- package/cjs/engines/common.js.map +1 -1
- package/cjs/index.css +42 -27
- package/cjs/index.js +2 -18
- package/cjs/index.js.map +1 -1
- package/cjs/utils/index.js.map +1 -1
- package/cjs/utils/isEmpty.js +49 -0
- package/cjs/utils/isEmpty.js.map +1 -0
- package/emotion/cjs/components/Button/Button.styles.js +9 -9
- package/emotion/cjs/components/Chip/Chip.tokens.js +2 -0
- package/emotion/cjs/components/Combobox/Combobox.js +6 -6
- package/emotion/cjs/components/Combobox/hooks/index.js +14 -1
- package/emotion/cjs/components/Combobox/ui/ComboboxTarget/ComboboxTarget.js +4 -5
- package/emotion/cjs/components/Combobox/utils/index.js +105 -1
- package/emotion/cjs/components/Dropdown/Dropdown.tokens.js +32 -18
- package/emotion/cjs/components/Dropdown/hooks/useKeyboardNavigation.js +63 -24
- package/emotion/cjs/components/Pagination/Pagination.js +12 -5
- package/emotion/cjs/components/Pagination/Pagination.styles.js +8 -8
- package/emotion/cjs/components/Pagination/Pagination.tokens.js +9 -11
- package/emotion/cjs/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.js +22 -35
- package/emotion/cjs/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.styles.js +6 -12
- package/emotion/cjs/components/Select/Select.js +255 -187
- package/emotion/cjs/components/Select/Select.styles.js +29 -25
- package/emotion/cjs/components/Select/Select.tokens.js +80 -167
- package/emotion/cjs/components/Select/hooks/useKeyboardNavigation.js +355 -0
- package/emotion/cjs/components/Select/hooks/usePathMaps.js +33 -0
- package/emotion/cjs/components/Select/index.js +1 -25
- package/emotion/cjs/components/Select/reducers/focusedChipIndexReducer.js +38 -0
- package/emotion/cjs/components/Select/reducers/focusedPathReducer.js +40 -0
- package/emotion/cjs/components/Select/reducers/index.js +38 -0
- package/emotion/cjs/components/Select/reducers/pathReducer.js +44 -0
- package/emotion/cjs/components/Select/ui/InfiniteLoader/InfiniteLoader.js +18 -0
- package/emotion/cjs/components/Select/ui/InfiniteLoader/InfiniteLoader.styles.js +26 -0
- package/emotion/cjs/components/Select/ui/Inner/Inner.js +80 -0
- package/emotion/cjs/components/Select/ui/Inner/ui/Item/Item.js +95 -0
- package/emotion/cjs/components/Select/ui/Inner/ui/Item/Item.styles.js +92 -0
- package/emotion/cjs/components/Select/ui/Inner/ui/index.js +16 -0
- package/emotion/cjs/components/Select/ui/Target/Target.js +61 -0
- package/emotion/cjs/components/Select/ui/Target/ui/Button/Button.js +57 -0
- package/emotion/cjs/components/Select/ui/Target/ui/Button/Button.styles.js +44 -0
- package/emotion/cjs/components/Select/ui/Target/ui/Textfield/Textfield.js +111 -0
- package/emotion/cjs/components/Select/ui/Target/ui/Textfield/Textfield.styles.js +84 -0
- package/{styled-components/cjs/components/Select/ui/SelectChip/SelectChip.js → emotion/cjs/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.js} +24 -27
- package/emotion/cjs/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.styles.js +22 -0
- package/emotion/cjs/components/Select/ui/Target/ui/Textfield/ui/index.js +16 -0
- package/emotion/cjs/components/Select/ui/Target/ui/index.js +27 -0
- package/emotion/cjs/components/Select/ui/index.js +33 -72
- package/emotion/cjs/components/Select/utils/getButtonLabel.js +43 -0
- package/emotion/cjs/components/Select/utils/getCorrectHeight.js +12 -0
- package/emotion/cjs/components/Select/utils/index.js +44 -102
- package/emotion/cjs/components/Select/utils/initialItemsTransform.js +18 -0
- package/emotion/cjs/components/Select/utils/sizeToIconSize.js +10 -0
- package/emotion/cjs/components/Select/utils/updateAncestors.js +33 -0
- package/emotion/cjs/components/Select/utils/updateDescendants.js +17 -0
- package/emotion/cjs/components/Select/utils/updateSingleAncestors.js +14 -0
- package/emotion/cjs/components/_Icon/Icon.assets/DisclosureDownCentered.js +32 -0
- package/emotion/cjs/components/_Icon/Icon.assets/DisclosureRightCentered.js +30 -0
- package/emotion/cjs/components/_Icon/Icons/IconDisclosureDownCentered.js +22 -0
- package/emotion/cjs/components/_Icon/Icons/IconDisclosureRightCentered.js +22 -0
- package/emotion/cjs/components/_Icon/index.js +14 -0
- package/emotion/cjs/examples/_helpers.js +1 -1
- package/emotion/cjs/examples/plasma_b2c/components/Pagination/Pagination.config.js +12 -12
- package/emotion/cjs/examples/plasma_b2c/components/Pagination/Pagination.stories.tsx +1 -0
- package/emotion/cjs/examples/plasma_b2c/components/Select/Select.config.js +21 -11
- package/emotion/cjs/examples/plasma_b2c/components/Select/Select.js +5 -15
- package/emotion/cjs/examples/plasma_b2c/components/Select/Select.stories.tsx +753 -204
- package/emotion/cjs/examples/plasma_b2c/components/Select/style.css +36 -0
- package/emotion/cjs/examples/plasma_web/components/Pagination/Pagination.config.js +12 -12
- package/emotion/cjs/examples/plasma_web/components/Select/Select.config.js +21 -11
- package/emotion/cjs/examples/plasma_web/components/Select/Select.js +5 -15
- package/emotion/cjs/examples/plasma_web/components/Select/Select.stories.tsx +753 -200
- package/emotion/cjs/examples/plasma_web/components/Select/style.css +37 -0
- package/emotion/cjs/utils/index.js +9 -1
- package/emotion/cjs/utils/isEmpty.js +47 -0
- package/emotion/es/components/Button/Button.styles.js +9 -9
- package/emotion/es/components/Chip/Chip.tokens.js +2 -0
- package/emotion/es/components/Combobox/Combobox.js +2 -2
- package/emotion/es/components/Combobox/hooks/index.js +2 -1
- package/emotion/es/components/Combobox/ui/ComboboxTarget/ComboboxTarget.js +1 -2
- package/emotion/es/components/Combobox/utils/index.js +105 -1
- package/emotion/es/components/Dropdown/Dropdown.tokens.js +32 -18
- package/emotion/es/components/Dropdown/hooks/useKeyboardNavigation.js +63 -24
- package/emotion/es/components/Pagination/Pagination.js +12 -5
- package/emotion/es/components/Pagination/Pagination.styles.js +8 -8
- package/emotion/es/components/Pagination/Pagination.tokens.js +9 -11
- package/emotion/es/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.js +22 -33
- package/emotion/es/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.styles.js +6 -12
- package/emotion/es/components/Select/Select.js +252 -185
- package/emotion/es/components/Select/Select.styles.js +29 -25
- package/emotion/es/components/Select/Select.tokens.js +79 -166
- package/emotion/es/components/Select/hooks/useKeyboardNavigation.js +349 -0
- package/emotion/es/components/Select/hooks/usePathMaps.js +27 -0
- package/emotion/es/components/Select/index.js +1 -2
- package/emotion/es/components/Select/reducers/focusedChipIndexReducer.js +32 -0
- package/emotion/es/components/Select/reducers/focusedPathReducer.js +34 -0
- package/emotion/es/components/Select/reducers/index.js +3 -0
- package/emotion/es/components/Select/reducers/pathReducer.js +38 -0
- package/emotion/es/components/Select/ui/InfiniteLoader/InfiniteLoader.js +11 -0
- package/emotion/es/components/Select/ui/InfiniteLoader/InfiniteLoader.styles.js +19 -0
- package/emotion/es/components/Select/ui/Inner/Inner.js +73 -0
- package/emotion/es/components/Select/ui/Inner/ui/Item/Item.js +86 -0
- package/emotion/es/components/Select/ui/Inner/ui/Item/Item.styles.js +85 -0
- package/emotion/es/components/Select/ui/Inner/ui/index.js +1 -0
- package/emotion/es/components/Select/ui/Target/Target.js +54 -0
- package/emotion/es/components/Select/ui/Target/ui/Button/Button.js +50 -0
- package/emotion/es/components/Select/ui/Target/ui/Button/Button.styles.js +37 -0
- package/emotion/es/components/Select/ui/Target/ui/Textfield/Textfield.js +104 -0
- package/emotion/es/components/Select/ui/Target/ui/Textfield/Textfield.styles.js +77 -0
- package/emotion/es/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.js +28 -0
- package/emotion/es/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.styles.js +15 -0
- package/emotion/es/components/Select/ui/Target/ui/Textfield/ui/index.js +1 -0
- package/emotion/es/components/Select/ui/Target/ui/index.js +2 -0
- package/emotion/es/components/Select/ui/index.js +3 -6
- package/emotion/es/components/Select/utils/getButtonLabel.js +37 -0
- package/emotion/es/components/Select/utils/getCorrectHeight.js +6 -0
- package/emotion/es/components/Select/utils/index.js +7 -106
- package/emotion/es/components/Select/utils/initialItemsTransform.js +12 -0
- package/emotion/es/components/Select/utils/sizeToIconSize.js +4 -0
- package/emotion/es/components/Select/utils/updateAncestors.js +27 -0
- package/emotion/es/components/Select/utils/updateDescendants.js +11 -0
- package/emotion/es/components/Select/utils/updateSingleAncestors.js +8 -0
- package/emotion/es/components/_Icon/Icon.assets/DisclosureDownCentered.js +25 -0
- package/emotion/es/components/_Icon/Icon.assets/DisclosureRightCentered.js +23 -0
- package/emotion/es/components/_Icon/Icons/IconDisclosureDownCentered.js +15 -0
- package/emotion/es/components/_Icon/Icons/IconDisclosureRightCentered.js +15 -0
- package/emotion/es/components/_Icon/index.js +2 -0
- package/emotion/es/examples/_helpers.js +1 -1
- package/emotion/es/examples/plasma_b2c/components/Pagination/Pagination.config.js +12 -12
- package/emotion/es/examples/plasma_b2c/components/Pagination/Pagination.stories.tsx +1 -0
- package/emotion/es/examples/plasma_b2c/components/Select/Select.config.js +21 -11
- package/emotion/es/examples/plasma_b2c/components/Select/Select.js +3 -12
- package/emotion/es/examples/plasma_b2c/components/Select/Select.stories.tsx +753 -204
- package/emotion/es/examples/plasma_b2c/components/Select/style.css +36 -0
- package/emotion/es/examples/plasma_web/components/Pagination/Pagination.config.js +12 -12
- package/emotion/es/examples/plasma_web/components/Select/Select.config.js +21 -11
- package/emotion/es/examples/plasma_web/components/Select/Select.js +3 -12
- package/emotion/es/examples/plasma_web/components/Select/Select.stories.tsx +753 -200
- package/emotion/es/examples/plasma_web/components/Select/style.css +37 -0
- package/emotion/es/utils/index.js +1 -0
- package/emotion/es/utils/isEmpty.js +42 -0
- package/es/components/Accordion/ui/AccordionItem/AccordionItem.js.map +1 -1
- package/es/components/Button/Button.styles.js.map +1 -1
- package/es/components/Chip/Chip.tokens.js +2 -0
- package/es/components/Chip/Chip.tokens.js.map +1 -1
- package/es/components/Combobox/Combobox.js +2 -2
- package/es/components/Combobox/Combobox.js.map +1 -1
- package/es/components/Combobox/hooks/useKeyNavigation.js.map +1 -0
- package/es/components/Combobox/ui/ComboboxTarget/ComboboxTarget.js +1 -1
- package/es/components/Combobox/ui/ComboboxTarget/ComboboxTarget.js.map +1 -1
- package/es/components/Combobox/utils/index.js +102 -3
- package/es/components/Combobox/utils/index.js.map +1 -1
- package/es/components/Dropdown/Dropdown.tokens.js +32 -18
- package/es/components/Dropdown/Dropdown.tokens.js.map +1 -1
- package/es/components/Dropdown/hooks/useKeyboardNavigation.js +63 -24
- package/es/components/Dropdown/hooks/useKeyboardNavigation.js.map +1 -1
- package/es/components/Pagination/Pagination.css +56 -48
- package/es/components/Pagination/Pagination.js +12 -5
- package/es/components/Pagination/Pagination.js.map +1 -1
- package/es/components/Pagination/Pagination.styles.js.map +1 -1
- package/es/components/Pagination/Pagination.tokens.js +9 -11
- package/es/components/Pagination/Pagination.tokens.js.map +1 -1
- package/es/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.css +74 -66
- package/es/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.js +23 -29
- package/es/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.js.map +1 -1
- package/es/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.styles.js +3 -21
- package/es/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.styles.js.map +1 -1
- package/es/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.styles_187mk6b.css +3 -0
- package/es/components/Select/Select.css +71 -62
- package/es/components/Select/Select.js +264 -193
- package/es/components/Select/Select.js.map +1 -1
- package/es/components/Select/Select.styles.js +48 -34
- package/es/components/Select/Select.styles.js.map +1 -1
- package/es/components/Select/Select.styles_zx0ztg.css +5 -0
- package/es/components/Select/Select.tokens.js +57 -166
- package/es/components/Select/Select.tokens.js.map +1 -1
- package/es/components/Select/hooks/useKeyboardNavigation.js +348 -0
- package/es/components/Select/hooks/useKeyboardNavigation.js.map +1 -0
- package/es/components/Select/hooks/usePathMaps.js +33 -0
- package/es/components/Select/hooks/usePathMaps.js.map +1 -0
- package/es/components/Select/reducers/focusedChipIndexReducer.js +35 -0
- package/es/components/Select/reducers/focusedChipIndexReducer.js.map +1 -0
- package/es/components/Select/reducers/focusedPathReducer.js +33 -0
- package/es/components/Select/reducers/focusedPathReducer.js.map +1 -0
- package/es/components/Select/reducers/pathReducer.js +37 -0
- package/es/components/Select/reducers/pathReducer.js.map +1 -0
- package/es/components/Select/ui/Inner/Inner.css +110 -0
- package/es/components/Select/ui/Inner/Inner.js +78 -0
- package/es/components/Select/ui/Inner/Inner.js.map +1 -0
- package/es/components/Select/ui/Inner/ui/Item/Item.css +110 -0
- package/es/components/Select/ui/Inner/ui/Item/Item.js +93 -0
- package/es/components/Select/ui/Inner/ui/Item/Item.js.map +1 -0
- package/es/components/Select/ui/Inner/ui/Item/Item.styles.js +98 -0
- package/es/components/Select/ui/Inner/ui/Item/Item.styles.js.map +1 -0
- package/es/components/Select/ui/Inner/ui/Item/Item.styles_y3jg1m.css +9 -0
- package/es/components/Select/ui/Target/Target.css +66 -0
- package/es/components/Select/ui/Target/Target.js +59 -0
- package/es/components/Select/ui/Target/Target.js.map +1 -0
- package/es/components/Select/ui/Target/ui/Button/Button.css +33 -0
- package/es/components/Select/ui/Target/ui/Button/Button.js +55 -0
- package/es/components/Select/ui/Target/ui/Button/Button.js.map +1 -0
- package/es/components/Select/ui/Target/ui/Button/Button.styles.js +44 -0
- package/es/components/Select/ui/Target/ui/Button/Button.styles.js.map +1 -0
- package/es/components/Select/ui/Target/ui/Button/Button.styles_nn6pg.css +5 -0
- package/{cjs/components/Select/ui/SelectTarget/SelectTarget.css → es/components/Select/ui/Target/ui/Textfield/Textfield.css} +13 -7
- package/es/components/Select/ui/Target/ui/Textfield/Textfield.js +109 -0
- package/es/components/Select/ui/Target/ui/Textfield/Textfield.js.map +1 -0
- package/es/components/Select/ui/Target/ui/Textfield/Textfield.styles.js +98 -0
- package/es/components/Select/ui/Target/ui/Textfield/Textfield.styles.js.map +1 -0
- package/es/components/Select/ui/Target/ui/Textfield/Textfield.styles_16d02b7.css +12 -0
- package/es/components/Select/ui/{SelectChip/SelectChip.css → Target/ui/Textfield/ui/Chip/Chip.css} +1 -1
- package/es/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.js +32 -0
- package/es/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.js.map +1 -0
- package/es/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.styles.js +19 -0
- package/es/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.styles.js.map +1 -0
- package/es/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.styles_1a752pa.css +1 -0
- package/es/components/Select/utils/getButtonLabel.js +43 -0
- package/es/components/Select/utils/getButtonLabel.js.map +1 -0
- package/es/components/Select/utils/getCorrectHeight.js +9 -0
- package/es/components/Select/utils/getCorrectHeight.js.map +1 -0
- package/es/components/Select/utils/initialItemsTransform.js +15 -0
- package/es/components/Select/utils/initialItemsTransform.js.map +1 -0
- package/es/components/Select/utils/sizeToIconSize.js +7 -0
- package/es/components/Select/utils/sizeToIconSize.js.map +1 -0
- package/es/components/Select/utils/updateAncestors.js +30 -0
- package/es/components/Select/utils/updateAncestors.js.map +1 -0
- package/es/components/Select/utils/updateDescendants.js +14 -0
- package/es/components/Select/utils/updateDescendants.js.map +1 -0
- package/es/components/Select/utils/updateSingleAncestors.js +11 -0
- package/es/components/Select/utils/updateSingleAncestors.js.map +1 -0
- package/es/components/_Icon/Icon.assets/DisclosureDownCentered.js +29 -0
- package/es/components/_Icon/Icon.assets/DisclosureDownCentered.js.map +1 -0
- package/es/components/_Icon/Icon.assets/DisclosureRightCentered.js +27 -0
- package/es/components/_Icon/Icon.assets/DisclosureRightCentered.js.map +1 -0
- package/es/components/_Icon/Icons/IconDisclosureDownCentered.js +19 -0
- package/es/components/_Icon/Icons/IconDisclosureDownCentered.js.map +1 -0
- package/es/components/_Icon/Icons/IconDisclosureRightCentered.js +19 -0
- package/es/components/_Icon/Icons/IconDisclosureRightCentered.js.map +1 -0
- package/es/engines/common.js.map +1 -1
- package/es/index.css +42 -27
- package/es/index.js +2 -7
- package/es/index.js.map +1 -1
- package/es/utils/index.js.map +1 -1
- package/es/utils/isEmpty.js +45 -0
- package/es/utils/isEmpty.js.map +1 -0
- package/package.json +4 -4
- package/styled-components/cjs/components/Button/Button.styles.js +2 -2
- package/styled-components/cjs/components/Chip/Chip.tokens.js +2 -0
- package/styled-components/cjs/components/Combobox/Combobox.js +6 -6
- package/styled-components/cjs/components/Combobox/hooks/index.js +14 -1
- package/styled-components/cjs/components/Combobox/ui/ComboboxTarget/ComboboxTarget.js +4 -5
- package/styled-components/cjs/components/Combobox/utils/index.js +105 -1
- package/styled-components/cjs/components/Dropdown/Dropdown.tokens.js +32 -18
- package/styled-components/cjs/components/Dropdown/hooks/useKeyboardNavigation.js +63 -24
- package/styled-components/cjs/components/Pagination/Pagination.js +12 -5
- package/styled-components/cjs/components/Pagination/Pagination.styles.js +2 -2
- package/styled-components/cjs/components/Pagination/Pagination.tokens.js +9 -11
- package/styled-components/cjs/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.js +22 -35
- package/styled-components/cjs/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.styles.js +3 -8
- package/styled-components/cjs/components/Select/Select.js +255 -187
- package/styled-components/cjs/components/Select/Select.styles.js +28 -23
- package/styled-components/cjs/components/Select/Select.tokens.js +80 -167
- package/styled-components/cjs/components/Select/hooks/useKeyboardNavigation.js +355 -0
- package/styled-components/cjs/components/Select/hooks/usePathMaps.js +33 -0
- package/styled-components/cjs/components/Select/index.js +1 -25
- package/styled-components/cjs/components/Select/reducers/focusedChipIndexReducer.js +38 -0
- package/styled-components/cjs/components/Select/reducers/focusedPathReducer.js +40 -0
- package/styled-components/cjs/components/Select/reducers/index.js +38 -0
- package/styled-components/cjs/components/Select/reducers/pathReducer.js +44 -0
- package/styled-components/cjs/components/Select/ui/InfiniteLoader/InfiniteLoader.js +18 -0
- package/styled-components/cjs/components/Select/ui/InfiniteLoader/InfiniteLoader.styles.js +24 -0
- package/styled-components/cjs/components/Select/ui/Inner/Inner.js +80 -0
- package/styled-components/cjs/components/Select/ui/Inner/ui/Item/Item.js +95 -0
- package/styled-components/cjs/components/Select/ui/Inner/ui/Item/Item.styles.js +66 -0
- package/styled-components/cjs/components/Select/ui/Inner/ui/index.js +16 -0
- package/styled-components/cjs/components/Select/ui/Target/Target.js +61 -0
- package/styled-components/cjs/components/Select/ui/Target/ui/Button/Button.js +57 -0
- package/styled-components/cjs/components/Select/ui/Target/ui/Button/Button.styles.js +30 -0
- package/styled-components/cjs/components/Select/ui/Target/ui/Textfield/Textfield.js +111 -0
- package/styled-components/cjs/components/Select/ui/Target/ui/Textfield/Textfield.styles.js +63 -0
- package/{emotion/cjs/components/Select/ui/SelectChip/SelectChip.js → styled-components/cjs/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.js} +24 -27
- package/styled-components/cjs/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.styles.js +21 -0
- package/styled-components/cjs/components/Select/ui/Target/ui/Textfield/ui/index.js +16 -0
- package/styled-components/cjs/components/Select/ui/Target/ui/index.js +27 -0
- package/styled-components/cjs/components/Select/ui/index.js +33 -72
- package/styled-components/cjs/components/Select/utils/getButtonLabel.js +43 -0
- package/styled-components/cjs/components/Select/utils/getCorrectHeight.js +12 -0
- package/styled-components/cjs/components/Select/utils/index.js +44 -102
- package/styled-components/cjs/components/Select/utils/initialItemsTransform.js +18 -0
- package/styled-components/cjs/components/Select/utils/sizeToIconSize.js +10 -0
- package/styled-components/cjs/components/Select/utils/updateAncestors.js +33 -0
- package/styled-components/cjs/components/Select/utils/updateDescendants.js +17 -0
- package/styled-components/cjs/components/Select/utils/updateSingleAncestors.js +14 -0
- package/styled-components/cjs/components/_Icon/Icon.assets/DisclosureDownCentered.js +32 -0
- package/styled-components/cjs/components/_Icon/Icon.assets/DisclosureRightCentered.js +30 -0
- package/styled-components/cjs/components/_Icon/Icons/IconDisclosureDownCentered.js +22 -0
- package/styled-components/cjs/components/_Icon/Icons/IconDisclosureRightCentered.js +22 -0
- package/styled-components/cjs/components/_Icon/index.js +14 -0
- package/styled-components/cjs/examples/_helpers.js +1 -1
- package/styled-components/cjs/examples/plasma_b2c/components/Pagination/Pagination.config.js +7 -7
- package/styled-components/cjs/examples/plasma_b2c/components/Pagination/Pagination.stories.tsx +1 -0
- package/styled-components/cjs/examples/plasma_b2c/components/Select/Select.config.js +21 -11
- package/styled-components/cjs/examples/plasma_b2c/components/Select/Select.js +5 -15
- package/styled-components/cjs/examples/plasma_b2c/components/Select/Select.stories.tsx +753 -204
- package/styled-components/cjs/examples/plasma_b2c/components/Select/style.css +36 -0
- package/styled-components/cjs/examples/plasma_web/components/Pagination/Pagination.config.js +7 -7
- package/styled-components/cjs/examples/plasma_web/components/Select/Select.config.js +21 -11
- package/styled-components/cjs/examples/plasma_web/components/Select/Select.js +5 -15
- package/styled-components/cjs/examples/plasma_web/components/Select/Select.stories.tsx +753 -200
- package/styled-components/cjs/examples/plasma_web/components/Select/style.css +37 -0
- package/styled-components/cjs/utils/index.js +9 -1
- package/styled-components/cjs/utils/isEmpty.js +47 -0
- package/styled-components/es/components/Button/Button.styles.js +2 -2
- package/styled-components/es/components/Chip/Chip.tokens.js +2 -0
- package/styled-components/es/components/Combobox/Combobox.js +2 -2
- package/styled-components/es/components/Combobox/hooks/index.js +2 -1
- package/styled-components/es/components/Combobox/ui/ComboboxTarget/ComboboxTarget.js +1 -2
- package/styled-components/es/components/Combobox/utils/index.js +105 -1
- package/styled-components/es/components/Dropdown/Dropdown.tokens.js +32 -18
- package/styled-components/es/components/Dropdown/hooks/useKeyboardNavigation.js +63 -24
- package/styled-components/es/components/Pagination/Pagination.js +12 -5
- package/styled-components/es/components/Pagination/Pagination.styles.js +2 -2
- package/styled-components/es/components/Pagination/Pagination.tokens.js +9 -11
- package/styled-components/es/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.js +22 -33
- package/styled-components/es/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.styles.js +3 -8
- package/styled-components/es/components/Select/Select.js +252 -185
- package/styled-components/es/components/Select/Select.styles.js +25 -21
- package/styled-components/es/components/Select/Select.tokens.js +79 -166
- package/styled-components/es/components/Select/hooks/useKeyboardNavigation.js +349 -0
- package/styled-components/es/components/Select/hooks/usePathMaps.js +27 -0
- package/styled-components/es/components/Select/index.js +1 -2
- package/styled-components/es/components/Select/reducers/focusedChipIndexReducer.js +32 -0
- package/styled-components/es/components/Select/reducers/focusedPathReducer.js +34 -0
- package/styled-components/es/components/Select/reducers/index.js +3 -0
- package/styled-components/es/components/Select/reducers/pathReducer.js +38 -0
- package/styled-components/es/components/Select/ui/InfiniteLoader/InfiniteLoader.js +11 -0
- package/styled-components/es/components/Select/ui/InfiniteLoader/InfiniteLoader.styles.js +17 -0
- package/styled-components/es/components/Select/ui/Inner/Inner.js +73 -0
- package/styled-components/es/components/Select/ui/Inner/ui/Item/Item.js +86 -0
- package/styled-components/es/components/Select/ui/Inner/ui/Item/Item.styles.js +59 -0
- package/styled-components/es/components/Select/ui/Inner/ui/index.js +1 -0
- package/styled-components/es/components/Select/ui/Target/Target.js +54 -0
- package/styled-components/es/components/Select/ui/Target/ui/Button/Button.js +50 -0
- package/styled-components/es/components/Select/ui/Target/ui/Button/Button.styles.js +23 -0
- package/styled-components/es/components/Select/ui/Target/ui/Textfield/Textfield.js +104 -0
- package/styled-components/es/components/Select/ui/Target/ui/Textfield/Textfield.styles.js +56 -0
- package/styled-components/es/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.js +28 -0
- package/styled-components/es/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.styles.js +14 -0
- package/styled-components/es/components/Select/ui/Target/ui/Textfield/ui/index.js +1 -0
- package/styled-components/es/components/Select/ui/Target/ui/index.js +2 -0
- package/styled-components/es/components/Select/ui/index.js +3 -6
- package/styled-components/es/components/Select/utils/getButtonLabel.js +37 -0
- package/styled-components/es/components/Select/utils/getCorrectHeight.js +6 -0
- package/styled-components/es/components/Select/utils/index.js +7 -106
- package/styled-components/es/components/Select/utils/initialItemsTransform.js +12 -0
- package/styled-components/es/components/Select/utils/sizeToIconSize.js +4 -0
- package/styled-components/es/components/Select/utils/updateAncestors.js +27 -0
- package/styled-components/es/components/Select/utils/updateDescendants.js +11 -0
- package/styled-components/es/components/Select/utils/updateSingleAncestors.js +8 -0
- package/styled-components/es/components/_Icon/Icon.assets/DisclosureDownCentered.js +25 -0
- package/styled-components/es/components/_Icon/Icon.assets/DisclosureRightCentered.js +23 -0
- package/styled-components/es/components/_Icon/Icons/IconDisclosureDownCentered.js +15 -0
- package/styled-components/es/components/_Icon/Icons/IconDisclosureRightCentered.js +15 -0
- package/styled-components/es/components/_Icon/index.js +2 -0
- package/styled-components/es/examples/_helpers.js +1 -1
- package/styled-components/es/examples/plasma_b2c/components/Pagination/Pagination.config.js +7 -7
- package/styled-components/es/examples/plasma_b2c/components/Pagination/Pagination.stories.tsx +1 -0
- package/styled-components/es/examples/plasma_b2c/components/Select/Select.config.js +21 -11
- package/styled-components/es/examples/plasma_b2c/components/Select/Select.js +3 -12
- package/styled-components/es/examples/plasma_b2c/components/Select/Select.stories.tsx +753 -204
- package/styled-components/es/examples/plasma_b2c/components/Select/style.css +36 -0
- package/styled-components/es/examples/plasma_web/components/Pagination/Pagination.config.js +7 -7
- package/styled-components/es/examples/plasma_web/components/Select/Select.config.js +21 -11
- package/styled-components/es/examples/plasma_web/components/Select/Select.js +3 -12
- package/styled-components/es/examples/plasma_web/components/Select/Select.stories.tsx +753 -200
- package/styled-components/es/examples/plasma_web/components/Select/style.css +37 -0
- package/styled-components/es/utils/index.js +1 -0
- package/styled-components/es/utils/isEmpty.js +42 -0
- package/types/components/Accordion/ui/AccordionItem/AccordionItem.d.ts +2 -2
- package/types/components/Accordion/ui/AccordionItem/AccordionItem.d.ts.map +1 -1
- package/types/components/Chip/Chip.tokens.d.ts +2 -0
- package/types/components/Chip/Chip.tokens.d.ts.map +1 -1
- package/types/components/Combobox/Combobox.types.d.ts +21 -0
- package/types/components/Combobox/Combobox.types.d.ts.map +1 -1
- package/types/components/Combobox/hooks/index.d.ts +1 -0
- package/types/components/Combobox/hooks/index.d.ts.map +1 -1
- package/types/components/{Select → Combobox}/hooks/useKeyNavigation.d.ts +1 -1
- package/types/components/Combobox/hooks/useKeyNavigation.d.ts.map +1 -0
- package/types/components/Combobox/ui/ComboboxTarget/ComboboxTarget.d.ts.map +1 -1
- package/types/components/Combobox/utils/index.d.ts +13 -1
- package/types/components/Combobox/utils/index.d.ts.map +1 -1
- package/types/components/Dropdown/Dropdown.tokens.d.ts +17 -17
- package/types/components/Dropdown/Dropdown.tokens.d.ts.map +1 -1
- package/types/components/Dropdown/hooks/useKeyboardNavigation.d.ts.map +1 -1
- package/types/components/Pagination/Pagination.d.ts.map +1 -1
- package/types/components/Pagination/Pagination.tokens.d.ts +9 -11
- package/types/components/Pagination/Pagination.tokens.d.ts.map +1 -1
- package/types/components/Pagination/Pagination.types.d.ts +6 -1
- package/types/components/Pagination/Pagination.types.d.ts.map +1 -1
- package/types/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.d.ts.map +1 -1
- package/types/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.styles.d.ts +53 -43
- package/types/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.styles.d.ts.map +1 -1
- package/types/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.types.d.ts +5 -2
- package/types/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.types.d.ts.map +1 -1
- package/types/components/Select/Select.d.ts +7 -8
- package/types/components/Select/Select.d.ts.map +1 -1
- package/types/components/Select/Select.styles.d.ts +11 -6
- package/types/components/Select/Select.styles.d.ts.map +1 -1
- package/types/components/Select/Select.tokens.d.ts +78 -165
- package/types/components/Select/Select.tokens.d.ts.map +1 -1
- package/types/components/Select/Select.types.d.ts +104 -67
- package/types/components/Select/Select.types.d.ts.map +1 -1
- package/types/components/Select/hooks/useKeyboardNavigation.d.ts +43 -0
- package/types/components/Select/hooks/useKeyboardNavigation.d.ts.map +1 -0
- package/types/components/Select/hooks/usePathMaps.d.ts +8 -0
- package/types/components/Select/hooks/usePathMaps.d.ts.map +1 -0
- package/types/components/Select/index.d.ts +2 -3
- package/types/components/Select/index.d.ts.map +1 -1
- package/types/components/Select/reducers/focusedChipIndexReducer.d.ts +11 -0
- package/types/components/Select/reducers/focusedChipIndexReducer.d.ts.map +1 -0
- package/types/components/Select/reducers/focusedPathReducer.d.ts +16 -0
- package/types/components/Select/reducers/focusedPathReducer.d.ts.map +1 -0
- package/types/components/Select/reducers/index.d.ts +4 -0
- package/types/components/Select/reducers/index.d.ts.map +1 -0
- package/types/components/Select/reducers/pathReducer.d.ts +20 -0
- package/types/components/Select/reducers/pathReducer.d.ts.map +1 -0
- package/types/components/Select/ui/InfiniteLoader/InfiniteLoader.d.ts +6 -0
- package/types/components/Select/ui/InfiniteLoader/InfiniteLoader.d.ts.map +1 -0
- package/types/components/Select/ui/InfiniteLoader/InfiniteLoader.styles.d.ts +29 -0
- package/types/components/Select/ui/InfiniteLoader/InfiniteLoader.styles.d.ts.map +1 -0
- package/types/components/Select/ui/Inner/Inner.d.ts +4 -0
- package/types/components/Select/ui/Inner/Inner.d.ts.map +1 -0
- package/types/components/Select/ui/Inner/Inner.type.d.ts +13 -0
- package/types/components/Select/ui/Inner/Inner.type.d.ts.map +1 -0
- package/types/components/Select/ui/Inner/ui/Item/Item.d.ts +4 -0
- package/types/components/Select/ui/Inner/ui/Item/Item.d.ts.map +1 -0
- package/types/components/Select/ui/Inner/ui/Item/Item.styles.d.ts +19 -0
- package/types/components/Select/ui/Inner/ui/Item/Item.styles.d.ts.map +1 -0
- package/types/components/Select/ui/Inner/ui/Item/Item.types.d.ts +42 -0
- package/types/components/Select/ui/Inner/ui/Item/Item.types.d.ts.map +1 -0
- package/types/components/Select/ui/Inner/ui/index.d.ts +2 -0
- package/types/components/Select/ui/Inner/ui/index.d.ts.map +1 -0
- package/types/components/Select/ui/Target/Target.d.ts +4 -0
- package/types/components/Select/ui/Target/Target.d.ts.map +1 -0
- package/types/components/Select/ui/Target/Target.types.d.ts +15 -0
- package/types/components/Select/ui/Target/Target.types.d.ts.map +1 -0
- package/types/components/Select/ui/Target/ui/Button/Button.d.ts +4 -0
- package/types/components/Select/ui/Target/ui/Button/Button.d.ts.map +1 -0
- package/types/components/Select/ui/{SelectTarget/SelectTarget.styles.d.ts → Target/ui/Button/Button.styles.d.ts} +8 -13
- package/types/components/Select/ui/Target/ui/Button/Button.styles.d.ts.map +1 -0
- package/types/components/Select/ui/Target/ui/Button/Button.types.d.ts +4 -0
- package/types/components/Select/ui/Target/ui/Button/Button.types.d.ts.map +1 -0
- package/types/components/Select/ui/Target/ui/Textfield/Textfield.d.ts +4 -0
- package/types/components/Select/ui/Target/ui/Textfield/Textfield.d.ts.map +1 -0
- package/types/components/Select/ui/Target/ui/Textfield/Textfield.styles.d.ts +60 -0
- package/types/components/Select/ui/Target/ui/Textfield/Textfield.styles.d.ts.map +1 -0
- package/types/components/Select/ui/Target/ui/Textfield/Textfield.types.d.ts +4 -0
- package/types/components/Select/ui/Target/ui/Textfield/Textfield.types.d.ts.map +1 -0
- package/types/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.d.ts +9 -0
- package/types/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.d.ts.map +1 -0
- package/types/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.styles.d.ts +3 -0
- package/types/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.styles.d.ts.map +1 -0
- package/types/components/Select/ui/Target/ui/Textfield/ui/index.d.ts +2 -0
- package/types/components/Select/ui/Target/ui/Textfield/ui/index.d.ts.map +1 -0
- package/types/components/Select/ui/Target/ui/index.d.ts +3 -0
- package/types/components/Select/ui/Target/ui/index.d.ts.map +1 -0
- package/types/components/Select/ui/index.d.ts +3 -6
- package/types/components/Select/ui/index.d.ts.map +1 -1
- package/types/components/Select/utils/getButtonLabel.d.ts +3 -0
- package/types/components/Select/utils/getButtonLabel.d.ts.map +1 -0
- package/types/components/Select/utils/getCorrectHeight.d.ts +3 -0
- package/types/components/Select/utils/getCorrectHeight.d.ts.map +1 -0
- package/types/components/Select/utils/index.d.ts +7 -13
- package/types/components/Select/utils/index.d.ts.map +1 -1
- package/types/components/Select/utils/initialItemsTransform.d.ts +3 -0
- package/types/components/Select/utils/initialItemsTransform.d.ts.map +1 -0
- package/types/components/Select/utils/sizeToIconSize.d.ts +3 -0
- package/types/components/Select/utils/sizeToIconSize.d.ts.map +1 -0
- package/types/components/Select/utils/updateAncestors.d.ts +4 -0
- package/types/components/Select/utils/updateAncestors.d.ts.map +1 -0
- package/types/components/Select/utils/updateDescendants.d.ts +4 -0
- package/types/components/Select/utils/updateDescendants.d.ts.map +1 -0
- package/types/components/Select/utils/updateSingleAncestors.d.ts +4 -0
- package/types/components/Select/utils/updateSingleAncestors.d.ts.map +1 -0
- package/types/components/_Icon/Icon.assets/DisclosureDownCentered.d.ts +4 -0
- package/types/components/_Icon/Icon.assets/DisclosureDownCentered.d.ts.map +1 -0
- package/types/components/_Icon/Icon.assets/DisclosureRightCentered.d.ts +4 -0
- package/types/components/_Icon/Icon.assets/DisclosureRightCentered.d.ts.map +1 -0
- package/types/components/_Icon/Icons/IconDisclosureDownCentered.d.ts +4 -0
- package/types/components/_Icon/Icons/IconDisclosureDownCentered.d.ts.map +1 -0
- package/types/components/_Icon/Icons/IconDisclosureRightCentered.d.ts +4 -0
- package/types/components/_Icon/Icons/IconDisclosureRightCentered.d.ts.map +1 -0
- package/types/components/_Icon/index.d.ts +2 -0
- package/types/components/_Icon/index.d.ts.map +1 -1
- package/types/engines/common.d.ts +3 -3
- package/types/engines/common.d.ts.map +1 -1
- package/types/engines/types.d.ts +3 -3
- package/types/engines/types.d.ts.map +1 -1
- package/types/examples/_helpers.d.ts +2 -2
- package/types/examples/_helpers.d.ts.map +1 -1
- package/types/examples/plasma_b2c/components/Pagination/Pagination.config.d.ts +1 -1
- package/types/examples/plasma_b2c/components/Pagination/Pagination.config.d.ts.map +1 -1
- package/types/examples/plasma_b2c/components/Pagination/Pagination.d.ts +1 -1
- package/types/examples/plasma_b2c/components/Select/Select.config.d.ts +15 -5
- package/types/examples/plasma_b2c/components/Select/Select.config.d.ts.map +1 -1
- package/types/examples/plasma_b2c/components/Select/Select.d.ts +69 -55
- package/types/examples/plasma_b2c/components/Select/Select.d.ts.map +1 -1
- package/types/examples/plasma_web/components/Pagination/Pagination.config.d.ts +1 -1
- package/types/examples/plasma_web/components/Pagination/Pagination.config.d.ts.map +1 -1
- package/types/examples/plasma_web/components/Pagination/Pagination.d.ts +1 -1
- package/types/examples/plasma_web/components/Select/Select.config.d.ts +15 -5
- package/types/examples/plasma_web/components/Select/Select.config.d.ts.map +1 -1
- package/types/examples/plasma_web/components/Select/Select.d.ts +69 -55
- package/types/examples/plasma_web/components/Select/Select.d.ts.map +1 -1
- package/types/utils/index.d.ts +1 -0
- package/types/utils/index.d.ts.map +1 -1
- package/types/utils/isEmpty.d.ts +3 -0
- package/types/utils/isEmpty.d.ts.map +1 -0
- package/cjs/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.styles_rtehle.css +0 -4
- package/cjs/components/Select/Select.styles_1q3i6gw.css +0 -4
- package/cjs/components/Select/hooks/useKeyNavigation.js.map +0 -1
- package/cjs/components/Select/ui/SelectChip/SelectChip.js +0 -39
- package/cjs/components/Select/ui/SelectChip/SelectChip.js.map +0 -1
- package/cjs/components/Select/ui/SelectChip/SelectChip.styles.js.map +0 -1
- package/cjs/components/Select/ui/SelectChip/SelectChip.styles_1u4uw04.css +0 -1
- package/cjs/components/Select/ui/SelectDivider/SelectDivider.css +0 -35
- package/cjs/components/Select/ui/SelectDivider/SelectDivider.js +0 -41
- package/cjs/components/Select/ui/SelectDivider/SelectDivider.js.map +0 -1
- package/cjs/components/Select/ui/SelectDivider/SelectDivider.styles.js +0 -12
- package/cjs/components/Select/ui/SelectDivider/SelectDivider.styles.js.map +0 -1
- package/cjs/components/Select/ui/SelectDivider/SelectDivider.styles_673hj6.css +0 -1
- package/cjs/components/Select/ui/SelectDivider/variations/_size/base.js +0 -9
- package/cjs/components/Select/ui/SelectDivider/variations/_size/base.js.map +0 -1
- package/cjs/components/Select/ui/SelectDivider/variations/_size/base_x642ct.css +0 -1
- package/cjs/components/Select/ui/SelectDivider/variations/_view/base.js +0 -9
- package/cjs/components/Select/ui/SelectDivider/variations/_view/base.js.map +0 -1
- package/cjs/components/Select/ui/SelectDivider/variations/_view/base_x642ct.css +0 -1
- package/cjs/components/Select/ui/SelectFooter/SelectFooter.css +0 -35
- package/cjs/components/Select/ui/SelectFooter/SelectFooter.js +0 -41
- package/cjs/components/Select/ui/SelectFooter/SelectFooter.js.map +0 -1
- package/cjs/components/Select/ui/SelectFooter/SelectFooter.styles.js +0 -12
- package/cjs/components/Select/ui/SelectFooter/SelectFooter.styles.js.map +0 -1
- package/cjs/components/Select/ui/SelectFooter/SelectFooter.styles_11hk6tt.css +0 -1
- package/cjs/components/Select/ui/SelectFooter/variations/_size/base.js +0 -9
- package/cjs/components/Select/ui/SelectFooter/variations/_size/base.js.map +0 -1
- package/cjs/components/Select/ui/SelectFooter/variations/_size/base_x642ct.css +0 -1
- package/cjs/components/Select/ui/SelectFooter/variations/_view/base.js +0 -9
- package/cjs/components/Select/ui/SelectFooter/variations/_view/base.js.map +0 -1
- package/cjs/components/Select/ui/SelectFooter/variations/_view/base_x642ct.css +0 -1
- package/cjs/components/Select/ui/SelectGroup/SelectGroup.css +0 -35
- package/cjs/components/Select/ui/SelectGroup/SelectGroup.js +0 -41
- package/cjs/components/Select/ui/SelectGroup/SelectGroup.js.map +0 -1
- package/cjs/components/Select/ui/SelectGroup/SelectGroup.styles.js +0 -12
- package/cjs/components/Select/ui/SelectGroup/SelectGroup.styles.js.map +0 -1
- package/cjs/components/Select/ui/SelectGroup/SelectGroup.styles_mktu7e.css +0 -1
- package/cjs/components/Select/ui/SelectGroup/variations/_size/base.js +0 -9
- package/cjs/components/Select/ui/SelectGroup/variations/_size/base.js.map +0 -1
- package/cjs/components/Select/ui/SelectGroup/variations/_size/base_x642ct.css +0 -1
- package/cjs/components/Select/ui/SelectGroup/variations/_view/base.js +0 -9
- package/cjs/components/Select/ui/SelectGroup/variations/_view/base.js.map +0 -1
- package/cjs/components/Select/ui/SelectGroup/variations/_view/base_x642ct.css +0 -1
- package/cjs/components/Select/ui/SelectHeader/SelectHeader.css +0 -35
- package/cjs/components/Select/ui/SelectHeader/SelectHeader.js +0 -41
- package/cjs/components/Select/ui/SelectHeader/SelectHeader.js.map +0 -1
- package/cjs/components/Select/ui/SelectHeader/SelectHeader.styles.js +0 -12
- package/cjs/components/Select/ui/SelectHeader/SelectHeader.styles.js.map +0 -1
- package/cjs/components/Select/ui/SelectHeader/SelectHeader.styles_24gqog.css +0 -1
- package/cjs/components/Select/ui/SelectHeader/variations/_size/base.js +0 -9
- package/cjs/components/Select/ui/SelectHeader/variations/_size/base.js.map +0 -1
- package/cjs/components/Select/ui/SelectHeader/variations/_size/base_x642ct.css +0 -1
- package/cjs/components/Select/ui/SelectHeader/variations/_view/base.js +0 -9
- package/cjs/components/Select/ui/SelectHeader/variations/_view/base.js.map +0 -1
- package/cjs/components/Select/ui/SelectHeader/variations/_view/base_x642ct.css +0 -1
- package/cjs/components/Select/ui/SelectItem/SelectItem.css +0 -35
- package/cjs/components/Select/ui/SelectItem/SelectItem.js +0 -40
- package/cjs/components/Select/ui/SelectItem/SelectItem.js.map +0 -1
- package/cjs/components/Select/ui/SelectItem/SelectItem.styles.js +0 -19
- package/cjs/components/Select/ui/SelectItem/SelectItem.styles.js.map +0 -1
- package/cjs/components/Select/ui/SelectItem/SelectItem.styles_vk39mp.css +0 -1
- package/cjs/components/Select/ui/SelectItem/variations/_size/base.js +0 -9
- package/cjs/components/Select/ui/SelectItem/variations/_size/base.js.map +0 -1
- package/cjs/components/Select/ui/SelectItem/variations/_size/base_x642ct.css +0 -1
- package/cjs/components/Select/ui/SelectItem/variations/_view/base.js +0 -9
- package/cjs/components/Select/ui/SelectItem/variations/_view/base.js.map +0 -1
- package/cjs/components/Select/ui/SelectItem/variations/_view/base_x642ct.css +0 -1
- package/cjs/components/Select/ui/SelectTarget/SelectTarget.js +0 -148
- package/cjs/components/Select/ui/SelectTarget/SelectTarget.js.map +0 -1
- package/cjs/components/Select/ui/SelectTarget/SelectTarget.styles.js +0 -112
- package/cjs/components/Select/ui/SelectTarget/SelectTarget.styles.js.map +0 -1
- package/cjs/components/Select/ui/SelectTarget/SelectTarget.styles_hb1tns.css +0 -6
- package/cjs/components/Select/utils/index.js +0 -112
- package/cjs/components/Select/utils/index.js.map +0 -1
- package/cjs/components/Select/variations/_target/base.js +0 -9
- package/cjs/components/Select/variations/_target/base.js.map +0 -1
- package/cjs/components/Select/variations/_target/base_x642ct.css +0 -1
- package/emotion/cjs/components/Select/Select.template-doc.mdx +0 -115
- package/emotion/cjs/components/Select/hooks/index.js +0 -12
- package/emotion/cjs/components/Select/ui/SelectChip/SelectChip.styles.js +0 -26
- package/emotion/cjs/components/Select/ui/SelectDivider/SelectDivider.js +0 -29
- package/emotion/cjs/components/Select/ui/SelectDivider/SelectDivider.styles.js +0 -12
- package/emotion/cjs/components/Select/ui/SelectDivider/variations/_size/base.js +0 -8
- package/emotion/cjs/components/Select/ui/SelectDivider/variations/_size/tokens.json +0 -8
- package/emotion/cjs/components/Select/ui/SelectDivider/variations/_view/base.js +0 -8
- package/emotion/cjs/components/Select/ui/SelectDivider/variations/_view/tokens.json +0 -1
- package/emotion/cjs/components/Select/ui/SelectFooter/SelectFooter.js +0 -29
- package/emotion/cjs/components/Select/ui/SelectFooter/SelectFooter.styles.js +0 -12
- package/emotion/cjs/components/Select/ui/SelectFooter/variations/_size/base.js +0 -8
- package/emotion/cjs/components/Select/ui/SelectFooter/variations/_size/tokens.json +0 -12
- package/emotion/cjs/components/Select/ui/SelectFooter/variations/_view/base.js +0 -8
- package/emotion/cjs/components/Select/ui/SelectFooter/variations/_view/tokens.json +0 -9
- package/emotion/cjs/components/Select/ui/SelectGroup/SelectGroup.js +0 -29
- package/emotion/cjs/components/Select/ui/SelectGroup/SelectGroup.styles.js +0 -12
- package/emotion/cjs/components/Select/ui/SelectGroup/variations/_size/base.js +0 -8
- package/emotion/cjs/components/Select/ui/SelectGroup/variations/_size/tokens.json +0 -20
- package/emotion/cjs/components/Select/ui/SelectGroup/variations/_view/base.js +0 -8
- package/emotion/cjs/components/Select/ui/SelectGroup/variations/_view/tokens.json +0 -10
- package/emotion/cjs/components/Select/ui/SelectHeader/SelectHeader.js +0 -29
- package/emotion/cjs/components/Select/ui/SelectHeader/SelectHeader.styles.js +0 -12
- package/emotion/cjs/components/Select/ui/SelectHeader/variations/_size/base.js +0 -8
- package/emotion/cjs/components/Select/ui/SelectHeader/variations/_size/tokens.json +0 -12
- package/emotion/cjs/components/Select/ui/SelectHeader/variations/_view/base.js +0 -8
- package/emotion/cjs/components/Select/ui/SelectHeader/variations/_view/tokens.json +0 -9
- package/emotion/cjs/components/Select/ui/SelectItem/SelectItem.js +0 -29
- package/emotion/cjs/components/Select/ui/SelectItem/SelectItem.styles.js +0 -13
- package/emotion/cjs/components/Select/ui/SelectItem/variations/_size/base.js +0 -8
- package/emotion/cjs/components/Select/ui/SelectItem/variations/_size/tokens.json +0 -19
- package/emotion/cjs/components/Select/ui/SelectItem/variations/_view/base.js +0 -8
- package/emotion/cjs/components/Select/ui/SelectItem/variations/_view/tokens.json +0 -9
- package/emotion/cjs/components/Select/ui/SelectTarget/SelectTarget.js +0 -157
- package/emotion/cjs/components/Select/ui/SelectTarget/SelectTarget.styles.js +0 -75
- package/emotion/cjs/components/Select/variations/_target/base.js +0 -8
- package/emotion/cjs/components/Select/variations/_target/tokens.json +0 -1
- package/emotion/es/components/Select/Select.template-doc.mdx +0 -115
- package/emotion/es/components/Select/hooks/index.js +0 -1
- package/emotion/es/components/Select/ui/SelectChip/SelectChip.js +0 -31
- package/emotion/es/components/Select/ui/SelectChip/SelectChip.styles.js +0 -20
- package/emotion/es/components/Select/ui/SelectDivider/SelectDivider.js +0 -23
- package/emotion/es/components/Select/ui/SelectDivider/SelectDivider.styles.js +0 -7
- package/emotion/es/components/Select/ui/SelectDivider/variations/_size/base.js +0 -2
- package/emotion/es/components/Select/ui/SelectDivider/variations/_size/tokens.json +0 -8
- package/emotion/es/components/Select/ui/SelectDivider/variations/_view/base.js +0 -2
- package/emotion/es/components/Select/ui/SelectDivider/variations/_view/tokens.json +0 -1
- package/emotion/es/components/Select/ui/SelectFooter/SelectFooter.js +0 -23
- package/emotion/es/components/Select/ui/SelectFooter/SelectFooter.styles.js +0 -7
- package/emotion/es/components/Select/ui/SelectFooter/variations/_size/base.js +0 -2
- package/emotion/es/components/Select/ui/SelectFooter/variations/_size/tokens.json +0 -12
- package/emotion/es/components/Select/ui/SelectFooter/variations/_view/base.js +0 -2
- package/emotion/es/components/Select/ui/SelectFooter/variations/_view/tokens.json +0 -9
- package/emotion/es/components/Select/ui/SelectGroup/SelectGroup.js +0 -23
- package/emotion/es/components/Select/ui/SelectGroup/SelectGroup.styles.js +0 -7
- package/emotion/es/components/Select/ui/SelectGroup/variations/_size/base.js +0 -2
- package/emotion/es/components/Select/ui/SelectGroup/variations/_size/tokens.json +0 -20
- package/emotion/es/components/Select/ui/SelectGroup/variations/_view/base.js +0 -2
- package/emotion/es/components/Select/ui/SelectGroup/variations/_view/tokens.json +0 -10
- package/emotion/es/components/Select/ui/SelectHeader/SelectHeader.js +0 -23
- package/emotion/es/components/Select/ui/SelectHeader/SelectHeader.styles.js +0 -7
- package/emotion/es/components/Select/ui/SelectHeader/variations/_size/base.js +0 -2
- package/emotion/es/components/Select/ui/SelectHeader/variations/_size/tokens.json +0 -12
- package/emotion/es/components/Select/ui/SelectHeader/variations/_view/base.js +0 -2
- package/emotion/es/components/Select/ui/SelectHeader/variations/_view/tokens.json +0 -9
- package/emotion/es/components/Select/ui/SelectItem/SelectItem.js +0 -23
- package/emotion/es/components/Select/ui/SelectItem/SelectItem.styles.js +0 -8
- package/emotion/es/components/Select/ui/SelectItem/variations/_size/base.js +0 -2
- package/emotion/es/components/Select/ui/SelectItem/variations/_size/tokens.json +0 -19
- package/emotion/es/components/Select/ui/SelectItem/variations/_view/base.js +0 -2
- package/emotion/es/components/Select/ui/SelectItem/variations/_view/tokens.json +0 -9
- package/emotion/es/components/Select/ui/SelectTarget/SelectTarget.js +0 -148
- package/emotion/es/components/Select/ui/SelectTarget/SelectTarget.styles.js +0 -68
- package/emotion/es/components/Select/variations/_target/base.js +0 -2
- package/emotion/es/components/Select/variations/_target/tokens.json +0 -1
- package/es/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.styles_rtehle.css +0 -4
- package/es/components/Select/Select.styles_1q3i6gw.css +0 -4
- package/es/components/Select/hooks/useKeyNavigation.js.map +0 -1
- package/es/components/Select/ui/SelectChip/SelectChip.js +0 -35
- package/es/components/Select/ui/SelectChip/SelectChip.js.map +0 -1
- package/es/components/Select/ui/SelectChip/SelectChip.styles.js +0 -22
- package/es/components/Select/ui/SelectChip/SelectChip.styles.js.map +0 -1
- package/es/components/Select/ui/SelectChip/SelectChip.styles_1u4uw04.css +0 -1
- package/es/components/Select/ui/SelectDivider/SelectDivider.css +0 -35
- package/es/components/Select/ui/SelectDivider/SelectDivider.js +0 -36
- package/es/components/Select/ui/SelectDivider/SelectDivider.js.map +0 -1
- package/es/components/Select/ui/SelectDivider/SelectDivider.styles.js +0 -7
- package/es/components/Select/ui/SelectDivider/SelectDivider.styles.js.map +0 -1
- package/es/components/Select/ui/SelectDivider/SelectDivider.styles_673hj6.css +0 -1
- package/es/components/Select/ui/SelectDivider/variations/_size/base.js +0 -5
- package/es/components/Select/ui/SelectDivider/variations/_size/base.js.map +0 -1
- package/es/components/Select/ui/SelectDivider/variations/_size/base_x642ct.css +0 -1
- package/es/components/Select/ui/SelectDivider/variations/_view/base.js +0 -5
- package/es/components/Select/ui/SelectDivider/variations/_view/base.js.map +0 -1
- package/es/components/Select/ui/SelectDivider/variations/_view/base_x642ct.css +0 -1
- package/es/components/Select/ui/SelectFooter/SelectFooter.css +0 -35
- package/es/components/Select/ui/SelectFooter/SelectFooter.js +0 -36
- package/es/components/Select/ui/SelectFooter/SelectFooter.js.map +0 -1
- package/es/components/Select/ui/SelectFooter/SelectFooter.styles.js +0 -7
- package/es/components/Select/ui/SelectFooter/SelectFooter.styles.js.map +0 -1
- package/es/components/Select/ui/SelectFooter/SelectFooter.styles_11hk6tt.css +0 -1
- package/es/components/Select/ui/SelectFooter/variations/_size/base.js +0 -5
- package/es/components/Select/ui/SelectFooter/variations/_size/base.js.map +0 -1
- package/es/components/Select/ui/SelectFooter/variations/_size/base_x642ct.css +0 -1
- package/es/components/Select/ui/SelectFooter/variations/_view/base.js +0 -5
- package/es/components/Select/ui/SelectFooter/variations/_view/base.js.map +0 -1
- package/es/components/Select/ui/SelectFooter/variations/_view/base_x642ct.css +0 -1
- package/es/components/Select/ui/SelectGroup/SelectGroup.css +0 -35
- package/es/components/Select/ui/SelectGroup/SelectGroup.js +0 -36
- package/es/components/Select/ui/SelectGroup/SelectGroup.js.map +0 -1
- package/es/components/Select/ui/SelectGroup/SelectGroup.styles.js +0 -7
- package/es/components/Select/ui/SelectGroup/SelectGroup.styles.js.map +0 -1
- package/es/components/Select/ui/SelectGroup/SelectGroup.styles_mktu7e.css +0 -1
- package/es/components/Select/ui/SelectGroup/variations/_size/base.js +0 -5
- package/es/components/Select/ui/SelectGroup/variations/_size/base.js.map +0 -1
- package/es/components/Select/ui/SelectGroup/variations/_size/base_x642ct.css +0 -1
- package/es/components/Select/ui/SelectGroup/variations/_view/base.js +0 -5
- package/es/components/Select/ui/SelectGroup/variations/_view/base.js.map +0 -1
- package/es/components/Select/ui/SelectGroup/variations/_view/base_x642ct.css +0 -1
- package/es/components/Select/ui/SelectHeader/SelectHeader.css +0 -35
- package/es/components/Select/ui/SelectHeader/SelectHeader.js +0 -36
- package/es/components/Select/ui/SelectHeader/SelectHeader.js.map +0 -1
- package/es/components/Select/ui/SelectHeader/SelectHeader.styles.js +0 -7
- package/es/components/Select/ui/SelectHeader/SelectHeader.styles.js.map +0 -1
- package/es/components/Select/ui/SelectHeader/SelectHeader.styles_24gqog.css +0 -1
- package/es/components/Select/ui/SelectHeader/variations/_size/base.js +0 -5
- package/es/components/Select/ui/SelectHeader/variations/_size/base.js.map +0 -1
- package/es/components/Select/ui/SelectHeader/variations/_size/base_x642ct.css +0 -1
- package/es/components/Select/ui/SelectHeader/variations/_view/base.js +0 -5
- package/es/components/Select/ui/SelectHeader/variations/_view/base.js.map +0 -1
- package/es/components/Select/ui/SelectHeader/variations/_view/base_x642ct.css +0 -1
- package/es/components/Select/ui/SelectItem/SelectItem.css +0 -35
- package/es/components/Select/ui/SelectItem/SelectItem.js +0 -35
- package/es/components/Select/ui/SelectItem/SelectItem.js.map +0 -1
- package/es/components/Select/ui/SelectItem/SelectItem.styles.js +0 -15
- package/es/components/Select/ui/SelectItem/SelectItem.styles.js.map +0 -1
- package/es/components/Select/ui/SelectItem/SelectItem.styles_vk39mp.css +0 -1
- package/es/components/Select/ui/SelectItem/variations/_size/base.js +0 -5
- package/es/components/Select/ui/SelectItem/variations/_size/base.js.map +0 -1
- package/es/components/Select/ui/SelectItem/variations/_size/base_x642ct.css +0 -1
- package/es/components/Select/ui/SelectItem/variations/_view/base.js +0 -5
- package/es/components/Select/ui/SelectItem/variations/_view/base.js.map +0 -1
- package/es/components/Select/ui/SelectItem/variations/_view/base_x642ct.css +0 -1
- package/es/components/Select/ui/SelectTarget/SelectTarget.js +0 -144
- package/es/components/Select/ui/SelectTarget/SelectTarget.js.map +0 -1
- package/es/components/Select/ui/SelectTarget/SelectTarget.styles.js +0 -103
- package/es/components/Select/ui/SelectTarget/SelectTarget.styles.js.map +0 -1
- package/es/components/Select/ui/SelectTarget/SelectTarget.styles_hb1tns.css +0 -6
- package/es/components/Select/utils/index.js +0 -105
- package/es/components/Select/utils/index.js.map +0 -1
- package/es/components/Select/variations/_target/base.js +0 -5
- package/es/components/Select/variations/_target/base.js.map +0 -1
- package/es/components/Select/variations/_target/base_x642ct.css +0 -1
- package/styled-components/cjs/components/Select/Select.template-doc.mdx +0 -115
- package/styled-components/cjs/components/Select/hooks/index.js +0 -12
- package/styled-components/cjs/components/Select/ui/SelectChip/SelectChip.styles.js +0 -25
- package/styled-components/cjs/components/Select/ui/SelectDivider/SelectDivider.js +0 -29
- package/styled-components/cjs/components/Select/ui/SelectDivider/SelectDivider.styles.js +0 -12
- package/styled-components/cjs/components/Select/ui/SelectDivider/variations/_size/base.js +0 -8
- package/styled-components/cjs/components/Select/ui/SelectDivider/variations/_size/tokens.json +0 -8
- package/styled-components/cjs/components/Select/ui/SelectDivider/variations/_view/base.js +0 -8
- package/styled-components/cjs/components/Select/ui/SelectDivider/variations/_view/tokens.json +0 -1
- package/styled-components/cjs/components/Select/ui/SelectFooter/SelectFooter.js +0 -29
- package/styled-components/cjs/components/Select/ui/SelectFooter/SelectFooter.styles.js +0 -12
- package/styled-components/cjs/components/Select/ui/SelectFooter/variations/_size/base.js +0 -8
- package/styled-components/cjs/components/Select/ui/SelectFooter/variations/_size/tokens.json +0 -12
- package/styled-components/cjs/components/Select/ui/SelectFooter/variations/_view/base.js +0 -8
- package/styled-components/cjs/components/Select/ui/SelectFooter/variations/_view/tokens.json +0 -9
- package/styled-components/cjs/components/Select/ui/SelectGroup/SelectGroup.js +0 -29
- package/styled-components/cjs/components/Select/ui/SelectGroup/SelectGroup.styles.js +0 -12
- package/styled-components/cjs/components/Select/ui/SelectGroup/SelectGroup.type.js +0 -5
- package/styled-components/cjs/components/Select/ui/SelectGroup/variations/_size/base.js +0 -8
- package/styled-components/cjs/components/Select/ui/SelectGroup/variations/_size/tokens.json +0 -20
- package/styled-components/cjs/components/Select/ui/SelectGroup/variations/_view/base.js +0 -8
- package/styled-components/cjs/components/Select/ui/SelectGroup/variations/_view/tokens.json +0 -10
- package/styled-components/cjs/components/Select/ui/SelectHeader/SelectHeader.js +0 -29
- package/styled-components/cjs/components/Select/ui/SelectHeader/SelectHeader.styles.js +0 -12
- package/styled-components/cjs/components/Select/ui/SelectHeader/SelectHeader.type.js +0 -5
- package/styled-components/cjs/components/Select/ui/SelectHeader/variations/_size/base.js +0 -8
- package/styled-components/cjs/components/Select/ui/SelectHeader/variations/_size/tokens.json +0 -12
- package/styled-components/cjs/components/Select/ui/SelectHeader/variations/_view/base.js +0 -8
- package/styled-components/cjs/components/Select/ui/SelectHeader/variations/_view/tokens.json +0 -9
- package/styled-components/cjs/components/Select/ui/SelectItem/SelectItem.js +0 -29
- package/styled-components/cjs/components/Select/ui/SelectItem/SelectItem.styles.js +0 -13
- package/styled-components/cjs/components/Select/ui/SelectItem/SelectItem.type.js +0 -5
- package/styled-components/cjs/components/Select/ui/SelectItem/variations/_size/base.js +0 -8
- package/styled-components/cjs/components/Select/ui/SelectItem/variations/_size/tokens.json +0 -19
- package/styled-components/cjs/components/Select/ui/SelectItem/variations/_view/base.js +0 -8
- package/styled-components/cjs/components/Select/ui/SelectItem/variations/_view/tokens.json +0 -9
- package/styled-components/cjs/components/Select/ui/SelectTarget/SelectTarget.js +0 -157
- package/styled-components/cjs/components/Select/ui/SelectTarget/SelectTarget.styles.js +0 -69
- package/styled-components/cjs/components/Select/ui/SelectTarget/SelectTarget.types.js +0 -5
- package/styled-components/cjs/components/Select/variations/_target/base.js +0 -8
- package/styled-components/cjs/components/Select/variations/_target/tokens.json +0 -1
- package/styled-components/es/components/Select/Select.template-doc.mdx +0 -115
- package/styled-components/es/components/Select/hooks/index.js +0 -1
- package/styled-components/es/components/Select/ui/SelectChip/SelectChip.js +0 -31
- package/styled-components/es/components/Select/ui/SelectChip/SelectChip.styles.js +0 -19
- package/styled-components/es/components/Select/ui/SelectDivider/SelectDivider.js +0 -23
- package/styled-components/es/components/Select/ui/SelectDivider/SelectDivider.styles.js +0 -7
- package/styled-components/es/components/Select/ui/SelectDivider/variations/_size/base.js +0 -2
- package/styled-components/es/components/Select/ui/SelectDivider/variations/_size/tokens.json +0 -8
- package/styled-components/es/components/Select/ui/SelectDivider/variations/_view/base.js +0 -2
- package/styled-components/es/components/Select/ui/SelectDivider/variations/_view/tokens.json +0 -1
- package/styled-components/es/components/Select/ui/SelectFooter/SelectFooter.js +0 -23
- package/styled-components/es/components/Select/ui/SelectFooter/SelectFooter.styles.js +0 -7
- package/styled-components/es/components/Select/ui/SelectFooter/variations/_size/base.js +0 -2
- package/styled-components/es/components/Select/ui/SelectFooter/variations/_size/tokens.json +0 -12
- package/styled-components/es/components/Select/ui/SelectFooter/variations/_view/base.js +0 -2
- package/styled-components/es/components/Select/ui/SelectFooter/variations/_view/tokens.json +0 -9
- package/styled-components/es/components/Select/ui/SelectGroup/SelectGroup.js +0 -23
- package/styled-components/es/components/Select/ui/SelectGroup/SelectGroup.styles.js +0 -7
- package/styled-components/es/components/Select/ui/SelectGroup/SelectGroup.type.js +0 -1
- package/styled-components/es/components/Select/ui/SelectGroup/variations/_size/base.js +0 -2
- package/styled-components/es/components/Select/ui/SelectGroup/variations/_size/tokens.json +0 -20
- package/styled-components/es/components/Select/ui/SelectGroup/variations/_view/base.js +0 -2
- package/styled-components/es/components/Select/ui/SelectGroup/variations/_view/tokens.json +0 -10
- package/styled-components/es/components/Select/ui/SelectHeader/SelectHeader.js +0 -23
- package/styled-components/es/components/Select/ui/SelectHeader/SelectHeader.styles.js +0 -7
- package/styled-components/es/components/Select/ui/SelectHeader/SelectHeader.type.js +0 -1
- package/styled-components/es/components/Select/ui/SelectHeader/variations/_size/base.js +0 -2
- package/styled-components/es/components/Select/ui/SelectHeader/variations/_size/tokens.json +0 -12
- package/styled-components/es/components/Select/ui/SelectHeader/variations/_view/base.js +0 -2
- package/styled-components/es/components/Select/ui/SelectHeader/variations/_view/tokens.json +0 -9
- package/styled-components/es/components/Select/ui/SelectItem/SelectItem.js +0 -23
- package/styled-components/es/components/Select/ui/SelectItem/SelectItem.styles.js +0 -8
- package/styled-components/es/components/Select/ui/SelectItem/SelectItem.type.js +0 -1
- package/styled-components/es/components/Select/ui/SelectItem/variations/_size/base.js +0 -2
- package/styled-components/es/components/Select/ui/SelectItem/variations/_size/tokens.json +0 -19
- package/styled-components/es/components/Select/ui/SelectItem/variations/_view/base.js +0 -2
- package/styled-components/es/components/Select/ui/SelectItem/variations/_view/tokens.json +0 -9
- package/styled-components/es/components/Select/ui/SelectTarget/SelectTarget.js +0 -148
- package/styled-components/es/components/Select/ui/SelectTarget/SelectTarget.styles.js +0 -62
- package/styled-components/es/components/Select/ui/SelectTarget/SelectTarget.types.js +0 -1
- package/styled-components/es/components/Select/variations/_target/base.js +0 -2
- package/styled-components/es/components/Select/variations/_target/tokens.json +0 -1
- package/types/components/Select/hooks/index.d.ts +0 -2
- package/types/components/Select/hooks/index.d.ts.map +0 -1
- package/types/components/Select/hooks/useKeyNavigation.d.ts.map +0 -1
- package/types/components/Select/ui/SelectChip/SelectChip.d.ts +0 -7
- package/types/components/Select/ui/SelectChip/SelectChip.d.ts.map +0 -1
- package/types/components/Select/ui/SelectChip/SelectChip.styles.d.ts +0 -3
- package/types/components/Select/ui/SelectChip/SelectChip.styles.d.ts.map +0 -1
- package/types/components/Select/ui/SelectChip/SelectChip.types.d.ts +0 -37
- package/types/components/Select/ui/SelectChip/SelectChip.types.d.ts.map +0 -1
- package/types/components/Select/ui/SelectDivider/SelectDivider.d.ts +0 -29
- package/types/components/Select/ui/SelectDivider/SelectDivider.d.ts.map +0 -1
- package/types/components/Select/ui/SelectDivider/SelectDivider.styles.d.ts +0 -3
- package/types/components/Select/ui/SelectDivider/SelectDivider.styles.d.ts.map +0 -1
- package/types/components/Select/ui/SelectDivider/SelectDivider.types.d.ts +0 -3
- package/types/components/Select/ui/SelectDivider/SelectDivider.types.d.ts.map +0 -1
- package/types/components/Select/ui/SelectDivider/variations/_size/base.d.ts +0 -2
- package/types/components/Select/ui/SelectDivider/variations/_size/base.d.ts.map +0 -1
- package/types/components/Select/ui/SelectDivider/variations/_view/base.d.ts +0 -2
- package/types/components/Select/ui/SelectDivider/variations/_view/base.d.ts.map +0 -1
- package/types/components/Select/ui/SelectFooter/SelectFooter.d.ts +0 -29
- package/types/components/Select/ui/SelectFooter/SelectFooter.d.ts.map +0 -1
- package/types/components/Select/ui/SelectFooter/SelectFooter.styles.d.ts +0 -3
- package/types/components/Select/ui/SelectFooter/SelectFooter.styles.d.ts.map +0 -1
- package/types/components/Select/ui/SelectFooter/SelectFooter.type.d.ts +0 -3
- package/types/components/Select/ui/SelectFooter/SelectFooter.type.d.ts.map +0 -1
- package/types/components/Select/ui/SelectFooter/variations/_size/base.d.ts +0 -2
- package/types/components/Select/ui/SelectFooter/variations/_size/base.d.ts.map +0 -1
- package/types/components/Select/ui/SelectFooter/variations/_view/base.d.ts +0 -2
- package/types/components/Select/ui/SelectFooter/variations/_view/base.d.ts.map +0 -1
- package/types/components/Select/ui/SelectGroup/SelectGroup.d.ts +0 -37
- package/types/components/Select/ui/SelectGroup/SelectGroup.d.ts.map +0 -1
- package/types/components/Select/ui/SelectGroup/SelectGroup.styles.d.ts +0 -3
- package/types/components/Select/ui/SelectGroup/SelectGroup.styles.d.ts.map +0 -1
- package/types/components/Select/ui/SelectGroup/SelectGroup.type.d.ts +0 -3
- package/types/components/Select/ui/SelectGroup/SelectGroup.type.d.ts.map +0 -1
- package/types/components/Select/ui/SelectGroup/variations/_size/base.d.ts +0 -2
- package/types/components/Select/ui/SelectGroup/variations/_size/base.d.ts.map +0 -1
- package/types/components/Select/ui/SelectGroup/variations/_view/base.d.ts +0 -2
- package/types/components/Select/ui/SelectGroup/variations/_view/base.d.ts.map +0 -1
- package/types/components/Select/ui/SelectHeader/SelectHeader.d.ts +0 -29
- package/types/components/Select/ui/SelectHeader/SelectHeader.d.ts.map +0 -1
- package/types/components/Select/ui/SelectHeader/SelectHeader.styles.d.ts +0 -3
- package/types/components/Select/ui/SelectHeader/SelectHeader.styles.d.ts.map +0 -1
- package/types/components/Select/ui/SelectHeader/SelectHeader.type.d.ts +0 -3
- package/types/components/Select/ui/SelectHeader/SelectHeader.type.d.ts.map +0 -1
- package/types/components/Select/ui/SelectHeader/variations/_size/base.d.ts +0 -2
- package/types/components/Select/ui/SelectHeader/variations/_size/base.d.ts.map +0 -1
- package/types/components/Select/ui/SelectHeader/variations/_view/base.d.ts +0 -2
- package/types/components/Select/ui/SelectHeader/variations/_view/base.d.ts.map +0 -1
- package/types/components/Select/ui/SelectItem/SelectItem.d.ts +0 -53
- package/types/components/Select/ui/SelectItem/SelectItem.d.ts.map +0 -1
- package/types/components/Select/ui/SelectItem/SelectItem.styles.d.ts +0 -3
- package/types/components/Select/ui/SelectItem/SelectItem.styles.d.ts.map +0 -1
- package/types/components/Select/ui/SelectItem/SelectItem.type.d.ts +0 -3
- package/types/components/Select/ui/SelectItem/SelectItem.type.d.ts.map +0 -1
- package/types/components/Select/ui/SelectItem/variations/_size/base.d.ts +0 -2
- package/types/components/Select/ui/SelectItem/variations/_size/base.d.ts.map +0 -1
- package/types/components/Select/ui/SelectItem/variations/_view/base.d.ts +0 -2
- package/types/components/Select/ui/SelectItem/variations/_view/base.d.ts.map +0 -1
- package/types/components/Select/ui/SelectTarget/SelectTarget.d.ts +0 -7
- package/types/components/Select/ui/SelectTarget/SelectTarget.d.ts.map +0 -1
- package/types/components/Select/ui/SelectTarget/SelectTarget.styles.d.ts.map +0 -1
- package/types/components/Select/ui/SelectTarget/SelectTarget.types.d.ts +0 -60
- package/types/components/Select/ui/SelectTarget/SelectTarget.types.d.ts.map +0 -1
- package/types/components/Select/variations/_target/base.d.ts +0 -2
- package/types/components/Select/variations/_target/base.d.ts.map +0 -1
- /package/cjs/components/{Select → Combobox}/hooks/useKeyNavigation.js +0 -0
- /package/emotion/cjs/components/{Select → Combobox}/hooks/useKeyNavigation.js +0 -0
- /package/emotion/cjs/components/Select/ui/{SelectChip/SelectChip.types.js → Inner/Inner.type.js} +0 -0
- /package/emotion/cjs/components/Select/ui/{SelectDivider/SelectDivider.types.js → Inner/ui/Item/Item.types.js} +0 -0
- /package/emotion/cjs/components/Select/ui/{SelectFooter/SelectFooter.type.js → Target/Target.types.js} +0 -0
- /package/emotion/cjs/components/Select/ui/{SelectGroup/SelectGroup.type.js → Target/ui/Button/Button.types.js} +0 -0
- /package/emotion/cjs/components/Select/ui/{SelectHeader/SelectHeader.type.js → Target/ui/Textfield/Textfield.types.js} +0 -0
- /package/emotion/es/components/{Select → Combobox}/hooks/useKeyNavigation.js +0 -0
- /package/emotion/es/components/Select/ui/{SelectChip/SelectChip.types.js → Inner/Inner.type.js} +0 -0
- /package/emotion/es/components/Select/ui/{SelectDivider/SelectDivider.types.js → Inner/ui/Item/Item.types.js} +0 -0
- /package/emotion/es/components/Select/ui/{SelectFooter/SelectFooter.type.js → Target/Target.types.js} +0 -0
- /package/emotion/es/components/Select/ui/{SelectGroup/SelectGroup.type.js → Target/ui/Button/Button.types.js} +0 -0
- /package/emotion/es/components/Select/ui/{SelectHeader/SelectHeader.type.js → Target/ui/Textfield/Textfield.types.js} +0 -0
- /package/es/components/{Select → Combobox}/hooks/useKeyNavigation.js +0 -0
- /package/styled-components/cjs/components/{Select → Combobox}/hooks/useKeyNavigation.js +0 -0
- /package/{emotion/cjs/components/Select/ui/SelectItem/SelectItem.type.js → styled-components/cjs/components/Select/ui/Inner/Inner.type.js} +0 -0
- /package/{emotion/cjs/components/Select/ui/SelectTarget/SelectTarget.types.js → styled-components/cjs/components/Select/ui/Inner/ui/Item/Item.types.js} +0 -0
- /package/styled-components/cjs/components/Select/ui/{SelectChip/SelectChip.types.js → Target/Target.types.js} +0 -0
- /package/styled-components/cjs/components/Select/ui/{SelectDivider/SelectDivider.types.js → Target/ui/Button/Button.types.js} +0 -0
- /package/styled-components/cjs/components/Select/ui/{SelectFooter/SelectFooter.type.js → Target/ui/Textfield/Textfield.types.js} +0 -0
- /package/styled-components/es/components/{Select → Combobox}/hooks/useKeyNavigation.js +0 -0
- /package/{emotion/es/components/Select/ui/SelectItem/SelectItem.type.js → styled-components/es/components/Select/ui/Inner/Inner.type.js} +0 -0
- /package/{emotion/es/components/Select/ui/SelectTarget/SelectTarget.types.js → styled-components/es/components/Select/ui/Inner/ui/Item/Item.types.js} +0 -0
- /package/styled-components/es/components/Select/ui/{SelectChip/SelectChip.types.js → Target/Target.types.js} +0 -0
- /package/styled-components/es/components/Select/ui/{SelectDivider/SelectDivider.types.js → Target/ui/Button/Button.types.js} +0 -0
- /package/styled-components/es/components/Select/ui/{SelectFooter/SelectFooter.type.js → Target/ui/Textfield/Textfield.types.js} +0 -0
@@ -1,4 +1,4 @@
|
|
1
|
-
var _excluded = ["
|
1
|
+
var _excluded = ["multiselect", "value", "onChange", "target", "items", "placement", "label", "labelPlacement", "placeholder", "helperText", "isTargetAmount", "disabled", "view", "size", "listOverflow", "listHeight", "listWidth", "contentLeft", "onScrollBottom", "chipView", "variant", "portal", "renderValue", "renderItem"];
|
2
2
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
3
3
|
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
4
4
|
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
@@ -8,224 +8,290 @@ function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" !=
|
|
8
8
|
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
9
9
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
10
10
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
11
|
-
import React, {
|
12
|
-
import {
|
13
|
-
import {
|
14
|
-
import {
|
15
|
-
import {
|
11
|
+
import React, { forwardRef, useState, useReducer, useMemo, createContext, useLayoutEffect } from 'react';
|
12
|
+
import { isEmpty, getPlacements } from '../../utils';
|
13
|
+
import { useOutsideClick } from '../../hooks';
|
14
|
+
import { useKeyNavigation } from './hooks/useKeyboardNavigation';
|
15
|
+
import { initialItemsTransform, updateAncestors, updateDescendants, updateSingleAncestors } from './utils';
|
16
|
+
import { Inner, Target } from './ui';
|
17
|
+
import { pathReducer, focusedPathReducer, focusedChipIndexReducer } from './reducers';
|
18
|
+
import { usePathMaps } from './hooks/usePathMaps';
|
19
|
+
import { StyledPopover, Ul, base, OuterLabel, HelperText } from './Select.styles';
|
16
20
|
import { base as viewCSS } from './variations/_view/base';
|
17
21
|
import { base as sizeCSS } from './variations/_size/base';
|
18
|
-
|
19
|
-
import { getChildren, getNewSelected, getValues } from './utils';
|
20
|
-
import { classes } from './Select.tokens';
|
21
|
-
import { StyledNativeSelect, StyledPopover, StyledRoot, StyledSelect } from './Select.styles';
|
22
|
-
import { useKeyNavigation } from './hooks';
|
22
|
+
export var Context = /*#__PURE__*/createContext({});
|
23
23
|
|
24
24
|
/**
|
25
|
-
* Выпадающий
|
25
|
+
* Выпадающий список. Поддерживает выбор одного или нескольких значений.
|
26
26
|
*/
|
27
27
|
export var selectRoot = function selectRoot(Root) {
|
28
|
-
return /*#__PURE__*/forwardRef(function (
|
29
|
-
var
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
28
|
+
return /*#__PURE__*/forwardRef(function (props, ref) {
|
29
|
+
var _props$multiselect = props.multiselect,
|
30
|
+
multiselect = _props$multiselect === void 0 ? false : _props$multiselect,
|
31
|
+
outerValue = props.value,
|
32
|
+
outerOnChange = props.onChange,
|
33
|
+
_props$target = props.target,
|
34
|
+
target = _props$target === void 0 ? 'textfield-like' : _props$target,
|
35
|
+
items = props.items,
|
36
|
+
_props$placement = props.placement,
|
37
|
+
placement = _props$placement === void 0 ? 'bottom' : _props$placement,
|
38
|
+
label = props.label,
|
39
|
+
_props$labelPlacement = props.labelPlacement,
|
40
|
+
labelPlacement = _props$labelPlacement === void 0 ? 'outer' : _props$labelPlacement,
|
41
|
+
placeholder = props.placeholder,
|
42
|
+
helperText = props.helperText,
|
43
|
+
_props$isTargetAmount = props.isTargetAmount,
|
44
|
+
isTargetAmount = _props$isTargetAmount === void 0 ? false : _props$isTargetAmount,
|
45
|
+
_props$disabled = props.disabled,
|
46
|
+
disabled = _props$disabled === void 0 ? false : _props$disabled,
|
47
|
+
view = props.view,
|
48
|
+
size = props.size,
|
49
|
+
listOverflow = props.listOverflow,
|
50
|
+
listHeight = props.listHeight,
|
51
|
+
listWidth = props.listWidth,
|
52
|
+
contentLeft = props.contentLeft,
|
53
|
+
onScrollBottom = props.onScrollBottom,
|
54
|
+
chipView = props.chipView,
|
55
|
+
_props$variant = props.variant,
|
56
|
+
variant = _props$variant === void 0 ? 'normal' : _props$variant,
|
57
|
+
portal = props.portal,
|
58
|
+
renderValue = props.renderValue,
|
59
|
+
renderItem = props.renderItem,
|
60
|
+
rest = _objectWithoutProperties(props, _excluded);
|
61
|
+
var _useState = useState(outerValue || multiselect ? [] : ''),
|
59
62
|
_useState2 = _slicedToArray(_useState, 2),
|
60
|
-
|
61
|
-
|
62
|
-
var
|
63
|
-
var
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
var controlledRefs = {
|
69
|
-
targetRef: targetRef,
|
70
|
-
chipsRefs: chipsRefs,
|
71
|
-
selectRef: selectRef,
|
72
|
-
itemsRefs: itemsRefs
|
63
|
+
internalValue = _useState2[0],
|
64
|
+
setInternalValue = _useState2[1];
|
65
|
+
var value = outerValue || internalValue;
|
66
|
+
var onChange = function onChange(e) {
|
67
|
+
if (outerOnChange) {
|
68
|
+
outerOnChange(e);
|
69
|
+
}
|
70
|
+
setInternalValue(e);
|
73
71
|
};
|
74
|
-
var
|
72
|
+
var transformedItems = useMemo(function () {
|
73
|
+
return initialItemsTransform(items);
|
74
|
+
}, [items]);
|
75
|
+
var _usePathMaps = usePathMaps(transformedItems),
|
76
|
+
_usePathMaps2 = _slicedToArray(_usePathMaps, 4),
|
77
|
+
pathMap = _usePathMaps2[0],
|
78
|
+
focusedToValueMap = _usePathMaps2[1],
|
79
|
+
valueToCheckedMap = _usePathMaps2[2],
|
80
|
+
valueToItemMap = _usePathMaps2[3];
|
81
|
+
var _useReducer = useReducer(pathReducer, []),
|
82
|
+
_useReducer2 = _slicedToArray(_useReducer, 2),
|
83
|
+
path = _useReducer2[0],
|
84
|
+
dispatchPath = _useReducer2[1];
|
85
|
+
var _useReducer3 = useReducer(focusedPathReducer, []),
|
86
|
+
_useReducer4 = _slicedToArray(_useReducer3, 2),
|
87
|
+
focusedPath = _useReducer4[0],
|
88
|
+
dispatchFocusedPath = _useReducer4[1];
|
89
|
+
var _useReducer5 = useReducer(focusedChipIndexReducer, null),
|
90
|
+
_useReducer6 = _slicedToArray(_useReducer5, 2),
|
91
|
+
focusedChipIndex = _useReducer6[0],
|
92
|
+
dispatchFocusedChipIndex = _useReducer6[1];
|
93
|
+
var _useState3 = useState(valueToCheckedMap),
|
75
94
|
_useState4 = _slicedToArray(_useState3, 2),
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
// INFO: Из-за того, что классы передаются через ref,
|
84
|
-
// состояние пропсов после изменения view, size, target
|
85
|
-
// всегда предыдущее, поэтому нужно делать форс-ререндер
|
86
|
-
useDidMountEffect(function () {
|
87
|
-
forceUpdate();
|
88
|
-
}, [view, size, target]);
|
89
|
-
useEffect(function () {
|
90
|
-
if (disabled || readOnly) {
|
91
|
-
return;
|
95
|
+
checked = _useState4[0],
|
96
|
+
setChecked = _useState4[1];
|
97
|
+
var targetRef = useOutsideClick(function () {
|
98
|
+
if (focusedChipIndex != null) {
|
99
|
+
dispatchFocusedChipIndex({
|
100
|
+
type: 'reset'
|
101
|
+
});
|
92
102
|
}
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
103
|
+
});
|
104
|
+
var handleToggle = function handleToggle(opened) {
|
105
|
+
if (opened) {
|
106
|
+
dispatchPath({
|
107
|
+
type: 'opened_first_level'
|
108
|
+
});
|
109
|
+
} else {
|
110
|
+
dispatchFocusedPath({
|
111
|
+
type: 'reset'
|
112
|
+
});
|
113
|
+
dispatchPath({
|
114
|
+
type: 'reset'
|
115
|
+
});
|
116
|
+
dispatchFocusedChipIndex({
|
117
|
+
type: 'reset'
|
118
|
+
});
|
98
119
|
}
|
99
|
-
|
100
|
-
|
101
|
-
|
120
|
+
};
|
121
|
+
var handleCheckboxChange = function handleCheckboxChange(item) {
|
122
|
+
var checkedCopy = new Map(checked);
|
123
|
+
if (!checkedCopy.get(item.value.toString())) {
|
124
|
+
checkedCopy.set(item.value.toString(), true);
|
125
|
+
updateDescendants(item, checkedCopy, true);
|
126
|
+
} else {
|
127
|
+
checkedCopy.set(item.value.toString(), false);
|
128
|
+
updateDescendants(item, checkedCopy, false);
|
102
129
|
}
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
(
|
112
|
-
return;
|
130
|
+
updateAncestors(item, checkedCopy);
|
131
|
+
var newValues = [];
|
132
|
+
valueToItemMap.forEach(function (item, key) {
|
133
|
+
if (checkedCopy.get(key)) {
|
134
|
+
newValues.push(item.value.toString());
|
135
|
+
}
|
136
|
+
});
|
137
|
+
if (onChange) {
|
138
|
+
onChange(newValues);
|
113
139
|
}
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
}, [rest.value, rest.valueType, rest.onChangeValue, onToggle, onInnerToggle]);
|
118
|
-
var onClickChildrenItem = useCallback(function (event) {
|
119
|
-
// INFO: Для корректной работы компонента Popper
|
120
|
-
event.stopPropagation();
|
121
|
-
var item = event.currentTarget;
|
122
|
-
updateValue(item, event);
|
123
|
-
}, [updateValue]);
|
124
|
-
var onNativeSelectChange = useCallback(function (event) {
|
125
|
-
var _rest$onChangeValue3;
|
126
|
-
if (rest.valueType === 'multiple') {
|
140
|
+
};
|
141
|
+
var handleItemClick = function handleItemClick(item, e) {
|
142
|
+
if (!isEmpty(item === null || item === void 0 ? void 0 : item.items)) {
|
127
143
|
return;
|
128
144
|
}
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
145
|
+
if (multiselect) {
|
146
|
+
handleCheckboxChange(item);
|
147
|
+
} else {
|
148
|
+
if (e) {
|
149
|
+
e.stopPropagation();
|
150
|
+
}
|
151
|
+
var checkedCopy = new Map(checked);
|
152
|
+
var isCurrentChecked = checkedCopy.get(item.value);
|
153
|
+
checkedCopy.forEach(function (_, key) {
|
154
|
+
checkedCopy.set(key, false);
|
155
|
+
});
|
156
|
+
if (!isCurrentChecked) {
|
157
|
+
checkedCopy.set(item.value, 'done');
|
158
|
+
updateSingleAncestors(item, checkedCopy, 'dot');
|
159
|
+
}
|
160
|
+
if (onChange) {
|
161
|
+
onChange(isCurrentChecked ? '' : item.value);
|
162
|
+
}
|
163
|
+
}
|
164
|
+
};
|
165
|
+
var handleChipClick = function handleChipClick(currentValue) {
|
166
|
+
handleCheckboxChange(valueToItemMap.get(currentValue));
|
167
|
+
};
|
168
|
+
var handlePressDown = function handlePressDown(item, e) {
|
169
|
+
if (isEmpty(item.items)) {
|
170
|
+
handleItemClick(item, e);
|
171
|
+
} else if (multiselect) {
|
172
|
+
handleCheckboxChange(item);
|
173
|
+
}
|
174
|
+
};
|
175
|
+
var handleScroll = function handleScroll(e) {
|
176
|
+
if (!onScrollBottom) return;
|
177
|
+
var target = e.target;
|
178
|
+
if (target.scrollHeight - target.scrollTop === target.clientHeight) {
|
179
|
+
onScrollBottom(e);
|
137
180
|
}
|
138
|
-
|
139
|
-
}, [rest.valueType]);
|
181
|
+
};
|
140
182
|
var _useKeyNavigation = useKeyNavigation({
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
183
|
+
focusedPath: focusedPath,
|
184
|
+
dispatchFocusedPath: dispatchFocusedPath,
|
185
|
+
path: path,
|
186
|
+
dispatchPath: dispatchPath,
|
187
|
+
pathMap: pathMap,
|
188
|
+
focusedToValueMap: focusedToValueMap,
|
189
|
+
handleToggle: handleToggle,
|
190
|
+
handlePressDown: handlePressDown,
|
191
|
+
focusedChipIndex: focusedChipIndex,
|
192
|
+
dispatchFocusedChipIndex: dispatchFocusedChipIndex,
|
145
193
|
value: value,
|
146
|
-
|
147
|
-
|
194
|
+
valueToItemMap: valueToItemMap,
|
195
|
+
multiselect: multiselect,
|
196
|
+
isTargetAmount: isTargetAmount
|
148
197
|
}),
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
},
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
198
|
+
onKeyDown = _useKeyNavigation.onKeyDown;
|
199
|
+
var isCurrentListOpen = Boolean(path[0]);
|
200
|
+
|
201
|
+
// В данном эффекте мы следим за изменениями value и вносим коррективы в дерево чекбоксов.
|
202
|
+
useLayoutEffect(function () {
|
203
|
+
var checkedCopy = new Map(checked);
|
204
|
+
checkedCopy.forEach(function (_, key) {
|
205
|
+
checkedCopy.set(key, false);
|
206
|
+
});
|
207
|
+
if (!isEmpty(value)) {
|
208
|
+
if (Array.isArray(value)) {
|
209
|
+
value.forEach(function (val) {
|
210
|
+
checkedCopy.set(val, true);
|
211
|
+
updateDescendants(valueToItemMap.get(val), checkedCopy, true);
|
212
|
+
updateAncestors(valueToItemMap.get(val), checkedCopy);
|
213
|
+
});
|
214
|
+
} else {
|
215
|
+
checkedCopy.set(value, 'done');
|
216
|
+
updateSingleAncestors(valueToItemMap.get(value), checkedCopy, 'dot');
|
217
|
+
}
|
218
|
+
}
|
219
|
+
setChecked(checkedCopy);
|
220
|
+
}, [value]);
|
221
|
+
return /*#__PURE__*/React.createElement(Root, _extends({
|
222
|
+
ref: ref,
|
223
|
+
size: size,
|
224
|
+
view: view,
|
225
|
+
chipView: chipView
|
226
|
+
}, rest), label && labelPlacement === 'outer' && target !== 'button-like' && /*#__PURE__*/React.createElement(OuterLabel, null, label), /*#__PURE__*/React.createElement(Context.Provider, {
|
227
|
+
value: {
|
228
|
+
focusedPath: focusedPath,
|
229
|
+
checked: checked,
|
230
|
+
multiselect: multiselect,
|
231
|
+
size: size,
|
232
|
+
handleCheckboxChange: handleCheckboxChange,
|
233
|
+
handleItemClick: handleItemClick,
|
234
|
+
variant: variant,
|
235
|
+
renderItem: renderItem
|
236
|
+
}
|
237
|
+
}, /*#__PURE__*/React.createElement(StyledPopover, {
|
238
|
+
ref: targetRef,
|
239
|
+
isOpen: isCurrentListOpen,
|
240
|
+
placement: getPlacements(placement),
|
241
|
+
usePortal: Boolean(portal),
|
242
|
+
frame: portal,
|
243
|
+
onToggle: handleToggle,
|
244
|
+
trigger: "click",
|
245
|
+
target: /*#__PURE__*/React.createElement(Target, {
|
246
|
+
opened: isCurrentListOpen,
|
184
247
|
target: target,
|
185
|
-
|
248
|
+
value: value,
|
249
|
+
isTargetAmount: isTargetAmount,
|
250
|
+
multiselect: multiselect,
|
251
|
+
valueToItemMap: valueToItemMap,
|
252
|
+
focusedPath: focusedPath,
|
253
|
+
focusedToValueMap: focusedToValueMap,
|
254
|
+
onChipClick: handleChipClick,
|
186
255
|
label: label,
|
187
|
-
|
188
|
-
|
189
|
-
|
256
|
+
placeholder: placeholder,
|
257
|
+
onKeyDown: onKeyDown,
|
258
|
+
focusedChipIndex: focusedChipIndex,
|
259
|
+
labelPlacement: labelPlacement,
|
190
260
|
size: size,
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
onChange: onChangeChipValue,
|
195
|
-
onKeyDown: onKeyDownTarget
|
261
|
+
contentLeft: contentLeft,
|
262
|
+
disabled: disabled,
|
263
|
+
renderValue: renderValue
|
196
264
|
}),
|
197
|
-
className: cx(ref === null || ref === void 0 ? void 0 : ref.classList.toString()) // INFO: Прокидываем стили для Popover
|
198
|
-
,
|
199
|
-
id: innerId,
|
200
|
-
offset: offset,
|
201
|
-
frame: frame,
|
202
|
-
placement: getPlacements(placement),
|
203
|
-
trigger: "click",
|
204
|
-
usePortal: usePortal,
|
205
|
-
selectWidth: dynamicTargetWidth,
|
206
|
-
isFocusTrapped: false,
|
207
265
|
preventOverflow: false,
|
208
|
-
closeOnEsc: false,
|
209
266
|
closeOnOverlayClick: true
|
210
267
|
}, /*#__PURE__*/React.createElement(Root, _extends({
|
211
|
-
ref: setRef,
|
212
|
-
target: target,
|
213
|
-
view: view,
|
214
268
|
size: size
|
215
|
-
}, rest),
|
216
|
-
|
217
|
-
|
269
|
+
}, rest), /*#__PURE__*/React.createElement(Ul, {
|
270
|
+
role: "tree",
|
271
|
+
id: "tree_level_1",
|
272
|
+
listHeight: listHeight,
|
273
|
+
listOverflow: listOverflow,
|
274
|
+
onScroll: handleScroll,
|
275
|
+
listWidth: listWidth
|
276
|
+
}, transformedItems.map(function (item, index) {
|
277
|
+
return /*#__PURE__*/React.createElement(Inner, {
|
278
|
+
key: "".concat(index, "/0"),
|
279
|
+
item: item,
|
280
|
+
currentLevel: 0,
|
281
|
+
path: path,
|
282
|
+
dispatchPath: dispatchPath,
|
283
|
+
index: index,
|
284
|
+
listWidth: listWidth
|
285
|
+
});
|
286
|
+
}))))), helperText && target === 'textfield-like' && /*#__PURE__*/React.createElement(HelperText, null, helperText));
|
218
287
|
});
|
219
288
|
};
|
220
289
|
export var selectConfig = {
|
221
290
|
name: 'Select',
|
222
291
|
tag: 'div',
|
223
292
|
layout: selectRoot,
|
224
|
-
base:
|
293
|
+
base: base,
|
225
294
|
variations: {
|
226
|
-
target: {
|
227
|
-
css: targetCSS
|
228
|
-
},
|
229
295
|
view: {
|
230
296
|
css: viewCSS
|
231
297
|
},
|
@@ -235,6 +301,7 @@ export var selectConfig = {
|
|
235
301
|
},
|
236
302
|
defaults: {
|
237
303
|
view: 'default',
|
304
|
+
chipView: 'default',
|
238
305
|
size: 'm'
|
239
306
|
}
|
240
307
|
};
|
@@ -1,32 +1,36 @@
|
|
1
1
|
import _styled from "@emotion/styled/base";
|
2
|
+
import { css } from '@emotion/react';
|
2
3
|
import { component } from '../../engines';
|
3
4
|
import { popoverClasses, popoverConfig } from '../Popover';
|
4
|
-
import {
|
5
|
-
|
6
|
-
selectTarget = classes.selectTarget;
|
7
|
-
export var StyledRoot = /*#__PURE__*/_styled("div", {
|
8
|
-
target: "e1ea4cwt3",
|
9
|
-
label: "plasma-new-hope__StyledRoot"
|
10
|
-
})("width:100%;position:relative;.", /*#__PURE__*/String(nativeSelectVisible), "{display:block;}& .", popoverClasses.wrapper, "{display:block;}" + (process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy1lbW90aW9uL2NvbXBvbmVudHMvU2VsZWN0L1NlbGVjdC5zdHlsZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBU29DIiwiZmlsZSI6Ii4uLy4uLy4uLy4uL3NyYy1lbW90aW9uL2NvbXBvbmVudHMvU2VsZWN0L1NlbGVjdC5zdHlsZXMudHMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgc3R5bGVkIGZyb20gJ0BlbW90aW9uL3N0eWxlZCc7XG5cbmltcG9ydCB7IGNvbXBvbmVudCB9IGZyb20gJy4uLy4uL2VuZ2luZXMnO1xuaW1wb3J0IHsgcG9wb3ZlckNsYXNzZXMsIHBvcG92ZXJDb25maWcgfSBmcm9tICcuLi9Qb3BvdmVyJztcblxuaW1wb3J0IHsgdG9rZW5zLCBjbGFzc2VzIH0gZnJvbSAnLi9TZWxlY3QudG9rZW5zJztcblxuY29uc3QgeyBuYXRpdmVTZWxlY3RWaXNpYmxlLCBzZWxlY3RUYXJnZXQgfSA9IGNsYXNzZXM7XG5cbmV4cG9ydCBjb25zdCBTdHlsZWRSb290ID0gc3R5bGVkLmRpdmBcbiAgICB3aWR0aDogMTAwJTtcbiAgICBwb3NpdGlvbjogcmVsYXRpdmU7XG5cbiAgICAuJHtTdHJpbmcobmF0aXZlU2VsZWN0VmlzaWJsZSl9IHtcbiAgICAgICAgZGlzcGxheTogYmxvY2s7XG4gICAgfVxuXG4gICAgJiAuJHtwb3BvdmVyQ2xhc3Nlcy53cmFwcGVyfSB7XG4gICAgICAgIGRpc3BsYXk6IGJsb2NrO1xuICAgIH1cbmA7XG5cbmV4cG9ydCBjb25zdCBTdHlsZWRTZWxlY3QgPSBzdHlsZWQuZGl2YFxuICAgIGJveC1zaXppbmc6IGJvcmRlci1ib3g7XG4gICAgb3ZlcmZsb3cteTogYXV0bztcblxuICAgIGJhY2tncm91bmQ6IHZhcigke3Rva2Vucy5iYWNrZ3JvdW5kfSk7XG4gICAgYm94LXNoYWRvdzogdmFyKCR7dG9rZW5zLmJveFNoYWRvd30pO1xuXG4gICAgYm9yZGVyLXJhZGl1czogdmFyKCR7dG9rZW5zLmJvcmRlclJhZGl1c30pO1xuICAgIHdpZHRoOiB2YXIoJHt0b2tlbnMud2lkdGh9KTtcbiAgICBoZWlnaHQ6IHZhcigke3Rva2Vucy5oZWlnaHR9KTtcblxuICAgIHBhZGRpbmc6IHZhcigke3Rva2Vucy5wYWRkaW5nVG9wfSkgdmFyKCR7dG9rZW5zLnBhZGRpbmdSaWdodH0pIHZhcigke3Rva2Vucy5wYWRkaW5nQm90dG9tfSlcbiAgICAgICAgdmFyKCR7dG9rZW5zLnBhZGRpbmdMZWZ0fSk7XG5gO1xuXG4vLyBpc3N1ZSAjODIzXG5jb25zdCBQb3BvdmVyID0gY29tcG9uZW50KHBvcG92ZXJDb25maWcpO1xuXG5leHBvcnQgY29uc3QgU3R5bGVkUG9wb3ZlciA9IHN0eWxlZChQb3BvdmVyKTx7IHNlbGVjdFdpZHRoPzogbnVtYmVyIH0+YFxuICAgIGRpc3BsYXk6IGJsb2NrO1xuXG4gICAgLiR7U3RyaW5nKHBvcG92ZXJDbGFzc2VzLnJvb3QpfSwgLiR7U3RyaW5nKHBvcG92ZXJDbGFzc2VzLnRhcmdldCl9IHtcbiAgICAgICAgd2lkdGg6ICR7KHsgdXNlUG9ydGFsLCBzZWxlY3RXaWR0aCB9KSA9PiAodXNlUG9ydGFsID8gYCR7c2VsZWN0V2lkdGh9cHhgIDogJzEwMCUnKX07XG4gICAgfVxuYDtcblxuZXhwb3J0IGNvbnN0IFN0eWxlZE5hdGl2ZVNlbGVjdCA9IHN0eWxlZC5zZWxlY3RgXG4gICAgZGlzcGxheTogbm9uZTtcbiAgICBhcHBlYXJhbmNlOiBub25lO1xuICAgIC1tb3otYXBwZWFyYW5jZTogbm9uZTtcbiAgICAtd2Via2l0LWFwcGVhcmFuY2U6IG5vbmU7XG4gICAgYmFja2dyb3VuZDogdHJhbnNwYXJlbnQ7XG4gICAgY29sb3I6IHRyYW5zcGFyZW50O1xuICAgIGJvcmRlcjogbm9uZTtcbiAgICBvdXRsaW5lOiBub25lO1xuICAgIG9wYWNpdHk6IDE7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIGluc2V0OiAtMC4xMjVyZW07XG4gICAgei1pbmRleDogMTtcbiAgICBjdXJzb3I6ICR7KHsgZGlzYWJsZWQgfSkgPT4gKGRpc2FibGVkID8gJ25vdC1hbGxvd2VkJyA6ICdwb2ludGVyJyl9O1xuICAgIGZvbnQtc2l6ZTogMXJlbTtcblxuICAgICY6aG92ZXI6bm90KDpkaXNhYmxlZCkgKyAuJHtTdHJpbmcocG9wb3ZlckNsYXNzZXMud3JhcHBlcil9IC4ke1N0cmluZyhzZWxlY3RUYXJnZXQpfSB7XG4gICAgICAgIGJhY2tncm91bmQ6IHZhcigke3Rva2Vucy50YXJnZXRCYWNrZ3JvdW5kQ29sb3JIb3Zlcn0pO1xuICAgIH1cblxuICAgICY6Zm9jdXMtdmlzaWJsZSB7XG4gICAgICAgIGJvcmRlci1yYWRpdXM6IHZhcigke3Rva2Vucy5ib3JkZXJSYWRpdXN9KTtcbiAgICAgICAgYm94LXNoYWRvdzogMCAwIDAgMC4wNjI1cmVtIHZhcigke3Rva2Vucy5mb2N1c0NvbG9yfSk7XG4gICAgfVxuYDtcbiJdfQ== */"));
|
11
|
-
export var StyledSelect = /*#__PURE__*/_styled("div", {
|
12
|
-
target: "e1ea4cwt2",
|
13
|
-
label: "plasma-new-hope__StyledSelect"
|
14
|
-
})("box-sizing:border-box;overflow-y:auto;background:var(", tokens.background, ");box-shadow:var(", tokens.boxShadow, ");border-radius:var(", tokens.borderRadius, ");width:var(", tokens.width, ");height:var(", tokens.height, ");padding:var(", tokens.paddingTop, ") var(", tokens.paddingRight, ") var(", tokens.paddingBottom, ") var(", tokens.paddingLeft, ");" + (process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy1lbW90aW9uL2NvbXBvbmVudHMvU2VsZWN0L1NlbGVjdC5zdHlsZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBc0JzQyIsImZpbGUiOiIuLi8uLi8uLi8uLi9zcmMtZW1vdGlvbi9jb21wb25lbnRzL1NlbGVjdC9TZWxlY3Quc3R5bGVzLnRzIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHN0eWxlZCBmcm9tICdAZW1vdGlvbi9zdHlsZWQnO1xuXG5pbXBvcnQgeyBjb21wb25lbnQgfSBmcm9tICcuLi8uLi9lbmdpbmVzJztcbmltcG9ydCB7IHBvcG92ZXJDbGFzc2VzLCBwb3BvdmVyQ29uZmlnIH0gZnJvbSAnLi4vUG9wb3Zlcic7XG5cbmltcG9ydCB7IHRva2VucywgY2xhc3NlcyB9IGZyb20gJy4vU2VsZWN0LnRva2Vucyc7XG5cbmNvbnN0IHsgbmF0aXZlU2VsZWN0VmlzaWJsZSwgc2VsZWN0VGFyZ2V0IH0gPSBjbGFzc2VzO1xuXG5leHBvcnQgY29uc3QgU3R5bGVkUm9vdCA9IHN0eWxlZC5kaXZgXG4gICAgd2lkdGg6IDEwMCU7XG4gICAgcG9zaXRpb246IHJlbGF0aXZlO1xuXG4gICAgLiR7U3RyaW5nKG5hdGl2ZVNlbGVjdFZpc2libGUpfSB7XG4gICAgICAgIGRpc3BsYXk6IGJsb2NrO1xuICAgIH1cblxuICAgICYgLiR7cG9wb3ZlckNsYXNzZXMud3JhcHBlcn0ge1xuICAgICAgICBkaXNwbGF5OiBibG9jaztcbiAgICB9XG5gO1xuXG5leHBvcnQgY29uc3QgU3R5bGVkU2VsZWN0ID0gc3R5bGVkLmRpdmBcbiAgICBib3gtc2l6aW5nOiBib3JkZXItYm94O1xuICAgIG92ZXJmbG93LXk6IGF1dG87XG5cbiAgICBiYWNrZ3JvdW5kOiB2YXIoJHt0b2tlbnMuYmFja2dyb3VuZH0pO1xuICAgIGJveC1zaGFkb3c6IHZhcigke3Rva2Vucy5ib3hTaGFkb3d9KTtcblxuICAgIGJvcmRlci1yYWRpdXM6IHZhcigke3Rva2Vucy5ib3JkZXJSYWRpdXN9KTtcbiAgICB3aWR0aDogdmFyKCR7dG9rZW5zLndpZHRofSk7XG4gICAgaGVpZ2h0OiB2YXIoJHt0b2tlbnMuaGVpZ2h0fSk7XG5cbiAgICBwYWRkaW5nOiB2YXIoJHt0b2tlbnMucGFkZGluZ1RvcH0pIHZhcigke3Rva2Vucy5wYWRkaW5nUmlnaHR9KSB2YXIoJHt0b2tlbnMucGFkZGluZ0JvdHRvbX0pXG4gICAgICAgIHZhcigke3Rva2Vucy5wYWRkaW5nTGVmdH0pO1xuYDtcblxuLy8gaXNzdWUgIzgyM1xuY29uc3QgUG9wb3ZlciA9IGNvbXBvbmVudChwb3BvdmVyQ29uZmlnKTtcblxuZXhwb3J0IGNvbnN0IFN0eWxlZFBvcG92ZXIgPSBzdHlsZWQoUG9wb3Zlcik8eyBzZWxlY3RXaWR0aD86IG51bWJlciB9PmBcbiAgICBkaXNwbGF5OiBibG9jaztcblxuICAgIC4ke1N0cmluZyhwb3BvdmVyQ2xhc3Nlcy5yb290KX0sIC4ke1N0cmluZyhwb3BvdmVyQ2xhc3Nlcy50YXJnZXQpfSB7XG4gICAgICAgIHdpZHRoOiAkeyh7IHVzZVBvcnRhbCwgc2VsZWN0V2lkdGggfSkgPT4gKHVzZVBvcnRhbCA/IGAke3NlbGVjdFdpZHRofXB4YCA6ICcxMDAlJyl9O1xuICAgIH1cbmA7XG5cbmV4cG9ydCBjb25zdCBTdHlsZWROYXRpdmVTZWxlY3QgPSBzdHlsZWQuc2VsZWN0YFxuICAgIGRpc3BsYXk6IG5vbmU7XG4gICAgYXBwZWFyYW5jZTogbm9uZTtcbiAgICAtbW96LWFwcGVhcmFuY2U6IG5vbmU7XG4gICAgLXdlYmtpdC1hcHBlYXJhbmNlOiBub25lO1xuICAgIGJhY2tncm91bmQ6IHRyYW5zcGFyZW50O1xuICAgIGNvbG9yOiB0cmFuc3BhcmVudDtcbiAgICBib3JkZXI6IG5vbmU7XG4gICAgb3V0bGluZTogbm9uZTtcbiAgICBvcGFjaXR5OiAxO1xuICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICBpbnNldDogLTAuMTI1cmVtO1xuICAgIHotaW5kZXg6IDE7XG4gICAgY3Vyc29yOiAkeyh7IGRpc2FibGVkIH0pID0+IChkaXNhYmxlZCA/ICdub3QtYWxsb3dlZCcgOiAncG9pbnRlcicpfTtcbiAgICBmb250LXNpemU6IDFyZW07XG5cbiAgICAmOmhvdmVyOm5vdCg6ZGlzYWJsZWQpICsgLiR7U3RyaW5nKHBvcG92ZXJDbGFzc2VzLndyYXBwZXIpfSAuJHtTdHJpbmcoc2VsZWN0VGFyZ2V0KX0ge1xuICAgICAgICBiYWNrZ3JvdW5kOiB2YXIoJHt0b2tlbnMudGFyZ2V0QmFja2dyb3VuZENvbG9ySG92ZXJ9KTtcbiAgICB9XG5cbiAgICAmOmZvY3VzLXZpc2libGUge1xuICAgICAgICBib3JkZXItcmFkaXVzOiB2YXIoJHt0b2tlbnMuYm9yZGVyUmFkaXVzfSk7XG4gICAgICAgIGJveC1zaGFkb3c6IDAgMCAwIDAuMDYyNXJlbSB2YXIoJHt0b2tlbnMuZm9jdXNDb2xvcn0pO1xuICAgIH1cbmA7XG4iXX0= */"));
|
15
|
-
|
16
|
-
// issue #823
|
5
|
+
import { getCorrectHeight } from './utils';
|
6
|
+
import { tokens, constants } from './Select.tokens';
|
17
7
|
var Popover = /*#__PURE__*/component(popoverConfig);
|
18
8
|
export var StyledPopover = /*#__PURE__*/_styled(Popover, {
|
19
|
-
target: "
|
9
|
+
target: "e1ea4cwt3",
|
20
10
|
label: "plasma-new-hope__StyledPopover"
|
21
|
-
})("
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
}
|
26
|
-
|
11
|
+
})(".", /*#__PURE__*/String(popoverClasses.root), ",.", /*#__PURE__*/String(popoverClasses.target), "{width:100%;}" + (process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy1lbW90aW9uL2NvbXBvbmVudHMvU2VsZWN0L1NlbGVjdC5zdHlsZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBWTRDIiwiZmlsZSI6Ii4uLy4uLy4uLy4uL3NyYy1lbW90aW9uL2NvbXBvbmVudHMvU2VsZWN0L1NlbGVjdC5zdHlsZXMudHMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgc3R5bGVkIGZyb20gJ0BlbW90aW9uL3N0eWxlZCc7XG5pbXBvcnQgeyBjc3MgfSBmcm9tICdAZW1vdGlvbi9yZWFjdCc7XG5cbmltcG9ydCB7IGNvbXBvbmVudCB9IGZyb20gJy4uLy4uL2VuZ2luZXMnO1xuaW1wb3J0IHsgcG9wb3ZlckNsYXNzZXMsIHBvcG92ZXJDb25maWcgfSBmcm9tICcuLi9Qb3BvdmVyJztcblxuaW1wb3J0IHsgZ2V0Q29ycmVjdEhlaWdodCB9IGZyb20gJy4vdXRpbHMnO1xuaW1wb3J0IHsgU2VsZWN0UHJvcHMgfSBmcm9tICcuL1NlbGVjdC50eXBlcyc7XG5pbXBvcnQgeyB0b2tlbnMsIGNvbnN0YW50cyB9IGZyb20gJy4vU2VsZWN0LnRva2Vucyc7XG5cbmNvbnN0IFBvcG92ZXIgPSBjb21wb25lbnQocG9wb3ZlckNvbmZpZyk7XG5cbmV4cG9ydCBjb25zdCBTdHlsZWRQb3BvdmVyID0gc3R5bGVkKFBvcG92ZXIpYFxuICAgIC4ke1N0cmluZyhwb3BvdmVyQ2xhc3Nlcy5yb290KX0sIC4ke1N0cmluZyhwb3BvdmVyQ2xhc3Nlcy50YXJnZXQpfSB7XG4gICAgICAgIHdpZHRoOiAxMDAlO1xuICAgIH1cbmA7XG5cbmV4cG9ydCBjb25zdCBVbCA9IHN0eWxlZC51bDx7XG4gICAgbGlzdE92ZXJmbG93PzogU2VsZWN0UHJvcHNbJ2xpc3RPdmVyZmxvdyddO1xuICAgIGxpc3RIZWlnaHQ/OiBTZWxlY3RQcm9wc1snbGlzdEhlaWdodCddO1xuICAgIGxpc3RXaWR0aD86IFNlbGVjdFByb3BzWydsaXN0V2lkdGgnXTtcbiAgICBpc0lubmVyVWw/OiBib29sZWFuO1xufT5gXG4gICAgYm94LXNpemluZzogYm9yZGVyLWJveDtcblxuICAgIGJhY2tncm91bmQ6IHZhcigke2NvbnN0YW50cy5iYWNrZ3JvdW5kfSk7XG4gICAgYm94LXNoYWRvdzogdmFyKCR7Y29uc3RhbnRzLmJveFNoYWRvd30pO1xuXG4gICAgYm9yZGVyLXJhZGl1czogdmFyKCR7dG9rZW5zLmJvcmRlclJhZGl1c30pO1xuICAgIHdpZHRoOiAkeyh7IGxpc3RXaWR0aCB9KSA9PiBsaXN0V2lkdGggfHwgJzEwMCUnfTtcbiAgICBoZWlnaHQ6ICR7KHsgbGlzdEhlaWdodCB9KSA9PiAobGlzdEhlaWdodCA/IGdldENvcnJlY3RIZWlnaHQobGlzdEhlaWdodCkgOiAnYXV0bycpfTtcbiAgICBvdmVyZmxvdzogJHsoeyBsaXN0T3ZlcmZsb3cgfSkgPT4gbGlzdE92ZXJmbG93IHx8ICdpbml0aWFsJ307XG5cbiAgICBtYXJnaW46ICR7KHsgaXNJbm5lclVsIH0pID0+IChpc0lubmVyVWwgPyBgY2FsYyh2YXIoJHt0b2tlbnMucGFkZGluZ30pICogLTEpIDAgMCB2YXIoJHt0b2tlbnMucGFkZGluZ30pYCA6IDApfTtcbiAgICBwYWRkaW5nOiB2YXIoJHt0b2tlbnMucGFkZGluZ30pO1xuYDtcblxuZXhwb3J0IGNvbnN0IGJhc2UgPSBjc3NgXG4gICAgLiR7cG9wb3ZlckNsYXNzZXMud3JhcHBlcn0sIC4ke3BvcG92ZXJDbGFzc2VzLnRhcmdldH0ge1xuICAgICAgICBkaXNwbGF5OiBibG9jaztcbiAgICB9XG5gO1xuXG5leHBvcnQgY29uc3QgT3V0ZXJMYWJlbCA9IHN0eWxlZC5sYWJlbGBcbiAgICBkaXNwbGF5OiBibG9jaztcbiAgICBtYXJnaW4tYm90dG9tOiB2YXIoJHt0b2tlbnMubGFiZWxPZmZzZXR9KTtcbiAgICBjb2xvcjogdmFyKCR7Y29uc3RhbnRzLnRleHRmaWVsZE91dGVyTGFiZWxDb2xvcn0pO1xuXG4gICAgZm9udC1mYW1pbHk6IHZhcigke3Rva2Vucy5mb250RmFtaWx5fSk7XG4gICAgZm9udC1zaXplOiB2YXIoJHt0b2tlbnMuZm9udFNpemV9KTtcbiAgICBmb250LXN0eWxlOiB2YXIoJHt0b2tlbnMuZm9udFN0eWxlfSk7XG4gICAgZm9udC13ZWlnaHQ6IHZhcigke3Rva2Vucy5mb250V2VpZ2h0fSk7XG4gICAgbGV0dGVyLXNwYWNpbmc6IHZhcigke3Rva2Vucy5mb250TGV0dGVyU3BhY2luZ30pO1xuICAgIGxpbmUtaGVpZ2h0OiB2YXIoJHt0b2tlbnMuZm9udExpbmVIZWlnaHR9KTtcbmA7XG5cbmV4cG9ydCBjb25zdCBIZWxwZXJUZXh0ID0gc3R5bGVkLmRpdmBcbiAgICBtYXJnaW4tdG9wOiB2YXIoJHt0b2tlbnMuaGVscGVyVGV4dE9mZnNldH0pO1xuICAgIGNvbG9yOiB2YXIoJHt0b2tlbnMuaGVscGVyVGV4dENvbG9yfSk7XG4gICAgZm9udC1mYW1pbHk6IHZhcigke2NvbnN0YW50cy5mb250RmFtaWx5fSk7XG4gICAgZm9udC1zaXplOiB2YXIoJHtjb25zdGFudHMuZm9udFNpemV9KTtcbiAgICBmb250LXN0eWxlOiB2YXIoJHtjb25zdGFudHMuZm9udFN0eWxlfSk7XG4gICAgZm9udC13ZWlnaHQ6IHZhcigke2NvbnN0YW50cy5mb250V2VpZ2h0fSk7XG4gICAgbGV0dGVyLXNwYWNpbmc6IHZhcigke2NvbnN0YW50cy5mb250TGV0dGVyU3BhY2luZ30pO1xuICAgIGxpbmUtaGVpZ2h0OiB2YXIoJHtjb25zdGFudHMuZm9udExpbmVIZWlnaHR9KTtcbmA7XG4iXX0= */"));
|
12
|
+
export var Ul = /*#__PURE__*/_styled("ul", {
|
13
|
+
target: "e1ea4cwt2",
|
14
|
+
label: "plasma-new-hope__Ul"
|
15
|
+
})("box-sizing:border-box;background:var(", constants.background, ");box-shadow:var(", constants.boxShadow, ");border-radius:var(", tokens.borderRadius, ");width:", function (_ref) {
|
16
|
+
var listWidth = _ref.listWidth;
|
17
|
+
return listWidth || '100%';
|
18
|
+
}, ";height:", function (_ref2) {
|
19
|
+
var listHeight = _ref2.listHeight;
|
20
|
+
return listHeight ? getCorrectHeight(listHeight) : 'auto';
|
21
|
+
}, ";overflow:", function (_ref3) {
|
22
|
+
var listOverflow = _ref3.listOverflow;
|
23
|
+
return listOverflow || 'initial';
|
24
|
+
}, ";margin:", function (_ref4) {
|
25
|
+
var isInnerUl = _ref4.isInnerUl;
|
26
|
+
return isInnerUl ? "calc(var(".concat(tokens.padding, ") * -1) 0 0 var(").concat(tokens.padding, ")") : 0;
|
27
|
+
}, ";padding:var(", tokens.padding, ");" + (process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy1lbW90aW9uL2NvbXBvbmVudHMvU2VsZWN0L1NlbGVjdC5zdHlsZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBdUJFIiwiZmlsZSI6Ii4uLy4uLy4uLy4uL3NyYy1lbW90aW9uL2NvbXBvbmVudHMvU2VsZWN0L1NlbGVjdC5zdHlsZXMudHMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgc3R5bGVkIGZyb20gJ0BlbW90aW9uL3N0eWxlZCc7XG5pbXBvcnQgeyBjc3MgfSBmcm9tICdAZW1vdGlvbi9yZWFjdCc7XG5cbmltcG9ydCB7IGNvbXBvbmVudCB9IGZyb20gJy4uLy4uL2VuZ2luZXMnO1xuaW1wb3J0IHsgcG9wb3ZlckNsYXNzZXMsIHBvcG92ZXJDb25maWcgfSBmcm9tICcuLi9Qb3BvdmVyJztcblxuaW1wb3J0IHsgZ2V0Q29ycmVjdEhlaWdodCB9IGZyb20gJy4vdXRpbHMnO1xuaW1wb3J0IHsgU2VsZWN0UHJvcHMgfSBmcm9tICcuL1NlbGVjdC50eXBlcyc7XG5pbXBvcnQgeyB0b2tlbnMsIGNvbnN0YW50cyB9IGZyb20gJy4vU2VsZWN0LnRva2Vucyc7XG5cbmNvbnN0IFBvcG92ZXIgPSBjb21wb25lbnQocG9wb3ZlckNvbmZpZyk7XG5cbmV4cG9ydCBjb25zdCBTdHlsZWRQb3BvdmVyID0gc3R5bGVkKFBvcG92ZXIpYFxuICAgIC4ke1N0cmluZyhwb3BvdmVyQ2xhc3Nlcy5yb290KX0sIC4ke1N0cmluZyhwb3BvdmVyQ2xhc3Nlcy50YXJnZXQpfSB7XG4gICAgICAgIHdpZHRoOiAxMDAlO1xuICAgIH1cbmA7XG5cbmV4cG9ydCBjb25zdCBVbCA9IHN0eWxlZC51bDx7XG4gICAgbGlzdE92ZXJmbG93PzogU2VsZWN0UHJvcHNbJ2xpc3RPdmVyZmxvdyddO1xuICAgIGxpc3RIZWlnaHQ/OiBTZWxlY3RQcm9wc1snbGlzdEhlaWdodCddO1xuICAgIGxpc3RXaWR0aD86IFNlbGVjdFByb3BzWydsaXN0V2lkdGgnXTtcbiAgICBpc0lubmVyVWw/OiBib29sZWFuO1xufT5gXG4gICAgYm94LXNpemluZzogYm9yZGVyLWJveDtcblxuICAgIGJhY2tncm91bmQ6IHZhcigke2NvbnN0YW50cy5iYWNrZ3JvdW5kfSk7XG4gICAgYm94LXNoYWRvdzogdmFyKCR7Y29uc3RhbnRzLmJveFNoYWRvd30pO1xuXG4gICAgYm9yZGVyLXJhZGl1czogdmFyKCR7dG9rZW5zLmJvcmRlclJhZGl1c30pO1xuICAgIHdpZHRoOiAkeyh7IGxpc3RXaWR0aCB9KSA9PiBsaXN0V2lkdGggfHwgJzEwMCUnfTtcbiAgICBoZWlnaHQ6ICR7KHsgbGlzdEhlaWdodCB9KSA9PiAobGlzdEhlaWdodCA/IGdldENvcnJlY3RIZWlnaHQobGlzdEhlaWdodCkgOiAnYXV0bycpfTtcbiAgICBvdmVyZmxvdzogJHsoeyBsaXN0T3ZlcmZsb3cgfSkgPT4gbGlzdE92ZXJmbG93IHx8ICdpbml0aWFsJ307XG5cbiAgICBtYXJnaW46ICR7KHsgaXNJbm5lclVsIH0pID0+IChpc0lubmVyVWwgPyBgY2FsYyh2YXIoJHt0b2tlbnMucGFkZGluZ30pICogLTEpIDAgMCB2YXIoJHt0b2tlbnMucGFkZGluZ30pYCA6IDApfTtcbiAgICBwYWRkaW5nOiB2YXIoJHt0b2tlbnMucGFkZGluZ30pO1xuYDtcblxuZXhwb3J0IGNvbnN0IGJhc2UgPSBjc3NgXG4gICAgLiR7cG9wb3ZlckNsYXNzZXMud3JhcHBlcn0sIC4ke3BvcG92ZXJDbGFzc2VzLnRhcmdldH0ge1xuICAgICAgICBkaXNwbGF5OiBibG9jaztcbiAgICB9XG5gO1xuXG5leHBvcnQgY29uc3QgT3V0ZXJMYWJlbCA9IHN0eWxlZC5sYWJlbGBcbiAgICBkaXNwbGF5OiBibG9jaztcbiAgICBtYXJnaW4tYm90dG9tOiB2YXIoJHt0b2tlbnMubGFiZWxPZmZzZXR9KTtcbiAgICBjb2xvcjogdmFyKCR7Y29uc3RhbnRzLnRleHRmaWVsZE91dGVyTGFiZWxDb2xvcn0pO1xuXG4gICAgZm9udC1mYW1pbHk6IHZhcigke3Rva2Vucy5mb250RmFtaWx5fSk7XG4gICAgZm9udC1zaXplOiB2YXIoJHt0b2tlbnMuZm9udFNpemV9KTtcbiAgICBmb250LXN0eWxlOiB2YXIoJHt0b2tlbnMuZm9udFN0eWxlfSk7XG4gICAgZm9udC13ZWlnaHQ6IHZhcigke3Rva2Vucy5mb250V2VpZ2h0fSk7XG4gICAgbGV0dGVyLXNwYWNpbmc6IHZhcigke3Rva2Vucy5mb250TGV0dGVyU3BhY2luZ30pO1xuICAgIGxpbmUtaGVpZ2h0OiB2YXIoJHt0b2tlbnMuZm9udExpbmVIZWlnaHR9KTtcbmA7XG5cbmV4cG9ydCBjb25zdCBIZWxwZXJUZXh0ID0gc3R5bGVkLmRpdmBcbiAgICBtYXJnaW4tdG9wOiB2YXIoJHt0b2tlbnMuaGVscGVyVGV4dE9mZnNldH0pO1xuICAgIGNvbG9yOiB2YXIoJHt0b2tlbnMuaGVscGVyVGV4dENvbG9yfSk7XG4gICAgZm9udC1mYW1pbHk6IHZhcigke2NvbnN0YW50cy5mb250RmFtaWx5fSk7XG4gICAgZm9udC1zaXplOiB2YXIoJHtjb25zdGFudHMuZm9udFNpemV9KTtcbiAgICBmb250LXN0eWxlOiB2YXIoJHtjb25zdGFudHMuZm9udFN0eWxlfSk7XG4gICAgZm9udC13ZWlnaHQ6IHZhcigke2NvbnN0YW50cy5mb250V2VpZ2h0fSk7XG4gICAgbGV0dGVyLXNwYWNpbmc6IHZhcigke2NvbnN0YW50cy5mb250TGV0dGVyU3BhY2luZ30pO1xuICAgIGxpbmUtaGVpZ2h0OiB2YXIoJHtjb25zdGFudHMuZm9udExpbmVIZWlnaHR9KTtcbmA7XG4iXX0= */"));
|
28
|
+
export var base = /*#__PURE__*/css(".", popoverClasses.wrapper, ",.", popoverClasses.target, "{display:block;};label:plasma-new-hope__base;" + (process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy1lbW90aW9uL2NvbXBvbmVudHMvU2VsZWN0L1NlbGVjdC5zdHlsZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBc0N1QiIsImZpbGUiOiIuLi8uLi8uLi8uLi9zcmMtZW1vdGlvbi9jb21wb25lbnRzL1NlbGVjdC9TZWxlY3Quc3R5bGVzLnRzIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHN0eWxlZCBmcm9tICdAZW1vdGlvbi9zdHlsZWQnO1xuaW1wb3J0IHsgY3NzIH0gZnJvbSAnQGVtb3Rpb24vcmVhY3QnO1xuXG5pbXBvcnQgeyBjb21wb25lbnQgfSBmcm9tICcuLi8uLi9lbmdpbmVzJztcbmltcG9ydCB7IHBvcG92ZXJDbGFzc2VzLCBwb3BvdmVyQ29uZmlnIH0gZnJvbSAnLi4vUG9wb3Zlcic7XG5cbmltcG9ydCB7IGdldENvcnJlY3RIZWlnaHQgfSBmcm9tICcuL3V0aWxzJztcbmltcG9ydCB7IFNlbGVjdFByb3BzIH0gZnJvbSAnLi9TZWxlY3QudHlwZXMnO1xuaW1wb3J0IHsgdG9rZW5zLCBjb25zdGFudHMgfSBmcm9tICcuL1NlbGVjdC50b2tlbnMnO1xuXG5jb25zdCBQb3BvdmVyID0gY29tcG9uZW50KHBvcG92ZXJDb25maWcpO1xuXG5leHBvcnQgY29uc3QgU3R5bGVkUG9wb3ZlciA9IHN0eWxlZChQb3BvdmVyKWBcbiAgICAuJHtTdHJpbmcocG9wb3ZlckNsYXNzZXMucm9vdCl9LCAuJHtTdHJpbmcocG9wb3ZlckNsYXNzZXMudGFyZ2V0KX0ge1xuICAgICAgICB3aWR0aDogMTAwJTtcbiAgICB9XG5gO1xuXG5leHBvcnQgY29uc3QgVWwgPSBzdHlsZWQudWw8e1xuICAgIGxpc3RPdmVyZmxvdz86IFNlbGVjdFByb3BzWydsaXN0T3ZlcmZsb3cnXTtcbiAgICBsaXN0SGVpZ2h0PzogU2VsZWN0UHJvcHNbJ2xpc3RIZWlnaHQnXTtcbiAgICBsaXN0V2lkdGg/OiBTZWxlY3RQcm9wc1snbGlzdFdpZHRoJ107XG4gICAgaXNJbm5lclVsPzogYm9vbGVhbjtcbn0+YFxuICAgIGJveC1zaXppbmc6IGJvcmRlci1ib3g7XG5cbiAgICBiYWNrZ3JvdW5kOiB2YXIoJHtjb25zdGFudHMuYmFja2dyb3VuZH0pO1xuICAgIGJveC1zaGFkb3c6IHZhcigke2NvbnN0YW50cy5ib3hTaGFkb3d9KTtcblxuICAgIGJvcmRlci1yYWRpdXM6IHZhcigke3Rva2Vucy5ib3JkZXJSYWRpdXN9KTtcbiAgICB3aWR0aDogJHsoeyBsaXN0V2lkdGggfSkgPT4gbGlzdFdpZHRoIHx8ICcxMDAlJ307XG4gICAgaGVpZ2h0OiAkeyh7IGxpc3RIZWlnaHQgfSkgPT4gKGxpc3RIZWlnaHQgPyBnZXRDb3JyZWN0SGVpZ2h0KGxpc3RIZWlnaHQpIDogJ2F1dG8nKX07XG4gICAgb3ZlcmZsb3c6ICR7KHsgbGlzdE92ZXJmbG93IH0pID0+IGxpc3RPdmVyZmxvdyB8fCAnaW5pdGlhbCd9O1xuXG4gICAgbWFyZ2luOiAkeyh7IGlzSW5uZXJVbCB9KSA9PiAoaXNJbm5lclVsID8gYGNhbGModmFyKCR7dG9rZW5zLnBhZGRpbmd9KSAqIC0xKSAwIDAgdmFyKCR7dG9rZW5zLnBhZGRpbmd9KWAgOiAwKX07XG4gICAgcGFkZGluZzogdmFyKCR7dG9rZW5zLnBhZGRpbmd9KTtcbmA7XG5cbmV4cG9ydCBjb25zdCBiYXNlID0gY3NzYFxuICAgIC4ke3BvcG92ZXJDbGFzc2VzLndyYXBwZXJ9LCAuJHtwb3BvdmVyQ2xhc3Nlcy50YXJnZXR9IHtcbiAgICAgICAgZGlzcGxheTogYmxvY2s7XG4gICAgfVxuYDtcblxuZXhwb3J0IGNvbnN0IE91dGVyTGFiZWwgPSBzdHlsZWQubGFiZWxgXG4gICAgZGlzcGxheTogYmxvY2s7XG4gICAgbWFyZ2luLWJvdHRvbTogdmFyKCR7dG9rZW5zLmxhYmVsT2Zmc2V0fSk7XG4gICAgY29sb3I6IHZhcigke2NvbnN0YW50cy50ZXh0ZmllbGRPdXRlckxhYmVsQ29sb3J9KTtcblxuICAgIGZvbnQtZmFtaWx5OiB2YXIoJHt0b2tlbnMuZm9udEZhbWlseX0pO1xuICAgIGZvbnQtc2l6ZTogdmFyKCR7dG9rZW5zLmZvbnRTaXplfSk7XG4gICAgZm9udC1zdHlsZTogdmFyKCR7dG9rZW5zLmZvbnRTdHlsZX0pO1xuICAgIGZvbnQtd2VpZ2h0OiB2YXIoJHt0b2tlbnMuZm9udFdlaWdodH0pO1xuICAgIGxldHRlci1zcGFjaW5nOiB2YXIoJHt0b2tlbnMuZm9udExldHRlclNwYWNpbmd9KTtcbiAgICBsaW5lLWhlaWdodDogdmFyKCR7dG9rZW5zLmZvbnRMaW5lSGVpZ2h0fSk7XG5gO1xuXG5leHBvcnQgY29uc3QgSGVscGVyVGV4dCA9IHN0eWxlZC5kaXZgXG4gICAgbWFyZ2luLXRvcDogdmFyKCR7dG9rZW5zLmhlbHBlclRleHRPZmZzZXR9KTtcbiAgICBjb2xvcjogdmFyKCR7dG9rZW5zLmhlbHBlclRleHRDb2xvcn0pO1xuICAgIGZvbnQtZmFtaWx5OiB2YXIoJHtjb25zdGFudHMuZm9udEZhbWlseX0pO1xuICAgIGZvbnQtc2l6ZTogdmFyKCR7Y29uc3RhbnRzLmZvbnRTaXplfSk7XG4gICAgZm9udC1zdHlsZTogdmFyKCR7Y29uc3RhbnRzLmZvbnRTdHlsZX0pO1xuICAgIGZvbnQtd2VpZ2h0OiB2YXIoJHtjb25zdGFudHMuZm9udFdlaWdodH0pO1xuICAgIGxldHRlci1zcGFjaW5nOiB2YXIoJHtjb25zdGFudHMuZm9udExldHRlclNwYWNpbmd9KTtcbiAgICBsaW5lLWhlaWdodDogdmFyKCR7Y29uc3RhbnRzLmZvbnRMaW5lSGVpZ2h0fSk7XG5gO1xuIl19 */"));
|
29
|
+
export var OuterLabel = /*#__PURE__*/_styled("label", {
|
30
|
+
target: "e1ea4cwt1",
|
31
|
+
label: "plasma-new-hope__OuterLabel"
|
32
|
+
})("display:block;margin-bottom:var(", tokens.labelOffset, ");color:var(", constants.textfieldOuterLabelColor, ");font-family:var(", tokens.fontFamily, ");font-size:var(", tokens.fontSize, ");font-style:var(", tokens.fontStyle, ");font-weight:var(", tokens.fontWeight, ");letter-spacing:var(", tokens.fontLetterSpacing, ");line-height:var(", tokens.fontLineHeight, ");" + (process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy1lbW90aW9uL2NvbXBvbmVudHMvU2VsZWN0L1NlbGVjdC5zdHlsZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBNENzQyIsImZpbGUiOiIuLi8uLi8uLi8uLi9zcmMtZW1vdGlvbi9jb21wb25lbnRzL1NlbGVjdC9TZWxlY3Quc3R5bGVzLnRzIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHN0eWxlZCBmcm9tICdAZW1vdGlvbi9zdHlsZWQnO1xuaW1wb3J0IHsgY3NzIH0gZnJvbSAnQGVtb3Rpb24vcmVhY3QnO1xuXG5pbXBvcnQgeyBjb21wb25lbnQgfSBmcm9tICcuLi8uLi9lbmdpbmVzJztcbmltcG9ydCB7IHBvcG92ZXJDbGFzc2VzLCBwb3BvdmVyQ29uZmlnIH0gZnJvbSAnLi4vUG9wb3Zlcic7XG5cbmltcG9ydCB7IGdldENvcnJlY3RIZWlnaHQgfSBmcm9tICcuL3V0aWxzJztcbmltcG9ydCB7IFNlbGVjdFByb3BzIH0gZnJvbSAnLi9TZWxlY3QudHlwZXMnO1xuaW1wb3J0IHsgdG9rZW5zLCBjb25zdGFudHMgfSBmcm9tICcuL1NlbGVjdC50b2tlbnMnO1xuXG5jb25zdCBQb3BvdmVyID0gY29tcG9uZW50KHBvcG92ZXJDb25maWcpO1xuXG5leHBvcnQgY29uc3QgU3R5bGVkUG9wb3ZlciA9IHN0eWxlZChQb3BvdmVyKWBcbiAgICAuJHtTdHJpbmcocG9wb3ZlckNsYXNzZXMucm9vdCl9LCAuJHtTdHJpbmcocG9wb3ZlckNsYXNzZXMudGFyZ2V0KX0ge1xuICAgICAgICB3aWR0aDogMTAwJTtcbiAgICB9XG5gO1xuXG5leHBvcnQgY29uc3QgVWwgPSBzdHlsZWQudWw8e1xuICAgIGxpc3RPdmVyZmxvdz86IFNlbGVjdFByb3BzWydsaXN0T3ZlcmZsb3cnXTtcbiAgICBsaXN0SGVpZ2h0PzogU2VsZWN0UHJvcHNbJ2xpc3RIZWlnaHQnXTtcbiAgICBsaXN0V2lkdGg/OiBTZWxlY3RQcm9wc1snbGlzdFdpZHRoJ107XG4gICAgaXNJbm5lclVsPzogYm9vbGVhbjtcbn0+YFxuICAgIGJveC1zaXppbmc6IGJvcmRlci1ib3g7XG5cbiAgICBiYWNrZ3JvdW5kOiB2YXIoJHtjb25zdGFudHMuYmFja2dyb3VuZH0pO1xuICAgIGJveC1zaGFkb3c6IHZhcigke2NvbnN0YW50cy5ib3hTaGFkb3d9KTtcblxuICAgIGJvcmRlci1yYWRpdXM6IHZhcigke3Rva2Vucy5ib3JkZXJSYWRpdXN9KTtcbiAgICB3aWR0aDogJHsoeyBsaXN0V2lkdGggfSkgPT4gbGlzdFdpZHRoIHx8ICcxMDAlJ307XG4gICAgaGVpZ2h0OiAkeyh7IGxpc3RIZWlnaHQgfSkgPT4gKGxpc3RIZWlnaHQgPyBnZXRDb3JyZWN0SGVpZ2h0KGxpc3RIZWlnaHQpIDogJ2F1dG8nKX07XG4gICAgb3ZlcmZsb3c6ICR7KHsgbGlzdE92ZXJmbG93IH0pID0+IGxpc3RPdmVyZmxvdyB8fCAnaW5pdGlhbCd9O1xuXG4gICAgbWFyZ2luOiAkeyh7IGlzSW5uZXJVbCB9KSA9PiAoaXNJbm5lclVsID8gYGNhbGModmFyKCR7dG9rZW5zLnBhZGRpbmd9KSAqIC0xKSAwIDAgdmFyKCR7dG9rZW5zLnBhZGRpbmd9KWAgOiAwKX07XG4gICAgcGFkZGluZzogdmFyKCR7dG9rZW5zLnBhZGRpbmd9KTtcbmA7XG5cbmV4cG9ydCBjb25zdCBiYXNlID0gY3NzYFxuICAgIC4ke3BvcG92ZXJDbGFzc2VzLndyYXBwZXJ9LCAuJHtwb3BvdmVyQ2xhc3Nlcy50YXJnZXR9IHtcbiAgICAgICAgZGlzcGxheTogYmxvY2s7XG4gICAgfVxuYDtcblxuZXhwb3J0IGNvbnN0IE91dGVyTGFiZWwgPSBzdHlsZWQubGFiZWxgXG4gICAgZGlzcGxheTogYmxvY2s7XG4gICAgbWFyZ2luLWJvdHRvbTogdmFyKCR7dG9rZW5zLmxhYmVsT2Zmc2V0fSk7XG4gICAgY29sb3I6IHZhcigke2NvbnN0YW50cy50ZXh0ZmllbGRPdXRlckxhYmVsQ29sb3J9KTtcblxuICAgIGZvbnQtZmFtaWx5OiB2YXIoJHt0b2tlbnMuZm9udEZhbWlseX0pO1xuICAgIGZvbnQtc2l6ZTogdmFyKCR7dG9rZW5zLmZvbnRTaXplfSk7XG4gICAgZm9udC1zdHlsZTogdmFyKCR7dG9rZW5zLmZvbnRTdHlsZX0pO1xuICAgIGZvbnQtd2VpZ2h0OiB2YXIoJHt0b2tlbnMuZm9udFdlaWdodH0pO1xuICAgIGxldHRlci1zcGFjaW5nOiB2YXIoJHt0b2tlbnMuZm9udExldHRlclNwYWNpbmd9KTtcbiAgICBsaW5lLWhlaWdodDogdmFyKCR7dG9rZW5zLmZvbnRMaW5lSGVpZ2h0fSk7XG5gO1xuXG5leHBvcnQgY29uc3QgSGVscGVyVGV4dCA9IHN0eWxlZC5kaXZgXG4gICAgbWFyZ2luLXRvcDogdmFyKCR7dG9rZW5zLmhlbHBlclRleHRPZmZzZXR9KTtcbiAgICBjb2xvcjogdmFyKCR7dG9rZW5zLmhlbHBlclRleHRDb2xvcn0pO1xuICAgIGZvbnQtZmFtaWx5OiB2YXIoJHtjb25zdGFudHMuZm9udEZhbWlseX0pO1xuICAgIGZvbnQtc2l6ZTogdmFyKCR7Y29uc3RhbnRzLmZvbnRTaXplfSk7XG4gICAgZm9udC1zdHlsZTogdmFyKCR7Y29uc3RhbnRzLmZvbnRTdHlsZX0pO1xuICAgIGZvbnQtd2VpZ2h0OiB2YXIoJHtjb25zdGFudHMuZm9udFdlaWdodH0pO1xuICAgIGxldHRlci1zcGFjaW5nOiB2YXIoJHtjb25zdGFudHMuZm9udExldHRlclNwYWNpbmd9KTtcbiAgICBsaW5lLWhlaWdodDogdmFyKCR7Y29uc3RhbnRzLmZvbnRMaW5lSGVpZ2h0fSk7XG5gO1xuIl19 */"));
|
33
|
+
export var HelperText = /*#__PURE__*/_styled("div", {
|
27
34
|
target: "e1ea4cwt0",
|
28
|
-
label: "plasma-new-
|
29
|
-
})("
|
30
|
-
var disabled = _ref2.disabled;
|
31
|
-
return disabled ? 'not-allowed' : 'pointer';
|
32
|
-
}, ";font-size:1rem;&:hover:not(:disabled)+.", /*#__PURE__*/String(popoverClasses.wrapper), " .", /*#__PURE__*/String(selectTarget), "{background:var(", tokens.targetBackgroundColorHover, ");}&:focus-visible{border-radius:var(", tokens.borderRadius, ");box-shadow:0 0 0 0.0625rem var(", tokens.focusColor, ");}" + (process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy1lbW90aW9uL2NvbXBvbmVudHMvU2VsZWN0L1NlbGVjdC5zdHlsZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBZ0QrQyIsImZpbGUiOiIuLi8uLi8uLi8uLi9zcmMtZW1vdGlvbi9jb21wb25lbnRzL1NlbGVjdC9TZWxlY3Quc3R5bGVzLnRzIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHN0eWxlZCBmcm9tICdAZW1vdGlvbi9zdHlsZWQnO1xuXG5pbXBvcnQgeyBjb21wb25lbnQgfSBmcm9tICcuLi8uLi9lbmdpbmVzJztcbmltcG9ydCB7IHBvcG92ZXJDbGFzc2VzLCBwb3BvdmVyQ29uZmlnIH0gZnJvbSAnLi4vUG9wb3Zlcic7XG5cbmltcG9ydCB7IHRva2VucywgY2xhc3NlcyB9IGZyb20gJy4vU2VsZWN0LnRva2Vucyc7XG5cbmNvbnN0IHsgbmF0aXZlU2VsZWN0VmlzaWJsZSwgc2VsZWN0VGFyZ2V0IH0gPSBjbGFzc2VzO1xuXG5leHBvcnQgY29uc3QgU3R5bGVkUm9vdCA9IHN0eWxlZC5kaXZgXG4gICAgd2lkdGg6IDEwMCU7XG4gICAgcG9zaXRpb246IHJlbGF0aXZlO1xuXG4gICAgLiR7U3RyaW5nKG5hdGl2ZVNlbGVjdFZpc2libGUpfSB7XG4gICAgICAgIGRpc3BsYXk6IGJsb2NrO1xuICAgIH1cblxuICAgICYgLiR7cG9wb3ZlckNsYXNzZXMud3JhcHBlcn0ge1xuICAgICAgICBkaXNwbGF5OiBibG9jaztcbiAgICB9XG5gO1xuXG5leHBvcnQgY29uc3QgU3R5bGVkU2VsZWN0ID0gc3R5bGVkLmRpdmBcbiAgICBib3gtc2l6aW5nOiBib3JkZXItYm94O1xuICAgIG92ZXJmbG93LXk6IGF1dG87XG5cbiAgICBiYWNrZ3JvdW5kOiB2YXIoJHt0b2tlbnMuYmFja2dyb3VuZH0pO1xuICAgIGJveC1zaGFkb3c6IHZhcigke3Rva2Vucy5ib3hTaGFkb3d9KTtcblxuICAgIGJvcmRlci1yYWRpdXM6IHZhcigke3Rva2Vucy5ib3JkZXJSYWRpdXN9KTtcbiAgICB3aWR0aDogdmFyKCR7dG9rZW5zLndpZHRofSk7XG4gICAgaGVpZ2h0OiB2YXIoJHt0b2tlbnMuaGVpZ2h0fSk7XG5cbiAgICBwYWRkaW5nOiB2YXIoJHt0b2tlbnMucGFkZGluZ1RvcH0pIHZhcigke3Rva2Vucy5wYWRkaW5nUmlnaHR9KSB2YXIoJHt0b2tlbnMucGFkZGluZ0JvdHRvbX0pXG4gICAgICAgIHZhcigke3Rva2Vucy5wYWRkaW5nTGVmdH0pO1xuYDtcblxuLy8gaXNzdWUgIzgyM1xuY29uc3QgUG9wb3ZlciA9IGNvbXBvbmVudChwb3BvdmVyQ29uZmlnKTtcblxuZXhwb3J0IGNvbnN0IFN0eWxlZFBvcG92ZXIgPSBzdHlsZWQoUG9wb3Zlcik8eyBzZWxlY3RXaWR0aD86IG51bWJlciB9PmBcbiAgICBkaXNwbGF5OiBibG9jaztcblxuICAgIC4ke1N0cmluZyhwb3BvdmVyQ2xhc3Nlcy5yb290KX0sIC4ke1N0cmluZyhwb3BvdmVyQ2xhc3Nlcy50YXJnZXQpfSB7XG4gICAgICAgIHdpZHRoOiAkeyh7IHVzZVBvcnRhbCwgc2VsZWN0V2lkdGggfSkgPT4gKHVzZVBvcnRhbCA/IGAke3NlbGVjdFdpZHRofXB4YCA6ICcxMDAlJyl9O1xuICAgIH1cbmA7XG5cbmV4cG9ydCBjb25zdCBTdHlsZWROYXRpdmVTZWxlY3QgPSBzdHlsZWQuc2VsZWN0YFxuICAgIGRpc3BsYXk6IG5vbmU7XG4gICAgYXBwZWFyYW5jZTogbm9uZTtcbiAgICAtbW96LWFwcGVhcmFuY2U6IG5vbmU7XG4gICAgLXdlYmtpdC1hcHBlYXJhbmNlOiBub25lO1xuICAgIGJhY2tncm91bmQ6IHRyYW5zcGFyZW50O1xuICAgIGNvbG9yOiB0cmFuc3BhcmVudDtcbiAgICBib3JkZXI6IG5vbmU7XG4gICAgb3V0bGluZTogbm9uZTtcbiAgICBvcGFjaXR5OiAxO1xuICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICBpbnNldDogLTAuMTI1cmVtO1xuICAgIHotaW5kZXg6IDE7XG4gICAgY3Vyc29yOiAkeyh7IGRpc2FibGVkIH0pID0+IChkaXNhYmxlZCA/ICdub3QtYWxsb3dlZCcgOiAncG9pbnRlcicpfTtcbiAgICBmb250LXNpemU6IDFyZW07XG5cbiAgICAmOmhvdmVyOm5vdCg6ZGlzYWJsZWQpICsgLiR7U3RyaW5nKHBvcG92ZXJDbGFzc2VzLndyYXBwZXIpfSAuJHtTdHJpbmcoc2VsZWN0VGFyZ2V0KX0ge1xuICAgICAgICBiYWNrZ3JvdW5kOiB2YXIoJHt0b2tlbnMudGFyZ2V0QmFja2dyb3VuZENvbG9ySG92ZXJ9KTtcbiAgICB9XG5cbiAgICAmOmZvY3VzLXZpc2libGUge1xuICAgICAgICBib3JkZXItcmFkaXVzOiB2YXIoJHt0b2tlbnMuYm9yZGVyUmFkaXVzfSk7XG4gICAgICAgIGJveC1zaGFkb3c6IDAgMCAwIDAuMDYyNXJlbSB2YXIoJHt0b2tlbnMuZm9jdXNDb2xvcn0pO1xuICAgIH1cbmA7XG4iXX0= */"));
|
35
|
+
label: "plasma-new-hope__HelperText"
|
36
|
+
})("margin-top:var(", tokens.helperTextOffset, ");color:var(", tokens.helperTextColor, ");font-family:var(", constants.fontFamily, ");font-size:var(", constants.fontSize, ");font-style:var(", constants.fontStyle, ");font-weight:var(", constants.fontWeight, ");letter-spacing:var(", constants.fontLetterSpacing, ");line-height:var(", constants.fontLineHeight, ");" + (process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy1lbW90aW9uL2NvbXBvbmVudHMvU2VsZWN0L1NlbGVjdC5zdHlsZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBeURvQyIsImZpbGUiOiIuLi8uLi8uLi8uLi9zcmMtZW1vdGlvbi9jb21wb25lbnRzL1NlbGVjdC9TZWxlY3Quc3R5bGVzLnRzIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHN0eWxlZCBmcm9tICdAZW1vdGlvbi9zdHlsZWQnO1xuaW1wb3J0IHsgY3NzIH0gZnJvbSAnQGVtb3Rpb24vcmVhY3QnO1xuXG5pbXBvcnQgeyBjb21wb25lbnQgfSBmcm9tICcuLi8uLi9lbmdpbmVzJztcbmltcG9ydCB7IHBvcG92ZXJDbGFzc2VzLCBwb3BvdmVyQ29uZmlnIH0gZnJvbSAnLi4vUG9wb3Zlcic7XG5cbmltcG9ydCB7IGdldENvcnJlY3RIZWlnaHQgfSBmcm9tICcuL3V0aWxzJztcbmltcG9ydCB7IFNlbGVjdFByb3BzIH0gZnJvbSAnLi9TZWxlY3QudHlwZXMnO1xuaW1wb3J0IHsgdG9rZW5zLCBjb25zdGFudHMgfSBmcm9tICcuL1NlbGVjdC50b2tlbnMnO1xuXG5jb25zdCBQb3BvdmVyID0gY29tcG9uZW50KHBvcG92ZXJDb25maWcpO1xuXG5leHBvcnQgY29uc3QgU3R5bGVkUG9wb3ZlciA9IHN0eWxlZChQb3BvdmVyKWBcbiAgICAuJHtTdHJpbmcocG9wb3ZlckNsYXNzZXMucm9vdCl9LCAuJHtTdHJpbmcocG9wb3ZlckNsYXNzZXMudGFyZ2V0KX0ge1xuICAgICAgICB3aWR0aDogMTAwJTtcbiAgICB9XG5gO1xuXG5leHBvcnQgY29uc3QgVWwgPSBzdHlsZWQudWw8e1xuICAgIGxpc3RPdmVyZmxvdz86IFNlbGVjdFByb3BzWydsaXN0T3ZlcmZsb3cnXTtcbiAgICBsaXN0SGVpZ2h0PzogU2VsZWN0UHJvcHNbJ2xpc3RIZWlnaHQnXTtcbiAgICBsaXN0V2lkdGg/OiBTZWxlY3RQcm9wc1snbGlzdFdpZHRoJ107XG4gICAgaXNJbm5lclVsPzogYm9vbGVhbjtcbn0+YFxuICAgIGJveC1zaXppbmc6IGJvcmRlci1ib3g7XG5cbiAgICBiYWNrZ3JvdW5kOiB2YXIoJHtjb25zdGFudHMuYmFja2dyb3VuZH0pO1xuICAgIGJveC1zaGFkb3c6IHZhcigke2NvbnN0YW50cy5ib3hTaGFkb3d9KTtcblxuICAgIGJvcmRlci1yYWRpdXM6IHZhcigke3Rva2Vucy5ib3JkZXJSYWRpdXN9KTtcbiAgICB3aWR0aDogJHsoeyBsaXN0V2lkdGggfSkgPT4gbGlzdFdpZHRoIHx8ICcxMDAlJ307XG4gICAgaGVpZ2h0OiAkeyh7IGxpc3RIZWlnaHQgfSkgPT4gKGxpc3RIZWlnaHQgPyBnZXRDb3JyZWN0SGVpZ2h0KGxpc3RIZWlnaHQpIDogJ2F1dG8nKX07XG4gICAgb3ZlcmZsb3c6ICR7KHsgbGlzdE92ZXJmbG93IH0pID0+IGxpc3RPdmVyZmxvdyB8fCAnaW5pdGlhbCd9O1xuXG4gICAgbWFyZ2luOiAkeyh7IGlzSW5uZXJVbCB9KSA9PiAoaXNJbm5lclVsID8gYGNhbGModmFyKCR7dG9rZW5zLnBhZGRpbmd9KSAqIC0xKSAwIDAgdmFyKCR7dG9rZW5zLnBhZGRpbmd9KWAgOiAwKX07XG4gICAgcGFkZGluZzogdmFyKCR7dG9rZW5zLnBhZGRpbmd9KTtcbmA7XG5cbmV4cG9ydCBjb25zdCBiYXNlID0gY3NzYFxuICAgIC4ke3BvcG92ZXJDbGFzc2VzLndyYXBwZXJ9LCAuJHtwb3BvdmVyQ2xhc3Nlcy50YXJnZXR9IHtcbiAgICAgICAgZGlzcGxheTogYmxvY2s7XG4gICAgfVxuYDtcblxuZXhwb3J0IGNvbnN0IE91dGVyTGFiZWwgPSBzdHlsZWQubGFiZWxgXG4gICAgZGlzcGxheTogYmxvY2s7XG4gICAgbWFyZ2luLWJvdHRvbTogdmFyKCR7dG9rZW5zLmxhYmVsT2Zmc2V0fSk7XG4gICAgY29sb3I6IHZhcigke2NvbnN0YW50cy50ZXh0ZmllbGRPdXRlckxhYmVsQ29sb3J9KTtcblxuICAgIGZvbnQtZmFtaWx5OiB2YXIoJHt0b2tlbnMuZm9udEZhbWlseX0pO1xuICAgIGZvbnQtc2l6ZTogdmFyKCR7dG9rZW5zLmZvbnRTaXplfSk7XG4gICAgZm9udC1zdHlsZTogdmFyKCR7dG9rZW5zLmZvbnRTdHlsZX0pO1xuICAgIGZvbnQtd2VpZ2h0OiB2YXIoJHt0b2tlbnMuZm9udFdlaWdodH0pO1xuICAgIGxldHRlci1zcGFjaW5nOiB2YXIoJHt0b2tlbnMuZm9udExldHRlclNwYWNpbmd9KTtcbiAgICBsaW5lLWhlaWdodDogdmFyKCR7dG9rZW5zLmZvbnRMaW5lSGVpZ2h0fSk7XG5gO1xuXG5leHBvcnQgY29uc3QgSGVscGVyVGV4dCA9IHN0eWxlZC5kaXZgXG4gICAgbWFyZ2luLXRvcDogdmFyKCR7dG9rZW5zLmhlbHBlclRleHRPZmZzZXR9KTtcbiAgICBjb2xvcjogdmFyKCR7dG9rZW5zLmhlbHBlclRleHRDb2xvcn0pO1xuICAgIGZvbnQtZmFtaWx5OiB2YXIoJHtjb25zdGFudHMuZm9udEZhbWlseX0pO1xuICAgIGZvbnQtc2l6ZTogdmFyKCR7Y29uc3RhbnRzLmZvbnRTaXplfSk7XG4gICAgZm9udC1zdHlsZTogdmFyKCR7Y29uc3RhbnRzLmZvbnRTdHlsZX0pO1xuICAgIGZvbnQtd2VpZ2h0OiB2YXIoJHtjb25zdGFudHMuZm9udFdlaWdodH0pO1xuICAgIGxldHRlci1zcGFjaW5nOiB2YXIoJHtjb25zdGFudHMuZm9udExldHRlclNwYWNpbmd9KTtcbiAgICBsaW5lLWhlaWdodDogdmFyKCR7Y29uc3RhbnRzLmZvbnRMaW5lSGVpZ2h0fSk7XG5gO1xuIl19 */"));
|