@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.Airtable = 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.Airtable = 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 Airtable = _exports.Airtable = function Airtable(props) {
|
|
27
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
28
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
29
|
+
fill: "none",
|
|
30
|
+
viewBox: "0 0 21 20"
|
|
31
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
32
|
+
fill: "currentColor",
|
|
33
|
+
d: "M8.936 1.688 1.475 4.775a.5.5 0 0 0 .007.927l7.492 2.971a2.78 2.78 0 0 0 2.05 0l7.492-2.971a.5.5 0 0 0 .007-.927l-7.461-3.087a2.78 2.78 0 0 0-2.126 0M10.664 10.296v7.422a.5.5 0 0 0 .684.465l8.349-3.24a.5.5 0 0 0 .316-.466V7.055a.5.5 0 0 0-.685-.465L10.98 9.831a.5.5 0 0 0-.316.465M8.714 10.678l-2.477 1.196-.252.121-5.23 2.507c-.332.16-.755-.082-.755-.45V7.085c0-.133.068-.248.16-.335a.6.6 0 0 1 .127-.095.53.53 0 0 1 .454-.035l7.932 3.143c.403.16.435.725.041.915"
|
|
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.AppSetup = 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.AppSetup = 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 AppSetup = _exports.AppSetup = function AppSetup(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 16.25c0 .52.418.938.938.938H3.27a3.123 3.123 0 0 0 5.96 0h9.833c.519 0 .937-.418.937-.938a.935.935 0 0 0-.937-.937H9.23a3.123 3.123 0 0 0-5.96 0H.938A.935.935 0 0 0 0 16.25m5 0a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0M12.5 10a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0m1.25-3.125a3.12 3.12 0 0 0-2.98 2.188H.938A.935.935 0 0 0 0 10c0 .52.418.938.938.938h9.832a3.124 3.124 0 0 0 5.96 0h2.332c.52 0 .938-.418.938-.938a.935.935 0 0 0-.937-.937H16.73a3.12 3.12 0 0 0-2.981-2.188M7.5 5a1.25 1.25 0 1 1 0-2.5 1.25 1.25 0 0 1 0 2.5m2.98-2.187a3.124 3.124 0 0 0-5.96 0H.938A.935.935 0 0 0 0 3.75c0 .52.418.938.938.938H4.52a3.123 3.123 0 0 0 5.96 0h8.583c.519 0 .937-.418.937-.938a.935.935 0 0 0-.937-.937z"
|
|
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.Archive = 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.Archive = 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 Archive = _exports.Archive = function Archive(props) {
|
|
27
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
28
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
29
|
+
fill: "none",
|
|
30
|
+
viewBox: "0 0 20 20"
|
|
31
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
32
|
+
fill: "currentColor",
|
|
33
|
+
d: "M1.875 3.125V5h16.25V3.125zM1.25 1.25h17.5c.691 0 1.25.559 1.25 1.25v3.125c0 .691-.559 1.25-1.25 1.25H1.25C.559 6.875 0 6.316 0 5.625V2.5c0-.691.559-1.25 1.25-1.25m5 8.438c0-.52.418-.938.938-.938h5.625c.519 0 .937.418.937.938 0 .519-.418.937-.937.937H7.187a.935.935 0 0 1-.937-.937m-5 6.562V8.125h1.875v8.125c0 .344.281.625.625.625h12.5a.627.627 0 0 0 .625-.625V8.125h1.875v8.125c0 1.379-1.121 2.5-2.5 2.5H3.75a2.5 2.5 0 0 1-2.5-2.5"
|
|
34
|
+
}));
|
|
35
|
+
};
|
|
36
|
+
});
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
// This file is generated by a script. Do not edit this file directly.
|
|
2
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
3
|
+
(function (global, factory) {
|
|
4
|
+
if (typeof define === "function" && define.amd) {
|
|
5
|
+
define(["exports", "react"], factory);
|
|
6
|
+
} else if (typeof exports !== "undefined") {
|
|
7
|
+
factory(exports, require("react"));
|
|
8
|
+
} else {
|
|
9
|
+
var mod = {
|
|
10
|
+
exports: {}
|
|
11
|
+
};
|
|
12
|
+
factory(mod.exports, global.react);
|
|
13
|
+
global.ArrowDownSolid = 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.ArrowDownSolid = 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 ArrowDownSolid = _exports.ArrowDownSolid = function ArrowDownSolid(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.886 18.383a1.25 1.25 0 0 1-1.77 0l-6.25-6.25a1.252 1.252 0 0 1 1.77-1.77l4.117 4.121V2.5c0-.691.559-1.25 1.25-1.25s1.25.559 1.25 1.25v11.98l4.117-4.113a1.252 1.252 0 0 1 1.77 1.77l-6.25 6.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.ArrowLeft = 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.ArrowLeft = 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 ArrowLeft = _exports.ArrowLeft = function ArrowLeft(props) {
|
|
27
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
28
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
29
|
+
fill: "none",
|
|
30
|
+
viewBox: "0 0 20 20"
|
|
31
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
32
|
+
fill: "currentColor",
|
|
33
|
+
d: "M1.54 10.682a.95.95 0 0 1-.29-.68c0-.258.105-.5.29-.68L8.413 2.76a.937.937 0 0 1 1.293 1.355l-5.18 4.95h13.286c.519 0 .937.418.937.937s-.418.938-.937.938H4.527l5.184 4.945a.938.938 0 0 1-1.293 1.356l-6.875-6.563z"
|
|
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.ArrowNE = 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.ArrowNE = 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 ArrowNE = _exports.ArrowNE = function ArrowNE(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.882 3.08c.575 0 1.038.463 1.038 1.038v10.378c0 .575-.463 1.038-1.038 1.038a1.036 1.036 0 0 1-1.038-1.038V6.622L4.85 16.615a1.037 1.037 0 0 1-1.467-1.466l9.994-9.989-7.878-.004a1.036 1.036 0 0 1-1.038-1.038c0-.575.463-1.038 1.038-1.038z"
|
|
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.ArrowRight = 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.ArrowRight = 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 ArrowRight = _exports.ArrowRight = function ArrowRight(props) {
|
|
27
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
28
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
29
|
+
fill: "none",
|
|
30
|
+
viewBox: "0 0 20 20"
|
|
31
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
32
|
+
fill: "currentColor",
|
|
33
|
+
d: "M18.46 10.682a.94.94 0 0 0 0-1.36L11.587 2.76a.937.937 0 0 0-1.293 1.355l5.18 4.95H2.188a.935.935 0 0 0-.938.937c0 .52.418.938.938.938h13.285l-5.184 4.945a.938.938 0 0 0 1.293 1.356l6.875-6.563z"
|
|
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.ArrowUpSolid = 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.ArrowUpSolid = 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 ArrowUpSolid = _exports.ArrowUpSolid = function ArrowUpSolid(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.886 1.616a1.25 1.25 0 0 0-1.77 0l-6.25 6.25a1.252 1.252 0 0 0 1.77 1.77l4.117-4.121v11.984c0 .691.559 1.25 1.25 1.25s1.25-.559 1.25-1.25V5.519l4.117 4.113a1.252 1.252 0 0 0 1.77-1.77l-6.25-6.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.AssemblyLogo = 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.AssemblyLogo = 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 AssemblyLogo = _exports.AssemblyLogo = function AssemblyLogo(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: "M19.998 14.435v3.375c0 1.193-.97 2.161-2.167 2.161H.597a.594.594 0 0 1-.421-1.014l4.04-4.029a1.7 1.7 0 0 1 1.194-.493zM19.998 6.813v3.374c0 1.193-.97 2.161-2.167 2.161H6.803l5.056-5.042a1.7 1.7 0 0 1 1.194-.494zM20 .624v1.941c0 1.193-.97 2.161-2.166 2.161h-3.385L18.984.204A.596.596 0 0 1 20 .624"
|
|
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.At = 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.At = 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 At = _exports.At = function At(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 1.875A8.124 8.124 0 0 0 1.875 10 8.124 8.124 0 0 0 10 18.125c.52 0 .938.418.938.938 0 .519-.418.937-.938.937-5.523 0-10-4.477-10-10S4.477 0 10 0s10 4.477 10 10v1.094a3.594 3.594 0 0 1-6.535 2.062A4.686 4.686 0 0 1 5.313 10a4.686 4.686 0 0 1 7.648-3.633.94.94 0 0 1 1.726.508v4.219a1.719 1.719 0 0 0 3.438 0V10A8.124 8.124 0 0 0 10 1.875M12.813 10a2.812 2.812 0 1 0-5.625 0 2.812 2.812 0 0 0 5.625 0"
|
|
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.Attachment = 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.Attachment = 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 Attachment = _exports.Attachment = function Attachment(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.506 3.804a2.267 2.267 0 0 0-3.209 0l-6.543 6.55a3.81 3.81 0 0 0 0 5.39 3.815 3.815 0 0 0 5.39 0l5.18-5.186a.819.819 0 0 1 1.156 1.157l-5.18 5.189a5.444 5.444 0 0 1-7.702 0 5.454 5.454 0 0 1-.004-7.71l6.547-6.55a3.907 3.907 0 0 1 5.524 5.523l-6.267 6.27a2.553 2.553 0 0 1-3.802-.211 2.56 2.56 0 0 1 .187-3.405l5.177-5.175a.819.819 0 0 1 1.156 1.156l-5.173 5.179a.915.915 0 0 0-.068 1.221.915.915 0 0 0 1.364.075l6.267-6.267a2.27 2.27 0 0 0 0-3.21z"
|
|
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.Authentication = 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.Authentication = 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 Authentication = _exports.Authentication = function Authentication(props) {
|
|
27
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
28
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
29
|
+
fill: "none",
|
|
30
|
+
viewBox: "0 0 20 20"
|
|
31
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
32
|
+
fill: "currentColor",
|
|
33
|
+
d: "M7.118 4.706v2.353H13V4.706a2.94 2.94 0 1 0-5.882 0M5.353 7.059V4.706a4.706 4.706 0 1 1 9.412 0v2.353a2.355 2.355 0 0 1 2.353 2.353v8.235A2.355 2.355 0 0 1 14.765 20H5.353A2.355 2.355 0 0 1 3 17.647V9.412a2.355 2.355 0 0 1 2.353-2.353M13 8.824H5.353a.59.59 0 0 0-.588.588v8.235a.59.59 0 0 0 .588.588h9.412a.59.59 0 0 0 .588-.588V9.412a.59.59 0 0 0-.588-.588z"
|
|
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.Automation = 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.Automation = 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 Automation = _exports.Automation = function Automation(props) {
|
|
27
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
28
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
29
|
+
fill: "none",
|
|
30
|
+
viewBox: "0 0 20 20"
|
|
31
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
32
|
+
fill: "currentColor",
|
|
33
|
+
d: "M13.342 1.25a.98.98 0 0 1 .944 1.251l-1.83 6.405h2.913a1.192 1.192 0 0 1 .773 2.102l-8.845 7.51a.98.98 0 0 1-1.58-1.019l1.83-6.405H4.593a1.153 1.153 0 0 1-.752-2.027l8.865-7.581a.97.97 0 0 1 .636-.236m-1.234 2.905L5.913 9.453h2.721c.257 0 .5.12.657.325a.8.8 0 0 1 .133.718l-1.532 5.366 6.264-5.315h-2.787c-.256 0-.499-.12-.656-.325a.8.8 0 0 1-.133-.718z"
|
|
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.Bank = 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.Bank = 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 Bank = _exports.Bank = function Bank(props) {
|
|
27
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
28
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
29
|
+
fill: "none",
|
|
30
|
+
viewBox: "0 0 21 20"
|
|
31
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
32
|
+
fill: "currentColor",
|
|
33
|
+
d: "M10.453.117a.94.94 0 0 0-.906 0L.687 5.004C.263 5.238 0 5.684 0 6.168 0 6.906.594 7.5 1.332 7.5h17.34a1.331 1.331 0 0 0 .644-2.496zM8.918 5.625H3.445L10 2.008l6.555 3.617h-5.473A1.249 1.249 0 0 0 10 3.75a1.249 1.249 0 0 0-1.082 1.875M2.5 8.75V15a.935.935 0 0 0-.937.938c0 .519.417.937.937.937h15.313c.519 0 .937-.418.937-.937a.935.935 0 0 0-.937-.938H17.5V8.75h-1.875V15h-2.5V8.75H11.25V15h-2.5V8.75H6.875V15h-2.5V8.75zm-1.25 9.375a.935.935 0 0 0-.937.938c0 .519.417.937.937.937h17.813c.519 0 .937-.418.937-.937a.935.935 0 0 0-.937-.938z"
|
|
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.Billing = 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.Billing = 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 Billing = _exports.Billing = function Billing(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.778 3.889c.305 0 .555.25.555.555v1.112H1.667V4.444c0-.305.25-.555.555-.555zm.555 3.611v8.056c0 .305-.25.555-.555.555H2.222a.557.557 0 0 1-.555-.556V7.5h16.666M2.223 2.222A2.224 2.224 0 0 0 0 4.444v11.112c0 1.225.997 2.222 2.222 2.222h15.556A2.224 2.224 0 0 0 20 15.556V4.444a2.224 2.224 0 0 0-2.222-2.222zm1.944 10.556a.83.83 0 0 0-.834.833c0 .462.372.833.834.833h1.666a.83.83 0 0 0 .834-.833.83.83 0 0 0-.834-.833z"
|
|
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.Bold = 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.Bold = 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 Bold = _exports.Bold = function Bold(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.813 2.188c0-.52.417-.938.937-.938h7.344a4.843 4.843 0 0 1 3.387 8.309 4.844 4.844 0 0 1-2.137 9.191H3.75a.935.935 0 0 1-.937-.937c0-.52.417-.938.937-.938h.938V3.125H3.75a.935.935 0 0 1-.937-.937m8.28 6.874a2.967 2.967 0 0 0 2.97-2.968 2.967 2.967 0 0 0-2.97-2.969h-4.53v5.938zm-4.53 1.876v5.937h5.78a2.967 2.967 0 0 0 2.97-2.969 2.967 2.967 0 0 0-2.97-2.969h-5.78"
|
|
34
|
+
}));
|
|
35
|
+
};
|
|
36
|
+
});
|