@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,179 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
import * as __WEBPACK_EXTERNAL_MODULE__floating_ui_react_3ddd630a__ from "@floating-ui/react";
|
|
3
|
+
import * as __WEBPACK_EXTERNAL_MODULE_clsx__ from "clsx";
|
|
4
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react__ from "react";
|
|
5
|
+
import * as __WEBPACK_EXTERNAL_MODULE__presentation_Icon_js_6961aa57__ from "../presentation/Icon.js";
|
|
6
|
+
import * as __WEBPACK_EXTERNAL_MODULE__utils_search_js_89d5ae26__ from "../utils/search.js";
|
|
7
|
+
import * as __WEBPACK_EXTERNAL_MODULE__SingleSelectComboboxInput_module_js_54aa53da__ from "./SingleSelectComboboxInput.module.js";
|
|
8
|
+
const SingleSelectComboBoxInput = ({ autoFocus = false, disabled = false, id, onChange, options, optionToId, optionToLabel, value, placeholder, searchPlaceholder, searchFields, onCreate, onClear })=>{
|
|
9
|
+
const optionsRef = (0, __WEBPACK_EXTERNAL_MODULE_react__.useRef)([]);
|
|
10
|
+
const searchRef = (0, __WEBPACK_EXTERNAL_MODULE_react__.useRef)(null);
|
|
11
|
+
const listBoxRef = (0, __WEBPACK_EXTERNAL_MODULE_react__.useRef)(null);
|
|
12
|
+
const [searchTerm, setSearchTerm] = (0, __WEBPACK_EXTERNAL_MODULE_react__.useState)("");
|
|
13
|
+
const [createNewOption, setCreateNewOption] = (0, __WEBPACK_EXTERNAL_MODULE_react__.useState)(false);
|
|
14
|
+
const [isOpen, setIsOpen] = (0, __WEBPACK_EXTERNAL_MODULE_react__.useState)(false);
|
|
15
|
+
const [activeIndex, setActiveIndex] = (0, __WEBPACK_EXTERNAL_MODULE_react__.useState)(0);
|
|
16
|
+
const filteredOptions = "" !== searchTerm.trim() ? (0, __WEBPACK_EXTERNAL_MODULE__utils_search_js_89d5ae26__["default"])(options.map((option)=>({
|
|
17
|
+
...option,
|
|
18
|
+
id: optionToId(option)
|
|
19
|
+
})), searchFields, searchTerm) : options;
|
|
20
|
+
const { refs: floatingUiRefs, floatingStyles, context } = (0, __WEBPACK_EXTERNAL_MODULE__floating_ui_react_3ddd630a__.useFloating)({
|
|
21
|
+
open: isOpen,
|
|
22
|
+
onOpenChange: (open)=>{
|
|
23
|
+
setIsOpen(open);
|
|
24
|
+
if (open) {
|
|
25
|
+
setActiveIndex(0);
|
|
26
|
+
setSearchTerm("");
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
whileElementsMounted: __WEBPACK_EXTERNAL_MODULE__floating_ui_react_3ddd630a__.autoUpdate,
|
|
30
|
+
placement: "bottom-start",
|
|
31
|
+
middleware: [
|
|
32
|
+
(0, __WEBPACK_EXTERNAL_MODULE__floating_ui_react_3ddd630a__.flip)(),
|
|
33
|
+
(0, __WEBPACK_EXTERNAL_MODULE__floating_ui_react_3ddd630a__.offset)(4),
|
|
34
|
+
(0, __WEBPACK_EXTERNAL_MODULE__floating_ui_react_3ddd630a__.size)({
|
|
35
|
+
apply ({ rects, elements }) {
|
|
36
|
+
Object.assign(elements.floating.style, {
|
|
37
|
+
minWidth: `${rects.reference.width}px`,
|
|
38
|
+
maxWidth: rects.reference.width > 200 ? `${rects.reference.width}px` : "200px"
|
|
39
|
+
});
|
|
40
|
+
}
|
|
41
|
+
})
|
|
42
|
+
]
|
|
43
|
+
});
|
|
44
|
+
const click = (0, __WEBPACK_EXTERNAL_MODULE__floating_ui_react_3ddd630a__.useClick)(context);
|
|
45
|
+
const dismiss = (0, __WEBPACK_EXTERNAL_MODULE__floating_ui_react_3ddd630a__.useDismiss)(context);
|
|
46
|
+
const listNav = (0, __WEBPACK_EXTERNAL_MODULE__floating_ui_react_3ddd630a__.useListNavigation)(context, {
|
|
47
|
+
listRef: optionsRef,
|
|
48
|
+
activeIndex,
|
|
49
|
+
onNavigate: setActiveIndex,
|
|
50
|
+
virtual: true
|
|
51
|
+
});
|
|
52
|
+
const { getReferenceProps, getFloatingProps, getItemProps } = (0, __WEBPACK_EXTERNAL_MODULE__floating_ui_react_3ddd630a__.useInteractions)([
|
|
53
|
+
click,
|
|
54
|
+
dismiss,
|
|
55
|
+
listNav
|
|
56
|
+
]);
|
|
57
|
+
return /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)(__WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.Fragment, {
|
|
58
|
+
children: [
|
|
59
|
+
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("button", {
|
|
60
|
+
autoFocus: autoFocus,
|
|
61
|
+
disabled: disabled,
|
|
62
|
+
className: __WEBPACK_EXTERNAL_MODULE__SingleSelectComboboxInput_module_js_54aa53da__["default"].toggleButton,
|
|
63
|
+
tabIndex: 0,
|
|
64
|
+
type: "button",
|
|
65
|
+
ref: floatingUiRefs.setReference,
|
|
66
|
+
...getReferenceProps({
|
|
67
|
+
id: id
|
|
68
|
+
}),
|
|
69
|
+
children: [
|
|
70
|
+
value ? optionToLabel(value) : placeholder ?? "Select an option",
|
|
71
|
+
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("div", {
|
|
72
|
+
className: __WEBPACK_EXTERNAL_MODULE__SingleSelectComboboxInput_module_js_54aa53da__["default"].toggleButtonActions,
|
|
73
|
+
children: [
|
|
74
|
+
onClear && value ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
|
|
75
|
+
onClick: (event)=>{
|
|
76
|
+
event.stopPropagation();
|
|
77
|
+
setIsOpen(false);
|
|
78
|
+
onClear();
|
|
79
|
+
},
|
|
80
|
+
children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(__WEBPACK_EXTERNAL_MODULE__presentation_Icon_js_6961aa57__["default"], {
|
|
81
|
+
symbol: "Close"
|
|
82
|
+
})
|
|
83
|
+
}) : null,
|
|
84
|
+
isOpen ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(__WEBPACK_EXTERNAL_MODULE__presentation_Icon_js_6961aa57__["default"], {
|
|
85
|
+
symbol: "ChevronUp"
|
|
86
|
+
}) : /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(__WEBPACK_EXTERNAL_MODULE__presentation_Icon_js_6961aa57__["default"], {
|
|
87
|
+
symbol: "ChevronDown"
|
|
88
|
+
})
|
|
89
|
+
]
|
|
90
|
+
})
|
|
91
|
+
]
|
|
92
|
+
}),
|
|
93
|
+
!disabled && isOpen ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(__WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.Fragment, {
|
|
94
|
+
children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(__WEBPACK_EXTERNAL_MODULE__floating_ui_react_3ddd630a__.FloatingPortal, {
|
|
95
|
+
children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(__WEBPACK_EXTERNAL_MODULE__floating_ui_react_3ddd630a__.FloatingFocusManager, {
|
|
96
|
+
context: context,
|
|
97
|
+
initialFocus: searchRef,
|
|
98
|
+
modal: false,
|
|
99
|
+
children: /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("div", {
|
|
100
|
+
ref: floatingUiRefs.setFloating,
|
|
101
|
+
style: floatingStyles,
|
|
102
|
+
className: (0, __WEBPACK_EXTERNAL_MODULE_clsx__["default"])(__WEBPACK_EXTERNAL_MODULE__SingleSelectComboboxInput_module_js_54aa53da__["default"].menu),
|
|
103
|
+
...getFloatingProps(),
|
|
104
|
+
children: [
|
|
105
|
+
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("input", {
|
|
106
|
+
type: "text",
|
|
107
|
+
className: __WEBPACK_EXTERNAL_MODULE__SingleSelectComboboxInput_module_js_54aa53da__["default"].searchInput,
|
|
108
|
+
placeholder: searchPlaceholder ?? "Search for an option",
|
|
109
|
+
"aria-autocomplete": "list",
|
|
110
|
+
onChange: (e)=>{
|
|
111
|
+
setSearchTerm(e.target.value);
|
|
112
|
+
setActiveIndex(0);
|
|
113
|
+
},
|
|
114
|
+
value: searchTerm,
|
|
115
|
+
ref: searchRef,
|
|
116
|
+
onKeyDown: (e)=>{
|
|
117
|
+
if ("Enter" === e.key && null != activeIndex) {
|
|
118
|
+
setIsOpen(false);
|
|
119
|
+
onChange(filteredOptions[activeIndex]);
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
}),
|
|
123
|
+
0 !== filteredOptions.length || onCreate ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("ul", {
|
|
124
|
+
className: __WEBPACK_EXTERNAL_MODULE__SingleSelectComboboxInput_module_js_54aa53da__["default"].listBox,
|
|
125
|
+
ref: listBoxRef,
|
|
126
|
+
children: [
|
|
127
|
+
filteredOptions.map((option, index)=>{
|
|
128
|
+
const optionId = optionToId(option);
|
|
129
|
+
const optionLabel = optionToLabel(option);
|
|
130
|
+
return /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("li", {
|
|
131
|
+
className: (0, __WEBPACK_EXTERNAL_MODULE_clsx__["default"])(__WEBPACK_EXTERNAL_MODULE__SingleSelectComboboxInput_module_js_54aa53da__["default"].listItem, {
|
|
132
|
+
[__WEBPACK_EXTERNAL_MODULE__SingleSelectComboboxInput_module_js_54aa53da__["default"].activeListItem]: activeIndex === index
|
|
133
|
+
}),
|
|
134
|
+
...getItemProps({
|
|
135
|
+
onClick: ()=>{
|
|
136
|
+
setIsOpen(false);
|
|
137
|
+
onChange(option);
|
|
138
|
+
},
|
|
139
|
+
ref: (node)=>{
|
|
140
|
+
optionsRef.current[index] = node;
|
|
141
|
+
}
|
|
142
|
+
}),
|
|
143
|
+
children: [
|
|
144
|
+
optionLabel,
|
|
145
|
+
value && optionToId(value) === optionToId(option) ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(__WEBPACK_EXTERNAL_MODULE__presentation_Icon_js_6961aa57__["default"], {
|
|
146
|
+
symbol: "CheckMark"
|
|
147
|
+
}) : null
|
|
148
|
+
]
|
|
149
|
+
}, optionId);
|
|
150
|
+
}),
|
|
151
|
+
onCreate ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("li", {
|
|
152
|
+
className: (0, __WEBPACK_EXTERNAL_MODULE_clsx__["default"])([
|
|
153
|
+
__WEBPACK_EXTERNAL_MODULE__SingleSelectComboboxInput_module_js_54aa53da__["default"].listItem,
|
|
154
|
+
__WEBPACK_EXTERNAL_MODULE__SingleSelectComboboxInput_module_js_54aa53da__["default"].listItemCreate
|
|
155
|
+
]),
|
|
156
|
+
onClick: ()=>{
|
|
157
|
+
setIsOpen(false);
|
|
158
|
+
setCreateNewOption(true);
|
|
159
|
+
},
|
|
160
|
+
children: [
|
|
161
|
+
"+ Create new option ",
|
|
162
|
+
searchTerm ? `"${searchTerm}"` : null
|
|
163
|
+
]
|
|
164
|
+
}) : null
|
|
165
|
+
]
|
|
166
|
+
}) : null
|
|
167
|
+
]
|
|
168
|
+
})
|
|
169
|
+
})
|
|
170
|
+
})
|
|
171
|
+
}) : null,
|
|
172
|
+
onCreate && createNewOption ? onCreate(()=>{
|
|
173
|
+
setCreateNewOption(false);
|
|
174
|
+
}, searchTerm) : null
|
|
175
|
+
]
|
|
176
|
+
});
|
|
177
|
+
};
|
|
178
|
+
const SingleSelectComboboxInput_rslib_entry_ = SingleSelectComboBoxInput;
|
|
179
|
+
export { SingleSelectComboboxInput_rslib_entry_ as default };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import "./SingleSelectComboboxInput_module.css";
|
|
2
|
+
const SingleSelectComboboxInput_module_rslib_entry_ = {
|
|
3
|
+
toggleButton: "toggleButton-XTdiGn",
|
|
4
|
+
toggleButtonActions: "toggleButtonActions-oS39_7",
|
|
5
|
+
searchInput: "searchInput-s9NjcM",
|
|
6
|
+
menu: "menu-f81oko",
|
|
7
|
+
listBox: "listBox-biTMkv",
|
|
8
|
+
listItem: "listItem-ASZkke",
|
|
9
|
+
listItemCreate: "listItemCreate-_tGId1",
|
|
10
|
+
activeListItem: "activeListItem-_B_E3X"
|
|
11
|
+
};
|
|
12
|
+
export { SingleSelectComboboxInput_module_rslib_entry_ as default };
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
.toggleButton-XTdiGn {
|
|
2
|
+
border-radius: var(--size-n3);
|
|
3
|
+
border: var(--size-n5) solid var(--color-grey-t08);
|
|
4
|
+
color: var(--color-grey-s01);
|
|
5
|
+
font: var(--font-regular);
|
|
6
|
+
align-items: center;
|
|
7
|
+
gap: var(--size-00);
|
|
8
|
+
padding: var(--size-n1) var(--size-00);
|
|
9
|
+
background: var(--color-white);
|
|
10
|
+
grid-template-columns: 1fr max-content;
|
|
11
|
+
width: 100%;
|
|
12
|
+
display: grid;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.toggleButton-XTdiGn:disabled {
|
|
16
|
+
background: var(--color-grey-t09);
|
|
17
|
+
color: var(--color-grey-t03);
|
|
18
|
+
cursor: not-allowed;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.toggleButton-XTdiGn:focus-visible {
|
|
22
|
+
box-shadow: 0px 0px 0px 2px var(--color-white), 0px 0px 0px 4px var(--color-purple-000);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.toggleButtonActions-oS39_7 {
|
|
26
|
+
align-items: center;
|
|
27
|
+
gap: var(--size-n2);
|
|
28
|
+
padding-left: var(--size-n2);
|
|
29
|
+
border-left: 1px solid var(--color-grey-t08);
|
|
30
|
+
display: flex;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.searchInput-s9NjcM {
|
|
34
|
+
padding: var(--size-00);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.searchInput-s9NjcM::placeholder {
|
|
38
|
+
color: var(--color-grey-t07);
|
|
39
|
+
font: var(--font-regular-italic);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.menu-f81oko {
|
|
43
|
+
background: var(--color-white);
|
|
44
|
+
border: 1px solid var(--color-grey-t08);
|
|
45
|
+
border-radius: var(--size-n3);
|
|
46
|
+
box-shadow: var(--shadow-heavy);
|
|
47
|
+
z-index: 1;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.listBox-biTMkv {
|
|
51
|
+
max-height: 320px;
|
|
52
|
+
padding: var(--size-n2);
|
|
53
|
+
border-top: 1px solid var(--color-grey-t08);
|
|
54
|
+
overflow-y: auto;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.listItem-ASZkke {
|
|
58
|
+
padding: var(--size-n2);
|
|
59
|
+
border-radius: var(--size-n3);
|
|
60
|
+
align-items: center;
|
|
61
|
+
gap: var(--size-n2);
|
|
62
|
+
grid-template-columns: 1fr max-content;
|
|
63
|
+
display: grid;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.listItem-ASZkke:hover {
|
|
67
|
+
cursor: pointer;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.listItemCreate-_tGId1:hover, .activeListItem-_B_E3X {
|
|
71
|
+
background: var(--color-grey-t09);
|
|
72
|
+
}
|
|
73
|
+
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { type Dispatch } from "react";
|
|
2
|
+
type Props = {
|
|
3
|
+
autoFocus?: boolean;
|
|
4
|
+
disabled?: boolean;
|
|
5
|
+
id?: string;
|
|
6
|
+
onChange: Dispatch<string | null>;
|
|
7
|
+
placeholder?: string;
|
|
8
|
+
type?: "text" | "multiline" | "email" | "tel" | "url" | "search" | "password";
|
|
9
|
+
value: string | null;
|
|
10
|
+
prefix?: string | null;
|
|
11
|
+
suffix?: string | null;
|
|
12
|
+
inputMode?: "text" | "numeric" | "decimal" | "numeric" | "tel" | "search" | "url" | "email";
|
|
13
|
+
};
|
|
14
|
+
declare const StringInput: ({ autoFocus, disabled, id, onChange, placeholder, type, value, prefix, suffix, inputMode, }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
15
|
+
export default StringInput;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
import * as __WEBPACK_EXTERNAL_MODULE_clsx__ from "clsx";
|
|
3
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react__ from "react";
|
|
4
|
+
import * as __WEBPACK_EXTERNAL_MODULE__StringInput_module_js_fa706166__ from "./StringInput.module.js";
|
|
5
|
+
const StringInput = ({ autoFocus = false, disabled, id, onChange, placeholder, type = "text", value, prefix, suffix, inputMode = "text" })=>{
|
|
6
|
+
const ref = (0, __WEBPACK_EXTERNAL_MODULE_react__.useRef)(null);
|
|
7
|
+
(0, __WEBPACK_EXTERNAL_MODULE_react__.useEffect)(()=>{
|
|
8
|
+
if (autoFocus && ref.current) ref.current.focus();
|
|
9
|
+
}, [
|
|
10
|
+
autoFocus
|
|
11
|
+
]);
|
|
12
|
+
return /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("div", {
|
|
13
|
+
className: __WEBPACK_EXTERNAL_MODULE__StringInput_module_js_fa706166__["default"].container,
|
|
14
|
+
children: [
|
|
15
|
+
prefix ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
|
|
16
|
+
className: __WEBPACK_EXTERNAL_MODULE__StringInput_module_js_fa706166__["default"].prefix,
|
|
17
|
+
children: prefix
|
|
18
|
+
}) : null,
|
|
19
|
+
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("input", {
|
|
20
|
+
ref: ref,
|
|
21
|
+
inputMode: "text" === type ? inputMode : void 0,
|
|
22
|
+
autoFocus: autoFocus,
|
|
23
|
+
className: (0, __WEBPACK_EXTERNAL_MODULE_clsx__["default"])(__WEBPACK_EXTERNAL_MODULE__StringInput_module_js_fa706166__["default"].input, {
|
|
24
|
+
[__WEBPACK_EXTERNAL_MODULE__StringInput_module_js_fa706166__["default"].inputWithPrefix]: null != prefix,
|
|
25
|
+
[__WEBPACK_EXTERNAL_MODULE__StringInput_module_js_fa706166__["default"].inputWithSuffix]: void 0 !== suffix && null !== prefix
|
|
26
|
+
}),
|
|
27
|
+
disabled: disabled,
|
|
28
|
+
id: id,
|
|
29
|
+
onChange: (event)=>{
|
|
30
|
+
onChange(event.target.value);
|
|
31
|
+
},
|
|
32
|
+
onKeyDown: (event)=>{
|
|
33
|
+
if ("Escape" === event.key && ref.current) {
|
|
34
|
+
event.stopPropagation();
|
|
35
|
+
if (null !== value && "" !== value) onChange(null);
|
|
36
|
+
else ref.current.blur();
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
placeholder: placeholder,
|
|
40
|
+
type: type,
|
|
41
|
+
value: value ?? ""
|
|
42
|
+
}),
|
|
43
|
+
suffix ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
|
|
44
|
+
className: __WEBPACK_EXTERNAL_MODULE__StringInput_module_js_fa706166__["default"].suffix,
|
|
45
|
+
children: suffix
|
|
46
|
+
}) : null
|
|
47
|
+
]
|
|
48
|
+
});
|
|
49
|
+
};
|
|
50
|
+
const StringInput_rslib_entry_ = StringInput;
|
|
51
|
+
export { StringInput_rslib_entry_ as default };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import "./StringInput_module.css";
|
|
2
|
+
const StringInput_module_rslib_entry_ = {
|
|
3
|
+
container: "container-RF3uSt",
|
|
4
|
+
input: "input-YUEurG",
|
|
5
|
+
inputWithPrefix: "inputWithPrefix-sduNlf",
|
|
6
|
+
inputWithSuffix: "inputWithSuffix-_dIHEk",
|
|
7
|
+
prefix: "prefix-U2L5Nd",
|
|
8
|
+
suffix: "suffix-mlsco9"
|
|
9
|
+
};
|
|
10
|
+
export { StringInput_module_rslib_entry_ as default };
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
.container-RF3uSt {
|
|
2
|
+
display: flex;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.input-YUEurG {
|
|
6
|
+
border-radius: var(--size-n3);
|
|
7
|
+
border: var(--size-n5) solid var(--color-grey-t08);
|
|
8
|
+
color: var(--color-grey-s01);
|
|
9
|
+
padding: var(--size-n1) var(--size-00);
|
|
10
|
+
background: var(--color-white);
|
|
11
|
+
z-index: 1;
|
|
12
|
+
width: 100%;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.inputWithPrefix-sduNlf {
|
|
16
|
+
border-top-left-radius: 0;
|
|
17
|
+
border-bottom-left-radius: 0;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.inputWithSuffix-_dIHEk {
|
|
21
|
+
border-top-right-radius: 0;
|
|
22
|
+
border-bottom-right-radius: 0;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.input-YUEurG:focus {
|
|
26
|
+
outline: var(--size-n4) solid var(--color-purple-000);
|
|
27
|
+
border-color: #0000;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.input-YUEurG::placeholder {
|
|
31
|
+
color: var(--color-grey-t07);
|
|
32
|
+
font: var(--font-regular-italic);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.input-YUEurG:disabled {
|
|
36
|
+
background: var(--color-grey-t09);
|
|
37
|
+
color: var(--color-grey-t03);
|
|
38
|
+
cursor: not-allowed;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.prefix-U2L5Nd, .suffix-mlsco9 {
|
|
42
|
+
padding: var(--size-n1) var(--size-00);
|
|
43
|
+
background: var(--color-grey-t10);
|
|
44
|
+
border: var(--size-n5) solid var(--color-grey-t08);
|
|
45
|
+
white-space: nowrap;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.prefix-U2L5Nd {
|
|
49
|
+
border-top-left-radius: var(--size-n3);
|
|
50
|
+
border-bottom-left-radius: var(--size-n3);
|
|
51
|
+
border-right: none;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.suffix-mlsco9 {
|
|
55
|
+
border-top-right-radius: var(--size-n3);
|
|
56
|
+
border-bottom-right-radius: var(--size-n3);
|
|
57
|
+
border-left: none;
|
|
58
|
+
}
|
|
59
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { type Dispatch } from "react";
|
|
2
|
+
type Props = {
|
|
3
|
+
autoFocus?: boolean;
|
|
4
|
+
disabled?: boolean;
|
|
5
|
+
id?: string;
|
|
6
|
+
onChange: Dispatch<string | null>;
|
|
7
|
+
placeholder?: string;
|
|
8
|
+
value: string | null;
|
|
9
|
+
prefix?: string | null;
|
|
10
|
+
suffix?: string | null;
|
|
11
|
+
};
|
|
12
|
+
declare const TextInput: ({ autoFocus, disabled, id, onChange, placeholder, value, prefix, suffix, }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export default TextInput;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react__ from "react";
|
|
3
|
+
import * as __WEBPACK_EXTERNAL_MODULE__TextInput_module_js_ecfc4c61__ from "./TextInput.module.js";
|
|
4
|
+
import * as __WEBPACK_EXTERNAL_MODULE_clsx__ from "clsx";
|
|
5
|
+
const TextInput = ({ autoFocus = false, disabled, id, onChange, placeholder, value, prefix, suffix })=>{
|
|
6
|
+
const ref = (0, __WEBPACK_EXTERNAL_MODULE_react__.useRef)(null);
|
|
7
|
+
(0, __WEBPACK_EXTERNAL_MODULE_react__.useEffect)(()=>{
|
|
8
|
+
if (autoFocus && ref.current) ref.current.focus();
|
|
9
|
+
}, [
|
|
10
|
+
autoFocus
|
|
11
|
+
]);
|
|
12
|
+
return /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("div", {
|
|
13
|
+
className: __WEBPACK_EXTERNAL_MODULE__TextInput_module_js_ecfc4c61__["default"].container,
|
|
14
|
+
children: [
|
|
15
|
+
prefix ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
|
|
16
|
+
className: __WEBPACK_EXTERNAL_MODULE__TextInput_module_js_ecfc4c61__["default"].prefix,
|
|
17
|
+
children: prefix
|
|
18
|
+
}) : null,
|
|
19
|
+
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("textarea", {
|
|
20
|
+
autoComplete: "off",
|
|
21
|
+
autoFocus: autoFocus,
|
|
22
|
+
className: (0, __WEBPACK_EXTERNAL_MODULE_clsx__["default"])(__WEBPACK_EXTERNAL_MODULE__TextInput_module_js_ecfc4c61__["default"].input, {
|
|
23
|
+
[__WEBPACK_EXTERNAL_MODULE__TextInput_module_js_ecfc4c61__["default"].inputWithPrefix]: null != prefix,
|
|
24
|
+
[__WEBPACK_EXTERNAL_MODULE__TextInput_module_js_ecfc4c61__["default"].inputWithSuffix]: void 0 !== suffix && null !== prefix
|
|
25
|
+
}),
|
|
26
|
+
disabled: disabled,
|
|
27
|
+
id: id,
|
|
28
|
+
onChange: (event)=>{
|
|
29
|
+
onChange("" === event.target.value.trim() ? null : event.target.value);
|
|
30
|
+
},
|
|
31
|
+
onKeyDown: (event)=>{
|
|
32
|
+
if ("Escape" === event.key && ref.current) {
|
|
33
|
+
event.stopPropagation();
|
|
34
|
+
if (null !== value && "" !== value) onChange(null);
|
|
35
|
+
else ref.current.blur();
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
placeholder: placeholder,
|
|
39
|
+
ref: ref,
|
|
40
|
+
spellCheck: "false",
|
|
41
|
+
value: value ?? ""
|
|
42
|
+
}),
|
|
43
|
+
suffix ? /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("div", {
|
|
44
|
+
className: __WEBPACK_EXTERNAL_MODULE__TextInput_module_js_ecfc4c61__["default"].suffix,
|
|
45
|
+
children: suffix
|
|
46
|
+
}) : null
|
|
47
|
+
]
|
|
48
|
+
});
|
|
49
|
+
};
|
|
50
|
+
const TextInput_rslib_entry_ = TextInput;
|
|
51
|
+
export { TextInput_rslib_entry_ as default };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import "./TextInput_module.css";
|
|
2
|
+
const TextInput_module_rslib_entry_ = {
|
|
3
|
+
container: "container-sj243T",
|
|
4
|
+
input: "input-LiAU3S",
|
|
5
|
+
inputWithPrefix: "inputWithPrefix-dHF4zq",
|
|
6
|
+
inputWithSuffix: "inputWithSuffix-HATvoL",
|
|
7
|
+
prefix: "prefix-WAZmaj",
|
|
8
|
+
suffix: "suffix-MuCxOF"
|
|
9
|
+
};
|
|
10
|
+
export { TextInput_module_rslib_entry_ as default };
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
.container-sj243T {
|
|
2
|
+
display: flex;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.input-LiAU3S {
|
|
6
|
+
border-radius: var(--size-n3);
|
|
7
|
+
border: var(--size-n5) solid var(--color-grey-t08);
|
|
8
|
+
color: var(--color-grey-s01);
|
|
9
|
+
height: max-content;
|
|
10
|
+
min-height: calc(var(--size-p1) * 5);
|
|
11
|
+
padding: var(--size-n1) var(--size-00);
|
|
12
|
+
width: 100%;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.inputWithPrefix-dHF4zq {
|
|
16
|
+
border-top-left-radius: 0;
|
|
17
|
+
border-bottom-left-radius: 0;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.inputWithSuffix-HATvoL {
|
|
21
|
+
border-top-right-radius: 0;
|
|
22
|
+
border-bottom-right-radius: 0;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.input-LiAU3S:focus {
|
|
26
|
+
outline: var(--size-n4) solid var(--color-purple-000);
|
|
27
|
+
border-color: #0000;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.input-LiAU3S::placeholder {
|
|
31
|
+
color: var(--color-grey-t07);
|
|
32
|
+
font: var(--font-regular-italic);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.input-LiAU3S:disabled {
|
|
36
|
+
background: var(--color-grey-t09);
|
|
37
|
+
color: var(--color-grey-t03);
|
|
38
|
+
cursor: not-allowed;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.prefix-WAZmaj, .suffix-MuCxOF {
|
|
42
|
+
padding: var(--size-n1) var(--size-00);
|
|
43
|
+
background: var(--color-grey-t10);
|
|
44
|
+
border: var(--size-n5) solid var(--color-grey-t08);
|
|
45
|
+
white-space: nowrap;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.prefix-WAZmaj {
|
|
49
|
+
border-top-left-radius: var(--size-n3);
|
|
50
|
+
border-bottom-left-radius: var(--size-n3);
|
|
51
|
+
border-right: none;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.suffix-MuCxOF {
|
|
55
|
+
border-top-right-radius: var(--size-n3);
|
|
56
|
+
border-bottom-right-radius: var(--size-n3);
|
|
57
|
+
border-left: none;
|
|
58
|
+
}
|
|
59
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { type Dispatch } from "react";
|
|
2
|
+
type Props = {
|
|
3
|
+
autoFocus?: boolean;
|
|
4
|
+
disabled?: boolean;
|
|
5
|
+
id?: string;
|
|
6
|
+
onChange: Dispatch<string | null>;
|
|
7
|
+
value: string | null;
|
|
8
|
+
step?: number;
|
|
9
|
+
};
|
|
10
|
+
declare const TimeInput: ({ autoFocus, disabled, id, onChange, value, step }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export default TimeInput;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react__ from "react";
|
|
3
|
+
import * as __WEBPACK_EXTERNAL_MODULE__TimeInput_module_js_52a006ec__ from "./TimeInput.module.js";
|
|
4
|
+
const TimeInput = ({ autoFocus = false, disabled, id, onChange, value, step })=>{
|
|
5
|
+
const ref = (0, __WEBPACK_EXTERNAL_MODULE_react__.useRef)(null);
|
|
6
|
+
(0, __WEBPACK_EXTERNAL_MODULE_react__.useEffect)(()=>{
|
|
7
|
+
if (autoFocus && ref.current) ref.current.focus();
|
|
8
|
+
}, [
|
|
9
|
+
autoFocus
|
|
10
|
+
]);
|
|
11
|
+
return /*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("input", {
|
|
12
|
+
ref: ref,
|
|
13
|
+
autoFocus: autoFocus,
|
|
14
|
+
className: __WEBPACK_EXTERNAL_MODULE__TimeInput_module_js_52a006ec__["default"].input,
|
|
15
|
+
disabled: disabled,
|
|
16
|
+
id: id,
|
|
17
|
+
onChange: (event)=>{
|
|
18
|
+
onChange(event.target.value);
|
|
19
|
+
},
|
|
20
|
+
type: "time",
|
|
21
|
+
value: value ?? "",
|
|
22
|
+
step: step
|
|
23
|
+
});
|
|
24
|
+
};
|
|
25
|
+
const TimeInput_rslib_entry_ = TimeInput;
|
|
26
|
+
export { TimeInput_rslib_entry_ as default };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
.input-AE26ML {
|
|
2
|
+
border-radius: var(--size-n3);
|
|
3
|
+
border: var(--size-n5) solid var(--color-grey-t08);
|
|
4
|
+
box-sizing: border-box;
|
|
5
|
+
color: var(--color-grey-s01);
|
|
6
|
+
padding: var(--size-n1) var(--size-00);
|
|
7
|
+
background: var(--color-white);
|
|
8
|
+
width: 100%;
|
|
9
|
+
display: inline-block;
|
|
10
|
+
position: relative;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.input-AE26ML:focus {
|
|
14
|
+
outline: var(--size-n4) solid var(--color-purple-000);
|
|
15
|
+
border-color: #0000;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.input-AE26ML:disabled {
|
|
19
|
+
background: var(--color-grey-t09);
|
|
20
|
+
color: var(--color-grey-t03);
|
|
21
|
+
cursor: not-allowed;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.input-AE26ML::-webkit-calendar-picker-indicator {
|
|
25
|
+
border-left: 1px solid var(--color-grey-t08);
|
|
26
|
+
cursor: pointer;
|
|
27
|
+
padding: 16px;
|
|
28
|
+
position: absolute;
|
|
29
|
+
top: 50%;
|
|
30
|
+
right: 0;
|
|
31
|
+
transform: translateY(-50%);
|
|
32
|
+
}
|
|
33
|
+
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
+
import * as __WEBPACK_EXTERNAL_MODULE__presentation_IconSymbolSet_js_45454e7d__ from "../presentation/IconSymbolSet.js";
|
|
3
|
+
const BaseLayout = ({ brandTypeface, children })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)(__WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.Fragment, {
|
|
4
|
+
children: [
|
|
5
|
+
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("style", {
|
|
6
|
+
dangerouslySetInnerHTML: {
|
|
7
|
+
__html: `:root { --typeface-brand: ${brandTypeface}; }`
|
|
8
|
+
}
|
|
9
|
+
}),
|
|
10
|
+
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)(__WEBPACK_EXTERNAL_MODULE__presentation_IconSymbolSet_js_45454e7d__["default"], {}),
|
|
11
|
+
children
|
|
12
|
+
]
|
|
13
|
+
});
|
|
14
|
+
const BaseLayout_rslib_entry_ = BaseLayout;
|
|
15
|
+
export { BaseLayout_rslib_entry_ as default };
|