@salutejs/plasma-new-hope 0.110.0-canary.1307.10059399396.0 → 0.110.1-canary.1233.10062283292.0
Sign up to get free protection for your applications and to get access to all the features.
- package/cjs/components/Accordion/ui/AccordionItem/AccordionItem.js.map +1 -1
- package/cjs/components/Button/Button.styles.js.map +1 -1
- package/cjs/components/Chip/Chip.tokens.js +2 -0
- package/cjs/components/Chip/Chip.tokens.js.map +1 -1
- package/cjs/components/Combobox/Combobox.js +2 -2
- package/cjs/components/Combobox/Combobox.js.map +1 -1
- package/cjs/components/Combobox/hooks/useKeyNavigation.js.map +1 -0
- package/cjs/components/Combobox/ui/ComboboxTarget/ComboboxTarget.js +1 -1
- package/cjs/components/Combobox/ui/ComboboxTarget/ComboboxTarget.js.map +1 -1
- package/cjs/components/Combobox/utils/index.js +103 -0
- package/cjs/components/Combobox/utils/index.js.map +1 -1
- package/cjs/components/Dropdown/Dropdown.tokens.js +32 -18
- package/cjs/components/Dropdown/Dropdown.tokens.js.map +1 -1
- package/cjs/components/Dropdown/hooks/useKeyboardNavigation.js +63 -24
- package/cjs/components/Dropdown/hooks/useKeyboardNavigation.js.map +1 -1
- package/cjs/components/Pagination/Pagination.css +56 -48
- package/cjs/components/Pagination/Pagination.js +12 -5
- package/cjs/components/Pagination/Pagination.js.map +1 -1
- package/cjs/components/Pagination/Pagination.styles.js.map +1 -1
- package/cjs/components/Pagination/Pagination.tokens.js +9 -11
- package/cjs/components/Pagination/Pagination.tokens.js.map +1 -1
- package/cjs/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.css +74 -66
- package/cjs/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.js +20 -26
- package/cjs/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.js.map +1 -1
- package/cjs/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.styles.js +2 -22
- package/cjs/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.styles.js.map +1 -1
- package/cjs/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.styles_187mk6b.css +3 -0
- package/cjs/components/Select/Select.css +71 -62
- package/cjs/components/Select/Select.js +265 -193
- package/cjs/components/Select/Select.js.map +1 -1
- package/cjs/components/Select/Select.styles.js +51 -36
- package/cjs/components/Select/Select.styles.js.map +1 -1
- package/cjs/components/Select/Select.styles_zx0ztg.css +5 -0
- package/cjs/components/Select/Select.tokens.js +57 -166
- package/cjs/components/Select/Select.tokens.js.map +1 -1
- package/cjs/components/Select/hooks/useKeyboardNavigation.js +353 -0
- package/cjs/components/Select/hooks/useKeyboardNavigation.js.map +1 -0
- package/cjs/components/Select/hooks/usePathMaps.js +37 -0
- package/cjs/components/Select/hooks/usePathMaps.js.map +1 -0
- package/cjs/components/Select/reducers/focusedChipIndexReducer.js +39 -0
- package/cjs/components/Select/reducers/focusedChipIndexReducer.js.map +1 -0
- package/cjs/components/Select/reducers/focusedPathReducer.js +37 -0
- package/cjs/components/Select/reducers/focusedPathReducer.js.map +1 -0
- package/cjs/components/Select/reducers/pathReducer.js +41 -0
- package/cjs/components/Select/reducers/pathReducer.js.map +1 -0
- package/cjs/components/Select/ui/Inner/Inner.css +110 -0
- package/cjs/components/Select/ui/Inner/Inner.js +82 -0
- package/cjs/components/Select/ui/Inner/Inner.js.map +1 -0
- package/cjs/components/Select/ui/Inner/ui/Item/Item.css +110 -0
- package/cjs/components/Select/ui/Inner/ui/Item/Item.js +97 -0
- package/cjs/components/Select/ui/Inner/ui/Item/Item.js.map +1 -0
- package/cjs/components/Select/ui/Inner/ui/Item/Item.styles.js +110 -0
- package/cjs/components/Select/ui/Inner/ui/Item/Item.styles.js.map +1 -0
- package/cjs/components/Select/ui/Inner/ui/Item/Item.styles_y3jg1m.css +9 -0
- package/cjs/components/Select/ui/Target/Target.css +66 -0
- package/cjs/components/Select/ui/Target/Target.js +63 -0
- package/cjs/components/Select/ui/Target/Target.js.map +1 -0
- package/cjs/components/Select/ui/Target/ui/Button/Button.css +33 -0
- package/cjs/components/Select/ui/Target/ui/Button/Button.js +59 -0
- package/cjs/components/Select/ui/Target/ui/Button/Button.js.map +1 -0
- package/cjs/components/Select/ui/Target/ui/Button/Button.styles.js +52 -0
- package/cjs/components/Select/ui/Target/ui/Button/Button.styles.js.map +1 -0
- package/cjs/components/Select/ui/Target/ui/Button/Button.styles_nn6pg.css +5 -0
- package/{es/components/Select/ui/SelectTarget/SelectTarget.css → cjs/components/Select/ui/Target/ui/Textfield/Textfield.css} +13 -7
- package/cjs/components/Select/ui/Target/ui/Textfield/Textfield.js +113 -0
- package/cjs/components/Select/ui/Target/ui/Textfield/Textfield.js.map +1 -0
- package/cjs/components/Select/ui/Target/ui/Textfield/Textfield.styles.js +113 -0
- package/cjs/components/Select/ui/Target/ui/Textfield/Textfield.styles.js.map +1 -0
- package/cjs/components/Select/ui/Target/ui/Textfield/Textfield.styles_16d02b7.css +12 -0
- package/cjs/components/Select/ui/{SelectChip/SelectChip.css → Target/ui/Textfield/ui/Chip/Chip.css} +1 -1
- package/cjs/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.js +36 -0
- package/cjs/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.js.map +1 -0
- package/cjs/components/Select/ui/{SelectChip/SelectChip.styles.js → Target/ui/Textfield/ui/Chip/Chip.styles.js} +5 -8
- package/cjs/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.styles.js.map +1 -0
- package/cjs/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.styles_1a752pa.css +1 -0
- package/cjs/components/Select/utils/getButtonLabel.js +47 -0
- package/cjs/components/Select/utils/getButtonLabel.js.map +1 -0
- package/cjs/components/Select/utils/getCorrectHeight.js +13 -0
- package/cjs/components/Select/utils/getCorrectHeight.js.map +1 -0
- package/cjs/components/Select/utils/initialItemsTransform.js +19 -0
- package/cjs/components/Select/utils/initialItemsTransform.js.map +1 -0
- package/cjs/components/Select/utils/sizeToIconSize.js +11 -0
- package/cjs/components/Select/utils/sizeToIconSize.js.map +1 -0
- package/cjs/components/Select/utils/updateAncestors.js +34 -0
- package/cjs/components/Select/utils/updateAncestors.js.map +1 -0
- package/cjs/components/Select/utils/updateDescendants.js +18 -0
- package/cjs/components/Select/utils/updateDescendants.js.map +1 -0
- package/cjs/components/Select/utils/updateSingleAncestors.js +15 -0
- package/cjs/components/Select/utils/updateSingleAncestors.js.map +1 -0
- package/cjs/components/_Icon/Icon.assets/DisclosureDownCentered.js +33 -0
- package/cjs/components/_Icon/Icon.assets/DisclosureDownCentered.js.map +1 -0
- package/cjs/components/_Icon/Icon.assets/DisclosureRightCentered.js +31 -0
- package/cjs/components/_Icon/Icon.assets/DisclosureRightCentered.js.map +1 -0
- package/cjs/components/_Icon/Icons/IconDisclosureDownCentered.js +23 -0
- package/cjs/components/_Icon/Icons/IconDisclosureDownCentered.js.map +1 -0
- package/cjs/components/_Icon/Icons/IconDisclosureRightCentered.js +23 -0
- package/cjs/components/_Icon/Icons/IconDisclosureRightCentered.js.map +1 -0
- package/cjs/engines/common.js.map +1 -1
- package/cjs/index.css +42 -27
- package/cjs/index.js +2 -18
- package/cjs/index.js.map +1 -1
- package/cjs/utils/index.js.map +1 -1
- package/cjs/utils/isEmpty.js +49 -0
- package/cjs/utils/isEmpty.js.map +1 -0
- package/emotion/cjs/components/Button/Button.styles.js +9 -9
- package/emotion/cjs/components/Chip/Chip.tokens.js +2 -0
- package/emotion/cjs/components/Combobox/Combobox.js +6 -6
- package/emotion/cjs/components/Combobox/hooks/index.js +14 -1
- package/emotion/cjs/components/Combobox/ui/ComboboxTarget/ComboboxTarget.js +4 -5
- package/emotion/cjs/components/Combobox/utils/index.js +105 -1
- package/emotion/cjs/components/Dropdown/Dropdown.tokens.js +32 -18
- package/emotion/cjs/components/Dropdown/hooks/useKeyboardNavigation.js +63 -24
- package/emotion/cjs/components/Pagination/Pagination.js +12 -5
- package/emotion/cjs/components/Pagination/Pagination.styles.js +8 -8
- package/emotion/cjs/components/Pagination/Pagination.tokens.js +9 -11
- package/emotion/cjs/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.js +22 -35
- package/emotion/cjs/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.styles.js +6 -12
- package/emotion/cjs/components/Select/Select.js +255 -187
- package/emotion/cjs/components/Select/Select.styles.js +29 -25
- package/emotion/cjs/components/Select/Select.tokens.js +80 -167
- package/emotion/cjs/components/Select/hooks/useKeyboardNavigation.js +355 -0
- package/emotion/cjs/components/Select/hooks/usePathMaps.js +33 -0
- package/emotion/cjs/components/Select/index.js +1 -25
- package/emotion/cjs/components/Select/reducers/focusedChipIndexReducer.js +38 -0
- package/emotion/cjs/components/Select/reducers/focusedPathReducer.js +40 -0
- package/emotion/cjs/components/Select/reducers/index.js +38 -0
- package/emotion/cjs/components/Select/reducers/pathReducer.js +44 -0
- package/emotion/cjs/components/Select/ui/InfiniteLoader/InfiniteLoader.js +18 -0
- package/emotion/cjs/components/Select/ui/InfiniteLoader/InfiniteLoader.styles.js +26 -0
- package/emotion/cjs/components/Select/ui/Inner/Inner.js +80 -0
- package/emotion/cjs/components/Select/ui/Inner/ui/Item/Item.js +95 -0
- package/emotion/cjs/components/Select/ui/Inner/ui/Item/Item.styles.js +92 -0
- package/emotion/cjs/components/Select/ui/Inner/ui/index.js +16 -0
- package/emotion/cjs/components/Select/ui/Target/Target.js +61 -0
- package/emotion/cjs/components/Select/ui/Target/ui/Button/Button.js +57 -0
- package/emotion/cjs/components/Select/ui/Target/ui/Button/Button.styles.js +44 -0
- package/emotion/cjs/components/Select/ui/Target/ui/Textfield/Textfield.js +111 -0
- package/emotion/cjs/components/Select/ui/Target/ui/Textfield/Textfield.styles.js +84 -0
- package/{styled-components/cjs/components/Select/ui/SelectChip/SelectChip.js → emotion/cjs/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.js} +24 -27
- package/emotion/cjs/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.styles.js +22 -0
- package/emotion/cjs/components/Select/ui/Target/ui/Textfield/ui/index.js +16 -0
- package/emotion/cjs/components/Select/ui/Target/ui/index.js +27 -0
- package/emotion/cjs/components/Select/ui/index.js +33 -72
- package/emotion/cjs/components/Select/utils/getButtonLabel.js +43 -0
- package/emotion/cjs/components/Select/utils/getCorrectHeight.js +12 -0
- package/emotion/cjs/components/Select/utils/index.js +44 -102
- package/emotion/cjs/components/Select/utils/initialItemsTransform.js +18 -0
- package/emotion/cjs/components/Select/utils/sizeToIconSize.js +10 -0
- package/emotion/cjs/components/Select/utils/updateAncestors.js +33 -0
- package/emotion/cjs/components/Select/utils/updateDescendants.js +17 -0
- package/emotion/cjs/components/Select/utils/updateSingleAncestors.js +14 -0
- package/emotion/cjs/components/_Icon/Icon.assets/DisclosureDownCentered.js +32 -0
- package/emotion/cjs/components/_Icon/Icon.assets/DisclosureRightCentered.js +30 -0
- package/emotion/cjs/components/_Icon/Icons/IconDisclosureDownCentered.js +22 -0
- package/emotion/cjs/components/_Icon/Icons/IconDisclosureRightCentered.js +22 -0
- package/emotion/cjs/components/_Icon/index.js +14 -0
- package/emotion/cjs/examples/_helpers.js +1 -1
- package/emotion/cjs/examples/plasma_b2c/components/Pagination/Pagination.config.js +12 -12
- package/emotion/cjs/examples/plasma_b2c/components/Pagination/Pagination.stories.tsx +1 -0
- package/emotion/cjs/examples/plasma_b2c/components/Select/Select.config.js +21 -11
- package/emotion/cjs/examples/plasma_b2c/components/Select/Select.js +5 -15
- package/emotion/cjs/examples/plasma_b2c/components/Select/Select.stories.tsx +753 -204
- package/emotion/cjs/examples/plasma_b2c/components/Select/style.css +36 -0
- package/emotion/cjs/examples/plasma_web/components/Pagination/Pagination.config.js +12 -12
- package/emotion/cjs/examples/plasma_web/components/Select/Select.config.js +21 -11
- package/emotion/cjs/examples/plasma_web/components/Select/Select.js +5 -15
- package/emotion/cjs/examples/plasma_web/components/Select/Select.stories.tsx +753 -200
- package/emotion/cjs/examples/plasma_web/components/Select/style.css +37 -0
- package/emotion/cjs/utils/index.js +9 -1
- package/emotion/cjs/utils/isEmpty.js +47 -0
- package/emotion/es/components/Button/Button.styles.js +9 -9
- package/emotion/es/components/Chip/Chip.tokens.js +2 -0
- package/emotion/es/components/Combobox/Combobox.js +2 -2
- package/emotion/es/components/Combobox/hooks/index.js +2 -1
- package/emotion/es/components/Combobox/ui/ComboboxTarget/ComboboxTarget.js +1 -2
- package/emotion/es/components/Combobox/utils/index.js +105 -1
- package/emotion/es/components/Dropdown/Dropdown.tokens.js +32 -18
- package/emotion/es/components/Dropdown/hooks/useKeyboardNavigation.js +63 -24
- package/emotion/es/components/Pagination/Pagination.js +12 -5
- package/emotion/es/components/Pagination/Pagination.styles.js +8 -8
- package/emotion/es/components/Pagination/Pagination.tokens.js +9 -11
- package/emotion/es/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.js +22 -33
- package/emotion/es/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.styles.js +6 -12
- package/emotion/es/components/Select/Select.js +252 -185
- package/emotion/es/components/Select/Select.styles.js +29 -25
- package/emotion/es/components/Select/Select.tokens.js +79 -166
- package/emotion/es/components/Select/hooks/useKeyboardNavigation.js +349 -0
- package/emotion/es/components/Select/hooks/usePathMaps.js +27 -0
- package/emotion/es/components/Select/index.js +1 -2
- package/emotion/es/components/Select/reducers/focusedChipIndexReducer.js +32 -0
- package/emotion/es/components/Select/reducers/focusedPathReducer.js +34 -0
- package/emotion/es/components/Select/reducers/index.js +3 -0
- package/emotion/es/components/Select/reducers/pathReducer.js +38 -0
- package/emotion/es/components/Select/ui/InfiniteLoader/InfiniteLoader.js +11 -0
- package/emotion/es/components/Select/ui/InfiniteLoader/InfiniteLoader.styles.js +19 -0
- package/emotion/es/components/Select/ui/Inner/Inner.js +73 -0
- package/emotion/es/components/Select/ui/Inner/ui/Item/Item.js +86 -0
- package/emotion/es/components/Select/ui/Inner/ui/Item/Item.styles.js +85 -0
- package/emotion/es/components/Select/ui/Inner/ui/index.js +1 -0
- package/emotion/es/components/Select/ui/Target/Target.js +54 -0
- package/emotion/es/components/Select/ui/Target/ui/Button/Button.js +50 -0
- package/emotion/es/components/Select/ui/Target/ui/Button/Button.styles.js +37 -0
- package/emotion/es/components/Select/ui/Target/ui/Textfield/Textfield.js +104 -0
- package/emotion/es/components/Select/ui/Target/ui/Textfield/Textfield.styles.js +77 -0
- package/emotion/es/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.js +28 -0
- package/emotion/es/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.styles.js +15 -0
- package/emotion/es/components/Select/ui/Target/ui/Textfield/ui/index.js +1 -0
- package/emotion/es/components/Select/ui/Target/ui/index.js +2 -0
- package/emotion/es/components/Select/ui/index.js +3 -6
- package/emotion/es/components/Select/utils/getButtonLabel.js +37 -0
- package/emotion/es/components/Select/utils/getCorrectHeight.js +6 -0
- package/emotion/es/components/Select/utils/index.js +7 -106
- package/emotion/es/components/Select/utils/initialItemsTransform.js +12 -0
- package/emotion/es/components/Select/utils/sizeToIconSize.js +4 -0
- package/emotion/es/components/Select/utils/updateAncestors.js +27 -0
- package/emotion/es/components/Select/utils/updateDescendants.js +11 -0
- package/emotion/es/components/Select/utils/updateSingleAncestors.js +8 -0
- package/emotion/es/components/_Icon/Icon.assets/DisclosureDownCentered.js +25 -0
- package/emotion/es/components/_Icon/Icon.assets/DisclosureRightCentered.js +23 -0
- package/emotion/es/components/_Icon/Icons/IconDisclosureDownCentered.js +15 -0
- package/emotion/es/components/_Icon/Icons/IconDisclosureRightCentered.js +15 -0
- package/emotion/es/components/_Icon/index.js +2 -0
- package/emotion/es/examples/_helpers.js +1 -1
- package/emotion/es/examples/plasma_b2c/components/Pagination/Pagination.config.js +12 -12
- package/emotion/es/examples/plasma_b2c/components/Pagination/Pagination.stories.tsx +1 -0
- package/emotion/es/examples/plasma_b2c/components/Select/Select.config.js +21 -11
- package/emotion/es/examples/plasma_b2c/components/Select/Select.js +3 -12
- package/emotion/es/examples/plasma_b2c/components/Select/Select.stories.tsx +753 -204
- package/emotion/es/examples/plasma_b2c/components/Select/style.css +36 -0
- package/emotion/es/examples/plasma_web/components/Pagination/Pagination.config.js +12 -12
- package/emotion/es/examples/plasma_web/components/Select/Select.config.js +21 -11
- package/emotion/es/examples/plasma_web/components/Select/Select.js +3 -12
- package/emotion/es/examples/plasma_web/components/Select/Select.stories.tsx +753 -200
- package/emotion/es/examples/plasma_web/components/Select/style.css +37 -0
- package/emotion/es/utils/index.js +1 -0
- package/emotion/es/utils/isEmpty.js +42 -0
- package/es/components/Accordion/ui/AccordionItem/AccordionItem.js.map +1 -1
- package/es/components/Button/Button.styles.js.map +1 -1
- package/es/components/Chip/Chip.tokens.js +2 -0
- package/es/components/Chip/Chip.tokens.js.map +1 -1
- package/es/components/Combobox/Combobox.js +2 -2
- package/es/components/Combobox/Combobox.js.map +1 -1
- package/es/components/Combobox/hooks/useKeyNavigation.js.map +1 -0
- package/es/components/Combobox/ui/ComboboxTarget/ComboboxTarget.js +1 -1
- package/es/components/Combobox/ui/ComboboxTarget/ComboboxTarget.js.map +1 -1
- package/es/components/Combobox/utils/index.js +102 -3
- package/es/components/Combobox/utils/index.js.map +1 -1
- package/es/components/Dropdown/Dropdown.tokens.js +32 -18
- package/es/components/Dropdown/Dropdown.tokens.js.map +1 -1
- package/es/components/Dropdown/hooks/useKeyboardNavigation.js +63 -24
- package/es/components/Dropdown/hooks/useKeyboardNavigation.js.map +1 -1
- package/es/components/Pagination/Pagination.css +56 -48
- package/es/components/Pagination/Pagination.js +12 -5
- package/es/components/Pagination/Pagination.js.map +1 -1
- package/es/components/Pagination/Pagination.styles.js.map +1 -1
- package/es/components/Pagination/Pagination.tokens.js +9 -11
- package/es/components/Pagination/Pagination.tokens.js.map +1 -1
- package/es/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.css +74 -66
- package/es/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.js +23 -29
- package/es/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.js.map +1 -1
- package/es/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.styles.js +3 -21
- package/es/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.styles.js.map +1 -1
- package/es/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.styles_187mk6b.css +3 -0
- package/es/components/Select/Select.css +71 -62
- package/es/components/Select/Select.js +264 -193
- package/es/components/Select/Select.js.map +1 -1
- package/es/components/Select/Select.styles.js +48 -34
- package/es/components/Select/Select.styles.js.map +1 -1
- package/es/components/Select/Select.styles_zx0ztg.css +5 -0
- package/es/components/Select/Select.tokens.js +57 -166
- package/es/components/Select/Select.tokens.js.map +1 -1
- package/es/components/Select/hooks/useKeyboardNavigation.js +348 -0
- package/es/components/Select/hooks/useKeyboardNavigation.js.map +1 -0
- package/es/components/Select/hooks/usePathMaps.js +33 -0
- package/es/components/Select/hooks/usePathMaps.js.map +1 -0
- package/es/components/Select/reducers/focusedChipIndexReducer.js +35 -0
- package/es/components/Select/reducers/focusedChipIndexReducer.js.map +1 -0
- package/es/components/Select/reducers/focusedPathReducer.js +33 -0
- package/es/components/Select/reducers/focusedPathReducer.js.map +1 -0
- package/es/components/Select/reducers/pathReducer.js +37 -0
- package/es/components/Select/reducers/pathReducer.js.map +1 -0
- package/es/components/Select/ui/Inner/Inner.css +110 -0
- package/es/components/Select/ui/Inner/Inner.js +78 -0
- package/es/components/Select/ui/Inner/Inner.js.map +1 -0
- package/es/components/Select/ui/Inner/ui/Item/Item.css +110 -0
- package/es/components/Select/ui/Inner/ui/Item/Item.js +93 -0
- package/es/components/Select/ui/Inner/ui/Item/Item.js.map +1 -0
- package/es/components/Select/ui/Inner/ui/Item/Item.styles.js +98 -0
- package/es/components/Select/ui/Inner/ui/Item/Item.styles.js.map +1 -0
- package/es/components/Select/ui/Inner/ui/Item/Item.styles_y3jg1m.css +9 -0
- package/es/components/Select/ui/Target/Target.css +66 -0
- package/es/components/Select/ui/Target/Target.js +59 -0
- package/es/components/Select/ui/Target/Target.js.map +1 -0
- package/es/components/Select/ui/Target/ui/Button/Button.css +33 -0
- package/es/components/Select/ui/Target/ui/Button/Button.js +55 -0
- package/es/components/Select/ui/Target/ui/Button/Button.js.map +1 -0
- package/es/components/Select/ui/Target/ui/Button/Button.styles.js +44 -0
- package/es/components/Select/ui/Target/ui/Button/Button.styles.js.map +1 -0
- package/es/components/Select/ui/Target/ui/Button/Button.styles_nn6pg.css +5 -0
- package/{cjs/components/Select/ui/SelectTarget/SelectTarget.css → es/components/Select/ui/Target/ui/Textfield/Textfield.css} +13 -7
- package/es/components/Select/ui/Target/ui/Textfield/Textfield.js +109 -0
- package/es/components/Select/ui/Target/ui/Textfield/Textfield.js.map +1 -0
- package/es/components/Select/ui/Target/ui/Textfield/Textfield.styles.js +98 -0
- package/es/components/Select/ui/Target/ui/Textfield/Textfield.styles.js.map +1 -0
- package/es/components/Select/ui/Target/ui/Textfield/Textfield.styles_16d02b7.css +12 -0
- package/es/components/Select/ui/{SelectChip/SelectChip.css → Target/ui/Textfield/ui/Chip/Chip.css} +1 -1
- package/es/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.js +32 -0
- package/es/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.js.map +1 -0
- package/es/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.styles.js +19 -0
- package/es/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.styles.js.map +1 -0
- package/es/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.styles_1a752pa.css +1 -0
- package/es/components/Select/utils/getButtonLabel.js +43 -0
- package/es/components/Select/utils/getButtonLabel.js.map +1 -0
- package/es/components/Select/utils/getCorrectHeight.js +9 -0
- package/es/components/Select/utils/getCorrectHeight.js.map +1 -0
- package/es/components/Select/utils/initialItemsTransform.js +15 -0
- package/es/components/Select/utils/initialItemsTransform.js.map +1 -0
- package/es/components/Select/utils/sizeToIconSize.js +7 -0
- package/es/components/Select/utils/sizeToIconSize.js.map +1 -0
- package/es/components/Select/utils/updateAncestors.js +30 -0
- package/es/components/Select/utils/updateAncestors.js.map +1 -0
- package/es/components/Select/utils/updateDescendants.js +14 -0
- package/es/components/Select/utils/updateDescendants.js.map +1 -0
- package/es/components/Select/utils/updateSingleAncestors.js +11 -0
- package/es/components/Select/utils/updateSingleAncestors.js.map +1 -0
- package/es/components/_Icon/Icon.assets/DisclosureDownCentered.js +29 -0
- package/es/components/_Icon/Icon.assets/DisclosureDownCentered.js.map +1 -0
- package/es/components/_Icon/Icon.assets/DisclosureRightCentered.js +27 -0
- package/es/components/_Icon/Icon.assets/DisclosureRightCentered.js.map +1 -0
- package/es/components/_Icon/Icons/IconDisclosureDownCentered.js +19 -0
- package/es/components/_Icon/Icons/IconDisclosureDownCentered.js.map +1 -0
- package/es/components/_Icon/Icons/IconDisclosureRightCentered.js +19 -0
- package/es/components/_Icon/Icons/IconDisclosureRightCentered.js.map +1 -0
- package/es/engines/common.js.map +1 -1
- package/es/index.css +42 -27
- package/es/index.js +2 -7
- package/es/index.js.map +1 -1
- package/es/utils/index.js.map +1 -1
- package/es/utils/isEmpty.js +45 -0
- package/es/utils/isEmpty.js.map +1 -0
- package/package.json +4 -4
- package/styled-components/cjs/components/Button/Button.styles.js +2 -2
- package/styled-components/cjs/components/Chip/Chip.tokens.js +2 -0
- package/styled-components/cjs/components/Combobox/Combobox.js +6 -6
- package/styled-components/cjs/components/Combobox/hooks/index.js +14 -1
- package/styled-components/cjs/components/Combobox/ui/ComboboxTarget/ComboboxTarget.js +4 -5
- package/styled-components/cjs/components/Combobox/utils/index.js +105 -1
- package/styled-components/cjs/components/Dropdown/Dropdown.tokens.js +32 -18
- package/styled-components/cjs/components/Dropdown/hooks/useKeyboardNavigation.js +63 -24
- package/styled-components/cjs/components/Pagination/Pagination.js +12 -5
- package/styled-components/cjs/components/Pagination/Pagination.styles.js +2 -2
- package/styled-components/cjs/components/Pagination/Pagination.tokens.js +9 -11
- package/styled-components/cjs/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.js +22 -35
- package/styled-components/cjs/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.styles.js +3 -8
- package/styled-components/cjs/components/Select/Select.js +255 -187
- package/styled-components/cjs/components/Select/Select.styles.js +28 -23
- package/styled-components/cjs/components/Select/Select.tokens.js +80 -167
- package/styled-components/cjs/components/Select/hooks/useKeyboardNavigation.js +355 -0
- package/styled-components/cjs/components/Select/hooks/usePathMaps.js +33 -0
- package/styled-components/cjs/components/Select/index.js +1 -25
- package/styled-components/cjs/components/Select/reducers/focusedChipIndexReducer.js +38 -0
- package/styled-components/cjs/components/Select/reducers/focusedPathReducer.js +40 -0
- package/styled-components/cjs/components/Select/reducers/index.js +38 -0
- package/styled-components/cjs/components/Select/reducers/pathReducer.js +44 -0
- package/styled-components/cjs/components/Select/ui/InfiniteLoader/InfiniteLoader.js +18 -0
- package/styled-components/cjs/components/Select/ui/InfiniteLoader/InfiniteLoader.styles.js +24 -0
- package/styled-components/cjs/components/Select/ui/Inner/Inner.js +80 -0
- package/styled-components/cjs/components/Select/ui/Inner/ui/Item/Item.js +95 -0
- package/styled-components/cjs/components/Select/ui/Inner/ui/Item/Item.styles.js +66 -0
- package/styled-components/cjs/components/Select/ui/Inner/ui/index.js +16 -0
- package/styled-components/cjs/components/Select/ui/Target/Target.js +61 -0
- package/styled-components/cjs/components/Select/ui/Target/ui/Button/Button.js +57 -0
- package/styled-components/cjs/components/Select/ui/Target/ui/Button/Button.styles.js +30 -0
- package/styled-components/cjs/components/Select/ui/Target/ui/Textfield/Textfield.js +111 -0
- package/styled-components/cjs/components/Select/ui/Target/ui/Textfield/Textfield.styles.js +63 -0
- package/{emotion/cjs/components/Select/ui/SelectChip/SelectChip.js → styled-components/cjs/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.js} +24 -27
- package/styled-components/cjs/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.styles.js +21 -0
- package/styled-components/cjs/components/Select/ui/Target/ui/Textfield/ui/index.js +16 -0
- package/styled-components/cjs/components/Select/ui/Target/ui/index.js +27 -0
- package/styled-components/cjs/components/Select/ui/index.js +33 -72
- package/styled-components/cjs/components/Select/utils/getButtonLabel.js +43 -0
- package/styled-components/cjs/components/Select/utils/getCorrectHeight.js +12 -0
- package/styled-components/cjs/components/Select/utils/index.js +44 -102
- package/styled-components/cjs/components/Select/utils/initialItemsTransform.js +18 -0
- package/styled-components/cjs/components/Select/utils/sizeToIconSize.js +10 -0
- package/styled-components/cjs/components/Select/utils/updateAncestors.js +33 -0
- package/styled-components/cjs/components/Select/utils/updateDescendants.js +17 -0
- package/styled-components/cjs/components/Select/utils/updateSingleAncestors.js +14 -0
- package/styled-components/cjs/components/_Icon/Icon.assets/DisclosureDownCentered.js +32 -0
- package/styled-components/cjs/components/_Icon/Icon.assets/DisclosureRightCentered.js +30 -0
- package/styled-components/cjs/components/_Icon/Icons/IconDisclosureDownCentered.js +22 -0
- package/styled-components/cjs/components/_Icon/Icons/IconDisclosureRightCentered.js +22 -0
- package/styled-components/cjs/components/_Icon/index.js +14 -0
- package/styled-components/cjs/examples/_helpers.js +1 -1
- package/styled-components/cjs/examples/plasma_b2c/components/Pagination/Pagination.config.js +7 -7
- package/styled-components/cjs/examples/plasma_b2c/components/Pagination/Pagination.stories.tsx +1 -0
- package/styled-components/cjs/examples/plasma_b2c/components/Select/Select.config.js +21 -11
- package/styled-components/cjs/examples/plasma_b2c/components/Select/Select.js +5 -15
- package/styled-components/cjs/examples/plasma_b2c/components/Select/Select.stories.tsx +753 -204
- package/styled-components/cjs/examples/plasma_b2c/components/Select/style.css +36 -0
- package/styled-components/cjs/examples/plasma_web/components/Pagination/Pagination.config.js +7 -7
- package/styled-components/cjs/examples/plasma_web/components/Select/Select.config.js +21 -11
- package/styled-components/cjs/examples/plasma_web/components/Select/Select.js +5 -15
- package/styled-components/cjs/examples/plasma_web/components/Select/Select.stories.tsx +753 -200
- package/styled-components/cjs/examples/plasma_web/components/Select/style.css +37 -0
- package/styled-components/cjs/utils/index.js +9 -1
- package/styled-components/cjs/utils/isEmpty.js +47 -0
- package/styled-components/es/components/Button/Button.styles.js +2 -2
- package/styled-components/es/components/Chip/Chip.tokens.js +2 -0
- package/styled-components/es/components/Combobox/Combobox.js +2 -2
- package/styled-components/es/components/Combobox/hooks/index.js +2 -1
- package/styled-components/es/components/Combobox/ui/ComboboxTarget/ComboboxTarget.js +1 -2
- package/styled-components/es/components/Combobox/utils/index.js +105 -1
- package/styled-components/es/components/Dropdown/Dropdown.tokens.js +32 -18
- package/styled-components/es/components/Dropdown/hooks/useKeyboardNavigation.js +63 -24
- package/styled-components/es/components/Pagination/Pagination.js +12 -5
- package/styled-components/es/components/Pagination/Pagination.styles.js +2 -2
- package/styled-components/es/components/Pagination/Pagination.tokens.js +9 -11
- package/styled-components/es/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.js +22 -33
- package/styled-components/es/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.styles.js +3 -8
- package/styled-components/es/components/Select/Select.js +252 -185
- package/styled-components/es/components/Select/Select.styles.js +25 -21
- package/styled-components/es/components/Select/Select.tokens.js +79 -166
- package/styled-components/es/components/Select/hooks/useKeyboardNavigation.js +349 -0
- package/styled-components/es/components/Select/hooks/usePathMaps.js +27 -0
- package/styled-components/es/components/Select/index.js +1 -2
- package/styled-components/es/components/Select/reducers/focusedChipIndexReducer.js +32 -0
- package/styled-components/es/components/Select/reducers/focusedPathReducer.js +34 -0
- package/styled-components/es/components/Select/reducers/index.js +3 -0
- package/styled-components/es/components/Select/reducers/pathReducer.js +38 -0
- package/styled-components/es/components/Select/ui/InfiniteLoader/InfiniteLoader.js +11 -0
- package/styled-components/es/components/Select/ui/InfiniteLoader/InfiniteLoader.styles.js +17 -0
- package/styled-components/es/components/Select/ui/Inner/Inner.js +73 -0
- package/styled-components/es/components/Select/ui/Inner/ui/Item/Item.js +86 -0
- package/styled-components/es/components/Select/ui/Inner/ui/Item/Item.styles.js +59 -0
- package/styled-components/es/components/Select/ui/Inner/ui/index.js +1 -0
- package/styled-components/es/components/Select/ui/Target/Target.js +54 -0
- package/styled-components/es/components/Select/ui/Target/ui/Button/Button.js +50 -0
- package/styled-components/es/components/Select/ui/Target/ui/Button/Button.styles.js +23 -0
- package/styled-components/es/components/Select/ui/Target/ui/Textfield/Textfield.js +104 -0
- package/styled-components/es/components/Select/ui/Target/ui/Textfield/Textfield.styles.js +56 -0
- package/styled-components/es/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.js +28 -0
- package/styled-components/es/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.styles.js +14 -0
- package/styled-components/es/components/Select/ui/Target/ui/Textfield/ui/index.js +1 -0
- package/styled-components/es/components/Select/ui/Target/ui/index.js +2 -0
- package/styled-components/es/components/Select/ui/index.js +3 -6
- package/styled-components/es/components/Select/utils/getButtonLabel.js +37 -0
- package/styled-components/es/components/Select/utils/getCorrectHeight.js +6 -0
- package/styled-components/es/components/Select/utils/index.js +7 -106
- package/styled-components/es/components/Select/utils/initialItemsTransform.js +12 -0
- package/styled-components/es/components/Select/utils/sizeToIconSize.js +4 -0
- package/styled-components/es/components/Select/utils/updateAncestors.js +27 -0
- package/styled-components/es/components/Select/utils/updateDescendants.js +11 -0
- package/styled-components/es/components/Select/utils/updateSingleAncestors.js +8 -0
- package/styled-components/es/components/_Icon/Icon.assets/DisclosureDownCentered.js +25 -0
- package/styled-components/es/components/_Icon/Icon.assets/DisclosureRightCentered.js +23 -0
- package/styled-components/es/components/_Icon/Icons/IconDisclosureDownCentered.js +15 -0
- package/styled-components/es/components/_Icon/Icons/IconDisclosureRightCentered.js +15 -0
- package/styled-components/es/components/_Icon/index.js +2 -0
- package/styled-components/es/examples/_helpers.js +1 -1
- package/styled-components/es/examples/plasma_b2c/components/Pagination/Pagination.config.js +7 -7
- package/styled-components/es/examples/plasma_b2c/components/Pagination/Pagination.stories.tsx +1 -0
- package/styled-components/es/examples/plasma_b2c/components/Select/Select.config.js +21 -11
- package/styled-components/es/examples/plasma_b2c/components/Select/Select.js +3 -12
- package/styled-components/es/examples/plasma_b2c/components/Select/Select.stories.tsx +753 -204
- package/styled-components/es/examples/plasma_b2c/components/Select/style.css +36 -0
- package/styled-components/es/examples/plasma_web/components/Pagination/Pagination.config.js +7 -7
- package/styled-components/es/examples/plasma_web/components/Select/Select.config.js +21 -11
- package/styled-components/es/examples/plasma_web/components/Select/Select.js +3 -12
- package/styled-components/es/examples/plasma_web/components/Select/Select.stories.tsx +753 -200
- package/styled-components/es/examples/plasma_web/components/Select/style.css +37 -0
- package/styled-components/es/utils/index.js +1 -0
- package/styled-components/es/utils/isEmpty.js +42 -0
- package/types/components/Accordion/ui/AccordionItem/AccordionItem.d.ts +2 -2
- package/types/components/Accordion/ui/AccordionItem/AccordionItem.d.ts.map +1 -1
- package/types/components/Chip/Chip.tokens.d.ts +2 -0
- package/types/components/Chip/Chip.tokens.d.ts.map +1 -1
- package/types/components/Combobox/Combobox.types.d.ts +21 -0
- package/types/components/Combobox/Combobox.types.d.ts.map +1 -1
- package/types/components/Combobox/hooks/index.d.ts +1 -0
- package/types/components/Combobox/hooks/index.d.ts.map +1 -1
- package/types/components/{Select → Combobox}/hooks/useKeyNavigation.d.ts +1 -1
- package/types/components/Combobox/hooks/useKeyNavigation.d.ts.map +1 -0
- package/types/components/Combobox/ui/ComboboxTarget/ComboboxTarget.d.ts.map +1 -1
- package/types/components/Combobox/utils/index.d.ts +13 -1
- package/types/components/Combobox/utils/index.d.ts.map +1 -1
- package/types/components/Dropdown/Dropdown.tokens.d.ts +17 -17
- package/types/components/Dropdown/Dropdown.tokens.d.ts.map +1 -1
- package/types/components/Dropdown/hooks/useKeyboardNavigation.d.ts.map +1 -1
- package/types/components/Pagination/Pagination.d.ts.map +1 -1
- package/types/components/Pagination/Pagination.tokens.d.ts +9 -11
- package/types/components/Pagination/Pagination.tokens.d.ts.map +1 -1
- package/types/components/Pagination/Pagination.types.d.ts +6 -1
- package/types/components/Pagination/Pagination.types.d.ts.map +1 -1
- package/types/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.d.ts.map +1 -1
- package/types/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.styles.d.ts +53 -43
- package/types/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.styles.d.ts.map +1 -1
- package/types/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.types.d.ts +5 -2
- package/types/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.types.d.ts.map +1 -1
- package/types/components/Select/Select.d.ts +7 -8
- package/types/components/Select/Select.d.ts.map +1 -1
- package/types/components/Select/Select.styles.d.ts +11 -6
- package/types/components/Select/Select.styles.d.ts.map +1 -1
- package/types/components/Select/Select.tokens.d.ts +78 -165
- package/types/components/Select/Select.tokens.d.ts.map +1 -1
- package/types/components/Select/Select.types.d.ts +104 -67
- package/types/components/Select/Select.types.d.ts.map +1 -1
- package/types/components/Select/hooks/useKeyboardNavigation.d.ts +43 -0
- package/types/components/Select/hooks/useKeyboardNavigation.d.ts.map +1 -0
- package/types/components/Select/hooks/usePathMaps.d.ts +8 -0
- package/types/components/Select/hooks/usePathMaps.d.ts.map +1 -0
- package/types/components/Select/index.d.ts +2 -3
- package/types/components/Select/index.d.ts.map +1 -1
- package/types/components/Select/reducers/focusedChipIndexReducer.d.ts +11 -0
- package/types/components/Select/reducers/focusedChipIndexReducer.d.ts.map +1 -0
- package/types/components/Select/reducers/focusedPathReducer.d.ts +16 -0
- package/types/components/Select/reducers/focusedPathReducer.d.ts.map +1 -0
- package/types/components/Select/reducers/index.d.ts +4 -0
- package/types/components/Select/reducers/index.d.ts.map +1 -0
- package/types/components/Select/reducers/pathReducer.d.ts +20 -0
- package/types/components/Select/reducers/pathReducer.d.ts.map +1 -0
- package/types/components/Select/ui/InfiniteLoader/InfiniteLoader.d.ts +6 -0
- package/types/components/Select/ui/InfiniteLoader/InfiniteLoader.d.ts.map +1 -0
- package/types/components/Select/ui/InfiniteLoader/InfiniteLoader.styles.d.ts +29 -0
- package/types/components/Select/ui/InfiniteLoader/InfiniteLoader.styles.d.ts.map +1 -0
- package/types/components/Select/ui/Inner/Inner.d.ts +4 -0
- package/types/components/Select/ui/Inner/Inner.d.ts.map +1 -0
- package/types/components/Select/ui/Inner/Inner.type.d.ts +13 -0
- package/types/components/Select/ui/Inner/Inner.type.d.ts.map +1 -0
- package/types/components/Select/ui/Inner/ui/Item/Item.d.ts +4 -0
- package/types/components/Select/ui/Inner/ui/Item/Item.d.ts.map +1 -0
- package/types/components/Select/ui/Inner/ui/Item/Item.styles.d.ts +19 -0
- package/types/components/Select/ui/Inner/ui/Item/Item.styles.d.ts.map +1 -0
- package/types/components/Select/ui/Inner/ui/Item/Item.types.d.ts +42 -0
- package/types/components/Select/ui/Inner/ui/Item/Item.types.d.ts.map +1 -0
- package/types/components/Select/ui/Inner/ui/index.d.ts +2 -0
- package/types/components/Select/ui/Inner/ui/index.d.ts.map +1 -0
- package/types/components/Select/ui/Target/Target.d.ts +4 -0
- package/types/components/Select/ui/Target/Target.d.ts.map +1 -0
- package/types/components/Select/ui/Target/Target.types.d.ts +15 -0
- package/types/components/Select/ui/Target/Target.types.d.ts.map +1 -0
- package/types/components/Select/ui/Target/ui/Button/Button.d.ts +4 -0
- package/types/components/Select/ui/Target/ui/Button/Button.d.ts.map +1 -0
- package/types/components/Select/ui/{SelectTarget/SelectTarget.styles.d.ts → Target/ui/Button/Button.styles.d.ts} +8 -13
- package/types/components/Select/ui/Target/ui/Button/Button.styles.d.ts.map +1 -0
- package/types/components/Select/ui/Target/ui/Button/Button.types.d.ts +4 -0
- package/types/components/Select/ui/Target/ui/Button/Button.types.d.ts.map +1 -0
- package/types/components/Select/ui/Target/ui/Textfield/Textfield.d.ts +4 -0
- package/types/components/Select/ui/Target/ui/Textfield/Textfield.d.ts.map +1 -0
- package/types/components/Select/ui/Target/ui/Textfield/Textfield.styles.d.ts +60 -0
- package/types/components/Select/ui/Target/ui/Textfield/Textfield.styles.d.ts.map +1 -0
- package/types/components/Select/ui/Target/ui/Textfield/Textfield.types.d.ts +4 -0
- package/types/components/Select/ui/Target/ui/Textfield/Textfield.types.d.ts.map +1 -0
- package/types/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.d.ts +9 -0
- package/types/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.d.ts.map +1 -0
- package/types/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.styles.d.ts +3 -0
- package/types/components/Select/ui/Target/ui/Textfield/ui/Chip/Chip.styles.d.ts.map +1 -0
- package/types/components/Select/ui/Target/ui/Textfield/ui/index.d.ts +2 -0
- package/types/components/Select/ui/Target/ui/Textfield/ui/index.d.ts.map +1 -0
- package/types/components/Select/ui/Target/ui/index.d.ts +3 -0
- package/types/components/Select/ui/Target/ui/index.d.ts.map +1 -0
- package/types/components/Select/ui/index.d.ts +3 -6
- package/types/components/Select/ui/index.d.ts.map +1 -1
- package/types/components/Select/utils/getButtonLabel.d.ts +3 -0
- package/types/components/Select/utils/getButtonLabel.d.ts.map +1 -0
- package/types/components/Select/utils/getCorrectHeight.d.ts +3 -0
- package/types/components/Select/utils/getCorrectHeight.d.ts.map +1 -0
- package/types/components/Select/utils/index.d.ts +7 -13
- package/types/components/Select/utils/index.d.ts.map +1 -1
- package/types/components/Select/utils/initialItemsTransform.d.ts +3 -0
- package/types/components/Select/utils/initialItemsTransform.d.ts.map +1 -0
- package/types/components/Select/utils/sizeToIconSize.d.ts +3 -0
- package/types/components/Select/utils/sizeToIconSize.d.ts.map +1 -0
- package/types/components/Select/utils/updateAncestors.d.ts +4 -0
- package/types/components/Select/utils/updateAncestors.d.ts.map +1 -0
- package/types/components/Select/utils/updateDescendants.d.ts +4 -0
- package/types/components/Select/utils/updateDescendants.d.ts.map +1 -0
- package/types/components/Select/utils/updateSingleAncestors.d.ts +4 -0
- package/types/components/Select/utils/updateSingleAncestors.d.ts.map +1 -0
- package/types/components/_Icon/Icon.assets/DisclosureDownCentered.d.ts +4 -0
- package/types/components/_Icon/Icon.assets/DisclosureDownCentered.d.ts.map +1 -0
- package/types/components/_Icon/Icon.assets/DisclosureRightCentered.d.ts +4 -0
- package/types/components/_Icon/Icon.assets/DisclosureRightCentered.d.ts.map +1 -0
- package/types/components/_Icon/Icons/IconDisclosureDownCentered.d.ts +4 -0
- package/types/components/_Icon/Icons/IconDisclosureDownCentered.d.ts.map +1 -0
- package/types/components/_Icon/Icons/IconDisclosureRightCentered.d.ts +4 -0
- package/types/components/_Icon/Icons/IconDisclosureRightCentered.d.ts.map +1 -0
- package/types/components/_Icon/index.d.ts +2 -0
- package/types/components/_Icon/index.d.ts.map +1 -1
- package/types/engines/common.d.ts +3 -3
- package/types/engines/common.d.ts.map +1 -1
- package/types/engines/types.d.ts +3 -3
- package/types/engines/types.d.ts.map +1 -1
- package/types/examples/_helpers.d.ts +2 -2
- package/types/examples/_helpers.d.ts.map +1 -1
- package/types/examples/plasma_b2c/components/Pagination/Pagination.config.d.ts +1 -1
- package/types/examples/plasma_b2c/components/Pagination/Pagination.config.d.ts.map +1 -1
- package/types/examples/plasma_b2c/components/Pagination/Pagination.d.ts +1 -1
- package/types/examples/plasma_b2c/components/Select/Select.config.d.ts +15 -5
- package/types/examples/plasma_b2c/components/Select/Select.config.d.ts.map +1 -1
- package/types/examples/plasma_b2c/components/Select/Select.d.ts +69 -55
- package/types/examples/plasma_b2c/components/Select/Select.d.ts.map +1 -1
- package/types/examples/plasma_web/components/Pagination/Pagination.config.d.ts +1 -1
- package/types/examples/plasma_web/components/Pagination/Pagination.config.d.ts.map +1 -1
- package/types/examples/plasma_web/components/Pagination/Pagination.d.ts +1 -1
- package/types/examples/plasma_web/components/Select/Select.config.d.ts +15 -5
- package/types/examples/plasma_web/components/Select/Select.config.d.ts.map +1 -1
- package/types/examples/plasma_web/components/Select/Select.d.ts +69 -55
- package/types/examples/plasma_web/components/Select/Select.d.ts.map +1 -1
- package/types/utils/index.d.ts +1 -0
- package/types/utils/index.d.ts.map +1 -1
- package/types/utils/isEmpty.d.ts +3 -0
- package/types/utils/isEmpty.d.ts.map +1 -0
- package/cjs/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.styles_rtehle.css +0 -4
- package/cjs/components/Select/Select.styles_1q3i6gw.css +0 -4
- package/cjs/components/Select/hooks/useKeyNavigation.js.map +0 -1
- package/cjs/components/Select/ui/SelectChip/SelectChip.js +0 -39
- package/cjs/components/Select/ui/SelectChip/SelectChip.js.map +0 -1
- package/cjs/components/Select/ui/SelectChip/SelectChip.styles.js.map +0 -1
- package/cjs/components/Select/ui/SelectChip/SelectChip.styles_1u4uw04.css +0 -1
- package/cjs/components/Select/ui/SelectDivider/SelectDivider.css +0 -35
- package/cjs/components/Select/ui/SelectDivider/SelectDivider.js +0 -41
- package/cjs/components/Select/ui/SelectDivider/SelectDivider.js.map +0 -1
- package/cjs/components/Select/ui/SelectDivider/SelectDivider.styles.js +0 -12
- package/cjs/components/Select/ui/SelectDivider/SelectDivider.styles.js.map +0 -1
- package/cjs/components/Select/ui/SelectDivider/SelectDivider.styles_673hj6.css +0 -1
- package/cjs/components/Select/ui/SelectDivider/variations/_size/base.js +0 -9
- package/cjs/components/Select/ui/SelectDivider/variations/_size/base.js.map +0 -1
- package/cjs/components/Select/ui/SelectDivider/variations/_size/base_x642ct.css +0 -1
- package/cjs/components/Select/ui/SelectDivider/variations/_view/base.js +0 -9
- package/cjs/components/Select/ui/SelectDivider/variations/_view/base.js.map +0 -1
- package/cjs/components/Select/ui/SelectDivider/variations/_view/base_x642ct.css +0 -1
- package/cjs/components/Select/ui/SelectFooter/SelectFooter.css +0 -35
- package/cjs/components/Select/ui/SelectFooter/SelectFooter.js +0 -41
- package/cjs/components/Select/ui/SelectFooter/SelectFooter.js.map +0 -1
- package/cjs/components/Select/ui/SelectFooter/SelectFooter.styles.js +0 -12
- package/cjs/components/Select/ui/SelectFooter/SelectFooter.styles.js.map +0 -1
- package/cjs/components/Select/ui/SelectFooter/SelectFooter.styles_11hk6tt.css +0 -1
- package/cjs/components/Select/ui/SelectFooter/variations/_size/base.js +0 -9
- package/cjs/components/Select/ui/SelectFooter/variations/_size/base.js.map +0 -1
- package/cjs/components/Select/ui/SelectFooter/variations/_size/base_x642ct.css +0 -1
- package/cjs/components/Select/ui/SelectFooter/variations/_view/base.js +0 -9
- package/cjs/components/Select/ui/SelectFooter/variations/_view/base.js.map +0 -1
- package/cjs/components/Select/ui/SelectFooter/variations/_view/base_x642ct.css +0 -1
- package/cjs/components/Select/ui/SelectGroup/SelectGroup.css +0 -35
- package/cjs/components/Select/ui/SelectGroup/SelectGroup.js +0 -41
- package/cjs/components/Select/ui/SelectGroup/SelectGroup.js.map +0 -1
- package/cjs/components/Select/ui/SelectGroup/SelectGroup.styles.js +0 -12
- package/cjs/components/Select/ui/SelectGroup/SelectGroup.styles.js.map +0 -1
- package/cjs/components/Select/ui/SelectGroup/SelectGroup.styles_mktu7e.css +0 -1
- package/cjs/components/Select/ui/SelectGroup/variations/_size/base.js +0 -9
- package/cjs/components/Select/ui/SelectGroup/variations/_size/base.js.map +0 -1
- package/cjs/components/Select/ui/SelectGroup/variations/_size/base_x642ct.css +0 -1
- package/cjs/components/Select/ui/SelectGroup/variations/_view/base.js +0 -9
- package/cjs/components/Select/ui/SelectGroup/variations/_view/base.js.map +0 -1
- package/cjs/components/Select/ui/SelectGroup/variations/_view/base_x642ct.css +0 -1
- package/cjs/components/Select/ui/SelectHeader/SelectHeader.css +0 -35
- package/cjs/components/Select/ui/SelectHeader/SelectHeader.js +0 -41
- package/cjs/components/Select/ui/SelectHeader/SelectHeader.js.map +0 -1
- package/cjs/components/Select/ui/SelectHeader/SelectHeader.styles.js +0 -12
- package/cjs/components/Select/ui/SelectHeader/SelectHeader.styles.js.map +0 -1
- package/cjs/components/Select/ui/SelectHeader/SelectHeader.styles_24gqog.css +0 -1
- package/cjs/components/Select/ui/SelectHeader/variations/_size/base.js +0 -9
- package/cjs/components/Select/ui/SelectHeader/variations/_size/base.js.map +0 -1
- package/cjs/components/Select/ui/SelectHeader/variations/_size/base_x642ct.css +0 -1
- package/cjs/components/Select/ui/SelectHeader/variations/_view/base.js +0 -9
- package/cjs/components/Select/ui/SelectHeader/variations/_view/base.js.map +0 -1
- package/cjs/components/Select/ui/SelectHeader/variations/_view/base_x642ct.css +0 -1
- package/cjs/components/Select/ui/SelectItem/SelectItem.css +0 -35
- package/cjs/components/Select/ui/SelectItem/SelectItem.js +0 -40
- package/cjs/components/Select/ui/SelectItem/SelectItem.js.map +0 -1
- package/cjs/components/Select/ui/SelectItem/SelectItem.styles.js +0 -19
- package/cjs/components/Select/ui/SelectItem/SelectItem.styles.js.map +0 -1
- package/cjs/components/Select/ui/SelectItem/SelectItem.styles_vk39mp.css +0 -1
- package/cjs/components/Select/ui/SelectItem/variations/_size/base.js +0 -9
- package/cjs/components/Select/ui/SelectItem/variations/_size/base.js.map +0 -1
- package/cjs/components/Select/ui/SelectItem/variations/_size/base_x642ct.css +0 -1
- package/cjs/components/Select/ui/SelectItem/variations/_view/base.js +0 -9
- package/cjs/components/Select/ui/SelectItem/variations/_view/base.js.map +0 -1
- package/cjs/components/Select/ui/SelectItem/variations/_view/base_x642ct.css +0 -1
- package/cjs/components/Select/ui/SelectTarget/SelectTarget.js +0 -148
- package/cjs/components/Select/ui/SelectTarget/SelectTarget.js.map +0 -1
- package/cjs/components/Select/ui/SelectTarget/SelectTarget.styles.js +0 -112
- package/cjs/components/Select/ui/SelectTarget/SelectTarget.styles.js.map +0 -1
- package/cjs/components/Select/ui/SelectTarget/SelectTarget.styles_hb1tns.css +0 -6
- package/cjs/components/Select/utils/index.js +0 -112
- package/cjs/components/Select/utils/index.js.map +0 -1
- package/cjs/components/Select/variations/_target/base.js +0 -9
- package/cjs/components/Select/variations/_target/base.js.map +0 -1
- package/cjs/components/Select/variations/_target/base_x642ct.css +0 -1
- package/emotion/cjs/components/Select/Select.template-doc.mdx +0 -115
- package/emotion/cjs/components/Select/hooks/index.js +0 -12
- package/emotion/cjs/components/Select/ui/SelectChip/SelectChip.styles.js +0 -26
- package/emotion/cjs/components/Select/ui/SelectDivider/SelectDivider.js +0 -29
- package/emotion/cjs/components/Select/ui/SelectDivider/SelectDivider.styles.js +0 -12
- package/emotion/cjs/components/Select/ui/SelectDivider/variations/_size/base.js +0 -8
- package/emotion/cjs/components/Select/ui/SelectDivider/variations/_size/tokens.json +0 -8
- package/emotion/cjs/components/Select/ui/SelectDivider/variations/_view/base.js +0 -8
- package/emotion/cjs/components/Select/ui/SelectDivider/variations/_view/tokens.json +0 -1
- package/emotion/cjs/components/Select/ui/SelectFooter/SelectFooter.js +0 -29
- package/emotion/cjs/components/Select/ui/SelectFooter/SelectFooter.styles.js +0 -12
- package/emotion/cjs/components/Select/ui/SelectFooter/variations/_size/base.js +0 -8
- package/emotion/cjs/components/Select/ui/SelectFooter/variations/_size/tokens.json +0 -12
- package/emotion/cjs/components/Select/ui/SelectFooter/variations/_view/base.js +0 -8
- package/emotion/cjs/components/Select/ui/SelectFooter/variations/_view/tokens.json +0 -9
- package/emotion/cjs/components/Select/ui/SelectGroup/SelectGroup.js +0 -29
- package/emotion/cjs/components/Select/ui/SelectGroup/SelectGroup.styles.js +0 -12
- package/emotion/cjs/components/Select/ui/SelectGroup/variations/_size/base.js +0 -8
- package/emotion/cjs/components/Select/ui/SelectGroup/variations/_size/tokens.json +0 -20
- package/emotion/cjs/components/Select/ui/SelectGroup/variations/_view/base.js +0 -8
- package/emotion/cjs/components/Select/ui/SelectGroup/variations/_view/tokens.json +0 -10
- package/emotion/cjs/components/Select/ui/SelectHeader/SelectHeader.js +0 -29
- package/emotion/cjs/components/Select/ui/SelectHeader/SelectHeader.styles.js +0 -12
- package/emotion/cjs/components/Select/ui/SelectHeader/variations/_size/base.js +0 -8
- package/emotion/cjs/components/Select/ui/SelectHeader/variations/_size/tokens.json +0 -12
- package/emotion/cjs/components/Select/ui/SelectHeader/variations/_view/base.js +0 -8
- package/emotion/cjs/components/Select/ui/SelectHeader/variations/_view/tokens.json +0 -9
- package/emotion/cjs/components/Select/ui/SelectItem/SelectItem.js +0 -29
- package/emotion/cjs/components/Select/ui/SelectItem/SelectItem.styles.js +0 -13
- package/emotion/cjs/components/Select/ui/SelectItem/variations/_size/base.js +0 -8
- package/emotion/cjs/components/Select/ui/SelectItem/variations/_size/tokens.json +0 -19
- package/emotion/cjs/components/Select/ui/SelectItem/variations/_view/base.js +0 -8
- package/emotion/cjs/components/Select/ui/SelectItem/variations/_view/tokens.json +0 -9
- package/emotion/cjs/components/Select/ui/SelectTarget/SelectTarget.js +0 -157
- package/emotion/cjs/components/Select/ui/SelectTarget/SelectTarget.styles.js +0 -75
- package/emotion/cjs/components/Select/variations/_target/base.js +0 -8
- package/emotion/cjs/components/Select/variations/_target/tokens.json +0 -1
- package/emotion/es/components/Select/Select.template-doc.mdx +0 -115
- package/emotion/es/components/Select/hooks/index.js +0 -1
- package/emotion/es/components/Select/ui/SelectChip/SelectChip.js +0 -31
- package/emotion/es/components/Select/ui/SelectChip/SelectChip.styles.js +0 -20
- package/emotion/es/components/Select/ui/SelectDivider/SelectDivider.js +0 -23
- package/emotion/es/components/Select/ui/SelectDivider/SelectDivider.styles.js +0 -7
- package/emotion/es/components/Select/ui/SelectDivider/variations/_size/base.js +0 -2
- package/emotion/es/components/Select/ui/SelectDivider/variations/_size/tokens.json +0 -8
- package/emotion/es/components/Select/ui/SelectDivider/variations/_view/base.js +0 -2
- package/emotion/es/components/Select/ui/SelectDivider/variations/_view/tokens.json +0 -1
- package/emotion/es/components/Select/ui/SelectFooter/SelectFooter.js +0 -23
- package/emotion/es/components/Select/ui/SelectFooter/SelectFooter.styles.js +0 -7
- package/emotion/es/components/Select/ui/SelectFooter/variations/_size/base.js +0 -2
- package/emotion/es/components/Select/ui/SelectFooter/variations/_size/tokens.json +0 -12
- package/emotion/es/components/Select/ui/SelectFooter/variations/_view/base.js +0 -2
- package/emotion/es/components/Select/ui/SelectFooter/variations/_view/tokens.json +0 -9
- package/emotion/es/components/Select/ui/SelectGroup/SelectGroup.js +0 -23
- package/emotion/es/components/Select/ui/SelectGroup/SelectGroup.styles.js +0 -7
- package/emotion/es/components/Select/ui/SelectGroup/variations/_size/base.js +0 -2
- package/emotion/es/components/Select/ui/SelectGroup/variations/_size/tokens.json +0 -20
- package/emotion/es/components/Select/ui/SelectGroup/variations/_view/base.js +0 -2
- package/emotion/es/components/Select/ui/SelectGroup/variations/_view/tokens.json +0 -10
- package/emotion/es/components/Select/ui/SelectHeader/SelectHeader.js +0 -23
- package/emotion/es/components/Select/ui/SelectHeader/SelectHeader.styles.js +0 -7
- package/emotion/es/components/Select/ui/SelectHeader/variations/_size/base.js +0 -2
- package/emotion/es/components/Select/ui/SelectHeader/variations/_size/tokens.json +0 -12
- package/emotion/es/components/Select/ui/SelectHeader/variations/_view/base.js +0 -2
- package/emotion/es/components/Select/ui/SelectHeader/variations/_view/tokens.json +0 -9
- package/emotion/es/components/Select/ui/SelectItem/SelectItem.js +0 -23
- package/emotion/es/components/Select/ui/SelectItem/SelectItem.styles.js +0 -8
- package/emotion/es/components/Select/ui/SelectItem/variations/_size/base.js +0 -2
- package/emotion/es/components/Select/ui/SelectItem/variations/_size/tokens.json +0 -19
- package/emotion/es/components/Select/ui/SelectItem/variations/_view/base.js +0 -2
- package/emotion/es/components/Select/ui/SelectItem/variations/_view/tokens.json +0 -9
- package/emotion/es/components/Select/ui/SelectTarget/SelectTarget.js +0 -148
- package/emotion/es/components/Select/ui/SelectTarget/SelectTarget.styles.js +0 -68
- package/emotion/es/components/Select/variations/_target/base.js +0 -2
- package/emotion/es/components/Select/variations/_target/tokens.json +0 -1
- package/es/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.styles_rtehle.css +0 -4
- package/es/components/Select/Select.styles_1q3i6gw.css +0 -4
- package/es/components/Select/hooks/useKeyNavigation.js.map +0 -1
- package/es/components/Select/ui/SelectChip/SelectChip.js +0 -35
- package/es/components/Select/ui/SelectChip/SelectChip.js.map +0 -1
- package/es/components/Select/ui/SelectChip/SelectChip.styles.js +0 -22
- package/es/components/Select/ui/SelectChip/SelectChip.styles.js.map +0 -1
- package/es/components/Select/ui/SelectChip/SelectChip.styles_1u4uw04.css +0 -1
- package/es/components/Select/ui/SelectDivider/SelectDivider.css +0 -35
- package/es/components/Select/ui/SelectDivider/SelectDivider.js +0 -36
- package/es/components/Select/ui/SelectDivider/SelectDivider.js.map +0 -1
- package/es/components/Select/ui/SelectDivider/SelectDivider.styles.js +0 -7
- package/es/components/Select/ui/SelectDivider/SelectDivider.styles.js.map +0 -1
- package/es/components/Select/ui/SelectDivider/SelectDivider.styles_673hj6.css +0 -1
- package/es/components/Select/ui/SelectDivider/variations/_size/base.js +0 -5
- package/es/components/Select/ui/SelectDivider/variations/_size/base.js.map +0 -1
- package/es/components/Select/ui/SelectDivider/variations/_size/base_x642ct.css +0 -1
- package/es/components/Select/ui/SelectDivider/variations/_view/base.js +0 -5
- package/es/components/Select/ui/SelectDivider/variations/_view/base.js.map +0 -1
- package/es/components/Select/ui/SelectDivider/variations/_view/base_x642ct.css +0 -1
- package/es/components/Select/ui/SelectFooter/SelectFooter.css +0 -35
- package/es/components/Select/ui/SelectFooter/SelectFooter.js +0 -36
- package/es/components/Select/ui/SelectFooter/SelectFooter.js.map +0 -1
- package/es/components/Select/ui/SelectFooter/SelectFooter.styles.js +0 -7
- package/es/components/Select/ui/SelectFooter/SelectFooter.styles.js.map +0 -1
- package/es/components/Select/ui/SelectFooter/SelectFooter.styles_11hk6tt.css +0 -1
- package/es/components/Select/ui/SelectFooter/variations/_size/base.js +0 -5
- package/es/components/Select/ui/SelectFooter/variations/_size/base.js.map +0 -1
- package/es/components/Select/ui/SelectFooter/variations/_size/base_x642ct.css +0 -1
- package/es/components/Select/ui/SelectFooter/variations/_view/base.js +0 -5
- package/es/components/Select/ui/SelectFooter/variations/_view/base.js.map +0 -1
- package/es/components/Select/ui/SelectFooter/variations/_view/base_x642ct.css +0 -1
- package/es/components/Select/ui/SelectGroup/SelectGroup.css +0 -35
- package/es/components/Select/ui/SelectGroup/SelectGroup.js +0 -36
- package/es/components/Select/ui/SelectGroup/SelectGroup.js.map +0 -1
- package/es/components/Select/ui/SelectGroup/SelectGroup.styles.js +0 -7
- package/es/components/Select/ui/SelectGroup/SelectGroup.styles.js.map +0 -1
- package/es/components/Select/ui/SelectGroup/SelectGroup.styles_mktu7e.css +0 -1
- package/es/components/Select/ui/SelectGroup/variations/_size/base.js +0 -5
- package/es/components/Select/ui/SelectGroup/variations/_size/base.js.map +0 -1
- package/es/components/Select/ui/SelectGroup/variations/_size/base_x642ct.css +0 -1
- package/es/components/Select/ui/SelectGroup/variations/_view/base.js +0 -5
- package/es/components/Select/ui/SelectGroup/variations/_view/base.js.map +0 -1
- package/es/components/Select/ui/SelectGroup/variations/_view/base_x642ct.css +0 -1
- package/es/components/Select/ui/SelectHeader/SelectHeader.css +0 -35
- package/es/components/Select/ui/SelectHeader/SelectHeader.js +0 -36
- package/es/components/Select/ui/SelectHeader/SelectHeader.js.map +0 -1
- package/es/components/Select/ui/SelectHeader/SelectHeader.styles.js +0 -7
- package/es/components/Select/ui/SelectHeader/SelectHeader.styles.js.map +0 -1
- package/es/components/Select/ui/SelectHeader/SelectHeader.styles_24gqog.css +0 -1
- package/es/components/Select/ui/SelectHeader/variations/_size/base.js +0 -5
- package/es/components/Select/ui/SelectHeader/variations/_size/base.js.map +0 -1
- package/es/components/Select/ui/SelectHeader/variations/_size/base_x642ct.css +0 -1
- package/es/components/Select/ui/SelectHeader/variations/_view/base.js +0 -5
- package/es/components/Select/ui/SelectHeader/variations/_view/base.js.map +0 -1
- package/es/components/Select/ui/SelectHeader/variations/_view/base_x642ct.css +0 -1
- package/es/components/Select/ui/SelectItem/SelectItem.css +0 -35
- package/es/components/Select/ui/SelectItem/SelectItem.js +0 -35
- package/es/components/Select/ui/SelectItem/SelectItem.js.map +0 -1
- package/es/components/Select/ui/SelectItem/SelectItem.styles.js +0 -15
- package/es/components/Select/ui/SelectItem/SelectItem.styles.js.map +0 -1
- package/es/components/Select/ui/SelectItem/SelectItem.styles_vk39mp.css +0 -1
- package/es/components/Select/ui/SelectItem/variations/_size/base.js +0 -5
- package/es/components/Select/ui/SelectItem/variations/_size/base.js.map +0 -1
- package/es/components/Select/ui/SelectItem/variations/_size/base_x642ct.css +0 -1
- package/es/components/Select/ui/SelectItem/variations/_view/base.js +0 -5
- package/es/components/Select/ui/SelectItem/variations/_view/base.js.map +0 -1
- package/es/components/Select/ui/SelectItem/variations/_view/base_x642ct.css +0 -1
- package/es/components/Select/ui/SelectTarget/SelectTarget.js +0 -144
- package/es/components/Select/ui/SelectTarget/SelectTarget.js.map +0 -1
- package/es/components/Select/ui/SelectTarget/SelectTarget.styles.js +0 -103
- package/es/components/Select/ui/SelectTarget/SelectTarget.styles.js.map +0 -1
- package/es/components/Select/ui/SelectTarget/SelectTarget.styles_hb1tns.css +0 -6
- package/es/components/Select/utils/index.js +0 -105
- package/es/components/Select/utils/index.js.map +0 -1
- package/es/components/Select/variations/_target/base.js +0 -5
- package/es/components/Select/variations/_target/base.js.map +0 -1
- package/es/components/Select/variations/_target/base_x642ct.css +0 -1
- package/styled-components/cjs/components/Select/Select.template-doc.mdx +0 -115
- package/styled-components/cjs/components/Select/hooks/index.js +0 -12
- package/styled-components/cjs/components/Select/ui/SelectChip/SelectChip.styles.js +0 -25
- package/styled-components/cjs/components/Select/ui/SelectDivider/SelectDivider.js +0 -29
- package/styled-components/cjs/components/Select/ui/SelectDivider/SelectDivider.styles.js +0 -12
- package/styled-components/cjs/components/Select/ui/SelectDivider/variations/_size/base.js +0 -8
- package/styled-components/cjs/components/Select/ui/SelectDivider/variations/_size/tokens.json +0 -8
- package/styled-components/cjs/components/Select/ui/SelectDivider/variations/_view/base.js +0 -8
- package/styled-components/cjs/components/Select/ui/SelectDivider/variations/_view/tokens.json +0 -1
- package/styled-components/cjs/components/Select/ui/SelectFooter/SelectFooter.js +0 -29
- package/styled-components/cjs/components/Select/ui/SelectFooter/SelectFooter.styles.js +0 -12
- package/styled-components/cjs/components/Select/ui/SelectFooter/variations/_size/base.js +0 -8
- package/styled-components/cjs/components/Select/ui/SelectFooter/variations/_size/tokens.json +0 -12
- package/styled-components/cjs/components/Select/ui/SelectFooter/variations/_view/base.js +0 -8
- package/styled-components/cjs/components/Select/ui/SelectFooter/variations/_view/tokens.json +0 -9
- package/styled-components/cjs/components/Select/ui/SelectGroup/SelectGroup.js +0 -29
- package/styled-components/cjs/components/Select/ui/SelectGroup/SelectGroup.styles.js +0 -12
- package/styled-components/cjs/components/Select/ui/SelectGroup/SelectGroup.type.js +0 -5
- package/styled-components/cjs/components/Select/ui/SelectGroup/variations/_size/base.js +0 -8
- package/styled-components/cjs/components/Select/ui/SelectGroup/variations/_size/tokens.json +0 -20
- package/styled-components/cjs/components/Select/ui/SelectGroup/variations/_view/base.js +0 -8
- package/styled-components/cjs/components/Select/ui/SelectGroup/variations/_view/tokens.json +0 -10
- package/styled-components/cjs/components/Select/ui/SelectHeader/SelectHeader.js +0 -29
- package/styled-components/cjs/components/Select/ui/SelectHeader/SelectHeader.styles.js +0 -12
- package/styled-components/cjs/components/Select/ui/SelectHeader/SelectHeader.type.js +0 -5
- package/styled-components/cjs/components/Select/ui/SelectHeader/variations/_size/base.js +0 -8
- package/styled-components/cjs/components/Select/ui/SelectHeader/variations/_size/tokens.json +0 -12
- package/styled-components/cjs/components/Select/ui/SelectHeader/variations/_view/base.js +0 -8
- package/styled-components/cjs/components/Select/ui/SelectHeader/variations/_view/tokens.json +0 -9
- package/styled-components/cjs/components/Select/ui/SelectItem/SelectItem.js +0 -29
- package/styled-components/cjs/components/Select/ui/SelectItem/SelectItem.styles.js +0 -13
- package/styled-components/cjs/components/Select/ui/SelectItem/SelectItem.type.js +0 -5
- package/styled-components/cjs/components/Select/ui/SelectItem/variations/_size/base.js +0 -8
- package/styled-components/cjs/components/Select/ui/SelectItem/variations/_size/tokens.json +0 -19
- package/styled-components/cjs/components/Select/ui/SelectItem/variations/_view/base.js +0 -8
- package/styled-components/cjs/components/Select/ui/SelectItem/variations/_view/tokens.json +0 -9
- package/styled-components/cjs/components/Select/ui/SelectTarget/SelectTarget.js +0 -157
- package/styled-components/cjs/components/Select/ui/SelectTarget/SelectTarget.styles.js +0 -69
- package/styled-components/cjs/components/Select/ui/SelectTarget/SelectTarget.types.js +0 -5
- package/styled-components/cjs/components/Select/variations/_target/base.js +0 -8
- package/styled-components/cjs/components/Select/variations/_target/tokens.json +0 -1
- package/styled-components/es/components/Select/Select.template-doc.mdx +0 -115
- package/styled-components/es/components/Select/hooks/index.js +0 -1
- package/styled-components/es/components/Select/ui/SelectChip/SelectChip.js +0 -31
- package/styled-components/es/components/Select/ui/SelectChip/SelectChip.styles.js +0 -19
- package/styled-components/es/components/Select/ui/SelectDivider/SelectDivider.js +0 -23
- package/styled-components/es/components/Select/ui/SelectDivider/SelectDivider.styles.js +0 -7
- package/styled-components/es/components/Select/ui/SelectDivider/variations/_size/base.js +0 -2
- package/styled-components/es/components/Select/ui/SelectDivider/variations/_size/tokens.json +0 -8
- package/styled-components/es/components/Select/ui/SelectDivider/variations/_view/base.js +0 -2
- package/styled-components/es/components/Select/ui/SelectDivider/variations/_view/tokens.json +0 -1
- package/styled-components/es/components/Select/ui/SelectFooter/SelectFooter.js +0 -23
- package/styled-components/es/components/Select/ui/SelectFooter/SelectFooter.styles.js +0 -7
- package/styled-components/es/components/Select/ui/SelectFooter/variations/_size/base.js +0 -2
- package/styled-components/es/components/Select/ui/SelectFooter/variations/_size/tokens.json +0 -12
- package/styled-components/es/components/Select/ui/SelectFooter/variations/_view/base.js +0 -2
- package/styled-components/es/components/Select/ui/SelectFooter/variations/_view/tokens.json +0 -9
- package/styled-components/es/components/Select/ui/SelectGroup/SelectGroup.js +0 -23
- package/styled-components/es/components/Select/ui/SelectGroup/SelectGroup.styles.js +0 -7
- package/styled-components/es/components/Select/ui/SelectGroup/SelectGroup.type.js +0 -1
- package/styled-components/es/components/Select/ui/SelectGroup/variations/_size/base.js +0 -2
- package/styled-components/es/components/Select/ui/SelectGroup/variations/_size/tokens.json +0 -20
- package/styled-components/es/components/Select/ui/SelectGroup/variations/_view/base.js +0 -2
- package/styled-components/es/components/Select/ui/SelectGroup/variations/_view/tokens.json +0 -10
- package/styled-components/es/components/Select/ui/SelectHeader/SelectHeader.js +0 -23
- package/styled-components/es/components/Select/ui/SelectHeader/SelectHeader.styles.js +0 -7
- package/styled-components/es/components/Select/ui/SelectHeader/SelectHeader.type.js +0 -1
- package/styled-components/es/components/Select/ui/SelectHeader/variations/_size/base.js +0 -2
- package/styled-components/es/components/Select/ui/SelectHeader/variations/_size/tokens.json +0 -12
- package/styled-components/es/components/Select/ui/SelectHeader/variations/_view/base.js +0 -2
- package/styled-components/es/components/Select/ui/SelectHeader/variations/_view/tokens.json +0 -9
- package/styled-components/es/components/Select/ui/SelectItem/SelectItem.js +0 -23
- package/styled-components/es/components/Select/ui/SelectItem/SelectItem.styles.js +0 -8
- package/styled-components/es/components/Select/ui/SelectItem/SelectItem.type.js +0 -1
- package/styled-components/es/components/Select/ui/SelectItem/variations/_size/base.js +0 -2
- package/styled-components/es/components/Select/ui/SelectItem/variations/_size/tokens.json +0 -19
- package/styled-components/es/components/Select/ui/SelectItem/variations/_view/base.js +0 -2
- package/styled-components/es/components/Select/ui/SelectItem/variations/_view/tokens.json +0 -9
- package/styled-components/es/components/Select/ui/SelectTarget/SelectTarget.js +0 -148
- package/styled-components/es/components/Select/ui/SelectTarget/SelectTarget.styles.js +0 -62
- package/styled-components/es/components/Select/ui/SelectTarget/SelectTarget.types.js +0 -1
- package/styled-components/es/components/Select/variations/_target/base.js +0 -2
- package/styled-components/es/components/Select/variations/_target/tokens.json +0 -1
- package/types/components/Select/hooks/index.d.ts +0 -2
- package/types/components/Select/hooks/index.d.ts.map +0 -1
- package/types/components/Select/hooks/useKeyNavigation.d.ts.map +0 -1
- package/types/components/Select/ui/SelectChip/SelectChip.d.ts +0 -7
- package/types/components/Select/ui/SelectChip/SelectChip.d.ts.map +0 -1
- package/types/components/Select/ui/SelectChip/SelectChip.styles.d.ts +0 -3
- package/types/components/Select/ui/SelectChip/SelectChip.styles.d.ts.map +0 -1
- package/types/components/Select/ui/SelectChip/SelectChip.types.d.ts +0 -37
- package/types/components/Select/ui/SelectChip/SelectChip.types.d.ts.map +0 -1
- package/types/components/Select/ui/SelectDivider/SelectDivider.d.ts +0 -29
- package/types/components/Select/ui/SelectDivider/SelectDivider.d.ts.map +0 -1
- package/types/components/Select/ui/SelectDivider/SelectDivider.styles.d.ts +0 -3
- package/types/components/Select/ui/SelectDivider/SelectDivider.styles.d.ts.map +0 -1
- package/types/components/Select/ui/SelectDivider/SelectDivider.types.d.ts +0 -3
- package/types/components/Select/ui/SelectDivider/SelectDivider.types.d.ts.map +0 -1
- package/types/components/Select/ui/SelectDivider/variations/_size/base.d.ts +0 -2
- package/types/components/Select/ui/SelectDivider/variations/_size/base.d.ts.map +0 -1
- package/types/components/Select/ui/SelectDivider/variations/_view/base.d.ts +0 -2
- package/types/components/Select/ui/SelectDivider/variations/_view/base.d.ts.map +0 -1
- package/types/components/Select/ui/SelectFooter/SelectFooter.d.ts +0 -29
- package/types/components/Select/ui/SelectFooter/SelectFooter.d.ts.map +0 -1
- package/types/components/Select/ui/SelectFooter/SelectFooter.styles.d.ts +0 -3
- package/types/components/Select/ui/SelectFooter/SelectFooter.styles.d.ts.map +0 -1
- package/types/components/Select/ui/SelectFooter/SelectFooter.type.d.ts +0 -3
- package/types/components/Select/ui/SelectFooter/SelectFooter.type.d.ts.map +0 -1
- package/types/components/Select/ui/SelectFooter/variations/_size/base.d.ts +0 -2
- package/types/components/Select/ui/SelectFooter/variations/_size/base.d.ts.map +0 -1
- package/types/components/Select/ui/SelectFooter/variations/_view/base.d.ts +0 -2
- package/types/components/Select/ui/SelectFooter/variations/_view/base.d.ts.map +0 -1
- package/types/components/Select/ui/SelectGroup/SelectGroup.d.ts +0 -37
- package/types/components/Select/ui/SelectGroup/SelectGroup.d.ts.map +0 -1
- package/types/components/Select/ui/SelectGroup/SelectGroup.styles.d.ts +0 -3
- package/types/components/Select/ui/SelectGroup/SelectGroup.styles.d.ts.map +0 -1
- package/types/components/Select/ui/SelectGroup/SelectGroup.type.d.ts +0 -3
- package/types/components/Select/ui/SelectGroup/SelectGroup.type.d.ts.map +0 -1
- package/types/components/Select/ui/SelectGroup/variations/_size/base.d.ts +0 -2
- package/types/components/Select/ui/SelectGroup/variations/_size/base.d.ts.map +0 -1
- package/types/components/Select/ui/SelectGroup/variations/_view/base.d.ts +0 -2
- package/types/components/Select/ui/SelectGroup/variations/_view/base.d.ts.map +0 -1
- package/types/components/Select/ui/SelectHeader/SelectHeader.d.ts +0 -29
- package/types/components/Select/ui/SelectHeader/SelectHeader.d.ts.map +0 -1
- package/types/components/Select/ui/SelectHeader/SelectHeader.styles.d.ts +0 -3
- package/types/components/Select/ui/SelectHeader/SelectHeader.styles.d.ts.map +0 -1
- package/types/components/Select/ui/SelectHeader/SelectHeader.type.d.ts +0 -3
- package/types/components/Select/ui/SelectHeader/SelectHeader.type.d.ts.map +0 -1
- package/types/components/Select/ui/SelectHeader/variations/_size/base.d.ts +0 -2
- package/types/components/Select/ui/SelectHeader/variations/_size/base.d.ts.map +0 -1
- package/types/components/Select/ui/SelectHeader/variations/_view/base.d.ts +0 -2
- package/types/components/Select/ui/SelectHeader/variations/_view/base.d.ts.map +0 -1
- package/types/components/Select/ui/SelectItem/SelectItem.d.ts +0 -53
- package/types/components/Select/ui/SelectItem/SelectItem.d.ts.map +0 -1
- package/types/components/Select/ui/SelectItem/SelectItem.styles.d.ts +0 -3
- package/types/components/Select/ui/SelectItem/SelectItem.styles.d.ts.map +0 -1
- package/types/components/Select/ui/SelectItem/SelectItem.type.d.ts +0 -3
- package/types/components/Select/ui/SelectItem/SelectItem.type.d.ts.map +0 -1
- package/types/components/Select/ui/SelectItem/variations/_size/base.d.ts +0 -2
- package/types/components/Select/ui/SelectItem/variations/_size/base.d.ts.map +0 -1
- package/types/components/Select/ui/SelectItem/variations/_view/base.d.ts +0 -2
- package/types/components/Select/ui/SelectItem/variations/_view/base.d.ts.map +0 -1
- package/types/components/Select/ui/SelectTarget/SelectTarget.d.ts +0 -7
- package/types/components/Select/ui/SelectTarget/SelectTarget.d.ts.map +0 -1
- package/types/components/Select/ui/SelectTarget/SelectTarget.styles.d.ts.map +0 -1
- package/types/components/Select/ui/SelectTarget/SelectTarget.types.d.ts +0 -60
- package/types/components/Select/ui/SelectTarget/SelectTarget.types.d.ts.map +0 -1
- package/types/components/Select/variations/_target/base.d.ts +0 -2
- package/types/components/Select/variations/_target/base.d.ts.map +0 -1
- /package/cjs/components/{Select → Combobox}/hooks/useKeyNavigation.js +0 -0
- /package/emotion/cjs/components/{Select → Combobox}/hooks/useKeyNavigation.js +0 -0
- /package/emotion/cjs/components/Select/ui/{SelectChip/SelectChip.types.js → Inner/Inner.type.js} +0 -0
- /package/emotion/cjs/components/Select/ui/{SelectDivider/SelectDivider.types.js → Inner/ui/Item/Item.types.js} +0 -0
- /package/emotion/cjs/components/Select/ui/{SelectFooter/SelectFooter.type.js → Target/Target.types.js} +0 -0
- /package/emotion/cjs/components/Select/ui/{SelectGroup/SelectGroup.type.js → Target/ui/Button/Button.types.js} +0 -0
- /package/emotion/cjs/components/Select/ui/{SelectHeader/SelectHeader.type.js → Target/ui/Textfield/Textfield.types.js} +0 -0
- /package/emotion/es/components/{Select → Combobox}/hooks/useKeyNavigation.js +0 -0
- /package/emotion/es/components/Select/ui/{SelectChip/SelectChip.types.js → Inner/Inner.type.js} +0 -0
- /package/emotion/es/components/Select/ui/{SelectDivider/SelectDivider.types.js → Inner/ui/Item/Item.types.js} +0 -0
- /package/emotion/es/components/Select/ui/{SelectFooter/SelectFooter.type.js → Target/Target.types.js} +0 -0
- /package/emotion/es/components/Select/ui/{SelectGroup/SelectGroup.type.js → Target/ui/Button/Button.types.js} +0 -0
- /package/emotion/es/components/Select/ui/{SelectHeader/SelectHeader.type.js → Target/ui/Textfield/Textfield.types.js} +0 -0
- /package/es/components/{Select → Combobox}/hooks/useKeyNavigation.js +0 -0
- /package/styled-components/cjs/components/{Select → Combobox}/hooks/useKeyNavigation.js +0 -0
- /package/{emotion/cjs/components/Select/ui/SelectItem/SelectItem.type.js → styled-components/cjs/components/Select/ui/Inner/Inner.type.js} +0 -0
- /package/{emotion/cjs/components/Select/ui/SelectTarget/SelectTarget.types.js → styled-components/cjs/components/Select/ui/Inner/ui/Item/Item.types.js} +0 -0
- /package/styled-components/cjs/components/Select/ui/{SelectChip/SelectChip.types.js → Target/Target.types.js} +0 -0
- /package/styled-components/cjs/components/Select/ui/{SelectDivider/SelectDivider.types.js → Target/ui/Button/Button.types.js} +0 -0
- /package/styled-components/cjs/components/Select/ui/{SelectFooter/SelectFooter.type.js → Target/ui/Textfield/Textfield.types.js} +0 -0
- /package/styled-components/es/components/{Select → Combobox}/hooks/useKeyNavigation.js +0 -0
- /package/{emotion/es/components/Select/ui/SelectItem/SelectItem.type.js → styled-components/es/components/Select/ui/Inner/Inner.type.js} +0 -0
- /package/{emotion/es/components/Select/ui/SelectTarget/SelectTarget.types.js → styled-components/es/components/Select/ui/Inner/ui/Item/Item.types.js} +0 -0
- /package/styled-components/es/components/Select/ui/{SelectChip/SelectChip.types.js → Target/Target.types.js} +0 -0
- /package/styled-components/es/components/Select/ui/{SelectDivider/SelectDivider.types.js → Target/ui/Button/Button.types.js} +0 -0
- /package/styled-components/es/components/Select/ui/{SelectFooter/SelectFooter.type.js → Target/ui/Textfield/Textfield.types.js} +0 -0
@@ -1,12 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
4
|
-
value: true
|
5
|
-
});
|
6
|
-
exports.mappingOverride = exports.base = void 0;
|
7
|
-
var _react = /*#__PURE__*/require("@emotion/react");
|
8
|
-
var _Select = /*#__PURE__*/require("../../Select.tokens");
|
9
|
-
var _Dropdown = /*#__PURE__*/require("../../../Dropdown");
|
10
|
-
// NOTE: Необходимое переопределение токенов из компонента DropdownItem т.к. используются его части
|
11
|
-
var mappingOverride = exports.mappingOverride = /*#__PURE__*/(0, _react.css)(_Dropdown.dropdownTokens.footerBackground, ":var(", _Select.tokens.footerBackground, ");", _Dropdown.dropdownTokens.footerWidth, ":var(", _Select.tokens.footerWidth, ");", _Dropdown.dropdownTokens.footerHeight, ":var(", _Select.tokens.footerHeight, ");", _Dropdown.dropdownTokens.footerPaddingTop, ":var(", _Select.tokens.footerPaddingTop, ");", _Dropdown.dropdownTokens.footerPaddingRight, ":var(", _Select.tokens.footerPaddingRight, ");", _Dropdown.dropdownTokens.footerPaddingBottom, ":var(", _Select.tokens.footerPaddingBottom, ");", _Dropdown.dropdownTokens.footerPaddingLeft, ":var(", _Select.tokens.footerPaddingLeft, ");", _Dropdown.dropdownTokens.footerMarginTop, ":var(", _Select.tokens.footerMarginTop, ");", _Dropdown.dropdownTokens.footerMarginRight, ":var(", _Select.tokens.footerMarginRight, ");", _Dropdown.dropdownTokens.footerMarginBottom, ":var(", _Select.tokens.footerMarginBottom, ");", _Dropdown.dropdownTokens.footerMarginLeft, ":var(", _Select.tokens.footerMarginLeft, ");", _Dropdown.dropdownTokens.footerFontFamily, ":var(", _Select.tokens.footerFontFamily, ");", _Dropdown.dropdownTokens.footerFontSize, ":var(", _Select.tokens.footerFontSize, ");", _Dropdown.dropdownTokens.footerFontStyle, ":var(", _Select.tokens.footerFontStyle, ");", _Dropdown.dropdownTokens.footerFontWeightBold, ":var(", _Select.tokens.footerFontWeightBold, ");", _Dropdown.dropdownTokens.footerFontLetterSpacing, ":var(", _Select.tokens.footerFontLetterSpacing, ");", _Dropdown.dropdownTokens.footerFontLineHeight, ":var(", _Select.tokens.footerFontLineHeight, ");;label:plasma-new-hope__mappingOverride;" + (process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy1lbW90aW9uL2NvbXBvbmVudHMvU2VsZWN0L3VpL1NlbGVjdEZvb3Rlci9TZWxlY3RGb290ZXIuc3R5bGVzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQU1rQyIsImZpbGUiOiIuLi8uLi8uLi8uLi8uLi8uLi9zcmMtZW1vdGlvbi9jb21wb25lbnRzL1NlbGVjdC91aS9TZWxlY3RGb290ZXIvU2VsZWN0Rm9vdGVyLnN0eWxlcy50cyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IGNzcyB9IGZyb20gJ0BlbW90aW9uL3JlYWN0JztcblxuaW1wb3J0IHsgdG9rZW5zIH0gZnJvbSAnLi4vLi4vU2VsZWN0LnRva2Vucyc7XG5pbXBvcnQgeyBkcm9wZG93blRva2VucyB9IGZyb20gJy4uLy4uLy4uL0Ryb3Bkb3duJztcblxuLy8gTk9URTog0J3QtdC+0LHRhdC+0LTQuNC80L7QtSDQv9C10YDQtdC+0L/RgNC10LTQtdC70LXQvdC40LUg0YLQvtC60LXQvdC+0LIg0LjQtyDQutC+0LzQv9C+0L3QtdC90YLQsCBEcm9wZG93bkl0ZW0g0YIu0LouINC40YHQv9C+0LvRjNC30YPRjtGC0YHRjyDQtdCz0L4g0YfQsNGB0YLQuFxuZXhwb3J0IGNvbnN0IG1hcHBpbmdPdmVycmlkZSA9IGNzc2BcbiAgICAke2Ryb3Bkb3duVG9rZW5zLmZvb3RlckJhY2tncm91bmR9OiB2YXIoJHt0b2tlbnMuZm9vdGVyQmFja2dyb3VuZH0pO1xuICAgICR7ZHJvcGRvd25Ub2tlbnMuZm9vdGVyV2lkdGh9OiB2YXIoJHt0b2tlbnMuZm9vdGVyV2lkdGh9KTtcbiAgICAke2Ryb3Bkb3duVG9rZW5zLmZvb3RlckhlaWdodH06IHZhcigke3Rva2Vucy5mb290ZXJIZWlnaHR9KTtcbiAgICAke2Ryb3Bkb3duVG9rZW5zLmZvb3RlclBhZGRpbmdUb3B9OiB2YXIoJHt0b2tlbnMuZm9vdGVyUGFkZGluZ1RvcH0pO1xuICAgICR7ZHJvcGRvd25Ub2tlbnMuZm9vdGVyUGFkZGluZ1JpZ2h0fTogdmFyKCR7dG9rZW5zLmZvb3RlclBhZGRpbmdSaWdodH0pO1xuICAgICR7ZHJvcGRvd25Ub2tlbnMuZm9vdGVyUGFkZGluZ0JvdHRvbX06IHZhcigke3Rva2Vucy5mb290ZXJQYWRkaW5nQm90dG9tfSk7XG4gICAgJHtkcm9wZG93blRva2Vucy5mb290ZXJQYWRkaW5nTGVmdH06IHZhcigke3Rva2Vucy5mb290ZXJQYWRkaW5nTGVmdH0pO1xuICAgICR7ZHJvcGRvd25Ub2tlbnMuZm9vdGVyTWFyZ2luVG9wfTogdmFyKCR7dG9rZW5zLmZvb3Rlck1hcmdpblRvcH0pO1xuICAgICR7ZHJvcGRvd25Ub2tlbnMuZm9vdGVyTWFyZ2luUmlnaHR9OiB2YXIoJHt0b2tlbnMuZm9vdGVyTWFyZ2luUmlnaHR9KTtcbiAgICAke2Ryb3Bkb3duVG9rZW5zLmZvb3Rlck1hcmdpbkJvdHRvbX06IHZhcigke3Rva2Vucy5mb290ZXJNYXJnaW5Cb3R0b219KTtcbiAgICAke2Ryb3Bkb3duVG9rZW5zLmZvb3Rlck1hcmdpbkxlZnR9OiB2YXIoJHt0b2tlbnMuZm9vdGVyTWFyZ2luTGVmdH0pO1xuICAgICR7ZHJvcGRvd25Ub2tlbnMuZm9vdGVyRm9udEZhbWlseX06IHZhcigke3Rva2Vucy5mb290ZXJGb250RmFtaWx5fSk7XG4gICAgJHtkcm9wZG93blRva2Vucy5mb290ZXJGb250U2l6ZX06IHZhcigke3Rva2Vucy5mb290ZXJGb250U2l6ZX0pO1xuICAgICR7ZHJvcGRvd25Ub2tlbnMuZm9vdGVyRm9udFN0eWxlfTogdmFyKCR7dG9rZW5zLmZvb3RlckZvbnRTdHlsZX0pO1xuICAgICR7ZHJvcGRvd25Ub2tlbnMuZm9vdGVyRm9udFdlaWdodEJvbGR9OiB2YXIoJHt0b2tlbnMuZm9vdGVyRm9udFdlaWdodEJvbGR9KTtcbiAgICAke2Ryb3Bkb3duVG9rZW5zLmZvb3RlckZvbnRMZXR0ZXJTcGFjaW5nfTogdmFyKCR7dG9rZW5zLmZvb3RlckZvbnRMZXR0ZXJTcGFjaW5nfSk7XG4gICAgJHtkcm9wZG93blRva2Vucy5mb290ZXJGb250TGluZUhlaWdodH06IHZhcigke3Rva2Vucy5mb290ZXJGb250TGluZUhlaWdodH0pO1xuYDtcblxuZXhwb3J0IGNvbnN0IGJhc2UgPSBtYXBwaW5nT3ZlcnJpZGU7XG4iXX0= */"));
|
12
|
-
var base = exports.base = mappingOverride;
|
@@ -1,8 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
4
|
-
value: true
|
5
|
-
});
|
6
|
-
exports.base = void 0;
|
7
|
-
var _react = /*#__PURE__*/require("@emotion/react");
|
8
|
-
var base = exports.base = /*#__PURE__*/(0, _react.css)(";label:plasma-new-hope__base;" + (process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy1lbW90aW9uL2NvbXBvbmVudHMvU2VsZWN0L3VpL1NlbGVjdEZvb3Rlci92YXJpYXRpb25zL19zaXplL2Jhc2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRXVCIiwiZmlsZSI6Ii4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy1lbW90aW9uL2NvbXBvbmVudHMvU2VsZWN0L3VpL1NlbGVjdEZvb3Rlci92YXJpYXRpb25zL19zaXplL2Jhc2UudHMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBjc3MgfSBmcm9tICdAZW1vdGlvbi9yZWFjdCc7XG5cbmV4cG9ydCBjb25zdCBiYXNlID0gY3NzYGA7XG4iXX0= */"));
|
@@ -1,12 +0,0 @@
|
|
1
|
-
[
|
2
|
-
"--plasma-select-footer-width",
|
3
|
-
"--plasma-select-footer-height",
|
4
|
-
"--plasma-select-footer-padding-top",
|
5
|
-
"--plasma-select-footer-padding-right",
|
6
|
-
"--plasma-select-footer-padding-bottom",
|
7
|
-
"--plasma-select-footer-padding-left",
|
8
|
-
"--plasma-select-footer-margin-top",
|
9
|
-
"--plasma-select-footer-margin-right",
|
10
|
-
"--plasma-select-footer-margin-bottom",
|
11
|
-
"--plasma-select-footer-margin-left"
|
12
|
-
]
|
@@ -1,8 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
4
|
-
value: true
|
5
|
-
});
|
6
|
-
exports.base = void 0;
|
7
|
-
var _react = /*#__PURE__*/require("@emotion/react");
|
8
|
-
var base = exports.base = /*#__PURE__*/(0, _react.css)(";label:plasma-new-hope__base;" + (process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy1lbW90aW9uL2NvbXBvbmVudHMvU2VsZWN0L3VpL1NlbGVjdEZvb3Rlci92YXJpYXRpb25zL192aWV3L2Jhc2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRXVCIiwiZmlsZSI6Ii4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy1lbW90aW9uL2NvbXBvbmVudHMvU2VsZWN0L3VpL1NlbGVjdEZvb3Rlci92YXJpYXRpb25zL192aWV3L2Jhc2UudHMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBjc3MgfSBmcm9tICdAZW1vdGlvbi9yZWFjdCc7XG5cbmV4cG9ydCBjb25zdCBiYXNlID0gY3NzYGA7XG4iXX0= */"));
|
@@ -1,9 +0,0 @@
|
|
1
|
-
[
|
2
|
-
"--plasma-select-footer-background",
|
3
|
-
"--plasma-select-footer-font-family",
|
4
|
-
"--plasma-select-footer-font-size",
|
5
|
-
"--plasma-select-footer-font-style",
|
6
|
-
"--plasma-select-footer-letter-spacing",
|
7
|
-
"--plasma-select-footer-line-height",
|
8
|
-
"--plasma-select-footer-font-weight"
|
9
|
-
]
|
@@ -1,29 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
4
|
-
value: true
|
5
|
-
});
|
6
|
-
exports.selectGroupRoot = exports.selectGroupConfig = void 0;
|
7
|
-
var _Dropdown = /*#__PURE__*/require("../../../Dropdown");
|
8
|
-
var _base = /*#__PURE__*/require("./variations/_view/base");
|
9
|
-
var _base2 = /*#__PURE__*/require("./variations/_size/base");
|
10
|
-
var _SelectGroup = /*#__PURE__*/require("./SelectGroup.styles");
|
11
|
-
var selectGroupRoot = exports.selectGroupRoot = _Dropdown.dropdownGroupRoot;
|
12
|
-
var selectGroupConfig = exports.selectGroupConfig = {
|
13
|
-
name: 'SelectGroup',
|
14
|
-
tag: 'div',
|
15
|
-
layout: selectGroupRoot,
|
16
|
-
base: _SelectGroup.base,
|
17
|
-
variations: {
|
18
|
-
view: {
|
19
|
-
css: _base.base
|
20
|
-
},
|
21
|
-
size: {
|
22
|
-
css: _base2.base
|
23
|
-
}
|
24
|
-
},
|
25
|
-
defaults: {
|
26
|
-
view: 'primary',
|
27
|
-
size: 'm'
|
28
|
-
}
|
29
|
-
};
|
@@ -1,12 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
4
|
-
value: true
|
5
|
-
});
|
6
|
-
exports.mappingOverride = exports.base = void 0;
|
7
|
-
var _react = /*#__PURE__*/require("@emotion/react");
|
8
|
-
var _Select = /*#__PURE__*/require("../../Select.tokens");
|
9
|
-
var _Dropdown = /*#__PURE__*/require("../../../Dropdown");
|
10
|
-
// NOTE: Необходимое переопределение токенов из компонента DropdownItem т.к. используются его части
|
11
|
-
var mappingOverride = exports.mappingOverride = /*#__PURE__*/(0, _react.css)(_Dropdown.dropdownTokens.groupBackground, ":var(", _Select.tokens.groupBackground, ");", _Dropdown.dropdownTokens.groupWidth, ":var(", _Select.tokens.groupWidth, ");", _Dropdown.dropdownTokens.groupHeight, ":var(", _Select.tokens.groupHeight, ");", _Dropdown.dropdownTokens.groupPaddingTop, ":var(", _Select.tokens.groupPaddingTop, ");", _Dropdown.dropdownTokens.groupPaddingRight, ":var(", _Select.tokens.groupPaddingRight, ");", _Dropdown.dropdownTokens.groupPaddingBottom, ":var(", _Select.tokens.groupPaddingBottom, ");", _Dropdown.dropdownTokens.groupPaddingLeft, ":var(", _Select.tokens.groupPaddingLeft, ");", _Dropdown.dropdownTokens.groupMarginTop, ":var(", _Select.tokens.groupMarginTop, ");", _Dropdown.dropdownTokens.groupMarginRight, ":var(", _Select.tokens.groupMarginRight, ");", _Dropdown.dropdownTokens.groupMarginBottom, ":var(", _Select.tokens.groupMarginBottom, ");", _Dropdown.dropdownTokens.groupMarginLeft, ":var(", _Select.tokens.groupMarginLeft, ");", _Dropdown.dropdownTokens.groupLabelFontFamily, ":var(", _Select.tokens.groupLabelFontFamily, ");", _Dropdown.dropdownTokens.groupLabelFontSize, ":var(", _Select.tokens.groupLabelFontSize, ");", _Dropdown.dropdownTokens.groupLabelFontStyle, ":var(", _Select.tokens.groupLabelFontStyle, ");", _Dropdown.dropdownTokens.groupLabelFontWeight, ":var(", _Select.tokens.groupLabelFontWeight, ");", _Dropdown.dropdownTokens.groupLabelLetterSpacing, ":var(", _Select.tokens.groupLabelLetterSpacing, ");", _Dropdown.dropdownTokens.groupLabelLineHeight, ":var(", _Select.tokens.groupLabelLineHeight, ");", _Dropdown.dropdownTokens.groupLabelColor, ":var(", _Select.tokens.groupLabelColor, ");", _Dropdown.dropdownTokens.groupLabelPaddingTop, ":var(", _Select.tokens.groupLabelPaddingTop, ");", _Dropdown.dropdownTokens.groupLabelPaddingRight, ":var(", _Select.tokens.groupLabelPaddingRight, ");", _Dropdown.dropdownTokens.groupLabelPaddingBottom, ":var(", _Select.tokens.groupLabelPaddingBottom, ");", _Dropdown.dropdownTokens.groupLabelPaddingLeft, ":var(", _Select.tokens.groupLabelPaddingLeft, ");", _Dropdown.dropdownTokens.groupLabelMarginTop, ":var(", _Select.tokens.groupLabelMarginTop, ");", _Dropdown.dropdownTokens.groupLabelMarginRight, ":var(", _Select.tokens.groupLabelMarginRight, ");", _Dropdown.dropdownTokens.groupLabelMarginBottom, ":var(", _Select.tokens.groupLabelMarginBottom, ");", _Dropdown.dropdownTokens.groupLabelMarginLeft, ":var(", _Select.tokens.groupLabelMarginLeft, ");;label:plasma-new-hope__mappingOverride;" + (process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy1lbW90aW9uL2NvbXBvbmVudHMvU2VsZWN0L3VpL1NlbGVjdEdyb3VwL1NlbGVjdEdyb3VwLnN0eWxlcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFNa0MiLCJmaWxlIjoiLi4vLi4vLi4vLi4vLi4vLi4vc3JjLWVtb3Rpb24vY29tcG9uZW50cy9TZWxlY3QvdWkvU2VsZWN0R3JvdXAvU2VsZWN0R3JvdXAuc3R5bGVzLnRzIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgY3NzIH0gZnJvbSAnQGVtb3Rpb24vcmVhY3QnO1xuXG5pbXBvcnQgeyB0b2tlbnMgfSBmcm9tICcuLi8uLi9TZWxlY3QudG9rZW5zJztcbmltcG9ydCB7IGRyb3Bkb3duVG9rZW5zIH0gZnJvbSAnLi4vLi4vLi4vRHJvcGRvd24nO1xuXG4vLyBOT1RFOiDQndC10L7QsdGF0L7QtNC40LzQvtC1INC/0LXRgNC10L7Qv9GA0LXQtNC10LvQtdC90LjQtSDRgtC+0LrQtdC90L7QsiDQuNC3INC60L7QvNC/0L7QvdC10L3RgtCwIERyb3Bkb3duSXRlbSDRgi7Qui4g0LjRgdC/0L7Qu9GM0LfRg9GO0YLRgdGPINC10LPQviDRh9Cw0YHRgtC4XG5leHBvcnQgY29uc3QgbWFwcGluZ092ZXJyaWRlID0gY3NzYFxuICAgICR7ZHJvcGRvd25Ub2tlbnMuZ3JvdXBCYWNrZ3JvdW5kfTogdmFyKCR7dG9rZW5zLmdyb3VwQmFja2dyb3VuZH0pO1xuICAgICR7ZHJvcGRvd25Ub2tlbnMuZ3JvdXBXaWR0aH06IHZhcigke3Rva2Vucy5ncm91cFdpZHRofSk7XG4gICAgJHtkcm9wZG93blRva2Vucy5ncm91cEhlaWdodH06IHZhcigke3Rva2Vucy5ncm91cEhlaWdodH0pO1xuICAgICR7ZHJvcGRvd25Ub2tlbnMuZ3JvdXBQYWRkaW5nVG9wfTogdmFyKCR7dG9rZW5zLmdyb3VwUGFkZGluZ1RvcH0pO1xuICAgICR7ZHJvcGRvd25Ub2tlbnMuZ3JvdXBQYWRkaW5nUmlnaHR9OiB2YXIoJHt0b2tlbnMuZ3JvdXBQYWRkaW5nUmlnaHR9KTtcbiAgICAke2Ryb3Bkb3duVG9rZW5zLmdyb3VwUGFkZGluZ0JvdHRvbX06IHZhcigke3Rva2Vucy5ncm91cFBhZGRpbmdCb3R0b219KTtcbiAgICAke2Ryb3Bkb3duVG9rZW5zLmdyb3VwUGFkZGluZ0xlZnR9OiB2YXIoJHt0b2tlbnMuZ3JvdXBQYWRkaW5nTGVmdH0pO1xuICAgICR7ZHJvcGRvd25Ub2tlbnMuZ3JvdXBNYXJnaW5Ub3B9OiB2YXIoJHt0b2tlbnMuZ3JvdXBNYXJnaW5Ub3B9KTtcbiAgICAke2Ryb3Bkb3duVG9rZW5zLmdyb3VwTWFyZ2luUmlnaHR9OiB2YXIoJHt0b2tlbnMuZ3JvdXBNYXJnaW5SaWdodH0pO1xuICAgICR7ZHJvcGRvd25Ub2tlbnMuZ3JvdXBNYXJnaW5Cb3R0b219OiB2YXIoJHt0b2tlbnMuZ3JvdXBNYXJnaW5Cb3R0b219KTtcbiAgICAke2Ryb3Bkb3duVG9rZW5zLmdyb3VwTWFyZ2luTGVmdH06IHZhcigke3Rva2Vucy5ncm91cE1hcmdpbkxlZnR9KTtcbiAgICAke2Ryb3Bkb3duVG9rZW5zLmdyb3VwTGFiZWxGb250RmFtaWx5fTogdmFyKCR7dG9rZW5zLmdyb3VwTGFiZWxGb250RmFtaWx5fSk7XG4gICAgJHtkcm9wZG93blRva2Vucy5ncm91cExhYmVsRm9udFNpemV9OiB2YXIoJHt0b2tlbnMuZ3JvdXBMYWJlbEZvbnRTaXplfSk7XG4gICAgJHtkcm9wZG93blRva2Vucy5ncm91cExhYmVsRm9udFN0eWxlfTogdmFyKCR7dG9rZW5zLmdyb3VwTGFiZWxGb250U3R5bGV9KTtcbiAgICAke2Ryb3Bkb3duVG9rZW5zLmdyb3VwTGFiZWxGb250V2VpZ2h0fTogdmFyKCR7dG9rZW5zLmdyb3VwTGFiZWxGb250V2VpZ2h0fSk7XG4gICAgJHtkcm9wZG93blRva2Vucy5ncm91cExhYmVsTGV0dGVyU3BhY2luZ306IHZhcigke3Rva2Vucy5ncm91cExhYmVsTGV0dGVyU3BhY2luZ30pO1xuICAgICR7ZHJvcGRvd25Ub2tlbnMuZ3JvdXBMYWJlbExpbmVIZWlnaHR9OiB2YXIoJHt0b2tlbnMuZ3JvdXBMYWJlbExpbmVIZWlnaHR9KTtcbiAgICAke2Ryb3Bkb3duVG9rZW5zLmdyb3VwTGFiZWxDb2xvcn06IHZhcigke3Rva2Vucy5ncm91cExhYmVsQ29sb3J9KTtcbiAgICAke2Ryb3Bkb3duVG9rZW5zLmdyb3VwTGFiZWxQYWRkaW5nVG9wfTogdmFyKCR7dG9rZW5zLmdyb3VwTGFiZWxQYWRkaW5nVG9wfSk7XG4gICAgJHtkcm9wZG93blRva2Vucy5ncm91cExhYmVsUGFkZGluZ1JpZ2h0fTogdmFyKCR7dG9rZW5zLmdyb3VwTGFiZWxQYWRkaW5nUmlnaHR9KTtcbiAgICAke2Ryb3Bkb3duVG9rZW5zLmdyb3VwTGFiZWxQYWRkaW5nQm90dG9tfTogdmFyKCR7dG9rZW5zLmdyb3VwTGFiZWxQYWRkaW5nQm90dG9tfSk7XG4gICAgJHtkcm9wZG93blRva2Vucy5ncm91cExhYmVsUGFkZGluZ0xlZnR9OiB2YXIoJHt0b2tlbnMuZ3JvdXBMYWJlbFBhZGRpbmdMZWZ0fSk7XG4gICAgJHtkcm9wZG93blRva2Vucy5ncm91cExhYmVsTWFyZ2luVG9wfTogdmFyKCR7dG9rZW5zLmdyb3VwTGFiZWxNYXJnaW5Ub3B9KTtcbiAgICAke2Ryb3Bkb3duVG9rZW5zLmdyb3VwTGFiZWxNYXJnaW5SaWdodH06IHZhcigke3Rva2Vucy5ncm91cExhYmVsTWFyZ2luUmlnaHR9KTtcbiAgICAke2Ryb3Bkb3duVG9rZW5zLmdyb3VwTGFiZWxNYXJnaW5Cb3R0b219OiB2YXIoJHt0b2tlbnMuZ3JvdXBMYWJlbE1hcmdpbkJvdHRvbX0pO1xuICAgICR7ZHJvcGRvd25Ub2tlbnMuZ3JvdXBMYWJlbE1hcmdpbkxlZnR9OiB2YXIoJHt0b2tlbnMuZ3JvdXBMYWJlbE1hcmdpbkxlZnR9KTtcbmA7XG5cbmV4cG9ydCBjb25zdCBiYXNlID0gbWFwcGluZ092ZXJyaWRlO1xuIl19 */"));
|
12
|
-
var base = exports.base = mappingOverride;
|
@@ -1,8 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
4
|
-
value: true
|
5
|
-
});
|
6
|
-
exports.base = void 0;
|
7
|
-
var _react = /*#__PURE__*/require("@emotion/react");
|
8
|
-
var base = exports.base = /*#__PURE__*/(0, _react.css)(";label:plasma-new-hope__base;" + (process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy1lbW90aW9uL2NvbXBvbmVudHMvU2VsZWN0L3VpL1NlbGVjdEdyb3VwL3ZhcmlhdGlvbnMvX3NpemUvYmFzZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFFdUIiLCJmaWxlIjoiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjLWVtb3Rpb24vY29tcG9uZW50cy9TZWxlY3QvdWkvU2VsZWN0R3JvdXAvdmFyaWF0aW9ucy9fc2l6ZS9iYXNlLnRzIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgY3NzIH0gZnJvbSAnQGVtb3Rpb24vcmVhY3QnO1xuXG5leHBvcnQgY29uc3QgYmFzZSA9IGNzc2BgO1xuIl19 */"));
|
@@ -1,20 +0,0 @@
|
|
1
|
-
[
|
2
|
-
"--plasma-select-group-width",
|
3
|
-
"--plasma-select-group-height",
|
4
|
-
"--plasma-select-group-padding-top",
|
5
|
-
"--plasma-select-group-padding-right",
|
6
|
-
"--plasma-select-group-padding-bottom",
|
7
|
-
"--plasma-select-group-padding-left",
|
8
|
-
"--plasma-select-group-margin-top",
|
9
|
-
"--plasma-select-group-margin-right",
|
10
|
-
"--plasma-select-group-margin-bottom",
|
11
|
-
"--plasma-select-group-margin-left",
|
12
|
-
"--plasma-select-group-label-padding-top",
|
13
|
-
"--plasma-select-group-label-padding-right",
|
14
|
-
"--plasma-select-group-label-padding-bottom",
|
15
|
-
"--plasma-select-group-label-padding-left",
|
16
|
-
"--plasma-select-group-label-margin-top",
|
17
|
-
"--plasma-select-group-label-margin-right",
|
18
|
-
"--plasma-select-group-label-margin-bottom",
|
19
|
-
"--plasma-select-group-label-margin-left"
|
20
|
-
]
|
@@ -1,8 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
4
|
-
value: true
|
5
|
-
});
|
6
|
-
exports.base = void 0;
|
7
|
-
var _react = /*#__PURE__*/require("@emotion/react");
|
8
|
-
var base = exports.base = /*#__PURE__*/(0, _react.css)(";label:plasma-new-hope__base;" + (process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy1lbW90aW9uL2NvbXBvbmVudHMvU2VsZWN0L3VpL1NlbGVjdEdyb3VwL3ZhcmlhdGlvbnMvX3ZpZXcvYmFzZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFFdUIiLCJmaWxlIjoiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjLWVtb3Rpb24vY29tcG9uZW50cy9TZWxlY3QvdWkvU2VsZWN0R3JvdXAvdmFyaWF0aW9ucy9fdmlldy9iYXNlLnRzIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgY3NzIH0gZnJvbSAnQGVtb3Rpb24vcmVhY3QnO1xuXG5leHBvcnQgY29uc3QgYmFzZSA9IGNzc2BgO1xuIl19 */"));
|
@@ -1,10 +0,0 @@
|
|
1
|
-
[
|
2
|
-
"--plasma-select-group-background",
|
3
|
-
"--plasma-select-group-label-color",
|
4
|
-
"--plasma-select-group-label-font-family",
|
5
|
-
"--plasma-select-group-label-font-size",
|
6
|
-
"--plasma-select-group-label-font-style",
|
7
|
-
"--plasma-select-group-label-font-weight",
|
8
|
-
"--plasma-select-group-label-letter-spacing",
|
9
|
-
"--plasma-select-group-label-line-height"
|
10
|
-
]
|
@@ -1,29 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
4
|
-
value: true
|
5
|
-
});
|
6
|
-
exports.selectHeaderRoot = exports.selectHeaderConfig = void 0;
|
7
|
-
var _Dropdown = /*#__PURE__*/require("../../../Dropdown");
|
8
|
-
var _base = /*#__PURE__*/require("./variations/_view/base");
|
9
|
-
var _base2 = /*#__PURE__*/require("./variations/_size/base");
|
10
|
-
var _SelectHeader = /*#__PURE__*/require("./SelectHeader.styles");
|
11
|
-
var selectHeaderRoot = exports.selectHeaderRoot = _Dropdown.dropdownHeaderRoot;
|
12
|
-
var selectHeaderConfig = exports.selectHeaderConfig = {
|
13
|
-
name: 'SelectHeader',
|
14
|
-
tag: 'div',
|
15
|
-
layout: selectHeaderRoot,
|
16
|
-
base: _SelectHeader.base,
|
17
|
-
variations: {
|
18
|
-
view: {
|
19
|
-
css: _base.base
|
20
|
-
},
|
21
|
-
size: {
|
22
|
-
css: _base2.base
|
23
|
-
}
|
24
|
-
},
|
25
|
-
defaults: {
|
26
|
-
view: 'primary',
|
27
|
-
size: 'm'
|
28
|
-
}
|
29
|
-
};
|
@@ -1,12 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
4
|
-
value: true
|
5
|
-
});
|
6
|
-
exports.mappingOverride = exports.base = void 0;
|
7
|
-
var _react = /*#__PURE__*/require("@emotion/react");
|
8
|
-
var _Select = /*#__PURE__*/require("../../Select.tokens");
|
9
|
-
var _Dropdown = /*#__PURE__*/require("../../../Dropdown");
|
10
|
-
// NOTE: Необходимое переопределение токенов из компонента DropdownItem т.к. используются его части
|
11
|
-
var mappingOverride = exports.mappingOverride = /*#__PURE__*/(0, _react.css)(_Dropdown.dropdownTokens.headerBackground, ":var(", _Select.tokens.headerBackground, ");", _Dropdown.dropdownTokens.headerWidth, ":var(", _Select.tokens.headerWidth, ");", _Dropdown.dropdownTokens.headerHeight, ":var(", _Select.tokens.headerHeight, ");", _Dropdown.dropdownTokens.headerPaddingTop, ":var(", _Select.tokens.headerPaddingTop, ");", _Dropdown.dropdownTokens.headerPaddingRight, ":var(", _Select.tokens.headerPaddingRight, ");", _Dropdown.dropdownTokens.headerPaddingBottom, ":var(", _Select.tokens.headerPaddingBottom, ");", _Dropdown.dropdownTokens.headerPaddingLeft, ":var(", _Select.tokens.headerPaddingLeft, ");", _Dropdown.dropdownTokens.headerMarginTop, ":var(", _Select.tokens.headerMarginTop, ");", _Dropdown.dropdownTokens.headerMarginRight, ":var(", _Select.tokens.headerMarginRight, ");", _Dropdown.dropdownTokens.headerMarginBottom, ":var(", _Select.tokens.headerMarginBottom, ");", _Dropdown.dropdownTokens.headerMarginLeft, ":var(", _Select.tokens.headerMarginLeft, ");", _Dropdown.dropdownTokens.headerFontFamily, ":var(", _Select.tokens.headerFontFamily, ");", _Dropdown.dropdownTokens.headerFontSize, ":var(", _Select.tokens.headerFontSize, ");", _Dropdown.dropdownTokens.headerFontStyle, ":var(", _Select.tokens.headerFontStyle, ");", _Dropdown.dropdownTokens.headerFontWeightBold, ":var(", _Select.tokens.headerFontWeightBold, ");", _Dropdown.dropdownTokens.headerFontLetterSpacing, ":var(", _Select.tokens.headerFontLetterSpacing, ");", _Dropdown.dropdownTokens.headerFontLineHeight, ":var(", _Select.tokens.headerFontLineHeight, ");;label:plasma-new-hope__mappingOverride;" + (process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy1lbW90aW9uL2NvbXBvbmVudHMvU2VsZWN0L3VpL1NlbGVjdEhlYWRlci9TZWxlY3RIZWFkZXIuc3R5bGVzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQU1rQyIsImZpbGUiOiIuLi8uLi8uLi8uLi8uLi8uLi9zcmMtZW1vdGlvbi9jb21wb25lbnRzL1NlbGVjdC91aS9TZWxlY3RIZWFkZXIvU2VsZWN0SGVhZGVyLnN0eWxlcy50cyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IGNzcyB9IGZyb20gJ0BlbW90aW9uL3JlYWN0JztcblxuaW1wb3J0IHsgdG9rZW5zIH0gZnJvbSAnLi4vLi4vU2VsZWN0LnRva2Vucyc7XG5pbXBvcnQgeyBkcm9wZG93blRva2VucyB9IGZyb20gJy4uLy4uLy4uL0Ryb3Bkb3duJztcblxuLy8gTk9URTog0J3QtdC+0LHRhdC+0LTQuNC80L7QtSDQv9C10YDQtdC+0L/RgNC10LTQtdC70LXQvdC40LUg0YLQvtC60LXQvdC+0LIg0LjQtyDQutC+0LzQv9C+0L3QtdC90YLQsCBEcm9wZG93bkl0ZW0g0YIu0LouINC40YHQv9C+0LvRjNC30YPRjtGC0YHRjyDQtdCz0L4g0YfQsNGB0YLQuFxuZXhwb3J0IGNvbnN0IG1hcHBpbmdPdmVycmlkZSA9IGNzc2BcbiAgICAke2Ryb3Bkb3duVG9rZW5zLmhlYWRlckJhY2tncm91bmR9OiB2YXIoJHt0b2tlbnMuaGVhZGVyQmFja2dyb3VuZH0pO1xuICAgICR7ZHJvcGRvd25Ub2tlbnMuaGVhZGVyV2lkdGh9OiB2YXIoJHt0b2tlbnMuaGVhZGVyV2lkdGh9KTtcbiAgICAke2Ryb3Bkb3duVG9rZW5zLmhlYWRlckhlaWdodH06IHZhcigke3Rva2Vucy5oZWFkZXJIZWlnaHR9KTtcbiAgICAke2Ryb3Bkb3duVG9rZW5zLmhlYWRlclBhZGRpbmdUb3B9OiB2YXIoJHt0b2tlbnMuaGVhZGVyUGFkZGluZ1RvcH0pO1xuICAgICR7ZHJvcGRvd25Ub2tlbnMuaGVhZGVyUGFkZGluZ1JpZ2h0fTogdmFyKCR7dG9rZW5zLmhlYWRlclBhZGRpbmdSaWdodH0pO1xuICAgICR7ZHJvcGRvd25Ub2tlbnMuaGVhZGVyUGFkZGluZ0JvdHRvbX06IHZhcigke3Rva2Vucy5oZWFkZXJQYWRkaW5nQm90dG9tfSk7XG4gICAgJHtkcm9wZG93blRva2Vucy5oZWFkZXJQYWRkaW5nTGVmdH06IHZhcigke3Rva2Vucy5oZWFkZXJQYWRkaW5nTGVmdH0pO1xuICAgICR7ZHJvcGRvd25Ub2tlbnMuaGVhZGVyTWFyZ2luVG9wfTogdmFyKCR7dG9rZW5zLmhlYWRlck1hcmdpblRvcH0pO1xuICAgICR7ZHJvcGRvd25Ub2tlbnMuaGVhZGVyTWFyZ2luUmlnaHR9OiB2YXIoJHt0b2tlbnMuaGVhZGVyTWFyZ2luUmlnaHR9KTtcbiAgICAke2Ryb3Bkb3duVG9rZW5zLmhlYWRlck1hcmdpbkJvdHRvbX06IHZhcigke3Rva2Vucy5oZWFkZXJNYXJnaW5Cb3R0b219KTtcbiAgICAke2Ryb3Bkb3duVG9rZW5zLmhlYWRlck1hcmdpbkxlZnR9OiB2YXIoJHt0b2tlbnMuaGVhZGVyTWFyZ2luTGVmdH0pO1xuICAgICR7ZHJvcGRvd25Ub2tlbnMuaGVhZGVyRm9udEZhbWlseX06IHZhcigke3Rva2Vucy5oZWFkZXJGb250RmFtaWx5fSk7XG4gICAgJHtkcm9wZG93blRva2Vucy5oZWFkZXJGb250U2l6ZX06IHZhcigke3Rva2Vucy5oZWFkZXJGb250U2l6ZX0pO1xuICAgICR7ZHJvcGRvd25Ub2tlbnMuaGVhZGVyRm9udFN0eWxlfTogdmFyKCR7dG9rZW5zLmhlYWRlckZvbnRTdHlsZX0pO1xuICAgICR7ZHJvcGRvd25Ub2tlbnMuaGVhZGVyRm9udFdlaWdodEJvbGR9OiB2YXIoJHt0b2tlbnMuaGVhZGVyRm9udFdlaWdodEJvbGR9KTtcbiAgICAke2Ryb3Bkb3duVG9rZW5zLmhlYWRlckZvbnRMZXR0ZXJTcGFjaW5nfTogdmFyKCR7dG9rZW5zLmhlYWRlckZvbnRMZXR0ZXJTcGFjaW5nfSk7XG4gICAgJHtkcm9wZG93blRva2Vucy5oZWFkZXJGb250TGluZUhlaWdodH06IHZhcigke3Rva2Vucy5oZWFkZXJGb250TGluZUhlaWdodH0pO1xuYDtcblxuZXhwb3J0IGNvbnN0IGJhc2UgPSBtYXBwaW5nT3ZlcnJpZGU7XG4iXX0= */"));
|
12
|
-
var base = exports.base = mappingOverride;
|
@@ -1,8 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
4
|
-
value: true
|
5
|
-
});
|
6
|
-
exports.base = void 0;
|
7
|
-
var _react = /*#__PURE__*/require("@emotion/react");
|
8
|
-
var base = exports.base = /*#__PURE__*/(0, _react.css)(";label:plasma-new-hope__base;" + (process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy1lbW90aW9uL2NvbXBvbmVudHMvU2VsZWN0L3VpL1NlbGVjdEhlYWRlci92YXJpYXRpb25zL19zaXplL2Jhc2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRXVCIiwiZmlsZSI6Ii4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy1lbW90aW9uL2NvbXBvbmVudHMvU2VsZWN0L3VpL1NlbGVjdEhlYWRlci92YXJpYXRpb25zL19zaXplL2Jhc2UudHMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBjc3MgfSBmcm9tICdAZW1vdGlvbi9yZWFjdCc7XG5cbmV4cG9ydCBjb25zdCBiYXNlID0gY3NzYGA7XG4iXX0= */"));
|
@@ -1,12 +0,0 @@
|
|
1
|
-
[
|
2
|
-
"--plasma-select-header-width",
|
3
|
-
"--plasma-select-header-height",
|
4
|
-
"--plasma-select-header-padding-top",
|
5
|
-
"--plasma-select-header-padding-right",
|
6
|
-
"--plasma-select-header-padding-bottom",
|
7
|
-
"--plasma-select-header-padding-left",
|
8
|
-
"--plasma-select-header-margin-top",
|
9
|
-
"--plasma-select-header-margin-right",
|
10
|
-
"--plasma-select-header-margin-bottom",
|
11
|
-
"--plasma-select-header-margin-left"
|
12
|
-
]
|
@@ -1,8 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
4
|
-
value: true
|
5
|
-
});
|
6
|
-
exports.base = void 0;
|
7
|
-
var _react = /*#__PURE__*/require("@emotion/react");
|
8
|
-
var base = exports.base = /*#__PURE__*/(0, _react.css)(";label:plasma-new-hope__base;" + (process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy1lbW90aW9uL2NvbXBvbmVudHMvU2VsZWN0L3VpL1NlbGVjdEhlYWRlci92YXJpYXRpb25zL192aWV3L2Jhc2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRXVCIiwiZmlsZSI6Ii4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy1lbW90aW9uL2NvbXBvbmVudHMvU2VsZWN0L3VpL1NlbGVjdEhlYWRlci92YXJpYXRpb25zL192aWV3L2Jhc2UudHMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBjc3MgfSBmcm9tICdAZW1vdGlvbi9yZWFjdCc7XG5cbmV4cG9ydCBjb25zdCBiYXNlID0gY3NzYGA7XG4iXX0= */"));
|
@@ -1,9 +0,0 @@
|
|
1
|
-
[
|
2
|
-
"--plasma-select-header-background",
|
3
|
-
"--plasma-select-header-font-family",
|
4
|
-
"--plasma-select-header-font-size",
|
5
|
-
"--plasma-select-header-font-style",
|
6
|
-
"--plasma-select-header-letter-spacing",
|
7
|
-
"--plasma-select-header-line-height",
|
8
|
-
"--plasma-select-header-font-weight"
|
9
|
-
]
|
@@ -1,29 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
4
|
-
value: true
|
5
|
-
});
|
6
|
-
exports.selectItemRoot = exports.selectItemConfig = void 0;
|
7
|
-
var _Dropdown = /*#__PURE__*/require("../../../Dropdown");
|
8
|
-
var _base = /*#__PURE__*/require("./variations/_view/base");
|
9
|
-
var _base2 = /*#__PURE__*/require("./variations/_size/base");
|
10
|
-
var _SelectItem = /*#__PURE__*/require("./SelectItem.styles");
|
11
|
-
var selectItemRoot = exports.selectItemRoot = _Dropdown.dropdownItemOldRoot;
|
12
|
-
var selectItemConfig = exports.selectItemConfig = {
|
13
|
-
name: 'SelectItem',
|
14
|
-
tag: 'div',
|
15
|
-
layout: selectItemRoot,
|
16
|
-
base: _SelectItem.base,
|
17
|
-
variations: {
|
18
|
-
view: {
|
19
|
-
css: _base.base
|
20
|
-
},
|
21
|
-
size: {
|
22
|
-
css: _base2.base
|
23
|
-
}
|
24
|
-
},
|
25
|
-
defaults: {
|
26
|
-
view: 'primary',
|
27
|
-
size: 'm'
|
28
|
-
}
|
29
|
-
};
|
@@ -1,13 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
4
|
-
value: true
|
5
|
-
});
|
6
|
-
exports.mappingOverride = exports.base = void 0;
|
7
|
-
var _react = /*#__PURE__*/require("@emotion/react");
|
8
|
-
var _Select = /*#__PURE__*/require("../../Select.tokens");
|
9
|
-
var _Dropdown = /*#__PURE__*/require("../../../Dropdown");
|
10
|
-
var _DropdownItem = /*#__PURE__*/require("../../../Dropdown/ui/DropdownItemOld/DropdownItem.styles");
|
11
|
-
// NOTE: Необходимое переопределение токенов из компонента DropdownItem т.к. используются его части
|
12
|
-
var mappingOverride = exports.mappingOverride = /*#__PURE__*/"\n ".concat(_Dropdown.dropdownTokens.itemBackground, ": var(").concat(_Select.tokens.itemBackground, ");\n ").concat(_Dropdown.dropdownTokens.itemColor, ": var(").concat(_Select.tokens.itemColor, ");\n ").concat(_Dropdown.dropdownTokens.itemBackgroundHover, ": var(").concat(_Select.tokens.itemBackgroundHover, ");\n ").concat(_Dropdown.dropdownTokens.itemBackgroundSelected, ": var(").concat(_Select.tokens.itemBackgroundSelected, ");\n ").concat(_Dropdown.dropdownTokens.itemColorSelected, ": var(").concat(_Select.tokens.itemColorSelected, ");\n ").concat(_Dropdown.dropdownTokens.itemBackgroundSelectedHover, ": var(").concat(_Select.tokens.itemBackgroundSelectedHover, ");\n ").concat(_Dropdown.dropdownTokens.itemColorSelectedHover, ": var(").concat(_Select.tokens.itemColorSelectedHover, ");\n ").concat(_Dropdown.dropdownTokens.itemContentLeftColor, ": var(").concat(_Select.tokens.itemContentLeftColor, ");\n ").concat(_Dropdown.dropdownTokens.itemContentRightColor, ": var(").concat(_Select.tokens.itemContentRightColor, ");\n ").concat(_Dropdown.dropdownTokens.disabledOpacity, ": var(").concat(_Select.tokens.disabledOpacity, ");\n ").concat(_Dropdown.dropdownTokens.focusColor, ": var(").concat(_Select.tokens.focusColor, ");\n ").concat(_Dropdown.dropdownTokens.itemWidth, ": var(").concat(_Select.tokens.itemWidth, ");\n ").concat(_Dropdown.dropdownTokens.itemHeight, ": var(").concat(_Select.tokens.itemHeight, ");\n ").concat(_Dropdown.dropdownTokens.itemBorderRadius, ": var(").concat(_Select.tokens.itemBorderRadius, ");\n ").concat(_Dropdown.dropdownTokens.itemPaddingTop, ": var(").concat(_Select.tokens.itemPaddingTop, ");\n ").concat(_Dropdown.dropdownTokens.itemPaddingRight, ": var(").concat(_Select.tokens.itemPaddingRight, ");\n ").concat(_Dropdown.dropdownTokens.itemPaddingBottom, ": var(").concat(_Select.tokens.itemPaddingBottom, ");\n ").concat(_Dropdown.dropdownTokens.itemPaddingLeft, ": var(").concat(_Select.tokens.itemPaddingLeft, ");\n ").concat(_Dropdown.dropdownTokens.itemMarginTop, ": var(").concat(_Select.tokens.itemMarginTop, ");\n ").concat(_Dropdown.dropdownTokens.itemMarginRight, ": var(").concat(_Select.tokens.itemMarginRight, ");\n ").concat(_Dropdown.dropdownTokens.itemMarginBottom, ": var(").concat(_Select.tokens.itemMarginBottom, ");\n ").concat(_Dropdown.dropdownTokens.itemMarginLeft, ": var(").concat(_Select.tokens.itemMarginLeft, ");\n ").concat(_Dropdown.dropdownTokens.itemFontFamily, ": var(").concat(_Select.tokens.itemFontFamily, ");\n ").concat(_Dropdown.dropdownTokens.itemFontSize, ": var(").concat(_Select.tokens.itemFontSize, ");\n ").concat(_Dropdown.dropdownTokens.itemFontStyle, ": var(").concat(_Select.tokens.itemFontStyle, ");\n ").concat(_Dropdown.dropdownTokens.itemFontWeightBold, ": var(").concat(_Select.tokens.itemFontWeightBold, ");\n ").concat(_Dropdown.dropdownTokens.itemFontLetterSpacing, ": var(").concat(_Select.tokens.itemFontLetterSpacing, ");\n ").concat(_Dropdown.dropdownTokens.itemFontLineHeight, ": var(").concat(_Select.tokens.itemFontLineHeight, ");\n ").concat(_Dropdown.dropdownTokens.itemContentLeftWidth, ": var(").concat(_Select.tokens.itemContentLeftWidth, ");\n ").concat(_Dropdown.dropdownTokens.itemContentRightWidth, ": var(").concat(_Select.tokens.itemContentRightWidth, ");\n");
|
13
|
-
var base = exports.base = /*#__PURE__*/(0, _react.css)(_DropdownItem.baseContent, ";", mappingOverride, ";;label:plasma-new-hope__base;" + (process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy1lbW90aW9uL2NvbXBvbmVudHMvU2VsZWN0L3VpL1NlbGVjdEl0ZW0vU2VsZWN0SXRlbS5zdHlsZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBd0N1QiIsImZpbGUiOiIuLi8uLi8uLi8uLi8uLi8uLi9zcmMtZW1vdGlvbi9jb21wb25lbnRzL1NlbGVjdC91aS9TZWxlY3RJdGVtL1NlbGVjdEl0ZW0uc3R5bGVzLnRzIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgY3NzIH0gZnJvbSAnQGVtb3Rpb24vcmVhY3QnO1xuXG5pbXBvcnQgeyB0b2tlbnMgfSBmcm9tICcuLi8uLi9TZWxlY3QudG9rZW5zJztcbmltcG9ydCB7IGRyb3Bkb3duVG9rZW5zIH0gZnJvbSAnLi4vLi4vLi4vRHJvcGRvd24nO1xuaW1wb3J0IHsgYmFzZUNvbnRlbnQgYXMgZHJvcGRvd25JdGVtQmFzZSB9IGZyb20gJy4uLy4uLy4uL0Ryb3Bkb3duL3VpL0Ryb3Bkb3duSXRlbU9sZC9Ecm9wZG93bkl0ZW0uc3R5bGVzJztcblxuLy8gTk9URTog0J3QtdC+0LHRhdC+0LTQuNC80L7QtSDQv9C10YDQtdC+0L/RgNC10LTQtdC70LXQvdC40LUg0YLQvtC60LXQvdC+0LIg0LjQtyDQutC+0LzQv9C+0L3QtdC90YLQsCBEcm9wZG93bkl0ZW0g0YIu0LouINC40YHQv9C+0LvRjNC30YPRjtGC0YHRjyDQtdCz0L4g0YfQsNGB0YLQuFxuZXhwb3J0IGNvbnN0IG1hcHBpbmdPdmVycmlkZSA9IGBcbiAgICAke2Ryb3Bkb3duVG9rZW5zLml0ZW1CYWNrZ3JvdW5kfTogdmFyKCR7dG9rZW5zLml0ZW1CYWNrZ3JvdW5kfSk7XG4gICAgJHtkcm9wZG93blRva2Vucy5pdGVtQ29sb3J9OiB2YXIoJHt0b2tlbnMuaXRlbUNvbG9yfSk7XG4gICAgJHtkcm9wZG93blRva2Vucy5pdGVtQmFja2dyb3VuZEhvdmVyfTogdmFyKCR7dG9rZW5zLml0ZW1CYWNrZ3JvdW5kSG92ZXJ9KTtcbiAgICAke2Ryb3Bkb3duVG9rZW5zLml0ZW1CYWNrZ3JvdW5kU2VsZWN0ZWR9OiB2YXIoJHt0b2tlbnMuaXRlbUJhY2tncm91bmRTZWxlY3RlZH0pO1xuICAgICR7ZHJvcGRvd25Ub2tlbnMuaXRlbUNvbG9yU2VsZWN0ZWR9OiB2YXIoJHt0b2tlbnMuaXRlbUNvbG9yU2VsZWN0ZWR9KTtcbiAgICAke2Ryb3Bkb3duVG9rZW5zLml0ZW1CYWNrZ3JvdW5kU2VsZWN0ZWRIb3Zlcn06IHZhcigke3Rva2Vucy5pdGVtQmFja2dyb3VuZFNlbGVjdGVkSG92ZXJ9KTtcbiAgICAke2Ryb3Bkb3duVG9rZW5zLml0ZW1Db2xvclNlbGVjdGVkSG92ZXJ9OiB2YXIoJHt0b2tlbnMuaXRlbUNvbG9yU2VsZWN0ZWRIb3Zlcn0pO1xuICAgICR7ZHJvcGRvd25Ub2tlbnMuaXRlbUNvbnRlbnRMZWZ0Q29sb3J9OiB2YXIoJHt0b2tlbnMuaXRlbUNvbnRlbnRMZWZ0Q29sb3J9KTtcbiAgICAke2Ryb3Bkb3duVG9rZW5zLml0ZW1Db250ZW50UmlnaHRDb2xvcn06IHZhcigke3Rva2Vucy5pdGVtQ29udGVudFJpZ2h0Q29sb3J9KTtcbiAgICAke2Ryb3Bkb3duVG9rZW5zLmRpc2FibGVkT3BhY2l0eX06IHZhcigke3Rva2Vucy5kaXNhYmxlZE9wYWNpdHl9KTtcbiAgICAke2Ryb3Bkb3duVG9rZW5zLmZvY3VzQ29sb3J9OiB2YXIoJHt0b2tlbnMuZm9jdXNDb2xvcn0pO1xuICAgICR7ZHJvcGRvd25Ub2tlbnMuaXRlbVdpZHRofTogdmFyKCR7dG9rZW5zLml0ZW1XaWR0aH0pO1xuICAgICR7ZHJvcGRvd25Ub2tlbnMuaXRlbUhlaWdodH06IHZhcigke3Rva2Vucy5pdGVtSGVpZ2h0fSk7XG4gICAgJHtkcm9wZG93blRva2Vucy5pdGVtQm9yZGVyUmFkaXVzfTogdmFyKCR7dG9rZW5zLml0ZW1Cb3JkZXJSYWRpdXN9KTtcbiAgICAke2Ryb3Bkb3duVG9rZW5zLml0ZW1QYWRkaW5nVG9wfTogdmFyKCR7dG9rZW5zLml0ZW1QYWRkaW5nVG9wfSk7XG4gICAgJHtkcm9wZG93blRva2Vucy5pdGVtUGFkZGluZ1JpZ2h0fTogdmFyKCR7dG9rZW5zLml0ZW1QYWRkaW5nUmlnaHR9KTtcbiAgICAke2Ryb3Bkb3duVG9rZW5zLml0ZW1QYWRkaW5nQm90dG9tfTogdmFyKCR7dG9rZW5zLml0ZW1QYWRkaW5nQm90dG9tfSk7XG4gICAgJHtkcm9wZG93blRva2Vucy5pdGVtUGFkZGluZ0xlZnR9OiB2YXIoJHt0b2tlbnMuaXRlbVBhZGRpbmdMZWZ0fSk7XG4gICAgJHtkcm9wZG93blRva2Vucy5pdGVtTWFyZ2luVG9wfTogdmFyKCR7dG9rZW5zLml0ZW1NYXJnaW5Ub3B9KTtcbiAgICAke2Ryb3Bkb3duVG9rZW5zLml0ZW1NYXJnaW5SaWdodH06IHZhcigke3Rva2Vucy5pdGVtTWFyZ2luUmlnaHR9KTtcbiAgICAke2Ryb3Bkb3duVG9rZW5zLml0ZW1NYXJnaW5Cb3R0b219OiB2YXIoJHt0b2tlbnMuaXRlbU1hcmdpbkJvdHRvbX0pO1xuICAgICR7ZHJvcGRvd25Ub2tlbnMuaXRlbU1hcmdpbkxlZnR9OiB2YXIoJHt0b2tlbnMuaXRlbU1hcmdpbkxlZnR9KTtcbiAgICAke2Ryb3Bkb3duVG9rZW5zLml0ZW1Gb250RmFtaWx5fTogdmFyKCR7dG9rZW5zLml0ZW1Gb250RmFtaWx5fSk7XG4gICAgJHtkcm9wZG93blRva2Vucy5pdGVtRm9udFNpemV9OiB2YXIoJHt0b2tlbnMuaXRlbUZvbnRTaXplfSk7XG4gICAgJHtkcm9wZG93blRva2Vucy5pdGVtRm9udFN0eWxlfTogdmFyKCR7dG9rZW5zLml0ZW1Gb250U3R5bGV9KTtcbiAgICAke2Ryb3Bkb3duVG9rZW5zLml0ZW1Gb250V2VpZ2h0Qm9sZH06IHZhcigke3Rva2Vucy5pdGVtRm9udFdlaWdodEJvbGR9KTtcbiAgICAke2Ryb3Bkb3duVG9rZW5zLml0ZW1Gb250TGV0dGVyU3BhY2luZ306IHZhcigke3Rva2Vucy5pdGVtRm9udExldHRlclNwYWNpbmd9KTtcbiAgICAke2Ryb3Bkb3duVG9rZW5zLml0ZW1Gb250TGluZUhlaWdodH06IHZhcigke3Rva2Vucy5pdGVtRm9udExpbmVIZWlnaHR9KTtcbiAgICAke2Ryb3Bkb3duVG9rZW5zLml0ZW1Db250ZW50TGVmdFdpZHRofTogdmFyKCR7dG9rZW5zLml0ZW1Db250ZW50TGVmdFdpZHRofSk7XG4gICAgJHtkcm9wZG93blRva2Vucy5pdGVtQ29udGVudFJpZ2h0V2lkdGh9OiB2YXIoJHt0b2tlbnMuaXRlbUNvbnRlbnRSaWdodFdpZHRofSk7XG5gO1xuXG5leHBvcnQgY29uc3QgYmFzZSA9IGNzc2BcbiAgICAke2Ryb3Bkb3duSXRlbUJhc2V9O1xuICAgICR7bWFwcGluZ092ZXJyaWRlfTtcbmA7XG4iXX0= */"));
|
@@ -1,8 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
4
|
-
value: true
|
5
|
-
});
|
6
|
-
exports.base = void 0;
|
7
|
-
var _react = /*#__PURE__*/require("@emotion/react");
|
8
|
-
var base = exports.base = /*#__PURE__*/(0, _react.css)(";label:plasma-new-hope__base;" + (process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy1lbW90aW9uL2NvbXBvbmVudHMvU2VsZWN0L3VpL1NlbGVjdEl0ZW0vdmFyaWF0aW9ucy9fc2l6ZS9iYXNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUV1QiIsImZpbGUiOiIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMtZW1vdGlvbi9jb21wb25lbnRzL1NlbGVjdC91aS9TZWxlY3RJdGVtL3ZhcmlhdGlvbnMvX3NpemUvYmFzZS50cyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IGNzcyB9IGZyb20gJ0BlbW90aW9uL3JlYWN0JztcblxuZXhwb3J0IGNvbnN0IGJhc2UgPSBjc3NgYDtcbiJdfQ== */"));
|
@@ -1,19 +0,0 @@
|
|
1
|
-
[
|
2
|
-
"--plasma-select-item-width",
|
3
|
-
"--plasma-select-item-height",
|
4
|
-
"--plasma-select-item-padding-top",
|
5
|
-
"--plasma-select-item-padding-right",
|
6
|
-
"--plasma-select-item-padding-bottom",
|
7
|
-
"--plasma-select-item-padding-left",
|
8
|
-
"--plasma-select-item-margin-top",
|
9
|
-
"--plasma-select-item-margin-right",
|
10
|
-
"--plasma-select-item-margin-bottom",
|
11
|
-
"--plasma-select-item-margin-left",
|
12
|
-
"--plasma-select-item-border-radius",
|
13
|
-
"--plasma-select-item-font-family",
|
14
|
-
"--plasma-select-item-font-size",
|
15
|
-
"--plasma-select-item-font-style",
|
16
|
-
"--plasma-select-item-letter-spacing",
|
17
|
-
"--plasma-select-item-line-height",
|
18
|
-
"--plasma-select-item-font-weight"
|
19
|
-
]
|
@@ -1,8 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
4
|
-
value: true
|
5
|
-
});
|
6
|
-
exports.base = void 0;
|
7
|
-
var _react = /*#__PURE__*/require("@emotion/react");
|
8
|
-
var base = exports.base = /*#__PURE__*/(0, _react.css)(";label:plasma-new-hope__base;" + (process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy1lbW90aW9uL2NvbXBvbmVudHMvU2VsZWN0L3VpL1NlbGVjdEl0ZW0vdmFyaWF0aW9ucy9fdmlldy9iYXNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUV1QiIsImZpbGUiOiIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMtZW1vdGlvbi9jb21wb25lbnRzL1NlbGVjdC91aS9TZWxlY3RJdGVtL3ZhcmlhdGlvbnMvX3ZpZXcvYmFzZS50cyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IGNzcyB9IGZyb20gJ0BlbW90aW9uL3JlYWN0JztcblxuZXhwb3J0IGNvbnN0IGJhc2UgPSBjc3NgYDtcbiJdfQ== */"));
|
@@ -1,9 +0,0 @@
|
|
1
|
-
[
|
2
|
-
"--plasma-select-item-background",
|
3
|
-
"--plasma-select-item-color",
|
4
|
-
"--plasma-select-item-background-hover",
|
5
|
-
"--plasma-select-item-background-selected",
|
6
|
-
"--plasma-select-item-color-selected",
|
7
|
-
"--plasma-select-item-background-selected-hover",
|
8
|
-
"--plasma-select-item-color-selected-hover"
|
9
|
-
]
|
@@ -1,157 +0,0 @@
|
|
1
|
-
"use strict";
|
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
|
-
Object.defineProperty(exports, "__esModule", {
|
5
|
-
value: true
|
6
|
-
});
|
7
|
-
exports.SelectTarget = void 0;
|
8
|
-
var _react = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("react"));
|
9
|
-
var _Select = /*#__PURE__*/require("../../Select.tokens");
|
10
|
-
var _utils = /*#__PURE__*/require("../../../../utils");
|
11
|
-
var _SelectChip = /*#__PURE__*/require("../SelectChip/SelectChip");
|
12
|
-
var _useKeyNavigation = /*#__PURE__*/require("../../hooks/useKeyNavigation");
|
13
|
-
var _SelectTarget = /*#__PURE__*/require("./SelectTarget.styles");
|
14
|
-
var _excluded = ["values", "target", "label", "opened", "readOnly", "disabled", "enumerationType", "size", "id", "chipsRefs", "onChange", "onKeyDown"];
|
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 _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); }
|
18
|
-
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
19
|
-
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."); }
|
20
|
-
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); }
|
21
|
-
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; }
|
22
|
-
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; } }
|
23
|
-
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
24
|
-
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; }
|
25
|
-
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; }
|
26
|
-
var hasNoFocus = _Select.classes.hasNoFocus,
|
27
|
-
hasChips = _Select.classes.hasChips,
|
28
|
-
innerLabelUp = _Select.classes.innerLabelUp,
|
29
|
-
arrowInverse = _Select.classes.arrowInverse,
|
30
|
-
selectTarget = _Select.classes.selectTarget,
|
31
|
-
selectTargetArrow = _Select.classes.selectTargetArrow,
|
32
|
-
selectTargeText = _Select.classes.selectTargeText,
|
33
|
-
selectTargetLabel = _Select.classes.selectTargetLabel;
|
34
|
-
|
35
|
-
/**
|
36
|
-
* Элемент для выпадающего списка
|
37
|
-
*/
|
38
|
-
var SelectTarget = exports.SelectTarget = /*#__PURE__*/(0, _react.forwardRef)(function (_ref, ref) {
|
39
|
-
var values = _ref.values,
|
40
|
-
_ref$target = _ref.target,
|
41
|
-
target = _ref$target === void 0 ? 'textField-like' : _ref$target,
|
42
|
-
label = _ref.label,
|
43
|
-
opened = _ref.opened,
|
44
|
-
readOnly = _ref.readOnly,
|
45
|
-
disabled = _ref.disabled,
|
46
|
-
enumerationType = _ref.enumerationType,
|
47
|
-
size = _ref.size,
|
48
|
-
id = _ref.id,
|
49
|
-
chipsRefs = _ref.chipsRefs,
|
50
|
-
onChange = _ref.onChange,
|
51
|
-
onKeyDown = _ref.onKeyDown,
|
52
|
-
rest = _objectWithoutProperties(_ref, _excluded);
|
53
|
-
var hasText = Boolean(values === null || values === void 0 ? void 0 : values.some(function (_ref2) {
|
54
|
-
var _ref3 = _slicedToArray(_ref2, 1),
|
55
|
-
value = _ref3[0];
|
56
|
-
return value;
|
57
|
-
}));
|
58
|
-
var hasLabel = label && size !== 'xs' && target === 'textField-like';
|
59
|
-
var textContent = values === null || values === void 0 ? void 0 : values.map(function (_ref4) {
|
60
|
-
var _ref5 = _slicedToArray(_ref4, 2),
|
61
|
-
text = _ref5[1];
|
62
|
-
return text;
|
63
|
-
}).join(', ');
|
64
|
-
var contentRef = (0, _react.useRef)(null);
|
65
|
-
var withArrowInverse = opened ? arrowInverse : undefined;
|
66
|
-
var withInnerLabelUp = hasLabel && hasText ? innerLabelUp : undefined;
|
67
|
-
var withHasChips = hasText && enumerationType === 'chip' && target === 'textField-like' ? hasChips : undefined;
|
68
|
-
var withNoFocus = target === 'textField-like' ? hasNoFocus : undefined;
|
69
|
-
var isLabelVisible = !hasText || hasLabel && enumerationType === 'comma';
|
70
|
-
var onChipClick = (0, _react.useCallback)(function (event) {
|
71
|
-
event.stopPropagation();
|
72
|
-
}, []);
|
73
|
-
var onChipClear = (0, _react.useCallback)(function (value, text, index) {
|
74
|
-
var newValue = values === null || values === void 0 ? void 0 : values.filter(function (_ref6) {
|
75
|
-
var _ref7 = _slicedToArray(_ref6, 2),
|
76
|
-
itemValue = _ref7[0],
|
77
|
-
itemText = _ref7[1];
|
78
|
-
return !(itemValue === value && itemText === text);
|
79
|
-
}).map(function (_ref8) {
|
80
|
-
var _ref9 = _slicedToArray(_ref8, 1),
|
81
|
-
itemValue = _ref9[0];
|
82
|
-
return itemValue;
|
83
|
-
});
|
84
|
-
chipsRefs === null || chipsRefs === void 0 || chipsRefs.current.splice(index, 1);
|
85
|
-
onChange === null || onChange === void 0 || onChange(newValue);
|
86
|
-
}, [values, onChange]);
|
87
|
-
var onChipKeyDown = (0, _react.useCallback)(function (value, text, index, event) {
|
88
|
-
var code = event.code,
|
89
|
-
shiftKey = event.shiftKey;
|
90
|
-
if (code === _useKeyNavigation.Keys.Tab || code === _useKeyNavigation.Keys.Tab && shiftKey) {
|
91
|
-
event.preventDefault();
|
92
|
-
}
|
93
|
-
if (code === _useKeyNavigation.Keys.Backspace) {
|
94
|
-
onChipClear(value, text, index);
|
95
|
-
}
|
96
|
-
}, [onChipClear]);
|
97
|
-
var onWheel = (0, _react.useCallback)(function (event) {
|
98
|
-
var deltaY = event.deltaY;
|
99
|
-
if (contentRef.current) {
|
100
|
-
contentRef.current.scrollLeft += Math.round(deltaY);
|
101
|
-
}
|
102
|
-
}, []);
|
103
|
-
var getRef = (0, _react.useCallback)(function (element, index) {
|
104
|
-
if (element && chipsRefs && chipsRefs.current) {
|
105
|
-
chipsRefs.current[index] = element;
|
106
|
-
}
|
107
|
-
}, []);
|
108
|
-
|
109
|
-
// INFO: Нужно очищать на каждый ререндер компонента для актуализации состояния рефов
|
110
|
-
if (chipsRefs) {
|
111
|
-
chipsRefs.current = [];
|
112
|
-
}
|
113
|
-
return /*#__PURE__*/_react["default"].createElement(_SelectTarget.StyledSelectTarget, _extends({}, rest, {
|
114
|
-
ref: ref,
|
115
|
-
opened: opened,
|
116
|
-
target: target,
|
117
|
-
readOnly: readOnly,
|
118
|
-
disabled: disabled,
|
119
|
-
title: textContent,
|
120
|
-
"aria-label": label,
|
121
|
-
className: (0, _utils.cx)(withInnerLabelUp, withHasChips, withNoFocus, selectTarget),
|
122
|
-
onWheel: onWheel,
|
123
|
-
onKeyDown: onKeyDown,
|
124
|
-
stretching: "filled"
|
125
|
-
}), hasText && (enumerationType === 'comma' || target === 'button-like' ? /*#__PURE__*/_react["default"].createElement(_SelectTarget.StyledText, {
|
126
|
-
className: selectTargeText
|
127
|
-
}, textContent) : /*#__PURE__*/_react["default"].createElement(_SelectTarget.StyledChipsWrapper, {
|
128
|
-
ref: contentRef
|
129
|
-
}, /*#__PURE__*/_react["default"].createElement(_SelectTarget.StyledChips, null, values === null || values === void 0 ? void 0 : values.map(function (_ref10, index) {
|
130
|
-
var _ref11 = _slicedToArray(_ref10, 2),
|
131
|
-
value = _ref11[0],
|
132
|
-
text = _ref11[1];
|
133
|
-
return /*#__PURE__*/_react["default"].createElement(_SelectChip.SelectChip, {
|
134
|
-
index: index,
|
135
|
-
ref: function ref(element) {
|
136
|
-
return getRef(element, index);
|
137
|
-
},
|
138
|
-
key: "".concat(value, "_").concat(text),
|
139
|
-
disabled: disabled,
|
140
|
-
readOnly: readOnly,
|
141
|
-
value: value,
|
142
|
-
text: text,
|
143
|
-
onClear: function onClear(v, t) {
|
144
|
-
return onChipClear(v, t, index);
|
145
|
-
},
|
146
|
-
onClick: onChipClick,
|
147
|
-
onKeyDown: onChipKeyDown
|
148
|
-
});
|
149
|
-
})))), isLabelVisible && /*#__PURE__*/_react["default"].createElement(_SelectTarget.StyledLabel, {
|
150
|
-
className: selectTargetLabel,
|
151
|
-
htmlFor: id
|
152
|
-
}, label), /*#__PURE__*/_react["default"].createElement(_SelectTarget.StyledArrow, {
|
153
|
-
size: "s",
|
154
|
-
color: "inherit",
|
155
|
-
className: (0, _utils.cx)(selectTargetArrow, withArrowInverse)
|
156
|
-
}));
|
157
|
-
});
|