@worknice/whiteboard 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/controls/Action.d.ts +7 -0
- package/dist/controls/Action.js +81 -0
- package/dist/controls/Button.d.ts +22 -0
- package/dist/controls/Button.js +61 -0
- package/dist/controls/Button.module.js +9 -0
- package/dist/controls/ButtonCard.d.ts +7 -0
- package/dist/controls/ButtonCard.js +43 -0
- package/dist/controls/ButtonCard.module.js +7 -0
- package/dist/controls/ButtonCard_module.css +31 -0
- package/dist/controls/ButtonLink.d.ts +15 -0
- package/dist/controls/ButtonLink.js +48 -0
- package/dist/controls/ButtonLink.module.js +9 -0
- package/dist/controls/ButtonLink_module.css +68 -0
- package/dist/controls/Button_module.css +86 -0
- package/dist/controls/Disclosure.d.ts +7 -0
- package/dist/controls/Disclosure.js +27 -0
- package/dist/controls/Link.d.ts +14 -0
- package/dist/controls/Link.js +35 -0
- package/dist/controls/Link.module.js +5 -0
- package/dist/controls/LinkCard.d.ts +7 -0
- package/dist/controls/LinkCard.js +26 -0
- package/dist/controls/LinkCard.module.js +6 -0
- package/dist/controls/LinkCard_module.css +22 -0
- package/dist/controls/Link_module.css +19 -0
- package/dist/controls/MenuButton.d.ts +31 -0
- package/dist/controls/MenuButton.js +216 -0
- package/dist/controls/MenuButton.module.js +10 -0
- package/dist/controls/MenuButton_module.css +78 -0
- package/dist/controls/PageTabSet.d.ts +11 -0
- package/dist/controls/PageTabSet.js +26 -0
- package/dist/controls/PageTabSet.module.js +7 -0
- package/dist/controls/PageTabSet_module.css +32 -0
- package/dist/controls/Sortable.d.ts +11 -0
- package/dist/controls/Sortable.js +27 -0
- package/dist/controls/SortableItem.d.ts +8 -0
- package/dist/controls/SortableItem.js +42 -0
- package/dist/controls/SortableItem.module.js +9 -0
- package/dist/controls/SortableItem_module.css +46 -0
- package/dist/controls/TabSet.d.ts +12 -0
- package/dist/controls/TabSet.js +26 -0
- package/dist/controls/TabSet.module.js +7 -0
- package/dist/controls/TabSetLink.d.ts +12 -0
- package/dist/controls/TabSetLink.js +24 -0
- package/dist/controls/TabSetLink.module.js +7 -0
- package/dist/controls/TabSetLink_module.css +41 -0
- package/dist/controls/TabSet_module.css +39 -0
- package/dist/email/EmailBodyText.d.ts +5 -0
- package/dist/email/EmailBodyText.js +12 -0
- package/dist/email/EmailButton.d.ts +6 -0
- package/dist/email/EmailButton.js +19 -0
- package/dist/email/EmailFooterText.d.ts +5 -0
- package/dist/email/EmailFooterText.js +12 -0
- package/dist/email/EmailLayout.d.ts +10 -0
- package/dist/email/EmailLayout.js +41 -0
- package/dist/fields/BooleanField.d.ts +15 -0
- package/dist/fields/BooleanField.js +19 -0
- package/dist/fields/ColorPickerField.d.ts +18 -0
- package/dist/fields/ColorPickerField.js +18 -0
- package/dist/fields/DateField.d.ts +18 -0
- package/dist/fields/DateField.js +22 -0
- package/dist/fields/DateTimeField.d.ts +16 -0
- package/dist/fields/DateTimeField.js +20 -0
- package/dist/fields/FileField.d.ts +12 -0
- package/dist/fields/FileField.js +18 -0
- package/dist/fields/ListBoxField.d.ts +21 -0
- package/dist/fields/ListBoxField.js +24 -0
- package/dist/fields/MarkdownField.d.ts +17 -0
- package/dist/fields/MarkdownField.js +36 -0
- package/dist/fields/NumberField.d.ts +12 -0
- package/dist/fields/NumberField.js +23 -0
- package/dist/fields/PasswordField.d.ts +15 -0
- package/dist/fields/PasswordField.js +63 -0
- package/dist/fields/PasswordField.module.js +14 -0
- package/dist/fields/PasswordField_module.css +47 -0
- package/dist/fields/RadioSetField.d.ts +22 -0
- package/dist/fields/RadioSetField.js +42 -0
- package/dist/fields/RadioSetField.module.js +6 -0
- package/dist/fields/RadioSetField_module.css +15 -0
- package/dist/fields/SelectField.d.ts +20 -0
- package/dist/fields/SelectField.js +24 -0
- package/dist/fields/SimpleRadioSetField.d.ts +15 -0
- package/dist/fields/SimpleRadioSetField.js +13 -0
- package/dist/fields/SingleSelectComboboxField.d.ts +25 -0
- package/dist/fields/SingleSelectComboboxField.js +28 -0
- package/dist/fields/StringField.d.ts +12 -0
- package/dist/fields/StringField.js +25 -0
- package/dist/fields/TextField.d.ts +17 -0
- package/dist/fields/TextField.js +21 -0
- package/dist/fields/TimeField.d.ts +12 -0
- package/dist/fields/TimeField.js +21 -0
- package/dist/forms/FormButtonSet.d.ts +14 -0
- package/dist/forms/FormButtonSet.js +31 -0
- package/dist/forms/FormButtonSet.module.js +5 -0
- package/dist/forms/FormButtonSet_module.css +12 -0
- package/dist/forms/FormError.d.ts +6 -0
- package/dist/forms/FormError.js +10 -0
- package/dist/forms/FormErrorList.d.ts +8 -0
- package/dist/forms/FormErrorList.js +22 -0
- package/dist/forms/FormErrorList.module.js +6 -0
- package/dist/forms/FormErrorList_module.css +12 -0
- package/dist/forms/FormStatusIndicator.d.ts +8 -0
- package/dist/forms/FormStatusIndicator.js +40 -0
- package/dist/forms/FormStatusIndicator.module.js +8 -0
- package/dist/forms/FormStatusIndicator_module.css +18 -0
- package/dist/forms/RegularField.d.ts +14 -0
- package/dist/forms/RegularField.js +47 -0
- package/dist/forms/RegularField.module.js +14 -0
- package/dist/forms/RegularField_module.css +47 -0
- package/dist/forms/ToggleField.d.ts +12 -0
- package/dist/forms/ToggleField.js +38 -0
- package/dist/forms/ToggleField.module.js +8 -0
- package/dist/forms/ToggleField_module.css +25 -0
- package/dist/forms/_types.d.ts +17 -0
- package/dist/forms/_types.js +0 -0
- package/dist/forms/useForm.d.ts +54 -0
- package/dist/forms/useForm.js +107 -0
- package/dist/hud/ChevronIcon.d.ts +2 -0
- package/dist/hud/ChevronIcon.js +13 -0
- package/dist/hud/NavItem.d.ts +10 -0
- package/dist/hud/NavItem.js +27 -0
- package/dist/hud/NavItem.module.js +7 -0
- package/dist/hud/NavItemChild.d.ts +8 -0
- package/dist/hud/NavItemChild.js +20 -0
- package/dist/hud/NavItemChild.module.js +6 -0
- package/dist/hud/NavItemChild_module.css +20 -0
- package/dist/hud/NavItem_module.css +26 -0
- package/dist/hud/NavSection.d.ts +12 -0
- package/dist/hud/NavSection.js +48 -0
- package/dist/hud/NavSection.module.js +11 -0
- package/dist/hud/NavSection_module.css +44 -0
- package/dist/hud/NavTitle.d.ts +8 -0
- package/dist/hud/NavTitle.js +43 -0
- package/dist/hud/NavTitle.module.js +6 -0
- package/dist/hud/NavTitle_module.css +30 -0
- package/dist/hud/SidebarIcon.d.ts +2 -0
- package/dist/hud/SidebarIcon.js +13 -0
- package/dist/hud/ToolbarButton.d.ts +12 -0
- package/dist/hud/ToolbarButton.js +23 -0
- package/dist/hud/ToolbarButton.module.js +6 -0
- package/dist/hud/ToolbarButton_module.css +24 -0
- package/dist/icons/AppsIcon.d.ts +3 -0
- package/dist/icons/AppsIcon.js +11 -0
- package/dist/icons/ArchiveIcon.d.ts +3 -0
- package/dist/icons/ArchiveIcon.js +11 -0
- package/dist/icons/ArrowLeftIcon.d.ts +3 -0
- package/dist/icons/ArrowLeftIcon.js +11 -0
- package/dist/icons/ArrowRightIcon.d.ts +3 -0
- package/dist/icons/ArrowRightIcon.js +11 -0
- package/dist/icons/AssignIcon.d.ts +3 -0
- package/dist/icons/AssignIcon.js +13 -0
- package/dist/icons/BankAccountIcon.d.ts +3 -0
- package/dist/icons/BankAccountIcon.js +11 -0
- package/dist/icons/CalendarIcon.d.ts +3 -0
- package/dist/icons/CalendarIcon.js +11 -0
- package/dist/icons/CancelIcon.d.ts +3 -0
- package/dist/icons/CancelIcon.js +11 -0
- package/dist/icons/CaratDownIcon.d.ts +3 -0
- package/dist/icons/CaratDownIcon.js +11 -0
- package/dist/icons/CaratLeftIcon.d.ts +3 -0
- package/dist/icons/CaratLeftIcon.js +11 -0
- package/dist/icons/CaratRightIcon.d.ts +3 -0
- package/dist/icons/CaratRightIcon.js +11 -0
- package/dist/icons/CaratUpIcon.d.ts +3 -0
- package/dist/icons/CaratUpIcon.js +11 -0
- package/dist/icons/CheckmarkIcon.d.ts +3 -0
- package/dist/icons/CheckmarkIcon.js +11 -0
- package/dist/icons/ChevronDownIcon.d.ts +3 -0
- package/dist/icons/ChevronDownIcon.js +11 -0
- package/dist/icons/ChevronLeftIcon.d.ts +3 -0
- package/dist/icons/ChevronLeftIcon.js +11 -0
- package/dist/icons/ChevronRightIcon.d.ts +3 -0
- package/dist/icons/ChevronRightIcon.js +11 -0
- package/dist/icons/ChevronUpIcon.d.ts +3 -0
- package/dist/icons/ChevronUpIcon.js +11 -0
- package/dist/icons/CloseIcon.d.ts +3 -0
- package/dist/icons/CloseIcon.js +11 -0
- package/dist/icons/CopyIcon.d.ts +3 -0
- package/dist/icons/CopyIcon.js +14 -0
- package/dist/icons/DashIcon.d.ts +3 -0
- package/dist/icons/DashIcon.js +11 -0
- package/dist/icons/DeleteIcon.d.ts +3 -0
- package/dist/icons/DeleteIcon.js +11 -0
- package/dist/icons/EditIcon.d.ts +3 -0
- package/dist/icons/EditIcon.js +11 -0
- package/dist/icons/EmailIcon.d.ts +3 -0
- package/dist/icons/EmailIcon.js +11 -0
- package/dist/icons/EmergencyContactIcon.d.ts +3 -0
- package/dist/icons/EmergencyContactIcon.js +11 -0
- package/dist/icons/ExternalIcon.d.ts +3 -0
- package/dist/icons/ExternalIcon.js +14 -0
- package/dist/icons/GripLinesIcon.d.ts +3 -0
- package/dist/icons/GripLinesIcon.js +11 -0
- package/dist/icons/HelpIcon.d.ts +3 -0
- package/dist/icons/HelpIcon.js +11 -0
- package/dist/icons/HiddenIcon.d.ts +3 -0
- package/dist/icons/HiddenIcon.js +11 -0
- package/dist/icons/InboxIcon.d.ts +3 -0
- package/dist/icons/InboxIcon.js +11 -0
- package/dist/icons/InsightsIcon.d.ts +3 -0
- package/dist/icons/InsightsIcon.js +11 -0
- package/dist/icons/JobIcon.d.ts +3 -0
- package/dist/icons/JobIcon.js +11 -0
- package/dist/icons/LeaveIcon.d.ts +3 -0
- package/dist/icons/LeaveIcon.js +11 -0
- package/dist/icons/LoadingIcon.d.ts +4 -0
- package/dist/icons/LoadingIcon.js +22 -0
- package/dist/icons/LogoutIcon.d.ts +3 -0
- package/dist/icons/LogoutIcon.js +11 -0
- package/dist/icons/MicrosoftIcon.d.ts +3 -0
- package/dist/icons/MicrosoftIcon.js +26 -0
- package/dist/icons/MinusIcon.d.ts +3 -0
- package/dist/icons/MinusIcon.js +11 -0
- package/dist/icons/OverflowIcon.d.ts +3 -0
- package/dist/icons/OverflowIcon.js +11 -0
- package/dist/icons/PaperworkIcon.d.ts +3 -0
- package/dist/icons/PaperworkIcon.js +11 -0
- package/dist/icons/PeopleIcon.d.ts +3 -0
- package/dist/icons/PeopleIcon.js +11 -0
- package/dist/icons/PhoneIcon.d.ts +3 -0
- package/dist/icons/PhoneIcon.js +11 -0
- package/dist/icons/PlusIcon.d.ts +3 -0
- package/dist/icons/PlusIcon.js +11 -0
- package/dist/icons/PositionsIcon.d.ts +3 -0
- package/dist/icons/PositionsIcon.js +11 -0
- package/dist/icons/ProfileFemaleIcon.d.ts +3 -0
- package/dist/icons/ProfileFemaleIcon.js +11 -0
- package/dist/icons/ProfileIcon.d.ts +3 -0
- package/dist/icons/ProfileIcon.js +11 -0
- package/dist/icons/ProfileMaleIcon.d.ts +3 -0
- package/dist/icons/ProfileMaleIcon.js +11 -0
- package/dist/icons/RemunerationIcon.d.ts +3 -0
- package/dist/icons/RemunerationIcon.js +11 -0
- package/dist/icons/RescheduleIcon.d.ts +3 -0
- package/dist/icons/RescheduleIcon.js +13 -0
- package/dist/icons/RestoreIcon.d.ts +3 -0
- package/dist/icons/RestoreIcon.js +13 -0
- package/dist/icons/ReviewIcon.d.ts +3 -0
- package/dist/icons/ReviewIcon.js +11 -0
- package/dist/icons/ScheduleIcon.d.ts +3 -0
- package/dist/icons/ScheduleIcon.js +13 -0
- package/dist/icons/SettingsIcon.d.ts +3 -0
- package/dist/icons/SettingsIcon.js +11 -0
- package/dist/icons/SidebarIcon.d.ts +3 -0
- package/dist/icons/SidebarIcon.js +11 -0
- package/dist/icons/SortAscIcon.d.ts +3 -0
- package/dist/icons/SortAscIcon.js +11 -0
- package/dist/icons/SortDefaultIcon.d.ts +3 -0
- package/dist/icons/SortDefaultIcon.js +11 -0
- package/dist/icons/SortDesIcon.d.ts +3 -0
- package/dist/icons/SortDesIcon.js +11 -0
- package/dist/icons/StepsCompleteIcon.d.ts +3 -0
- package/dist/icons/StepsCompleteIcon.js +11 -0
- package/dist/icons/StepsCurrentIcon.d.ts +3 -0
- package/dist/icons/StepsCurrentIcon.js +11 -0
- package/dist/icons/StepsIncompleteIcon.d.ts +3 -0
- package/dist/icons/StepsIncompleteIcon.js +11 -0
- package/dist/icons/SubmitIcon.d.ts +3 -0
- package/dist/icons/SubmitIcon.js +13 -0
- package/dist/icons/SuccessIcon.d.ts +3 -0
- package/dist/icons/SuccessIcon.js +13 -0
- package/dist/icons/SuperFundIcon.d.ts +3 -0
- package/dist/icons/SuperFundIcon.js +11 -0
- package/dist/icons/SyncIcon.d.ts +3 -0
- package/dist/icons/SyncIcon.js +11 -0
- package/dist/icons/TaskIcon.d.ts +3 -0
- package/dist/icons/TaskIcon.js +11 -0
- package/dist/icons/TaxIcon.d.ts +3 -0
- package/dist/icons/TaxIcon.js +11 -0
- package/dist/icons/TenureIcon.d.ts +3 -0
- package/dist/icons/TenureIcon.js +11 -0
- package/dist/icons/VisibleIcon.d.ts +3 -0
- package/dist/icons/VisibleIcon.js +11 -0
- package/dist/icons/WarningIcon.d.ts +3 -0
- package/dist/icons/WarningIcon.js +12 -0
- package/dist/icons/_types.d.ts +4 -0
- package/dist/icons/_types.js +0 -0
- package/dist/icons/index.d.ts +67 -0
- package/dist/icons/index.js +68 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +0 -0
- package/dist/inputs/CheckboxInput.d.ts +12 -0
- package/dist/inputs/CheckboxInput.js +48 -0
- package/dist/inputs/CheckboxInput.module.js +6 -0
- package/dist/inputs/CheckboxInput_module.css +32 -0
- package/dist/inputs/ColorPickerInput.d.ts +8 -0
- package/dist/inputs/ColorPickerInput.js +36 -0
- package/dist/inputs/ColorPickerInput.module.js +15 -0
- package/dist/inputs/ColorPickerInput_module.css +99 -0
- package/dist/inputs/DateInput.d.ts +19 -0
- package/dist/inputs/DateInput.js +43 -0
- package/dist/inputs/DateInput.module.js +10 -0
- package/dist/inputs/DateInput_module.css +60 -0
- package/dist/inputs/DateTimeInput.d.ts +17 -0
- package/dist/inputs/DateTimeInput.js +34 -0
- package/dist/inputs/DateTimeInput.module.js +5 -0
- package/dist/inputs/DateTimeInput_module.css +27 -0
- package/dist/inputs/FileInput.d.ts +7 -0
- package/dist/inputs/FileInput.js +12 -0
- package/dist/inputs/ListBoxInput.d.ts +14 -0
- package/dist/inputs/ListBoxInput.js +66 -0
- package/dist/inputs/ListBoxInput.module.js +10 -0
- package/dist/inputs/ListBoxInput_module.css +44 -0
- package/dist/inputs/MarkdownInput.d.ts +11 -0
- package/dist/inputs/MarkdownInput.js +35 -0
- package/dist/inputs/MarkdownInput.module.js +5 -0
- package/dist/inputs/MarkdownInput_module.css +27 -0
- package/dist/inputs/NumberInput.d.ts +13 -0
- package/dist/inputs/NumberInput.js +44 -0
- package/dist/inputs/NumberInput.module.js +10 -0
- package/dist/inputs/NumberInput_module.css +59 -0
- package/dist/inputs/RadioInput.d.ts +9 -0
- package/dist/inputs/RadioInput.js +34 -0
- package/dist/inputs/RadioInput.module.js +6 -0
- package/dist/inputs/RadioInput_module.css +31 -0
- package/dist/inputs/SelectInput.d.ts +14 -0
- package/dist/inputs/SelectInput.js +130 -0
- package/dist/inputs/SelectInput.module.js +10 -0
- package/dist/inputs/SelectInput_module.css +63 -0
- package/dist/inputs/SingleSelectComboboxInput.d.ts +19 -0
- package/dist/inputs/SingleSelectComboboxInput.js +179 -0
- package/dist/inputs/SingleSelectComboboxInput.module.js +12 -0
- package/dist/inputs/SingleSelectComboboxInput_module.css +73 -0
- package/dist/inputs/StringInput.d.ts +15 -0
- package/dist/inputs/StringInput.js +51 -0
- package/dist/inputs/StringInput.module.js +10 -0
- package/dist/inputs/StringInput_module.css +59 -0
- package/dist/inputs/TextInput.d.ts +13 -0
- package/dist/inputs/TextInput.js +51 -0
- package/dist/inputs/TextInput.module.js +10 -0
- package/dist/inputs/TextInput_module.css +59 -0
- package/dist/inputs/TimeInput.d.ts +11 -0
- package/dist/inputs/TimeInput.js +26 -0
- package/dist/inputs/TimeInput.module.js +5 -0
- package/dist/inputs/TimeInput_module.css +33 -0
- package/dist/layouts/BaseLayout.d.ts +7 -0
- package/dist/layouts/BaseLayout.js +15 -0
- package/dist/layouts/FullLayout.d.ts +19 -0
- package/dist/layouts/FullLayout.js +152 -0
- package/dist/layouts/FullLayout.module.js +24 -0
- package/dist/layouts/FullLayout_module.css +257 -0
- package/dist/layouts/MinimalLayout.d.ts +12 -0
- package/dist/layouts/MinimalLayout.js +34 -0
- package/dist/layouts/MinimalLayout.module.js +6 -0
- package/dist/layouts/MinimalLayout_module.css +25 -0
- package/dist/presentation/ActionSet.d.ts +13 -0
- package/dist/presentation/ActionSet.js +13 -0
- package/dist/presentation/ActionSet.module.js +5 -0
- package/dist/presentation/ActionSet_module.css +7 -0
- package/dist/presentation/Avatar.d.ts +8 -0
- package/dist/presentation/Avatar.js +27 -0
- package/dist/presentation/Avatar.module.js +5 -0
- package/dist/presentation/Avatar_module.css +10 -0
- package/dist/presentation/Badge.d.ts +8 -0
- package/dist/presentation/Badge.js +20 -0
- package/dist/presentation/Badge.module.js +14 -0
- package/dist/presentation/BadgeSet.d.ts +15 -0
- package/dist/presentation/BadgeSet.js +18 -0
- package/dist/presentation/BadgeSet.module.js +7 -0
- package/dist/presentation/BadgeSet_module.css +15 -0
- package/dist/presentation/Badge_module.css +53 -0
- package/dist/presentation/Banner.d.ts +11 -0
- package/dist/presentation/Banner.js +33 -0
- package/dist/presentation/Banner.module.js +12 -0
- package/dist/presentation/Banner_module.css +54 -0
- package/dist/presentation/ButtonSet.d.ts +11 -0
- package/dist/presentation/ButtonSet.js +21 -0
- package/dist/presentation/ButtonsSet.module.js +6 -0
- package/dist/presentation/ButtonsSet_module.css +10 -0
- package/dist/presentation/Card.d.ts +17 -0
- package/dist/presentation/Card.js +38 -0
- package/dist/presentation/Card.module.js +9 -0
- package/dist/presentation/CardContent.d.ts +7 -0
- package/dist/presentation/CardContent.js +12 -0
- package/dist/presentation/CardContent.module.js +5 -0
- package/dist/presentation/CardContent_module.css +4 -0
- package/dist/presentation/Card_module.css +32 -0
- package/dist/presentation/Columns.d.ts +8 -0
- package/dist/presentation/Columns.js +16 -0
- package/dist/presentation/Columns.module.js +7 -0
- package/dist/presentation/Columns_module.css +19 -0
- package/dist/presentation/ConfirmationModal.d.ts +13 -0
- package/dist/presentation/ConfirmationModal.js +61 -0
- package/dist/presentation/DefinitionList.d.ts +10 -0
- package/dist/presentation/DefinitionList.js +22 -0
- package/dist/presentation/DefinitionList.module.js +6 -0
- package/dist/presentation/DefinitionList_module.css +10 -0
- package/dist/presentation/Divider.d.ts +5 -0
- package/dist/presentation/Divider.js +23 -0
- package/dist/presentation/Divider.module.js +6 -0
- package/dist/presentation/Divider_module.css +12 -0
- package/dist/presentation/File.d.ts +6 -0
- package/dist/presentation/File.js +57 -0
- package/dist/presentation/Footer.d.ts +12 -0
- package/dist/presentation/Footer.js +18 -0
- package/dist/presentation/Footer.module.js +5 -0
- package/dist/presentation/Footer_module.css +16 -0
- package/dist/presentation/HStack.d.ts +10 -0
- package/dist/presentation/HStack.js +16 -0
- package/dist/presentation/HStack.module.js +5 -0
- package/dist/presentation/HStack_module.css +10 -0
- package/dist/presentation/Header.d.ts +10 -0
- package/dist/presentation/Header.js +20 -0
- package/dist/presentation/Header.module.js +6 -0
- package/dist/presentation/Header_module.css +17 -0
- package/dist/presentation/Heading.d.ts +10 -0
- package/dist/presentation/Heading.js +10 -0
- package/dist/presentation/HeadlineStatisticCard.d.ts +9 -0
- package/dist/presentation/HeadlineStatisticCard.js +35 -0
- package/dist/presentation/HoverCard.d.ts +7 -0
- package/dist/presentation/HoverCard.js +90 -0
- package/dist/presentation/HoverCard.module.js +8 -0
- package/dist/presentation/HoverCard_module.css +18 -0
- package/dist/presentation/Icon.d.ts +20 -0
- package/dist/presentation/Icon.js +27 -0
- package/dist/presentation/IconSymbolSet.d.ts +6 -0
- package/dist/presentation/IconSymbolSet.js +16 -0
- package/dist/presentation/Info.d.ts +10 -0
- package/dist/presentation/Info.js +26 -0
- package/dist/presentation/Info.module.js +8 -0
- package/dist/presentation/Info_module.css +38 -0
- package/dist/presentation/Key.d.ts +7 -0
- package/dist/presentation/Key.js +13 -0
- package/dist/presentation/Key.module.js +5 -0
- package/dist/presentation/Key_module.css +15 -0
- package/dist/presentation/KeysSet.d.ts +9 -0
- package/dist/presentation/KeysSet.js +8 -0
- package/dist/presentation/KeysSet.module.js +5 -0
- package/dist/presentation/KeysSet_module.css +6 -0
- package/dist/presentation/Label.d.ts +10 -0
- package/dist/presentation/Label.js +10 -0
- package/dist/presentation/Layer.d.ts +9 -0
- package/dist/presentation/Layer.js +48 -0
- package/dist/presentation/ListCard.d.ts +13 -0
- package/dist/presentation/ListCard.js +50 -0
- package/dist/presentation/ListCard.module.js +10 -0
- package/dist/presentation/ListCard_module.css +78 -0
- package/dist/presentation/Markdown.d.ts +19 -0
- package/dist/presentation/Markdown.js +33 -0
- package/dist/presentation/Modal.d.ts +8 -0
- package/dist/presentation/Modal.js +26 -0
- package/dist/presentation/Modal.module.js +7 -0
- package/dist/presentation/Modal_module.css +17 -0
- package/dist/presentation/ObscuredText.d.ts +5 -0
- package/dist/presentation/ObscuredText.js +25 -0
- package/dist/presentation/ObscuredText.module.js +6 -0
- package/dist/presentation/ObscuredText_module.css +26 -0
- package/dist/presentation/Overlay.d.ts +7 -0
- package/dist/presentation/Overlay.js +29 -0
- package/dist/presentation/Overlay.module.js +6 -0
- package/dist/presentation/Overlay_module.css +20 -0
- package/dist/presentation/PersonAvatar.d.ts +18 -0
- package/dist/presentation/PersonAvatar.js +89 -0
- package/dist/presentation/PersonCover.d.ts +5 -0
- package/dist/presentation/PersonCover.js +21 -0
- package/dist/presentation/PersonCover.module.js +6 -0
- package/dist/presentation/PersonCover_module.css +22 -0
- package/dist/presentation/Placeholder.d.ts +6 -0
- package/dist/presentation/Placeholder.js +8 -0
- package/dist/presentation/Placeholder.module.js +5 -0
- package/dist/presentation/Placeholder_module.css +9 -0
- package/dist/presentation/PlainText.d.ts +11 -0
- package/dist/presentation/PlainText.js +40 -0
- package/dist/presentation/PlainText.module.js +5 -0
- package/dist/presentation/PlainText_module.css +6 -0
- package/dist/presentation/RichText.d.ts +16 -0
- package/dist/presentation/RichText.js +21 -0
- package/dist/presentation/RichText.module.js +7 -0
- package/dist/presentation/RichText_module.css +177 -0
- package/dist/presentation/Sheet.d.ts +23 -0
- package/dist/presentation/Sheet.js +22 -0
- package/dist/presentation/Sheet.module.js +8 -0
- package/dist/presentation/SheetContent.d.ts +6 -0
- package/dist/presentation/SheetContent.js +8 -0
- package/dist/presentation/SheetContent.module.js +5 -0
- package/dist/presentation/SheetContent_module.css +7 -0
- package/dist/presentation/SheetFooter.d.ts +7 -0
- package/dist/presentation/SheetFooter.js +12 -0
- package/dist/presentation/SheetFooter.module.js +5 -0
- package/dist/presentation/SheetFooter_module.css +7 -0
- package/dist/presentation/SheetHeader.d.ts +8 -0
- package/dist/presentation/SheetHeader.js +13 -0
- package/dist/presentation/SheetHeader.module.js +5 -0
- package/dist/presentation/SheetHeader_module.css +7 -0
- package/dist/presentation/Sheet_module.css +24 -0
- package/dist/presentation/SimpleList.d.ts +9 -0
- package/dist/presentation/SimpleList.js +14 -0
- package/dist/presentation/SimpleList.module.js +5 -0
- package/dist/presentation/SimpleList_module.css +9 -0
- package/dist/presentation/SimpleTable.d.ts +27 -0
- package/dist/presentation/SimpleTable.js +67 -0
- package/dist/presentation/SimpleTable.module.js +12 -0
- package/dist/presentation/SimpleTable_module.css +42 -0
- package/dist/presentation/Slot.d.ts +8 -0
- package/dist/presentation/Slot.js +26 -0
- package/dist/presentation/Slot.module.js +5 -0
- package/dist/presentation/Slot_module.css +7 -0
- package/dist/presentation/Subheading.d.ts +10 -0
- package/dist/presentation/Subheading.js +10 -0
- package/dist/presentation/Table.d.ts +71 -0
- package/dist/presentation/Table.js +458 -0
- package/dist/presentation/Table.module.js +22 -0
- package/dist/presentation/Table_module.css +142 -0
- package/dist/presentation/Tag.d.ts +9 -0
- package/dist/presentation/Tag.js +20 -0
- package/dist/presentation/Tag.module.js +14 -0
- package/dist/presentation/TagSet.d.ts +15 -0
- package/dist/presentation/TagSet.js +18 -0
- package/dist/presentation/TagSet.module.js +7 -0
- package/dist/presentation/TagSet_module.css +15 -0
- package/dist/presentation/Tag_module.css +53 -0
- package/dist/presentation/Timeline.d.ts +10 -0
- package/dist/presentation/Timeline.js +24 -0
- package/dist/presentation/Timeline.module.js +7 -0
- package/dist/presentation/Timeline_module.css +32 -0
- package/dist/presentation/Title.d.ts +10 -0
- package/dist/presentation/Title.js +10 -0
- package/dist/presentation/Tooltip.d.ts +7 -0
- package/dist/presentation/Tooltip.js +62 -0
- package/dist/presentation/Tooltip.module.js +6 -0
- package/dist/presentation/Tooltip_module.css +12 -0
- package/dist/presentation/VStack.d.ts +13 -0
- package/dist/presentation/VStack.js +15 -0
- package/dist/presentation/VStack.module.js +5 -0
- package/dist/presentation/VStack_module.css +8 -0
- package/dist/shared.css +351 -335
- package/dist/utils/NextContext.d.ts +10 -0
- package/dist/utils/NextContext.js +4 -0
- package/dist/utils/TrackingContext.d.ts +20 -0
- package/dist/utils/TrackingContext.js +4 -0
- package/dist/utils/customProperties.d.ts +5 -0
- package/dist/utils/customProperties.js +3 -0
- package/dist/utils/encodeCsv.d.ts +5 -0
- package/dist/utils/encodeCsv.js +30 -0
- package/dist/utils/search.d.ts +4 -0
- package/dist/utils/search.js +10 -0
- package/dist/utils/useNextContext.d.ts +35 -0
- package/dist/utils/useNextContext.js +9 -0
- package/dist/validators/isGreaterThan.d.ts +8 -0
- package/dist/validators/isGreaterThan.js +11 -0
- package/dist/validators/isInteger.d.ts +8 -0
- package/dist/validators/isInteger.js +11 -0
- package/dist/validators/isLessThan.d.ts +8 -0
- package/dist/validators/isLessThan.js +11 -0
- package/dist/validators/isNotBlank.d.ts +8 -0
- package/dist/validators/isNotBlank.js +11 -0
- package/dist/validators/isNotEmpty.d.ts +8 -0
- package/dist/validators/isNotEmpty.js +11 -0
- package/dist/validators/isNumber.d.ts +8 -0
- package/dist/validators/isNumber.js +12 -0
- package/dist/validators/isRequired.d.ts +8 -0
- package/dist/validators/isRequired.js +11 -0
- package/dist/validators/isTrue.d.ts +8 -0
- package/dist/validators/isTrue.js +11 -0
- package/dist/validators/isValidEmail.d.ts +8 -0
- package/dist/validators/isValidEmail.js +12 -0
- package/dist/visuals/ProportionVisual.d.ts +11 -0
- package/dist/visuals/ProportionVisual.js +41 -0
- package/dist/visuals/ProportionVisual.module.js +16 -0
- package/dist/visuals/ProportionVisualCompact.d.ts +9 -0
- package/dist/visuals/ProportionVisualCompact.js +27 -0
- package/dist/visuals/ProportionVisualCompact.module.js +15 -0
- package/dist/visuals/ProportionVisualCompact_module.css +48 -0
- package/dist/visuals/ProportionVisual_module.css +65 -0
- package/package.json +70 -28
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
3
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react__ from "react";
|
|
4
|
+
import * as __WEBPACK_EXTERNAL_MODULE__NavSection_module_js_175b73a6__ from "./NavSection.module.js";
|
|
5
|
+
import * as __WEBPACK_EXTERNAL_MODULE_clsx__ from "clsx";
|
|
6
|
+
import * as __WEBPACK_EXTERNAL_MODULE__presentation_Icon_js_6961aa57__ from "../presentation/Icon.js";
|
|
7
|
+
const NavSection = ({ items, label, initiallyOpen = false, icon })=>{
|
|
8
|
+
const [isOpen, setIsOpen] = (0, __WEBPACK_EXTERNAL_MODULE_react__.useState)(initiallyOpen);
|
|
9
|
+
const filteredItems = items.filter((value)=>null !== value);
|
|
10
|
+
return filteredItems.length > 0 ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("div", {
|
|
11
|
+
className: (0, __WEBPACK_EXTERNAL_MODULE_clsx__["default"])([
|
|
12
|
+
__WEBPACK_EXTERNAL_MODULE__NavSection_module_js_175b73a6__["default"].container
|
|
13
|
+
], {
|
|
14
|
+
[__WEBPACK_EXTERNAL_MODULE__NavSection_module_js_175b73a6__["default"].open]: isOpen
|
|
15
|
+
}),
|
|
16
|
+
children: [
|
|
17
|
+
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("button", {
|
|
18
|
+
onClick: ()=>setIsOpen((current)=>!current),
|
|
19
|
+
className: __WEBPACK_EXTERNAL_MODULE__NavSection_module_js_175b73a6__["default"].item,
|
|
20
|
+
children: [
|
|
21
|
+
icon,
|
|
22
|
+
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
|
|
23
|
+
className: __WEBPACK_EXTERNAL_MODULE__NavSection_module_js_175b73a6__["default"].label,
|
|
24
|
+
children: label
|
|
25
|
+
}),
|
|
26
|
+
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("span", {
|
|
27
|
+
className: __WEBPACK_EXTERNAL_MODULE__NavSection_module_js_175b73a6__["default"].accordionIcon,
|
|
28
|
+
children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(__WEBPACK_EXTERNAL_MODULE__presentation_Icon_js_6961aa57__["default"], {
|
|
29
|
+
tone: "primary",
|
|
30
|
+
symbol: "CaratRight"
|
|
31
|
+
})
|
|
32
|
+
})
|
|
33
|
+
]
|
|
34
|
+
}),
|
|
35
|
+
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
|
|
36
|
+
className: __WEBPACK_EXTERNAL_MODULE__NavSection_module_js_175b73a6__["default"].navSection,
|
|
37
|
+
children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
|
|
38
|
+
className: __WEBPACK_EXTERNAL_MODULE__NavSection_module_js_175b73a6__["default"].wrapper,
|
|
39
|
+
children: filteredItems.map(({ key, value })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
|
|
40
|
+
children: value
|
|
41
|
+
}, key))
|
|
42
|
+
})
|
|
43
|
+
})
|
|
44
|
+
]
|
|
45
|
+
}) : null;
|
|
46
|
+
};
|
|
47
|
+
const NavSection_rslib_entry_ = NavSection;
|
|
48
|
+
export { NavSection_rslib_entry_ as default };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import "./NavSection_module.css";
|
|
2
|
+
const NavSection_module_rslib_entry_ = {
|
|
3
|
+
container: "container-YnUfO2",
|
|
4
|
+
navSection: "navSection-VY4qZj",
|
|
5
|
+
open: "open-Os6z9n",
|
|
6
|
+
accordionIcon: "accordionIcon-dT_gT8",
|
|
7
|
+
item: "item-wy5vrc",
|
|
8
|
+
wrapper: "wrapper-UlczY5",
|
|
9
|
+
label: "label-AjYjxK"
|
|
10
|
+
};
|
|
11
|
+
export { NavSection_module_rslib_entry_ as default };
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
.container-YnUfO2 {
|
|
2
|
+
display: grid;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.navSection-VY4qZj {
|
|
6
|
+
grid-template-rows: 0fr;
|
|
7
|
+
transition: grid-template-rows .15s;
|
|
8
|
+
display: grid;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.open-Os6z9n > .navSection-VY4qZj {
|
|
12
|
+
grid-template-rows: 1fr;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.accordionIcon-dT_gT8 {
|
|
16
|
+
transition: transform .15s;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.open-Os6z9n > .item-wy5vrc > .accordionIcon-dT_gT8 {
|
|
20
|
+
transform: rotate(90deg);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.wrapper-UlczY5 {
|
|
24
|
+
overflow: hidden;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.item-wy5vrc {
|
|
28
|
+
padding: var(--size-n1);
|
|
29
|
+
gap: var(--size-n2);
|
|
30
|
+
border-radius: var(--size-n3);
|
|
31
|
+
align-items: center;
|
|
32
|
+
display: flex;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.label-AjYjxK {
|
|
36
|
+
margin-right: auto;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
@media (hover: hover) {
|
|
40
|
+
.item-wy5vrc:hover {
|
|
41
|
+
background: var(--color-grey-t09);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
import * as __WEBPACK_EXTERNAL_MODULE__worknice_whiteboard_presentation_Badge_506c1dd3__ from "@worknice/whiteboard/presentation/Badge";
|
|
3
|
+
import * as __WEBPACK_EXTERNAL_MODULE__worknice_whiteboard_presentation_PlainText_c60690e6__ from "@worknice/whiteboard/presentation/PlainText";
|
|
4
|
+
import * as __WEBPACK_EXTERNAL_MODULE__NavTitle_module_js_9be55db0__ from "./NavTitle.module.js";
|
|
5
|
+
const NavTitle = ({ demo, logo, subtitle, title })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("div", {
|
|
6
|
+
className: __WEBPACK_EXTERNAL_MODULE__NavTitle_module_js_9be55db0__["default"].container,
|
|
7
|
+
title: title,
|
|
8
|
+
children: [
|
|
9
|
+
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
|
|
10
|
+
className: __WEBPACK_EXTERNAL_MODULE__NavTitle_module_js_9be55db0__["default"].logo,
|
|
11
|
+
children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("img", {
|
|
12
|
+
src: logo,
|
|
13
|
+
alt: ""
|
|
14
|
+
})
|
|
15
|
+
}),
|
|
16
|
+
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("div", {
|
|
17
|
+
style: {
|
|
18
|
+
overflow: "hidden",
|
|
19
|
+
display: "grid"
|
|
20
|
+
},
|
|
21
|
+
children: [
|
|
22
|
+
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(__WEBPACK_EXTERNAL_MODULE__worknice_whiteboard_presentation_PlainText_c60690e6__["default"], {
|
|
23
|
+
font: "regular-bold",
|
|
24
|
+
truncate: true,
|
|
25
|
+
children: title
|
|
26
|
+
}),
|
|
27
|
+
subtitle ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(__WEBPACK_EXTERNAL_MODULE__worknice_whiteboard_presentation_PlainText_c60690e6__["default"], {
|
|
28
|
+
truncate: true,
|
|
29
|
+
children: subtitle
|
|
30
|
+
}) : null
|
|
31
|
+
]
|
|
32
|
+
}),
|
|
33
|
+
demo ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
|
|
34
|
+
className: __WEBPACK_EXTERNAL_MODULE__NavTitle_module_js_9be55db0__["default"].demo,
|
|
35
|
+
children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(__WEBPACK_EXTERNAL_MODULE__worknice_whiteboard_presentation_Badge_506c1dd3__["default"], {
|
|
36
|
+
color: "grey",
|
|
37
|
+
children: "Demo"
|
|
38
|
+
})
|
|
39
|
+
}) : null
|
|
40
|
+
]
|
|
41
|
+
});
|
|
42
|
+
const NavTitle_rslib_entry_ = NavTitle;
|
|
43
|
+
export { NavTitle_rslib_entry_ as default };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
.container-tfjjA7 {
|
|
2
|
+
--logo-size: 48px;
|
|
3
|
+
--image-size: 48px;
|
|
4
|
+
border-radius: 11px;
|
|
5
|
+
grid-template-columns: auto minmax(0, 1fr) auto;
|
|
6
|
+
grid-auto-flow: column;
|
|
7
|
+
justify-content: start;
|
|
8
|
+
align-items: center;
|
|
9
|
+
gap: 8px;
|
|
10
|
+
padding: 8px;
|
|
11
|
+
display: grid;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.logo-s11ueh {
|
|
15
|
+
height: var(--logo-size);
|
|
16
|
+
width: var(--logo-size);
|
|
17
|
+
background: #fff;
|
|
18
|
+
border-radius: 50%;
|
|
19
|
+
place-content: center;
|
|
20
|
+
display: grid;
|
|
21
|
+
overflow: hidden;
|
|
22
|
+
box-shadow: 0 0 0 .5px #3c3c435c;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.logo-s11ueh img {
|
|
26
|
+
height: var(--image-size);
|
|
27
|
+
max-width: none;
|
|
28
|
+
width: var(--image-size);
|
|
29
|
+
}
|
|
30
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
const SidebarIcon = ()=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("svg", {
|
|
3
|
+
width: 22,
|
|
4
|
+
height: 22,
|
|
5
|
+
fill: "none",
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
|
|
8
|
+
d: "M3.82 18.65h14.36c1.743 0 2.607-.864 2.607-2.574V5.94c0-1.71-.864-2.574-2.607-2.574H3.82c-1.735 0-2.607.855-2.607 2.574v10.135c0 1.718.872 2.573 2.607 2.573zm.016-1.337c-.83 0-1.286-.44-1.286-1.303V6.006c0-.863.456-1.303 1.286-1.303h14.328c.821 0 1.286.44 1.286 1.303V16.01c0 .864-.465 1.304-1.286 1.304H3.836zm3.703.257h1.303V4.455H7.539V17.57zM5.945 7.783a.488.488 0 00.473-.464.482.482 0 00-.473-.465H4.16a.475.475 0 00-.465.465c0 .24.216.464.465.464h1.785zm0 2.15a.49.49 0 00.473-.473c0-.249-.224-.456-.473-.456H4.16a.468.468 0 00-.465.456c0 .25.216.473.465.473h1.785zm0 2.142c.249 0 .473-.208.473-.457a.482.482 0 00-.473-.464H4.16a.475.475 0 00-.465.464c0 .25.216.457.465.457h1.785z",
|
|
9
|
+
fill: "currentColor"
|
|
10
|
+
})
|
|
11
|
+
});
|
|
12
|
+
const SidebarIcon_rslib_entry_ = SidebarIcon;
|
|
13
|
+
export { SidebarIcon_rslib_entry_ as default };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { ReactNode } from "react";
|
|
2
|
+
type Props = {
|
|
3
|
+
children: ReactNode;
|
|
4
|
+
href: string;
|
|
5
|
+
title?: string;
|
|
6
|
+
} | {
|
|
7
|
+
children: ReactNode;
|
|
8
|
+
onClick: () => void;
|
|
9
|
+
title?: string;
|
|
10
|
+
};
|
|
11
|
+
declare const ToolbarButton: (props: Props) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export default ToolbarButton;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
3
|
+
import * as __WEBPACK_EXTERNAL_MODULE__ToolbarButton_module_js_4dcbb7a4__ from "./ToolbarButton.module.js";
|
|
4
|
+
import * as __WEBPACK_EXTERNAL_MODULE__utils_useNextContext_js_47529181__ from "../utils/useNextContext.js";
|
|
5
|
+
const ToolbarButton = (props)=>{
|
|
6
|
+
const { Link } = (0, __WEBPACK_EXTERNAL_MODULE__utils_useNextContext_js_47529181__["default"])();
|
|
7
|
+
return "href" in props ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(Link, {
|
|
8
|
+
href: props.href,
|
|
9
|
+
legacyBehavior: true,
|
|
10
|
+
children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("a", {
|
|
11
|
+
className: __WEBPACK_EXTERNAL_MODULE__ToolbarButton_module_js_4dcbb7a4__["default"].button,
|
|
12
|
+
title: props.title,
|
|
13
|
+
children: props.children
|
|
14
|
+
})
|
|
15
|
+
}) : /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("button", {
|
|
16
|
+
className: __WEBPACK_EXTERNAL_MODULE__ToolbarButton_module_js_4dcbb7a4__["default"].button,
|
|
17
|
+
onClick: props.onClick,
|
|
18
|
+
title: props.title,
|
|
19
|
+
children: props.children
|
|
20
|
+
});
|
|
21
|
+
};
|
|
22
|
+
const ToolbarButton_rslib_entry_ = ToolbarButton;
|
|
23
|
+
export { ToolbarButton_rslib_entry_ as default };
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
.button-k6LVXW {
|
|
2
|
+
-webkit-touch-callout: none;
|
|
3
|
+
border-radius: 11px;
|
|
4
|
+
gap: 8px;
|
|
5
|
+
padding: 8px;
|
|
6
|
+
transition: background .25s ease-out;
|
|
7
|
+
display: flex;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.button-k6LVXW:active {
|
|
11
|
+
background: #78788029;
|
|
12
|
+
transition: none;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
@media (hover: hover) {
|
|
16
|
+
.button-k6LVXW {
|
|
17
|
+
transition: none;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.button-k6LVXW:hover, .closed-coQD69 .button-k6LVXW:hover {
|
|
21
|
+
background: #78788029;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
const AppsIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
|
|
3
|
+
id: id,
|
|
4
|
+
viewBox: "0 0 16 20",
|
|
5
|
+
fill: "currentColor",
|
|
6
|
+
children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
|
|
7
|
+
d: "M2.5 4.5V7.5H5.5V4.5H2.5ZM1 4.5C1 3.67188 1.67188 3 2.5 3H5.5C6.32812 3 7 3.67188 7 4.5V7.5C7 8.32812 6.32812 9 5.5 9H2.5C1.67188 9 1 8.32812 1 7.5V4.5ZM2.5 12.5V15.5H5.5V12.5H2.5ZM1 12.5C1 11.6719 1.67188 11 2.5 11H5.5C6.32812 11 7 11.6719 7 12.5V15.5C7 16.3281 6.32812 17 5.5 17H2.5C1.67188 17 1 16.3281 1 15.5V12.5ZM13.5 4.5H10.5V7.5H13.5V4.5ZM10.5 3H13.5C14.3281 3 15 3.67188 15 4.5V7.5C15 8.32812 14.3281 9 13.5 9H10.5C9.67188 9 9 8.32812 9 7.5V4.5C9 3.67188 9.67188 3 10.5 3ZM10.5 12.5V15.5H13.5V12.5H10.5ZM9 12.5C9 11.6719 9.67188 11 10.5 11H13.5C14.3281 11 15 11.6719 15 12.5V15.5C15 16.3281 14.3281 17 13.5 17H10.5C9.67188 17 9 16.3281 9 15.5V12.5Z"
|
|
8
|
+
})
|
|
9
|
+
});
|
|
10
|
+
const AppsIcon_rslib_entry_ = AppsIcon;
|
|
11
|
+
export { AppsIcon_rslib_entry_ as default };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
const ArchiveIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
|
|
3
|
+
id: id,
|
|
4
|
+
viewBox: "0 0 16 20",
|
|
5
|
+
fill: "currentColor",
|
|
6
|
+
children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
|
|
7
|
+
d: "M1.5 4.5V6H14.5V4.5H1.5ZM1 3H15C15.5531 3 16 3.44687 16 4V6.5C16 7.05313 15.5531 7.5 15 7.5H1C0.446875 7.5 0 7.05313 0 6.5V4C0 3.44687 0.446875 3 1 3ZM5 9.75C5 9.33437 5.33437 9 5.75 9H10.25C10.6656 9 11 9.33437 11 9.75C11 10.1656 10.6656 10.5 10.25 10.5H5.75C5.33437 10.5 5 10.1656 5 9.75ZM1 15V8.5H2.5V15C2.5 15.275 2.725 15.5 3 15.5H13C13.275 15.5 13.5 15.275 13.5 15V8.5H15V15C15 16.1031 14.1031 17 13 17H3C1.89688 17 1 16.1031 1 15Z"
|
|
8
|
+
})
|
|
9
|
+
});
|
|
10
|
+
const ArchiveIcon_rslib_entry_ = ArchiveIcon;
|
|
11
|
+
export { ArchiveIcon_rslib_entry_ as default };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
const ArrowLeftIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
|
|
3
|
+
id: id,
|
|
4
|
+
viewBox: "0 0 16 20",
|
|
5
|
+
fill: "currentColor",
|
|
6
|
+
children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
|
|
7
|
+
d: "M0.218726 9.46875C-0.0750244 9.7625 -0.0750244 10.2375 0.218726 10.5281L4.46873 14.7812C4.76248 15.075 5.23748 15.075 5.5281 14.7812C5.81873 14.4875 5.82185 14.0125 5.5281 13.7219L2.55935 10.7531L15.25 10.75C15.6656 10.75 16 10.4156 16 10C16 9.58437 15.6656 9.25 15.25 9.25H2.55935L5.5281 6.28125C5.82185 5.9875 5.82185 5.5125 5.5281 5.22187C5.23435 4.93125 4.75935 4.92812 4.46873 5.22187L0.218726 9.46875Z"
|
|
8
|
+
})
|
|
9
|
+
});
|
|
10
|
+
const ArrowLeftIcon_rslib_entry_ = ArrowLeftIcon;
|
|
11
|
+
export { ArrowLeftIcon_rslib_entry_ as default };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
const ArrowRightIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
|
|
3
|
+
id: id,
|
|
4
|
+
viewBox: "0 0 16 20",
|
|
5
|
+
fill: "currentColor",
|
|
6
|
+
children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
|
|
7
|
+
d: "M15.7812 10.5312C16.075 10.2375 16.075 9.7625 15.7812 9.47187L11.5312 5.21875C11.2375 4.925 10.7625 4.925 10.4719 5.21875C10.1813 5.5125 10.1781 5.9875 10.4719 6.27812L13.4406 9.24687L0.75 9.25C0.334375 9.25 0 9.58437 0 10C0 10.4156 0.334375 10.75 0.75 10.75H13.4406L10.4719 13.7187C10.1781 14.0125 10.1781 14.4875 10.4719 14.7781C10.7656 15.0687 11.2406 15.0719 11.5312 14.7781L15.7812 10.5312Z"
|
|
8
|
+
})
|
|
9
|
+
});
|
|
10
|
+
const ArrowRightIcon_rslib_entry_ = ArrowRightIcon;
|
|
11
|
+
export { ArrowRightIcon_rslib_entry_ as default };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
const AssignIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
|
|
3
|
+
id: id,
|
|
4
|
+
width: 20,
|
|
5
|
+
height: 20,
|
|
6
|
+
viewBox: "0 0 20 20",
|
|
7
|
+
fill: "currentColor",
|
|
8
|
+
children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
|
|
9
|
+
d: "M15.5 2.5H12.9375H12.5625C12.2734 1.07422 11.0117 0 9.5 0C7.98828 0 6.72656 1.07422 6.4375 2.5H6.0625H3.5C2.12109 2.5 1 3.62109 1 5V17.5C1 18.8789 2.12109 20 3.5 20H15.5C16.8789 20 18 18.8789 18 17.5V5C18 3.62109 16.8789 2.5 15.5 2.5ZM5.125 4.375V5.3125C5.125 5.83203 5.54297 6.25 6.0625 6.25H9.5H12.9375C13.457 6.25 13.875 5.83203 13.875 5.3125V4.375H15.5C15.8438 4.375 16.125 4.65625 16.125 5V17.5C16.125 17.8438 15.8438 18.125 15.5 18.125H3.5C3.15625 18.125 2.875 17.8438 2.875 17.5V5C2.875 4.65625 3.15625 4.375 3.5 4.375H5.125ZM8.5625 3.125C8.5625 2.87636 8.66127 2.6379 8.83709 2.46209C9.0129 2.28627 9.25136 2.1875 9.5 2.1875C9.74864 2.1875 9.9871 2.28627 10.1629 2.46209C10.3387 2.6379 10.4375 2.87636 10.4375 3.125C10.4375 3.37364 10.3387 3.6121 10.1629 3.78791C9.9871 3.96373 9.74864 4.0625 9.5 4.0625C9.25136 4.0625 9.0129 3.96373 8.83709 3.78791C8.66127 3.6121 8.5625 3.37364 8.5625 3.125ZM8.69141 9.19141C8.93359 8.94922 8.93359 8.55078 8.69141 8.30859C8.44922 8.06641 8.05078 8.06641 7.80859 8.30859L6.375 9.74219L5.87891 9.24609C5.63672 9.00391 5.23828 9.00391 4.99609 9.24609C4.75391 9.48828 4.75391 9.88672 4.99609 10.1289L5.93359 11.0664C6.17578 11.3086 6.57422 11.3086 6.81641 11.0664L8.69141 9.19141ZM9.5 10.625C9.5 10.9688 9.78125 11.25 10.125 11.25H12.625C12.9688 11.25 13.25 10.9688 13.25 10.625C13.25 10.2812 12.9688 10 12.625 10H10.125C9.78125 10 9.5 10.2812 9.5 10.625ZM8.25 14.375C8.25 14.7188 8.53125 15 8.875 15H12.625C12.9688 15 13.25 14.7188 13.25 14.375C13.25 14.0312 12.9688 13.75 12.625 13.75H8.875C8.53125 13.75 8.25 14.0312 8.25 14.375ZM6.375 15.3125C6.62364 15.3125 6.8621 15.2137 7.03791 15.0379C7.21373 14.8621 7.3125 14.6236 7.3125 14.375C7.3125 14.1264 7.21373 13.8879 7.03791 13.7121C6.8621 13.5363 6.62364 13.4375 6.375 13.4375C6.12636 13.4375 5.8879 13.5363 5.71209 13.7121C5.53627 13.8879 5.4375 14.1264 5.4375 14.375C5.4375 14.6236 5.53627 14.8621 5.71209 15.0379C5.8879 15.2137 6.12636 15.3125 6.375 15.3125Z"
|
|
10
|
+
})
|
|
11
|
+
});
|
|
12
|
+
const AssignIcon_rslib_entry_ = AssignIcon;
|
|
13
|
+
export { AssignIcon_rslib_entry_ as default };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
const BankAccountIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
|
|
3
|
+
id: id,
|
|
4
|
+
viewBox: "0 0 18 20",
|
|
5
|
+
fill: "currentColor",
|
|
6
|
+
children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
|
|
7
|
+
d: "M8.65938 3.5C9.37813 3.5 9.9875 3.95937 10.2156 4.6C10.3531 4.99062 10.7812 5.19375 11.1719 5.05625C11.5625 4.91875 11.7656 4.49062 11.6281 4.1C11.1969 2.87812 10.0313 2 8.65938 2C7.2875 2 6.11875 2.87812 5.6875 4.1C5.55 4.49062 5.75313 4.91875 6.14375 5.05625C6.53438 5.19375 6.9625 4.99062 7.1 4.6C7.32812 3.95937 7.94063 3.5 8.65938 3.5ZM2.08437 8.17188C2.45625 7.9875 2.60625 7.5375 2.41875 7.16563C2.23125 6.79375 1.78438 6.64375 1.4125 6.83125L1.26562 6.90312C0.490625 7.29062 0 8.08438 0 8.95625C0 10.125 0.875 11.0906 2.00625 11.2344C2.075 12.7719 2.84375 14.1313 4 15V16.5C4 17.3281 4.67188 18 5.5 18H7C7.82812 18 8.5 17.3281 8.5 16.5V16H10V16.5C10 17.3281 10.6719 18 11.5 18H13C13.8281 18 14.5 17.3281 14.5 16.5V15.3313C15.0844 14.9938 15.5969 14.5375 16 14H17C17.5531 14 18 13.5531 18 13V10C18 9.44687 17.5531 9 17 9H16.5844C16.3281 8.4125 15.9625 7.88437 15.5156 7.44375L15.8687 6.29375C16.0656 5.65 15.5844 5 14.9125 5H14.25C13.2656 5 12.3687 5.38125 11.7 6H7C4.675 6 2.71875 7.5875 2.15937 9.7375C1.78437 9.675 1.5 9.34688 1.5 8.95312C1.5 8.65312 1.66875 8.37812 1.94062 8.24062L2.0875 8.16875L2.08437 8.17188ZM13.25 11C13.4489 11 13.6397 10.921 13.7803 10.7803C13.921 10.6397 14 10.4489 14 10.25C14 10.0511 13.921 9.86032 13.7803 9.71967C13.6397 9.57902 13.4489 9.5 13.25 9.5C13.0511 9.5 12.8603 9.57902 12.7197 9.71967C12.579 9.86032 12.5 10.0511 12.5 10.25C12.5 10.4489 12.579 10.6397 12.7197 10.7803C12.8603 10.921 13.0511 11 13.25 11ZM12.5719 7.25C12.9812 6.79063 13.575 6.50313 14.2344 6.5L13.9375 7.4625C13.8469 7.75625 13.9437 8.075 14.1844 8.26875C14.7281 8.70313 15.1344 9.29375 15.3438 9.97188C15.4406 10.2875 15.7313 10.5031 16.0594 10.5031H16.4969V12.5031H15.6031C15.3437 12.5031 15.1031 12.6375 14.9688 12.8562C14.6031 13.4406 14.0719 13.9094 13.4406 14.1938C13.1719 14.3125 13 14.5781 13 14.875V16.5H11.5V15.25C11.5 14.8344 11.1656 14.5 10.75 14.5H7.75C7.33437 14.5 7 14.8344 7 15.25V16.5H5.5V14.6062C5.5 14.3469 5.36562 14.1063 5.14687 13.9719C4.15625 13.3531 3.5 12.2531 3.5 11.0031C3.5 9.06875 5.06562 7.50313 7 7.50313H12H12.0125C12.225 7.50313 12.4312 7.4125 12.5719 7.25313V7.25Z"
|
|
8
|
+
})
|
|
9
|
+
});
|
|
10
|
+
const BankAccountIcon_rslib_entry_ = BankAccountIcon;
|
|
11
|
+
export { BankAccountIcon_rslib_entry_ as default };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
const CalendarIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
|
|
3
|
+
id: id,
|
|
4
|
+
viewBox: "0 0 14 20",
|
|
5
|
+
fill: "currentColor",
|
|
6
|
+
children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
|
|
7
|
+
d: "M4.75 2.75C4.75 2.33437 4.41563 2 4 2C3.58437 2 3.25 2.33437 3.25 2.75V4H2C0.896875 4 0 4.89688 0 6V6.5V8V16C0 17.1031 0.896875 18 2 18H12C13.1031 18 14 17.1031 14 16V8V6.5V6C14 4.89688 13.1031 4 12 4H10.75V2.75C10.75 2.33437 10.4156 2 10 2C9.58437 2 9.25 2.33437 9.25 2.75V4H4.75V2.75ZM1.5 8H4V9.75H1.5V8ZM1.5 11.25H4V13.25H1.5V11.25ZM5.5 11.25H8.5V13.25H5.5V11.25ZM10 11.25H12.5V13.25H10V11.25ZM12.5 9.75H10V8H12.5V9.75ZM12.5 14.75V16C12.5 16.275 12.275 16.5 12 16.5H10V14.75H12.5ZM8.5 14.75V16.5H5.5V14.75H8.5ZM4 14.75V16.5H2C1.725 16.5 1.5 16.275 1.5 16V14.75H4ZM8.5 9.75H5.5V8H8.5V9.75Z"
|
|
8
|
+
})
|
|
9
|
+
});
|
|
10
|
+
const CalendarIcon_rslib_entry_ = CalendarIcon;
|
|
11
|
+
export { CalendarIcon_rslib_entry_ as default };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
const CancelIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
|
|
3
|
+
id: id,
|
|
4
|
+
viewBox: "0 0 16 20",
|
|
5
|
+
fill: "currentColor",
|
|
6
|
+
children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
|
|
7
|
+
d: "M12.0344 15.0969L2.90313 5.96563C2.025 7.07188 1.5 8.475 1.5 10C1.5 13.5906 4.40937 16.5 8 16.5C9.525 16.5 10.9281 15.975 12.0344 15.0969ZM13.0938 14.0375C13.975 12.9281 14.5 11.525 14.5 10C14.5 6.40937 11.5906 3.5 8 3.5C6.475 3.5 5.07188 4.025 3.96563 4.90313L13.0969 14.0344L13.0938 14.0375ZM0 10C0 7.87827 0.842855 5.84344 2.34315 4.34315C3.84344 2.84285 5.87827 2 8 2C10.1217 2 12.1566 2.84285 13.6569 4.34315C15.1571 5.84344 16 7.87827 16 10C16 12.1217 15.1571 14.1566 13.6569 15.6569C12.1566 17.1571 10.1217 18 8 18C5.87827 18 3.84344 17.1571 2.34315 15.6569C0.842855 14.1566 0 12.1217 0 10Z"
|
|
8
|
+
})
|
|
9
|
+
});
|
|
10
|
+
const CancelIcon_rslib_entry_ = CancelIcon;
|
|
11
|
+
export { CancelIcon_rslib_entry_ as default };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
const CaratDownIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
|
|
3
|
+
id: id,
|
|
4
|
+
viewBox: "0 0 10 20",
|
|
5
|
+
fill: "currentColor",
|
|
6
|
+
children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
|
|
7
|
+
d: "M4.29378 13.7063C4.68441 14.0969 5.31878 14.0969 5.70941 13.7063L9.70941 9.70626C9.99691 9.41876 10.0813 8.99064 9.92503 8.61564C9.76878 8.24064 9.40628 7.99689 9.00003 7.99689L1.00003 8.00001C0.596906 8.00001 0.231281 8.24376 0.0750307 8.61876C-0.0812193 8.99376 0.00628069 9.42189 0.290656 9.70939L4.29066 13.7094L4.29378 13.7063Z"
|
|
8
|
+
})
|
|
9
|
+
});
|
|
10
|
+
const CaratDownIcon_rslib_entry_ = CaratDownIcon;
|
|
11
|
+
export { CaratDownIcon_rslib_entry_ as default };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
const CaratLeftIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
|
|
3
|
+
id: id,
|
|
4
|
+
viewBox: "0 0 8 20",
|
|
5
|
+
fill: "currentColor",
|
|
6
|
+
children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
|
|
7
|
+
d: "M0.293701 10.7062C-0.0969238 10.3156 -0.0969238 9.68124 0.293701 9.29061L4.2937 5.29061C4.5812 5.00311 5.00933 4.91874 5.38433 5.07499C5.75933 5.23124 6.00308 5.59374 6.00308 5.99999V14C6.00308 14.4031 5.75933 14.7687 5.38433 14.925C5.00933 15.0812 4.5812 14.9937 4.2937 14.7094L0.293701 10.7094V10.7062Z"
|
|
8
|
+
})
|
|
9
|
+
});
|
|
10
|
+
const CaratLeftIcon_rslib_entry_ = CaratLeftIcon;
|
|
11
|
+
export { CaratLeftIcon_rslib_entry_ as default };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
const CaratRightIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
|
|
3
|
+
id: id,
|
|
4
|
+
viewBox: "0 0 8 20",
|
|
5
|
+
fill: "currentColor",
|
|
6
|
+
children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
|
|
7
|
+
d: "M7.7062 10.7062C8.09683 10.3156 8.09683 9.68124 7.7062 9.29061L3.7062 5.29061C3.4187 5.00311 2.99058 4.91874 2.61558 5.07499C2.24058 5.23124 1.99683 5.59374 1.99683 5.99999V14C1.99683 14.4031 2.24058 14.7687 2.61558 14.925C2.99058 15.0812 3.4187 14.9937 3.7062 14.7094L7.7062 10.7094V10.7062Z"
|
|
8
|
+
})
|
|
9
|
+
});
|
|
10
|
+
const CaratRightIcon_rslib_entry_ = CaratRightIcon;
|
|
11
|
+
export { CaratRightIcon_rslib_entry_ as default };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
const CaratUpIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
|
|
3
|
+
id: id,
|
|
4
|
+
viewBox: "0 0 10 20",
|
|
5
|
+
fill: "currentColor",
|
|
6
|
+
children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
|
|
7
|
+
d: "M5.70624 6.29376C5.31561 5.90314 4.68124 5.90314 4.29061 6.29376L0.290614 10.2938C0.00311416 10.5813 -0.0812609 11.0094 0.0749891 11.3844C0.231239 11.7594 0.593739 12.0031 0.999989 12.0031H8.99999C9.40311 12.0031 9.76874 11.7594 9.92499 11.3844C10.0812 11.0094 9.99374 10.5813 9.70936 10.2938L5.70936 6.29376H5.70624Z"
|
|
8
|
+
})
|
|
9
|
+
});
|
|
10
|
+
const CaratUpIcon_rslib_entry_ = CaratUpIcon;
|
|
11
|
+
export { CaratUpIcon_rslib_entry_ as default };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
const CheckmarkIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
|
|
3
|
+
id: id,
|
|
4
|
+
viewBox: "0 0 17 20",
|
|
5
|
+
fill: "currentColor",
|
|
6
|
+
children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
|
|
7
|
+
d: "M15.1145 5.21875C15.4083 5.5125 15.4083 5.9875 15.1145 6.27812L6.86454 14.5313C6.57079 14.825 6.09579 14.825 5.80516 14.5313L1.55204 10.2813C1.25829 9.9875 1.25829 9.5125 1.55204 9.22188C1.84579 8.93125 2.32079 8.92813 2.61141 9.22188L6.33016 12.9406L14.052 5.21875C14.3458 4.925 14.8208 4.925 15.1114 5.21875H15.1145Z"
|
|
8
|
+
})
|
|
9
|
+
});
|
|
10
|
+
const CheckmarkIcon_rslib_entry_ = CheckmarkIcon;
|
|
11
|
+
export { CheckmarkIcon_rslib_entry_ as default };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
const ChevronDownIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
|
|
3
|
+
id: id,
|
|
4
|
+
viewBox: "0 0 16 20",
|
|
5
|
+
fill: "currentColor",
|
|
6
|
+
children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
|
|
7
|
+
d: "M7.46876 14.5312C7.76251 14.825 8.23751 14.825 8.52814 14.5312L14.5313 8.53125C14.825 8.2375 14.825 7.7625 14.5313 7.47187C14.2375 7.18125 13.7625 7.17812 13.4719 7.47187L8.00314 12.9406L2.53126 7.46875C2.23751 7.175 1.76251 7.175 1.47189 7.46875C1.18126 7.7625 1.17814 8.2375 1.47189 8.52812L7.46876 14.5312Z"
|
|
8
|
+
})
|
|
9
|
+
});
|
|
10
|
+
const ChevronDownIcon_rslib_entry_ = ChevronDownIcon;
|
|
11
|
+
export { ChevronDownIcon_rslib_entry_ as default };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
const ChevronLeftIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
|
|
3
|
+
id: id,
|
|
4
|
+
viewBox: "0 0 10 20",
|
|
5
|
+
fill: "currentColor",
|
|
6
|
+
children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
|
|
7
|
+
d: "M0.468726 9.46875C0.174976 9.7625 0.174976 10.2375 0.468726 10.5281L6.46873 16.5312C6.76248 16.825 7.23748 16.825 7.5281 16.5312C7.81873 16.2375 7.82185 15.7625 7.5281 15.4719L2.05935 10L7.53123 4.53125C7.82498 4.2375 7.82498 3.7625 7.53123 3.47187C7.23748 3.18125 6.76248 3.17812 6.47185 3.47187L0.468726 9.46875Z"
|
|
8
|
+
})
|
|
9
|
+
});
|
|
10
|
+
const ChevronLeftIcon_rslib_entry_ = ChevronLeftIcon;
|
|
11
|
+
export { ChevronLeftIcon_rslib_entry_ as default };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
const ChevronRightIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
|
|
3
|
+
id: id,
|
|
4
|
+
viewBox: "0 0 10 20",
|
|
5
|
+
fill: "currentColor",
|
|
6
|
+
children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
|
|
7
|
+
d: "M9.53123 9.46875C9.82498 9.7625 9.82498 10.2375 9.53123 10.5281L3.53123 16.5312C3.23748 16.825 2.76248 16.825 2.47185 16.5312C2.18123 16.2375 2.1781 15.7625 2.47185 15.4719L7.9406 10.0031L2.46873 4.53125C2.17498 4.2375 2.17498 3.7625 2.46873 3.47187C2.76248 3.18125 3.23748 3.17812 3.5281 3.47187L9.53123 9.46875Z"
|
|
8
|
+
})
|
|
9
|
+
});
|
|
10
|
+
const ChevronRightIcon_rslib_entry_ = ChevronRightIcon;
|
|
11
|
+
export { ChevronRightIcon_rslib_entry_ as default };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
const ChevronUpIcon = ({ id })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("symbol", {
|
|
3
|
+
id: id,
|
|
4
|
+
viewBox: "0 0 16 20",
|
|
5
|
+
fill: "currentColor",
|
|
6
|
+
children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
|
|
7
|
+
d: "M7.46876 5.46875C7.76251 5.175 8.23751 5.175 8.52814 5.46875L14.5313 11.4687C14.825 11.7625 14.825 12.2375 14.5313 12.5281C14.2375 12.8187 13.7625 12.8219 13.4719 12.5281L8.00314 7.05937L2.53126 12.5312C2.23751 12.825 1.76251 12.825 1.47189 12.5312C1.18126 12.2375 1.17814 11.7625 1.47189 11.4719L7.46876 5.46875Z"
|
|
8
|
+
})
|
|
9
|
+
});
|
|
10
|
+
const ChevronUpIcon_rslib_entry_ = ChevronUpIcon;
|
|
11
|
+
export { ChevronUpIcon_rslib_entry_ as default };
|