@assembly-js/design-system 2.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/.eslintrc.cjs +45 -0
- package/.github/workflows/chromatic.yml +21 -0
- package/.github/workflows/npm-publish.yml +50 -0
- package/.github/workflows/tsc.yml +32 -0
- package/.nvmrc +1 -0
- package/.prettierignore +2 -0
- package/.prettierrc.js +7 -0
- package/.storybook/main.ts +40 -0
- package/.storybook/preview.ts +11 -0
- package/.vscode/css_custom_data.json +9 -0
- package/.vscode/extensions.json +11 -0
- package/.vscode/launch.json +27 -0
- package/.vscode/settings.json +13 -0
- package/.yarn/install-state.gz +0 -0
- package/.yarn/releases/yarn-4.1.0.cjs +893 -0
- package/README.md +62 -0
- package/declarations.d.ts +1 -0
- package/dist/esm/common/ChoiceGroupLayout/ChoiceGroupLayout.js +105 -0
- package/dist/esm/common/utils.js +17 -0
- package/dist/esm/components/Avatar/Avatar.js +180 -0
- package/dist/esm/components/Avatar/UserWithCompanyAvatar.js +52 -0
- package/dist/esm/components/Breadcrumb/Breadcrumbs.js +55 -0
- package/dist/esm/components/Button/Base.js +35 -0
- package/dist/esm/components/Button/Icon.js +41 -0
- package/dist/esm/components/Button/index.js +62 -0
- package/dist/esm/components/Callout/Callout.js +101 -0
- package/dist/esm/components/Checkbox/Checkbox.js +112 -0
- package/dist/esm/components/CheckboxGroup/CheckboxGroup.js +50 -0
- package/dist/esm/components/Chip/Chip.js +148 -0
- package/dist/esm/components/Chip/ChipColorDisplay.js +15 -0
- package/dist/esm/components/Icon.js +13 -0
- package/dist/esm/components/Input/Base.js +4 -0
- package/dist/esm/components/Input/Input.js +31 -0
- package/dist/esm/components/Input/TagInput.js +72 -0
- package/dist/esm/components/Input/Textarea.js +29 -0
- package/dist/esm/components/Input/index.js +6 -0
- package/dist/esm/components/Radio/Radio.js +138 -0
- package/dist/esm/components/RadioGroup/RadioGroup.js +38 -0
- package/dist/esm/components/Search/Search.js +101 -0
- package/dist/esm/components/Spinner.js +34 -0
- package/dist/esm/components/Spinner.stories.js +22 -0
- package/dist/esm/components/Status/Status.js +65 -0
- package/dist/esm/components/Tag/Tag.js +67 -0
- package/dist/esm/components/Tag/TagImage.js +14 -0
- package/dist/esm/components/TextLink/TextLink.js +55 -0
- package/dist/esm/components/Toast/Toast.js +88 -0
- package/dist/esm/components/Toast/Toaster.js +45 -0
- package/dist/esm/components/Toast/useToast.js +170 -0
- package/dist/esm/components/Toggle/Toggle.js +84 -0
- package/dist/esm/components/Toolbar/SlashMenu.js +141 -0
- package/dist/esm/components/Toolbar/Toolbar.js +143 -0
- package/dist/esm/components/Toolbar/ToolbarContext.js +58 -0
- package/dist/esm/components/Toolbar/index.js +5 -0
- package/dist/esm/components/Toolbar/types.js +2 -0
- package/dist/esm/components/Tooltip/Tooltip.js +262 -0
- package/dist/esm/components/Typography/Base.js +66 -0
- package/dist/esm/components/Typography/Body.js +26 -0
- package/dist/esm/components/Typography/Heading.js +45 -0
- package/dist/esm/components/Typography/index.js +5 -0
- package/dist/esm/components/UserCompanySelector/LimitedOptionsList.js +28 -0
- package/dist/esm/components/UserCompanySelector/ListItem.js +56 -0
- package/dist/esm/components/UserCompanySelector/SelectedValueChip.js +47 -0
- package/dist/esm/components/UserCompanySelector/UserCompanySelector.js +374 -0
- package/dist/esm/components/UserCompanySelector/data.js +66 -0
- package/dist/esm/components/UserCompanySelector/types.js +2 -0
- package/dist/esm/icons/AI.js +13 -0
- package/dist/esm/icons/API.js +13 -0
- package/dist/esm/icons/Airtable.js +13 -0
- package/dist/esm/icons/AppSetup.js +13 -0
- package/dist/esm/icons/Archive.js +13 -0
- package/dist/esm/icons/ArrowDownSolid.js +13 -0
- package/dist/esm/icons/ArrowLeft.js +13 -0
- package/dist/esm/icons/ArrowNE.js +13 -0
- package/dist/esm/icons/ArrowRight.js +13 -0
- package/dist/esm/icons/ArrowUpSolid.js +13 -0
- package/dist/esm/icons/AssemblyLogo.js +13 -0
- package/dist/esm/icons/At.js +13 -0
- package/dist/esm/icons/Attachment.js +13 -0
- package/dist/esm/icons/Authentication.js +13 -0
- package/dist/esm/icons/Automation.js +13 -0
- package/dist/esm/icons/Bank.js +13 -0
- package/dist/esm/icons/Billing.js +13 -0
- package/dist/esm/icons/Bold.js +13 -0
- package/dist/esm/icons/Book.js +13 -0
- package/dist/esm/icons/BracketsCurly.js +13 -0
- package/dist/esm/icons/Building.js +13 -0
- package/dist/esm/icons/CSV.js +13 -0
- package/dist/esm/icons/Calendar.js +13 -0
- package/dist/esm/icons/Callout.js +13 -0
- package/dist/esm/icons/Cancel.js +13 -0
- package/dist/esm/icons/CaretDown.js +13 -0
- package/dist/esm/icons/CaretRight.js +13 -0
- package/dist/esm/icons/CaretUp.js +13 -0
- package/dist/esm/icons/Chart.js +13 -0
- package/dist/esm/icons/Check.js +13 -0
- package/dist/esm/icons/Checklist.js +13 -0
- package/dist/esm/icons/ChevronDown.js +13 -0
- package/dist/esm/icons/ChevronLeft.js +15 -0
- package/dist/esm/icons/ChevronRight.js +13 -0
- package/dist/esm/icons/ChevronUp.js +13 -0
- package/dist/esm/icons/Close.js +13 -0
- package/dist/esm/icons/Code.js +13 -0
- package/dist/esm/icons/Comment.js +13 -0
- package/dist/esm/icons/Compass.js +13 -0
- package/dist/esm/icons/Compose.js +13 -0
- package/dist/esm/icons/Contract.js +13 -0
- package/dist/esm/icons/Copy.js +13 -0
- package/dist/esm/icons/Customization.js +13 -0
- package/dist/esm/icons/Dash.js +13 -0
- package/dist/esm/icons/Disconnect.js +13 -0
- package/dist/esm/icons/Doc.js +13 -0
- package/dist/esm/icons/Dollar.js +13 -0
- package/dist/esm/icons/Dot.js +13 -0
- package/dist/esm/icons/Download.js +13 -0
- package/dist/esm/icons/DragDrop.js +13 -0
- package/dist/esm/icons/Duplicate.js +13 -0
- package/dist/esm/icons/Edit.js +13 -0
- package/dist/esm/icons/EditSolid.js +13 -0
- package/dist/esm/icons/Ellipsis.js +13 -0
- package/dist/esm/icons/Email.js +13 -0
- package/dist/esm/icons/EmailRead.js +13 -0
- package/dist/esm/icons/EmailUnread.js +13 -0
- package/dist/esm/icons/Excel.js +13 -0
- package/dist/esm/icons/Export.js +13 -0
- package/dist/esm/icons/Eye.js +13 -0
- package/dist/esm/icons/EyeHidden.js +13 -0
- package/dist/esm/icons/Failed.js +13 -0
- package/dist/esm/icons/FailedSolid.js +13 -0
- package/dist/esm/icons/File.js +13 -0
- package/dist/esm/icons/Files.js +13 -0
- package/dist/esm/icons/Filter.js +13 -0
- package/dist/esm/icons/FitToWidth.js +23 -0
- package/dist/esm/icons/FolderLocked.js +16 -0
- package/dist/esm/icons/Form.js +13 -0
- package/dist/esm/icons/GIF.js +13 -0
- package/dist/esm/icons/Gauge.js +13 -0
- package/dist/esm/icons/Gift.js +13 -0
- package/dist/esm/icons/GraphBarSolid.js +13 -0
- package/dist/esm/icons/H1.js +13 -0
- package/dist/esm/icons/H2.js +13 -0
- package/dist/esm/icons/H3.js +13 -0
- package/dist/esm/icons/Helpdesk.js +20 -0
- package/dist/esm/icons/Home.js +13 -0
- package/dist/esm/icons/Image.js +13 -0
- package/dist/esm/icons/ImageMissing.js +13 -0
- package/dist/esm/icons/InProgress.js +19 -0
- package/dist/esm/icons/Inbox.js +13 -0
- package/dist/esm/icons/Info.js +13 -0
- package/dist/esm/icons/InfoSolid.js +13 -0
- package/dist/esm/icons/Insert.js +13 -0
- package/dist/esm/icons/Invite.js +13 -0
- package/dist/esm/icons/Invoice.js +13 -0
- package/dist/esm/icons/InvoicePaid.js +13 -0
- package/dist/esm/icons/Italicize.js +13 -0
- package/dist/esm/icons/JPG.js +13 -0
- package/dist/esm/icons/Lead.js +13 -0
- package/dist/esm/icons/Link.js +13 -0
- package/dist/esm/icons/List.js +13 -0
- package/dist/esm/icons/Location.js +13 -0
- package/dist/esm/icons/LockFilled.js +16 -0
- package/dist/esm/icons/LogOut.js +13 -0
- package/dist/esm/icons/MOV.js +13 -0
- package/dist/esm/icons/MP3.js +13 -0
- package/dist/esm/icons/MP4.js +13 -0
- package/dist/esm/icons/Marketing.js +13 -0
- package/dist/esm/icons/MassFileShare.js +13 -0
- package/dist/esm/icons/Mention.js +13 -0
- package/dist/esm/icons/Menu.js +13 -0
- package/dist/esm/icons/Message.js +13 -0
- package/dist/esm/icons/Minus.js +15 -0
- package/dist/esm/icons/MobileNumber.js +13 -0
- package/dist/esm/icons/MoreVertical.js +13 -0
- package/dist/esm/icons/Movie.js +13 -0
- package/dist/esm/icons/New.js +13 -0
- package/dist/esm/icons/Notification.js +13 -0
- package/dist/esm/icons/Number.js +13 -0
- package/dist/esm/icons/NumberedList.js +13 -0
- package/dist/esm/icons/PDF.js +13 -0
- package/dist/esm/icons/PNG.js +13 -0
- package/dist/esm/icons/Pause.js +13 -0
- package/dist/esm/icons/Pin.js +13 -0
- package/dist/esm/icons/PlansPayments.js +13 -0
- package/dist/esm/icons/Play.js +13 -0
- package/dist/esm/icons/Plus.js +20 -0
- package/dist/esm/icons/Profile.js +13 -0
- package/dist/esm/icons/Puzzle.js +13 -0
- package/dist/esm/icons/QuestionMark.js +13 -0
- package/dist/esm/icons/QuickBook.js +13 -0
- package/dist/esm/icons/Repeat.js +13 -0
- package/dist/esm/icons/Reply.js +13 -0
- package/dist/esm/icons/Reposition.js +13 -0
- package/dist/esm/icons/ResetZoom.js +18 -0
- package/dist/esm/icons/SVG.js +13 -0
- package/dist/esm/icons/Scale.js +13 -0
- package/dist/esm/icons/Search.js +13 -0
- package/dist/esm/icons/Send.js +13 -0
- package/dist/esm/icons/SendFilled.js +13 -0
- package/dist/esm/icons/Settings.js +13 -0
- package/dist/esm/icons/Share.js +13 -0
- package/dist/esm/icons/ShoppingBag.js +13 -0
- package/dist/esm/icons/Sidebar.js +13 -0
- package/dist/esm/icons/SidebarFilled.js +13 -0
- package/dist/esm/icons/Smile.js +13 -0
- package/dist/esm/icons/Spinner.js +13 -0
- package/dist/esm/icons/SquareSolid.js +13 -0
- package/dist/esm/icons/Star.js +13 -0
- package/dist/esm/icons/Store.js +13 -0
- package/dist/esm/icons/Strikethrough.js +13 -0
- package/dist/esm/icons/Subtask.js +13 -0
- package/dist/esm/icons/Success.js +13 -0
- package/dist/esm/icons/SuccessSolid.js +13 -0
- package/dist/esm/icons/Table.js +13 -0
- package/dist/esm/icons/Tag.js +13 -0
- package/dist/esm/icons/Tasks.js +13 -0
- package/dist/esm/icons/Teams.js +13 -0
- package/dist/esm/icons/Templates.js +13 -0
- package/dist/esm/icons/Text.js +13 -0
- package/dist/esm/icons/ThumbsDown.js +13 -0
- package/dist/esm/icons/ThumbsUp.js +13 -0
- package/dist/esm/icons/Time.js +13 -0
- package/dist/esm/icons/ToDo.js +13 -0
- package/dist/esm/icons/Trash.js +13 -0
- package/dist/esm/icons/UnPin.js +13 -0
- package/dist/esm/icons/Unarchive.js +16 -0
- package/dist/esm/icons/Underline.js +13 -0
- package/dist/esm/icons/Unlock.js +13 -0
- package/dist/esm/icons/UnorderedList.js +13 -0
- package/dist/esm/icons/Upload.js +13 -0
- package/dist/esm/icons/Warning.js +13 -0
- package/dist/esm/icons/WarningSolid.js +13 -0
- package/dist/esm/icons/Web.js +13 -0
- package/dist/esm/icons/ZIP.js +13 -0
- package/dist/esm/icons/index.js +168 -0
- package/dist/esm/index.js +23 -0
- package/dist/esm/theme/colors.js +37 -0
- package/dist/esm/theme/semantic.js +52 -0
- package/dist/esm/types/common/ChoiceGroupLayout/ChoiceGroupLayout.d.ts +22 -0
- package/dist/esm/types/common/utils.d.ts +4 -0
- package/dist/esm/types/components/Avatar/Avatar.d.ts +579 -0
- package/dist/esm/types/components/Avatar/Avatar.stories.d.ts +19 -0
- package/dist/esm/types/components/Avatar/UserWithCompanyAvatar.d.ts +13 -0
- package/dist/esm/types/components/Avatar/UserWithCompanyAvatar.stories.d.ts +10 -0
- package/dist/esm/types/components/Breadcrumb/Breadcrumbs.d.ts +12 -0
- package/dist/esm/types/components/Breadcrumb/Breadcrumbs.stories.d.ts +9 -0
- package/dist/esm/types/components/Button/Base.d.ts +16 -0
- package/dist/esm/types/components/Button/Button.stories.d.ts +23 -0
- package/dist/esm/types/components/Button/Icon.d.ts +22 -0
- package/dist/esm/types/components/Button/Icon.stories.d.ts +12 -0
- package/dist/esm/types/components/Button/index.d.ts +25 -0
- package/dist/esm/types/components/Callout/Callout.d.ts +23 -0
- package/dist/esm/types/components/Callout/Callout.stories.d.ts +14 -0
- package/dist/esm/types/components/Checkbox/Checkbox.d.ts +21 -0
- package/dist/esm/types/components/Checkbox/Checkbox.stories.d.ts +9 -0
- package/dist/esm/types/components/CheckboxGroup/CheckboxGroup.d.ts +21 -0
- package/dist/esm/types/components/CheckboxGroup/CheckboxGroup.stories.d.ts +9 -0
- package/dist/esm/types/components/Chip/Chip.d.ts +26 -0
- package/dist/esm/types/components/Chip/Chip.stories.d.ts +15 -0
- package/dist/esm/types/components/Chip/ChipColorDisplay.d.ts +4 -0
- package/dist/esm/types/components/Icon.d.ts +6 -0
- package/dist/esm/types/components/Input/Base.d.ts +1 -0
- package/dist/esm/types/components/Input/Input.d.ts +10 -0
- package/dist/esm/types/components/Input/Input.stories.d.ts +13 -0
- package/dist/esm/types/components/Input/TagInput.d.ts +19 -0
- package/dist/esm/types/components/Input/TagInput.stories.d.ts +13 -0
- package/dist/esm/types/components/Input/Textarea.d.ts +10 -0
- package/dist/esm/types/components/Input/Textarea.stories.d.ts +13 -0
- package/dist/esm/types/components/Input/index.d.ts +3 -0
- package/dist/esm/types/components/Radio/Radio.d.ts +21 -0
- package/dist/esm/types/components/Radio/Radio.stories.d.ts +9 -0
- package/dist/esm/types/components/RadioGroup/RadioGroup.d.ts +21 -0
- package/dist/esm/types/components/RadioGroup/RadioGroup.stories.d.ts +9 -0
- package/dist/esm/types/components/Search/Search.d.ts +5 -0
- package/dist/esm/types/components/Search/Search.stories.d.ts +8 -0
- package/dist/esm/types/components/Spinner.d.ts +7 -0
- package/dist/esm/types/components/Spinner.stories.d.ts +8 -0
- package/dist/esm/types/components/Status/Status.d.ts +10 -0
- package/dist/esm/types/components/Status/Status.stories.d.ts +10 -0
- package/dist/esm/types/components/Tag/Tag.d.ts +19 -0
- package/dist/esm/types/components/Tag/Tag.stories.d.ts +13 -0
- package/dist/esm/types/components/Tag/TagImage.d.ts +2 -0
- package/dist/esm/types/components/TextLink/TextLink.d.ts +10 -0
- package/dist/esm/types/components/TextLink/TextLink.stories.d.ts +8 -0
- package/dist/esm/types/components/Toast/Toast.d.ts +29 -0
- package/dist/esm/types/components/Toast/Toast.stories.d.ts +11 -0
- package/dist/esm/types/components/Toast/Toaster.d.ts +2 -0
- package/dist/esm/types/components/Toast/useToast.d.ts +46 -0
- package/dist/esm/types/components/Toggle/Toggle.d.ts +16 -0
- package/dist/esm/types/components/Toggle/Toggle.stories.d.ts +8 -0
- package/dist/esm/types/components/Toolbar/SlashMenu.d.ts +3 -0
- package/dist/esm/types/components/Toolbar/SlashMenu.stories.d.ts +19 -0
- package/dist/esm/types/components/Toolbar/Toolbar.d.ts +3 -0
- package/dist/esm/types/components/Toolbar/Toolbar.stories.d.ts +26 -0
- package/dist/esm/types/components/Toolbar/ToolbarContext.d.ts +4 -0
- package/dist/esm/types/components/Toolbar/index.d.ts +4 -0
- package/dist/esm/types/components/Toolbar/types.d.ts +71 -0
- package/dist/esm/types/components/Tooltip/Tooltip.d.ts +45 -0
- package/dist/esm/types/components/Tooltip/Tooltip.stories.d.ts +13 -0
- package/dist/esm/types/components/Typography/Base.d.ts +59 -0
- package/dist/esm/types/components/Typography/Base.stories.d.ts +19 -0
- package/dist/esm/types/components/Typography/Body.d.ts +7 -0
- package/dist/esm/types/components/Typography/Body.stories.d.ts +10 -0
- package/dist/esm/types/components/Typography/Heading.d.ts +11 -0
- package/dist/esm/types/components/Typography/Heading.stories.d.ts +10 -0
- package/dist/esm/types/components/Typography/index.d.ts +2 -0
- package/dist/esm/types/components/UserCompanySelector/LimitedOptionsList.d.ts +18 -0
- package/dist/esm/types/components/UserCompanySelector/ListItem.d.ts +4 -0
- package/dist/esm/types/components/UserCompanySelector/SelectedValueChip.d.ts +4 -0
- package/dist/esm/types/components/UserCompanySelector/UserCompanySelector.d.ts +4 -0
- package/dist/esm/types/components/UserCompanySelector/UserCompanySelector.stories.d.ts +18 -0
- package/dist/esm/types/components/UserCompanySelector/data.d.ts +8 -0
- package/dist/esm/types/components/UserCompanySelector/types.d.ts +48 -0
- package/dist/esm/types/icons/AI.d.ts +3 -0
- package/dist/esm/types/icons/API.d.ts +3 -0
- package/dist/esm/types/icons/Airtable.d.ts +3 -0
- package/dist/esm/types/icons/AppSetup.d.ts +3 -0
- package/dist/esm/types/icons/Archive.d.ts +3 -0
- package/dist/esm/types/icons/ArrowDownSolid.d.ts +3 -0
- package/dist/esm/types/icons/ArrowLeft.d.ts +3 -0
- package/dist/esm/types/icons/ArrowNE.d.ts +3 -0
- package/dist/esm/types/icons/ArrowRight.d.ts +3 -0
- package/dist/esm/types/icons/ArrowUpSolid.d.ts +3 -0
- package/dist/esm/types/icons/AssemblyLogo.d.ts +3 -0
- package/dist/esm/types/icons/At.d.ts +3 -0
- package/dist/esm/types/icons/Attachment.d.ts +3 -0
- package/dist/esm/types/icons/Authentication.d.ts +3 -0
- package/dist/esm/types/icons/Automation.d.ts +3 -0
- package/dist/esm/types/icons/Bank.d.ts +3 -0
- package/dist/esm/types/icons/Billing.d.ts +3 -0
- package/dist/esm/types/icons/Bold.d.ts +3 -0
- package/dist/esm/types/icons/Book.d.ts +3 -0
- package/dist/esm/types/icons/BracketsCurly.d.ts +3 -0
- package/dist/esm/types/icons/Building.d.ts +3 -0
- package/dist/esm/types/icons/CSV.d.ts +3 -0
- package/dist/esm/types/icons/Calendar.d.ts +3 -0
- package/dist/esm/types/icons/Callout.d.ts +3 -0
- package/dist/esm/types/icons/Cancel.d.ts +3 -0
- package/dist/esm/types/icons/CaretDown.d.ts +3 -0
- package/dist/esm/types/icons/CaretRight.d.ts +3 -0
- package/dist/esm/types/icons/CaretUp.d.ts +3 -0
- package/dist/esm/types/icons/Chart.d.ts +3 -0
- package/dist/esm/types/icons/Check.d.ts +3 -0
- package/dist/esm/types/icons/Checklist.d.ts +3 -0
- package/dist/esm/types/icons/ChevronDown.d.ts +3 -0
- package/dist/esm/types/icons/ChevronLeft.d.ts +3 -0
- package/dist/esm/types/icons/ChevronRight.d.ts +3 -0
- package/dist/esm/types/icons/ChevronUp.d.ts +3 -0
- package/dist/esm/types/icons/Close.d.ts +3 -0
- package/dist/esm/types/icons/Code.d.ts +3 -0
- package/dist/esm/types/icons/Comment.d.ts +3 -0
- package/dist/esm/types/icons/Compass.d.ts +3 -0
- package/dist/esm/types/icons/Compose.d.ts +3 -0
- package/dist/esm/types/icons/Contract.d.ts +3 -0
- package/dist/esm/types/icons/Copy.d.ts +3 -0
- package/dist/esm/types/icons/Customization.d.ts +3 -0
- package/dist/esm/types/icons/Dash.d.ts +3 -0
- package/dist/esm/types/icons/Disconnect.d.ts +3 -0
- package/dist/esm/types/icons/Doc.d.ts +3 -0
- package/dist/esm/types/icons/Dollar.d.ts +3 -0
- package/dist/esm/types/icons/Dot.d.ts +3 -0
- package/dist/esm/types/icons/Download.d.ts +3 -0
- package/dist/esm/types/icons/DragDrop.d.ts +3 -0
- package/dist/esm/types/icons/Duplicate.d.ts +3 -0
- package/dist/esm/types/icons/Edit.d.ts +3 -0
- package/dist/esm/types/icons/EditSolid.d.ts +3 -0
- package/dist/esm/types/icons/Ellipsis.d.ts +3 -0
- package/dist/esm/types/icons/Email.d.ts +3 -0
- package/dist/esm/types/icons/EmailRead.d.ts +3 -0
- package/dist/esm/types/icons/EmailUnread.d.ts +3 -0
- package/dist/esm/types/icons/Excel.d.ts +3 -0
- package/dist/esm/types/icons/Export.d.ts +3 -0
- package/dist/esm/types/icons/Eye.d.ts +3 -0
- package/dist/esm/types/icons/EyeHidden.d.ts +3 -0
- package/dist/esm/types/icons/Failed.d.ts +3 -0
- package/dist/esm/types/icons/FailedSolid.d.ts +3 -0
- package/dist/esm/types/icons/File.d.ts +3 -0
- package/dist/esm/types/icons/Files.d.ts +3 -0
- package/dist/esm/types/icons/Filter.d.ts +3 -0
- package/dist/esm/types/icons/FitToWidth.d.ts +3 -0
- package/dist/esm/types/icons/FolderLocked.d.ts +3 -0
- package/dist/esm/types/icons/Form.d.ts +3 -0
- package/dist/esm/types/icons/GIF.d.ts +3 -0
- package/dist/esm/types/icons/Gauge.d.ts +3 -0
- package/dist/esm/types/icons/Gift.d.ts +3 -0
- package/dist/esm/types/icons/GraphBarSolid.d.ts +3 -0
- package/dist/esm/types/icons/H1.d.ts +3 -0
- package/dist/esm/types/icons/H2.d.ts +3 -0
- package/dist/esm/types/icons/H3.d.ts +3 -0
- package/dist/esm/types/icons/Helpdesk.d.ts +3 -0
- package/dist/esm/types/icons/Home.d.ts +3 -0
- package/dist/esm/types/icons/Image.d.ts +3 -0
- package/dist/esm/types/icons/ImageMissing.d.ts +3 -0
- package/dist/esm/types/icons/InProgress.d.ts +3 -0
- package/dist/esm/types/icons/Inbox.d.ts +3 -0
- package/dist/esm/types/icons/Info.d.ts +3 -0
- package/dist/esm/types/icons/InfoSolid.d.ts +3 -0
- package/dist/esm/types/icons/Insert.d.ts +3 -0
- package/dist/esm/types/icons/Invite.d.ts +3 -0
- package/dist/esm/types/icons/Invoice.d.ts +3 -0
- package/dist/esm/types/icons/InvoicePaid.d.ts +3 -0
- package/dist/esm/types/icons/Italicize.d.ts +3 -0
- package/dist/esm/types/icons/JPG.d.ts +3 -0
- package/dist/esm/types/icons/Lead.d.ts +3 -0
- package/dist/esm/types/icons/Link.d.ts +3 -0
- package/dist/esm/types/icons/List.d.ts +3 -0
- package/dist/esm/types/icons/Location.d.ts +3 -0
- package/dist/esm/types/icons/LockFilled.d.ts +3 -0
- package/dist/esm/types/icons/LogOut.d.ts +3 -0
- package/dist/esm/types/icons/MOV.d.ts +3 -0
- package/dist/esm/types/icons/MP3.d.ts +3 -0
- package/dist/esm/types/icons/MP4.d.ts +3 -0
- package/dist/esm/types/icons/Marketing.d.ts +3 -0
- package/dist/esm/types/icons/MassFileShare.d.ts +3 -0
- package/dist/esm/types/icons/Mention.d.ts +3 -0
- package/dist/esm/types/icons/Menu.d.ts +3 -0
- package/dist/esm/types/icons/Message.d.ts +3 -0
- package/dist/esm/types/icons/Minus.d.ts +3 -0
- package/dist/esm/types/icons/MobileNumber.d.ts +3 -0
- package/dist/esm/types/icons/MoreVertical.d.ts +3 -0
- package/dist/esm/types/icons/Movie.d.ts +3 -0
- package/dist/esm/types/icons/New.d.ts +3 -0
- package/dist/esm/types/icons/Notification.d.ts +3 -0
- package/dist/esm/types/icons/Number.d.ts +3 -0
- package/dist/esm/types/icons/NumberedList.d.ts +3 -0
- package/dist/esm/types/icons/PDF.d.ts +3 -0
- package/dist/esm/types/icons/PNG.d.ts +3 -0
- package/dist/esm/types/icons/Pause.d.ts +3 -0
- package/dist/esm/types/icons/Pin.d.ts +3 -0
- package/dist/esm/types/icons/PlansPayments.d.ts +3 -0
- package/dist/esm/types/icons/Play.d.ts +3 -0
- package/dist/esm/types/icons/Plus.d.ts +3 -0
- package/dist/esm/types/icons/Profile.d.ts +3 -0
- package/dist/esm/types/icons/Puzzle.d.ts +3 -0
- package/dist/esm/types/icons/QuestionMark.d.ts +3 -0
- package/dist/esm/types/icons/QuickBook.d.ts +3 -0
- package/dist/esm/types/icons/Repeat.d.ts +3 -0
- package/dist/esm/types/icons/Reply.d.ts +3 -0
- package/dist/esm/types/icons/Reposition.d.ts +3 -0
- package/dist/esm/types/icons/ResetZoom.d.ts +3 -0
- package/dist/esm/types/icons/SVG.d.ts +3 -0
- package/dist/esm/types/icons/Scale.d.ts +3 -0
- package/dist/esm/types/icons/Search.d.ts +3 -0
- package/dist/esm/types/icons/Send.d.ts +3 -0
- package/dist/esm/types/icons/SendFilled.d.ts +3 -0
- package/dist/esm/types/icons/Settings.d.ts +3 -0
- package/dist/esm/types/icons/Share.d.ts +3 -0
- package/dist/esm/types/icons/ShoppingBag.d.ts +3 -0
- package/dist/esm/types/icons/Sidebar.d.ts +3 -0
- package/dist/esm/types/icons/SidebarFilled.d.ts +3 -0
- package/dist/esm/types/icons/Smile.d.ts +3 -0
- package/dist/esm/types/icons/Spinner.d.ts +3 -0
- package/dist/esm/types/icons/SquareSolid.d.ts +3 -0
- package/dist/esm/types/icons/Star.d.ts +3 -0
- package/dist/esm/types/icons/Store.d.ts +3 -0
- package/dist/esm/types/icons/Strikethrough.d.ts +3 -0
- package/dist/esm/types/icons/Subtask.d.ts +3 -0
- package/dist/esm/types/icons/Success.d.ts +3 -0
- package/dist/esm/types/icons/SuccessSolid.d.ts +3 -0
- package/dist/esm/types/icons/Table.d.ts +3 -0
- package/dist/esm/types/icons/Tag.d.ts +3 -0
- package/dist/esm/types/icons/Tasks.d.ts +3 -0
- package/dist/esm/types/icons/Teams.d.ts +3 -0
- package/dist/esm/types/icons/Templates.d.ts +3 -0
- package/dist/esm/types/icons/Text.d.ts +3 -0
- package/dist/esm/types/icons/ThumbsDown.d.ts +3 -0
- package/dist/esm/types/icons/ThumbsUp.d.ts +3 -0
- package/dist/esm/types/icons/Time.d.ts +3 -0
- package/dist/esm/types/icons/ToDo.d.ts +3 -0
- package/dist/esm/types/icons/Trash.d.ts +3 -0
- package/dist/esm/types/icons/UnPin.d.ts +3 -0
- package/dist/esm/types/icons/Unarchive.d.ts +3 -0
- package/dist/esm/types/icons/Underline.d.ts +3 -0
- package/dist/esm/types/icons/Unlock.d.ts +3 -0
- package/dist/esm/types/icons/UnorderedList.d.ts +3 -0
- package/dist/esm/types/icons/Upload.d.ts +3 -0
- package/dist/esm/types/icons/Warning.d.ts +3 -0
- package/dist/esm/types/icons/WarningSolid.d.ts +3 -0
- package/dist/esm/types/icons/Web.d.ts +3 -0
- package/dist/esm/types/icons/ZIP.d.ts +3 -0
- package/dist/esm/types/icons/index.d.ts +167 -0
- package/dist/esm/types/index.d.ts +22 -0
- package/dist/esm/types/theme/colors.d.ts +36 -0
- package/dist/esm/types/theme/semantic.d.ts +43 -0
- package/dist/esm/types/tsconfig.tsbuildinfo +1 -0
- package/dist/styles/main.css +1 -0
- package/dist/types/common/ChoiceGroupLayout/ChoiceGroupLayout.d.ts +22 -0
- package/dist/types/common/utils.d.ts +4 -0
- package/dist/types/components/Avatar/Avatar.d.ts +579 -0
- package/dist/types/components/Avatar/Avatar.stories.d.ts +19 -0
- package/dist/types/components/Avatar/UserWithCompanyAvatar.d.ts +13 -0
- package/dist/types/components/Avatar/UserWithCompanyAvatar.stories.d.ts +10 -0
- package/dist/types/components/Breadcrumb/Breadcrumbs.d.ts +12 -0
- package/dist/types/components/Breadcrumb/Breadcrumbs.stories.d.ts +9 -0
- package/dist/types/components/Button/Base.d.ts +16 -0
- package/dist/types/components/Button/Button.stories.d.ts +23 -0
- package/dist/types/components/Button/Icon.d.ts +22 -0
- package/dist/types/components/Button/Icon.stories.d.ts +12 -0
- package/dist/types/components/Button/index.d.ts +25 -0
- package/dist/types/components/Callout/Callout.d.ts +23 -0
- package/dist/types/components/Callout/Callout.stories.d.ts +14 -0
- package/dist/types/components/Checkbox/Checkbox.d.ts +21 -0
- package/dist/types/components/Checkbox/Checkbox.stories.d.ts +9 -0
- package/dist/types/components/CheckboxGroup/CheckboxGroup.d.ts +21 -0
- package/dist/types/components/CheckboxGroup/CheckboxGroup.stories.d.ts +9 -0
- package/dist/types/components/Chip/Chip.d.ts +26 -0
- package/dist/types/components/Chip/Chip.stories.d.ts +15 -0
- package/dist/types/components/Chip/ChipColorDisplay.d.ts +4 -0
- package/dist/types/components/Icon.d.ts +6 -0
- package/dist/types/components/Input/Base.d.ts +1 -0
- package/dist/types/components/Input/Input.d.ts +10 -0
- package/dist/types/components/Input/Input.stories.d.ts +13 -0
- package/dist/types/components/Input/TagInput.d.ts +19 -0
- package/dist/types/components/Input/TagInput.stories.d.ts +13 -0
- package/dist/types/components/Input/Textarea.d.ts +10 -0
- package/dist/types/components/Input/Textarea.stories.d.ts +13 -0
- package/dist/types/components/Input/index.d.ts +3 -0
- package/dist/types/components/Radio/Radio.d.ts +21 -0
- package/dist/types/components/Radio/Radio.stories.d.ts +9 -0
- package/dist/types/components/RadioGroup/RadioGroup.d.ts +21 -0
- package/dist/types/components/RadioGroup/RadioGroup.stories.d.ts +9 -0
- package/dist/types/components/Search/Search.d.ts +5 -0
- package/dist/types/components/Search/Search.stories.d.ts +8 -0
- package/dist/types/components/Spinner.d.ts +7 -0
- package/dist/types/components/Spinner.stories.d.ts +8 -0
- package/dist/types/components/Status/Status.d.ts +10 -0
- package/dist/types/components/Status/Status.stories.d.ts +10 -0
- package/dist/types/components/Tag/Tag.d.ts +19 -0
- package/dist/types/components/Tag/Tag.stories.d.ts +13 -0
- package/dist/types/components/Tag/TagImage.d.ts +2 -0
- package/dist/types/components/TextLink/TextLink.d.ts +10 -0
- package/dist/types/components/TextLink/TextLink.stories.d.ts +8 -0
- package/dist/types/components/Toast/Toast.d.ts +29 -0
- package/dist/types/components/Toast/Toast.stories.d.ts +11 -0
- package/dist/types/components/Toast/Toaster.d.ts +2 -0
- package/dist/types/components/Toast/useToast.d.ts +46 -0
- package/dist/types/components/Toggle/Toggle.d.ts +16 -0
- package/dist/types/components/Toggle/Toggle.stories.d.ts +8 -0
- package/dist/types/components/Toolbar/SlashMenu.d.ts +3 -0
- package/dist/types/components/Toolbar/SlashMenu.stories.d.ts +19 -0
- package/dist/types/components/Toolbar/Toolbar.d.ts +3 -0
- package/dist/types/components/Toolbar/Toolbar.stories.d.ts +26 -0
- package/dist/types/components/Toolbar/ToolbarContext.d.ts +4 -0
- package/dist/types/components/Toolbar/index.d.ts +4 -0
- package/dist/types/components/Toolbar/types.d.ts +71 -0
- package/dist/types/components/Tooltip/Tooltip.d.ts +45 -0
- package/dist/types/components/Tooltip/Tooltip.stories.d.ts +13 -0
- package/dist/types/components/Typography/Base.d.ts +59 -0
- package/dist/types/components/Typography/Base.stories.d.ts +19 -0
- package/dist/types/components/Typography/Body.d.ts +7 -0
- package/dist/types/components/Typography/Body.stories.d.ts +10 -0
- package/dist/types/components/Typography/Heading.d.ts +11 -0
- package/dist/types/components/Typography/Heading.stories.d.ts +10 -0
- package/dist/types/components/Typography/index.d.ts +2 -0
- package/dist/types/components/UserCompanySelector/LimitedOptionsList.d.ts +18 -0
- package/dist/types/components/UserCompanySelector/ListItem.d.ts +4 -0
- package/dist/types/components/UserCompanySelector/SelectedValueChip.d.ts +4 -0
- package/dist/types/components/UserCompanySelector/UserCompanySelector.d.ts +4 -0
- package/dist/types/components/UserCompanySelector/UserCompanySelector.stories.d.ts +18 -0
- package/dist/types/components/UserCompanySelector/data.d.ts +8 -0
- package/dist/types/components/UserCompanySelector/types.d.ts +48 -0
- package/dist/types/icons/AI.d.ts +3 -0
- package/dist/types/icons/API.d.ts +3 -0
- package/dist/types/icons/Airtable.d.ts +3 -0
- package/dist/types/icons/AppSetup.d.ts +3 -0
- package/dist/types/icons/Archive.d.ts +3 -0
- package/dist/types/icons/ArrowDownSolid.d.ts +3 -0
- package/dist/types/icons/ArrowLeft.d.ts +3 -0
- package/dist/types/icons/ArrowNE.d.ts +3 -0
- package/dist/types/icons/ArrowRight.d.ts +3 -0
- package/dist/types/icons/ArrowUpSolid.d.ts +3 -0
- package/dist/types/icons/AssemblyLogo.d.ts +3 -0
- package/dist/types/icons/At.d.ts +3 -0
- package/dist/types/icons/Attachment.d.ts +3 -0
- package/dist/types/icons/Authentication.d.ts +3 -0
- package/dist/types/icons/Automation.d.ts +3 -0
- package/dist/types/icons/Bank.d.ts +3 -0
- package/dist/types/icons/Billing.d.ts +3 -0
- package/dist/types/icons/Bold.d.ts +3 -0
- package/dist/types/icons/Book.d.ts +3 -0
- package/dist/types/icons/BracketsCurly.d.ts +3 -0
- package/dist/types/icons/Building.d.ts +3 -0
- package/dist/types/icons/CSV.d.ts +3 -0
- package/dist/types/icons/Calendar.d.ts +3 -0
- package/dist/types/icons/Callout.d.ts +3 -0
- package/dist/types/icons/Cancel.d.ts +3 -0
- package/dist/types/icons/CaretDown.d.ts +3 -0
- package/dist/types/icons/CaretRight.d.ts +3 -0
- package/dist/types/icons/CaretUp.d.ts +3 -0
- package/dist/types/icons/Chart.d.ts +3 -0
- package/dist/types/icons/Check.d.ts +3 -0
- package/dist/types/icons/Checklist.d.ts +3 -0
- package/dist/types/icons/ChevronDown.d.ts +3 -0
- package/dist/types/icons/ChevronLeft.d.ts +3 -0
- package/dist/types/icons/ChevronRight.d.ts +3 -0
- package/dist/types/icons/ChevronUp.d.ts +3 -0
- package/dist/types/icons/Close.d.ts +3 -0
- package/dist/types/icons/Code.d.ts +3 -0
- package/dist/types/icons/Comment.d.ts +3 -0
- package/dist/types/icons/Compass.d.ts +3 -0
- package/dist/types/icons/Compose.d.ts +3 -0
- package/dist/types/icons/Contract.d.ts +3 -0
- package/dist/types/icons/Copy.d.ts +3 -0
- package/dist/types/icons/Customization.d.ts +3 -0
- package/dist/types/icons/Dash.d.ts +3 -0
- package/dist/types/icons/Disconnect.d.ts +3 -0
- package/dist/types/icons/Doc.d.ts +3 -0
- package/dist/types/icons/Dollar.d.ts +3 -0
- package/dist/types/icons/Dot.d.ts +3 -0
- package/dist/types/icons/Download.d.ts +3 -0
- package/dist/types/icons/DragDrop.d.ts +3 -0
- package/dist/types/icons/Duplicate.d.ts +3 -0
- package/dist/types/icons/Edit.d.ts +3 -0
- package/dist/types/icons/EditSolid.d.ts +3 -0
- package/dist/types/icons/Ellipsis.d.ts +3 -0
- package/dist/types/icons/Email.d.ts +3 -0
- package/dist/types/icons/EmailRead.d.ts +3 -0
- package/dist/types/icons/EmailUnread.d.ts +3 -0
- package/dist/types/icons/Excel.d.ts +3 -0
- package/dist/types/icons/Export.d.ts +3 -0
- package/dist/types/icons/Eye.d.ts +3 -0
- package/dist/types/icons/EyeHidden.d.ts +3 -0
- package/dist/types/icons/Failed.d.ts +3 -0
- package/dist/types/icons/FailedSolid.d.ts +3 -0
- package/dist/types/icons/File.d.ts +3 -0
- package/dist/types/icons/Files.d.ts +3 -0
- package/dist/types/icons/Filter.d.ts +3 -0
- package/dist/types/icons/FitToWidth.d.ts +3 -0
- package/dist/types/icons/FolderLocked.d.ts +3 -0
- package/dist/types/icons/Form.d.ts +3 -0
- package/dist/types/icons/GIF.d.ts +3 -0
- package/dist/types/icons/Gauge.d.ts +3 -0
- package/dist/types/icons/Gift.d.ts +3 -0
- package/dist/types/icons/GraphBarSolid.d.ts +3 -0
- package/dist/types/icons/H1.d.ts +3 -0
- package/dist/types/icons/H2.d.ts +3 -0
- package/dist/types/icons/H3.d.ts +3 -0
- package/dist/types/icons/Helpdesk.d.ts +3 -0
- package/dist/types/icons/Home.d.ts +3 -0
- package/dist/types/icons/Image.d.ts +3 -0
- package/dist/types/icons/ImageMissing.d.ts +3 -0
- package/dist/types/icons/InProgress.d.ts +3 -0
- package/dist/types/icons/Inbox.d.ts +3 -0
- package/dist/types/icons/Info.d.ts +3 -0
- package/dist/types/icons/InfoSolid.d.ts +3 -0
- package/dist/types/icons/Insert.d.ts +3 -0
- package/dist/types/icons/Invite.d.ts +3 -0
- package/dist/types/icons/Invoice.d.ts +3 -0
- package/dist/types/icons/InvoicePaid.d.ts +3 -0
- package/dist/types/icons/Italicize.d.ts +3 -0
- package/dist/types/icons/JPG.d.ts +3 -0
- package/dist/types/icons/Lead.d.ts +3 -0
- package/dist/types/icons/Link.d.ts +3 -0
- package/dist/types/icons/List.d.ts +3 -0
- package/dist/types/icons/Location.d.ts +3 -0
- package/dist/types/icons/LockFilled.d.ts +3 -0
- package/dist/types/icons/LogOut.d.ts +3 -0
- package/dist/types/icons/MOV.d.ts +3 -0
- package/dist/types/icons/MP3.d.ts +3 -0
- package/dist/types/icons/MP4.d.ts +3 -0
- package/dist/types/icons/Marketing.d.ts +3 -0
- package/dist/types/icons/MassFileShare.d.ts +3 -0
- package/dist/types/icons/Mention.d.ts +3 -0
- package/dist/types/icons/Menu.d.ts +3 -0
- package/dist/types/icons/Message.d.ts +3 -0
- package/dist/types/icons/Minus.d.ts +3 -0
- package/dist/types/icons/MobileNumber.d.ts +3 -0
- package/dist/types/icons/MoreVertical.d.ts +3 -0
- package/dist/types/icons/Movie.d.ts +3 -0
- package/dist/types/icons/New.d.ts +3 -0
- package/dist/types/icons/Notification.d.ts +3 -0
- package/dist/types/icons/Number.d.ts +3 -0
- package/dist/types/icons/NumberedList.d.ts +3 -0
- package/dist/types/icons/PDF.d.ts +3 -0
- package/dist/types/icons/PNG.d.ts +3 -0
- package/dist/types/icons/Pause.d.ts +3 -0
- package/dist/types/icons/Pin.d.ts +3 -0
- package/dist/types/icons/PlansPayments.d.ts +3 -0
- package/dist/types/icons/Play.d.ts +3 -0
- package/dist/types/icons/Plus.d.ts +3 -0
- package/dist/types/icons/Profile.d.ts +3 -0
- package/dist/types/icons/Puzzle.d.ts +3 -0
- package/dist/types/icons/QuestionMark.d.ts +3 -0
- package/dist/types/icons/QuickBook.d.ts +3 -0
- package/dist/types/icons/Repeat.d.ts +3 -0
- package/dist/types/icons/Reply.d.ts +3 -0
- package/dist/types/icons/Reposition.d.ts +3 -0
- package/dist/types/icons/ResetZoom.d.ts +3 -0
- package/dist/types/icons/SVG.d.ts +3 -0
- package/dist/types/icons/Scale.d.ts +3 -0
- package/dist/types/icons/Search.d.ts +3 -0
- package/dist/types/icons/Send.d.ts +3 -0
- package/dist/types/icons/SendFilled.d.ts +3 -0
- package/dist/types/icons/Settings.d.ts +3 -0
- package/dist/types/icons/Share.d.ts +3 -0
- package/dist/types/icons/ShoppingBag.d.ts +3 -0
- package/dist/types/icons/Sidebar.d.ts +3 -0
- package/dist/types/icons/SidebarFilled.d.ts +3 -0
- package/dist/types/icons/Smile.d.ts +3 -0
- package/dist/types/icons/Spinner.d.ts +3 -0
- package/dist/types/icons/SquareSolid.d.ts +3 -0
- package/dist/types/icons/Star.d.ts +3 -0
- package/dist/types/icons/Store.d.ts +3 -0
- package/dist/types/icons/Strikethrough.d.ts +3 -0
- package/dist/types/icons/Subtask.d.ts +3 -0
- package/dist/types/icons/Success.d.ts +3 -0
- package/dist/types/icons/SuccessSolid.d.ts +3 -0
- package/dist/types/icons/Table.d.ts +3 -0
- package/dist/types/icons/Tag.d.ts +3 -0
- package/dist/types/icons/Tasks.d.ts +3 -0
- package/dist/types/icons/Teams.d.ts +3 -0
- package/dist/types/icons/Templates.d.ts +3 -0
- package/dist/types/icons/Text.d.ts +3 -0
- package/dist/types/icons/ThumbsDown.d.ts +3 -0
- package/dist/types/icons/ThumbsUp.d.ts +3 -0
- package/dist/types/icons/Time.d.ts +3 -0
- package/dist/types/icons/ToDo.d.ts +3 -0
- package/dist/types/icons/Trash.d.ts +3 -0
- package/dist/types/icons/UnPin.d.ts +3 -0
- package/dist/types/icons/Unarchive.d.ts +3 -0
- package/dist/types/icons/Underline.d.ts +3 -0
- package/dist/types/icons/Unlock.d.ts +3 -0
- package/dist/types/icons/UnorderedList.d.ts +3 -0
- package/dist/types/icons/Upload.d.ts +3 -0
- package/dist/types/icons/Warning.d.ts +3 -0
- package/dist/types/icons/WarningSolid.d.ts +3 -0
- package/dist/types/icons/Web.d.ts +3 -0
- package/dist/types/icons/ZIP.d.ts +3 -0
- package/dist/types/icons/index.d.ts +167 -0
- package/dist/types/index.d.ts +22 -0
- package/dist/types/theme/colors.d.ts +36 -0
- package/dist/types/theme/semantic.d.ts +43 -0
- package/dist/types/tsconfig.tsbuildinfo +1 -0
- package/dist/umd/common/ChoiceGroupLayout/ChoiceGroupLayout.js +121 -0
- package/dist/umd/common/utils.js +37 -0
- package/dist/umd/components/Avatar/Avatar.js +197 -0
- package/dist/umd/components/Avatar/UserWithCompanyAvatar.js +71 -0
- package/dist/umd/components/Breadcrumb/Breadcrumbs.js +75 -0
- package/dist/umd/components/Button/Base.js +54 -0
- package/dist/umd/components/Button/Icon.js +58 -0
- package/dist/umd/components/Button/index.js +90 -0
- package/dist/umd/components/Callout/Callout.js +117 -0
- package/dist/umd/components/Checkbox/Checkbox.js +128 -0
- package/dist/umd/components/CheckboxGroup/CheckboxGroup.js +72 -0
- package/dist/umd/components/Chip/Chip.js +165 -0
- package/dist/umd/components/Chip/ChipColorDisplay.js +35 -0
- package/dist/umd/components/Icon.js +37 -0
- package/dist/umd/components/Input/Base.js +24 -0
- package/dist/umd/components/Input/Input.js +51 -0
- package/dist/umd/components/Input/TagInput.js +95 -0
- package/dist/umd/components/Input/Textarea.js +49 -0
- package/dist/umd/components/Input/index.js +52 -0
- package/dist/umd/components/Radio/Radio.js +154 -0
- package/dist/umd/components/RadioGroup/RadioGroup.js +60 -0
- package/dist/umd/components/Search/Search.js +120 -0
- package/dist/umd/components/Spinner.js +57 -0
- package/dist/umd/components/Spinner.stories.js +40 -0
- package/dist/umd/components/Status/Status.js +83 -0
- package/dist/umd/components/Tag/Tag.js +85 -0
- package/dist/umd/components/Tag/TagImage.js +34 -0
- package/dist/umd/components/TextLink/TextLink.js +75 -0
- package/dist/umd/components/Toast/Toast.js +106 -0
- package/dist/umd/components/Toast/Toaster.js +61 -0
- package/dist/umd/components/Toast/useToast.js +192 -0
- package/dist/umd/components/Toggle/Toggle.js +102 -0
- package/dist/umd/components/Toolbar/SlashMenu.js +159 -0
- package/dist/umd/components/Toolbar/Toolbar.js +160 -0
- package/dist/umd/components/Toolbar/ToolbarContext.js +81 -0
- package/dist/umd/components/Toolbar/index.js +46 -0
- package/dist/umd/components/Toolbar/types.js +20 -0
- package/dist/umd/components/Tooltip/Tooltip.js +281 -0
- package/dist/umd/components/Typography/Base.js +86 -0
- package/dist/umd/components/Typography/Body.js +46 -0
- package/dist/umd/components/Typography/Heading.js +65 -0
- package/dist/umd/components/Typography/index.js +42 -0
- package/dist/umd/components/UserCompanySelector/LimitedOptionsList.js +47 -0
- package/dist/umd/components/UserCompanySelector/ListItem.js +73 -0
- package/dist/umd/components/UserCompanySelector/SelectedValueChip.js +64 -0
- package/dist/umd/components/UserCompanySelector/UserCompanySelector.js +391 -0
- package/dist/umd/components/UserCompanySelector/data.js +85 -0
- package/dist/umd/components/UserCompanySelector/types.js +20 -0
- package/dist/umd/icons/AI.js +36 -0
- package/dist/umd/icons/API.js +36 -0
- package/dist/umd/icons/Airtable.js +36 -0
- package/dist/umd/icons/AppSetup.js +36 -0
- package/dist/umd/icons/Archive.js +36 -0
- package/dist/umd/icons/ArrowDownSolid.js +36 -0
- package/dist/umd/icons/ArrowLeft.js +36 -0
- package/dist/umd/icons/ArrowNE.js +36 -0
- package/dist/umd/icons/ArrowRight.js +36 -0
- package/dist/umd/icons/ArrowUpSolid.js +36 -0
- package/dist/umd/icons/AssemblyLogo.js +36 -0
- package/dist/umd/icons/At.js +36 -0
- package/dist/umd/icons/Attachment.js +36 -0
- package/dist/umd/icons/Authentication.js +36 -0
- package/dist/umd/icons/Automation.js +36 -0
- package/dist/umd/icons/Bank.js +36 -0
- package/dist/umd/icons/Billing.js +36 -0
- package/dist/umd/icons/Bold.js +36 -0
- package/dist/umd/icons/Book.js +36 -0
- package/dist/umd/icons/BracketsCurly.js +36 -0
- package/dist/umd/icons/Building.js +36 -0
- package/dist/umd/icons/CSV.js +36 -0
- package/dist/umd/icons/Calendar.js +36 -0
- package/dist/umd/icons/Callout.js +36 -0
- package/dist/umd/icons/Cancel.js +36 -0
- package/dist/umd/icons/CaretDown.js +36 -0
- package/dist/umd/icons/CaretRight.js +36 -0
- package/dist/umd/icons/CaretUp.js +36 -0
- package/dist/umd/icons/Chart.js +36 -0
- package/dist/umd/icons/Check.js +36 -0
- package/dist/umd/icons/Checklist.js +36 -0
- package/dist/umd/icons/ChevronDown.js +36 -0
- package/dist/umd/icons/ChevronLeft.js +38 -0
- package/dist/umd/icons/ChevronRight.js +36 -0
- package/dist/umd/icons/ChevronUp.js +36 -0
- package/dist/umd/icons/Close.js +36 -0
- package/dist/umd/icons/Code.js +36 -0
- package/dist/umd/icons/Comment.js +36 -0
- package/dist/umd/icons/Compass.js +36 -0
- package/dist/umd/icons/Compose.js +36 -0
- package/dist/umd/icons/Contract.js +36 -0
- package/dist/umd/icons/Copy.js +36 -0
- package/dist/umd/icons/Customization.js +36 -0
- package/dist/umd/icons/Dash.js +36 -0
- package/dist/umd/icons/Disconnect.js +36 -0
- package/dist/umd/icons/Doc.js +36 -0
- package/dist/umd/icons/Dollar.js +36 -0
- package/dist/umd/icons/Dot.js +36 -0
- package/dist/umd/icons/Download.js +36 -0
- package/dist/umd/icons/DragDrop.js +36 -0
- package/dist/umd/icons/Duplicate.js +36 -0
- package/dist/umd/icons/Edit.js +36 -0
- package/dist/umd/icons/EditSolid.js +36 -0
- package/dist/umd/icons/Ellipsis.js +36 -0
- package/dist/umd/icons/Email.js +36 -0
- package/dist/umd/icons/EmailRead.js +36 -0
- package/dist/umd/icons/EmailUnread.js +36 -0
- package/dist/umd/icons/Excel.js +36 -0
- package/dist/umd/icons/Export.js +36 -0
- package/dist/umd/icons/Eye.js +36 -0
- package/dist/umd/icons/EyeHidden.js +36 -0
- package/dist/umd/icons/Failed.js +36 -0
- package/dist/umd/icons/FailedSolid.js +36 -0
- package/dist/umd/icons/File.js +36 -0
- package/dist/umd/icons/Files.js +36 -0
- package/dist/umd/icons/Filter.js +36 -0
- package/dist/umd/icons/FitToWidth.js +46 -0
- package/dist/umd/icons/FolderLocked.js +39 -0
- package/dist/umd/icons/Form.js +36 -0
- package/dist/umd/icons/GIF.js +36 -0
- package/dist/umd/icons/Gauge.js +36 -0
- package/dist/umd/icons/Gift.js +36 -0
- package/dist/umd/icons/GraphBarSolid.js +36 -0
- package/dist/umd/icons/H1.js +36 -0
- package/dist/umd/icons/H2.js +36 -0
- package/dist/umd/icons/H3.js +36 -0
- package/dist/umd/icons/Helpdesk.js +43 -0
- package/dist/umd/icons/Home.js +36 -0
- package/dist/umd/icons/Image.js +36 -0
- package/dist/umd/icons/ImageMissing.js +36 -0
- package/dist/umd/icons/InProgress.js +42 -0
- package/dist/umd/icons/Inbox.js +36 -0
- package/dist/umd/icons/Info.js +36 -0
- package/dist/umd/icons/InfoSolid.js +36 -0
- package/dist/umd/icons/Insert.js +36 -0
- package/dist/umd/icons/Invite.js +36 -0
- package/dist/umd/icons/Invoice.js +36 -0
- package/dist/umd/icons/InvoicePaid.js +36 -0
- package/dist/umd/icons/Italicize.js +36 -0
- package/dist/umd/icons/JPG.js +36 -0
- package/dist/umd/icons/Lead.js +36 -0
- package/dist/umd/icons/Link.js +36 -0
- package/dist/umd/icons/List.js +36 -0
- package/dist/umd/icons/Location.js +36 -0
- package/dist/umd/icons/LockFilled.js +39 -0
- package/dist/umd/icons/LogOut.js +36 -0
- package/dist/umd/icons/MOV.js +36 -0
- package/dist/umd/icons/MP3.js +36 -0
- package/dist/umd/icons/MP4.js +36 -0
- package/dist/umd/icons/Marketing.js +36 -0
- package/dist/umd/icons/MassFileShare.js +36 -0
- package/dist/umd/icons/Mention.js +36 -0
- package/dist/umd/icons/Menu.js +36 -0
- package/dist/umd/icons/Message.js +36 -0
- package/dist/umd/icons/Minus.js +38 -0
- package/dist/umd/icons/MobileNumber.js +36 -0
- package/dist/umd/icons/MoreVertical.js +36 -0
- package/dist/umd/icons/Movie.js +36 -0
- package/dist/umd/icons/New.js +36 -0
- package/dist/umd/icons/Notification.js +36 -0
- package/dist/umd/icons/Number.js +36 -0
- package/dist/umd/icons/NumberedList.js +36 -0
- package/dist/umd/icons/PDF.js +36 -0
- package/dist/umd/icons/PNG.js +36 -0
- package/dist/umd/icons/Pause.js +36 -0
- package/dist/umd/icons/Pin.js +36 -0
- package/dist/umd/icons/PlansPayments.js +36 -0
- package/dist/umd/icons/Play.js +36 -0
- package/dist/umd/icons/Plus.js +43 -0
- package/dist/umd/icons/Profile.js +36 -0
- package/dist/umd/icons/Puzzle.js +36 -0
- package/dist/umd/icons/QuestionMark.js +36 -0
- package/dist/umd/icons/QuickBook.js +36 -0
- package/dist/umd/icons/Repeat.js +36 -0
- package/dist/umd/icons/Reply.js +36 -0
- package/dist/umd/icons/Reposition.js +36 -0
- package/dist/umd/icons/ResetZoom.js +41 -0
- package/dist/umd/icons/SVG.js +36 -0
- package/dist/umd/icons/Scale.js +36 -0
- package/dist/umd/icons/Search.js +36 -0
- package/dist/umd/icons/Send.js +36 -0
- package/dist/umd/icons/SendFilled.js +36 -0
- package/dist/umd/icons/Settings.js +36 -0
- package/dist/umd/icons/Share.js +36 -0
- package/dist/umd/icons/ShoppingBag.js +36 -0
- package/dist/umd/icons/Sidebar.js +36 -0
- package/dist/umd/icons/SidebarFilled.js +36 -0
- package/dist/umd/icons/Smile.js +36 -0
- package/dist/umd/icons/Spinner.js +36 -0
- package/dist/umd/icons/SquareSolid.js +36 -0
- package/dist/umd/icons/Star.js +36 -0
- package/dist/umd/icons/Store.js +36 -0
- package/dist/umd/icons/Strikethrough.js +36 -0
- package/dist/umd/icons/Subtask.js +36 -0
- package/dist/umd/icons/Success.js +36 -0
- package/dist/umd/icons/SuccessSolid.js +36 -0
- package/dist/umd/icons/Table.js +36 -0
- package/dist/umd/icons/Tag.js +36 -0
- package/dist/umd/icons/Tasks.js +36 -0
- package/dist/umd/icons/Teams.js +36 -0
- package/dist/umd/icons/Templates.js +36 -0
- package/dist/umd/icons/Text.js +36 -0
- package/dist/umd/icons/ThumbsDown.js +36 -0
- package/dist/umd/icons/ThumbsUp.js +36 -0
- package/dist/umd/icons/Time.js +36 -0
- package/dist/umd/icons/ToDo.js +36 -0
- package/dist/umd/icons/Trash.js +36 -0
- package/dist/umd/icons/UnPin.js +36 -0
- package/dist/umd/icons/Unarchive.js +39 -0
- package/dist/umd/icons/Underline.js +36 -0
- package/dist/umd/icons/Unlock.js +36 -0
- package/dist/umd/icons/UnorderedList.js +36 -0
- package/dist/umd/icons/Upload.js +36 -0
- package/dist/umd/icons/Warning.js +36 -0
- package/dist/umd/icons/WarningSolid.js +36 -0
- package/dist/umd/icons/Web.js +36 -0
- package/dist/umd/icons/ZIP.js +36 -0
- package/dist/umd/icons/index.js +1690 -0
- package/dist/umd/index.js +220 -0
- package/dist/umd/theme/colors.js +57 -0
- package/dist/umd/theme/semantic.js +70 -0
- package/dist/umd/types/common/ChoiceGroupLayout/ChoiceGroupLayout.d.ts +22 -0
- package/dist/umd/types/common/utils.d.ts +4 -0
- package/dist/umd/types/components/Avatar/Avatar.d.ts +579 -0
- package/dist/umd/types/components/Avatar/Avatar.stories.d.ts +19 -0
- package/dist/umd/types/components/Avatar/UserWithCompanyAvatar.d.ts +13 -0
- package/dist/umd/types/components/Avatar/UserWithCompanyAvatar.stories.d.ts +10 -0
- package/dist/umd/types/components/Breadcrumb/Breadcrumbs.d.ts +12 -0
- package/dist/umd/types/components/Breadcrumb/Breadcrumbs.stories.d.ts +9 -0
- package/dist/umd/types/components/Button/Base.d.ts +16 -0
- package/dist/umd/types/components/Button/Button.stories.d.ts +23 -0
- package/dist/umd/types/components/Button/Icon.d.ts +22 -0
- package/dist/umd/types/components/Button/Icon.stories.d.ts +12 -0
- package/dist/umd/types/components/Button/index.d.ts +25 -0
- package/dist/umd/types/components/Callout/Callout.d.ts +23 -0
- package/dist/umd/types/components/Callout/Callout.stories.d.ts +14 -0
- package/dist/umd/types/components/Checkbox/Checkbox.d.ts +21 -0
- package/dist/umd/types/components/Checkbox/Checkbox.stories.d.ts +9 -0
- package/dist/umd/types/components/CheckboxGroup/CheckboxGroup.d.ts +21 -0
- package/dist/umd/types/components/CheckboxGroup/CheckboxGroup.stories.d.ts +9 -0
- package/dist/umd/types/components/Chip/Chip.d.ts +26 -0
- package/dist/umd/types/components/Chip/Chip.stories.d.ts +15 -0
- package/dist/umd/types/components/Chip/ChipColorDisplay.d.ts +4 -0
- package/dist/umd/types/components/Icon.d.ts +6 -0
- package/dist/umd/types/components/Input/Base.d.ts +1 -0
- package/dist/umd/types/components/Input/Input.d.ts +10 -0
- package/dist/umd/types/components/Input/Input.stories.d.ts +13 -0
- package/dist/umd/types/components/Input/TagInput.d.ts +19 -0
- package/dist/umd/types/components/Input/TagInput.stories.d.ts +13 -0
- package/dist/umd/types/components/Input/Textarea.d.ts +10 -0
- package/dist/umd/types/components/Input/Textarea.stories.d.ts +13 -0
- package/dist/umd/types/components/Input/index.d.ts +3 -0
- package/dist/umd/types/components/Radio/Radio.d.ts +21 -0
- package/dist/umd/types/components/Radio/Radio.stories.d.ts +9 -0
- package/dist/umd/types/components/RadioGroup/RadioGroup.d.ts +21 -0
- package/dist/umd/types/components/RadioGroup/RadioGroup.stories.d.ts +9 -0
- package/dist/umd/types/components/Search/Search.d.ts +5 -0
- package/dist/umd/types/components/Search/Search.stories.d.ts +8 -0
- package/dist/umd/types/components/Spinner.d.ts +7 -0
- package/dist/umd/types/components/Spinner.stories.d.ts +8 -0
- package/dist/umd/types/components/Status/Status.d.ts +10 -0
- package/dist/umd/types/components/Status/Status.stories.d.ts +10 -0
- package/dist/umd/types/components/Tag/Tag.d.ts +19 -0
- package/dist/umd/types/components/Tag/Tag.stories.d.ts +13 -0
- package/dist/umd/types/components/Tag/TagImage.d.ts +2 -0
- package/dist/umd/types/components/TextLink/TextLink.d.ts +10 -0
- package/dist/umd/types/components/TextLink/TextLink.stories.d.ts +8 -0
- package/dist/umd/types/components/Toast/Toast.d.ts +29 -0
- package/dist/umd/types/components/Toast/Toast.stories.d.ts +11 -0
- package/dist/umd/types/components/Toast/Toaster.d.ts +2 -0
- package/dist/umd/types/components/Toast/useToast.d.ts +46 -0
- package/dist/umd/types/components/Toggle/Toggle.d.ts +16 -0
- package/dist/umd/types/components/Toggle/Toggle.stories.d.ts +8 -0
- package/dist/umd/types/components/Toolbar/SlashMenu.d.ts +3 -0
- package/dist/umd/types/components/Toolbar/SlashMenu.stories.d.ts +19 -0
- package/dist/umd/types/components/Toolbar/Toolbar.d.ts +3 -0
- package/dist/umd/types/components/Toolbar/Toolbar.stories.d.ts +26 -0
- package/dist/umd/types/components/Toolbar/ToolbarContext.d.ts +4 -0
- package/dist/umd/types/components/Toolbar/index.d.ts +4 -0
- package/dist/umd/types/components/Toolbar/types.d.ts +71 -0
- package/dist/umd/types/components/Tooltip/Tooltip.d.ts +45 -0
- package/dist/umd/types/components/Tooltip/Tooltip.stories.d.ts +13 -0
- package/dist/umd/types/components/Typography/Base.d.ts +59 -0
- package/dist/umd/types/components/Typography/Base.stories.d.ts +19 -0
- package/dist/umd/types/components/Typography/Body.d.ts +7 -0
- package/dist/umd/types/components/Typography/Body.stories.d.ts +10 -0
- package/dist/umd/types/components/Typography/Heading.d.ts +11 -0
- package/dist/umd/types/components/Typography/Heading.stories.d.ts +10 -0
- package/dist/umd/types/components/Typography/index.d.ts +2 -0
- package/dist/umd/types/components/UserCompanySelector/LimitedOptionsList.d.ts +18 -0
- package/dist/umd/types/components/UserCompanySelector/ListItem.d.ts +4 -0
- package/dist/umd/types/components/UserCompanySelector/SelectedValueChip.d.ts +4 -0
- package/dist/umd/types/components/UserCompanySelector/UserCompanySelector.d.ts +4 -0
- package/dist/umd/types/components/UserCompanySelector/UserCompanySelector.stories.d.ts +18 -0
- package/dist/umd/types/components/UserCompanySelector/data.d.ts +8 -0
- package/dist/umd/types/components/UserCompanySelector/types.d.ts +48 -0
- package/dist/umd/types/icons/AI.d.ts +3 -0
- package/dist/umd/types/icons/API.d.ts +3 -0
- package/dist/umd/types/icons/Airtable.d.ts +3 -0
- package/dist/umd/types/icons/AppSetup.d.ts +3 -0
- package/dist/umd/types/icons/Archive.d.ts +3 -0
- package/dist/umd/types/icons/ArrowDownSolid.d.ts +3 -0
- package/dist/umd/types/icons/ArrowLeft.d.ts +3 -0
- package/dist/umd/types/icons/ArrowNE.d.ts +3 -0
- package/dist/umd/types/icons/ArrowRight.d.ts +3 -0
- package/dist/umd/types/icons/ArrowUpSolid.d.ts +3 -0
- package/dist/umd/types/icons/AssemblyLogo.d.ts +3 -0
- package/dist/umd/types/icons/At.d.ts +3 -0
- package/dist/umd/types/icons/Attachment.d.ts +3 -0
- package/dist/umd/types/icons/Authentication.d.ts +3 -0
- package/dist/umd/types/icons/Automation.d.ts +3 -0
- package/dist/umd/types/icons/Bank.d.ts +3 -0
- package/dist/umd/types/icons/Billing.d.ts +3 -0
- package/dist/umd/types/icons/Bold.d.ts +3 -0
- package/dist/umd/types/icons/Book.d.ts +3 -0
- package/dist/umd/types/icons/BracketsCurly.d.ts +3 -0
- package/dist/umd/types/icons/Building.d.ts +3 -0
- package/dist/umd/types/icons/CSV.d.ts +3 -0
- package/dist/umd/types/icons/Calendar.d.ts +3 -0
- package/dist/umd/types/icons/Callout.d.ts +3 -0
- package/dist/umd/types/icons/Cancel.d.ts +3 -0
- package/dist/umd/types/icons/CaretDown.d.ts +3 -0
- package/dist/umd/types/icons/CaretRight.d.ts +3 -0
- package/dist/umd/types/icons/CaretUp.d.ts +3 -0
- package/dist/umd/types/icons/Chart.d.ts +3 -0
- package/dist/umd/types/icons/Check.d.ts +3 -0
- package/dist/umd/types/icons/Checklist.d.ts +3 -0
- package/dist/umd/types/icons/ChevronDown.d.ts +3 -0
- package/dist/umd/types/icons/ChevronLeft.d.ts +3 -0
- package/dist/umd/types/icons/ChevronRight.d.ts +3 -0
- package/dist/umd/types/icons/ChevronUp.d.ts +3 -0
- package/dist/umd/types/icons/Close.d.ts +3 -0
- package/dist/umd/types/icons/Code.d.ts +3 -0
- package/dist/umd/types/icons/Comment.d.ts +3 -0
- package/dist/umd/types/icons/Compass.d.ts +3 -0
- package/dist/umd/types/icons/Compose.d.ts +3 -0
- package/dist/umd/types/icons/Contract.d.ts +3 -0
- package/dist/umd/types/icons/Copy.d.ts +3 -0
- package/dist/umd/types/icons/Customization.d.ts +3 -0
- package/dist/umd/types/icons/Dash.d.ts +3 -0
- package/dist/umd/types/icons/Disconnect.d.ts +3 -0
- package/dist/umd/types/icons/Doc.d.ts +3 -0
- package/dist/umd/types/icons/Dollar.d.ts +3 -0
- package/dist/umd/types/icons/Dot.d.ts +3 -0
- package/dist/umd/types/icons/Download.d.ts +3 -0
- package/dist/umd/types/icons/DragDrop.d.ts +3 -0
- package/dist/umd/types/icons/Duplicate.d.ts +3 -0
- package/dist/umd/types/icons/Edit.d.ts +3 -0
- package/dist/umd/types/icons/EditSolid.d.ts +3 -0
- package/dist/umd/types/icons/Ellipsis.d.ts +3 -0
- package/dist/umd/types/icons/Email.d.ts +3 -0
- package/dist/umd/types/icons/EmailRead.d.ts +3 -0
- package/dist/umd/types/icons/EmailUnread.d.ts +3 -0
- package/dist/umd/types/icons/Excel.d.ts +3 -0
- package/dist/umd/types/icons/Export.d.ts +3 -0
- package/dist/umd/types/icons/Eye.d.ts +3 -0
- package/dist/umd/types/icons/EyeHidden.d.ts +3 -0
- package/dist/umd/types/icons/Failed.d.ts +3 -0
- package/dist/umd/types/icons/FailedSolid.d.ts +3 -0
- package/dist/umd/types/icons/File.d.ts +3 -0
- package/dist/umd/types/icons/Files.d.ts +3 -0
- package/dist/umd/types/icons/Filter.d.ts +3 -0
- package/dist/umd/types/icons/FitToWidth.d.ts +3 -0
- package/dist/umd/types/icons/FolderLocked.d.ts +3 -0
- package/dist/umd/types/icons/Form.d.ts +3 -0
- package/dist/umd/types/icons/GIF.d.ts +3 -0
- package/dist/umd/types/icons/Gauge.d.ts +3 -0
- package/dist/umd/types/icons/Gift.d.ts +3 -0
- package/dist/umd/types/icons/GraphBarSolid.d.ts +3 -0
- package/dist/umd/types/icons/H1.d.ts +3 -0
- package/dist/umd/types/icons/H2.d.ts +3 -0
- package/dist/umd/types/icons/H3.d.ts +3 -0
- package/dist/umd/types/icons/Helpdesk.d.ts +3 -0
- package/dist/umd/types/icons/Home.d.ts +3 -0
- package/dist/umd/types/icons/Image.d.ts +3 -0
- package/dist/umd/types/icons/ImageMissing.d.ts +3 -0
- package/dist/umd/types/icons/InProgress.d.ts +3 -0
- package/dist/umd/types/icons/Inbox.d.ts +3 -0
- package/dist/umd/types/icons/Info.d.ts +3 -0
- package/dist/umd/types/icons/InfoSolid.d.ts +3 -0
- package/dist/umd/types/icons/Insert.d.ts +3 -0
- package/dist/umd/types/icons/Invite.d.ts +3 -0
- package/dist/umd/types/icons/Invoice.d.ts +3 -0
- package/dist/umd/types/icons/InvoicePaid.d.ts +3 -0
- package/dist/umd/types/icons/Italicize.d.ts +3 -0
- package/dist/umd/types/icons/JPG.d.ts +3 -0
- package/dist/umd/types/icons/Lead.d.ts +3 -0
- package/dist/umd/types/icons/Link.d.ts +3 -0
- package/dist/umd/types/icons/List.d.ts +3 -0
- package/dist/umd/types/icons/Location.d.ts +3 -0
- package/dist/umd/types/icons/LockFilled.d.ts +3 -0
- package/dist/umd/types/icons/LogOut.d.ts +3 -0
- package/dist/umd/types/icons/MOV.d.ts +3 -0
- package/dist/umd/types/icons/MP3.d.ts +3 -0
- package/dist/umd/types/icons/MP4.d.ts +3 -0
- package/dist/umd/types/icons/Marketing.d.ts +3 -0
- package/dist/umd/types/icons/MassFileShare.d.ts +3 -0
- package/dist/umd/types/icons/Mention.d.ts +3 -0
- package/dist/umd/types/icons/Menu.d.ts +3 -0
- package/dist/umd/types/icons/Message.d.ts +3 -0
- package/dist/umd/types/icons/Minus.d.ts +3 -0
- package/dist/umd/types/icons/MobileNumber.d.ts +3 -0
- package/dist/umd/types/icons/MoreVertical.d.ts +3 -0
- package/dist/umd/types/icons/Movie.d.ts +3 -0
- package/dist/umd/types/icons/New.d.ts +3 -0
- package/dist/umd/types/icons/Notification.d.ts +3 -0
- package/dist/umd/types/icons/Number.d.ts +3 -0
- package/dist/umd/types/icons/NumberedList.d.ts +3 -0
- package/dist/umd/types/icons/PDF.d.ts +3 -0
- package/dist/umd/types/icons/PNG.d.ts +3 -0
- package/dist/umd/types/icons/Pause.d.ts +3 -0
- package/dist/umd/types/icons/Pin.d.ts +3 -0
- package/dist/umd/types/icons/PlansPayments.d.ts +3 -0
- package/dist/umd/types/icons/Play.d.ts +3 -0
- package/dist/umd/types/icons/Plus.d.ts +3 -0
- package/dist/umd/types/icons/Profile.d.ts +3 -0
- package/dist/umd/types/icons/Puzzle.d.ts +3 -0
- package/dist/umd/types/icons/QuestionMark.d.ts +3 -0
- package/dist/umd/types/icons/QuickBook.d.ts +3 -0
- package/dist/umd/types/icons/Repeat.d.ts +3 -0
- package/dist/umd/types/icons/Reply.d.ts +3 -0
- package/dist/umd/types/icons/Reposition.d.ts +3 -0
- package/dist/umd/types/icons/ResetZoom.d.ts +3 -0
- package/dist/umd/types/icons/SVG.d.ts +3 -0
- package/dist/umd/types/icons/Scale.d.ts +3 -0
- package/dist/umd/types/icons/Search.d.ts +3 -0
- package/dist/umd/types/icons/Send.d.ts +3 -0
- package/dist/umd/types/icons/SendFilled.d.ts +3 -0
- package/dist/umd/types/icons/Settings.d.ts +3 -0
- package/dist/umd/types/icons/Share.d.ts +3 -0
- package/dist/umd/types/icons/ShoppingBag.d.ts +3 -0
- package/dist/umd/types/icons/Sidebar.d.ts +3 -0
- package/dist/umd/types/icons/SidebarFilled.d.ts +3 -0
- package/dist/umd/types/icons/Smile.d.ts +3 -0
- package/dist/umd/types/icons/Spinner.d.ts +3 -0
- package/dist/umd/types/icons/SquareSolid.d.ts +3 -0
- package/dist/umd/types/icons/Star.d.ts +3 -0
- package/dist/umd/types/icons/Store.d.ts +3 -0
- package/dist/umd/types/icons/Strikethrough.d.ts +3 -0
- package/dist/umd/types/icons/Subtask.d.ts +3 -0
- package/dist/umd/types/icons/Success.d.ts +3 -0
- package/dist/umd/types/icons/SuccessSolid.d.ts +3 -0
- package/dist/umd/types/icons/Table.d.ts +3 -0
- package/dist/umd/types/icons/Tag.d.ts +3 -0
- package/dist/umd/types/icons/Tasks.d.ts +3 -0
- package/dist/umd/types/icons/Teams.d.ts +3 -0
- package/dist/umd/types/icons/Templates.d.ts +3 -0
- package/dist/umd/types/icons/Text.d.ts +3 -0
- package/dist/umd/types/icons/ThumbsDown.d.ts +3 -0
- package/dist/umd/types/icons/ThumbsUp.d.ts +3 -0
- package/dist/umd/types/icons/Time.d.ts +3 -0
- package/dist/umd/types/icons/ToDo.d.ts +3 -0
- package/dist/umd/types/icons/Trash.d.ts +3 -0
- package/dist/umd/types/icons/UnPin.d.ts +3 -0
- package/dist/umd/types/icons/Unarchive.d.ts +3 -0
- package/dist/umd/types/icons/Underline.d.ts +3 -0
- package/dist/umd/types/icons/Unlock.d.ts +3 -0
- package/dist/umd/types/icons/UnorderedList.d.ts +3 -0
- package/dist/umd/types/icons/Upload.d.ts +3 -0
- package/dist/umd/types/icons/Warning.d.ts +3 -0
- package/dist/umd/types/icons/WarningSolid.d.ts +3 -0
- package/dist/umd/types/icons/Web.d.ts +3 -0
- package/dist/umd/types/icons/ZIP.d.ts +3 -0
- package/dist/umd/types/icons/index.d.ts +167 -0
- package/dist/umd/types/index.d.ts +22 -0
- package/dist/umd/types/theme/colors.d.ts +36 -0
- package/dist/umd/types/theme/semantic.d.ts +43 -0
- package/dist/umd/types/tsconfig.tsbuildinfo +1 -0
- package/docs/ENV_SETUP.md +72 -0
- package/next.config.cjs +8 -0
- package/package.json +94 -0
- package/pull_request_template.md +17 -0
- package/tsconfig.json +49 -0
- package/vercel.json +8 -0
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
// This file is generated by a script. Do not edit this file directly.
|
|
2
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
3
|
+
(function (global, factory) {
|
|
4
|
+
if (typeof define === "function" && define.amd) {
|
|
5
|
+
define(["exports", "react"], factory);
|
|
6
|
+
} else if (typeof exports !== "undefined") {
|
|
7
|
+
factory(exports, require("react"));
|
|
8
|
+
} else {
|
|
9
|
+
var mod = {
|
|
10
|
+
exports: {}
|
|
11
|
+
};
|
|
12
|
+
factory(mod.exports, global.react);
|
|
13
|
+
global.SVG = mod.exports;
|
|
14
|
+
}
|
|
15
|
+
})(typeof globalThis !== "undefined" ? globalThis : typeof self !== "undefined" ? self : this, function (_exports, React) {
|
|
16
|
+
"use strict";
|
|
17
|
+
|
|
18
|
+
Object.defineProperty(_exports, "__esModule", {
|
|
19
|
+
value: true
|
|
20
|
+
});
|
|
21
|
+
_exports.SVG = void 0;
|
|
22
|
+
React = _interopRequireWildcard(React);
|
|
23
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
24
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n["default"] = e, t && t.set(e, n), n; }
|
|
25
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
26
|
+
var SVG = _exports.SVG = function SVG(props) {
|
|
27
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
28
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
29
|
+
fill: "none",
|
|
30
|
+
viewBox: "0 0 20 20"
|
|
31
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
32
|
+
fill: "currentColor",
|
|
33
|
+
d: "M2.5 18.125h1.875V20H2.5A2.5 2.5 0 0 1 0 17.5v-15C0 1.121 1.121 0 2.5 0h6.465c.664 0 1.3.262 1.77.73l3.535 3.536a2.5 2.5 0 0 1 .73 1.77v5.839h-1.875V6.25H10c-.691 0-1.25-.559-1.25-1.25V1.875H2.5a.627.627 0 0 0-.625.625v15c0 .344.281.625.625.625m5.535-4.375h1.027c.344 0 .626.281.626.625a.627.627 0 0 1-.626.625H8.036a.536.536 0 0 0-.535.535c0 .203.113.387.297.477l1.219.61a1.785 1.785 0 0 1-.8 3.379H6.874a.627.627 0 0 1-.625-.626c0-.344.281-.625.625-.625h1.34a.536.536 0 0 0 .535-.535.53.53 0 0 0-.297-.477l-1.219-.61a1.783 1.783 0 0 1 .801-3.378m9.778 0h.625c.863 0 1.562.7 1.562 1.563v.312a.627.627 0 0 1-.625.625.627.627 0 0 1-.625-.625v-.312a.313.313 0 0 0-.312-.313h-.625a.313.313 0 0 0-.313.313v3.124c0 .172.14.313.313.313h.625c.171 0 .312-.14.312-.312v-.313a.627.627 0 0 1-.625-.625c0-.344.281-.625.625-.625h.625c.344 0 .625.281.625.625v.938C20 19.3 19.3 20 18.438 20h-.625c-.864 0-1.563-.7-1.563-1.562v-3.125c0-.864.7-1.563 1.563-1.563m-5.938 0c.344 0 .625.281.625.625v1.234c0 .899.215 1.782.625 2.579.41-.793.625-1.676.625-2.579v-1.234c0-.344.281-.625.625-.625s.625.281.625.625v1.234a6.87 6.87 0 0 1-1.156 3.813l-.2.3a.623.623 0 0 1-1.039 0l-.199-.3a6.87 6.87 0 0 1-1.156-3.813v-1.234c0-.344.281-.625.625-.625"
|
|
34
|
+
}));
|
|
35
|
+
};
|
|
36
|
+
});
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
// This file is generated by a script. Do not edit this file directly.
|
|
2
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
3
|
+
(function (global, factory) {
|
|
4
|
+
if (typeof define === "function" && define.amd) {
|
|
5
|
+
define(["exports", "react"], factory);
|
|
6
|
+
} else if (typeof exports !== "undefined") {
|
|
7
|
+
factory(exports, require("react"));
|
|
8
|
+
} else {
|
|
9
|
+
var mod = {
|
|
10
|
+
exports: {}
|
|
11
|
+
};
|
|
12
|
+
factory(mod.exports, global.react);
|
|
13
|
+
global.Scale = mod.exports;
|
|
14
|
+
}
|
|
15
|
+
})(typeof globalThis !== "undefined" ? globalThis : typeof self !== "undefined" ? self : this, function (_exports, React) {
|
|
16
|
+
"use strict";
|
|
17
|
+
|
|
18
|
+
Object.defineProperty(_exports, "__esModule", {
|
|
19
|
+
value: true
|
|
20
|
+
});
|
|
21
|
+
_exports.Scale = void 0;
|
|
22
|
+
React = _interopRequireWildcard(React);
|
|
23
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
24
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n["default"] = e, t && t.set(e, n), n; }
|
|
25
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
26
|
+
var Scale = _exports.Scale = function Scale(props) {
|
|
27
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
28
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
29
|
+
fill: "none",
|
|
30
|
+
viewBox: "0 0 20 20"
|
|
31
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
32
|
+
fill: "currentColor",
|
|
33
|
+
d: "M13.172.77h5.192c.48 0 .866.386.866.865v5.192a.864.864 0 0 1-1.479.613l-1.406-1.406-3.137 3.137a.86.86 0 0 1-1.222 0l-1.154-1.154a.86.86 0 0 1 0-1.222l3.137-3.137-1.41-1.41A.867.867 0 0 1 13.172.77M6.827 19.23H1.635a.863.863 0 0 1-.865-.865v-5.192a.864.864 0 0 1 1.478-.613l1.406 1.406 3.137-3.137a.86.86 0 0 1 1.222 0l1.154 1.154a.86.86 0 0 1 0 1.222L6.03 16.342l1.406 1.406a.866.866 0 0 1-.613 1.478z"
|
|
34
|
+
}));
|
|
35
|
+
};
|
|
36
|
+
});
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
// This file is generated by a script. Do not edit this file directly.
|
|
2
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
3
|
+
(function (global, factory) {
|
|
4
|
+
if (typeof define === "function" && define.amd) {
|
|
5
|
+
define(["exports", "react"], factory);
|
|
6
|
+
} else if (typeof exports !== "undefined") {
|
|
7
|
+
factory(exports, require("react"));
|
|
8
|
+
} else {
|
|
9
|
+
var mod = {
|
|
10
|
+
exports: {}
|
|
11
|
+
};
|
|
12
|
+
factory(mod.exports, global.react);
|
|
13
|
+
global.Search = mod.exports;
|
|
14
|
+
}
|
|
15
|
+
})(typeof globalThis !== "undefined" ? globalThis : typeof self !== "undefined" ? self : this, function (_exports, React) {
|
|
16
|
+
"use strict";
|
|
17
|
+
|
|
18
|
+
Object.defineProperty(_exports, "__esModule", {
|
|
19
|
+
value: true
|
|
20
|
+
});
|
|
21
|
+
_exports.Search = void 0;
|
|
22
|
+
React = _interopRequireWildcard(React);
|
|
23
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
24
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n["default"] = e, t && t.set(e, n), n; }
|
|
25
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
26
|
+
var Search = _exports.Search = function Search(props) {
|
|
27
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
28
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
29
|
+
fill: "none",
|
|
30
|
+
viewBox: "0 0 20 20"
|
|
31
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
32
|
+
fill: "currentColor",
|
|
33
|
+
d: "M13.554 8.478a5.077 5.077 0 1 0-10.155 0 5.077 5.077 0 0 0 10.154 0m-.981 5.176A6.6 6.6 0 0 1 1.875 8.478a6.6 6.6 0 0 1 6.6-6.601 6.6 6.6 0 0 1 5.177 10.698l4.25 4.25a.761.761 0 0 1-1.076 1.076z"
|
|
34
|
+
}));
|
|
35
|
+
};
|
|
36
|
+
});
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
// This file is generated by a script. Do not edit this file directly.
|
|
2
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
3
|
+
(function (global, factory) {
|
|
4
|
+
if (typeof define === "function" && define.amd) {
|
|
5
|
+
define(["exports", "react"], factory);
|
|
6
|
+
} else if (typeof exports !== "undefined") {
|
|
7
|
+
factory(exports, require("react"));
|
|
8
|
+
} else {
|
|
9
|
+
var mod = {
|
|
10
|
+
exports: {}
|
|
11
|
+
};
|
|
12
|
+
factory(mod.exports, global.react);
|
|
13
|
+
global.Send = mod.exports;
|
|
14
|
+
}
|
|
15
|
+
})(typeof globalThis !== "undefined" ? globalThis : typeof self !== "undefined" ? self : this, function (_exports, React) {
|
|
16
|
+
"use strict";
|
|
17
|
+
|
|
18
|
+
Object.defineProperty(_exports, "__esModule", {
|
|
19
|
+
value: true
|
|
20
|
+
});
|
|
21
|
+
_exports.Send = void 0;
|
|
22
|
+
React = _interopRequireWildcard(React);
|
|
23
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
24
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n["default"] = e, t && t.set(e, n), n; }
|
|
25
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
26
|
+
var Send = _exports.Send = function Send(props) {
|
|
27
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
28
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
29
|
+
fill: "none",
|
|
30
|
+
viewBox: "0 0 20 20"
|
|
31
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
32
|
+
fill: "currentColor",
|
|
33
|
+
d: "M5.23 9.063 2.57 3.746l12.407 5.317zm0 1.875h9.747L2.571 16.254l2.656-5.316zM1.744 1.352A1.25 1.25 0 0 0 .34 1.64c-.36.379-.441.95-.207 1.418L3.602 10 .133 16.942A1.25 1.25 0 0 0 .34 18.36c.36.382.918.496 1.403.293l17.5-7.5c.46-.196.757-.649.757-1.149s-.296-.953-.757-1.148l-17.5-7.5z"
|
|
34
|
+
}));
|
|
35
|
+
};
|
|
36
|
+
});
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
// This file is generated by a script. Do not edit this file directly.
|
|
2
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
3
|
+
(function (global, factory) {
|
|
4
|
+
if (typeof define === "function" && define.amd) {
|
|
5
|
+
define(["exports", "react"], factory);
|
|
6
|
+
} else if (typeof exports !== "undefined") {
|
|
7
|
+
factory(exports, require("react"));
|
|
8
|
+
} else {
|
|
9
|
+
var mod = {
|
|
10
|
+
exports: {}
|
|
11
|
+
};
|
|
12
|
+
factory(mod.exports, global.react);
|
|
13
|
+
global.SendFilled = mod.exports;
|
|
14
|
+
}
|
|
15
|
+
})(typeof globalThis !== "undefined" ? globalThis : typeof self !== "undefined" ? self : this, function (_exports, React) {
|
|
16
|
+
"use strict";
|
|
17
|
+
|
|
18
|
+
Object.defineProperty(_exports, "__esModule", {
|
|
19
|
+
value: true
|
|
20
|
+
});
|
|
21
|
+
_exports.SendFilled = void 0;
|
|
22
|
+
React = _interopRequireWildcard(React);
|
|
23
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
24
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n["default"] = e, t && t.set(e, n), n; }
|
|
25
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
26
|
+
var SendFilled = _exports.SendFilled = function SendFilled(props) {
|
|
27
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
28
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
29
|
+
fill: "none",
|
|
30
|
+
viewBox: "0 0 20 20"
|
|
31
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
32
|
+
fill: "currentColor",
|
|
33
|
+
d: "M1.742 1.351a1.25 1.25 0 0 0-1.403.29c-.36.378-.441.949-.207 1.417L3.601 10 .132 16.94A1.25 1.25 0 0 0 .34 18.36c.36.383.918.496 1.403.293l17.5-7.5c.46-.195.758-.648.758-1.148s-.297-.953-.758-1.149l-17.5-7.5z"
|
|
34
|
+
}));
|
|
35
|
+
};
|
|
36
|
+
});
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
// This file is generated by a script. Do not edit this file directly.
|
|
2
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
3
|
+
(function (global, factory) {
|
|
4
|
+
if (typeof define === "function" && define.amd) {
|
|
5
|
+
define(["exports", "react"], factory);
|
|
6
|
+
} else if (typeof exports !== "undefined") {
|
|
7
|
+
factory(exports, require("react"));
|
|
8
|
+
} else {
|
|
9
|
+
var mod = {
|
|
10
|
+
exports: {}
|
|
11
|
+
};
|
|
12
|
+
factory(mod.exports, global.react);
|
|
13
|
+
global.Settings = mod.exports;
|
|
14
|
+
}
|
|
15
|
+
})(typeof globalThis !== "undefined" ? globalThis : typeof self !== "undefined" ? self : this, function (_exports, React) {
|
|
16
|
+
"use strict";
|
|
17
|
+
|
|
18
|
+
Object.defineProperty(_exports, "__esModule", {
|
|
19
|
+
value: true
|
|
20
|
+
});
|
|
21
|
+
_exports.Settings = void 0;
|
|
22
|
+
React = _interopRequireWildcard(React);
|
|
23
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
24
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n["default"] = e, t && t.set(e, n), n; }
|
|
25
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
26
|
+
var Settings = _exports.Settings = function Settings(props) {
|
|
27
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
28
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
29
|
+
fill: "none",
|
|
30
|
+
viewBox: "0 0 20 20"
|
|
31
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
32
|
+
fill: "currentColor",
|
|
33
|
+
d: "M10 0c.664 0 1.313.066 1.945.188.309.058.852.238 1.149.785q.118.216.18.46l.363 1.505c.054.226.437.449.66.382l1.484-.437a1.8 1.8 0 0 1 .477-.074c.629-.02 1.055.367 1.262.601a10 10 0 0 1 1.949 3.371c.101.297.219.852-.106 1.383-.086.14-.191.274-.312.39L17.93 9.622c-.164.156-.164.606 0 .762l1.12 1.066c.122.117.227.25.313.39.32.532.204 1.087.106 1.384a10 10 0 0 1-1.95 3.37c-.206.235-.636.622-1.261.602a2 2 0 0 1-.477-.074l-1.484-.441c-.223-.067-.606.156-.66.383l-.364 1.503q-.06.248-.18.461c-.3.547-.843.723-1.148.785-.632.122-1.28.188-1.945.188-.664 0-1.312-.066-1.945-.187-.309-.06-.852-.239-1.149-.786a2 2 0 0 1-.18-.46l-.363-1.505c-.054-.226-.437-.449-.66-.382l-1.484.437q-.235.07-.477.074c-.629.02-1.054-.367-1.261-.601a10 10 0 0 1-1.95-3.371c-.101-.297-.218-.852.106-1.383a2 2 0 0 1 .312-.39l1.121-1.067c.164-.156.164-.606 0-.762L.945 8.551a2 2 0 0 1-.312-.39C.313 7.628.43 7.073.53 6.78a10 10 0 0 1 1.95-3.37c.207-.235.636-.622 1.261-.602q.24.006.477.074l1.484.437c.223.067.606-.156.66-.382l.364-1.504q.06-.248.18-.461c.3-.547.843-.723 1.148-.785A10.3 10.3 0 0 1 10 0M8.52 2.008l-.332 1.37c-.305 1.263-1.77 2.106-3.016 1.743l-1.348-.398A8.2 8.2 0 0 0 2.34 7.289l1.023.973c.938.89.938 2.586 0 3.476l-1.023.973c.332.937.84 1.812 1.484 2.566l1.352-.398c1.242-.367 2.71.48 3.015 1.742l.332 1.371a8.4 8.4 0 0 0 2.965 0l.332-1.37c.305-1.263 1.77-2.106 3.016-1.743l1.352.398a8.2 8.2 0 0 0 1.484-2.566l-1.024-.973c-.937-.89-.937-2.586 0-3.476l1.024-.973a8.2 8.2 0 0 0-1.484-2.566l-1.352.398c-1.242.367-2.71-.48-3.016-1.742l-.332-1.371a8.4 8.4 0 0 0-2.965 0zM8.125 10a1.875 1.875 0 1 0 3.75 0 1.875 1.875 0 0 0-3.75 0M10 13.75a3.75 3.75 0 1 1 0-7.5 3.75 3.75 0 0 1 0 7.5"
|
|
34
|
+
}));
|
|
35
|
+
};
|
|
36
|
+
});
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
// This file is generated by a script. Do not edit this file directly.
|
|
2
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
3
|
+
(function (global, factory) {
|
|
4
|
+
if (typeof define === "function" && define.amd) {
|
|
5
|
+
define(["exports", "react"], factory);
|
|
6
|
+
} else if (typeof exports !== "undefined") {
|
|
7
|
+
factory(exports, require("react"));
|
|
8
|
+
} else {
|
|
9
|
+
var mod = {
|
|
10
|
+
exports: {}
|
|
11
|
+
};
|
|
12
|
+
factory(mod.exports, global.react);
|
|
13
|
+
global.Share = mod.exports;
|
|
14
|
+
}
|
|
15
|
+
})(typeof globalThis !== "undefined" ? globalThis : typeof self !== "undefined" ? self : this, function (_exports, React) {
|
|
16
|
+
"use strict";
|
|
17
|
+
|
|
18
|
+
Object.defineProperty(_exports, "__esModule", {
|
|
19
|
+
value: true
|
|
20
|
+
});
|
|
21
|
+
_exports.Share = void 0;
|
|
22
|
+
React = _interopRequireWildcard(React);
|
|
23
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
24
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n["default"] = e, t && t.set(e, n), n; }
|
|
25
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
26
|
+
var Share = _exports.Share = function Share(props) {
|
|
27
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
28
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
29
|
+
fill: "none",
|
|
30
|
+
viewBox: "0 0 20 20"
|
|
31
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
32
|
+
fill: "currentColor",
|
|
33
|
+
d: "M11.25 9.375H7.5a5.63 5.63 0 0 0-5.422 4.12 6.3 6.3 0 0 1-.203-1.62 5 5 0 0 1 5-5h5.313c.519 0 .937-.418.937-.938V3.902l4.691 4.223-4.691 4.223v-2.036a.935.935 0 0 0-.937-.937zm0 1.875v2.5c0 .492.29.941.742 1.14.453.2.977.118 1.344-.21l6.25-5.625c.262-.239.414-.575.414-.93s-.148-.692-.414-.93l-6.25-5.625a1.24 1.24 0 0 0-1.344-.21c-.449.202-.742.648-.742 1.14V5H6.875A6.875 6.875 0 0 0 0 11.875c0 3.047 1.508 4.93 2.684 5.941a7.428 7.428 0 0 0 .805.606c.175.117.324.199.421.254a.64.64 0 0 0 .317.074c.425 0 .77-.348.77-.77 0-.265-.142-.515-.325-.707l-.055-.054c-.094-.09-.199-.2-.3-.336a3 3 0 0 1-.196-.309c-.207-.379-.371-.895-.371-1.57 0-2.07 1.68-3.75 3.75-3.75h3.75z"
|
|
34
|
+
}));
|
|
35
|
+
};
|
|
36
|
+
});
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
// This file is generated by a script. Do not edit this file directly.
|
|
2
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
3
|
+
(function (global, factory) {
|
|
4
|
+
if (typeof define === "function" && define.amd) {
|
|
5
|
+
define(["exports", "react"], factory);
|
|
6
|
+
} else if (typeof exports !== "undefined") {
|
|
7
|
+
factory(exports, require("react"));
|
|
8
|
+
} else {
|
|
9
|
+
var mod = {
|
|
10
|
+
exports: {}
|
|
11
|
+
};
|
|
12
|
+
factory(mod.exports, global.react);
|
|
13
|
+
global.ShoppingBag = mod.exports;
|
|
14
|
+
}
|
|
15
|
+
})(typeof globalThis !== "undefined" ? globalThis : typeof self !== "undefined" ? self : this, function (_exports, React) {
|
|
16
|
+
"use strict";
|
|
17
|
+
|
|
18
|
+
Object.defineProperty(_exports, "__esModule", {
|
|
19
|
+
value: true
|
|
20
|
+
});
|
|
21
|
+
_exports.ShoppingBag = void 0;
|
|
22
|
+
React = _interopRequireWildcard(React);
|
|
23
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
24
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n["default"] = e, t && t.set(e, n), n; }
|
|
25
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
26
|
+
var ShoppingBag = _exports.ShoppingBag = function ShoppingBag(props) {
|
|
27
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
28
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
29
|
+
fill: "none",
|
|
30
|
+
viewBox: "0 0 20 20"
|
|
31
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
32
|
+
fill: "currentColor",
|
|
33
|
+
d: "M7.5 4.375V6.25h5V4.375c0-1.379-1.121-2.5-2.5-2.5a2.5 2.5 0 0 0-2.5 2.5m-1.875 3.75h-2.5v8.125c0 1.035.84 1.875 1.875 1.875h10c1.035 0 1.875-.84 1.875-1.875V8.125h-2.5v2.188c0 .519-.418.937-.937.937a.935.935 0 0 1-.938-.937V8.124h-5v2.188c0 .519-.418.937-.937.937a.935.935 0 0 1-.938-.937zm0-1.875V4.375A4.373 4.373 0 0 1 10 0a4.373 4.373 0 0 1 4.375 4.375V6.25h2.5c1.035 0 1.875.84 1.875 1.875v8.125c0 2.07-1.68 3.75-3.75 3.75H5c-2.07 0-3.75-1.68-3.75-3.75V8.125c0-1.035.84-1.875 1.875-1.875z"
|
|
34
|
+
}));
|
|
35
|
+
};
|
|
36
|
+
});
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
// This file is generated by a script. Do not edit this file directly.
|
|
2
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
3
|
+
(function (global, factory) {
|
|
4
|
+
if (typeof define === "function" && define.amd) {
|
|
5
|
+
define(["exports", "react"], factory);
|
|
6
|
+
} else if (typeof exports !== "undefined") {
|
|
7
|
+
factory(exports, require("react"));
|
|
8
|
+
} else {
|
|
9
|
+
var mod = {
|
|
10
|
+
exports: {}
|
|
11
|
+
};
|
|
12
|
+
factory(mod.exports, global.react);
|
|
13
|
+
global.Sidebar = mod.exports;
|
|
14
|
+
}
|
|
15
|
+
})(typeof globalThis !== "undefined" ? globalThis : typeof self !== "undefined" ? self : this, function (_exports, React) {
|
|
16
|
+
"use strict";
|
|
17
|
+
|
|
18
|
+
Object.defineProperty(_exports, "__esModule", {
|
|
19
|
+
value: true
|
|
20
|
+
});
|
|
21
|
+
_exports.Sidebar = void 0;
|
|
22
|
+
React = _interopRequireWildcard(React);
|
|
23
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
24
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n["default"] = e, t && t.set(e, n), n; }
|
|
25
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
26
|
+
var Sidebar = _exports.Sidebar = function Sidebar(props) {
|
|
27
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
28
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
29
|
+
fill: "none",
|
|
30
|
+
viewBox: "0 0 20 20"
|
|
31
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
32
|
+
fill: "currentColor",
|
|
33
|
+
d: "M2.5 2.5c-.691 0-1.25.559-1.25 1.25v12.5c0 .691.559 1.25 1.25 1.25h8.75v-15zm15 0h-5v15h5c.691 0 1.25-.559 1.25-1.25V3.75c0-.691-.559-1.25-1.25-1.25m0-1.25c1.379 0 2.5 1.121 2.5 2.5v12.5c0 1.379-1.121 2.5-2.5 2.5h-15a2.5 2.5 0 0 1-2.5-2.5V3.75c0-1.379 1.121-2.5 2.5-2.5z"
|
|
34
|
+
}));
|
|
35
|
+
};
|
|
36
|
+
});
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
// This file is generated by a script. Do not edit this file directly.
|
|
2
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
3
|
+
(function (global, factory) {
|
|
4
|
+
if (typeof define === "function" && define.amd) {
|
|
5
|
+
define(["exports", "react"], factory);
|
|
6
|
+
} else if (typeof exports !== "undefined") {
|
|
7
|
+
factory(exports, require("react"));
|
|
8
|
+
} else {
|
|
9
|
+
var mod = {
|
|
10
|
+
exports: {}
|
|
11
|
+
};
|
|
12
|
+
factory(mod.exports, global.react);
|
|
13
|
+
global.SidebarFilled = mod.exports;
|
|
14
|
+
}
|
|
15
|
+
})(typeof globalThis !== "undefined" ? globalThis : typeof self !== "undefined" ? self : this, function (_exports, React) {
|
|
16
|
+
"use strict";
|
|
17
|
+
|
|
18
|
+
Object.defineProperty(_exports, "__esModule", {
|
|
19
|
+
value: true
|
|
20
|
+
});
|
|
21
|
+
_exports.SidebarFilled = void 0;
|
|
22
|
+
React = _interopRequireWildcard(React);
|
|
23
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
24
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n["default"] = e, t && t.set(e, n), n; }
|
|
25
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
26
|
+
var SidebarFilled = _exports.SidebarFilled = function SidebarFilled(props) {
|
|
27
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
28
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
29
|
+
fill: "none",
|
|
30
|
+
viewBox: "0 0 20 20"
|
|
31
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
32
|
+
fill: "currentColor",
|
|
33
|
+
d: "M11.25 3.125v13.75H2.5a.627.627 0 0 1-.625-.625V3.75c0-.344.281-.625.625-.625zM20 3.75c0-1.379-1.121-2.5-2.5-2.5h-15A2.5 2.5 0 0 0 0 3.75v12.5c0 1.379 1.121 2.5 2.5 2.5h15c1.379 0 2.5-1.121 2.5-2.5z"
|
|
34
|
+
}));
|
|
35
|
+
};
|
|
36
|
+
});
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
// This file is generated by a script. Do not edit this file directly.
|
|
2
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
3
|
+
(function (global, factory) {
|
|
4
|
+
if (typeof define === "function" && define.amd) {
|
|
5
|
+
define(["exports", "react"], factory);
|
|
6
|
+
} else if (typeof exports !== "undefined") {
|
|
7
|
+
factory(exports, require("react"));
|
|
8
|
+
} else {
|
|
9
|
+
var mod = {
|
|
10
|
+
exports: {}
|
|
11
|
+
};
|
|
12
|
+
factory(mod.exports, global.react);
|
|
13
|
+
global.Smile = mod.exports;
|
|
14
|
+
}
|
|
15
|
+
})(typeof globalThis !== "undefined" ? globalThis : typeof self !== "undefined" ? self : this, function (_exports, React) {
|
|
16
|
+
"use strict";
|
|
17
|
+
|
|
18
|
+
Object.defineProperty(_exports, "__esModule", {
|
|
19
|
+
value: true
|
|
20
|
+
});
|
|
21
|
+
_exports.Smile = void 0;
|
|
22
|
+
React = _interopRequireWildcard(React);
|
|
23
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
24
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n["default"] = e, t && t.set(e, n), n; }
|
|
25
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
26
|
+
var Smile = _exports.Smile = function Smile(props) {
|
|
27
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
28
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
29
|
+
fill: "none",
|
|
30
|
+
viewBox: "0 0 20 20"
|
|
31
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
32
|
+
fill: "currentColor",
|
|
33
|
+
d: "M18.125 10a8.125 8.125 0 1 0-16.25 0 8.125 8.125 0 0 0 16.25 0M0 10a10 10 0 1 1 20 0 10 10 0 0 1-20 0m6.938 2.426A4.12 4.12 0 0 0 10 13.75a4.12 4.12 0 0 0 3.063-1.324.938.938 0 0 1 1.378 1.27 5.98 5.98 0 0 1-4.437 1.929 5.96 5.96 0 0 1-4.438-1.93.935.935 0 0 1 .055-1.324.934.934 0 0 1 1.324.055zM5.64 8.125a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0m7.5-1.25a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5"
|
|
34
|
+
}));
|
|
35
|
+
};
|
|
36
|
+
});
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
// This file is generated by a script. Do not edit this file directly.
|
|
2
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
3
|
+
(function (global, factory) {
|
|
4
|
+
if (typeof define === "function" && define.amd) {
|
|
5
|
+
define(["exports", "react"], factory);
|
|
6
|
+
} else if (typeof exports !== "undefined") {
|
|
7
|
+
factory(exports, require("react"));
|
|
8
|
+
} else {
|
|
9
|
+
var mod = {
|
|
10
|
+
exports: {}
|
|
11
|
+
};
|
|
12
|
+
factory(mod.exports, global.react);
|
|
13
|
+
global.Spinner = mod.exports;
|
|
14
|
+
}
|
|
15
|
+
})(typeof globalThis !== "undefined" ? globalThis : typeof self !== "undefined" ? self : this, function (_exports, React) {
|
|
16
|
+
"use strict";
|
|
17
|
+
|
|
18
|
+
Object.defineProperty(_exports, "__esModule", {
|
|
19
|
+
value: true
|
|
20
|
+
});
|
|
21
|
+
_exports.Spinner = void 0;
|
|
22
|
+
React = _interopRequireWildcard(React);
|
|
23
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
24
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n["default"] = e, t && t.set(e, n), n; }
|
|
25
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
26
|
+
var Spinner = _exports.Spinner = function Spinner(props) {
|
|
27
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
28
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
29
|
+
fill: "none",
|
|
30
|
+
viewBox: "0 0 20 20"
|
|
31
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
32
|
+
fill: "currentColor",
|
|
33
|
+
d: "M17.852 14.531c.449.258 1.027.106 1.242-.363A10 10 0 0 0 20 10C20 4.793 16.02.516 10.938.043 10.422-.004 10 .418 10 .938s.422.933.938.992A8.123 8.123 0 0 1 18.125 10a8.15 8.15 0 0 1-.664 3.227c-.207.476-.059 1.047.39 1.308z"
|
|
34
|
+
}));
|
|
35
|
+
};
|
|
36
|
+
});
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
// This file is generated by a script. Do not edit this file directly.
|
|
2
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
3
|
+
(function (global, factory) {
|
|
4
|
+
if (typeof define === "function" && define.amd) {
|
|
5
|
+
define(["exports", "react"], factory);
|
|
6
|
+
} else if (typeof exports !== "undefined") {
|
|
7
|
+
factory(exports, require("react"));
|
|
8
|
+
} else {
|
|
9
|
+
var mod = {
|
|
10
|
+
exports: {}
|
|
11
|
+
};
|
|
12
|
+
factory(mod.exports, global.react);
|
|
13
|
+
global.SquareSolid = mod.exports;
|
|
14
|
+
}
|
|
15
|
+
})(typeof globalThis !== "undefined" ? globalThis : typeof self !== "undefined" ? self : this, function (_exports, React) {
|
|
16
|
+
"use strict";
|
|
17
|
+
|
|
18
|
+
Object.defineProperty(_exports, "__esModule", {
|
|
19
|
+
value: true
|
|
20
|
+
});
|
|
21
|
+
_exports.SquareSolid = void 0;
|
|
22
|
+
React = _interopRequireWildcard(React);
|
|
23
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
24
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n["default"] = e, t && t.set(e, n), n; }
|
|
25
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
26
|
+
var SquareSolid = _exports.SquareSolid = function SquareSolid(props) {
|
|
27
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
28
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
29
|
+
fill: "none",
|
|
30
|
+
viewBox: "0 0 20 20"
|
|
31
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
32
|
+
fill: "currentColor",
|
|
33
|
+
d: "M0 2.857A2.86 2.86 0 0 1 2.857 0h14.286A2.86 2.86 0 0 1 20 2.857v14.286A2.86 2.86 0 0 1 17.143 20H2.857A2.86 2.86 0 0 1 0 17.143z"
|
|
34
|
+
}));
|
|
35
|
+
};
|
|
36
|
+
});
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
// This file is generated by a script. Do not edit this file directly.
|
|
2
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
3
|
+
(function (global, factory) {
|
|
4
|
+
if (typeof define === "function" && define.amd) {
|
|
5
|
+
define(["exports", "react"], factory);
|
|
6
|
+
} else if (typeof exports !== "undefined") {
|
|
7
|
+
factory(exports, require("react"));
|
|
8
|
+
} else {
|
|
9
|
+
var mod = {
|
|
10
|
+
exports: {}
|
|
11
|
+
};
|
|
12
|
+
factory(mod.exports, global.react);
|
|
13
|
+
global.Star = mod.exports;
|
|
14
|
+
}
|
|
15
|
+
})(typeof globalThis !== "undefined" ? globalThis : typeof self !== "undefined" ? self : this, function (_exports, React) {
|
|
16
|
+
"use strict";
|
|
17
|
+
|
|
18
|
+
Object.defineProperty(_exports, "__esModule", {
|
|
19
|
+
value: true
|
|
20
|
+
});
|
|
21
|
+
_exports.Star = void 0;
|
|
22
|
+
React = _interopRequireWildcard(React);
|
|
23
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
24
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n["default"] = e, t && t.set(e, n), n; }
|
|
25
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
26
|
+
var Star = _exports.Star = function Star(props) {
|
|
27
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
28
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
29
|
+
fill: "none",
|
|
30
|
+
viewBox: "0 0 20 20"
|
|
31
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
32
|
+
fill: "currentColor",
|
|
33
|
+
d: "M9.966.347c.347 0 .664.197.815.51l2.59 5.337 5.786.854a.9.9 0 0 1 .73.615.91.91 0 0 1-.224.926l-4.195 4.162.99 5.877a.908.908 0 0 1-1.322.952l-5.174-2.765-5.166 2.761a.9.9 0 0 1-.956-.064.92.92 0 0 1-.366-.887l.99-5.878L.267 8.59a.9.9 0 0 1-.223-.926.91.91 0 0 1 .729-.615l5.785-.854L9.15.857a.91.91 0 0 1 .817-.51m0 2.984L7.983 7.418a.92.92 0 0 1-.684.502l-4.467.658 3.244 3.214a.91.91 0 0 1 .257.793l-.767 4.521 3.973-2.123a.9.9 0 0 1 .853 0l3.973 2.123-.763-4.517a.9.9 0 0 1 .257-.793l3.244-3.215-4.468-.66a.91.91 0 0 1-.683-.503z"
|
|
34
|
+
}));
|
|
35
|
+
};
|
|
36
|
+
});
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
// This file is generated by a script. Do not edit this file directly.
|
|
2
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
3
|
+
(function (global, factory) {
|
|
4
|
+
if (typeof define === "function" && define.amd) {
|
|
5
|
+
define(["exports", "react"], factory);
|
|
6
|
+
} else if (typeof exports !== "undefined") {
|
|
7
|
+
factory(exports, require("react"));
|
|
8
|
+
} else {
|
|
9
|
+
var mod = {
|
|
10
|
+
exports: {}
|
|
11
|
+
};
|
|
12
|
+
factory(mod.exports, global.react);
|
|
13
|
+
global.Store = mod.exports;
|
|
14
|
+
}
|
|
15
|
+
})(typeof globalThis !== "undefined" ? globalThis : typeof self !== "undefined" ? self : this, function (_exports, React) {
|
|
16
|
+
"use strict";
|
|
17
|
+
|
|
18
|
+
Object.defineProperty(_exports, "__esModule", {
|
|
19
|
+
value: true
|
|
20
|
+
});
|
|
21
|
+
_exports.Store = void 0;
|
|
22
|
+
React = _interopRequireWildcard(React);
|
|
23
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
24
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n["default"] = e, t && t.set(e, n), n; }
|
|
25
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
26
|
+
var Store = _exports.Store = function Store(props) {
|
|
27
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
28
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
29
|
+
fill: "none",
|
|
30
|
+
viewBox: "0 0 20 20"
|
|
31
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
32
|
+
fill: "currentColor",
|
|
33
|
+
d: "M17.609 5.608c.201.32.222.712.08 1.045-.136.32-.386.514-.698.556q-.104.014-.202.013c-.406 0-.77-.177-1.03-.458a1.67 1.67 0 0 0-2.47.004 1.37 1.37 0 0 1-1.027.458c-.41 0-.775-.177-1.028-.458a1.66 1.66 0 0 0-1.236-.549c-.473 0-.92.198-1.236.549a1.37 1.37 0 0 1-1.028.458c-.41 0-.775-.177-1.028-.458a1.66 1.66 0 0 0-1.236-.549c-.472 0-.92.198-1.236.549a1.37 1.37 0 0 1-1.23.444c-.308-.042-.555-.236-.69-.556a1.13 1.13 0 0 1 .08-1.045l1.788-2.833H15.82zm-.82 3.281q.215 0 .417-.028c1.927-.257 2.84-2.517 1.809-4.146l-1.99-3.149a.98.98 0 0 0-.83-.455H3.808a.98.98 0 0 0-.83.455L.984 4.716C-.044 6.34.866 8.6 2.786 8.86q.21.027.42.028a3.03 3.03 0 0 0 2.26-1.003A3.04 3.04 0 0 0 7.73 8.889a3.05 3.05 0 0 0 2.264-1.007 3.04 3.04 0 0 0 2.264 1.004c.688 0 1.313-.226 1.816-.601q.245-.183.448-.406.205.225.451.41a3.04 3.04 0 0 0 1.813.597zM3.89 12.778V9.945a4 4 0 0 1-.68.055Q2.92 10 2.642 9.962H2.64a4 4 0 0 1-.417-.08v6.785c0 1.226.997 2.222 2.223 2.222h11.11a2.224 2.224 0 0 0 2.223-2.222V9.882a3 3 0 0 1-.427.08h-.004a4 4 0 0 1-.562.038 4 4 0 0 1-.674-.055v2.833zm12.222 1.667v2.222c0 .305-.25.555-.555.555H4.446a.557.557 0 0 1-.556-.555v-2.222z"
|
|
34
|
+
}));
|
|
35
|
+
};
|
|
36
|
+
});
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
// This file is generated by a script. Do not edit this file directly.
|
|
2
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
3
|
+
(function (global, factory) {
|
|
4
|
+
if (typeof define === "function" && define.amd) {
|
|
5
|
+
define(["exports", "react"], factory);
|
|
6
|
+
} else if (typeof exports !== "undefined") {
|
|
7
|
+
factory(exports, require("react"));
|
|
8
|
+
} else {
|
|
9
|
+
var mod = {
|
|
10
|
+
exports: {}
|
|
11
|
+
};
|
|
12
|
+
factory(mod.exports, global.react);
|
|
13
|
+
global.Strikethrough = mod.exports;
|
|
14
|
+
}
|
|
15
|
+
})(typeof globalThis !== "undefined" ? globalThis : typeof self !== "undefined" ? self : this, function (_exports, React) {
|
|
16
|
+
"use strict";
|
|
17
|
+
|
|
18
|
+
Object.defineProperty(_exports, "__esModule", {
|
|
19
|
+
value: true
|
|
20
|
+
});
|
|
21
|
+
_exports.Strikethrough = void 0;
|
|
22
|
+
React = _interopRequireWildcard(React);
|
|
23
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
24
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n["default"] = e, t && t.set(e, n), n; }
|
|
25
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
26
|
+
var Strikethrough = _exports.Strikethrough = function Strikethrough(props) {
|
|
27
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
28
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
29
|
+
fill: "none",
|
|
30
|
+
viewBox: "0 0 20 20"
|
|
31
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
32
|
+
fill: "currentColor",
|
|
33
|
+
d: "M5.684 5.39c.156-.84.699-1.46 1.628-1.851.965-.406 2.32-.535 3.903-.293.5.078 2.047.371 2.535.5a.94.94 0 0 0 .473-1.816c-.575-.149-2.192-.457-2.723-.54-1.805-.277-3.531-.16-4.91.419-1.41.59-2.473 1.683-2.754 3.277-.004.015-.004.035-.008.05q-.163 1.374.383 2.43c.36.696.906 1.22 1.516 1.621.093.063.195.125.293.184l-5.082.004a.935.935 0 0 0-.938.937c0 .52.418.938.938.938h18.125c.519 0 .937-.418.937-.938a.935.935 0 0 0-.937-.937h-7.508c-.387-.121-.77-.234-1.14-.344l-.013-.004C8.93 8.594 7.648 8.22 6.758 7.63c-.426-.281-.711-.582-.883-.918-.164-.32-.258-.738-.191-1.32m8.535 7.778c.144.336.215.785.101 1.418-.148.851-.695 1.48-1.633 1.875-.964.406-2.32.535-3.898.293-.785-.125-2.121-.57-3.172-.922l-.637-.211a.94.94 0 0 0-1.183.602.937.937 0 0 0 .601 1.183c.157.05.344.113.547.184 1.04.347 2.594.867 3.551 1.023H8.5c1.805.277 3.531.16 4.91-.418 1.41-.59 2.473-1.683 2.754-3.277.156-.895.094-1.7-.195-2.41h-2.235c.223.207.38.43.48.668z"
|
|
34
|
+
}));
|
|
35
|
+
};
|
|
36
|
+
});
|