@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.MOV = 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.MOV = 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 MOV = _exports.MOV = function MOV(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.125h.625V20H2.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.625m3.66-4.07 1.34 2.23 1.34-2.23a.626.626 0 0 1 1.16.32v5a.627.627 0 0 1-.625.625.627.627 0 0 1-.625-.625v-2.742l-.715 1.191a.63.63 0 0 1-.535.305.63.63 0 0 1-.535-.305l-.715-1.191v2.742a.627.627 0 0 1-.625.625.627.627 0 0 1-.625-.625v-5a.624.624 0 0 1 1.16-.32m11.34.32v1.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.038 0l-.2-.3a6.87 6.87 0 0 1-1.156-3.813v-1.234c0-.344.281-.625.625-.625s.625.281.625.625m-6.25.938c0-.864.7-1.563 1.563-1.563h.624c.864 0 1.563.7 1.563 1.563v3.124c0 .864-.7 1.563-1.562 1.563h-.626c-.863 0-1.562-.7-1.562-1.562zM12.813 15a.313.313 0 0 0-.313.313v3.124c0 .172.14.313.313.313h.624c.172 0 .313-.14.313-.312v-3.125a.313.313 0 0 0-.312-.313z"
|
|
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.MP3 = 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.MP3 = 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 MP3 = _exports.MP3 = function MP3(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.125h.625V20H2.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.625m2.957-4.352c.27-.074.559.04.703.282l1.34 2.23 1.34-2.23a.626.626 0 0 1 1.16.32v5a.627.627 0 0 1-.625.625.627.627 0 0 1-.625-.625v-2.742l-.715 1.191a.63.63 0 0 1-.535.305.63.63 0 0 1-.535-.305l-.715-1.191v2.742a.627.627 0 0 1-.625.625.627.627 0 0 1-.625-.625v-5c0-.281.188-.527.457-.602m5.793.602c0-.344.281-.625.625-.625h1.25a2.189 2.189 0 0 1 0 4.375H12.5v1.25a.627.627 0 0 1-.625.625.627.627 0 0 1-.625-.625v-5m1.25 2.5h.625c.52 0 .938-.418.938-.937a.935.935 0 0 0-.938-.938H12.5zM18.125 20h-1.25a.627.627 0 0 1-.625-.625c0-.344.281-.625.625-.625h1.25a.627.627 0 0 0 .625-.625.627.627 0 0 0-.625-.625h-.937a.627.627 0 0 1-.625-.625q0-.034.003-.062a.624.624 0 0 1 .622-.563h.937a.627.627 0 0 0 .625-.625.627.627 0 0 0-.625-.625h-1.25a.627.627 0 0 1-.625-.625c0-.344.281-.625.625-.625h1.25a1.875 1.875 0 0 1 1.398 3.125A1.875 1.875 0 0 1 18.125 20"
|
|
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.MP4 = 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.MP4 = 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 MP4 = _exports.MP4 = function MP4(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.125h.625V20H2.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.625m3.66-4.07 1.34 2.23 1.34-2.23a.626.626 0 0 1 1.16.32v5a.627.627 0 0 1-.625.625.627.627 0 0 1-.625-.625v-2.742l-.715 1.191a.63.63 0 0 1-.535.305.63.63 0 0 1-.535-.305l-.715-1.191v2.742a.627.627 0 0 1-.625.625.627.627 0 0 1-.625-.625v-5a.624.624 0 0 1 1.16-.32m5.715-.305h1.25a2.189 2.189 0 0 1 0 4.375H12.5v1.25a.627.627 0 0 1-.625.625.627.627 0 0 1-.625-.625v-5c0-.344.281-.625.625-.625m1.25 3.125c.52 0 .938-.418.938-.937a.935.935 0 0 0-.938-.938H12.5v1.875zm3.309.441a.63.63 0 0 1-.184-.441v-2.5c0-.344.281-.625.625-.625s.625.281.625.625v1.875h1.25v-1.875c0-.344.281-.625.625-.625s.625.281.625.625v5a.627.627 0 0 1-.625.625.627.627 0 0 1-.625-.625V17.5h-1.875a.63.63 0 0 1-.441-.184"
|
|
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.Marketing = 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.Marketing = 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 Marketing = _exports.Marketing = function Marketing(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.25 3a.75.75 0 0 0-.75.75v.422l-13 3.656V7.75A.75.75 0 0 0 2.75 7a.75.75 0 0 0-.75.75v4.5c0 .416.334.75.75.75s.75-.334.75-.75v-.078l2.697.76a3 3 0 1 0 5.753 1.616l4.55 1.28v.422c0 .416.334.75.75.75s.75-.334.75-.75V3.75a.75.75 0 0 0-.75-.75m-.75 11.269-13-3.656V9.384l13-3.656zm-6.006-.132A1.501 1.501 0 0 1 7.5 14c0-.238.056-.463.153-.66l2.84.8z"
|
|
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.MassFileShare = 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.MassFileShare = 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 MassFileShare = _exports.MassFileShare = function MassFileShare(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: "M14.166 9.98V8.333a.557.557 0 0 0-.555-.556h-3.282a3.94 3.94 0 0 0-3.76 2.764 3.3 3.3 0 0 1-.18-1.097c0-2.15 1.739-3.89 3.888-3.89h3.333c.306 0 .556-.25.556-.555V3.354l3.68 3.313zm-2.222-.535h.556v1.666a1.11 1.11 0 0 0 1.11 1.111h.13c.274 0 .537-.1.742-.284l4.827-4.344c.264-.236.413-.573.413-.927s-.15-.691-.413-.927L14.51 1.42a1.203 1.203 0 0 0-2.01.896V3.89h-2.223a5.554 5.554 0 0 0-5.555 5.556c0 2.097 1.201 3.44 2.219 4.198a6.8 6.8 0 0 0 1.277.753.6.6 0 0 0 .247.049h.087a.62.62 0 0 0 .618-.618c0-.271-.184-.51-.403-.678l-.038-.027a1 1 0 0 1-.174-.143q-.043-.039-.087-.09-.04-.05-.083-.1a2 2 0 0 1-.174-.296 1.9 1.9 0 0 1-.149-.777 2.275 2.275 0 0 1 2.274-2.275h1.615zM2.777 2.222a2.5 2.5 0 0 0-2.5 2.5V16.39c0 1.382 1.118 2.5 2.5 2.5h11.667c1.382 0 2.5-1.118 2.5-2.5v-2.222a.83.83 0 0 0-.833-.833.83.83 0 0 0-.834.833v2.222a.83.83 0 0 1-.833.833H2.777a.83.83 0 0 1-.833-.833V4.722c0-.461.372-.833.833-.833H5a.83.83 0 0 0 .833-.833A.83.83 0 0 0 5 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.Mention = 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.Mention = 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 Mention = _exports.Mention = function Mention(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 3.5c-3.59 0-6.5 2.91-6.5 6.5s2.91 6.5 6.5 6.5c.416 0 .75.334.75.75s-.334.75-.75.75a8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8v.875a2.875 2.875 0 0 1-5.228 1.65A3.749 3.749 0 0 1 6.25 10a3.749 3.749 0 0 1 6.119-2.906.752.752 0 0 1 1.381.406v3.375a1.375 1.375 0 1 0 2.75 0V10c0-3.59-2.91-6.5-6.5-6.5m2.25 6.5A2.25 2.25 0 0 0 10 7.75 2.25 2.25 0 0 0 7.75 10 2.25 2.25 0 0 0 10 12.25 2.25 2.25 0 0 0 12.25 10"
|
|
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.Menu = 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.Menu = 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 Menu = _exports.Menu = function Menu(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.868c0-.593.478-1.071 1.071-1.071H18.93c.593 0 1.071.478 1.071 1.071 0 .594-.478 1.072-1.071 1.072H1.07A1.07 1.07 0 0 1 0 2.868m0 7.143C0 9.417.478 8.94 1.071 8.94H18.93c.593 0 1.071.477 1.071 1.071s-.478 1.072-1.071 1.072H1.07A1.07 1.07 0 0 1 0 10.01m20 7.143c0 .594-.478 1.071-1.071 1.071H1.07A1.07 1.07 0 0 1 0 17.154c0-.594.478-1.071 1.071-1.071H18.93c.593 0 1.071.477 1.071 1.071"
|
|
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.Message = 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.Message = 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 Message = _exports.Message = function Message(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: "M6.25 14.376c1.035 0 1.875.84 1.875 1.874v.625l2.832-2.124a1.88 1.88 0 0 1 1.125-.375H17.5a.627.627 0 0 0 .625-.625V2.5a.627.627 0 0 0-.625-.626h-15a.627.627 0 0 0-.625.625v11.25c0 .344.281.626.625.626zm1.875 4.843-.008.008-.199.148-.668.5a.63.63 0 0 1-.656.06.62.62 0 0 1-.344-.56V16.25H2.5a2.5 2.5 0 0 1-2.5-2.5V2.5C0 1.122 1.121 0 2.5 0h15C18.879 0 20 1.122 20 2.5v11.25c0 1.38-1.121 2.5-2.5 2.5h-5.418z"
|
|
34
|
+
}));
|
|
35
|
+
};
|
|
36
|
+
});
|
|
@@ -0,0 +1,38 @@
|
|
|
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.Minus = 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.Minus = 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 Minus = _exports.Minus = function Minus(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
|
+
fillRule: "evenodd",
|
|
34
|
+
d: "M1.877 10c0-.48.39-.87.87-.87h14.51a.87.87 0 1 1 0 1.741H2.746a.87.87 0 0 1-.87-.87",
|
|
35
|
+
clipRule: "evenodd"
|
|
36
|
+
}));
|
|
37
|
+
};
|
|
38
|
+
});
|
|
@@ -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.MobileNumber = 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.MobileNumber = 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 MobileNumber = _exports.MobileNumber = function MobileNumber(props) {
|
|
27
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
28
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
29
|
+
fill: "none",
|
|
30
|
+
viewBox: "0 0 20 21"
|
|
31
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
32
|
+
fill: "currentColor",
|
|
33
|
+
d: "M14.68 10.75a1.56 1.56 0 0 0-1.825.445l-1.296 1.586a12 12 0 0 1-4.34-4.34L8.8 7.148c.539-.44.722-1.183.445-1.824L7.371.95A1.56 1.56 0 0 0 5.61.035L1.234.973A1.56 1.56 0 0 0 0 2.5c0 9.031 6.844 16.469 15.629 17.402q.573.061 1.156.086h.004q.355.014.711.016a1.56 1.56 0 0 0 1.527-1.234l.938-4.375a1.56 1.56 0 0 0-.914-1.762l-4.375-1.875zm2.566 7.375C8.82 17.988 2.012 11.18 1.88 2.754l3.875-.832 1.68 3.922L6.03 6.992a1.875 1.875 0 0 0-.433 2.39 13.8 13.8 0 0 0 5.023 5.024c.797.461 1.809.278 2.39-.433l1.15-1.403 3.921 1.68z"
|
|
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.MoreVertical = 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.MoreVertical = 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 MoreVertical = _exports.MoreVertical = function MoreVertical(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 5.625a1.88 1.88 0 0 0 1.875-1.878A1.87 1.87 0 0 0 10 1.875a1.873 1.873 0 0 0-1.875 1.872v.012c0 1.034.839 1.866 1.875 1.866M10 11.875a1.88 1.88 0 0 0 1.875-1.878A1.87 1.87 0 0 0 10 8.125a1.873 1.873 0 0 0-1.875 1.872v.012c0 1.034.839 1.866 1.875 1.866M10 18.125a1.88 1.88 0 0 0 1.875-1.878A1.873 1.873 0 0 0 10 14.375a1.873 1.873 0 0 0-1.875 1.872v.012c0 1.034.839 1.866 1.875 1.866"
|
|
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.Movie = 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.Movie = 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 Movie = _exports.Movie = function Movie(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: "M15 18.125a.627.627 0 0 0 .625-.625V6.25H12.5c-.691 0-1.25-.559-1.25-1.25V1.875H5a.627.627 0 0 0-.625.625v15c0 .344.281.625.625.625zM2.5 2.5C2.5 1.121 3.621 0 5 0h6.465c.664 0 1.3.262 1.77.73l3.535 3.536a2.5 2.5 0 0 1 .73 1.77V17.5c0 1.379-1.121 2.5-2.5 2.5H5a2.5 2.5 0 0 1-2.5-2.5zm3.125 8.75c0-.691.559-1.25 1.25-1.25h3.75c.691 0 1.25.559 1.25 1.25v.625l1.754-1.168a.48.48 0 0 1 .746.398v4.04a.48.48 0 0 1-.746.398l-1.754-1.168V15c0 .691-.559 1.25-1.25 1.25h-3.75c-.691 0-1.25-.559-1.25-1.25z"
|
|
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.New = 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.New = 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 New = _exports.New = function New(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 20a10 10 0 1 0 0-20 10 10 0 0 0 0 20m-4.719-8.785a3.1 3.1 0 0 1-.906-2.188v-.14a2.953 2.953 0 0 1 5.262-1.844l.363.453.363-.453a2.953 2.953 0 0 1 5.262 1.844v.14a3.1 3.1 0 0 1-.906 2.188l-.969.969-3.75 3.75-3.75-3.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.Notification = 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.Notification = 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 Notification = _exports.Notification = function Notification(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-.692 0-1.25.559-1.25 1.25V2a6.25 6.25 0 0 0-5 6.125v.992a7.82 7.82 0 0 1-1.712 4.88l-.582.73a.935.935 0 0 0 .73 1.523h15.626a.938.938 0 0 0 .73-1.523L17.96 14a7.84 7.84 0 0 1-1.71-4.883v-.992a6.25 6.25 0 0 0-5-6.125v-.75C11.25.559 10.69 0 10 0m0 3.75a4.373 4.373 0 0 1 4.374 4.375v.992c0 1.871.543 3.695 1.55 5.258H4.075a9.7 9.7 0 0 0 1.55-5.258v-.992A4.373 4.373 0 0 1 10 3.75m2.5 13.75h-5c0 .664.26 1.3.73 1.77A2.5 2.5 0 0 0 10 20a2.5 2.5 0 0 0 1.769-.73 2.5 2.5 0 0 0 .73-1.77"
|
|
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.Number = 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.Number = 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 Number = _exports.Number = function Number(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: "M8.621 1.268a.935.935 0 0 1 .734 1.102L8.77 5.311h4.336l.66-3.308a.935.935 0 1 1 1.836.367l-.582 2.941h2.793c.519 0 .937.418.937.938s-.418.937-.937.937h-3.168l-1.125 5.625h3.043c.519 0 .937.418.937.938s-.418.937-.937.937h-3.418l-.66 3.309a.935.935 0 1 1-1.837-.367l.582-2.942H6.895l-.66 3.309a.935.935 0 1 1-1.837-.367l.582-2.942H2.187a.935.935 0 0 1-.937-.937c0-.52.418-.938.938-.938h3.167L6.48 7.186H3.437A.935.935 0 0 1 2.5 6.25c0-.52.418-.938.938-.938h3.417l.66-3.308a.935.935 0 0 1 1.102-.735zm-.226 5.918L7.27 12.811h4.336l1.124-5.625z"
|
|
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.NumberedList = 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.NumberedList = 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 NumberedList = _exports.NumberedList = function NumberedList(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: "M.783 2.188c0-.52.418-.938.937-.938h1.25c.52 0 .938.418.938.938v4.687h.625c.52 0 .937.418.937.938 0 .519-.418.937-.937.937H1.408a.935.935 0 0 1-.938-.937c0-.52.418-.938.938-.938h.625v-3.75H1.72a.935.935 0 0 1-.937-.937m2.45 11.14a.598.598 0 0 0-.938.047l-.438.605A.938.938 0 0 1 .33 12.89l.433-.609a2.476 2.476 0 0 1 3.875-.191 2.48 2.48 0 0 1-.043 3.308l-1.359 1.477h1.297c.52 0 .937.418.937.938 0 .519-.418.937-.937.937H1.095a.94.94 0 0 1-.859-.562.94.94 0 0 1 .168-1.012l2.813-3.047a.6.6 0 0 0 .011-.8zm5.05-10.515h10.625c.52 0 .937.417.937.937s-.418.938-.937.938H8.283a.935.935 0 0 1-.938-.938c0-.52.418-.937.938-.937m0 6.25h10.625c.52 0 .937.417.937.937s-.418.938-.937.938H8.283A.935.935 0 0 1 7.345 10c0-.52.418-.937.938-.937m0 6.25h10.625c.52 0 .937.417.937.937s-.418.938-.937.938H8.283a.935.935 0 0 1-.938-.938c0-.52.418-.937.938-.937"
|
|
34
|
+
}));
|
|
35
|
+
};
|
|
36
|
+
});
|