gd-design-library 0.3.4 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +86 -17
- package/README.md +2 -0
- package/assets/icons/account_circle.js +17 -1
- package/assets/icons/arrow-down.js +15 -1
- package/assets/icons/arrow-forward.js +17 -1
- package/assets/icons/attachment.js +17 -1
- package/assets/icons/check.js +16 -1
- package/assets/icons/chevron-left.js +17 -1
- package/assets/icons/chevron-right.js +17 -1
- package/assets/icons/content-copy.js +17 -1
- package/assets/icons/cross.js +16 -1
- package/assets/icons/delete_outlined.js +17 -1
- package/assets/icons/dot.js +16 -1
- package/assets/icons/edit.js +17 -1
- package/assets/icons/error_outline.js +22 -1
- package/assets/icons/eye.js +17 -1
- package/assets/icons/favorite.js +17 -1
- package/assets/icons/favorite_outlined.js +17 -1
- package/assets/icons/file-copy.js +16 -1
- package/assets/icons/filter.js +17 -1
- package/assets/icons/folder.js +17 -1
- package/assets/icons/folderOpen.js +17 -1
- package/assets/icons/home.js +17 -1
- package/assets/icons/keyboard-arrow-down.js +12 -1
- package/assets/icons/local_shipping.js +17 -1
- package/assets/icons/minus.js +16 -1
- package/assets/icons/mobile_menu_button.js +17 -1
- package/assets/icons/paymentCard.js +17 -1
- package/assets/icons/plus.js +16 -1
- package/assets/icons/portrait.js +17 -1
- package/assets/icons/processing.js +17 -1
- package/assets/icons/ruler.js +17 -1
- package/assets/icons/search.js +17 -1
- package/assets/icons/shopping_bag.js +17 -1
- package/assets/icons/slash.js +17 -1
- package/assets/icons/star.js +16 -1
- package/assets/icons/starOutlined.js +16 -1
- package/assets/icons/thumb-down.js +17 -1
- package/assets/icons/thumb-up.js +17 -1
- package/assets/icons/toast_error.js +20 -1
- package/assets/icons/toast_info.js +16 -1
- package/assets/icons/toast_success.js +20 -1
- package/assets/icons/toast_warning.js +16 -1
- package/assets/icons/upload.js +17 -1
- package/assets/icons/volume-up.js +17 -1
- package/assets/icons/wifiTethering.js +17 -1
- package/assets/svg/checkbox_bg_checked.svg.js +5 -2
- package/assets/svg/checkbox_border.svg.js +5 -2
- package/assets/svg/checkbox_disabled_bg_checked.svg.js +5 -2
- package/assets/svg/radio_bg.svg.js +5 -2
- package/assets/svg/radio_bg_checked.svg.js +5 -2
- package/components/core/Breadcrumbs/Breadcrumbs.js +34 -1
- package/components/core/Breadcrumbs/BreadcrumbsStyled.js +58 -1
- package/components/core/Breadcrumbs/constants.js +4 -1
- package/components/core/Button/Button.js +43 -1
- package/components/core/Button/ButtonStyled.js +53 -1
- package/components/core/Button/constants.js +4 -1
- package/components/core/Dropdown/Dropdown.js +38 -1
- package/components/core/Dropdown/DropdownStyled.js +20 -1
- package/components/core/Dropdown/constants.js +4 -1
- package/components/core/Dropdown/hooks/useDropdown.js +12 -1
- package/components/core/DropdownItem/DropdownItem.js +38 -1
- package/components/core/DropdownItem/DropdownItemStyled.js +17 -1
- package/components/core/DropdownItem/constants.js +4 -1
- package/components/core/Form/Form.js +48 -1
- package/components/core/Form/FormStyled.js +16 -1
- package/components/core/Form/constants.js +4 -1
- package/components/core/Form/utils.js +34 -1
- package/components/core/Icon/Icon.js +33 -1
- package/components/core/Icon/constants.js +92 -1
- package/components/core/Image/Image.js +39 -1
- package/components/core/Image/ImageStyled.js +54 -1
- package/components/core/Image/constants.js +4 -1
- package/components/core/InlineNotification/InlineNotification.js +38 -1
- package/components/core/InlineNotification/InlineNotificationStyled.js +29 -1
- package/components/core/InlineNotification/constants.js +21 -1
- package/components/core/Input/Input.js +72 -1
- package/components/core/Input/InputAdornment/InputAdornment.js +18 -1
- package/components/core/Input/InputAdornment/InputAdornmentStyled.js +15 -1
- package/components/core/Input/InputAdornment/constants.js +4 -1
- package/components/core/Input/InputHelper/InputHelper.js +22 -1
- package/components/core/Input/InputHelper/InputHelperStyled.js +17 -1
- package/components/core/Input/InputHelper/constants.js +4 -1
- package/components/core/Input/InputStyled.js +18 -1
- package/components/core/Input/InputWrapper/InputWrapper.js +22 -1
- package/components/core/Input/InputWrapper/InputWrapperStyled.js +21 -1
- package/components/core/Input/InputWrapper/constants.js +5 -1
- package/components/core/Input/constants.js +18 -1
- package/components/core/Input/useInputHandlers.js +31 -1
- package/components/core/InputFile/InputFile.js +40 -1
- package/components/core/InputFile/InputFileStyled.js +27 -1
- package/components/core/InputFile/constants.js +6 -1
- package/components/core/Label/Label.js +27 -1
- package/components/core/Label/LabelStyled.js +17 -1
- package/components/core/Label/constants.js +4 -1
- package/components/core/Link/Link.js +43 -1
- package/components/core/Link/LinkStyled.js +22 -1
- package/components/core/Link/constants.js +4 -1
- package/components/core/List/List.js +45 -1
- package/components/core/List/ListStyled.js +31 -1
- package/components/core/List/constants.js +4 -1
- package/components/core/Loader/Loader.js +28 -1
- package/components/core/Loader/LoaderStyled.js +41 -1
- package/components/core/Loader/constants.js +6 -1
- package/components/core/Loader/utils.js +37 -1
- package/components/core/Menu/Menu.js +100 -1
- package/components/core/Menu/MenuStyled.js +31 -1
- package/components/core/Menu/constants.js +24 -1
- package/components/core/Modal/Modal.js +47 -1
- package/components/core/Modal/ModalStyled.js +76 -1
- package/components/core/Modal/constants.js +4 -1
- package/components/core/Portal/Portal.d.ts +1 -2
- package/components/core/Portal/Portal.js +19 -1
- package/components/core/Portal/index.d.ts +1 -1
- package/components/core/Scroll/Scroll.js +40 -1
- package/components/core/Scroll/ScrollBar.js +68 -1
- package/components/core/Scroll/ScrollStyled.js +56 -1
- package/components/core/Scroll/constants.js +6 -1
- package/components/core/Scroll/utils.js +41 -1
- package/components/core/Select/Select.js +145 -1
- package/components/core/Select/SelectStyled.js +70 -1
- package/components/core/Select/constants.js +5 -1
- package/components/core/Select/hooks/useSelectContext.js +12 -1
- package/components/core/Separator/Separator.js +36 -1
- package/components/core/Separator/SeparatorStyled.js +61 -1
- package/components/core/Separator/constants.js +4 -1
- package/components/core/Skeleton/Skeleton.js +24 -1
- package/components/core/Skeleton/SkeletonStyled.js +28 -1
- package/components/core/Skeleton/constants.js +6 -1
- package/components/core/Slider/Slider.js +35 -1
- package/components/core/Slider/SliderStyled.js +20 -1
- package/components/core/Slider/constants.js +6 -1
- package/components/core/Snackbar/Snackbar.js +46 -1
- package/components/core/Snackbar/SnackbarManager.js +48 -1
- package/components/core/Snackbar/SnackbarStyled.js +109 -5
- package/components/core/Snackbar/constants.js +10 -1
- package/components/core/Switch/Switch.js +36 -1
- package/components/core/Switch/SwitchStyled.js +56 -1
- package/components/core/Switch/constants.js +4 -1
- package/components/core/Textarea/Textarea.js +41 -1
- package/components/core/Textarea/Textarea.types.d.ts +1 -3
- package/components/core/Textarea/Textarea.types.js +6 -1
- package/components/core/Textarea/TextareaStyled.js +29 -1
- package/components/core/Textarea/constants.js +4 -1
- package/components/core/Textarea/hooks/useDynamicHeightAdjustment.js +8 -1
- package/components/core/Textarea/hooks/useResizeObserver.js +24 -1
- package/components/core/Toggle/Toggle.js +37 -1
- package/components/core/Toggle/ToggleStyled.js +18 -1
- package/components/core/Toggle/constants.js +4 -1
- package/components/core/Tooltip/Tooltip.js +40 -1
- package/components/core/Tooltip/Tooltip.types.js +4 -1
- package/components/core/Tooltip/TooltipStyled.js +23 -1
- package/components/core/Tooltip/constants.js +6 -1
- package/components/core/Tooltip/utils.js +64 -1
- package/components/core/Typography/Typography.js +26 -1
- package/components/core/Typography/TypographyStyled.js +32 -1
- package/components/core/Typography/constants.js +4 -1
- package/components/core/Wrapper/Wrapper.js +20 -1
- package/components/core/Wrapper/WrapperStyled.js +23 -1
- package/components/core/Wrapper/constants.js +4 -1
- package/components/core/index.d.ts +1 -1
- package/components/core/types/roles.types.js +4 -1
- package/components/domainSpecific/Accordion/Accordion.js +35 -1
- package/components/domainSpecific/Accordion/AccordionContent/AccordionContent.js +21 -1
- package/components/domainSpecific/Accordion/AccordionHeader/AccordionHeader.js +29 -1
- package/components/domainSpecific/Accordion/AccordionItem/AccordionItem.js +26 -1
- package/components/domainSpecific/Accordion/AccordionStyled.js +39 -1
- package/components/domainSpecific/Accordion/constants.js +7 -1
- package/components/domainSpecific/Accordion/hooks/useAccordion.js +12 -1
- package/components/domainSpecific/Avatar/Avatar.js +44 -1
- package/components/domainSpecific/Avatar/AvatarStyled.js +63 -1
- package/components/domainSpecific/Avatar/constants.js +6 -1
- package/components/domainSpecific/Card/Card.js +47 -1
- package/components/domainSpecific/Card/CardButton/CardButton.js +25 -1
- package/components/domainSpecific/Card/CardButton/CardButtonStyled.js +18 -1
- package/components/domainSpecific/Card/CardButton/constants.js +4 -1
- package/components/domainSpecific/Card/CardCounter/CardCounter.js +26 -1
- package/components/domainSpecific/Card/CardCounter/CardCounterStyled.js +17 -1
- package/components/domainSpecific/Card/CardCounter/constants.js +4 -1
- package/components/domainSpecific/Card/CardDescription/CardDescription.js +24 -1
- package/components/domainSpecific/Card/CardDescription/CardDescriptionStyled.js +24 -1
- package/components/domainSpecific/Card/CardDescription/constants.js +10 -1
- package/components/domainSpecific/Card/CardImage/CardImage.js +26 -1
- package/components/domainSpecific/Card/CardImage/CardImageStyled.js +18 -1
- package/components/domainSpecific/Card/CardImage/constants.js +4 -1
- package/components/domainSpecific/Card/CardPrice/CardPrice.js +22 -1
- package/components/domainSpecific/Card/CardPrice/CardPriceStyled.js +18 -1
- package/components/domainSpecific/Card/CardPrice/constants.js +4 -1
- package/components/domainSpecific/Card/CardRating/CardRating.js +30 -1
- package/components/domainSpecific/Card/CardRating/CardRatingStyled.js +18 -1
- package/components/domainSpecific/Card/CardRating/constants.js +6 -1
- package/components/domainSpecific/Card/CardTitle/CardTitle.js +25 -1
- package/components/domainSpecific/Card/CardTitle/CardTitleStyled.js +24 -1
- package/components/domainSpecific/Card/CardTitle/constants.js +10 -1
- package/components/domainSpecific/Card/CartStyled.js +26 -1
- package/components/domainSpecific/Card/constants.js +4 -1
- package/components/domainSpecific/Carousel/Carousel.js +137 -1
- package/components/domainSpecific/Carousel/Carousel.types.d.ts +1 -12
- package/components/domainSpecific/Carousel/CarouselStyled.js +143 -1
- package/components/domainSpecific/Carousel/constants.js +4 -1
- package/components/domainSpecific/ChatBubble/ChatBubble.js +26 -1
- package/components/domainSpecific/ChatBubble/ChatBubbleStyled.js +43 -1
- package/components/domainSpecific/ChatBubble/constants.js +4 -1
- package/components/domainSpecific/ContentCarousel/ContentCarousel.js +69 -1
- package/components/domainSpecific/ContentCarousel/ContentCarouselStyled.js +32 -1
- package/components/domainSpecific/ContentCarousel/constants.js +4 -1
- package/components/domainSpecific/Counter/Counter.js +55 -1
- package/components/domainSpecific/Counter/CounterStyled.js +27 -1
- package/components/domainSpecific/Counter/constants.js +8 -1
- package/components/domainSpecific/DragAndDropFiles/DragAndDropFiles.js +48 -1
- package/components/domainSpecific/DragAndDropFiles/DragAndDropFilesStyled.js +16 -1
- package/components/domainSpecific/DragAndDropFiles/constants.js +4 -1
- package/components/domainSpecific/DragAndDropFiles/hooks/useDragAndDrop/useDragAndDrop.js +49 -1
- package/components/domainSpecific/Header/Header.js +88 -1
- package/components/domainSpecific/Header/HeaderStyled.js +136 -1
- package/components/domainSpecific/Header/constants.js +4 -1
- package/components/domainSpecific/Price/Price.js +23 -1
- package/components/domainSpecific/Price/PriceStyled.js +42 -1
- package/components/domainSpecific/Price/constants.js +4 -1
- package/components/domainSpecific/ProgressBar/ProgressBar.js +29 -1
- package/components/domainSpecific/ProgressBar/ProgressBarStyled.js +70 -1
- package/components/domainSpecific/ProgressBar/constants.js +7 -1
- package/components/domainSpecific/RadioGroup/RadioGroup.js +54 -1
- package/components/domainSpecific/RadioGroup/RadioGroup.types.js +4 -1
- package/components/domainSpecific/RadioGroup/RadioGroupItem/RadioGroupItem.js +37 -1
- package/components/domainSpecific/RadioGroup/RadioGroupStyled.js +130 -1
- package/components/domainSpecific/RadioGroup/constants.js +5 -1
- package/components/domainSpecific/Rating/Rating.js +63 -1
- package/components/domainSpecific/Rating/RatingStyled.js +61 -1
- package/components/domainSpecific/Rating/constants.js +9 -1
- package/components/domainSpecific/Search/Search.js +58 -1
- package/components/domainSpecific/Search/SearchStyled.js +16 -1
- package/components/domainSpecific/Search/constants.js +7 -1
- package/components/domainSpecific/SearchModal/SearchInput/SearchInput.js +26 -1
- package/components/domainSpecific/SearchModal/SearchInput/SearchInputStyled.js +25 -1
- package/components/domainSpecific/SearchModal/SearchInput/constants.js +6 -1
- package/components/domainSpecific/SearchModal/SearchItems/SearchItems.js +48 -1
- package/components/domainSpecific/SearchModal/SearchItems/SearchItemsStyled.js +82 -1
- package/components/domainSpecific/SearchModal/SearchItems/constants.js +10 -1
- package/components/domainSpecific/SearchModal/SearchItems/utils.js +7 -1
- package/components/domainSpecific/SearchModal/SearchLoader/SearchLoader.js +20 -1
- package/components/domainSpecific/SearchModal/SearchLoader/SearchLoaderStyled.js +14 -1
- package/components/domainSpecific/SearchModal/SearchLoader/constants.js +4 -1
- package/components/domainSpecific/SearchModal/SearchModal.js +39 -1
- package/components/domainSpecific/SearchModal/SearchModalStyled.js +29 -1
- package/components/domainSpecific/SearchModal/constants.js +8 -1
- package/components/domainSpecific/Stepper/Stepper.js +42 -1
- package/components/domainSpecific/Stepper/StepperStyled.js +58 -1
- package/components/domainSpecific/Stepper/constants.js +4 -1
- package/components/domainSpecific/Stepper/utils.js +37 -1
- package/components/domainSpecific/Tabs/Tabs.js +40 -1
- package/components/domainSpecific/Tabs/TabsStyled.js +79 -1
- package/components/domainSpecific/Tabs/constants.js +6 -1
- package/components/index.types.js +4 -1
- package/components/layout/ChatContainer/ChatContainer.js +51 -1
- package/components/layout/ChatContainer/ChatContainer.types.d.ts +1 -6
- package/components/layout/ChatContainer/ChatContainerStyled.js +71 -1
- package/components/layout/ChatContainer/constants.js +4 -1
- package/components/layout/Column/Column.js +26 -1
- package/components/layout/Column/ColumnStyled.js +36 -1
- package/components/layout/Column/constants.js +4 -1
- package/components/layout/FlexContainer/FlexContainer.js +25 -1
- package/components/layout/FlexContainer/FlexContainerStyled.js +27 -1
- package/components/layout/FlexContainer/constants.js +4 -1
- package/components/layout/FlexContainer/utils.js +18 -1
- package/components/layout/Row/Row.js +26 -1
- package/components/layout/Row/RowStyled.js +36 -1
- package/components/layout/Row/constants.js +4 -1
- package/components/templates/SkeletonSearch/SkeletonSearch.js +30 -1
- package/components/templates/SkeletonSearch/SkeletonSearchStyled.js +97 -1
- package/components/templates/SkeletonSearch/constants.js +5 -1
- package/components/widget/DragAndDrop/DragAndDrop.js +74 -1
- package/components/widget/DragAndDrop/DragAndDropStyled.js +61 -1
- package/components/widget/DragAndDrop/constants.js +4 -1
- package/components/widget/DragAndDrop/utils/validators.js +17 -1
- package/constants/keyboard.js +10 -1
- package/constants/positioning.js +12 -1
- package/constants/timers.js +5 -1
- package/hooks/useAutoFocus/useAutoFocus.js +11 -1
- package/hooks/useCarousel/useCarousel.js +61 -1
- package/hooks/useClickOutside/useClickOutside.js +15 -1
- package/hooks/useKeyControls/useKeyControls.js +19 -1
- package/hooks/useMediaQuery/useMediaQuery.js +14 -1
- package/hooks/useTheme/useTheme.js +48 -1
- package/index.js +350 -1
- package/package.json +17 -2
- package/stories/components/TokenViewer/TokenViewer.d.ts +2 -0
- package/stories/components/TokenViewer/TokenViewer.types.d.ts +12 -0
- package/stories/components/TokenViewer/TokenViewerStyled.d.ts +11 -0
- package/stories/components/TokenViewer/index.d.ts +1 -0
- package/tokens/accordion.js +72 -1
- package/tokens/animations.js +63 -1
- package/tokens/avatar.d.ts +22 -15
- package/tokens/avatar.js +153 -1
- package/tokens/borders.js +17 -1
- package/tokens/breadcrumbs.js +37 -1
- package/tokens/breakpoints.d.ts +8 -0
- package/tokens/breakpoints.js +12 -0
- package/tokens/button.js +146 -1
- package/tokens/card.d.ts +5 -1
- package/tokens/card.js +191 -1
- package/tokens/carousel.js +216 -1
- package/tokens/chat.d.ts +4 -0
- package/tokens/chat.js +122 -1
- package/tokens/chatbubble.d.ts +1 -3
- package/tokens/chatbubble.js +75 -1
- package/tokens/colors.js +157 -1
- package/tokens/column.js +9 -1
- package/tokens/constants.js +4 -1
- package/tokens/counter.js +37 -1
- package/tokens/cursors.js +20 -1
- package/tokens/defaultTheme.d.ts +154 -47
- package/tokens/defaultTheme.js +123 -1
- package/tokens/display.js +19 -1
- package/tokens/draganddrop.js +87 -1
- package/tokens/draganddropfiles.js +6 -1
- package/tokens/flexContainer.js +13 -1
- package/tokens/font.js +52 -1
- package/tokens/form.js +6 -1
- package/tokens/header.js +123 -1
- package/tokens/icon.js +32 -1
- package/tokens/image.js +40 -1
- package/tokens/index.d.ts +71 -47
- package/tokens/index.js +145 -1
- package/tokens/inlineNotification.js +75 -1
- package/tokens/input.js +192 -1
- package/tokens/inputfile.js +12 -1
- package/tokens/label.js +9 -1
- package/tokens/link.js +66 -1
- package/tokens/list.js +87 -1
- package/tokens/loader.js +141 -1
- package/tokens/menu.js +19 -1
- package/tokens/modal.js +108 -1
- package/tokens/price.js +32 -1
- package/tokens/progressbar.js +60 -1
- package/tokens/radiogroup.js +103 -2
- package/tokens/radius.js +14 -1
- package/tokens/rating.js +73 -1
- package/tokens/reset.js +4 -1
- package/tokens/row.js +8 -1
- package/tokens/scroll.js +99 -1
- package/tokens/search.js +45 -1
- package/tokens/searchModal.js +159 -1
- package/tokens/select.js +99 -1
- package/tokens/separator.js +63 -1
- package/tokens/shadow.js +25 -1
- package/tokens/skeleton.js +77 -1
- package/tokens/slider.js +45 -1
- package/tokens/snackbar.d.ts +30 -28
- package/tokens/snackbar.js +169 -1
- package/tokens/spacing.js +13 -1
- package/tokens/stepper.js +147 -1
- package/tokens/switch.js +76 -1
- package/tokens/tabs.js +108 -1
- package/tokens/textarea.js +45 -1
- package/tokens/toggle.js +19 -1
- package/tokens/tooltip.js +69 -1
- package/tokens/types/index.types.js +4 -1
- package/tokens/typography.js +134 -1
- package/tokens/utils.d.ts +6 -0
- package/tokens/utils.js +88 -1
- package/tokens/values.js +73 -1
- package/tokens/wrapper.js +34 -1
- package/types/accesability.js +4 -1
- package/types/button.js +7 -1
- package/types/card.js +5 -1
- package/types/carousel.d.ts +12 -1
- package/types/carousel.js +6 -0
- package/types/chat.js +4 -1
- package/types/common.js +5 -1
- package/types/cursors.js +4 -1
- package/types/index.d.ts +1 -0
- package/types/input.js +6 -1
- package/types/label.js +4 -1
- package/types/layout.js +4 -1
- package/types/link.js +5 -1
- package/types/list.js +4 -1
- package/types/separator.js +5 -1
- package/types/skeleton.js +4 -1
- package/types/snackbar.js +5 -1
- package/types/stepper.js +5 -1
- package/types/typography.js +6 -1
- package/types/wrapper.js +4 -1
- package/utils/animationFrame.js +17 -1
- package/utils/common.js +4 -1
- package/utils/date.js +11 -1
- package/utils/focus.js +54 -1
- package/utils/helpers.js +42 -1
- package/utils/layout.js +32 -1
- package/utils/math.js +11 -1
- package/utils/setInRange.js +11 -1
- package/utils/uniqueKeys.js +4 -1
- package/components/domainSpecific/Carousel/Carousel.types.js +0 -1
- package/components/layout/ChatContainer/ChatContainer.types.js +0 -1
- /package/{gd-design-library.css → assets/styles.css} +0 -0
package/tokens/price.js
CHANGED
|
@@ -1 +1,32 @@
|
|
|
1
|
-
|
|
1
|
+
import { flexAlignItems as o, display as r } from "./display.js";
|
|
2
|
+
import { spacing as l } from "./spacing.js";
|
|
3
|
+
import { font as e } from "./font.js";
|
|
4
|
+
import { colors as t } from "./colors.js";
|
|
5
|
+
import { TypographyVariant as i } from "../types/typography.js";
|
|
6
|
+
import { SizeVariant as m } from "../types/common.js";
|
|
7
|
+
const h = {
|
|
8
|
+
default: {
|
|
9
|
+
display: r.flex,
|
|
10
|
+
alignItems: o.center,
|
|
11
|
+
gap: l[m.Sm]
|
|
12
|
+
},
|
|
13
|
+
currentPrice: {
|
|
14
|
+
default: {
|
|
15
|
+
fontSize: e.size[i.H3],
|
|
16
|
+
fontWeight: e.weight.medium,
|
|
17
|
+
lineHeight: e.line.height[i.H3],
|
|
18
|
+
color: t.text.default
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
oldPrice: {
|
|
22
|
+
default: {
|
|
23
|
+
fontSize: e.size[i.H4],
|
|
24
|
+
fontWeight: e.weight.medium,
|
|
25
|
+
lineHeight: e.line.height[i.H4],
|
|
26
|
+
color: t.text.disabled
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
};
|
|
30
|
+
export {
|
|
31
|
+
h as price
|
|
32
|
+
};
|
package/tokens/progressbar.js
CHANGED
|
@@ -1 +1,60 @@
|
|
|
1
|
-
|
|
1
|
+
import { colors as e } from "./colors.js";
|
|
2
|
+
import { spacing as i } from "./spacing.js";
|
|
3
|
+
import { flexAlignItems as r, display as t } from "./display.js";
|
|
4
|
+
import { font as l } from "./font.js";
|
|
5
|
+
import { values as o } from "./values.js";
|
|
6
|
+
import { calculateJustify as a } from "../utils/layout.js";
|
|
7
|
+
const g = {
|
|
8
|
+
styledProgressBar: {
|
|
9
|
+
default: {
|
|
10
|
+
width: "100%",
|
|
11
|
+
display: t.block
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
styledTrack: {
|
|
15
|
+
default: {
|
|
16
|
+
position: "relative",
|
|
17
|
+
width: "100%",
|
|
18
|
+
height: i.md,
|
|
19
|
+
overflow: "hidden",
|
|
20
|
+
backgroundColor: e.bg.default
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
styledDeterminateFill: {
|
|
24
|
+
default: {
|
|
25
|
+
display: t.flex,
|
|
26
|
+
alignItems: r.center,
|
|
27
|
+
justifyContent: a("end"),
|
|
28
|
+
paddingRight: i.none,
|
|
29
|
+
whiteSpace: "nowrap",
|
|
30
|
+
height: "100%",
|
|
31
|
+
backgroundColor: e.bg.fill.primary.default,
|
|
32
|
+
transition: o.transitions.progressbar.styledDeterminateFill
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
styledIndeterminateFill: {
|
|
36
|
+
default: {
|
|
37
|
+
backgroundColor: e.bg.fill.primary.default,
|
|
38
|
+
width: "30%",
|
|
39
|
+
height: "100%"
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
styledIndeterminateFillAnimations: {
|
|
43
|
+
animationName: "progressIndeterminate",
|
|
44
|
+
animationProps: "1.2s infinite ease-in-out"
|
|
45
|
+
},
|
|
46
|
+
styledPercentLabel: {
|
|
47
|
+
default: {
|
|
48
|
+
display: t.flex,
|
|
49
|
+
alignItems: r.center,
|
|
50
|
+
color: e.neutral.black,
|
|
51
|
+
fontSize: l.size.caption,
|
|
52
|
+
fontWeight: l.weight.normal,
|
|
53
|
+
height: "100%",
|
|
54
|
+
userSelect: "none"
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
};
|
|
58
|
+
export {
|
|
59
|
+
g as progressbar
|
|
60
|
+
};
|
package/tokens/radiogroup.js
CHANGED
|
@@ -1,4 +1,68 @@
|
|
|
1
|
-
|
|
1
|
+
import { borders as r } from "./borders.js";
|
|
2
|
+
import { spacing as e } from "./spacing.js";
|
|
3
|
+
import { display as d } from "./display.js";
|
|
4
|
+
import { font as i } from "./font.js";
|
|
5
|
+
import { cursors as t } from "./cursors.js";
|
|
6
|
+
import { colors as o } from "./colors.js";
|
|
7
|
+
import { FlexDirection as n } from "../types/layout.js";
|
|
8
|
+
import { TextAlign as l } from "../types/typography.js";
|
|
9
|
+
const b = {
|
|
10
|
+
input: {
|
|
11
|
+
position: "absolute",
|
|
12
|
+
opacity: 0,
|
|
13
|
+
pointerEvents: "none"
|
|
14
|
+
},
|
|
15
|
+
default: {
|
|
16
|
+
margin: e.none,
|
|
17
|
+
padding: e.none,
|
|
18
|
+
border: r.none
|
|
19
|
+
},
|
|
20
|
+
label: {
|
|
21
|
+
default: {
|
|
22
|
+
display: d.block,
|
|
23
|
+
padding: `${e.sm} ${e.md}`,
|
|
24
|
+
fontSize: i.size.p,
|
|
25
|
+
fontWeight: i.weight.medium,
|
|
26
|
+
cursor: t.inherit,
|
|
27
|
+
color: o.text.caption,
|
|
28
|
+
width: "100%",
|
|
29
|
+
height: "100%",
|
|
30
|
+
alignContent: l.Center,
|
|
31
|
+
textAlign: l.Center
|
|
32
|
+
},
|
|
33
|
+
disabled: {},
|
|
34
|
+
selected: {},
|
|
35
|
+
hover: {
|
|
36
|
+
"&:hover": {
|
|
37
|
+
color: o.neutral["grey.90"]
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
item: {
|
|
42
|
+
default: {
|
|
43
|
+
position: "relative",
|
|
44
|
+
cursor: t.pointer,
|
|
45
|
+
border: r.generic({
|
|
46
|
+
width: "1px",
|
|
47
|
+
type: "solid",
|
|
48
|
+
color: o.border.default
|
|
49
|
+
}),
|
|
50
|
+
"&:focus-within": {
|
|
51
|
+
outline: `2px solid ${o.border.focus}`,
|
|
52
|
+
outlineOffset: "-1px"
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
disabled: {
|
|
56
|
+
cursor: t.notAllowed,
|
|
57
|
+
backgroundColor: o.bg.default,
|
|
58
|
+
"&::after": {
|
|
59
|
+
content: '""',
|
|
60
|
+
position: "absolute",
|
|
61
|
+
top: e.none,
|
|
62
|
+
left: e.none,
|
|
63
|
+
width: "100%",
|
|
64
|
+
height: "100%",
|
|
65
|
+
background: `
|
|
2
66
|
linear-gradient(
|
|
3
67
|
to top right,
|
|
4
68
|
transparent 49%,
|
|
@@ -6,4 +70,41 @@
|
|
|
6
70
|
#E5E5E5 51%,
|
|
7
71
|
transparent 51%
|
|
8
72
|
)
|
|
9
|
-
`
|
|
73
|
+
`
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
selected: {
|
|
77
|
+
boxShadow: `0 0 0 1px ${o.neutral.black}`,
|
|
78
|
+
border: r.generic({
|
|
79
|
+
width: "1px",
|
|
80
|
+
type: "solid",
|
|
81
|
+
color: o.neutral.black
|
|
82
|
+
})
|
|
83
|
+
},
|
|
84
|
+
hover: {
|
|
85
|
+
"&:hover": {
|
|
86
|
+
border: r.generic({
|
|
87
|
+
width: "1px",
|
|
88
|
+
type: "solid",
|
|
89
|
+
color: o.neutral.black
|
|
90
|
+
})
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
layouts: {
|
|
95
|
+
column: {
|
|
96
|
+
display: "flex",
|
|
97
|
+
flexDirection: n.Column
|
|
98
|
+
},
|
|
99
|
+
row: {
|
|
100
|
+
display: "flex",
|
|
101
|
+
flexDirection: n.Row
|
|
102
|
+
},
|
|
103
|
+
grid: {
|
|
104
|
+
display: "grid"
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
};
|
|
108
|
+
export {
|
|
109
|
+
b as radiogroup
|
|
110
|
+
};
|
package/tokens/radius.js
CHANGED
|
@@ -1 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
import { SizeVariant as p } from "../types/common.js";
|
|
2
|
+
const o = {
|
|
3
|
+
default: "6px",
|
|
4
|
+
none: "0px",
|
|
5
|
+
[p.Xs]: "2px",
|
|
6
|
+
[p.Sm]: "4px",
|
|
7
|
+
[p.Md]: "8px",
|
|
8
|
+
[p.Lg]: "16px",
|
|
9
|
+
[p.Xl]: "32px",
|
|
10
|
+
round: "50%"
|
|
11
|
+
};
|
|
12
|
+
export {
|
|
13
|
+
o as radius
|
|
14
|
+
};
|
package/tokens/rating.js
CHANGED
|
@@ -1 +1,73 @@
|
|
|
1
|
-
|
|
1
|
+
import { cursors as i } from "./cursors.js";
|
|
2
|
+
import { display as e } from "./display.js";
|
|
3
|
+
import { values as r } from "./values.js";
|
|
4
|
+
import { get as o } from "../utils/helpers.js";
|
|
5
|
+
import { SizeVariant as t } from "../types/common.js";
|
|
6
|
+
const f = {
|
|
7
|
+
default: {
|
|
8
|
+
display: e.inlineFlex,
|
|
9
|
+
gap: 0,
|
|
10
|
+
position: "relative",
|
|
11
|
+
overflow: "hidden"
|
|
12
|
+
},
|
|
13
|
+
progress: {
|
|
14
|
+
default: {
|
|
15
|
+
position: "absolute",
|
|
16
|
+
display: e.flex,
|
|
17
|
+
overflow: "hidden",
|
|
18
|
+
left: 0,
|
|
19
|
+
svg: {
|
|
20
|
+
flexShrink: 0,
|
|
21
|
+
flexGrow: 0
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
radioInput: {
|
|
26
|
+
default: {
|
|
27
|
+
display: e.none
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
label: {
|
|
31
|
+
default: {
|
|
32
|
+
cursor: i.pointer
|
|
33
|
+
},
|
|
34
|
+
active: {
|
|
35
|
+
"&:hover": {
|
|
36
|
+
transform: "scale(1.2)",
|
|
37
|
+
transition: o(r, "transitions.rating.label")
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
readOnly: {
|
|
41
|
+
cursor: i.default
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
size: {
|
|
45
|
+
[t.Sm]: {
|
|
46
|
+
width: 12,
|
|
47
|
+
height: 12
|
|
48
|
+
},
|
|
49
|
+
[t.Md]: {
|
|
50
|
+
width: 24,
|
|
51
|
+
height: 24
|
|
52
|
+
},
|
|
53
|
+
[t.Lg]: {
|
|
54
|
+
width: 48,
|
|
55
|
+
height: 48
|
|
56
|
+
},
|
|
57
|
+
[t.Xl]: {
|
|
58
|
+
width: 60,
|
|
59
|
+
height: 60
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
icons: {
|
|
63
|
+
rateActive: {
|
|
64
|
+
name: "star"
|
|
65
|
+
},
|
|
66
|
+
rateInactive: {
|
|
67
|
+
name: "starOutlined"
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
};
|
|
71
|
+
export {
|
|
72
|
+
f as rating
|
|
73
|
+
};
|
package/tokens/reset.js
CHANGED
package/tokens/row.js
CHANGED
package/tokens/scroll.js
CHANGED
|
@@ -1 +1,99 @@
|
|
|
1
|
-
|
|
1
|
+
import { colors as n } from "./colors.js";
|
|
2
|
+
import { display as a } from "./display.js";
|
|
3
|
+
import { spacing as i } from "./spacing.js";
|
|
4
|
+
import { values as o } from "./values.js";
|
|
5
|
+
import { Z_INDEX as r } from "../constants/positioning.js";
|
|
6
|
+
const t = 8, m = {
|
|
7
|
+
container: {
|
|
8
|
+
default: {
|
|
9
|
+
position: "relative",
|
|
10
|
+
display: a.flex,
|
|
11
|
+
overflow: "auto",
|
|
12
|
+
isolation: "isolate",
|
|
13
|
+
maxBlockSize: "100%",
|
|
14
|
+
"&::-webkit-scrollbar, &::-webkit-scrollbar-thumb": {
|
|
15
|
+
background: "transparent",
|
|
16
|
+
width: "0",
|
|
17
|
+
height: "0"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
content: {
|
|
22
|
+
default: {
|
|
23
|
+
position: "relative",
|
|
24
|
+
zIndex: r.ZERO,
|
|
25
|
+
flex: 1,
|
|
26
|
+
flexBasis: "auto",
|
|
27
|
+
height: "max-content"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
scrollbars: {
|
|
31
|
+
default: {
|
|
32
|
+
position: "sticky",
|
|
33
|
+
top: "0",
|
|
34
|
+
left: "0",
|
|
35
|
+
zIndex: r.FIRST,
|
|
36
|
+
minWidth: "calc(100% - 1px)",
|
|
37
|
+
minHeight: "calc(100% - 1px)",
|
|
38
|
+
maxWidth: "calc(100% - 1px)",
|
|
39
|
+
maxHeight: "calc(100% - 1px)",
|
|
40
|
+
float: "left",
|
|
41
|
+
marginRight: "calc(-100% + 1px)",
|
|
42
|
+
marginInlineStart: "0",
|
|
43
|
+
marginInlineEnd: "calc(-100% + 1px)",
|
|
44
|
+
pointerEvents: "none"
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
scrollbar: {
|
|
48
|
+
default: {
|
|
49
|
+
position: "absolute",
|
|
50
|
+
pointerEvents: "auto",
|
|
51
|
+
opacity: 0.2,
|
|
52
|
+
transition: o.transitions.scroll.scrollbar,
|
|
53
|
+
"&:hover": {
|
|
54
|
+
opacity: 1
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
vertical: {
|
|
58
|
+
right: 0,
|
|
59
|
+
bottom: `${t}px`,
|
|
60
|
+
top: 0,
|
|
61
|
+
width: `${t}px`
|
|
62
|
+
},
|
|
63
|
+
horizontal: {
|
|
64
|
+
left: 0,
|
|
65
|
+
bottom: 0,
|
|
66
|
+
right: `${t}px`,
|
|
67
|
+
height: `${t}px`
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
thumb: {
|
|
71
|
+
default: {
|
|
72
|
+
position: "absolute",
|
|
73
|
+
cursor: "pointer",
|
|
74
|
+
pointerEvents: "auto",
|
|
75
|
+
background: n.neutral["grey.80"],
|
|
76
|
+
backgroundClip: "content-box",
|
|
77
|
+
boxSizing: "border-box"
|
|
78
|
+
},
|
|
79
|
+
vertical: {
|
|
80
|
+
right: 0,
|
|
81
|
+
bottom: 0,
|
|
82
|
+
top: 0,
|
|
83
|
+
width: `${t}px`,
|
|
84
|
+
minHeight: i.md,
|
|
85
|
+
transition: o.transitions.scroll.thumb
|
|
86
|
+
},
|
|
87
|
+
horizontal: {
|
|
88
|
+
left: 0,
|
|
89
|
+
right: 0,
|
|
90
|
+
bottom: 0,
|
|
91
|
+
height: `${t}px`,
|
|
92
|
+
minWidth: i.md,
|
|
93
|
+
transition: o.transitions.scroll.thumb
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
};
|
|
97
|
+
export {
|
|
98
|
+
m as scroll
|
|
99
|
+
};
|
package/tokens/search.js
CHANGED
|
@@ -1 +1,45 @@
|
|
|
1
|
-
|
|
1
|
+
import { spacing as r } from "./spacing.js";
|
|
2
|
+
import { colors as i } from "./colors.js";
|
|
3
|
+
import { flexAlignItems as o, display as e } from "./display.js";
|
|
4
|
+
const a = {
|
|
5
|
+
default: {},
|
|
6
|
+
input: {
|
|
7
|
+
default: {
|
|
8
|
+
width: "100%",
|
|
9
|
+
boxSizing: "border-box"
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
dropdownHeader: {
|
|
13
|
+
row: {},
|
|
14
|
+
link: {
|
|
15
|
+
default: {},
|
|
16
|
+
typography: {}
|
|
17
|
+
},
|
|
18
|
+
icon: {}
|
|
19
|
+
},
|
|
20
|
+
renderer: {
|
|
21
|
+
row: {
|
|
22
|
+
width: "100%",
|
|
23
|
+
padding: `${r.md} ${r.md} 0`
|
|
24
|
+
},
|
|
25
|
+
link: {
|
|
26
|
+
display: e.flex,
|
|
27
|
+
alignItems: o.center,
|
|
28
|
+
"&:after": {
|
|
29
|
+
borderBottom: "none"
|
|
30
|
+
},
|
|
31
|
+
"& svg": {
|
|
32
|
+
marginLeft: r.md
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
linkIcon: {
|
|
36
|
+
fill: i.icon.primary.active,
|
|
37
|
+
name: "arrowRight",
|
|
38
|
+
width: 10,
|
|
39
|
+
height: 10
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
};
|
|
43
|
+
export {
|
|
44
|
+
a as search
|
|
45
|
+
};
|
package/tokens/searchModal.js
CHANGED
|
@@ -1 +1,159 @@
|
|
|
1
|
-
|
|
1
|
+
import { getSpacing as t } from "./utils.js";
|
|
2
|
+
import { typography as r } from "./typography.js";
|
|
3
|
+
import { icon as n } from "./icon.js";
|
|
4
|
+
import { flexAlignItems as a, display as o } from "./display.js";
|
|
5
|
+
import { cursors as m } from "./cursors.js";
|
|
6
|
+
import { font as c } from "./font.js";
|
|
7
|
+
import { colors as e } from "./colors.js";
|
|
8
|
+
import { calculateJustify as f } from "../utils/layout.js";
|
|
9
|
+
import { ButtonVariant as d } from "../types/button.js";
|
|
10
|
+
import { FlexDirection as l } from "../types/layout.js";
|
|
11
|
+
import { get as s } from "../utils/helpers.js";
|
|
12
|
+
import { SizeVariant as p } from "../types/common.js";
|
|
13
|
+
import { TypographyVariant as i } from "../types/typography.js";
|
|
14
|
+
const z = {
|
|
15
|
+
default: {},
|
|
16
|
+
wrapper: {
|
|
17
|
+
padding: `${t(4)} ${t(3)}`,
|
|
18
|
+
overflowY: "auto"
|
|
19
|
+
},
|
|
20
|
+
input: {
|
|
21
|
+
default: {
|
|
22
|
+
'& input[type="search"]': {
|
|
23
|
+
padding: `${t(3)} 0 ${t(3)} ${t(7)}`,
|
|
24
|
+
height: "54px",
|
|
25
|
+
fontSize: c.size[i.Body2],
|
|
26
|
+
"&::placeholder": {
|
|
27
|
+
color: s(e, ["neutral", "grey.60"])
|
|
28
|
+
},
|
|
29
|
+
"&::-webkit-search-cancel-button": {
|
|
30
|
+
appearance: o.none
|
|
31
|
+
},
|
|
32
|
+
"&::-ms-clear": {
|
|
33
|
+
display: o.none
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
endIcon: {
|
|
38
|
+
margin: `0 ${t(3)} 0 0`,
|
|
39
|
+
padding: t(2),
|
|
40
|
+
cursor: m.pointer
|
|
41
|
+
},
|
|
42
|
+
icons: {
|
|
43
|
+
close: {
|
|
44
|
+
name: "cross",
|
|
45
|
+
width: 12,
|
|
46
|
+
height: 12
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
loader: {
|
|
51
|
+
default: {
|
|
52
|
+
display: o.flex,
|
|
53
|
+
flexDirection: l.Column,
|
|
54
|
+
gap: t(2)
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
items: {
|
|
58
|
+
default: {
|
|
59
|
+
display: o.flex,
|
|
60
|
+
flexDirection: l.Column
|
|
61
|
+
},
|
|
62
|
+
newSearchBtn: {
|
|
63
|
+
styles: {
|
|
64
|
+
textAlign: "left",
|
|
65
|
+
color: e.text.default,
|
|
66
|
+
padding: `${t(2)} ${t(4)}`,
|
|
67
|
+
...r[i.Body2],
|
|
68
|
+
".gd-button__content": {
|
|
69
|
+
justifyContent: a.start
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
attrs: {
|
|
73
|
+
variant: d.Text
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
noResult: {
|
|
77
|
+
display: o.flex,
|
|
78
|
+
flexDirection: l.Row,
|
|
79
|
+
alignItems: a.center,
|
|
80
|
+
gap: t(2),
|
|
81
|
+
padding: `${t(2)} ${t(4)}`,
|
|
82
|
+
color: e.text.caption,
|
|
83
|
+
...r[i.Body2]
|
|
84
|
+
},
|
|
85
|
+
groupTitle: {
|
|
86
|
+
textAlign: "left",
|
|
87
|
+
padding: `${t(2)} ${t(4)}`,
|
|
88
|
+
color: e.text.caption,
|
|
89
|
+
...r[i.Body2]
|
|
90
|
+
},
|
|
91
|
+
item: {
|
|
92
|
+
styles: {
|
|
93
|
+
textAlign: "left",
|
|
94
|
+
gap: t(2),
|
|
95
|
+
padding: `${t()} ${t(4)}`,
|
|
96
|
+
color: e.text.default,
|
|
97
|
+
".gd-button__content": {
|
|
98
|
+
display: o.block
|
|
99
|
+
},
|
|
100
|
+
...r[i.Body2]
|
|
101
|
+
},
|
|
102
|
+
attrs: {
|
|
103
|
+
variant: d.Text
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
itemRow: {
|
|
107
|
+
alignItems: a.center,
|
|
108
|
+
justifyContent: f("between"),
|
|
109
|
+
gap: t(2),
|
|
110
|
+
flexWrap: "noWrap"
|
|
111
|
+
},
|
|
112
|
+
itemColumn: {
|
|
113
|
+
gap: t(0.5),
|
|
114
|
+
minWidth: 0,
|
|
115
|
+
flexWrap: "noWrap"
|
|
116
|
+
},
|
|
117
|
+
itemContent: {
|
|
118
|
+
default: {},
|
|
119
|
+
title: {
|
|
120
|
+
flex: 1,
|
|
121
|
+
minWidth: 0,
|
|
122
|
+
whiteSpace: "nowrap",
|
|
123
|
+
textOverflow: "ellipsis",
|
|
124
|
+
overflow: "hidden"
|
|
125
|
+
},
|
|
126
|
+
description: {
|
|
127
|
+
flex: 1,
|
|
128
|
+
minWidth: 0,
|
|
129
|
+
whiteSpace: "nowrap",
|
|
130
|
+
textOverflow: "ellipsis",
|
|
131
|
+
overflow: "hidden",
|
|
132
|
+
color: e.text.caption
|
|
133
|
+
},
|
|
134
|
+
date: {
|
|
135
|
+
flex: "0 0",
|
|
136
|
+
whiteSpace: "nowrap",
|
|
137
|
+
color: e.text.caption
|
|
138
|
+
}
|
|
139
|
+
},
|
|
140
|
+
icons: {
|
|
141
|
+
newChat: {
|
|
142
|
+
name: "edit",
|
|
143
|
+
fill: e.icon.primary.default,
|
|
144
|
+
...n.size[p.Sm]
|
|
145
|
+
},
|
|
146
|
+
noResults: {
|
|
147
|
+
name: "search",
|
|
148
|
+
...n.size[p.Sm]
|
|
149
|
+
},
|
|
150
|
+
item: {
|
|
151
|
+
fill: e.icon.primary.default,
|
|
152
|
+
...n.size[p.Sm]
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
};
|
|
157
|
+
export {
|
|
158
|
+
z as searchModal
|
|
159
|
+
};
|