@mailstep/design-system 0.6.2-beta.1 → 0.6.2-beta.3
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/package.json +1 -1
- package/ui/Blocks/CommonGrid/CommonGrid.js +38 -33
- package/ui/Blocks/CommonGrid/CommonGridContainer.js +33 -28
- package/ui/Blocks/CommonGrid/HoC/withReduxActions.js +10 -8
- package/ui/Blocks/CommonGrid/StandardButtons.js +20 -11
- package/ui/Blocks/CommonGrid/components/ActionHead/ActionHead.js +26 -21
- package/ui/Blocks/CommonGrid/components/ActionHead/components/ActionDropdownMenu.js +13 -8
- package/ui/Blocks/CommonGrid/components/ActionHead/components/ActionDropdownSelect.js +48 -20
- package/ui/Blocks/CommonGrid/components/ActionHead/index.js +7 -2
- package/ui/Blocks/CommonGrid/components/BooleanSelect/BooleanSelect.js +15 -10
- package/ui/Blocks/CommonGrid/components/BooleanSelect/index.js +7 -2
- package/ui/Blocks/CommonGrid/components/ButtonMore/ButtonMore.js +19 -14
- package/ui/Blocks/CommonGrid/components/ButtonMore/index.js +7 -2
- package/ui/Blocks/CommonGrid/components/ColumnFilterCell.js +22 -17
- package/ui/Blocks/CommonGrid/components/ColumnTitle/ColumnTitle.js +50 -22
- package/ui/Blocks/CommonGrid/components/ColumnTitle/index.js +7 -2
- package/ui/Blocks/CommonGrid/components/ColumnTitle.js +13 -8
- package/ui/Blocks/CommonGrid/components/ControlButtons/ControlButtons.js +38 -9
- package/ui/Blocks/CommonGrid/components/ControlButtons/index.js +7 -2
- package/ui/Blocks/CommonGrid/components/DataCell.js +18 -13
- package/ui/Blocks/CommonGrid/components/DataRow.js +35 -30
- package/ui/Blocks/CommonGrid/components/DatePickerRange/DatePickerRange.js +59 -31
- package/ui/Blocks/CommonGrid/components/DatePickerRange/index.js +7 -2
- package/ui/Blocks/CommonGrid/components/DatePickerRange/utils/sameDate.js +5 -1
- package/ui/Blocks/CommonGrid/components/ExtraControlButtons/ExtraControlButtons.js +41 -12
- package/ui/Blocks/CommonGrid/components/ExtraControlButtons/index.js +7 -2
- package/ui/Blocks/CommonGrid/components/FilterDropdown.js +13 -8
- package/ui/Blocks/CommonGrid/components/FilterRow.js +20 -15
- package/ui/Blocks/CommonGrid/components/FloatingButton/FloatingButton.js +23 -17
- package/ui/Blocks/CommonGrid/components/FloatingButton/index.js +7 -2
- package/ui/Blocks/CommonGrid/components/GridSelect/GridSelect.js +15 -10
- package/ui/Blocks/CommonGrid/components/GridSelect/index.js +7 -2
- package/ui/Blocks/CommonGrid/components/GroupRow.js +15 -10
- package/ui/Blocks/CommonGrid/components/HeadCell.js +19 -14
- package/ui/Blocks/CommonGrid/components/HeadRow.js +45 -17
- package/ui/Blocks/CommonGrid/components/IconList/IconList.js +18 -12
- package/ui/Blocks/CommonGrid/components/IconList/index.js +7 -2
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/ManageColumnForm.js +14 -12
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/components/ActionRow.js +24 -17
- package/ui/Blocks/CommonGrid/components/ManageColumnForm/index.js +7 -2
- package/ui/Blocks/CommonGrid/components/NumberRange/NumberRange.js +28 -23
- package/ui/Blocks/CommonGrid/components/NumberRange/index.js +7 -2
- package/ui/Blocks/CommonGrid/components/NumberRange/types.js +2 -1
- package/ui/Blocks/CommonGrid/components/OversizedScroll.js +39 -11
- package/ui/Blocks/CommonGrid/components/ReadEditButtonCell/ReadEditButtonCell.js +12 -10
- package/ui/Blocks/CommonGrid/components/ReadEditButtonCell/index.js +7 -2
- package/ui/Blocks/CommonGrid/components/Resize.js +12 -7
- package/ui/Blocks/CommonGrid/components/Table.js +37 -9
- package/ui/Blocks/CommonGrid/components/TablePagination/TablePagination.js +40 -12
- package/ui/Blocks/CommonGrid/components/TablePagination/index.js +7 -2
- package/ui/Blocks/CommonGrid/components/TextRange/TextRange.js +36 -30
- package/ui/Blocks/CommonGrid/components/TextRange/index.js +7 -2
- package/ui/Blocks/CommonGrid/components/TextRange/types.js +2 -1
- package/ui/Blocks/CommonGrid/components/gridCells/BoolIcon.js +41 -12
- package/ui/Blocks/CommonGrid/components/gridCells/ButtonInCell.js +11 -4
- package/ui/Blocks/CommonGrid/components/gridCells/Date.js +13 -6
- package/ui/Blocks/CommonGrid/components/gridCells/DateTime.js +13 -6
- package/ui/Blocks/CommonGrid/components/gridCells/EnumInCell.js +16 -9
- package/ui/Blocks/CommonGrid/components/gridCells/HoverBubble.js +15 -8
- package/ui/Blocks/CommonGrid/components/gridCells/IconButtonInCell.js +15 -8
- package/ui/Blocks/CommonGrid/components/gridCells/ImageCell.js +16 -9
- package/ui/Blocks/CommonGrid/components/gridCells/LinkInCell.js +9 -3
- package/ui/Blocks/CommonGrid/components/gridCells/RemoveItem.js +18 -11
- package/ui/Blocks/CommonGrid/components/gridCells/RowActionsCell.js +20 -13
- package/ui/Blocks/CommonGrid/components/gridCells/StringJoin.js +12 -5
- package/ui/Blocks/CommonGrid/components/gridCells/SwitchInCell.js +11 -4
- package/ui/Blocks/CommonGrid/components/gridCells/ToggleCell.js +40 -10
- package/ui/Blocks/CommonGrid/components/gridCells/index.js +31 -14
- package/ui/Blocks/CommonGrid/components/icons/Edit.js +5 -3
- package/ui/Blocks/CommonGrid/components/icons/EyeOpen.js +5 -3
- package/ui/Blocks/CommonGrid/components/icons/Sorting.js +8 -3
- package/ui/Blocks/CommonGrid/components/utils.js +7 -3
- package/ui/Blocks/CommonGrid/hooks/useAddFilter.js +10 -6
- package/ui/Blocks/CommonGrid/hooks/useColumnSizes.js +18 -13
- package/ui/Blocks/CommonGrid/hooks/useEditReadAsColumn.js +12 -7
- package/ui/Blocks/CommonGrid/hooks/useFloatingButton.js +5 -3
- package/ui/Blocks/CommonGrid/hooks/useGetGridHeight.js +11 -9
- package/ui/Blocks/CommonGrid/hooks/useGridActionTrigger.js +14 -7
- package/ui/Blocks/CommonGrid/hooks/useManageColumn.js +8 -6
- package/ui/Blocks/CommonGrid/hooks/useRowsKeyControls.js +8 -3
- package/ui/Blocks/CommonGrid/hooks/useToggleAllCheckbox.js +8 -4
- package/ui/Blocks/CommonGrid/hooks/useUxReset.js +9 -4
- package/ui/Blocks/CommonGrid/index.js +51 -10
- package/ui/Blocks/CommonGrid/store/index.js +86 -77
- package/ui/Blocks/CommonGrid/store/migrateState.js +3 -1
- package/ui/Blocks/CommonGrid/storybook/stories/complexWithPaginationAndRedux.stories.js +24 -17
- package/ui/Blocks/CommonGrid/storybook/stories/default.stories.js +19 -12
- package/ui/Blocks/CommonGrid/storybook/stories/loading.stories.js +15 -8
- package/ui/Blocks/CommonGrid/storybook/stories/manyColumnsNoScrollLayout.stories.js +15 -8
- package/ui/Blocks/CommonGrid/storybook/stories/manyColumnsNormalLayout.stories.js +15 -8
- package/ui/Blocks/CommonGrid/storybook/stories/styledCommonGrid.stories.js +19 -12
- package/ui/Blocks/CommonGrid/storybook/stories/withCustomGridActions.stories.js +17 -10
- package/ui/Blocks/CommonGrid/storybook/stories/withForcedCheckboxes.stories.js +19 -12
- package/ui/Blocks/CommonGrid/storybook/utils/actions.js +11 -4
- package/ui/Blocks/CommonGrid/storybook/utils/columnDefinition.js +17 -11
- package/ui/Blocks/CommonGrid/storybook/utils/linguiContainer.js +10 -6
- package/ui/Blocks/CommonGrid/storybook/utils/utils.js +35 -26
- package/ui/Blocks/CommonGrid/storybook/utils/withRedux.js +17 -10
- package/ui/Blocks/CommonGrid/storybook/utils/withRouter.js +6 -4
- package/ui/Blocks/CommonGrid/storybook/utils/withTheme.js +3 -1
- package/ui/Blocks/CommonGrid/styles.js +39 -10
- package/ui/Blocks/CommonGrid/translations.js +5 -3
- package/ui/Blocks/CommonGrid/types.js +6 -3
- package/ui/Blocks/CommonGrid/utils/index.js +40 -23
- package/ui/Blocks/CornerDialog/CornerDialog.js +15 -11
- package/ui/Blocks/CornerDialog/index.js +4 -2
- package/ui/Blocks/CornerDialog/stories/CornerDialog.stories.js +10 -7
- package/ui/Blocks/CornerDialog/styles.js +35 -9
- package/ui/Blocks/CornerDialog/types.js +2 -1
- package/ui/Blocks/CornerDialog/utils.js +5 -2
- package/ui/Blocks/HidePrint/HidePrint.js +10 -5
- package/ui/Blocks/ImageList/ImageList.js +42 -15
- package/ui/Blocks/ImageList/components/AddPhoto/index.js +11 -7
- package/ui/Blocks/ImageList/components/AddPhoto/styles.js +29 -3
- package/ui/Blocks/ImageList/components/CloseButton/index.js +9 -5
- package/ui/Blocks/ImageList/components/CloseButton/styles.js +29 -3
- package/ui/Blocks/ImageList/components/ImageElement/index.js +11 -7
- package/ui/Blocks/ImageList/components/ImageElement/styles.js +29 -3
- package/ui/Blocks/ImageList/components/ImageTag/index.js +12 -5
- package/ui/Blocks/ImageList/components/ImageTag/styles.js +8 -2
- package/ui/Blocks/ImageList/index.js +4 -2
- package/ui/Blocks/ImageList/stories/ImageList.stories.js +9 -6
- package/ui/Blocks/ImageList/styles.js +8 -2
- package/ui/Blocks/ImageList/types.js +2 -1
- package/ui/Blocks/LightBox/LightBox.js +15 -8
- package/ui/Blocks/LightBox/hooks/useLightBox.js +9 -5
- package/ui/Blocks/LightBox/index.js +7 -3
- package/ui/Blocks/LightBox/stories/LightBox.stories.js +7 -4
- package/ui/Blocks/LightBox/styles.js +11 -5
- package/ui/Blocks/LightBox/types.js +2 -1
- package/ui/Blocks/Modal/Modal.js +20 -17
- package/ui/Blocks/Modal/hooks/useClickOutside.js +10 -6
- package/ui/Blocks/Modal/hooks/useModal.js +10 -6
- package/ui/Blocks/Modal/index.js +9 -4
- package/ui/Blocks/Modal/stories/Modal.stories.js +48 -42
- package/ui/Blocks/Modal/styles.js +46 -20
- package/ui/Blocks/Modal/types.js +2 -1
- package/ui/Blocks/Modal/utils.js +4 -1
- package/ui/Blocks/Popover/index.js +15 -10
- package/ui/Blocks/Tabs/TabContent.js +5 -1
- package/ui/Blocks/Tabs/Tabs.js +14 -10
- package/ui/Blocks/Tabs/hooks/useTabs.js +8 -4
- package/ui/Blocks/Tabs/index.js +9 -4
- package/ui/Blocks/Tabs/stories/Tabs.stories.js +9 -6
- package/ui/Blocks/Tabs/styles.js +34 -8
- package/ui/Blocks/Tabs/types.js +2 -1
- package/ui/Elements/Alert/Alert.d.ts +1 -1
- package/ui/Elements/Alert/Alert.js +12 -10
- package/ui/Elements/Alert/index.js +9 -3
- package/ui/Elements/Alert/stories/Alert.stories.js +14 -11
- package/ui/Elements/Alert/styles.js +20 -14
- package/ui/Elements/Alert/types.js +2 -1
- package/ui/Elements/Avatar/Avatar.js +14 -7
- package/ui/Elements/Avatar/index.js +7 -3
- package/ui/Elements/Avatar/stories/Avatar.stories.js +8 -5
- package/ui/Elements/Avatar/types.js +2 -1
- package/ui/Elements/Badge/Badge.js +38 -13
- package/ui/Elements/Badge/index.js +9 -3
- package/ui/Elements/Badge/stories/Badge.stories.js +11 -5
- package/ui/Elements/BorderedBox/BorderedBox.d.ts +1 -1
- package/ui/Elements/BorderedBox/BorderedBox.js +30 -5
- package/ui/Elements/BorderedBox/index.js +9 -3
- package/ui/Elements/BorderedBox/stories/BorderedBox.stories.js +7 -4
- package/ui/Elements/BorderedBox/types.js +2 -1
- package/ui/Elements/Button/Button.d.ts +1 -1
- package/ui/Elements/Button/Button.js +7 -5
- package/ui/Elements/Button/index.d.ts +1 -1
- package/ui/Elements/Button/index.js +9 -3
- package/ui/Elements/Button/stories/Button.stories.js +16 -13
- package/ui/Elements/Button/styles.js +14 -8
- package/ui/Elements/Button/types.js +2 -1
- package/ui/Elements/Card/Card.js +20 -14
- package/ui/Elements/Card/index.js +12 -3
- package/ui/Elements/Card/stories/Card.stories.js +11 -8
- package/ui/Elements/Card/stories/CardComponent.stories.js +12 -6
- package/ui/Elements/Card/styles.js +38 -12
- package/ui/Elements/Card/types.js +2 -1
- package/ui/Elements/DatePicker/DatePicker.js +53 -25
- package/ui/Elements/DatePicker/Datetime/DateTime.d.ts +1 -1
- package/ui/Elements/DatePicker/Datetime/DateTime.js +31 -26
- package/ui/Elements/DatePicker/Datetime/components/Timepicker.js +47 -20
- package/ui/Elements/DatePicker/Datetime/components/ViewNavigation.js +6 -3
- package/ui/Elements/DatePicker/Datetime/types.js +2 -1
- package/ui/Elements/DatePicker/Datetime/views/DaysView.js +18 -13
- package/ui/Elements/DatePicker/Datetime/views/MonthsView.js +14 -9
- package/ui/Elements/DatePicker/Datetime/views/YearsView.js +14 -9
- package/ui/Elements/DatePicker/index.js +7 -2
- package/ui/Elements/DatePicker/styles.js +29 -3
- package/ui/Elements/Dropdown/Dropdown.d.ts +1 -1
- package/ui/Elements/Dropdown/Dropdown.js +15 -10
- package/ui/Elements/Dropdown/index.js +9 -3
- package/ui/Elements/Dropdown/stories/Dropdown.stories.js +10 -4
- package/ui/Elements/Dropdown/types.js +2 -1
- package/ui/Elements/DropdownMenu/DropdownMenu.d.ts +1 -1
- package/ui/Elements/DropdownMenu/DropdownMenu.js +15 -8
- package/ui/Elements/DropdownMenu/components/DefaultItem.js +32 -7
- package/ui/Elements/DropdownMenu/components/MenuItem.js +15 -10
- package/ui/Elements/DropdownMenu/components/MenuList.js +10 -5
- package/ui/Elements/DropdownMenu/index.js +5 -1
- package/ui/Elements/DropdownMenu/types.js +2 -1
- package/ui/Elements/DropdownSelect/DropdownSelect.js +50 -21
- package/ui/Elements/DropdownSelect/index.js +10 -3
- package/ui/Elements/ErrorMessage/ErrorMessage.d.ts +1 -1
- package/ui/Elements/ErrorMessage/ErrorMessage.js +34 -9
- package/ui/Elements/ErrorMessage/index.js +9 -3
- package/ui/Elements/ErrorMessage/stories/ErrorMessage.stories.js +11 -5
- package/ui/Elements/ErrorMessage/types.js +2 -1
- package/ui/Elements/HighlightBox/HighlightBox.js +38 -12
- package/ui/Elements/HighlightBox/index.js +7 -2
- package/ui/Elements/Icon/BadgeIcon.d.ts +1 -1
- package/ui/Elements/Icon/BadgeIcon.js +17 -10
- package/ui/Elements/Icon/Icon.d.ts +1 -1
- package/ui/Elements/Icon/Icon.js +245 -216
- package/ui/Elements/Icon/icons/AddPhoto.js +6 -2
- package/ui/Elements/Icon/icons/BarcodeScan.js +6 -2
- package/ui/Elements/Icon/icons/Box.js +6 -2
- package/ui/Elements/Icon/icons/Calendar.js +6 -2
- package/ui/Elements/Icon/icons/Cancel.js +6 -2
- package/ui/Elements/Icon/icons/CheckedBox.js +6 -2
- package/ui/Elements/Icon/icons/Company.js +6 -2
- package/ui/Elements/Icon/icons/Complaint.js +6 -2
- package/ui/Elements/Icon/icons/Consolidation.js +6 -2
- package/ui/Elements/Icon/icons/Dispatch.js +6 -2
- package/ui/Elements/Icon/icons/EmptyRack.js +6 -2
- package/ui/Elements/Icon/icons/Expeditions.js +6 -2
- package/ui/Elements/Icon/icons/FlagCZ.js +6 -2
- package/ui/Elements/Icon/icons/FlagEL.js +6 -2
- package/ui/Elements/Icon/icons/FlagESP.js +6 -2
- package/ui/Elements/Icon/icons/FlagITA.js +6 -2
- package/ui/Elements/Icon/icons/FlagRUS.js +6 -2
- package/ui/Elements/Icon/icons/FlagSVK.js +6 -2
- package/ui/Elements/Icon/icons/FlagUSA.js +6 -2
- package/ui/Elements/Icon/icons/Gift.js +6 -2
- package/ui/Elements/Icon/icons/Group.js +6 -2
- package/ui/Elements/Icon/icons/HamburgerMenu.js +6 -2
- package/ui/Elements/Icon/icons/HelpCircle1.js +6 -2
- package/ui/Elements/Icon/icons/ImagePlaceholder.js +6 -2
- package/ui/Elements/Icon/icons/Income.js +6 -2
- package/ui/Elements/Icon/icons/Info.js +6 -2
- package/ui/Elements/Icon/icons/Integrations.js +6 -2
- package/ui/Elements/Icon/icons/Inventory.js +6 -2
- package/ui/Elements/Icon/icons/Inventory2.js +6 -2
- package/ui/Elements/Icon/icons/Link.js +6 -2
- package/ui/Elements/Icon/icons/Location.js +6 -2
- package/ui/Elements/Icon/icons/Logout1.js +6 -2
- package/ui/Elements/Icon/icons/MakePhoto.js +6 -2
- package/ui/Elements/Icon/icons/MenuItems.js +6 -2
- package/ui/Elements/Icon/icons/MobileCancel.js +6 -2
- package/ui/Elements/Icon/icons/Notification2.js +6 -2
- package/ui/Elements/Icon/icons/OpenBox.js +6 -2
- package/ui/Elements/Icon/icons/Plus1.js +6 -2
- package/ui/Elements/Icon/icons/Print.js +6 -2
- package/ui/Elements/Icon/icons/Product.js +6 -2
- package/ui/Elements/Icon/icons/Products.js +6 -2
- package/ui/Elements/Icon/icons/Profile.js +6 -2
- package/ui/Elements/Icon/icons/Puzzle1.js +6 -2
- package/ui/Elements/Icon/icons/QRCode.js +6 -2
- package/ui/Elements/Icon/icons/Rack.js +6 -2
- package/ui/Elements/Icon/icons/Return.js +6 -2
- package/ui/Elements/Icon/icons/Rows.js +6 -2
- package/ui/Elements/Icon/icons/Settings2.js +6 -2
- package/ui/Elements/Icon/icons/ShoppingBag.js +6 -2
- package/ui/Elements/Icon/icons/ThreeDots.js +6 -2
- package/ui/Elements/Icon/icons/Transfer.js +6 -2
- package/ui/Elements/Icon/icons/Truck.js +6 -2
- package/ui/Elements/Icon/icons/TwoBoxes.js +6 -2
- package/ui/Elements/Icon/icons/TwoCheckedBoxes.js +6 -2
- package/ui/Elements/Icon/icons/TwoUsers.js +6 -2
- package/ui/Elements/Icon/icons/index.js +114 -55
- package/ui/Elements/Icon/index.js +26 -5
- package/ui/Elements/Icon/stories/BadgeIcon.stories.js +12 -6
- package/ui/Elements/Icon/stories/Icon.stories.js +12 -9
- package/ui/Elements/Icon/types.js +2 -1
- package/ui/Elements/Image/Image.d.ts +1 -1
- package/ui/Elements/Image/Image.js +6 -4
- package/ui/Elements/Image/index.js +9 -3
- package/ui/Elements/Image/stories/Image.stories.js +15 -9
- package/ui/Elements/Image/types.js +2 -1
- package/ui/Elements/Label/Label.js +35 -9
- package/ui/Elements/Label/index.js +8 -3
- package/ui/Elements/Label/stories/Label.stories.js +8 -5
- package/ui/Elements/Line/Line.d.ts +1 -1
- package/ui/Elements/Line/Line.js +10 -5
- package/ui/Elements/Line/index.js +9 -3
- package/ui/Elements/Line/stories/Line.stories.js +16 -10
- package/ui/Elements/Line/types.js +2 -1
- package/ui/Elements/Link/Link.js +39 -14
- package/ui/Elements/Link/index.js +9 -3
- package/ui/Elements/Link/stories/Link.stories.js +13 -10
- package/ui/Elements/Logo/Logo.d.ts +1 -1
- package/ui/Elements/Logo/Logo.js +30 -25
- package/ui/Elements/Logo/index.js +9 -3
- package/ui/Elements/Logo/stories/Logo.stories.js +24 -18
- package/ui/Elements/Logo/types.js +2 -1
- package/ui/Elements/MultiSelect/MultiSelect.js +9 -4
- package/ui/Elements/MultiSelect/index.js +7 -2
- package/ui/Elements/Pagination/Pagination.js +9 -7
- package/ui/Elements/Pagination/index.js +9 -3
- package/ui/Elements/Pagination/stories/Pagination.stories.js +8 -5
- package/ui/Elements/Pagination/styled.js +41 -12
- package/ui/Elements/Portal/index.js +14 -7
- package/ui/Elements/ProgressBar/ProgressBar.js +6 -4
- package/ui/Elements/ProgressBar/index.js +9 -3
- package/ui/Elements/ProgressBar/stories/ProgressBar.stories.js +12 -6
- package/ui/Elements/ProgressBar/styles.js +38 -12
- package/ui/Elements/Select/Select.js +25 -20
- package/ui/Elements/Select/index.js +7 -2
- package/ui/Elements/Select/styles.js +13 -7
- package/ui/Elements/Select/themes/CustomComponents.js +72 -37
- package/ui/Elements/Select/themes/baseStyles.js +12 -6
- package/ui/Elements/Select/themes/formStyles.js +27 -23
- package/ui/Elements/Select/themes/index.js +20 -16
- package/ui/Elements/Select/types.js +2 -1
- package/ui/Elements/SimpleLink/SimpleLink.js +31 -6
- package/ui/Elements/SimpleLink/index.js +9 -3
- package/ui/Elements/SingleSelect/SingleSelect.js +32 -27
- package/ui/Elements/SingleSelect/index.js +7 -2
- package/ui/Elements/SpaceAround/SpaceAround.d.ts +1 -1
- package/ui/Elements/SpaceAround/SpaceAround.js +36 -11
- package/ui/Elements/SpaceAround/index.js +9 -3
- package/ui/Elements/SpaceAround/stories/SpaceAround.stories.js +8 -5
- package/ui/Elements/SpaceAround/types.js +2 -1
- package/ui/Elements/Spinner/Spinner.d.ts +1 -1
- package/ui/Elements/Spinner/Spinner.js +12 -8
- package/ui/Elements/Spinner/index.js +9 -3
- package/ui/Elements/Spinner/stories/Spinner.stories.js +16 -13
- package/ui/Elements/Spinner/styles.js +33 -7
- package/ui/Elements/Spinner/types.js +2 -1
- package/ui/Elements/Tag/Tag.js +31 -6
- package/ui/Elements/Tag/index.js +10 -3
- package/ui/Elements/Tag/palletes.js +4 -1
- package/ui/Elements/Tag/stories/Tag.stories.js +21 -15
- package/ui/Elements/Tag/stories/components/predefinedTags.js +11 -6
- package/ui/Elements/Tag/types.js +2 -1
- package/ui/Elements/Text/Text.js +6 -4
- package/ui/Elements/Text/index.js +8 -2
- package/ui/Elements/Text/stories/Text.stories.js +15 -9
- package/ui/Elements/Text/types.js +2 -1
- package/ui/Elements/Toast/Toast.js +15 -10
- package/ui/Elements/Toast/index.js +9 -3
- package/ui/Elements/Toggle/Toggle.d.ts +1 -1
- package/ui/Elements/Toggle/Toggle.js +38 -13
- package/ui/Elements/Toggle/index.js +9 -3
- package/ui/Elements/Toggle/stories/Toggle.stories.js +13 -7
- package/ui/Elements/Toggle/types.js +2 -1
- package/ui/Elements/Typography/Typography.js +44 -28
- package/ui/Elements/Typography/index.js +19 -3
- package/ui/Elements/Typography/stories/Typography.stories.js +18 -15
- package/ui/Forms/Checkbox/Checkbox.js +11 -9
- package/ui/Forms/Checkbox/index.js +9 -3
- package/ui/Forms/Checkbox/stories/Checkbox.stories.js +13 -7
- package/ui/Forms/Checkbox/styles.js +32 -6
- package/ui/Forms/Checkbox/types.js +2 -1
- package/ui/Forms/Input/Input.js +20 -16
- package/ui/Forms/Input/index.js +6 -3
- package/ui/Forms/Input/stories/Input.stories.js +14 -11
- package/ui/Forms/Input/styles.js +46 -20
- package/ui/Forms/Input/types.js +2 -1
- package/ui/Forms/RadioButton/RadioButton.js +8 -6
- package/ui/Forms/RadioButton/index.js +9 -3
- package/ui/Forms/RadioButton/stories/RadioButton.stories.js +13 -7
- package/ui/Forms/RadioButton/styles.js +13 -7
- package/ui/Forms/RadioButton/types.js +2 -1
- package/ui/Forms/TextArea/TextArea.js +13 -8
- package/ui/Forms/TextArea/index.js +7 -2
- package/ui/Forms/TextArea/styles.js +39 -13
- package/ui/System/Fonts/index.js +14 -9
- package/ui/ThemeProvider/ThemeProvider.js +13 -7
- package/ui/ThemeProvider/index.js +25 -5
- package/ui/ThemeProvider/themes/default.js +3 -1
- package/ui/ThemeProvider/themes/index.js +12 -7
- package/ui/ThemeProvider/themes/light.js +3 -1
- package/ui/ThemeProvider/themes/mailwise.js +3 -1
- package/ui/ThemeProvider/types.js +2 -1
- package/ui/index.js +146 -85
- package/ui/utils/CreateRgba/createRgba.js +12 -5
- package/ui/utils/CreateRgba/types.js +2 -1
- package/ui/utils/KeyPress/KeyPress.js +6 -4
- package/ui/utils/KeyPress/KeyPress.stories.js +12 -6
- package/ui/utils/KeyPress/index.js +7 -2
- package/ui/utils/KeyPress/types.js +2 -1
- package/ui/utils/index.js +13 -6
- package/ui/index.cjs.js +0 -3878
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
var __assign = (this && this.__assign) || function () {
|
|
2
3
|
__assign = Object.assign || function(t) {
|
|
3
4
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
|
|
|
9
10
|
};
|
|
10
11
|
return __assign.apply(this, arguments);
|
|
11
12
|
};
|
|
12
|
-
|
|
13
|
-
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.Link = void 0;
|
|
15
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
16
|
+
var Link = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: "18", height: "13", viewBox: "0 0 18 13", fill: "none", stroke: "#DB2B19", xmlns: "http://www.w3.org/2000/svg" }, props, { children: [(0, jsx_runtime_1.jsx)("path", { d: "M6.78947 7.94736H9.10526C11.0237 7.94736 12.5789 6.39215 12.5789 4.47368V4.47368C12.5789 2.55522 11.0237 1 9.10526 1H4.47368C2.55522 1 1 2.55522 1 4.47368V5.05263C1 6.65135 2.29602 7.94736 3.89474 7.94736V7.94736", strokeWidth: "1.5" }), (0, jsx_runtime_1.jsx)("path", { d: "M10.842 5.05264H8.52623C6.60777 5.05264 5.05255 6.60786 5.05255 8.52633V8.52633C5.05255 10.4448 6.60777 12 8.52623 12H13.1578C15.0763 12 16.6315 10.4448 16.6315 8.52633V7.94738C16.6315 6.34866 15.3355 5.05264 13.7368 5.05264V5.05264", strokeWidth: "1.5" })] }))); };
|
|
17
|
+
exports.Link = Link;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
var __assign = (this && this.__assign) || function () {
|
|
2
3
|
__assign = Object.assign || function(t) {
|
|
3
4
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
|
|
|
9
10
|
};
|
|
10
11
|
return __assign.apply(this, arguments);
|
|
11
12
|
};
|
|
12
|
-
|
|
13
|
-
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.Location = void 0;
|
|
15
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
16
|
+
var Location = function (props) { return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: "14", height: "18", viewBox: "0 0 14 18", fill: "#FAFBFC", xmlns: "http://www.w3.org/2000/svg" }, props, { children: (0, jsx_runtime_1.jsx)("path", { d: "M11.8125 6.75C11.8125 3.95508 9.54492 1.6875 6.75 1.6875C3.95508 1.6875 1.6875 3.95508 1.6875 6.75C1.6875 7.18594 1.8457 7.86094 2.22539 8.76094C2.59453 9.63281 3.11836 10.5961 3.71953 11.5699C4.72148 13.1941 5.88164 14.7621 6.75 15.8801C7.62187 14.7621 8.78203 13.1941 9.78047 11.5699C10.3816 10.5961 10.9055 9.63281 11.2746 8.76094C11.6543 7.86094 11.8125 7.18594 11.8125 6.75ZM13.5 6.75C13.5 9.82266 9.38672 15.293 7.5832 17.55C7.15078 18.0879 6.34922 18.0879 5.9168 17.55C4.11328 15.293 0 9.82266 0 6.75C0 3.02344 3.02344 0 6.75 0C10.4766 0 13.5 3.02344 13.5 6.75ZM7.875 6.75C7.875 6.45163 7.75647 6.16548 7.5455 5.95451C7.33452 5.74353 7.04837 5.625 6.75 5.625C6.45163 5.625 6.16548 5.74353 5.9545 5.95451C5.74353 6.16548 5.625 6.45163 5.625 6.75C5.625 7.04837 5.74353 7.33452 5.9545 7.5455C6.16548 7.75647 6.45163 7.875 6.75 7.875C7.04837 7.875 7.33452 7.75647 7.5455 7.5455C7.75647 7.33452 7.875 7.04837 7.875 6.75ZM3.9375 6.75C3.9375 6.00408 4.23382 5.28871 4.76126 4.76126C5.28871 4.23382 6.00408 3.9375 6.75 3.9375C7.49592 3.9375 8.21129 4.23382 8.73874 4.76126C9.26618 5.28871 9.5625 6.00408 9.5625 6.75C9.5625 7.49592 9.26618 8.21129 8.73874 8.73874C8.21129 9.26618 7.49592 9.5625 6.75 9.5625C6.00408 9.5625 5.28871 9.26618 4.76126 8.73874C4.23382 8.21129 3.9375 7.49592 3.9375 6.75Z" }) }))); };
|
|
17
|
+
exports.Location = Location;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
var __assign = (this && this.__assign) || function () {
|
|
2
3
|
__assign = Object.assign || function(t) {
|
|
3
4
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
|
|
|
9
10
|
};
|
|
10
11
|
return __assign.apply(this, arguments);
|
|
11
12
|
};
|
|
12
|
-
|
|
13
|
-
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.Logout1 = void 0;
|
|
15
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
16
|
+
var Logout1 = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", stroke: "#374151" }, props, { children: [(0, jsx_runtime_1.jsx)("path", { d: "M15.016 7.38951V6.45652C15.016 4.42151 13.366 2.77151 11.331 2.77151H6.45597C4.42197 2.77151 2.77197 4.42151 2.77197 6.45652V17.5865C2.77197 19.6215 4.42197 21.2715 6.45597 21.2715H11.341C13.37 21.2715 15.016 19.6265 15.016 17.5975V16.6545", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M21.8095 12.0214H9.76849", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M18.8812 9.10632L21.8092 12.0213L18.8812 14.9373", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })] }))); };
|
|
17
|
+
exports.Logout1 = Logout1;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
var __assign = (this && this.__assign) || function () {
|
|
2
3
|
__assign = Object.assign || function(t) {
|
|
3
4
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
|
|
|
9
10
|
};
|
|
10
11
|
return __assign.apply(this, arguments);
|
|
11
12
|
};
|
|
12
|
-
|
|
13
|
-
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.MakePhoto = void 0;
|
|
15
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
16
|
+
var MakePhoto = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", stroke: "#22394E", xmlns: "http://www.w3.org/2000/svg" }, props, { children: [(0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M17.6377 7.10987C17.2647 7.10987 16.9267 6.89487 16.7677 6.55887C16.4807 5.95087 16.1157 5.17387 15.8997 4.75087C15.5807 4.12187 15.0637 3.75587 14.3477 3.75087C14.3357 3.74987 9.66376 3.74987 9.65176 3.75087C8.93576 3.75587 8.41976 4.12187 8.09976 4.75087C7.88476 5.17387 7.51976 5.95087 7.23276 6.55887C7.07376 6.89487 6.73476 7.10987 6.36276 7.10987C4.36676 7.10987 2.74976 8.72687 2.74976 10.7219L2.74976 16.6579C2.74976 18.6519 4.36676 20.2699 6.36276 20.2699L17.6377 20.2699C19.6327 20.2699 21.2497 18.6519 21.2497 16.6579L21.2497 10.7219C21.2497 8.72687 19.6327 7.10987 17.6377 7.10987Z", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M8.82139 13.3345C8.82039 15.0875 10.2514 16.5215 12.0014 16.5205C13.7484 16.5185 15.1754 15.0905 15.1784 13.3415C15.1814 11.5855 13.7554 10.1545 12.0034 10.1525C10.2414 10.1505 8.80739 11.6055 8.82139 13.3345Z", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M16.5392 9.80995L16.5392 9.80995L16.54 9.80805C16.571 9.73747 16.5999 9.69016 16.6574 9.63231C16.7068 9.59037 16.7521 9.56032 16.8148 9.5318C17.0023 9.46148 17.2237 9.51198 17.3508 9.63902L17.3508 9.63903L17.3534 9.64159C17.3735 9.66141 17.3933 9.68463 17.4102 9.70806C17.4226 9.72528 17.4311 9.73931 17.4363 9.74872L17.4511 9.7867L17.4553 9.79744L17.46 9.80798C17.486 9.8665 17.5 9.9322 17.5 10.0005C17.5 10.1214 17.4561 10.2419 17.3488 10.3579C17.2703 10.4349 17.169 10.4834 17.06 10.4964L17.0002 10.4994L16.9431 10.4965C16.9056 10.4917 16.8609 10.4809 16.7989 10.4565C16.7374 10.4284 16.6907 10.3971 16.6427 10.3492C16.5483 10.2468 16.5 10.1205 16.5 10.0005C16.5 9.93165 16.5142 9.86606 16.5392 9.80995ZM16.0823 9.60681C16.1368 9.48285 16.2014 9.37829 16.3182 9.26456L16.0823 9.60681Z", fill: "#200E32" })] }))); };
|
|
17
|
+
exports.MakePhoto = MakePhoto;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
var __assign = (this && this.__assign) || function () {
|
|
2
3
|
__assign = Object.assign || function(t) {
|
|
3
4
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
|
|
|
9
10
|
};
|
|
10
11
|
return __assign.apply(this, arguments);
|
|
11
12
|
};
|
|
12
|
-
|
|
13
|
-
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.MenuItems = void 0;
|
|
15
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
16
|
+
var MenuItems = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: "24", height: "24", viewBox: "0 0 24 24", fill: "#42526E" }, props, { children: [(0, jsx_runtime_1.jsx)("rect", { x: "24", y: "24", width: "24", height: "24", rx: "5.4", transform: "rotate(180 24 24)" }), (0, jsx_runtime_1.jsx)("g", { clipPath: "url(#clip0_334_574)", children: (0, jsx_runtime_1.jsx)("path", { d: "M16.95 12.124L9.72446 12.124M9.72446 12.124L12.8211 9.59512M9.72446 12.124L12.8211 14.653", stroke: "#A3B3C1", strokeWidth: "0.9", strokeLinecap: "round" }) }), (0, jsx_runtime_1.jsx)("defs", { children: (0, jsx_runtime_1.jsx)("clipPath", { id: "clip0_334_574", children: (0, jsx_runtime_1.jsx)("rect", { width: "13.2", height: "13.2", fill: "white", transform: "matrix(-1 0 0 -1 18.6 18.6)" }) }) })] }))); };
|
|
17
|
+
exports.MenuItems = MenuItems;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
var __assign = (this && this.__assign) || function () {
|
|
2
3
|
__assign = Object.assign || function(t) {
|
|
3
4
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
|
|
|
9
10
|
};
|
|
10
11
|
return __assign.apply(this, arguments);
|
|
11
12
|
};
|
|
12
|
-
|
|
13
|
-
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.MobileCancel = void 0;
|
|
15
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
16
|
+
var MobileCancel = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: "36", height: "36", viewBox: "0 0 36 36", fill: "none" }, props, { children: [(0, jsx_runtime_1.jsx)("rect", { width: "36", height: "36", rx: "18", fill: "neutral20" }), (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M23.5181 13.5128C23.811 13.2199 23.811 12.745 23.5181 12.4521C23.2252 12.1592 22.7503 12.1592 22.4574 12.4521L18.4851 16.4245L14.5127 12.4521C14.2198 12.1592 13.7449 12.1592 13.452 12.4521C13.1591 12.745 13.1591 13.2199 13.452 13.5128L17.4244 17.4851L13.452 21.4575C13.1591 21.7504 13.1591 22.2253 13.452 22.5182C13.7449 22.8111 14.2198 22.8111 14.5127 22.5182L18.4851 18.5458L22.4574 22.5182C22.7503 22.8111 23.2252 22.8111 23.5181 22.5182C23.811 22.2253 23.811 21.7504 23.5181 21.4575L19.5457 17.4851L23.5181 13.5128Z", fill: "#111D27" })] }))); };
|
|
17
|
+
exports.MobileCancel = MobileCancel;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
var __assign = (this && this.__assign) || function () {
|
|
2
3
|
__assign = Object.assign || function(t) {
|
|
3
4
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
|
|
|
9
10
|
};
|
|
10
11
|
return __assign.apply(this, arguments);
|
|
11
12
|
};
|
|
12
|
-
|
|
13
|
-
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.Notification2 = void 0;
|
|
15
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
16
|
+
var Notification2 = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", stroke: "#22394E" }, props, { children: [(0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5.00068 13.701V13.5208C5.02713 12.9875 5.19814 12.4709 5.49606 12.0241C5.99194 11.4874 6.3314 10.8297 6.47882 10.12C6.47882 9.57143 6.47882 9.01507 6.52676 8.46655C6.77445 5.8258 9.38717 4 11.968 4H12.0319C14.6126 4 17.2253 5.8258 17.481 8.46655C17.5289 9.01507 17.481 9.57143 17.5209 10.12C17.6703 10.8313 18.0095 11.491 18.5037 12.0319C18.8038 12.4748 18.9751 12.9896 18.9991 13.5208V13.6932C19.017 14.4095 18.7701 15.1081 18.304 15.66C17.6881 16.3054 16.8523 16.7068 15.9549 16.7884C13.3234 17.0705 10.6684 17.0705 8.03686 16.7884C7.14047 16.7033 6.30592 16.3024 5.68782 15.66C5.22894 15.1077 4.98537 14.4133 5.00068 13.701Z", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M10 19C10.415 19.5457 11.0244 19.899 11.6934 19.9815C12.3624 20.0639 13.0358 19.8689 13.5645 19.4395C13.7271 19.3125 13.8734 19.1648 14 19", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })] }))); };
|
|
17
|
+
exports.Notification2 = Notification2;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
var __assign = (this && this.__assign) || function () {
|
|
2
3
|
__assign = Object.assign || function(t) {
|
|
3
4
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
|
|
|
9
10
|
};
|
|
10
11
|
return __assign.apply(this, arguments);
|
|
11
12
|
};
|
|
12
|
-
|
|
13
|
-
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.OpenBox = void 0;
|
|
15
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
16
|
+
var OpenBox = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: "47", height: "47", viewBox: "0 0 47 47", fill: "none", stroke: "#22394E", xmlns: "http://www.w3.org/2000/svg" }, props, { children: [(0, jsx_runtime_1.jsx)("rect", { x: "7", y: "22", width: "33", height: "19", rx: "1.92557", strokeWidth: "2.88835" }), (0, jsx_runtime_1.jsx)("rect", { width: "37", height: "9", rx: "1.92557", transform: "matrix(1 0 0 -1 5 18)", strokeWidth: "2.88835" }), (0, jsx_runtime_1.jsx)("line", { x1: "15", y1: "29.5558", x2: "33", y2: "29.5558", strokeWidth: "2.88835" })] }))); };
|
|
17
|
+
exports.OpenBox = OpenBox;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
var __assign = (this && this.__assign) || function () {
|
|
2
3
|
__assign = Object.assign || function(t) {
|
|
3
4
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
|
|
|
9
10
|
};
|
|
10
11
|
return __assign.apply(this, arguments);
|
|
11
12
|
};
|
|
12
|
-
|
|
13
|
-
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.Plus1 = void 0;
|
|
15
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
16
|
+
var Plus1 = function (props) { return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: "20", height: "20", viewBox: "0 0 20 20", fill: "none" }, props, { children: (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M10 5C10.5523 5 11 5.44772 11 6V9H14C14.5523 9 15 9.44772 15 10C15 10.5523 14.5523 11 14 11H11V14C11 14.5523 10.5523 15 10 15C9.44771 15 9 14.5523 9 14V11H6C5.44772 11 5 10.5523 5 10C5 9.44771 5.44772 9 6 9H9V6C9 5.44772 9.44771 5 10 5Z", fill: "white" }) }))); };
|
|
17
|
+
exports.Plus1 = Plus1;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
var __assign = (this && this.__assign) || function () {
|
|
2
3
|
__assign = Object.assign || function(t) {
|
|
3
4
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
|
|
|
9
10
|
};
|
|
10
11
|
return __assign.apply(this, arguments);
|
|
11
12
|
};
|
|
12
|
-
|
|
13
|
-
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.Print = void 0;
|
|
15
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
16
|
+
var Print = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: "24", height: "24", viewBox: "0 0 24 24", stroke: "#22394E", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props, { children: [(0, jsx_runtime_1.jsx)("path", { d: "M17 17H19C20.1046 17 21 16.1046 21 15L21 11C21 9.89543 20.1046 9 19 9L5 9C3.89543 9 3 9.89543 3 11L3 15C3 16.1046 3.89543 17 5 17H7M9 21L15 21C16.1046 21 17 20.1046 17 19V15C17 13.8954 16.1046 13 15 13H9C7.89543 13 7 13.8954 7 15L7 19C7 20.1046 7.89543 21 9 21ZM17 9V5C17 3.89543 16.1046 3 15 3L9 3C7.89543 3 7 3.89543 7 5L7 9L17 9Z", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("rect", { x: "17", y: "11", width: "2", height: "1" }), (0, jsx_runtime_1.jsx)("rect", { x: "9.25", y: "15.25", width: "5.5", height: "0.5", strokeWidth: "0.5" }), (0, jsx_runtime_1.jsx)("rect", { x: "9.25", y: "18.25", width: "5.5", height: "0.5", strokeWidth: "0.5" })] }))); };
|
|
17
|
+
exports.Print = Print;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
var __assign = (this && this.__assign) || function () {
|
|
2
3
|
__assign = Object.assign || function(t) {
|
|
3
4
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
|
|
|
9
10
|
};
|
|
10
11
|
return __assign.apply(this, arguments);
|
|
11
12
|
};
|
|
12
|
-
|
|
13
|
-
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.Product = void 0;
|
|
15
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
16
|
+
var Product = function (props) { return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: "43", height: "32", viewBox: "0 0 43 32", stroke: "black", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props, { children: (0, jsx_runtime_1.jsx)("path", { d: "M5.88054 9.67078V28.466C5.88054 29.5294 6.74264 30.3916 7.80611 30.3916H21.8425M37.2723 9.04288V9.67078V28.466C37.2723 29.5295 36.4102 30.3916 35.3468 30.3916H21.8425M37.2723 9.04288H39.1538C40.5328 9.04288 41.4648 7.63584 40.9268 6.36613L39.3661 2.68243C39.0645 1.97052 38.3663 1.50806 37.5931 1.50806H21.8425M37.2723 9.04288H26.3103C25.5371 9.04288 24.8389 8.58042 24.5373 7.86851L21.8425 1.50806M21.8425 1.50806L5.2093 1.50806C4.34742 1.50806 3.59051 2.08079 3.35623 2.91021L2.31575 6.59391C1.96867 7.82272 2.89193 9.04288 4.16882 9.04288H17.3747C18.1478 9.04288 18.846 8.58042 19.1477 7.86851L21.8425 1.50806ZM21.8425 1.50806V16.5777M21.8425 21.6009V30.3916M10.1371 25.3683H14.3936M10.1371 20.3451H16.7879", strokeWidth: "2.88835" }) }))); };
|
|
17
|
+
exports.Product = Product;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
var __assign = (this && this.__assign) || function () {
|
|
2
3
|
__assign = Object.assign || function(t) {
|
|
3
4
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
|
|
|
9
10
|
};
|
|
10
11
|
return __assign.apply(this, arguments);
|
|
11
12
|
};
|
|
12
|
-
|
|
13
|
-
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.Products = void 0;
|
|
15
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
16
|
+
var Products = function (props) { return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: "22", height: "22", viewBox: "0 0 22 22", fill: "none", stroke: "#A3B3C1" }, props, { children: (0, jsx_runtime_1.jsx)("path", { d: "M3.08945 7.41522V16.2C3.08945 16.6971 3.49239 17.1 3.98945 17.1H10.55M17.7618 7.12174V7.41522V16.2C17.7618 16.6971 17.3589 17.1 16.8618 17.1H10.55M17.7618 7.12174H18.6412C19.2857 7.12174 19.7213 6.4641 19.4699 5.87064L18.7404 4.1489C18.5995 3.81616 18.2731 3.60001 17.9117 3.60001H10.55M17.7618 7.12174H12.6382C12.2768 7.12174 11.9505 6.90559 11.8095 6.57285L10.55 3.60001M10.55 3.60001L2.77571 3.60001C2.37288 3.60001 2.0191 3.8677 1.9096 4.25537L1.42329 5.97711C1.26106 6.55145 1.69259 7.12174 2.2894 7.12174H8.46174C8.82312 7.12174 9.14945 6.90559 9.29043 6.57285L10.55 3.60001ZM10.55 3.60001V10.6435M10.55 12.9913V17.1", strokeWidth: "1.35" }) }))); };
|
|
17
|
+
exports.Products = Products;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
var __assign = (this && this.__assign) || function () {
|
|
2
3
|
__assign = Object.assign || function(t) {
|
|
3
4
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
|
|
|
9
10
|
};
|
|
10
11
|
return __assign.apply(this, arguments);
|
|
11
12
|
};
|
|
12
|
-
|
|
13
|
-
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.Profile = void 0;
|
|
15
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
16
|
+
var Profile = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: "22", height: "22", viewBox: "0 0 22 22", fill: "none", stroke: "#22394E" }, props, { children: [(0, jsx_runtime_1.jsx)("path", { d: "M10.614 11.0514C13.0329 11.0514 14.9939 9.09045 14.9939 6.67152C14.9939 4.25259 13.0329 2.29166 10.614 2.29166C8.19506 2.29166 6.23413 4.25259 6.23413 6.67152C6.23413 9.09045 8.19506 11.0514 10.614 11.0514Z", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3.66664 17.1429C3.66546 16.835 3.73432 16.5309 3.86801 16.2535C4.28754 15.4145 5.4706 14.9698 6.4523 14.7684C7.1603 14.6173 7.87807 14.5163 8.60028 14.4664C9.93736 14.3489 11.2822 14.3489 12.6193 14.4664C13.3415 14.517 14.0592 14.6179 14.7674 14.7684C15.749 14.9698 16.9321 15.3725 17.3516 16.2535C17.6205 16.8189 17.6205 17.4753 17.3516 18.0407C16.9321 18.9217 15.749 19.3244 14.7674 19.5175C14.0602 19.6748 13.3421 19.7785 12.6193 19.8279C11.5311 19.9202 10.4377 19.9369 9.34702 19.8783C9.09532 19.8783 8.85199 19.8783 8.60028 19.8279C7.8802 19.7792 7.16492 19.6754 6.46069 19.5175C5.4706 19.3244 4.29593 18.9217 3.86801 18.0407C3.73501 17.7601 3.66621 17.4534 3.66664 17.1429Z", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })] }))); };
|
|
17
|
+
exports.Profile = Profile;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
var __assign = (this && this.__assign) || function () {
|
|
2
3
|
__assign = Object.assign || function(t) {
|
|
3
4
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
|
|
|
9
10
|
};
|
|
10
11
|
return __assign.apply(this, arguments);
|
|
11
12
|
};
|
|
12
|
-
|
|
13
|
-
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.Puzzle1 = void 0;
|
|
15
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
16
|
+
var Puzzle1 = function (props) { return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", stroke: "#374151" }, props, { children: (0, jsx_runtime_1.jsx)("path", { d: "M11 4C11 2.89543 11.8954 2 13 2C14.1046 2 15 2.89543 15 4V5C15 5.55228 15.4477 6 16 6H19C19.5523 6 20 6.44772 20 7V10C20 10.5523 19.5523 11 19 11H18C16.8954 11 16 11.8954 16 13C16 14.1046 16.8954 15 18 15H19C19.5523 15 20 15.4477 20 16V19C20 19.5523 19.5523 20 19 20H16C15.4477 20 15 19.5523 15 19V18C15 16.8954 14.1046 16 13 16C11.8954 16 11 16.8954 11 18V19C11 19.5523 10.5523 20 10 20H7C6.44772 20 6 19.5523 6 19V16C6 15.4477 5.55228 15 5 15H4C2.89543 15 2 14.1046 2 13C2 11.8954 2.89543 11 4 11H5C5.55228 11 6 10.5523 6 10V7C6 6.44772 6.44772 6 7 6H10C10.5523 6 11 5.55228 11 5V4Z", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }) }))); };
|
|
17
|
+
exports.Puzzle1 = Puzzle1;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
var __assign = (this && this.__assign) || function () {
|
|
2
3
|
__assign = Object.assign || function(t) {
|
|
3
4
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
|
|
|
9
10
|
};
|
|
10
11
|
return __assign.apply(this, arguments);
|
|
11
12
|
};
|
|
12
|
-
|
|
13
|
-
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.QRCode = void 0;
|
|
15
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
16
|
+
var QRCode = function (props) { return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: "72", height: "72", viewBox: "0 0 72 72", fill: "none", stroke: "#7A90A1", xmlns: "http://www.w3.org/2000/svg" }, props, { children: (0, jsx_runtime_1.jsx)("path", { d: "M36 12V15M54 48H60M42 48H36V60M36 27V36M36 36H36.03M36 36H48.03M48 60H60M12 36H24M60 36H60.03M15 24H21C22.6568 24 24 22.6568 24 21V15C24 13.3432 22.6568 12 21 12H15C13.3432 12 12 13.3432 12 15V21C12 22.6568 13.3432 24 15 24ZM51 24H57C58.6569 24 60 22.6568 60 21V15C60 13.3432 58.6569 12 57 12H51C49.3431 12 48 13.3432 48 15V21C48 22.6568 49.3431 24 51 24ZM15 60H21C22.6568 60 24 58.6569 24 57V51C24 49.3431 22.6568 48 21 48H15C13.3432 48 12 49.3431 12 51V57C12 58.6569 13.3432 60 15 60Z", strokeWidth: "5", strokeLinecap: "round", strokeLinejoin: "round" }) }))); };
|
|
17
|
+
exports.QRCode = QRCode;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
var __assign = (this && this.__assign) || function () {
|
|
2
3
|
__assign = Object.assign || function(t) {
|
|
3
4
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
|
|
|
9
10
|
};
|
|
10
11
|
return __assign.apply(this, arguments);
|
|
11
12
|
};
|
|
12
|
-
|
|
13
|
-
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.Rack = void 0;
|
|
15
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
16
|
+
var Rack = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: "36", height: "34", viewBox: "0 0 36 34", fill: "none", stroke: "#22394E", xmlns: "http://www.w3.org/2000/svg" }, props, { children: [(0, jsx_runtime_1.jsx)("path", { d: "M1.5 2L1.5 32", strokeWidth: "2.88835", strokeLinecap: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M34.5 29L2.5 29", strokeWidth: "2.88835", strokeLinecap: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M34.5 17L2.5 17", strokeWidth: "2.88835", strokeLinecap: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M11.5 25H5.5", strokeWidth: "2.88835", strokeLinecap: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M11.5 21H5.5", strokeWidth: "2.88835", strokeLinecap: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M30.5 13H24.5", strokeWidth: "2.88835", strokeLinecap: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M30.5 9H24.5", strokeWidth: "2.88835", strokeLinecap: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M30.5 25H24.5", strokeWidth: "2.88835", strokeLinecap: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M11.5 12H5.5", strokeWidth: "2.88835", strokeLinecap: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M34.5 7L34.5 32", strokeWidth: "2.88835", strokeLinecap: "round" })] }))); };
|
|
17
|
+
exports.Rack = Rack;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
var __assign = (this && this.__assign) || function () {
|
|
2
3
|
__assign = Object.assign || function(t) {
|
|
3
4
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
|
|
|
9
10
|
};
|
|
10
11
|
return __assign.apply(this, arguments);
|
|
11
12
|
};
|
|
12
|
-
|
|
13
|
-
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.Return = void 0;
|
|
15
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
16
|
+
var Return = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: "22", height: "22", viewBox: "0 0 22 22", fill: "none", stroke: "#A3B3C1" }, props, { children: [(0, jsx_runtime_1.jsx)("path", { d: "M6 8.78947V13.7105L11.1 15.5M6 8.78947L11.1 10.5789M6 8.78947L11.1 7L16.2 8.34211M11.1 15.5V10.5789M11.1 15.5L16.2 13.7105V8.34211M11.1 10.5789L16.2 8.34211", strokeWidth: "1.35" }), (0, jsx_runtime_1.jsx)("path", { d: "M2 11C2 15.9706 6.02944 20 11 20C15.9706 20 20 15.9706 20 11C20 6.02944 15.9706 2 11 2C9.14985 2 6.5 3 5 4.5M5 4.5L5.5 1M5 4.5L8.5 5", strokeWidth: "1.35" })] }))); };
|
|
17
|
+
exports.Return = Return;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
var __assign = (this && this.__assign) || function () {
|
|
2
3
|
__assign = Object.assign || function(t) {
|
|
3
4
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
|
|
|
9
10
|
};
|
|
10
11
|
return __assign.apply(this, arguments);
|
|
11
12
|
};
|
|
12
|
-
|
|
13
|
-
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.Rows = void 0;
|
|
15
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
16
|
+
var Rows = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: "18", height: "18", viewBox: "0 0 18 18", fill: "none", stroke: "#22394E", xmlns: "http://www.w3.org/2000/svg" }, props, { children: [(0, jsx_runtime_1.jsx)("path", { d: "M14.25 2.25H3.75C2.92157 2.25 2.25 2.47386 2.25 2.75V6.25C2.25 6.52614 2.92157 6.75 3.75 6.75H14.25C15.0784 6.75 15.75 6.52614 15.75 6.25V2.75C15.75 2.47386 15.0784 2.25 14.25 2.25Z", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M5 15.2222L5 9.77778C5 9.34822 4.85076 9 4.66667 9L2.33333 9C2.14924 9 2 9.34822 2 9.77778L2 15.2222C2 15.6518 2.14924 16 2.33333 16L4.66667 16C4.85076 16 5 15.6518 5 15.2222Z", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M10.5 15L10.5 9.75C10.5 9.33579 10.3508 9 10.1667 9L7.83333 9C7.64924 9 7.5 9.33579 7.5 9.75L7.5 15C7.5 15.4142 7.64924 15.75 7.83333 15.75L10.1667 15.75C10.3508 15.75 10.5 15.4142 10.5 15Z", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M16 15.2222L16 9.77778C16 9.34822 15.8508 9 15.6667 9L13.3333 9C13.1492 9 13 9.34822 13 9.77778L13 15.2222C13 15.6518 13.1492 16 13.3333 16L15.6667 16C15.8508 16 16 15.6518 16 15.2222Z", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })] }))); };
|
|
17
|
+
exports.Rows = Rows;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
var __assign = (this && this.__assign) || function () {
|
|
2
3
|
__assign = Object.assign || function(t) {
|
|
3
4
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
|
|
|
9
10
|
};
|
|
10
11
|
return __assign.apply(this, arguments);
|
|
11
12
|
};
|
|
12
|
-
|
|
13
|
-
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.Settings2 = void 0;
|
|
15
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
16
|
+
var Settings2 = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: "22", height: "22", viewBox: "0 0 22 22", fill: "none", stroke: "#A3B3C1" }, props, { children: [(0, jsx_runtime_1.jsxs)("g", { clipPath: "url(#clip0_7_1622)", children: [(0, jsx_runtime_1.jsx)("path", { d: "M11 13.75C12.5188 13.75 13.75 12.5188 13.75 11C13.75 9.48122 12.5188 8.25 11 8.25C9.48122 8.25 8.25 9.48122 8.25 11C8.25 12.5188 9.48122 13.75 11 13.75Z", strokeWidth: "1.35", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M17.7833 13.75C17.6613 14.0265 17.6249 14.3332 17.6788 14.6305C17.7327 14.9279 17.8745 15.2023 18.0858 15.4183L18.1408 15.4733C18.3112 15.6436 18.4465 15.8458 18.5387 16.0684C18.631 16.2909 18.6785 16.5295 18.6785 16.7704C18.6785 17.0113 18.631 17.2499 18.5387 17.4725C18.4465 17.695 18.3112 17.8972 18.1408 18.0675C17.9705 18.238 17.7683 18.3732 17.5458 18.4654C17.3232 18.5577 17.0846 18.6052 16.8437 18.6052C16.6028 18.6052 16.3642 18.5577 16.1417 18.4654C15.9191 18.3732 15.7169 18.238 15.5466 18.0675L15.4916 18.0125C15.2756 17.8012 15.0012 17.6594 14.7038 17.6055C14.4065 17.5516 14.0998 17.588 13.8233 17.71C13.5522 17.8262 13.3209 18.0191 13.1581 18.2651C12.9952 18.511 12.9078 18.7992 12.9066 19.0942V19.25C12.9066 19.7362 12.7135 20.2025 12.3697 20.5464C12.0258 20.8902 11.5595 21.0833 11.0733 21.0833C10.5871 21.0833 10.1207 20.8902 9.77693 20.5464C9.43311 20.2025 9.23996 19.7362 9.23996 19.25V19.1675C9.23286 18.8641 9.13465 18.5698 8.95809 18.323C8.78154 18.0761 8.5348 17.8881 8.24996 17.7833C7.97348 17.6613 7.66678 17.6249 7.36942 17.6788C7.07206 17.7328 6.79766 17.8745 6.58163 18.0858L6.52663 18.1408C6.35636 18.3113 6.15416 18.4465 5.9316 18.5388C5.70904 18.631 5.47047 18.6785 5.22954 18.6785C4.98861 18.6785 4.75005 18.631 4.52749 18.5388C4.30492 18.4465 4.10273 18.3113 3.93246 18.1408C3.762 17.9706 3.62678 17.7684 3.53452 17.5458C3.44226 17.3232 3.39477 17.0847 3.39477 16.8438C3.39477 16.6028 3.44226 16.3643 3.53452 16.1417C3.62678 15.9191 3.762 15.7169 3.93246 15.5467L3.98746 15.4917C4.19878 15.2756 4.34055 15.0012 4.39446 14.7039C4.44838 14.4065 4.41198 14.0998 4.28996 13.8233C4.17376 13.5522 3.98082 13.321 3.73489 13.1581C3.48895 12.9953 3.20076 12.9078 2.90579 12.9067H2.74996C2.26373 12.9067 1.79741 12.7135 1.4536 12.3697C1.10978 12.0259 0.916626 11.5596 0.916626 11.0733C0.916626 10.5871 1.10978 10.1208 1.4536 9.77698C1.79741 9.43316 2.26373 9.24 2.74996 9.24H2.83246C3.13587 9.23291 3.43013 9.1347 3.67698 8.95814C3.92384 8.78158 4.11187 8.53485 4.21663 8.25C4.33865 7.97352 4.37505 7.66683 4.32113 7.36947C4.26721 7.0721 4.12545 6.79771 3.91413 6.58167L3.85913 6.52667C3.68867 6.3564 3.55344 6.15421 3.46118 5.93165C3.36892 5.70908 3.32143 5.47052 3.32143 5.22959C3.32143 4.98866 3.36892 4.75009 3.46118 4.52753C3.55344 4.30497 3.68867 4.10277 3.85913 3.9325C4.02939 3.76205 4.23159 3.62682 4.45415 3.53456C4.67672 3.4423 4.91528 3.39481 5.15621 3.39481C5.39714 3.39481 5.6357 3.4423 5.85827 3.53456C6.08083 3.62682 6.28303 3.76205 6.45329 3.9325L6.50829 3.9875C6.72433 4.19883 6.99872 4.34059 7.29609 4.39451C7.59345 4.44843 7.90014 4.41203 8.17663 4.29H8.24996C8.52108 4.17381 8.75231 3.98086 8.91518 3.73493C9.07805 3.489 9.16545 3.20081 9.16663 2.90584V2.75001C9.16663 2.26377 9.35978 1.79746 9.7036 1.45364C10.0474 1.10983 10.5137 0.916672 11 0.916672C11.4862 0.916672 11.9525 1.10983 12.2963 1.45364C12.6401 1.79746 12.8333 2.26377 12.8333 2.75001V2.8325C12.8345 3.12748 12.9219 3.41567 13.0847 3.6616C13.2476 3.90753 13.4788 4.10047 13.75 4.21667C14.0264 4.33869 14.3331 4.37509 14.6305 4.32118C14.9279 4.26726 15.2023 4.1255 15.4183 3.91417L15.4733 3.85917C15.6436 3.68871 15.8458 3.55349 16.0683 3.46123C16.2909 3.36897 16.5294 3.32148 16.7704 3.32148C17.0113 3.32148 17.2499 3.36897 17.4724 3.46123C17.695 3.55349 17.8972 3.68871 18.0675 3.85917C18.2379 4.02944 18.3731 4.23163 18.4654 4.4542C18.5577 4.67676 18.6052 4.91533 18.6052 5.15625C18.6052 5.39718 18.5577 5.63575 18.4654 5.85831C18.3731 6.08088 18.2379 6.28307 18.0675 6.45334L18.0125 6.50834C17.8011 6.72438 17.6594 6.99877 17.6055 7.29613C17.5515 7.59349 17.5879 7.90019 17.71 8.17667V8.25C17.8262 8.52113 18.0191 8.75235 18.265 8.91522C18.511 9.07809 18.7992 9.16549 19.0941 9.16667H19.25C19.7362 9.16667 20.2025 9.35983 20.5463 9.70364C20.8901 10.0475 21.0833 10.5138 21.0833 11C21.0833 11.4862 20.8901 11.9526 20.5463 12.2964C20.2025 12.6402 19.7362 12.8333 19.25 12.8333H19.1675C18.8725 12.8345 18.5843 12.9219 18.3384 13.0848C18.0924 13.2477 17.8995 13.4789 17.7833 13.75Z", strokeWidth: "1.35", strokeLinecap: "round", strokeLinejoin: "round" })] }), (0, jsx_runtime_1.jsx)("defs", { children: (0, jsx_runtime_1.jsx)("clipPath", { id: "clip0_7_1622", children: (0, jsx_runtime_1.jsx)("rect", { width: "22", height: "22", fill: "white" }) }) })] }))); };
|
|
17
|
+
exports.Settings2 = Settings2;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
var __assign = (this && this.__assign) || function () {
|
|
2
3
|
__assign = Object.assign || function(t) {
|
|
3
4
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
|
|
|
9
10
|
};
|
|
10
11
|
return __assign.apply(this, arguments);
|
|
11
12
|
};
|
|
12
|
-
|
|
13
|
-
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.ShoppingBag = void 0;
|
|
15
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
16
|
+
var ShoppingBag = function (props) { return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: "16", height: "16", viewBox: "0 0 16 16", fill: "none" }, props, { children: (0, jsx_runtime_1.jsx)("path", { d: "M10.667 7.33333V4.66667C10.667 3.19391 9.47306 2 8.00033 2C6.52757 2 5.33366 3.19391 5.33366 4.66667V7.33333M3.33366 6H12.667L13.3337 14H2.66699L3.33366 6Z", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }) }))); };
|
|
17
|
+
exports.ShoppingBag = ShoppingBag;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
var __assign = (this && this.__assign) || function () {
|
|
2
3
|
__assign = Object.assign || function(t) {
|
|
3
4
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
|
|
|
9
10
|
};
|
|
10
11
|
return __assign.apply(this, arguments);
|
|
11
12
|
};
|
|
12
|
-
|
|
13
|
-
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.ThreeDots = void 0;
|
|
15
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
16
|
+
var ThreeDots = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: "18", height: "18", viewBox: "0 0 18 18", stroke: "#22394E", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props, { children: [(0, jsx_runtime_1.jsx)("circle", { cx: "3.375", cy: "9", r: "1.875", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("circle", { cx: "9", cy: "9", r: "1.875", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("circle", { cx: "14.625", cy: "9", r: "1.875", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })] }))); };
|
|
17
|
+
exports.ThreeDots = ThreeDots;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
var __assign = (this && this.__assign) || function () {
|
|
2
3
|
__assign = Object.assign || function(t) {
|
|
3
4
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
|
|
|
9
10
|
};
|
|
10
11
|
return __assign.apply(this, arguments);
|
|
11
12
|
};
|
|
12
|
-
|
|
13
|
-
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.Transfer = void 0;
|
|
15
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
16
|
+
var Transfer = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: "22", height: "22", viewBox: "0 0 22 22", fill: "none", stroke: "#A3B3C1" }, props, { children: [(0, jsx_runtime_1.jsx)("path", { d: "M18.3334 14.2083L9.16671 14.2083M9.16671 14.2083L13.0953 11M9.16671 14.2083L13.0953 17.4167", strokeWidth: "1.35", strokeLinecap: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M2.75 7.79167L11.9167 7.79167M11.9167 7.79167L7.9881 11M11.9167 7.79167L7.9881 4.58333", strokeWidth: "1.35", strokeLinecap: "round" })] }))); };
|
|
17
|
+
exports.Transfer = Transfer;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
var __assign = (this && this.__assign) || function () {
|
|
2
3
|
__assign = Object.assign || function(t) {
|
|
3
4
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
|
|
|
9
10
|
};
|
|
10
11
|
return __assign.apply(this, arguments);
|
|
11
12
|
};
|
|
12
|
-
|
|
13
|
-
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.Truck = void 0;
|
|
15
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
16
|
+
var Truck = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: "16", height: "16", viewBox: "0 0 16 16", fill: "none" }, props, { children: [(0, jsx_runtime_1.jsxs)("g", { clipPath: "url(#clip0_1076_22693)", children: [(0, jsx_runtime_1.jsx)("path", { d: "M5.33268 13.6663C6.25316 13.6663 6.99935 12.9201 6.99935 11.9997C6.99935 11.0792 6.25316 10.333 5.33268 10.333C4.41221 10.333 3.66602 11.0792 3.66602 11.9997C3.66602 12.9201 4.41221 13.6663 5.33268 13.6663Z", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M12.6667 13.6663C13.5871 13.6663 14.3333 12.9201 14.3333 11.9997C14.3333 11.0792 13.5871 10.333 12.6667 10.333C11.7462 10.333 11 11.0792 11 11.9997C11 12.9201 11.7462 13.6663 12.6667 13.6663Z", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M5.66602 8.99967V2.33301H15.666V11.6663", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M0.333008 12.3333V7.66667C0.333008 6.20067 1.53367 5 2.99967 5H5.66634", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M8.33301 11.666H9.66634", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M0.333008 12.333H2.33301", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M2.66602 9.33301V8.08301C2.66602 7.67051 3.00402 7.33301 3.41602 7.33301H4.66602", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" })] }), (0, jsx_runtime_1.jsx)("defs", { children: (0, jsx_runtime_1.jsx)("clipPath", { id: "clip0_1076_22693", children: (0, jsx_runtime_1.jsx)("rect", { width: "16", height: "16", fill: "white" }) }) })] }))); };
|
|
17
|
+
exports.Truck = Truck;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
var __assign = (this && this.__assign) || function () {
|
|
2
3
|
__assign = Object.assign || function(t) {
|
|
3
4
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
|
|
|
9
10
|
};
|
|
10
11
|
return __assign.apply(this, arguments);
|
|
11
12
|
};
|
|
12
|
-
|
|
13
|
-
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.TwoBoxes = void 0;
|
|
15
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
16
|
+
var TwoBoxes = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: "19", height: "18", viewBox: "0 0 19 18", fill: "none", stroke: "#DB2B19", xmlns: "http://www.w3.org/2000/svg" }, props, { children: [(0, jsx_runtime_1.jsx)("path", { d: "M2.26316 10.5652V16.0476C2.26316 16.4158 2.56163 16.7143 2.92982 16.7143H7M11.5789 10.3789V10.5652V16.0476C11.5789 16.4158 11.2805 16.7143 10.9123 16.7143H7M11.5789 10.3789H11.9935C12.4709 10.3789 12.7936 9.89176 12.6074 9.45217L12.2249 8.54947C12.1205 8.303 11.8787 8.14288 11.6111 8.14288H7M11.5789 10.3789H8.38895C8.12126 10.3789 7.87953 10.2188 7.7751 9.97232L7 8.14288M7 8.14288L2.13602 8.14288C1.83763 8.14288 1.57557 8.34117 1.49446 8.62834L1.23949 9.53103C1.11932 9.95647 1.43897 10.3789 1.88105 10.3789H5.61105C5.87874 10.3789 6.12047 10.2188 6.2249 9.97232L7 8.14288ZM7 8.14288V12.6149M7 14.1056V16.7143", strokeWidth: "1.5" }), (0, jsx_runtime_1.jsx)("path", { d: "M16.7368 3.42236V8.90476C16.7368 9.27295 16.4384 9.57143 16.0702 9.57143H12M7.42105 3.23602V3.42236V8M7.42105 3.23602H7.00649C6.52907 3.23602 6.2064 2.74888 6.39265 2.30928L6.7751 1.40659C6.87953 1.16011 7.12126 1 7.38895 1H12M7.42105 3.23602H10.6111C10.8787 3.23602 11.1205 3.07591 11.2249 2.82943L12 1M12 1L16.864 1C17.1624 1 17.4244 1.19829 17.5055 1.48545L17.7605 2.38814C17.8807 2.81358 17.561 3.23602 17.1189 3.23602H13.3889C13.1213 3.23602 12.8795 3.07591 12.7751 2.82943L12 1ZM12 1V5", strokeWidth: "1.5" })] }))); };
|
|
17
|
+
exports.TwoBoxes = TwoBoxes;
|
|
@@ -1,2 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TwoCheckedBoxes = void 0;
|
|
4
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
+
var TwoCheckedBoxes = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", { width: "19", height: "18", viewBox: "0 0 19 18", fill: "none", stroke: "#DB2B19", xmlns: "http://www.w3.org/2000/svg", children: [(0, jsx_runtime_1.jsx)("path", { d: "M2.47368 9.82609V16.3333C2.47368 16.7015 2.77216 17 3.14035 17H8H12.6754C13.0436 17 13.3421 16.7015 13.3421 16.3333V9.82609V9.6087M13.3421 9.6087H13.9935C14.4709 9.6087 14.7936 9.12155 14.6074 8.68195L14.067 7.40659C13.9626 7.16011 13.7208 7 13.4532 7H8M13.3421 9.6087H9.54684C9.27915 9.6087 9.03743 9.44858 8.933 9.20211L8 7M8 7L2.24129 7C1.94289 7 1.68083 7.19829 1.59972 7.48545L1.23949 8.76081C1.11932 9.18625 1.43897 9.6087 1.88105 9.6087H6.45316C6.72085 9.6087 6.96257 9.44858 7.067 9.2021L8 7Z", strokeWidth: "1.5" }), (0, jsx_runtime_1.jsx)("path", { d: "M11 12L8.56753 14.3352C8.18057 14.7067 7.56943 14.7067 7.18247 14.3352L6 13.2", strokeWidth: "1.5", strokeMiterlimit: "10", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M16.7368 3.42236V8.90476C16.7368 9.27295 16.4384 9.57143 16.0702 9.57143H12M7.42105 3.23602V3.42236V8M7.42105 3.23602H7.00649C6.52907 3.23602 6.2064 2.74888 6.39265 2.30928L6.7751 1.40659C6.87953 1.16011 7.12126 1 7.38895 1H12M7.42105 3.23602H10.6111C10.8787 3.23602 11.1205 3.07591 11.2249 2.82943L12 1M12 1L16.864 1C17.1624 1 17.4244 1.19829 17.5055 1.48545L17.7605 2.38814C17.8807 2.81358 17.561 3.23602 17.1189 3.23602H13.3889C13.1213 3.23602 12.8795 3.07591 12.7751 2.82943L12 1ZM12 1V5", strokeWidth: "1.5" })] })); };
|
|
6
|
+
exports.TwoCheckedBoxes = TwoCheckedBoxes;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
var __assign = (this && this.__assign) || function () {
|
|
2
3
|
__assign = Object.assign || function(t) {
|
|
3
4
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
@@ -9,5 +10,8 @@ var __assign = (this && this.__assign) || function () {
|
|
|
9
10
|
};
|
|
10
11
|
return __assign.apply(this, arguments);
|
|
11
12
|
};
|
|
12
|
-
|
|
13
|
-
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.TwoUsers = void 0;
|
|
15
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
16
|
+
var TwoUsers = function (props) { return ((0, jsx_runtime_1.jsxs)("svg", __assign({ width: "16", height: "16", viewBox: "0 0 16 16", fill: "none" }, props, { children: [(0, jsx_runtime_1.jsx)("path", { d: "M10.6797 7.27588C11.8937 7.27588 12.8777 6.29188 12.8777 5.07788C12.8777 3.86455 11.8937 2.87988 10.6797 2.87988", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M11.6904 9.66406C12.0531 9.68873 12.4131 9.74073 12.7684 9.8194C13.2611 9.9174 13.8544 10.1194 14.0651 10.5614C14.1998 10.8447 14.1998 11.1747 14.0651 11.4581C13.8551 11.9001 13.2611 12.1021 12.7684 12.2034", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M6.39465 10.1377C8.85463 10.1377 10.956 10.5104 10.956 11.999C10.956 13.4884 8.86796 13.8737 6.39465 13.8737C3.93465 13.8737 1.83398 13.5017 1.83398 12.0124C1.83398 10.523 3.92132 10.1377 6.39465 10.1377Z", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M6.39435 8.013C4.77168 8.013 3.47168 6.71233 3.47168 5.08966C3.47168 3.46766 4.77168 2.16699 6.39435 2.16699C8.01701 2.16699 9.31768 3.46766 9.31768 5.08966C9.31768 6.71233 8.01701 8.013 6.39435 8.013Z", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })] }))); };
|
|
17
|
+
exports.TwoUsers = TwoUsers;
|