@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
@@ -3,10 +3,15 @@
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
4
4
|
value: true
|
5
5
|
});
|
6
|
-
exports.getValidComponent = void 0;
|
6
|
+
exports.updatePropsRecursively = exports.getValues = exports.getValidComponent = exports.getNewSelected = exports.getChildren = void 0;
|
7
7
|
var _react = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("react"));
|
8
8
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
9
9
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n["default"] = e, t && t.set(e, n), n; }
|
10
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
11
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
12
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
13
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
14
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
10
15
|
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
11
16
|
var isReactObject = function isReactObject(element) {
|
12
17
|
return _typeof(element) === 'object' || typeof element === 'function';
|
@@ -20,4 +25,103 @@ var getValidComponent = exports.getValidComponent = function getValidComponent(e
|
|
20
25
|
return /*#__PURE__*/_react["default"].createElement(Component, props);
|
21
26
|
}
|
22
27
|
return element;
|
28
|
+
};
|
29
|
+
var getNewSelected = exports.getNewSelected = function getNewSelected(selected, newValue, type) {
|
30
|
+
if (newValue === undefined || newValue === null) {
|
31
|
+
return newValue;
|
32
|
+
}
|
33
|
+
if ((type === 'single' || type === 'native') && (typeof newValue === 'string' || typeof newValue === 'number' || typeof newValue === 'boolean')) {
|
34
|
+
return newValue;
|
35
|
+
}
|
36
|
+
var newSelected = selected || [];
|
37
|
+
var set = new Set(newSelected);
|
38
|
+
if (set.has(newValue)) {
|
39
|
+
set["delete"](newValue);
|
40
|
+
} else {
|
41
|
+
set.add(newValue);
|
42
|
+
}
|
43
|
+
return Array.from(set);
|
44
|
+
};
|
45
|
+
var getChildrenInnerText = function getChildrenInnerText(children) {
|
46
|
+
if (!children || typeof children === 'string') {
|
47
|
+
return children;
|
48
|
+
}
|
49
|
+
return getChildrenInnerText(children.props.children);
|
50
|
+
};
|
51
|
+
var getValues = exports.getValues = function getValues(items, value) {
|
52
|
+
var result = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : [];
|
53
|
+
items.forEach(function (item) {
|
54
|
+
if (item.props === undefined) {
|
55
|
+
return result;
|
56
|
+
}
|
57
|
+
var newValue = item.props.value;
|
58
|
+
if (item.props.children && Array.isArray(item.props.children)) {
|
59
|
+
return getValues(item.props.children, value, result);
|
60
|
+
}
|
61
|
+
if (!Array.isArray(value) && newValue === value || Array.isArray(value) && value !== null && value !== void 0 && value.find(function (v) {
|
62
|
+
return newValue === v;
|
63
|
+
})) {
|
64
|
+
var index = Array.isArray(value) && (value === null || value === void 0 ? void 0 : value.findIndex(function (v) {
|
65
|
+
return newValue === v;
|
66
|
+
})) || 0;
|
67
|
+
if (item.props.text) {
|
68
|
+
var _newText = item.props.text;
|
69
|
+
result[index] = [newValue, _newText];
|
70
|
+
return;
|
71
|
+
}
|
72
|
+
var newText = getChildrenInnerText(item.props.children);
|
73
|
+
result[index] = [newValue, newText];
|
74
|
+
}
|
75
|
+
return result;
|
76
|
+
});
|
77
|
+
return result;
|
78
|
+
};
|
79
|
+
var getChildrenItemChecked = function getChildrenItemChecked(value, child) {
|
80
|
+
return !Array.isArray(value) && (child === null || child === void 0 ? void 0 : child.props.value) === value || Array.isArray(value) && Boolean(value === null || value === void 0 ? void 0 : value.find(function (v) {
|
81
|
+
return (child === null || child === void 0 ? void 0 : child.props.value) === v;
|
82
|
+
}));
|
83
|
+
};
|
84
|
+
|
85
|
+
// INFO: Функция для рекурсивного обновления пропсов
|
86
|
+
var updatePropsRecursively = exports.updatePropsRecursively = function updatePropsRecursively(children, externalProps, value, search, filterFunction) {
|
87
|
+
return _react.Children.map(children || [], function (child) {
|
88
|
+
if (! /*#__PURE__*/(0, _react.isValidElement)(child)) {
|
89
|
+
return child;
|
90
|
+
}
|
91
|
+
var hasValue = ('value' in (child === null || child === void 0 ? void 0 : child.props));
|
92
|
+
var props = _objectSpread({
|
93
|
+
key: "".concat(value, "$"),
|
94
|
+
checked: getChildrenItemChecked(value, child)
|
95
|
+
}, hasValue && {
|
96
|
+
ref: function ref(element) {
|
97
|
+
var _externalProps$childr;
|
98
|
+
if (externalProps !== null && externalProps !== void 0 && (_externalProps$childr = externalProps.childrenRefs) !== null && _externalProps$childr !== void 0 && _externalProps$childr.current && element) {
|
99
|
+
externalProps.childrenRefs.current.push(element);
|
100
|
+
}
|
101
|
+
},
|
102
|
+
onClick: function onClick(event) {
|
103
|
+
var _child$props$onClick, _child$props, _externalProps$onClic;
|
104
|
+
(_child$props$onClick = (_child$props = child.props).onClick) === null || _child$props$onClick === void 0 || _child$props$onClick.call(_child$props, event);
|
105
|
+
externalProps === null || externalProps === void 0 || (_externalProps$onClic = externalProps.onClick) === null || _externalProps$onClic === void 0 || _externalProps$onClic.call(externalProps, event);
|
106
|
+
}
|
107
|
+
});
|
108
|
+
var updatedChild = updatePropsRecursively(child.props.children, externalProps, value, search, filterFunction);
|
109
|
+
if (filterFunction) {
|
110
|
+
var _child$props2;
|
111
|
+
var text = ((_child$props2 = child.props) === null || _child$props2 === void 0 ? void 0 : _child$props2.text) || '';
|
112
|
+
return filterFunction(text, search) ? /*#__PURE__*/(0, _react.cloneElement)(child, props, updatedChild) : null;
|
113
|
+
}
|
114
|
+
return /*#__PURE__*/(0, _react.cloneElement)(child, props, updatedChild);
|
115
|
+
});
|
116
|
+
};
|
117
|
+
var defaultFilterFunction = function defaultFilterFunction(text) {
|
118
|
+
var filterValue = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
|
119
|
+
return text.includes(filterValue);
|
120
|
+
};
|
121
|
+
var getChildren = exports.getChildren = function getChildren(children, externalProps, value, search) {
|
122
|
+
var filterFunction = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : defaultFilterFunction;
|
123
|
+
if (externalProps.childrenRefs) {
|
124
|
+
externalProps.childrenRefs.current = [];
|
125
|
+
}
|
126
|
+
return updatePropsRecursively(children, externalProps, value, search, filterFunction);
|
23
127
|
};
|
@@ -18,24 +18,52 @@ var tokens = exports.tokens = {
|
|
18
18
|
borderRadius: '--plasma-dropdown-border-radius',
|
19
19
|
padding: '--plasma-dropdown-padding',
|
20
20
|
disclosureIconColor: '--plasma-dropdown-disclosure-icon-color',
|
21
|
+
disabledOpacity: '--plasma-dropdown-disabled-opacity',
|
22
|
+
focusColor: '--plasma-dropdown-focus-color',
|
21
23
|
itemBackground: '--plasma-dropdown-item-background',
|
22
|
-
itemColor: '--plasma-dropdown-item-color',
|
23
24
|
itemBackgroundHover: '--plasma-dropdown-item-background-hover',
|
25
|
+
itemBackgroundSelected: '--plasma-dropdown-item-background-selected',
|
26
|
+
// Old
|
27
|
+
itemBackgroundSelectedHover: '--plasma-dropdown-item-background-selected-hover',
|
28
|
+
// Old
|
29
|
+
itemColor: '--plasma-dropdown-item-color',
|
30
|
+
itemColorSelected: '--plasma-dropdown-item-color-selected',
|
31
|
+
// Old
|
32
|
+
itemColorSelectedHover: '--plasma-dropdown-item-color-selected-hover',
|
33
|
+
// Old
|
24
34
|
itemBorderRadius: '--plasma-dropdown-item-border-radius',
|
35
|
+
itemWidth: '--plasma-dropdown-item-width',
|
36
|
+
// Old
|
37
|
+
itemHeight: '--plasma-dropdown-item-height',
|
38
|
+
// Old
|
39
|
+
itemMarginTop: '--plasma-dropdown-item-margin-top',
|
40
|
+
// Old
|
41
|
+
itemMarginRight: '--plasma-dropdown-item-margin-right',
|
42
|
+
// Old
|
43
|
+
itemMarginBottom: '--plasma-dropdown-item-margin-bottom',
|
44
|
+
// Old
|
45
|
+
itemMarginLeft: '--plasma-dropdown-item-margin-left',
|
46
|
+
// Old
|
25
47
|
itemPaddingTop: '--plasma-dropdown-item-padding-top',
|
26
48
|
itemPaddingTopTight: '--plasma-dropdown-item-padding-top-tight',
|
27
49
|
itemPaddingRight: '--plasma-dropdown-item-padding-right',
|
28
50
|
itemPaddingBottom: '--plasma-dropdown-item-padding-bottom',
|
29
51
|
itemPaddingBottomTight: '--plasma-dropdown-item-padding-bottom-tight',
|
30
52
|
itemPaddingLeft: '--plasma-dropdown-item-padding-left',
|
53
|
+
itemContentLeftWidth: '--plasma-dropdown-item-content-left-width',
|
54
|
+
// Old
|
55
|
+
itemContentLeftColor: '--plasma-dropdown-item-content-left-color',
|
56
|
+
// Old
|
57
|
+
itemContentRightWidth: '--plasma-dropdown-item-content-right-width',
|
58
|
+
// Old
|
59
|
+
itemContentRightColor: '--plasma-dropdown-item-content-right-color',
|
60
|
+
// Old
|
31
61
|
itemFontFamily: '--plasma-dropdown-item-font-family',
|
32
62
|
itemFontSize: '--plasma-dropdown-item-font-size',
|
33
63
|
itemFontStyle: '--plasma-dropdown-item-font-style',
|
34
64
|
itemFontWeightBold: '--plasma-dropdown-item-letter-spacing',
|
35
65
|
itemFontLetterSpacing: '--plasma-dropdown-item-line-height',
|
36
66
|
itemFontLineHeight: '--plasma-dropdown-item-font-weight',
|
37
|
-
disabledOpacity: '--plasma-dropdown-disabled-opacity',
|
38
|
-
focusColor: '--plasma-dropdown-focus-color',
|
39
67
|
// TODO: Remove below tokens as soon as they are no longer needed
|
40
68
|
footerBackground: '--plasma-dropdown-footer-background',
|
41
69
|
footerWidth: '--plasma-dropdown-footer-width',
|
@@ -103,19 +131,5 @@ var tokens = exports.tokens = {
|
|
103
131
|
groupLabelMarginTop: '--plasma-dropdown-group-label-margin-top',
|
104
132
|
groupLabelMarginRight: '--plasma-dropdown-group-label-margin-right',
|
105
133
|
groupLabelMarginBottom: '--plasma-dropdown-group-label-margin-bottom',
|
106
|
-
groupLabelMarginLeft: '--plasma-dropdown-group-label-margin-left'
|
107
|
-
itemBackgroundSelected: '--plasma-dropdown-item-background-selected',
|
108
|
-
itemColorSelected: '--plasma-dropdown-item-color-selected',
|
109
|
-
itemBackgroundSelectedHover: '--plasma-dropdown-item-background-selected-hover',
|
110
|
-
itemColorSelectedHover: '--plasma-dropdown-item-color-selected-hover',
|
111
|
-
itemContentLeftColor: '--plasma-dropdown-item-content-left-color',
|
112
|
-
itemContentRightColor: '--plasma-dropdown-item-content-right-color',
|
113
|
-
itemWidth: '--plasma-dropdown-item-width',
|
114
|
-
itemHeight: '--plasma-dropdown-item-height',
|
115
|
-
itemMarginTop: '--plasma-dropdown-item-margin-top',
|
116
|
-
itemMarginRight: '--plasma-dropdown-item-margin-right',
|
117
|
-
itemMarginBottom: '--plasma-dropdown-item-margin-bottom',
|
118
|
-
itemMarginLeft: '--plasma-dropdown-item-margin-left',
|
119
|
-
itemContentLeftWidth: '--plasma-dropdown-item-content-left-width',
|
120
|
-
itemContentRightWidth: '--plasma-dropdown-item-content-right-width'
|
134
|
+
groupLabelMarginLeft: '--plasma-dropdown-group-label-margin-left'
|
121
135
|
};
|
@@ -36,14 +36,19 @@ var useKeyNavigation = exports.useKeyNavigation = function useKeyNavigation(_ref
|
|
36
36
|
closeOnSelect = _ref.closeOnSelect,
|
37
37
|
onItemSelect = _ref.onItemSelect,
|
38
38
|
onItemClick = _ref.onItemClick;
|
39
|
-
var currentLength = pathMap.get(path === null || path === void 0 ? void 0 : path[path.length - 1]) || 0;
|
40
39
|
var currentIndex = (focusedPath === null || focusedPath === void 0 ? void 0 : focusedPath[focusedPath.length - 1]) || 0;
|
40
|
+
var currentLength = pathMap.get(path === null || path === void 0 ? void 0 : path[focusedPath.length - 1]) || 0;
|
41
41
|
var onKeyDown = function onKeyDown(event) {
|
42
42
|
switch (event.code) {
|
43
43
|
case keys.ArrowUp:
|
44
44
|
{
|
45
45
|
if (focusedPath.length) {
|
46
46
|
if (currentIndex > 0) {
|
47
|
+
if (path.length > focusedPath.length) {
|
48
|
+
dispatchPath({
|
49
|
+
type: 'removed_last_level'
|
50
|
+
});
|
51
|
+
}
|
47
52
|
dispatchFocusedPath({
|
48
53
|
type: 'change_last_focus',
|
49
54
|
value: currentIndex - 1
|
@@ -64,6 +69,11 @@ var useKeyNavigation = exports.useKeyNavigation = function useKeyNavigation(_ref
|
|
64
69
|
{
|
65
70
|
if (focusedPath.length) {
|
66
71
|
if (currentIndex + 1 < currentLength) {
|
72
|
+
if (path.length > focusedPath.length) {
|
73
|
+
dispatchPath({
|
74
|
+
type: 'removed_last_level'
|
75
|
+
});
|
76
|
+
}
|
67
77
|
dispatchFocusedPath({
|
68
78
|
type: 'change_last_focus',
|
69
79
|
value: currentIndex + 1
|
@@ -83,14 +93,17 @@ var useKeyNavigation = exports.useKeyNavigation = function useKeyNavigation(_ref
|
|
83
93
|
case keys.ArrowLeft:
|
84
94
|
{
|
85
95
|
if (focusedPath.length) {
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
96
|
+
if (path.length > focusedPath.length) {
|
97
|
+
dispatchPath({
|
98
|
+
type: 'removed_last_level'
|
99
|
+
});
|
100
|
+
} else {
|
101
|
+
dispatchFocusedPath({
|
102
|
+
type: 'return_prev_focus'
|
103
|
+
});
|
104
|
+
}
|
92
105
|
}
|
93
|
-
if (
|
106
|
+
if (path.length === 1) {
|
94
107
|
handleGlobalToggle(false, event);
|
95
108
|
}
|
96
109
|
break;
|
@@ -102,14 +115,17 @@ var useKeyNavigation = exports.useKeyNavigation = function useKeyNavigation(_ref
|
|
102
115
|
}
|
103
116
|
var currentItem = getFurtherPath(focusedPath, focusedToValueMap);
|
104
117
|
if (currentItem !== null && currentItem !== void 0 && currentItem.items) {
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
118
|
+
if (path.length > focusedPath.length) {
|
119
|
+
dispatchFocusedPath({
|
120
|
+
type: 'add_focus',
|
121
|
+
value: 0
|
122
|
+
});
|
123
|
+
} else {
|
124
|
+
dispatchPath({
|
125
|
+
type: 'added_next_level',
|
126
|
+
value: currentItem.value.toString()
|
127
|
+
});
|
128
|
+
}
|
113
129
|
}
|
114
130
|
break;
|
115
131
|
}
|
@@ -131,14 +147,17 @@ var useKeyNavigation = exports.useKeyNavigation = function useKeyNavigation(_ref
|
|
131
147
|
break;
|
132
148
|
}
|
133
149
|
if (_currentItem !== null && _currentItem !== void 0 && _currentItem.items) {
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
150
|
+
if (path.length > focusedPath.length) {
|
151
|
+
dispatchFocusedPath({
|
152
|
+
type: 'add_focus',
|
153
|
+
value: 0
|
154
|
+
});
|
155
|
+
} else {
|
156
|
+
dispatchPath({
|
157
|
+
type: 'added_next_level',
|
158
|
+
value: _currentItem.value.toString()
|
159
|
+
});
|
160
|
+
}
|
142
161
|
} else {
|
143
162
|
if (closeOnSelect) {
|
144
163
|
handleGlobalToggle(false, event);
|
@@ -167,6 +186,11 @@ var useKeyNavigation = exports.useKeyNavigation = function useKeyNavigation(_ref
|
|
167
186
|
case keys.Home:
|
168
187
|
{
|
169
188
|
if (path[0]) {
|
189
|
+
if (path.length > focusedPath.length) {
|
190
|
+
dispatchPath({
|
191
|
+
type: 'removed_last_level'
|
192
|
+
});
|
193
|
+
}
|
170
194
|
dispatchFocusedPath({
|
171
195
|
type: 'change_last_focus',
|
172
196
|
value: 0
|
@@ -185,6 +209,11 @@ var useKeyNavigation = exports.useKeyNavigation = function useKeyNavigation(_ref
|
|
185
209
|
case keys.End:
|
186
210
|
{
|
187
211
|
if (path[0]) {
|
212
|
+
if (path.length > focusedPath.length) {
|
213
|
+
dispatchPath({
|
214
|
+
type: 'removed_last_level'
|
215
|
+
});
|
216
|
+
}
|
188
217
|
dispatchFocusedPath({
|
189
218
|
type: 'change_last_focus',
|
190
219
|
value: currentLength - 1
|
@@ -206,6 +235,11 @@ var useKeyNavigation = exports.useKeyNavigation = function useKeyNavigation(_ref
|
|
206
235
|
if (!path[0]) {
|
207
236
|
break;
|
208
237
|
}
|
238
|
+
if (path.length > focusedPath.length) {
|
239
|
+
dispatchPath({
|
240
|
+
type: 'removed_last_level'
|
241
|
+
});
|
242
|
+
}
|
209
243
|
if (currentIndex <= JUMP_SIZE) {
|
210
244
|
dispatchFocusedPath({
|
211
245
|
type: 'change_last_focus',
|
@@ -224,6 +258,11 @@ var useKeyNavigation = exports.useKeyNavigation = function useKeyNavigation(_ref
|
|
224
258
|
if (!path[0]) {
|
225
259
|
break;
|
226
260
|
}
|
261
|
+
if (path.length > focusedPath.length) {
|
262
|
+
dispatchPath({
|
263
|
+
type: 'removed_last_level'
|
264
|
+
});
|
265
|
+
}
|
227
266
|
if (currentLength - currentIndex <= JUMP_SIZE) {
|
228
267
|
dispatchFocusedPath({
|
229
268
|
type: 'change_last_focus',
|
@@ -16,7 +16,7 @@ var _Pagination2 = /*#__PURE__*/require("./Pagination.tokens");
|
|
16
16
|
var _PaginationQuickJumpToPage = /*#__PURE__*/require("./ui/PaginationQuickJumpToPage/PaginationQuickJumpToPage");
|
17
17
|
var _PaginationSelectPerPage = /*#__PURE__*/require("./ui/PaginationSelectPerPage/PaginationSelectPerPage");
|
18
18
|
var _PaginationShorter;
|
19
|
-
var _excluded = ["value", "perPage", "slots", "view", "viewCurrentPage", "type", "size", "pilled", "square", "disabledPages", "count", "hasQuickJump", "hasPerPage", "perPageList", "isCommonButtonStyles", "placeholderQuickJump", "textQuickJump", "textPerPage", "leftContent", "rightContent", "onChangePageValue", "onChangePerPageValue"];
|
19
|
+
var _excluded = ["value", "perPage", "slots", "view", "viewCurrentPage", "type", "size", "pilled", "square", "disabledPages", "count", "hasQuickJump", "hasPerPage", "perPageList", "isCommonButtonStyles", "placeholderQuickJump", "textQuickJump", "textPerPage", "leftContent", "rightContent", "listWidth", "onChangePageValue", "onChangePerPageValue"];
|
20
20
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
21
21
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n["default"] = e, t && t.set(e, n), n; }
|
22
22
|
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); }
|
@@ -64,6 +64,7 @@ var paginationRoot = exports.paginationRoot = function paginationRoot(Root) {
|
|
64
64
|
textPerPage = _ref$textPerPage === void 0 ? _utils2.defaultValues.textPerPage : _ref$textPerPage,
|
65
65
|
leftContent = _ref.leftContent,
|
66
66
|
rightContent = _ref.rightContent,
|
67
|
+
listWidth = _ref.listWidth,
|
67
68
|
onChangePageValue = _ref.onChangePageValue,
|
68
69
|
onChangePerPageValue = _ref.onChangePerPageValue,
|
69
70
|
rest = _objectWithoutProperties(_ref, _excluded);
|
@@ -91,7 +92,11 @@ var paginationRoot = exports.paginationRoot = function paginationRoot(Root) {
|
|
91
92
|
return (0, _utils.isNumber)(el) ? Number(el) : null;
|
92
93
|
});
|
93
94
|
var handlerSetPages = function handlerSetPages(newPerPage) {
|
94
|
-
|
95
|
+
if (newPerPage) {
|
96
|
+
setPagesValue(Math.ceil(count / newPerPage));
|
97
|
+
} else {
|
98
|
+
setPagesValue(Math.ceil(count / (hasPerPage ? _utils2.defaultValues.perPage : 1)));
|
99
|
+
}
|
95
100
|
};
|
96
101
|
var handlerSetPage = function handlerSetPage(newPageValue) {
|
97
102
|
var pageValue = newPageValue !== null && newPageValue !== void 0 ? newPageValue : _utils2.defaultValues.value;
|
@@ -163,9 +168,11 @@ var paginationRoot = exports.paginationRoot = function paginationRoot(Root) {
|
|
163
168
|
onChangeValue: handlerSetPage
|
164
169
|
}), hasPerPage && /*#__PURE__*/_react["default"].createElement(_PaginationSelectPerPage.PaginationSelectPerPage, {
|
165
170
|
textPerPage: textPerPage,
|
166
|
-
|
167
|
-
|
168
|
-
onChangeValue: handlerSetPerPage
|
171
|
+
perPageValue: perPageValue,
|
172
|
+
perPageList: perPageList,
|
173
|
+
onChangeValue: handlerSetPerPage,
|
174
|
+
size: size,
|
175
|
+
listWidth: listWidth
|
169
176
|
}))));
|
170
177
|
});
|
171
178
|
};
|
@@ -29,10 +29,10 @@ var PaginationSection = exports.PaginationSection = /*#__PURE__*/_styledComponen
|
|
29
29
|
})(["display:flex;gap:0.125rem;"]);
|
30
30
|
var PaginationButtonGroup = exports.PaginationButtonGroup = /*#__PURE__*/(0, _styledComponents["default"])(ButtonGroup).withConfig({
|
31
31
|
componentId: "plasma-new-hope__sc-13na7gd-4"
|
32
|
-
})(["", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");"], _ButtonGroup.buttonGroupTokens.buttonColor, _Pagination.tokens.buttonColor, _ButtonGroup.buttonGroupTokens.buttonBackgroundColor, _Pagination.tokens.buttonBackgroundColor, _ButtonGroup.buttonGroupTokens.buttonColorHover, _Pagination.tokens.buttonHoverColor, _ButtonGroup.buttonGroupTokens.buttonBackgroundColorHover, _Pagination.tokens.
|
32
|
+
})(["", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");"], _ButtonGroup.buttonGroupTokens.buttonColor, _Pagination.tokens.buttonColor, _ButtonGroup.buttonGroupTokens.buttonBackgroundColor, _Pagination.tokens.buttonBackgroundColor, _ButtonGroup.buttonGroupTokens.buttonColorHover, _Pagination.tokens.buttonHoverColor, _ButtonGroup.buttonGroupTokens.buttonBackgroundColorHover, _Pagination.tokens.buttonBackgroundColorHover, _ButtonGroup.buttonGroupTokens.buttonColorActive, _Pagination.tokens.buttonActiveColor, _ButtonGroup.buttonGroupTokens.buttonBackgroundColorActive, _Pagination.tokens.buttonBackgroundColorActive, _ButtonGroup.buttonGroupTokens.buttonFontFamily, _Pagination.tokens.paginationFontFamily, _ButtonGroup.buttonGroupTokens.buttonFontSize, _Pagination.tokens.paginationFontSize, _ButtonGroup.buttonGroupTokens.buttonFontStyle, _Pagination.tokens.paginationFontStyle, _ButtonGroup.buttonGroupTokens.buttonFontWeight, _Pagination.tokens.paginationFontWeight, _ButtonGroup.buttonGroupTokens.buttonLetterSpacing, _Pagination.tokens.paginationLetterSpacing, _ButtonGroup.buttonGroupTokens.buttonLineHeight, _Pagination.tokens.paginationLineHeight, _ButtonGroup.buttonGroupTokens.buttonWidth, _Pagination.tokens.buttonWidth, _ButtonGroup.buttonGroupTokens.buttonHeight, _Pagination.tokens.buttonHeight, _ButtonGroup.buttonGroupTokens.buttonDefaultRadius, _Pagination.tokens.buttonRadius, _ButtonGroup.buttonGroupTokens.buttonSideRadius, _Pagination.tokens.buttonRadius, _ButtonGroup.buttonGroupTokens.buttonSegmentedRadius, _Pagination.tokens.buttonRadius, _ButtonGroup.buttonGroupTokens.buttonRadiusCircle, _Pagination.tokens.buttonRadius);
|
33
33
|
var PaginationButton = exports.PaginationButton = /*#__PURE__*/(0, _styledComponents["default"])(Button).withConfig({
|
34
34
|
componentId: "plasma-new-hope__sc-13na7gd-5"
|
35
|
-
})(["", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");&.", "{", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");}:focus{outline:none;}", ""], _Button.buttonTokens.buttonColor, _Pagination.tokens.buttonColor, _Button.buttonTokens.buttonBackgroundColor, _Pagination.tokens.buttonBackgroundColor, _Button.buttonTokens.buttonColorHover, _Pagination.tokens.buttonHoverColor, _Button.buttonTokens.buttonBackgroundColorHover, _Pagination.tokens.
|
35
|
+
})(["", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");&.", "{", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");}:focus{outline:none;}", ""], _Button.buttonTokens.buttonColor, _Pagination.tokens.buttonColor, _Button.buttonTokens.buttonBackgroundColor, _Pagination.tokens.buttonBackgroundColor, _Button.buttonTokens.buttonColorHover, _Pagination.tokens.buttonHoverColor, _Button.buttonTokens.buttonBackgroundColorHover, _Pagination.tokens.buttonBackgroundColorHover, _Button.buttonTokens.buttonColorActive, _Pagination.tokens.buttonActiveColor, _Button.buttonTokens.buttonBackgroundColorActive, _Pagination.tokens.buttonBackgroundColorActive, _Button.buttonTokens.buttonFontFamily, _Pagination.tokens.paginationFontFamily, _Button.buttonTokens.buttonFontSize, _Pagination.tokens.paginationFontSize, _Button.buttonTokens.buttonFontStyle, _Pagination.tokens.paginationFontStyle, _Button.buttonTokens.buttonFontWeight, _Pagination.tokens.paginationFontWeight, _Button.buttonTokens.buttonLetterSpacing, _Pagination.tokens.paginationLetterSpacing, _Button.buttonTokens.buttonLineHeight, _Pagination.tokens.paginationLineHeight, _Button.buttonTokens.buttonWidth, _Pagination.tokens.buttonWidth, _Button.buttonTokens.buttonHeight, _Pagination.tokens.buttonHeight, _Button.buttonTokens.buttonRadius, _Pagination.tokens.buttonRadius, _Button.buttonTokens.buttonDisabledOpacity, _Pagination.tokens.buttonDisabledOpacity, _Button.buttonTokens.buttonFocusColor, _Pagination.tokens.buttonFocusColor, _Pagination.classes.paginationPageButtonActive, _Button.buttonTokens.buttonColor, _Pagination.tokens.paginationCurrentButtonColor, _Button.buttonTokens.buttonBackgroundColor, _Pagination.tokens.paginationCurrentButtonBackgroundColor, _Button.buttonTokens.buttonColorHover, _Pagination.tokens.paginationCurrentButtonHoverColor, _Button.buttonTokens.buttonBackgroundColorHover, _Pagination.tokens.paginationCurrentButtonHoverBackgroundColor, _Button.buttonTokens.buttonColorActive, _Pagination.tokens.paginationCurrentButtonActiveColor, _Button.buttonTokens.buttonBackgroundColorActive, _Pagination.tokens.paginationCurrentButtonActiveBackgroundColor, /*#__PURE__*/(0, _mixins.addFocus)({
|
36
36
|
outlineOffset: 'calc(-1 * var(--plasma_private-btn-outline-size))',
|
37
37
|
outlineSize: 'var(--plasma_private-btn-outline-size)',
|
38
38
|
outlineRadius: 'var(--plasma_private-btn-br)',
|
@@ -23,12 +23,18 @@ var tokens = exports.tokens = {
|
|
23
23
|
paginationWidth: '--plasma-pagination-width',
|
24
24
|
paginationColor: '--plasma-pagination-color',
|
25
25
|
buttonBackgroundColor: '--plasma-pagination-button-bg-color',
|
26
|
+
buttonBackgroundColorHover: '--plasma-pagination-button-bg-color-hover',
|
27
|
+
buttonBackgroundColorActive: '--plasma-pagination-button-bg-color-active',
|
26
28
|
buttonColor: '--plasma-pagination-button-color',
|
27
|
-
|
29
|
+
buttonColorHover: '--plasma-pagination-button-color-hover',
|
30
|
+
buttonColorActive: '--plasma-pagination-button-color-active',
|
28
31
|
buttonHoverColor: '--plasma-pagination-button-color-hover',
|
29
|
-
buttonActiveBackgroundColor: '--plasma-pagination-button-bg-color-active',
|
30
32
|
buttonActiveColor: '--plasma-pagination--button-color-active',
|
31
33
|
buttonFocusColor: '--plasma-pagination--button-color-focus',
|
34
|
+
buttonArrowColor: '--plasma-pagination--button-arrow-color',
|
35
|
+
buttonArrowColorHover: '--plasma-pagination--button-arrow-color-hover',
|
36
|
+
buttonArrowColorActive: '--plasma-pagination--button-arrow-color-active',
|
37
|
+
buttonArrowMargin: '--plasma-pagination--button-arrow-margin',
|
32
38
|
paginationCurrentButtonBackgroundColor: '--plasma-pagination-button-current-bg-color',
|
33
39
|
paginationCurrentButtonColor: '--plasma-pagination-button-current-color',
|
34
40
|
paginationCurrentButtonHoverBackgroundColor: '--plasma-pagination-button-current-bg-color-hover',
|
@@ -49,26 +55,18 @@ var tokens = exports.tokens = {
|
|
49
55
|
paginationFontWeight: '--plasma-pagination-font-weight',
|
50
56
|
paginationLetterSpacing: '--plasma-pagination-letter-spacing',
|
51
57
|
paginationLineHeight: '--plasma-pagination-line-height',
|
52
|
-
selectWidth: '--plasma-pagination-select-width',
|
53
58
|
selectHeight: '--plasma-pagination-select-height',
|
54
59
|
selectPaddingTop: '--plasma-pagination-select-padding-top',
|
55
60
|
selectPaddingRight: '--plasma-pagination-select-padding-right',
|
56
61
|
selectPaddingBottom: '--plasma-pagination-select-padding-bottom',
|
57
62
|
selectPaddingLeft: '--plasma-pagination-select-padding-left',
|
58
63
|
selectBackgroundColor: '--plasma-pagination-select-bg-color',
|
59
|
-
selectItemWidth: '--plasma-pagination-select-item-width',
|
60
64
|
selectItemHeight: '--plasma-pagination-select-item-height',
|
61
|
-
|
62
|
-
selectItemPaddingRight: '--plasma-pagination-select-item-padding-right',
|
63
|
-
selectItemPaddingBottom: '--plasma-pagination-select-item-padding-bottom',
|
64
|
-
selectItemPaddingLeft: '--plasma-pagination-select-item-padding-left',
|
65
|
+
selectItemPadding: '--plasma-pagination-select-item-padding',
|
65
66
|
selectItemContentLeftWidth: '--plasma-pagination-select-item-content-left-width',
|
66
67
|
selectItemBackground: '--plasma-pagination-select-item-bg-color',
|
67
68
|
selectTargetArrowRight: '--plasma-pagination-select-target-arrow-right',
|
68
|
-
selectTargetWidth: '--plasma-pagination-select-target-width',
|
69
69
|
selectTargetPadding: '--plasma-pagination-select-target-padding',
|
70
|
-
selectTargetPaddingHasChips: '--plasma-pagination-select-target-padding-has-chips',
|
71
|
-
selectTargetPaddingWithInput: '--plasma-pagination-select-target-padding-with-input',
|
72
70
|
selectTargetInnerTop: '--plasma-pagination-select-target-inner-top',
|
73
71
|
selectTargetLabelInnerTop: '--plasma-pagination-select-target-label-inner-top',
|
74
72
|
inputBackgroundColor: '--plasma-pagination-input-bg-color',
|
@@ -1,59 +1,46 @@
|
|
1
1
|
"use strict";
|
2
2
|
|
3
|
-
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
4
3
|
Object.defineProperty(exports, "__esModule", {
|
5
4
|
value: true
|
6
5
|
});
|
7
6
|
exports.PaginationSelectPerPage = void 0;
|
8
|
-
var _react = /*#__PURE__*/
|
9
|
-
var _Icon = /*#__PURE__*/require("../../../../components/_Icon");
|
7
|
+
var _react = /*#__PURE__*/_interopRequireDefault( /*#__PURE__*/require("react"));
|
10
8
|
var _utils = /*#__PURE__*/require("../../utils");
|
11
9
|
var _Pagination = /*#__PURE__*/require("../../Pagination.tokens");
|
12
10
|
var _PaginationSelectPerPage = /*#__PURE__*/require("./PaginationSelectPerPage.styles");
|
13
|
-
var
|
14
|
-
|
15
|
-
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
16
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n["default"] = e, t && t.set(e, n), n; }
|
17
|
-
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
18
|
-
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."); }
|
19
|
-
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
20
|
-
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
|
21
|
-
function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t["return"] && (u = t["return"](), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
|
22
|
-
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
11
|
+
var _excluded = ["perPageValue", "perPageList", "textPerPage", "onChangeValue", "size", "listWidth"];
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
23
13
|
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; }
|
24
14
|
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; }
|
25
15
|
var PaginationSelectPerPage = exports.PaginationSelectPerPage = function PaginationSelectPerPage(_ref) {
|
26
|
-
var _ref$
|
27
|
-
|
28
|
-
_ref$
|
29
|
-
|
16
|
+
var _ref$perPageValue = _ref.perPageValue,
|
17
|
+
perPageValue = _ref$perPageValue === void 0 ? _utils.defaultValues.perPage : _ref$perPageValue,
|
18
|
+
_ref$perPageList = _ref.perPageList,
|
19
|
+
perPageList = _ref$perPageList === void 0 ? _utils.defaultValues.perPageList : _ref$perPageList,
|
30
20
|
_ref$textPerPage = _ref.textPerPage,
|
31
21
|
textPerPage = _ref$textPerPage === void 0 ? _utils.defaultValues.textPerPage : _ref$textPerPage,
|
32
22
|
onChangeValue = _ref.onChangeValue,
|
23
|
+
size = _ref.size,
|
24
|
+
listWidth = _ref.listWidth,
|
33
25
|
rest = _objectWithoutProperties(_ref, _excluded);
|
34
|
-
var _useState = (0, _react.useState)(value),
|
35
|
-
_useState2 = _slicedToArray(_useState, 2),
|
36
|
-
selectedValue = _useState2[0],
|
37
|
-
setSelectedValue = _useState2[1];
|
38
26
|
var handleSelectChange = function handleSelectChange(newValue) {
|
39
27
|
if (newValue) {
|
40
|
-
setSelectedValue(Number(newValue));
|
41
28
|
onChangeValue === null || onChangeValue === void 0 || onChangeValue(Number(newValue));
|
42
29
|
}
|
43
30
|
};
|
31
|
+
var transformedList = perPageList.map(function (num) {
|
32
|
+
return {
|
33
|
+
label: num.toString(),
|
34
|
+
value: num.toString()
|
35
|
+
};
|
36
|
+
});
|
44
37
|
return /*#__PURE__*/_react["default"].createElement(_PaginationSelectPerPage.SelectPerPageRoot, rest, /*#__PURE__*/_react["default"].createElement(_PaginationSelectPerPage.SelectPerPageTypography, null, textPerPage), /*#__PURE__*/_react["default"].createElement(_PaginationSelectPerPage.SelectPerPageSelect, {
|
45
38
|
className: _Pagination.classes.selectWrapper,
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
})) : undefined,
|
54
|
-
key: item,
|
55
|
-
value: item,
|
56
|
-
text: String(item)
|
57
|
-
});
|
58
|
-
})));
|
39
|
+
items: transformedList,
|
40
|
+
value: perPageValue.toString(),
|
41
|
+
onChange: handleSelectChange,
|
42
|
+
target: "button-like",
|
43
|
+
size: size,
|
44
|
+
listWidth: listWidth
|
45
|
+
}));
|
59
46
|
};
|
@@ -3,7 +3,7 @@
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
4
4
|
value: true
|
5
5
|
});
|
6
|
-
exports.SelectPerPageTypography = exports.
|
6
|
+
exports.SelectPerPageTypography = exports.SelectPerPageSelect = exports.SelectPerPageRoot = void 0;
|
7
7
|
var _styledComponents = /*#__PURE__*/_interopRequireDefault( /*#__PURE__*/require("styled-components"));
|
8
8
|
var _Select = /*#__PURE__*/require("../../../Select");
|
9
9
|
var _engines = /*#__PURE__*/require("../../../../engines");
|
@@ -11,17 +11,12 @@ var _Pagination = /*#__PURE__*/require("../../Pagination.tokens");
|
|
11
11
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
12
12
|
var mergedSelectConfig = /*#__PURE__*/(0, _engines.mergeConfig)(_Select.selectConfig);
|
13
13
|
var Select = /*#__PURE__*/(0, _engines.component)(mergedSelectConfig);
|
14
|
-
var mergedItemConfig = /*#__PURE__*/(0, _engines.mergeConfig)(_Select.selectItemConfig);
|
15
|
-
var SelectItem = exports.SelectItem = /*#__PURE__*/(0, _engines.component)(mergedItemConfig);
|
16
14
|
var SelectPerPageRoot = exports.SelectPerPageRoot = /*#__PURE__*/_styledComponents["default"].div.withConfig({
|
17
15
|
componentId: "plasma-new-hope__sc-1g304l9-0"
|
18
16
|
})(["display:flex;align-items:center;gap:0.5rem;"]);
|
19
17
|
var SelectPerPageSelect = exports.SelectPerPageSelect = /*#__PURE__*/(0, _styledComponents["default"])(Select).withConfig({
|
20
18
|
componentId: "plasma-new-hope__sc-1g304l9-1"
|
21
|
-
})(["", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ")
|
22
|
-
var SelectPerPageSelectItem = exports.SelectPerPageSelectItem = /*#__PURE__*/(0, _styledComponents["default"])(SelectItem).withConfig({
|
23
|
-
componentId: "plasma-new-hope__sc-1g304l9-2"
|
24
|
-
})(["", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");"], _Select.selectTokens.itemWidth, _Pagination.tokens.selectItemWidth, _Select.selectTokens.itemHeight, _Pagination.tokens.selectItemHeight, _Select.selectTokens.itemPaddingTop, _Pagination.tokens.selectItemPaddingTop, _Select.selectTokens.itemPaddingRight, _Pagination.tokens.selectItemPaddingRight, _Select.selectTokens.itemPaddingBottom, _Pagination.tokens.selectItemPaddingBottom, _Select.selectTokens.itemPaddingLeft, _Pagination.tokens.selectItemPaddingLeft, _Select.selectTokens.itemBorderRadius, _Pagination.tokens.buttonRadius, _Select.selectTokens.itemContentLeftWidth, _Pagination.tokens.selectItemContentLeftWidth, _Select.selectTokens.itemFontFamily, _Pagination.tokens.paginationFontFamily, _Select.selectTokens.itemFontSize, _Pagination.tokens.paginationFontSize, _Select.selectTokens.itemFontStyle, _Pagination.tokens.paginationFontStyle, _Select.selectTokens.itemFontWeightBold, _Pagination.tokens.paginationFontWeight, _Select.selectTokens.itemFontLetterSpacing, _Pagination.tokens.paginationLetterSpacing, _Select.selectTokens.itemFontLineHeight, _Pagination.tokens.paginationLineHeight, _Select.selectTokens.itemBackground, _Pagination.tokens.selectItemBackground, _Select.selectTokens.itemBackgroundHover, _Pagination.tokens.buttonHoverBackgroundColor, _Select.selectTokens.itemBackgroundSelectedHover, _Pagination.tokens.buttonActiveBackgroundColor, _Select.selectTokens.itemColor, _Pagination.tokens.buttonColor, _Select.selectTokens.itemContentLeftColor, _Pagination.tokens.buttonColor, _Select.selectTokens.itemBackgroundSelected, _Pagination.tokens.buttonHoverBackgroundColor, _Select.selectTokens.itemColorSelected, _Pagination.tokens.buttonColor);
|
19
|
+
})(["", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":var(", ");", ":0.125rem;", ":0.125rem;", ":var(", ");", ":calc(var(", ") - 0.125rem);", ":0 0.375rem 0 0;", ":1.5rem;", ":var(", ");"], _Select.selectTokens.targetButtonColor, _Pagination.tokens.buttonColor, _Select.selectTokens.targetButtonColorHover, _Pagination.tokens.buttonColorHover, _Select.selectTokens.targetButtonColorActive, _Pagination.tokens.buttonColorActive, _Select.selectTokens.targetButtonBackgroundColor, _Pagination.tokens.buttonBackgroundColor, _Select.selectTokens.targetButtonBackgroundColorHover, _Pagination.tokens.buttonBackgroundColorHover, _Select.selectTokens.targetButtonBackgroundColorActive, _Pagination.tokens.buttonBackgroundColorActive, _Select.selectTokens.targetHeight, _Pagination.tokens.buttonHeight, _Select.selectTokens.targetButtonPadding, _Pagination.tokens.selectTargetPadding, _Select.selectTokens.borderRadius, _Pagination.tokens.buttonRadius, _Select.selectTokens.targetButtonArrowColor, _Pagination.tokens.buttonArrowColor, _Select.selectTokens.targetButtonArrowColorHover, _Pagination.tokens.buttonArrowColorHover, _Select.selectTokens.targetButtonArrowColorActive, _Pagination.tokens.buttonArrowColorActive, _Select.selectTokens.targetButtonArrowMargin, _Pagination.tokens.buttonArrowMargin, _Select.selectTokens.padding, _Select.selectTokens.focusOffset, _Select.selectTokens.itemPadding, _Pagination.tokens.selectItemPadding, _Select.selectTokens.itemBorderRadius, _Pagination.tokens.buttonRadius, _Select.selectTokens.itemIconMargin, _Select.selectTokens.itemIconSize, _Select.selectTokens.itemHeight, _Pagination.tokens.selectItemHeight);
|
25
20
|
var SelectPerPageTypography = exports.SelectPerPageTypography = /*#__PURE__*/_styledComponents["default"].div.withConfig({
|
26
|
-
componentId: "plasma-new-hope__sc-1g304l9-
|
21
|
+
componentId: "plasma-new-hope__sc-1g304l9-2"
|
27
22
|
})(["font-family:var(", ");font-size:var(", ");font-style:var(", ");font-weight:var(", ");letter-spacing:var(", ");line-height:var(", ");"], _Pagination.tokens.paginationFontFamily, _Pagination.tokens.paginationFontSize, _Pagination.tokens.paginationFontStyle, _Pagination.tokens.paginationFontWeight, _Pagination.tokens.paginationLetterSpacing, _Pagination.tokens.paginationLineHeight);
|