@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,89 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react__ from "react";
|
|
3
|
+
const SIZES = {
|
|
4
|
+
xtiny: 16,
|
|
5
|
+
tiny: 24,
|
|
6
|
+
small: 48,
|
|
7
|
+
large: 96,
|
|
8
|
+
xlarge: 192
|
|
9
|
+
};
|
|
10
|
+
const getInitials = (name)=>{
|
|
11
|
+
const names = name.trim().split(/[\s-]+/);
|
|
12
|
+
return names.length <= 3 ? names.map((name)=>[
|
|
13
|
+
...name
|
|
14
|
+
][0]).join("") : [
|
|
15
|
+
...names[0]
|
|
16
|
+
][0] + [
|
|
17
|
+
...names[names.length - 1]
|
|
18
|
+
][0];
|
|
19
|
+
};
|
|
20
|
+
const PersonAvatar = ({ id, size = "large", name, imageUrl, children, hue })=>{
|
|
21
|
+
const [showProfile, setShowProfile] = (0, __WEBPACK_EXTERNAL_MODULE_react__.useState)(false);
|
|
22
|
+
return /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)(__WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.Fragment, {
|
|
23
|
+
children: [
|
|
24
|
+
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("svg", {
|
|
25
|
+
style: {
|
|
26
|
+
cursor: children ? "pointer" : "inherit"
|
|
27
|
+
},
|
|
28
|
+
width: SIZES[size],
|
|
29
|
+
height: SIZES[size],
|
|
30
|
+
viewBox: "0 0 96 96",
|
|
31
|
+
onClick: children ? ()=>{
|
|
32
|
+
setShowProfile(true);
|
|
33
|
+
} : void 0,
|
|
34
|
+
children: imageUrl ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)(__WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.Fragment, {
|
|
35
|
+
children: [
|
|
36
|
+
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("defs", {
|
|
37
|
+
children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("pattern", {
|
|
38
|
+
id: `${id}-pattern`,
|
|
39
|
+
patternUnits: "userSpaceOnUse",
|
|
40
|
+
width: "96",
|
|
41
|
+
height: "96",
|
|
42
|
+
children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("image", {
|
|
43
|
+
href: imageUrl,
|
|
44
|
+
height: "96",
|
|
45
|
+
width: "96",
|
|
46
|
+
preserveAspectRatio: "xMidYMid slice"
|
|
47
|
+
})
|
|
48
|
+
})
|
|
49
|
+
}),
|
|
50
|
+
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("circle", {
|
|
51
|
+
cx: "48",
|
|
52
|
+
cy: "48",
|
|
53
|
+
r: "48",
|
|
54
|
+
fill: "none"
|
|
55
|
+
}),
|
|
56
|
+
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("circle", {
|
|
57
|
+
cx: "48",
|
|
58
|
+
cy: "48",
|
|
59
|
+
r: "48",
|
|
60
|
+
fill: `url(#${id}-pattern)`
|
|
61
|
+
})
|
|
62
|
+
]
|
|
63
|
+
}) : /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)(__WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.Fragment, {
|
|
64
|
+
children: [
|
|
65
|
+
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("circle", {
|
|
66
|
+
cx: "48",
|
|
67
|
+
cy: "48",
|
|
68
|
+
r: "48",
|
|
69
|
+
fill: `oklch(67.4% 0.1215 ${hue})`
|
|
70
|
+
}),
|
|
71
|
+
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("text", {
|
|
72
|
+
fill: "#fff",
|
|
73
|
+
x: 48,
|
|
74
|
+
y: 62,
|
|
75
|
+
fontSize: 36,
|
|
76
|
+
textAnchor: "middle",
|
|
77
|
+
children: getInitials(name)
|
|
78
|
+
})
|
|
79
|
+
]
|
|
80
|
+
})
|
|
81
|
+
}),
|
|
82
|
+
showProfile && children ? children(()=>{
|
|
83
|
+
setShowProfile(false);
|
|
84
|
+
}) : null
|
|
85
|
+
]
|
|
86
|
+
});
|
|
87
|
+
};
|
|
88
|
+
const PersonAvatar_rslib_entry_ = PersonAvatar;
|
|
89
|
+
export { PersonAvatar_rslib_entry_ as default };
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { ComponentProps } from "react";
|
|
2
|
+
import PersonAvatar from "./PersonAvatar";
|
|
3
|
+
type Props = ComponentProps<typeof PersonAvatar>;
|
|
4
|
+
declare const PersonCover: ({ id, size, name, imageUrl, hue }: Omit<Props, "children">) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export default PersonCover;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
import * as __WEBPACK_EXTERNAL_MODULE__PersonAvatar_js_6bab610a__ from "./PersonAvatar.js";
|
|
3
|
+
import * as __WEBPACK_EXTERNAL_MODULE__PersonCover_module_js_e0f8db03__ from "./PersonCover.module.js";
|
|
4
|
+
const PersonCover = ({ id, size = "xlarge", name, imageUrl, hue })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
|
|
5
|
+
className: __WEBPACK_EXTERNAL_MODULE__PersonCover_module_js_e0f8db03__["default"].container,
|
|
6
|
+
style: {
|
|
7
|
+
background: imageUrl ? `url(${imageUrl}) center/125%` : `linear-gradient(130deg, oklch(67.4% 0.1215 ${hue}) 0%, oklch(55% 0.1215 ${hue}) 100%)`
|
|
8
|
+
},
|
|
9
|
+
children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
|
|
10
|
+
className: __WEBPACK_EXTERNAL_MODULE__PersonCover_module_js_e0f8db03__["default"].avatarContainer,
|
|
11
|
+
children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(__WEBPACK_EXTERNAL_MODULE__PersonAvatar_js_6bab610a__["default"], {
|
|
12
|
+
id: id,
|
|
13
|
+
size: size,
|
|
14
|
+
name: name,
|
|
15
|
+
imageUrl: imageUrl,
|
|
16
|
+
hue: hue
|
|
17
|
+
})
|
|
18
|
+
})
|
|
19
|
+
});
|
|
20
|
+
const PersonCover_rslib_entry_ = PersonCover;
|
|
21
|
+
export { PersonCover_rslib_entry_ as default };
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
.container-I791mE {
|
|
2
|
+
padding: var(--size-p2);
|
|
3
|
+
background-color: var(--color-grey-t10);
|
|
4
|
+
justify-content: center;
|
|
5
|
+
align-items: center;
|
|
6
|
+
display: flex;
|
|
7
|
+
position: relative;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.container-I791mE:before {
|
|
11
|
+
content: "";
|
|
12
|
+
-webkit-backdrop-filter: blur(96px);
|
|
13
|
+
backdrop-filter: blur(96px);
|
|
14
|
+
display: block;
|
|
15
|
+
position: absolute;
|
|
16
|
+
inset: 0;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.avatarContainer-RiuqVG {
|
|
20
|
+
position: relative;
|
|
21
|
+
}
|
|
22
|
+
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
import * as __WEBPACK_EXTERNAL_MODULE__Placeholder_module_js_95ed4d99__ from "./Placeholder.module.js";
|
|
3
|
+
const Placeholder = ({ children })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
|
|
4
|
+
className: __WEBPACK_EXTERNAL_MODULE__Placeholder_module_js_95ed4d99__["default"].container,
|
|
5
|
+
children: children
|
|
6
|
+
});
|
|
7
|
+
const Placeholder_rslib_entry_ = Placeholder;
|
|
8
|
+
export { Placeholder_rslib_entry_ as default };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { ReactNode } from "react";
|
|
2
|
+
type Props = {
|
|
3
|
+
children: ReactNode;
|
|
4
|
+
font?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "monospace" | "regular-bold-italic" | "regular-bold" | "regular-italic" | "regular" | "small-bold-italic" | "small-bold" | "small-italic" | "small" | "tiny-bold-italic" | "tiny-bold" | "tiny-italic" | "tiny";
|
|
5
|
+
id?: string;
|
|
6
|
+
tone?: "default" | "primary" | "muted" | "danger" | "warning" | "success" | "info";
|
|
7
|
+
tagName?: "div" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "span" | "p";
|
|
8
|
+
truncate?: boolean;
|
|
9
|
+
};
|
|
10
|
+
declare const PlainText: ({ children, font, id, tagName, tone, truncate }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export default PlainText;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
import * as __WEBPACK_EXTERNAL_MODULE__PlainText_module_js_b4d5c808__ from "./PlainText.module.js";
|
|
3
|
+
import * as __WEBPACK_EXTERNAL_MODULE_clsx__ from "clsx";
|
|
4
|
+
const DEFAULT_TAG = {
|
|
5
|
+
h1: "h1",
|
|
6
|
+
h2: "h2",
|
|
7
|
+
h3: "h3",
|
|
8
|
+
h4: "h4",
|
|
9
|
+
h5: "h5",
|
|
10
|
+
h6: "h6",
|
|
11
|
+
monospace: "span",
|
|
12
|
+
"regular-bold-italic": "span",
|
|
13
|
+
"regular-bold": "span",
|
|
14
|
+
"regular-italic": "span",
|
|
15
|
+
regular: "span",
|
|
16
|
+
"small-bold-italic": "span",
|
|
17
|
+
"small-bold": "span",
|
|
18
|
+
"small-italic": "span",
|
|
19
|
+
small: "span",
|
|
20
|
+
"tiny-bold-italic": "span",
|
|
21
|
+
"tiny-bold": "span",
|
|
22
|
+
"tiny-italic": "span",
|
|
23
|
+
tiny: "span"
|
|
24
|
+
};
|
|
25
|
+
const PlainText = ({ children, font = "regular", id, tagName, tone, truncate = false })=>{
|
|
26
|
+
const Tag = tagName ?? DEFAULT_TAG[font];
|
|
27
|
+
return /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(Tag, {
|
|
28
|
+
id: id,
|
|
29
|
+
className: (0, __WEBPACK_EXTERNAL_MODULE_clsx__["default"])({
|
|
30
|
+
[__WEBPACK_EXTERNAL_MODULE__PlainText_module_js_b4d5c808__["default"].truncate]: truncate
|
|
31
|
+
}),
|
|
32
|
+
style: {
|
|
33
|
+
font: `var(--font-${font})`,
|
|
34
|
+
color: tone ? `var(--tone-${tone})` : void 0
|
|
35
|
+
},
|
|
36
|
+
children: children
|
|
37
|
+
});
|
|
38
|
+
};
|
|
39
|
+
const PlainText_rslib_entry_ = PlainText;
|
|
40
|
+
export { PlainText_rslib_entry_ as default };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { ReactNode } from "react";
|
|
2
|
+
type Props = {
|
|
3
|
+
font?: "regular" | "small" | "tiny";
|
|
4
|
+
id?: string;
|
|
5
|
+
justify?: "left" | "center" | "right";
|
|
6
|
+
tagName?: keyof JSX.IntrinsicElements;
|
|
7
|
+
tone?: "default" | "primary" | "muted" | "danger" | "warning" | "success" | "info";
|
|
8
|
+
} & ({
|
|
9
|
+
children: ReactNode;
|
|
10
|
+
} | {
|
|
11
|
+
dangerouslySetInnerHTML: {
|
|
12
|
+
__html: string;
|
|
13
|
+
};
|
|
14
|
+
});
|
|
15
|
+
declare const RichText: ({ id, justify, font, tagName: Tag, tone, ...props }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
export default RichText;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
import * as __WEBPACK_EXTERNAL_MODULE__RichText_module_js_f088fb2b__ from "./RichText.module.js";
|
|
3
|
+
import * as __WEBPACK_EXTERNAL_MODULE_clsx__ from "clsx";
|
|
4
|
+
import * as __WEBPACK_EXTERNAL_MODULE__utils_customProperties_js_aeb40bdf__ from "../utils/customProperties.js";
|
|
5
|
+
const RichText = ({ id, justify, font = "regular", tagName: Tag = "div", tone, ...props })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(Tag, {
|
|
6
|
+
className: (0, __WEBPACK_EXTERNAL_MODULE_clsx__["default"])(__WEBPACK_EXTERNAL_MODULE__RichText_module_js_f088fb2b__["default"].richText, {
|
|
7
|
+
[__WEBPACK_EXTERNAL_MODULE__RichText_module_js_f088fb2b__["default"].small]: "small" === font,
|
|
8
|
+
[__WEBPACK_EXTERNAL_MODULE__RichText_module_js_f088fb2b__["default"].tiny]: "tiny" === font
|
|
9
|
+
}),
|
|
10
|
+
style: {
|
|
11
|
+
color: tone ? `var(--tone-${tone})` : void 0,
|
|
12
|
+
...(0, __WEBPACK_EXTERNAL_MODULE__utils_customProperties_js_aeb40bdf__["default"])({
|
|
13
|
+
["--justify"]: justify ?? "left"
|
|
14
|
+
})
|
|
15
|
+
},
|
|
16
|
+
id: id,
|
|
17
|
+
dangerouslySetInnerHTML: "dangerouslySetInnerHTML" in props ? props.dangerouslySetInnerHTML : void 0,
|
|
18
|
+
children: "children" in props ? props.children : void 0
|
|
19
|
+
});
|
|
20
|
+
const RichText_rslib_entry_ = RichText;
|
|
21
|
+
export { RichText_rslib_entry_ as default };
|
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
.richText-rs2PqI {
|
|
2
|
+
--justify: left;
|
|
3
|
+
--paragraph-gap: var(--size-n1);
|
|
4
|
+
--list-item-gap: var(--size-n3);
|
|
5
|
+
--nested-paragraph-gap: var(--size-n3);
|
|
6
|
+
font: var(--font-regular);
|
|
7
|
+
text-align: var(--justify);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.richText-rs2PqI h1 {
|
|
11
|
+
font: var(--font-h1);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.richText-rs2PqI * + h1 {
|
|
15
|
+
margin-top: var(--size-p2);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.richText-rs2PqI h2 {
|
|
19
|
+
font: var(--font-h2);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.richText-rs2PqI * + h2 {
|
|
23
|
+
margin-top: var(--size-p1);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.richText-rs2PqI h3 {
|
|
27
|
+
font: var(--font-h3);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.richText-rs2PqI * + h3 {
|
|
31
|
+
margin-top: var(--size-00);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.richText-rs2PqI h4 {
|
|
35
|
+
font: var(--font-h4);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.richText-rs2PqI * + h4 {
|
|
39
|
+
margin-top: var(--size-n1);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.richText-rs2PqI h5 {
|
|
43
|
+
font: var(--font-h5);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.richText-rs2PqI * + h5 {
|
|
47
|
+
margin-top: var(--size-n2);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.richText-rs2PqI h6 {
|
|
51
|
+
font: var(--font-h6);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.richText-rs2PqI * + h6 {
|
|
55
|
+
margin-top: var(--size-n3);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.richText-rs2PqI :where(b, strong) {
|
|
59
|
+
font: var(--font-regular-bold);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.richText-rs2PqI :where(i, em) {
|
|
63
|
+
font: var(--font-regular-italic);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.richText-rs2PqI :where(b, strong) :where(i, em), .richText-rs2PqI :where(i, em) :where(b, strong) {
|
|
67
|
+
font: var(--font-regular-bold-italic);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.richText-rs2PqI a {
|
|
71
|
+
color: var(--color-purple-000);
|
|
72
|
+
cursor: pointer;
|
|
73
|
+
text-decoration: underline;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.richText-rs2PqI a:hover, .richText-rs2PqI a:focus {
|
|
77
|
+
text-decoration: none;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.richText-rs2PqI a:focus {
|
|
81
|
+
border-radius: var(--size-n5);
|
|
82
|
+
outline: var(--size-n4) solid var(--color-purple-000);
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.richText-rs2PqI code, .richText-rs2PqI pre {
|
|
86
|
+
background: var(--color-grey-t10);
|
|
87
|
+
border-radius: var(--size-n4);
|
|
88
|
+
border: 1px solid var(--color-grey-t09);
|
|
89
|
+
font: var(--font-monospace);
|
|
90
|
+
padding: 0 var(--size-n3);
|
|
91
|
+
white-space: nowrap;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.richText-rs2PqI pre {
|
|
95
|
+
padding: var(--size-00);
|
|
96
|
+
border-radius: var(--size-n3);
|
|
97
|
+
white-space: pre;
|
|
98
|
+
overflow-x: auto;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.richText-rs2PqI :where(ul, ol) {
|
|
102
|
+
padding-left: 2em;
|
|
103
|
+
display: block;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.richText-rs2PqI ul {
|
|
107
|
+
list-style-type: disc;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.richText-rs2PqI ol {
|
|
111
|
+
list-style-type: decimal;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.richText-rs2PqI li {
|
|
115
|
+
display: list-item;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.richText-rs2PqI * + :where(p, ul, ol, pre) {
|
|
119
|
+
margin-top: var(--paragraph-gap);
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.richText-rs2PqI * + li {
|
|
123
|
+
margin-top: var(--list-item-gap);
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.richText-rs2PqI li * + :where(p, ul, ol) {
|
|
127
|
+
margin-top: var(--nested-paragraph-gap);
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.richText-rs2PqI.small-v6_1CL {
|
|
131
|
+
--paragraph-gap: var(--size-n4);
|
|
132
|
+
--list-item-gap: var(--size-n4);
|
|
133
|
+
--nested-paragraph-gap: var(--size-n4);
|
|
134
|
+
font: var(--font-small);
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.richText-rs2PqI.small-v6_1CL :where(h1, h2, h3, h4, h5, h6) {
|
|
138
|
+
font: var(--font-small-bold);
|
|
139
|
+
margin-top: var(--paragraph-gap);
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.richText-rs2PqI.small-v6_1CL :where(b, strong) {
|
|
143
|
+
font: var(--font-small-bold);
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.richText-rs2PqI.small-v6_1CL :where(i, em) {
|
|
147
|
+
font: var(--font-small-italic);
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.richText-rs2PqI.small-v6_1CL :where(b, strong) :where(i, em), .richText-rs2PqI.small-v6_1CL :where(i, em) :where(b, strong) {
|
|
151
|
+
font: var(--font-small-bold-italic);
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.richText-rs2PqI.tiny-rYC8f3 {
|
|
155
|
+
--paragraph-gap: var(--size-n5);
|
|
156
|
+
--list-item-gap: var(--size-n5);
|
|
157
|
+
--nested-paragraph-gap: var(--size-n5);
|
|
158
|
+
font: var(--font-tiny);
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.richText-rs2PqI.tiny-rYC8f3 :where(h1, h2, h3, h4, h5, h6) {
|
|
162
|
+
font: var(--font-tiny-bold);
|
|
163
|
+
margin-top: var(--paragraph-gap);
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.richText-rs2PqI.tiny-rYC8f3 :where(b, strong) {
|
|
167
|
+
font: var(--font-tiny-bold);
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.richText-rs2PqI.tiny-rYC8f3 :where(i, em) {
|
|
171
|
+
font: var(--font-tiny-italic);
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.richText-rs2PqI.tiny-rYC8f3 :where(b, strong) :where(i, em), .richText-rs2PqI.tiny-rYC8f3 :where(i, em) :where(b, strong) {
|
|
175
|
+
font: var(--font-tiny-bold-italic);
|
|
176
|
+
}
|
|
177
|
+
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { ReactNode } from "react";
|
|
2
|
+
type Props = {
|
|
3
|
+
children: ReactNode;
|
|
4
|
+
footer?: ReactNode;
|
|
5
|
+
header?: ReactNode;
|
|
6
|
+
} & ({
|
|
7
|
+
ariaLabel?: string;
|
|
8
|
+
tagName?: "article" | "aside" | "nav" | "section";
|
|
9
|
+
} | {
|
|
10
|
+
ariaLabel: string;
|
|
11
|
+
tagName: "form";
|
|
12
|
+
});
|
|
13
|
+
/**
|
|
14
|
+
* The `tagName` prop should be a sectioning element (`section`, `main`,
|
|
15
|
+
* `header`, `aside` etc) to ensure headers and footers used in the content are
|
|
16
|
+
* correctly contained (otherwise they'll apply to the whole page). If you're
|
|
17
|
+
* using a form you must also provide the `ariaLabel` prop to ensure the form is
|
|
18
|
+
* treated as a sectioning element.
|
|
19
|
+
*
|
|
20
|
+
* @deprecated Use `Card` instead.
|
|
21
|
+
*/
|
|
22
|
+
declare const Sheet: ({ ariaLabel, children, footer, header, tagName: Tag }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
23
|
+
export default Sheet;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
import * as __WEBPACK_EXTERNAL_MODULE__Sheet_module_js_ca28f850__ from "./Sheet.module.js";
|
|
3
|
+
const Sheet = ({ ariaLabel, children, footer, header, tagName: Tag = "section" })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)(Tag, {
|
|
4
|
+
className: __WEBPACK_EXTERNAL_MODULE__Sheet_module_js_ca28f850__["default"].container,
|
|
5
|
+
"aria-label": ariaLabel,
|
|
6
|
+
children: [
|
|
7
|
+
header ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
|
|
8
|
+
className: __WEBPACK_EXTERNAL_MODULE__Sheet_module_js_ca28f850__["default"].header,
|
|
9
|
+
children: header
|
|
10
|
+
}) : null,
|
|
11
|
+
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
|
|
12
|
+
className: __WEBPACK_EXTERNAL_MODULE__Sheet_module_js_ca28f850__["default"].content,
|
|
13
|
+
children: children
|
|
14
|
+
}),
|
|
15
|
+
footer ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
|
|
16
|
+
className: __WEBPACK_EXTERNAL_MODULE__Sheet_module_js_ca28f850__["default"].footer,
|
|
17
|
+
children: footer
|
|
18
|
+
}) : null
|
|
19
|
+
]
|
|
20
|
+
});
|
|
21
|
+
const Sheet_rslib_entry_ = Sheet;
|
|
22
|
+
export { Sheet_rslib_entry_ as default };
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
import * as __WEBPACK_EXTERNAL_MODULE__SheetContent_module_js_124d2136__ from "./SheetContent.module.js";
|
|
3
|
+
const SheetContent = ({ children })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
|
|
4
|
+
className: __WEBPACK_EXTERNAL_MODULE__SheetContent_module_js_124d2136__["default"].container,
|
|
5
|
+
children: children
|
|
6
|
+
});
|
|
7
|
+
const SheetContent_rslib_entry_ = SheetContent;
|
|
8
|
+
export { SheetContent_rslib_entry_ as default };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
import * as __WEBPACK_EXTERNAL_MODULE__SheetFooter_module_js_e58ec83e__ from "./SheetFooter.module.js";
|
|
3
|
+
import * as __WEBPACK_EXTERNAL_MODULE__Footer_js_44ffb150__ from "./Footer.js";
|
|
4
|
+
const SheetFooter = ({ children, secondary })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
|
|
5
|
+
className: __WEBPACK_EXTERNAL_MODULE__SheetFooter_module_js_e58ec83e__["default"].container,
|
|
6
|
+
children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(__WEBPACK_EXTERNAL_MODULE__Footer_js_44ffb150__["default"], {
|
|
7
|
+
secondary: secondary,
|
|
8
|
+
children: children
|
|
9
|
+
})
|
|
10
|
+
});
|
|
11
|
+
const SheetFooter_rslib_entry_ = SheetFooter;
|
|
12
|
+
export { SheetFooter_rslib_entry_ as default };
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { ReactNode } from "react";
|
|
2
|
+
type Props = {
|
|
3
|
+
actions?: ReactNode;
|
|
4
|
+
children: ReactNode;
|
|
5
|
+
description?: ReactNode;
|
|
6
|
+
};
|
|
7
|
+
declare const SheetHeader: ({ actions, children, description }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export default SheetHeader;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
import * as __WEBPACK_EXTERNAL_MODULE__SheetHeader_module_js_3a9500ba__ from "./SheetHeader.module.js";
|
|
3
|
+
import * as __WEBPACK_EXTERNAL_MODULE__Header_js_94d20122__ from "./Header.js";
|
|
4
|
+
const SheetHeader = ({ actions, children, description })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
|
|
5
|
+
className: __WEBPACK_EXTERNAL_MODULE__SheetHeader_module_js_3a9500ba__["default"].container,
|
|
6
|
+
children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(__WEBPACK_EXTERNAL_MODULE__Header_js_94d20122__["default"], {
|
|
7
|
+
actions: actions,
|
|
8
|
+
description: description,
|
|
9
|
+
children: children
|
|
10
|
+
})
|
|
11
|
+
});
|
|
12
|
+
const SheetHeader_rslib_entry_ = SheetHeader;
|
|
13
|
+
export { SheetHeader_rslib_entry_ as default };
|