@payfit/unity-components 0.0.0-alpha.11 → 0.0.0-alpha.7
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/cjs/components/actionable/Actionable.d.ts +11 -0
- package/dist/cjs/components/alert/Alert.d.ts +155 -0
- package/dist/cjs/components/alert/Alert.js +1 -0
- package/dist/cjs/components/alert/parts/AlertActions.d.ts +55 -0
- package/dist/cjs/components/alert/parts/AlertContent.js +1 -0
- package/dist/cjs/components/alert/parts/AlertTitle.js +1 -0
- package/dist/cjs/components/app-layout/AppLayout.js +1 -0
- package/dist/cjs/components/app-menu/AppMenu.js +1 -0
- package/dist/cjs/components/app-menu/parts/AppMenuFooter.js +1 -0
- package/dist/cjs/components/app-menu/parts/AppMenuHeader.js +1 -0
- package/dist/cjs/components/app-menu/parts/AppMenuNavContent.js +1 -0
- package/dist/cjs/components/avatar/Avatar.d.ts +206 -0
- package/dist/cjs/components/avatar/Avatar.js +1 -0
- package/dist/cjs/components/avatar/Avatar.variants.d.ts +85 -0
- package/dist/cjs/components/avatar/parts/AvatarFallback.d.ts +170 -0
- package/dist/cjs/components/avatar/parts/AvatarFallback.js +1 -0
- package/dist/cjs/components/avatar/parts/AvatarImage.js +1 -0
- package/dist/cjs/components/avatar/parts/AvatarPair.js +1 -0
- package/dist/cjs/components/badge/Badge.d.ts +67 -0
- package/dist/cjs/components/badge/Badge.js +1 -0
- package/dist/cjs/components/breadcrumbs/Breadcrumbs.js +1 -0
- package/dist/cjs/components/breadcrumbs/Breadcrumbs.variant.d.ts +73 -0
- package/dist/cjs/components/breadcrumbs/parts/Breadcrumb.js +1 -0
- package/dist/cjs/components/button/Button.js +1 -0
- package/dist/cjs/components/button/Button.variants.d.ts +536 -0
- package/dist/cjs/components/button/Button.variants.js +1 -0
- package/dist/cjs/components/checkbox/Checkbox.d.ts +225 -0
- package/dist/cjs/components/checkbox/Checkbox.js +1 -0
- package/dist/cjs/components/checkbox/parts/CheckboxIndicator.js +1 -0
- package/dist/cjs/components/checkbox-field/CheckboxField.js +1 -0
- package/dist/cjs/components/checkbox-group/CheckboxGroup.d.ts +65 -0
- package/dist/cjs/components/checkbox-group/CheckboxGroup.js +1 -0
- package/dist/cjs/components/checkbox-group-field/CheckboxGroupField.js +1 -0
- package/dist/cjs/components/date-picker/DatePicker.js +1 -0
- package/dist/cjs/components/date-picker/parts/DateCalendar.js +1 -0
- package/dist/cjs/components/date-picker/parts/DateInput.d.ts +155 -0
- package/dist/cjs/components/date-picker/parts/DateInput.js +1 -0
- package/dist/cjs/components/date-picker/parts/DateSegmentSelect.js +1 -0
- package/dist/cjs/components/date-picker-field/DatePickerField.js +1 -0
- package/dist/cjs/components/dialog/Dialog.d.ts +30 -0
- package/dist/cjs/components/dialog/Dialog.js +1 -0
- package/dist/cjs/components/dialog/parts/DialogActions/DialogButton.d.ts +18 -0
- package/dist/cjs/components/dialog/parts/DialogActions/DialogButton.js +1 -0
- package/dist/cjs/components/dialog/parts/DialogActions.js +1 -0
- package/dist/cjs/components/dialog/parts/DialogContent.js +1 -0
- package/dist/cjs/components/dialog/parts/DialogTitle.js +1 -0
- package/dist/cjs/components/flex/Flex.js +1 -0
- package/dist/cjs/components/flex/FlexItem.js +1 -0
- package/dist/cjs/components/form/Form.context.d.ts +12 -0
- package/dist/cjs/components/form/Form.js +1 -0
- package/dist/cjs/components/form-field/FormField.js +1 -0
- package/dist/cjs/components/form-field/parts/FormContextualLink.js +1 -0
- package/dist/cjs/components/form-field/parts/FormControl.d.ts +7 -0
- package/dist/cjs/components/form-field/parts/FormControl.js +1 -0
- package/dist/cjs/components/form-field/parts/FormFeedbackText.js +1 -0
- package/dist/cjs/components/form-field/parts/FormHelperText.js +1 -0
- package/dist/cjs/components/form-field/parts/FormLabel.js +1 -0
- package/dist/cjs/components/full-page-loader/FullPageLoader.d.ts +13 -0
- package/dist/cjs/components/full-page-loader/FullPageLoader.js +1 -0
- package/dist/cjs/components/grid/Grid.js +1 -0
- package/dist/cjs/components/grid/GridItem.js +1 -0
- package/dist/cjs/components/icon/Icon.d.ts +574 -0
- package/dist/cjs/components/icon/Icon.js +1 -0
- package/dist/cjs/components/icon-button/CircularIconButton.d.ts +13 -0
- package/dist/cjs/components/icon-button/CircularIconButton.js +1 -0
- package/dist/cjs/components/icon-button/IconButton.js +1 -0
- package/dist/cjs/components/icon-button/IconButton.variants.d.ts +724 -0
- package/dist/cjs/components/icon-button/IconButton.variants.js +1 -0
- package/dist/cjs/components/index.d.ts +4 -0
- package/dist/cjs/components/input/Input.js +1 -0
- package/dist/cjs/components/label/Label.js +1 -0
- package/dist/cjs/components/link/Link.d.ts +73 -0
- package/dist/cjs/components/link/Link.js +1 -0
- package/dist/cjs/components/link/Link.variants.d.ts +120 -0
- package/dist/cjs/components/menu/parts/MenuContent.js +1 -0
- package/dist/cjs/components/menu/parts/MenuHeader.js +1 -0
- package/dist/cjs/components/nav/Nav.js +1 -0
- package/dist/cjs/components/nav/parts/NavGroup.js +1 -0
- package/dist/cjs/components/nav/parts/NavItem.d.ts +279 -0
- package/dist/cjs/components/nav/parts/NavItem.js +1 -0
- package/dist/cjs/components/payfit-brand/PayFitBrand.js +1 -0
- package/dist/cjs/components/payfit-brand/PayFitPreprod.js +1 -0
- package/dist/cjs/components/pill/Pill.d.ts +143 -0
- package/dist/cjs/components/pill/Pill.js +1 -0
- package/dist/cjs/components/progress-bar/ProgressBar.js +1 -0
- package/dist/cjs/components/select/Select.d.ts +52 -0
- package/dist/cjs/components/select/Select.js +1 -0
- package/dist/cjs/components/select/parts/SearchInput.js +1 -0
- package/dist/cjs/components/select/parts/SelectButton.js +1 -0
- package/dist/cjs/components/select/parts/SelectOption.d.ts +6 -0
- package/dist/cjs/components/select/parts/SelectOption.js +1 -0
- package/dist/cjs/components/select/parts/SelectOptionHelper.js +1 -0
- package/dist/cjs/components/select-field/SelectField.d.ts +50 -0
- package/dist/cjs/components/select-field/SelectField.js +1 -0
- package/dist/cjs/components/spinner/Spinner.js +1 -0
- package/dist/cjs/components/tabs/Tabs.js +1 -0
- package/dist/cjs/components/tabs/Tabs.variant.d.ts +139 -0
- package/dist/cjs/components/tabs/Tabs.variant.js +1 -0
- package/dist/cjs/components/tabs/parts/NavigationButton.js +1 -0
- package/dist/cjs/components/tabs/parts/Tab.js +1 -0
- package/dist/cjs/components/tabs/parts/TabList.js +1 -0
- package/dist/cjs/components/text/Text.js +1 -0
- package/dist/cjs/components/text/Text.variants.d.ts +673 -0
- package/dist/cjs/components/text-area/TextArea.d.ts +220 -0
- package/dist/cjs/components/text-area/TextArea.js +1 -0
- package/dist/cjs/components/text-field/TextField.js +1 -0
- package/dist/cjs/components/toast/UnityToast.d.ts +55 -0
- package/dist/cjs/components/toast/UnityToast.js +1 -0
- package/dist/cjs/components/toast/parts/ToastAction.js +1 -0
- package/dist/cjs/components/toast/parts/ToastContent.js +1 -0
- package/dist/cjs/components/toast/parts/ToastTitle.js +1 -0
- package/dist/cjs/components/toast/toast.d.ts +43 -0
- package/dist/cjs/components/toast/toast.js +1 -0
- package/dist/cjs/components/tooltip/Tooltip.d.ts +7 -0
- package/dist/cjs/components/tooltip/Tooltip.js +1 -0
- package/dist/cjs/hooks/use-breakpoint-listener.js +1 -0
- package/dist/cjs/hooks/use-form.js +1 -0
- package/dist/cjs/hooks/use-media-query.js +1 -0
- package/dist/cjs/index.d.ts +85 -0
- package/dist/cjs/index.js +1 -0
- package/dist/cjs/providers/router/RouterProvider.d.ts +37 -0
- package/dist/cjs/providers/router/integrations/UnityReactRouterV5Provider.d.ts +6 -0
- package/dist/cjs/providers/router/integrations/UnityReactRouterV5Provider.js +1 -0
- package/dist/esm/components/actionable/Actionable.d.mts +11 -0
- package/dist/esm/components/alert/Alert.d.mts +155 -0
- package/dist/esm/components/alert/Alert.mjs +68 -0
- package/dist/esm/components/alert/parts/AlertActions.d.mts +55 -0
- package/dist/esm/components/alert/parts/AlertContent.d.mts +17 -0
- package/dist/esm/components/alert/parts/AlertContent.mjs +10 -0
- package/dist/esm/components/alert/parts/AlertTitle.d.mts +17 -0
- package/dist/esm/components/alert/parts/AlertTitle.mjs +20 -0
- package/dist/esm/components/app-layout/AppLayout.mjs +70 -0
- package/dist/esm/components/app-menu/AppMenu.mjs +14 -0
- package/dist/esm/components/app-menu/parts/AppMenuFooter.d.mts +31 -0
- package/dist/esm/components/app-menu/parts/AppMenuFooter.mjs +224 -0
- package/dist/esm/components/app-menu/parts/AppMenuHeader.mjs +41 -0
- package/dist/esm/components/app-menu/parts/AppMenuNavContent.mjs +23 -0
- package/dist/esm/components/avatar/Avatar.d.mts +206 -0
- package/dist/esm/components/avatar/Avatar.mjs +32 -0
- package/dist/esm/components/avatar/Avatar.variants.d.mts +85 -0
- package/dist/esm/components/avatar/parts/AvatarFallback.d.mts +170 -0
- package/dist/esm/components/avatar/parts/AvatarFallback.mjs +87 -0
- package/dist/esm/components/avatar/parts/AvatarImage.mjs +21 -0
- package/dist/esm/components/avatar/parts/AvatarPair.d.mts +48 -0
- package/dist/esm/components/avatar/parts/AvatarPair.mjs +47 -0
- package/dist/esm/components/badge/Badge.d.mts +67 -0
- package/dist/esm/components/badge/Badge.mjs +58 -0
- package/dist/esm/components/breadcrumbs/Breadcrumbs.context.d.mts +12 -0
- package/dist/esm/components/breadcrumbs/Breadcrumbs.d.mts +33 -0
- package/dist/esm/components/breadcrumbs/Breadcrumbs.mjs +21 -0
- package/dist/esm/components/breadcrumbs/Breadcrumbs.variant.d.mts +73 -0
- package/dist/esm/components/breadcrumbs/parts/Breadcrumb.mjs +24 -0
- package/dist/esm/components/button/Button.d.mts +42 -0
- package/dist/esm/components/button/Button.mjs +74 -0
- package/dist/esm/components/button/Button.variants.d.mts +536 -0
- package/dist/esm/components/button/Button.variants.mjs +80 -0
- package/dist/esm/components/checkbox/Checkbox.d.mts +225 -0
- package/dist/esm/components/checkbox/Checkbox.mjs +146 -0
- package/dist/esm/components/checkbox/parts/CheckboxIndicator.mjs +146 -0
- package/dist/esm/components/checkbox-field/CheckboxField.d.mts +74 -0
- package/dist/esm/components/checkbox-field/CheckboxField.mjs +61 -0
- package/dist/esm/components/checkbox-group/CheckboxGroup.d.mts +65 -0
- package/dist/esm/components/checkbox-group/CheckboxGroup.mjs +66 -0
- package/dist/esm/components/checkbox-group-field/CheckboxGroupField.d.mts +79 -0
- package/dist/esm/components/checkbox-group-field/CheckboxGroupField.mjs +54 -0
- package/dist/esm/components/date-picker/DatePicker.mjs +163 -0
- package/dist/esm/components/date-picker/parts/DateCalendar.mjs +172 -0
- package/dist/esm/components/date-picker/parts/DateInput.d.mts +155 -0
- package/dist/esm/components/date-picker/parts/DateInput.mjs +124 -0
- package/dist/esm/components/date-picker/parts/DateSegmentSelect.mjs +69 -0
- package/dist/esm/components/date-picker-field/DatePickerField.d.mts +83 -0
- package/dist/esm/components/date-picker-field/DatePickerField.mjs +73 -0
- package/dist/esm/components/dialog/Dialog.d.mts +30 -0
- package/dist/esm/components/dialog/Dialog.mjs +49 -0
- package/dist/esm/components/dialog/parts/DialogActions/DialogButton.d.mts +18 -0
- package/dist/esm/components/dialog/parts/DialogActions/DialogButton.mjs +43 -0
- package/dist/esm/components/dialog/parts/DialogActions.mjs +6 -0
- package/dist/esm/components/dialog/parts/DialogContent.mjs +14 -0
- package/dist/esm/components/dialog/parts/DialogTitle.mjs +7 -0
- package/dist/esm/components/flex/Flex.d.mts +64 -0
- package/dist/esm/components/flex/Flex.mjs +42 -0
- package/dist/esm/components/flex/FlexItem.d.mts +40 -0
- package/dist/esm/components/flex/FlexItem.mjs +32 -0
- package/dist/esm/components/form/Form.context.d.mts +12 -0
- package/dist/esm/components/form/Form.d.mts +33 -0
- package/dist/esm/components/form/Form.mjs +57 -0
- package/dist/esm/components/form-field/FormField.mjs +60 -0
- package/dist/esm/components/form-field/parts/FormContextualLink.mjs +35 -0
- package/dist/esm/components/form-field/parts/FormControl.d.mts +7 -0
- package/dist/esm/components/form-field/parts/FormControl.mjs +50 -0
- package/dist/esm/components/form-field/parts/FormFeedbackText.mjs +25 -0
- package/dist/esm/components/form-field/parts/FormHelperText.mjs +25 -0
- package/dist/esm/components/form-field/parts/FormLabel.d.mts +8 -0
- package/dist/esm/components/form-field/parts/FormLabel.mjs +30 -0
- package/dist/esm/components/full-page-loader/FullPageLoader.d.mts +13 -0
- package/dist/esm/components/full-page-loader/FullPageLoader.mjs +26 -0
- package/dist/esm/components/grid/Grid.d.mts +54 -0
- package/dist/esm/components/grid/Grid.mjs +38 -0
- package/dist/esm/components/grid/GridItem.d.mts +60 -0
- package/dist/esm/components/grid/GridItem.mjs +43 -0
- package/dist/esm/components/icon/Icon.d.mts +574 -0
- package/dist/esm/components/icon/Icon.mjs +112 -0
- package/dist/esm/components/icon-button/CircularIconButton.d.mts +13 -0
- package/dist/esm/components/icon-button/CircularIconButton.mjs +33 -0
- package/dist/esm/components/icon-button/IconButton.d.mts +26 -0
- package/dist/esm/components/icon-button/IconButton.mjs +58 -0
- package/dist/esm/components/icon-button/IconButton.variants.d.mts +724 -0
- package/dist/esm/components/icon-button/IconButton.variants.mjs +242 -0
- package/dist/esm/components/index.d.mts +4 -0
- package/dist/esm/components/input/Input.mjs +148 -0
- package/dist/esm/components/label/Label.mjs +56 -0
- package/dist/esm/components/link/Link.d.mts +73 -0
- package/dist/esm/components/link/Link.mjs +64 -0
- package/dist/esm/components/link/Link.variants.d.mts +120 -0
- package/dist/esm/components/menu/parts/MenuContent.mjs +21 -0
- package/dist/esm/components/menu/parts/MenuHeader.mjs +16 -0
- package/dist/esm/components/menu/parts/MenuItem.d.mts +15 -0
- package/dist/esm/components/nav/Nav.mjs +28 -0
- package/dist/esm/components/nav/parts/NavGroup.d.mts +30 -0
- package/dist/esm/components/nav/parts/NavGroup.mjs +105 -0
- package/dist/esm/components/nav/parts/NavItem.d.mts +279 -0
- package/dist/esm/components/nav/parts/NavItem.mjs +87 -0
- package/dist/esm/components/payfit-brand/PayFitBrand.mjs +76 -0
- package/dist/esm/components/payfit-brand/PayFitPreprod.d.mts +10 -0
- package/dist/esm/components/payfit-brand/PayFitPreprod.mjs +57 -0
- package/dist/esm/components/pill/Pill.d.mts +143 -0
- package/dist/esm/components/pill/Pill.mjs +52 -0
- package/dist/esm/components/progress-bar/ProgressBar.mjs +39 -0
- package/dist/esm/components/select/Select.d.mts +52 -0
- package/dist/esm/components/select/Select.mjs +63 -0
- package/dist/esm/components/select/parts/SearchInput.mjs +39 -0
- package/dist/esm/components/select/parts/SelectButton.mjs +87 -0
- package/dist/esm/components/select/parts/SelectOption.d.mts +6 -0
- package/dist/esm/components/select/parts/SelectOption.mjs +63 -0
- package/dist/esm/components/select/parts/SelectOptionHelper.mjs +20 -0
- package/dist/esm/components/select-field/SelectField.d.mts +50 -0
- package/dist/esm/components/select-field/SelectField.mjs +65 -0
- package/dist/esm/components/spinner/Spinner.mjs +107 -0
- package/dist/esm/components/tabs/Tabs.context.d.mts +11 -0
- package/dist/esm/components/tabs/Tabs.d.mts +12 -0
- package/dist/esm/components/tabs/Tabs.mjs +15 -0
- package/dist/esm/components/tabs/Tabs.variant.d.mts +139 -0
- package/dist/esm/components/tabs/Tabs.variant.mjs +35 -0
- package/dist/esm/components/tabs/parts/NavigationButton.mjs +43 -0
- package/dist/esm/components/tabs/parts/Tab.mjs +18 -0
- package/dist/esm/components/tabs/parts/TabList.mjs +56 -0
- package/dist/esm/components/text/Text.d.mts +84 -0
- package/dist/esm/components/text/Text.mjs +56 -0
- package/dist/esm/components/text/Text.variants.d.mts +673 -0
- package/dist/esm/components/text-area/TextArea.d.mts +220 -0
- package/dist/esm/components/text-area/TextArea.mjs +163 -0
- package/dist/esm/components/text-field/TextField.d.mts +63 -0
- package/dist/esm/components/text-field/TextField.mjs +78 -0
- package/dist/esm/components/toast/ToastManager.d.mts +7 -0
- package/dist/esm/components/toast/UnityToast.d.mts +55 -0
- package/dist/esm/components/toast/UnityToast.mjs +90 -0
- package/dist/esm/components/toast/parts/ToastAction.mjs +12 -0
- package/dist/esm/components/toast/parts/ToastContent.mjs +11 -0
- package/dist/esm/components/toast/parts/ToastTitle.mjs +9 -0
- package/dist/esm/components/toast/toast.d.mts +43 -0
- package/dist/esm/components/toast/toast.mjs +37 -0
- package/dist/esm/components/tooltip/Tooltip.d.mts +7 -0
- package/dist/esm/components/tooltip/Tooltip.mjs +26 -0
- package/dist/esm/hooks/use-breakpoint-listener.mjs +14 -0
- package/dist/esm/hooks/use-form.d.mts +48 -0
- package/dist/esm/hooks/use-form.mjs +32 -0
- package/dist/esm/hooks/use-media-query.mjs +19 -0
- package/dist/esm/index.d.mts +85 -0
- package/dist/esm/index.mjs +187 -0
- package/dist/esm/providers/router/RouterProvider.d.mts +37 -0
- package/dist/esm/providers/router/RouterProvider.mjs +18 -0
- package/dist/esm/providers/router/integrations/UnityReactRouterV5Provider.d.mts +6 -0
- package/dist/esm/providers/router/integrations/UnityReactRouterV5Provider.mjs +29 -0
- package/i18n/en-GB.json +3 -32
- package/i18n/es-ES.json +3 -32
- package/i18n/fr-FR.json +3 -32
- package/package.json +42 -61
- package/dist/cjs/components/actionable/Actionable.d.cts +0 -12
- package/dist/cjs/components/alert/Alert.cjs +0 -1
- package/dist/cjs/components/alert/Alert.d.cts +0 -155
- package/dist/cjs/components/alert/parts/AlertActions.d.cts +0 -55
- package/dist/cjs/components/alert/parts/AlertContent.cjs +0 -1
- package/dist/cjs/components/alert/parts/AlertContent.d.cts +0 -17
- package/dist/cjs/components/alert/parts/AlertTitle.cjs +0 -1
- package/dist/cjs/components/alert/parts/AlertTitle.d.cts +0 -17
- package/dist/cjs/components/app-layout/AppLayout.cjs +0 -1
- package/dist/cjs/components/app-menu/AppMenu.cjs +0 -1
- package/dist/cjs/components/app-menu/parts/AppMenuFooter.cjs +0 -1
- package/dist/cjs/components/app-menu/parts/AppMenuFooter.d.cts +0 -31
- package/dist/cjs/components/app-menu/parts/AppMenuHeader.cjs +0 -1
- package/dist/cjs/components/app-menu/parts/AppMenuNavContent.cjs +0 -1
- package/dist/cjs/components/autocomplete/Autocomplete.cjs +0 -1
- package/dist/cjs/components/autocomplete/Autocomplete.d.cts +0 -156
- package/dist/cjs/components/autocomplete/parts/AutocompleteClearButton.cjs +0 -1
- package/dist/cjs/components/autocomplete/parts/AutocompleteClearButton.d.cts +0 -18
- package/dist/cjs/components/autocomplete/parts/AutocompleteItem.cjs +0 -1
- package/dist/cjs/components/autocomplete/parts/AutocompleteItem.d.cts +0 -56
- package/dist/cjs/components/autocomplete/parts/AutocompleteItemGroup.cjs +0 -1
- package/dist/cjs/components/autocomplete/parts/AutocompleteItemGroup.d.cts +0 -96
- package/dist/cjs/components/autocomplete/parts/AutocompletePanel.cjs +0 -1
- package/dist/cjs/components/autocomplete/parts/AutocompletePanel.d.cts +0 -76
- package/dist/cjs/components/avatar/Avatar.cjs +0 -1
- package/dist/cjs/components/avatar/Avatar.d.cts +0 -206
- package/dist/cjs/components/avatar/Avatar.variants.d.cts +0 -85
- package/dist/cjs/components/avatar/parts/AvatarFallback.cjs +0 -1
- package/dist/cjs/components/avatar/parts/AvatarFallback.d.cts +0 -170
- package/dist/cjs/components/avatar/parts/AvatarImage.cjs +0 -1
- package/dist/cjs/components/avatar/parts/AvatarPair.cjs +0 -1
- package/dist/cjs/components/avatar/parts/AvatarPair.d.cts +0 -48
- package/dist/cjs/components/badge/Badge.cjs +0 -1
- package/dist/cjs/components/badge/Badge.d.cts +0 -94
- package/dist/cjs/components/bottom-sheet/BottomSheet.cjs +0 -1
- package/dist/cjs/components/bottom-sheet/BottomSheet.d.cts +0 -153
- package/dist/cjs/components/bottom-sheet/parts/BottomSheetContent.cjs +0 -1
- package/dist/cjs/components/bottom-sheet/parts/BottomSheetContent.d.cts +0 -70
- package/dist/cjs/components/bottom-sheet/parts/BottomSheetDragIndicator.cjs +0 -1
- package/dist/cjs/components/bottom-sheet/parts/BottomSheetDragIndicator.d.cts +0 -54
- package/dist/cjs/components/bottom-sheet/parts/BottomSheetFooter.cjs +0 -1
- package/dist/cjs/components/bottom-sheet/parts/BottomSheetFooter.d.cts +0 -27
- package/dist/cjs/components/bottom-sheet/parts/BottomSheetHeader.cjs +0 -1
- package/dist/cjs/components/bottom-sheet/parts/BottomSheetHeader.d.cts +0 -83
- package/dist/cjs/components/breadcrumbs/Breadcrumbs.cjs +0 -1
- package/dist/cjs/components/breadcrumbs/Breadcrumbs.context.d.cts +0 -12
- package/dist/cjs/components/breadcrumbs/Breadcrumbs.d.cts +0 -33
- package/dist/cjs/components/breadcrumbs/Breadcrumbs.variant.d.cts +0 -73
- package/dist/cjs/components/breadcrumbs/parts/Breadcrumb.cjs +0 -1
- package/dist/cjs/components/button/Button.cjs +0 -1
- package/dist/cjs/components/button/Button.d.cts +0 -42
- package/dist/cjs/components/button/Button.variants.cjs +0 -1
- package/dist/cjs/components/button/Button.variants.d.cts +0 -536
- package/dist/cjs/components/checkbox/Checkbox.cjs +0 -1
- package/dist/cjs/components/checkbox/Checkbox.d.cts +0 -102
- package/dist/cjs/components/checkbox/Checkbox.variants.cjs +0 -1
- package/dist/cjs/components/checkbox/Checkbox.variants.d.cts +0 -123
- package/dist/cjs/components/checkbox/CheckboxStandalone.cjs +0 -1
- package/dist/cjs/components/checkbox/CheckboxStandalone.d.cts +0 -63
- package/dist/cjs/components/checkbox/parts/CheckboxIndicator.cjs +0 -1
- package/dist/cjs/components/checkbox-field/CheckboxField.cjs +0 -1
- package/dist/cjs/components/checkbox-field/CheckboxField.d.cts +0 -74
- package/dist/cjs/components/checkbox-group/CheckboxGroup.cjs +0 -1
- package/dist/cjs/components/checkbox-group/CheckboxGroup.d.cts +0 -65
- package/dist/cjs/components/checkbox-group-field/CheckboxGroupField.cjs +0 -1
- package/dist/cjs/components/checkbox-group-field/CheckboxGroupField.d.cts +0 -79
- package/dist/cjs/components/collapsible/Collapsible.cjs +0 -1
- package/dist/cjs/components/collapsible/Collapsible.d.cts +0 -33
- package/dist/cjs/components/collapsible/parts/CollapsibleContent.cjs +0 -1
- package/dist/cjs/components/collapsible/parts/CollapsibleContent.d.cts +0 -36
- package/dist/cjs/components/collapsible/parts/CollapsibleTitle.cjs +0 -1
- package/dist/cjs/components/collapsible/parts/CollapsibleTitle.d.cts +0 -39
- package/dist/cjs/components/data-table/DataTable.cjs +0 -1
- package/dist/cjs/components/data-table/DataTable.d.cts +0 -94
- package/dist/cjs/components/data-table/mocks/employee-columns.d.cts +0 -3
- package/dist/cjs/components/data-table/mocks/employee-data.d.cts +0 -17
- package/dist/cjs/components/data-table/parts/ColumnSortHeader.cjs +0 -1
- package/dist/cjs/components/data-table/parts/ColumnSortHeader.d.cts +0 -10
- package/dist/cjs/components/date-picker/DatePicker.cjs +0 -1
- package/dist/cjs/components/date-picker/parts/DateCalendar.cjs +0 -1
- package/dist/cjs/components/date-picker/parts/DateInput.cjs +0 -1
- package/dist/cjs/components/date-picker/parts/DateInput.d.cts +0 -155
- package/dist/cjs/components/date-picker/parts/DateSegmentSelect.cjs +0 -1
- package/dist/cjs/components/date-picker-field/DatePickerField.cjs +0 -1
- package/dist/cjs/components/date-picker-field/DatePickerField.d.cts +0 -83
- package/dist/cjs/components/dialog/Dialog.cjs +0 -1
- package/dist/cjs/components/dialog/Dialog.d.cts +0 -117
- package/dist/cjs/components/dialog/parts/DialogActions/DialogButton.cjs +0 -1
- package/dist/cjs/components/dialog/parts/DialogActions/DialogButton.d.cts +0 -22
- package/dist/cjs/components/dialog/parts/DialogActions.cjs +0 -1
- package/dist/cjs/components/dialog/parts/DialogContent.cjs +0 -1
- package/dist/cjs/components/dialog/parts/DialogTitle.cjs +0 -1
- package/dist/cjs/components/fieldset/Fieldset.cjs +0 -1
- package/dist/cjs/components/fieldset/Fieldset.d.cts +0 -150
- package/dist/cjs/components/fieldset/parts/FieldGroup.cjs +0 -1
- package/dist/cjs/components/fieldset/parts/FieldGroup.d.cts +0 -27
- package/dist/cjs/components/flex/Flex.cjs +0 -1
- package/dist/cjs/components/flex/Flex.d.cts +0 -64
- package/dist/cjs/components/flex/FlexItem.cjs +0 -1
- package/dist/cjs/components/flex/FlexItem.d.cts +0 -40
- package/dist/cjs/components/form/Form.cjs +0 -1
- package/dist/cjs/components/form/Form.context.d.cts +0 -12
- package/dist/cjs/components/form/Form.d.cts +0 -33
- package/dist/cjs/components/form-field/FormField.cjs +0 -1
- package/dist/cjs/components/form-field/parts/FormContextualLink.cjs +0 -1
- package/dist/cjs/components/form-field/parts/FormControl.cjs +0 -1
- package/dist/cjs/components/form-field/parts/FormControl.d.cts +0 -30
- package/dist/cjs/components/form-field/parts/FormFeedbackText.cjs +0 -1
- package/dist/cjs/components/form-field/parts/FormHelperText.cjs +0 -1
- package/dist/cjs/components/form-field/parts/FormLabel.cjs +0 -1
- package/dist/cjs/components/form-field/parts/FormLabel.d.cts +0 -8
- package/dist/cjs/components/full-page-loader/FullPageLoader.cjs +0 -1
- package/dist/cjs/components/full-page-loader/FullPageLoader.d.cts +0 -13
- package/dist/cjs/components/grid/Grid.cjs +0 -1
- package/dist/cjs/components/grid/Grid.d.cts +0 -54
- package/dist/cjs/components/grid/GridItem.cjs +0 -1
- package/dist/cjs/components/grid/GridItem.d.cts +0 -60
- package/dist/cjs/components/icon/Icon.cjs +0 -1
- package/dist/cjs/components/icon/Icon.d.cts +0 -574
- package/dist/cjs/components/icon-button/CircularIconButton.cjs +0 -1
- package/dist/cjs/components/icon-button/CircularIconButton.d.cts +0 -100
- package/dist/cjs/components/icon-button/IconButton.cjs +0 -1
- package/dist/cjs/components/icon-button/IconButton.d.cts +0 -26
- package/dist/cjs/components/icon-button/IconButton.variants.cjs +0 -1
- package/dist/cjs/components/icon-button/IconButton.variants.d.cts +0 -589
- package/dist/cjs/components/input/Input.cjs +0 -1
- package/dist/cjs/components/label/Label.cjs +0 -1
- package/dist/cjs/components/link/Link.cjs +0 -1
- package/dist/cjs/components/link/Link.d.cts +0 -83
- package/dist/cjs/components/link/Link.variants.d.cts +0 -120
- package/dist/cjs/components/menu/parts/MenuContent.cjs +0 -1
- package/dist/cjs/components/menu/parts/MenuHeader.cjs +0 -1
- package/dist/cjs/components/menu/parts/MenuItem.d.cts +0 -15
- package/dist/cjs/components/multi-select/MultiSelect.cjs +0 -1
- package/dist/cjs/components/multi-select/MultiSelect.d.cts +0 -62
- package/dist/cjs/components/multi-select/Multiselect.context.cjs +0 -1
- package/dist/cjs/components/multi-select/Multiselect.context.d.cts +0 -7
- package/dist/cjs/components/multi-select/Multiselect.types.d.cts +0 -109
- package/dist/cjs/components/multi-select/hooks/use-combobox-filter.cjs +0 -1
- package/dist/cjs/components/multi-select/hooks/use-combobox-filter.d.cts +0 -12
- package/dist/cjs/components/multi-select/hooks/use-multiselection-state.cjs +0 -1
- package/dist/cjs/components/multi-select/hooks/use-multiselection-state.d.cts +0 -14
- package/dist/cjs/components/multi-select/parts/MultiSelectButton.cjs +0 -1
- package/dist/cjs/components/multi-select/parts/MultiSelectButton.d.cts +0 -16
- package/dist/cjs/components/multi-select/parts/MultiSelectOptGroup.cjs +0 -1
- package/dist/cjs/components/multi-select/parts/MultiSelectOptGroup.d.cts +0 -69
- package/dist/cjs/components/multi-select/parts/MultiSelectOption.cjs +0 -1
- package/dist/cjs/components/multi-select/parts/MultiSelectOption.d.cts +0 -20
- package/dist/cjs/components/multi-select/parts/MultiSelectPopover.cjs +0 -1
- package/dist/cjs/components/multi-select/parts/MultiSelectPopover.d.cts +0 -7
- package/dist/cjs/components/multi-select-field/MultiSelectField.cjs +0 -1
- package/dist/cjs/components/multi-select-field/MultiSelectField.d.cts +0 -59
- package/dist/cjs/components/nav/Nav.cjs +0 -1
- package/dist/cjs/components/nav/parts/NavGroup.cjs +0 -1
- package/dist/cjs/components/nav/parts/NavGroup.d.cts +0 -30
- package/dist/cjs/components/nav/parts/NavItem.cjs +0 -1
- package/dist/cjs/components/nav/parts/NavItem.d.cts +0 -281
- package/dist/cjs/components/page/Page.cjs +0 -1
- package/dist/cjs/components/page/Page.d.cts +0 -75
- package/dist/cjs/components/page/parts/PageHeader.cjs +0 -1
- package/dist/cjs/components/page/parts/PageHeader.d.cts +0 -100
- package/dist/cjs/components/page/parts/PageHeading.cjs +0 -1
- package/dist/cjs/components/page/parts/PageHeading.d.cts +0 -30
- package/dist/cjs/components/pagination/Pagination.cjs +0 -1
- package/dist/cjs/components/pagination/Pagination.d.cts +0 -106
- package/dist/cjs/components/pagination/hooks/use-pagination.cjs +0 -1
- package/dist/cjs/components/pagination/hooks/use-pagination.d.cts +0 -11
- package/dist/cjs/components/pagination/parts/PaginationEllipsis.cjs +0 -1
- package/dist/cjs/components/pagination/parts/PaginationEllipsis.d.cts +0 -6
- package/dist/cjs/components/pagination/parts/PaginationJumpDialog.cjs +0 -1
- package/dist/cjs/components/pagination/parts/PaginationJumpDialog.d.cts +0 -8
- package/dist/cjs/components/pagination/parts/PaginationLink.cjs +0 -1
- package/dist/cjs/components/pagination/parts/PaginationLink.d.cts +0 -46
- package/dist/cjs/components/pagination/parts/PaginationNavButton.cjs +0 -1
- package/dist/cjs/components/pagination/parts/PaginationNavButton.d.cts +0 -9
- package/dist/cjs/components/pagination/utils/pagination-window.cjs +0 -1
- package/dist/cjs/components/pagination/utils/pagination-window.d.cts +0 -8
- package/dist/cjs/components/payfit-brand/PayFitBrand.cjs +0 -1
- package/dist/cjs/components/payfit-brand/PayFitPreprod.cjs +0 -1
- package/dist/cjs/components/payfit-brand/PayFitPreprod.d.cts +0 -10
- package/dist/cjs/components/pill/Pill.cjs +0 -1
- package/dist/cjs/components/pill/Pill.d.cts +0 -143
- package/dist/cjs/components/popover/Popover.cjs +0 -1
- package/dist/cjs/components/popover/Popover.d.cts +0 -56
- package/dist/cjs/components/popover/parts/PopoverContent.cjs +0 -1
- package/dist/cjs/components/popover/parts/PopoverContent.d.cts +0 -6
- package/dist/cjs/components/popover/parts/PopoverHeader.cjs +0 -1
- package/dist/cjs/components/popover/parts/PopoverHeader.d.cts +0 -20
- package/dist/cjs/components/progress-bar/ProgressBar.cjs +0 -1
- package/dist/cjs/components/radio-button-group/RadioButtonGroup.cjs +0 -1
- package/dist/cjs/components/radio-button-group/RadioButtonGroup.d.cts +0 -22
- package/dist/cjs/components/radio-button-group/parts/RadioButton.cjs +0 -1
- package/dist/cjs/components/radio-button-group/parts/RadioButton.d.cts +0 -74
- package/dist/cjs/components/radio-button-group/parts/RadioButtonHelper.cjs +0 -1
- package/dist/cjs/components/radio-button-group/parts/RadioButtonHelper.d.cts +0 -19
- package/dist/cjs/components/radio-button-group/parts/radio-input-selected.svg.cjs +0 -1
- package/dist/cjs/components/radio-button-group/parts/radio-input-unselected.svg.cjs +0 -1
- package/dist/cjs/components/radio-button-group-field/RadioButtonGroupField.cjs +0 -1
- package/dist/cjs/components/radio-button-group-field/RadioButtonGroupField.d.cts +0 -47
- package/dist/cjs/components/search/Search.cjs +0 -1
- package/dist/cjs/components/search/Search.d.cts +0 -180
- package/dist/cjs/components/segmented-button-group/SegmentedButtonGroup.cjs +0 -1
- package/dist/cjs/components/segmented-button-group/SegmentedButtonGroup.d.cts +0 -43
- package/dist/cjs/components/segmented-button-group/SegmentedButtonGroups.context.cjs +0 -1
- package/dist/cjs/components/segmented-button-group/SegmentedButtonGroups.context.d.cts +0 -8
- package/dist/cjs/components/segmented-button-group/parts/ToggleButton.cjs +0 -1
- package/dist/cjs/components/segmented-button-group/parts/ToggleButton.d.cts +0 -47
- package/dist/cjs/components/select/Select.cjs +0 -1
- package/dist/cjs/components/select/Select.d.cts +0 -54
- package/dist/cjs/components/select/parts/SearchInput.cjs +0 -1
- package/dist/cjs/components/select/parts/SelectButton.cjs +0 -1
- package/dist/cjs/components/select/parts/SelectOption.cjs +0 -1
- package/dist/cjs/components/select/parts/SelectOption.d.cts +0 -13
- package/dist/cjs/components/select/parts/SelectOptionHelper.cjs +0 -1
- package/dist/cjs/components/select-field/SelectField.cjs +0 -1
- package/dist/cjs/components/select-field/SelectField.d.cts +0 -50
- package/dist/cjs/components/selectable-button-group/SelectableButtonGroup.cjs +0 -1
- package/dist/cjs/components/selectable-button-group/SelectableButtonGroup.context.cjs +0 -1
- package/dist/cjs/components/selectable-button-group/SelectableButtonGroup.context.d.cts +0 -2
- package/dist/cjs/components/selectable-button-group/SelectableButtonGroup.d.cts +0 -59
- package/dist/cjs/components/selectable-button-group/parts/SelectableButton.cjs +0 -1
- package/dist/cjs/components/selectable-button-group/parts/SelectableButton.d.cts +0 -127
- package/dist/cjs/components/selectable-card/internals/Content.cjs +0 -1
- package/dist/cjs/components/selectable-card/internals/Content.d.cts +0 -6
- package/dist/cjs/components/selectable-card/internals/Description.cjs +0 -1
- package/dist/cjs/components/selectable-card/internals/Description.d.cts +0 -6
- package/dist/cjs/components/selectable-card/internals/Illustration.cjs +0 -1
- package/dist/cjs/components/selectable-card/internals/Illustration.d.cts +0 -6
- package/dist/cjs/components/selectable-card/internals/SelectedIndicator.cjs +0 -1
- package/dist/cjs/components/selectable-card/internals/SelectedIndicator.d.cts +0 -6
- package/dist/cjs/components/selectable-card/selectable-card-checkbox-group/SelectableCardCheckboxGroup.cjs +0 -1
- package/dist/cjs/components/selectable-card/selectable-card-checkbox-group/SelectableCardCheckboxGroup.d.cts +0 -20
- package/dist/cjs/components/selectable-card/selectable-card-checkbox-group/parts/SelectableCardCheckbox.cjs +0 -1
- package/dist/cjs/components/selectable-card/selectable-card-checkbox-group/parts/SelectableCardCheckbox.d.cts +0 -47
- package/dist/cjs/components/selectable-card/selectable-card-radio-group/SelectableCardRadioGroup.cjs +0 -1
- package/dist/cjs/components/selectable-card/selectable-card-radio-group/SelectableCardRadioGroup.d.cts +0 -20
- package/dist/cjs/components/selectable-card/selectable-card-radio-group/parts/RadioIndicator.cjs +0 -1
- package/dist/cjs/components/selectable-card/selectable-card-radio-group/parts/RadioIndicator.d.cts +0 -8
- package/dist/cjs/components/selectable-card/selectable-card-radio-group/parts/SelectableCardRadio.cjs +0 -1
- package/dist/cjs/components/selectable-card/selectable-card-radio-group/parts/SelectableCardRadio.d.cts +0 -50
- package/dist/cjs/components/selectable-card/selectableCard.variant.cjs +0 -1
- package/dist/cjs/components/selectable-card/selectableCard.variant.d.cts +0 -35
- package/dist/cjs/components/selectable-card-checkbox-group-field/SelectableCardCheckboxGroupField.cjs +0 -1
- package/dist/cjs/components/selectable-card-checkbox-group-field/SelectableCardCheckboxGroupField.d.cts +0 -31
- package/dist/cjs/components/selectable-card-radio-group-field/SelectableCardRadioGroupField.cjs +0 -1
- package/dist/cjs/components/selectable-card-radio-group-field/SelectableCardRadioGroupField.d.cts +0 -31
- package/dist/cjs/components/side-panel/SidePanel.cjs +0 -1
- package/dist/cjs/components/side-panel/SidePanel.d.cts +0 -152
- package/dist/cjs/components/side-panel/parts/SidePanelContent.cjs +0 -1
- package/dist/cjs/components/side-panel/parts/SidePanelContent.d.cts +0 -71
- package/dist/cjs/components/side-panel/parts/SidePanelDragIndicator.cjs +0 -1
- package/dist/cjs/components/side-panel/parts/SidePanelDragIndicator.d.cts +0 -54
- package/dist/cjs/components/side-panel/parts/SidePanelFooter.cjs +0 -1
- package/dist/cjs/components/side-panel/parts/SidePanelFooter.d.cts +0 -27
- package/dist/cjs/components/side-panel/parts/SidePanelHeader.cjs +0 -1
- package/dist/cjs/components/side-panel/parts/SidePanelHeader.d.cts +0 -75
- package/dist/cjs/components/spinner/Spinner.cjs +0 -1
- package/dist/cjs/components/table/Table.cjs +0 -1
- package/dist/cjs/components/table/Table.context.cjs +0 -1
- package/dist/cjs/components/table/Table.context.d.cts +0 -59
- package/dist/cjs/components/table/Table.d.cts +0 -93
- package/dist/cjs/components/table/assets/EmptyStateError.svg.cjs +0 -1
- package/dist/cjs/components/table/assets/EmptyStateNoData.svg.cjs +0 -1
- package/dist/cjs/components/table/hooks/useTableAnnouncer.d.cts +0 -5
- package/dist/cjs/components/table/hooks/useTableKeyboardNavigation.cjs +0 -1
- package/dist/cjs/components/table/hooks/useTableKeyboardNavigation.d.cts +0 -39
- package/dist/cjs/components/table/parts/TableBody.cjs +0 -1
- package/dist/cjs/components/table/parts/TableBody.d.cts +0 -56
- package/dist/cjs/components/table/parts/TableCell.cjs +0 -1
- package/dist/cjs/components/table/parts/TableCell.d.cts +0 -80
- package/dist/cjs/components/table/parts/TableColumnHeader.cjs +0 -1
- package/dist/cjs/components/table/parts/TableColumnHeader.d.cts +0 -89
- package/dist/cjs/components/table/parts/TableEmptyState.cjs +0 -1
- package/dist/cjs/components/table/parts/TableEmptyState.d.cts +0 -177
- package/dist/cjs/components/table/parts/TableHeader.cjs +0 -1
- package/dist/cjs/components/table/parts/TableHeader.d.cts +0 -29
- package/dist/cjs/components/table/parts/TablePagination.cjs +0 -1
- package/dist/cjs/components/table/parts/TablePagination.d.cts +0 -135
- package/dist/cjs/components/table/parts/TableRow.cjs +0 -1
- package/dist/cjs/components/table/parts/TableRow.d.cts +0 -40
- package/dist/cjs/components/tabs/Tabs.cjs +0 -1
- package/dist/cjs/components/tabs/Tabs.context.d.cts +0 -11
- package/dist/cjs/components/tabs/Tabs.d.cts +0 -12
- package/dist/cjs/components/tabs/Tabs.variant.cjs +0 -1
- package/dist/cjs/components/tabs/Tabs.variant.d.cts +0 -139
- package/dist/cjs/components/tabs/parts/NavigationButton.cjs +0 -1
- package/dist/cjs/components/tabs/parts/Tab.cjs +0 -1
- package/dist/cjs/components/tabs/parts/TabList.cjs +0 -1
- package/dist/cjs/components/text/Text.cjs +0 -1
- package/dist/cjs/components/text/Text.d.cts +0 -84
- package/dist/cjs/components/text/Text.variants.d.cts +0 -673
- package/dist/cjs/components/text-area/TextArea.cjs +0 -1
- package/dist/cjs/components/text-area/TextArea.d.cts +0 -220
- package/dist/cjs/components/text-field/TextField.cjs +0 -1
- package/dist/cjs/components/text-field/TextField.d.cts +0 -63
- package/dist/cjs/components/toast/ToastManager.d.cts +0 -7
- package/dist/cjs/components/toast/UnityToast.cjs +0 -1
- package/dist/cjs/components/toast/UnityToast.d.cts +0 -55
- package/dist/cjs/components/toast/parts/ToastAction.cjs +0 -1
- package/dist/cjs/components/toast/parts/ToastContent.cjs +0 -1
- package/dist/cjs/components/toast/parts/ToastTitle.cjs +0 -1
- package/dist/cjs/components/toast/toast.cjs +0 -1
- package/dist/cjs/components/toast/toast.d.cts +0 -44
- package/dist/cjs/components/toggle-switch/ToggleSwitch.cjs +0 -1
- package/dist/cjs/components/toggle-switch/ToggleSwitch.d.cts +0 -111
- package/dist/cjs/components/toggle-switch-field/ToggleSwitchField.cjs +0 -1
- package/dist/cjs/components/toggle-switch-field/ToggleSwitchField.d.cts +0 -73
- package/dist/cjs/components/toggle-switch-group/ToggleSwitchGroup.cjs +0 -1
- package/dist/cjs/components/toggle-switch-group/ToggleSwitchGroup.d.cts +0 -71
- package/dist/cjs/components/toggle-switch-group-field/ToggleSwitchGroupField.cjs +0 -1
- package/dist/cjs/components/toggle-switch-group-field/ToggleSwitchGroupField.d.cts +0 -82
- package/dist/cjs/components/tooltip/Tooltip.cjs +0 -1
- package/dist/cjs/components/tooltip/Tooltip.d.cts +0 -7
- package/dist/cjs/docs/table/mocks/employee-columns.d.cts +0 -3
- package/dist/cjs/hooks/use-async-list.d.cts +0 -2
- package/dist/cjs/hooks/use-breakpoint-listener.cjs +0 -1
- package/dist/cjs/hooks/use-form.cjs +0 -1
- package/dist/cjs/hooks/use-form.d.cts +0 -48
- package/dist/cjs/hooks/use-media-query.cjs +0 -1
- package/dist/cjs/index.cjs +0 -1
- package/dist/cjs/index.d.cts +0 -142
- package/dist/cjs/mocks/employees.d.cts +0 -17
- package/dist/cjs/providers/router/RouterProvider.d.cts +0 -37
- package/dist/cjs/providers/router/integrations/UnityReactRouterV5Provider.cjs +0 -1
- package/dist/cjs/providers/router/integrations/UnityReactRouterV5Provider.d.cts +0 -6
- package/dist/cjs/types/utils.d.cts +0 -1
- package/dist/esm/components/actionable/Actionable.d.ts +0 -12
- package/dist/esm/components/alert/Alert.d.ts +0 -155
- package/dist/esm/components/alert/Alert.js +0 -78
- package/dist/esm/components/alert/parts/AlertActions.d.ts +0 -55
- package/dist/esm/components/alert/parts/AlertContent.js +0 -10
- package/dist/esm/components/alert/parts/AlertTitle.js +0 -20
- package/dist/esm/components/app-layout/AppLayout.js +0 -77
- package/dist/esm/components/app-menu/AppMenu.js +0 -14
- package/dist/esm/components/app-menu/parts/AppMenuFooter.js +0 -232
- package/dist/esm/components/app-menu/parts/AppMenuHeader.js +0 -41
- package/dist/esm/components/app-menu/parts/AppMenuNavContent.js +0 -23
- package/dist/esm/components/autocomplete/Autocomplete.d.ts +0 -156
- package/dist/esm/components/autocomplete/Autocomplete.js +0 -172
- package/dist/esm/components/autocomplete/parts/AutocompleteClearButton.d.ts +0 -18
- package/dist/esm/components/autocomplete/parts/AutocompleteClearButton.js +0 -35
- package/dist/esm/components/autocomplete/parts/AutocompleteItem.d.ts +0 -56
- package/dist/esm/components/autocomplete/parts/AutocompleteItem.js +0 -36
- package/dist/esm/components/autocomplete/parts/AutocompleteItemGroup.d.ts +0 -96
- package/dist/esm/components/autocomplete/parts/AutocompleteItemGroup.js +0 -30
- package/dist/esm/components/autocomplete/parts/AutocompletePanel.d.ts +0 -76
- package/dist/esm/components/autocomplete/parts/AutocompletePanel.js +0 -47
- package/dist/esm/components/avatar/Avatar.d.ts +0 -206
- package/dist/esm/components/avatar/Avatar.js +0 -33
- package/dist/esm/components/avatar/Avatar.variants.d.ts +0 -85
- package/dist/esm/components/avatar/parts/AvatarFallback.d.ts +0 -170
- package/dist/esm/components/avatar/parts/AvatarFallback.js +0 -87
- package/dist/esm/components/avatar/parts/AvatarImage.js +0 -21
- package/dist/esm/components/avatar/parts/AvatarPair.js +0 -47
- package/dist/esm/components/badge/Badge.d.ts +0 -94
- package/dist/esm/components/badge/Badge.js +0 -61
- package/dist/esm/components/bottom-sheet/BottomSheet.d.ts +0 -153
- package/dist/esm/components/bottom-sheet/BottomSheet.js +0 -68
- package/dist/esm/components/bottom-sheet/parts/BottomSheetContent.d.ts +0 -70
- package/dist/esm/components/bottom-sheet/parts/BottomSheetContent.js +0 -26
- package/dist/esm/components/bottom-sheet/parts/BottomSheetDragIndicator.d.ts +0 -54
- package/dist/esm/components/bottom-sheet/parts/BottomSheetDragIndicator.js +0 -67
- package/dist/esm/components/bottom-sheet/parts/BottomSheetFooter.d.ts +0 -27
- package/dist/esm/components/bottom-sheet/parts/BottomSheetFooter.js +0 -28
- package/dist/esm/components/bottom-sheet/parts/BottomSheetHeader.d.ts +0 -83
- package/dist/esm/components/bottom-sheet/parts/BottomSheetHeader.js +0 -45
- package/dist/esm/components/breadcrumbs/Breadcrumbs.js +0 -21
- package/dist/esm/components/breadcrumbs/Breadcrumbs.variant.d.ts +0 -73
- package/dist/esm/components/breadcrumbs/parts/Breadcrumb.js +0 -24
- package/dist/esm/components/button/Button.js +0 -75
- package/dist/esm/components/button/Button.variants.d.ts +0 -536
- package/dist/esm/components/button/Button.variants.js +0 -136
- package/dist/esm/components/checkbox/Checkbox.d.ts +0 -102
- package/dist/esm/components/checkbox/Checkbox.js +0 -93
- package/dist/esm/components/checkbox/Checkbox.variants.d.ts +0 -123
- package/dist/esm/components/checkbox/Checkbox.variants.js +0 -65
- package/dist/esm/components/checkbox/CheckboxStandalone.d.ts +0 -63
- package/dist/esm/components/checkbox/CheckboxStandalone.js +0 -30
- package/dist/esm/components/checkbox/parts/CheckboxIndicator.js +0 -146
- package/dist/esm/components/checkbox-field/CheckboxField.js +0 -61
- package/dist/esm/components/checkbox-group/CheckboxGroup.d.ts +0 -65
- package/dist/esm/components/checkbox-group/CheckboxGroup.js +0 -73
- package/dist/esm/components/checkbox-group-field/CheckboxGroupField.js +0 -54
- package/dist/esm/components/collapsible/Collapsible.d.ts +0 -33
- package/dist/esm/components/collapsible/Collapsible.js +0 -23
- package/dist/esm/components/collapsible/parts/CollapsibleContent.d.ts +0 -36
- package/dist/esm/components/collapsible/parts/CollapsibleContent.js +0 -10
- package/dist/esm/components/collapsible/parts/CollapsibleTitle.d.ts +0 -39
- package/dist/esm/components/collapsible/parts/CollapsibleTitle.js +0 -51
- package/dist/esm/components/data-table/DataTable.d.ts +0 -94
- package/dist/esm/components/data-table/DataTable.js +0 -77
- package/dist/esm/components/data-table/mocks/employee-columns.d.ts +0 -3
- package/dist/esm/components/data-table/mocks/employee-data.d.ts +0 -17
- package/dist/esm/components/data-table/parts/ColumnSortHeader.d.ts +0 -10
- package/dist/esm/components/data-table/parts/ColumnSortHeader.js +0 -37
- package/dist/esm/components/date-picker/DatePicker.js +0 -164
- package/dist/esm/components/date-picker/parts/DateCalendar.js +0 -172
- package/dist/esm/components/date-picker/parts/DateInput.d.ts +0 -155
- package/dist/esm/components/date-picker/parts/DateInput.js +0 -124
- package/dist/esm/components/date-picker/parts/DateSegmentSelect.js +0 -69
- package/dist/esm/components/date-picker-field/DatePickerField.js +0 -73
- package/dist/esm/components/dialog/Dialog.d.ts +0 -117
- package/dist/esm/components/dialog/Dialog.js +0 -72
- package/dist/esm/components/dialog/parts/DialogActions/DialogButton.d.ts +0 -22
- package/dist/esm/components/dialog/parts/DialogActions/DialogButton.js +0 -59
- package/dist/esm/components/dialog/parts/DialogActions.js +0 -13
- package/dist/esm/components/dialog/parts/DialogContent.js +0 -22
- package/dist/esm/components/dialog/parts/DialogTitle.js +0 -7
- package/dist/esm/components/fieldset/Fieldset.d.ts +0 -150
- package/dist/esm/components/fieldset/Fieldset.js +0 -66
- package/dist/esm/components/fieldset/parts/FieldGroup.d.ts +0 -27
- package/dist/esm/components/fieldset/parts/FieldGroup.js +0 -18
- package/dist/esm/components/flex/Flex.js +0 -42
- package/dist/esm/components/flex/FlexItem.js +0 -32
- package/dist/esm/components/form/Form.context.d.ts +0 -12
- package/dist/esm/components/form/Form.js +0 -58
- package/dist/esm/components/form-field/FormField.js +0 -60
- package/dist/esm/components/form-field/parts/FormContextualLink.js +0 -37
- package/dist/esm/components/form-field/parts/FormControl.d.ts +0 -30
- package/dist/esm/components/form-field/parts/FormControl.js +0 -50
- package/dist/esm/components/form-field/parts/FormFeedbackText.js +0 -28
- package/dist/esm/components/form-field/parts/FormHelperText.js +0 -26
- package/dist/esm/components/form-field/parts/FormLabel.js +0 -30
- package/dist/esm/components/full-page-loader/FullPageLoader.d.ts +0 -13
- package/dist/esm/components/full-page-loader/FullPageLoader.js +0 -35
- package/dist/esm/components/grid/Grid.js +0 -38
- package/dist/esm/components/grid/GridItem.js +0 -43
- package/dist/esm/components/icon/Icon.d.ts +0 -574
- package/dist/esm/components/icon/Icon.js +0 -113
- package/dist/esm/components/icon-button/CircularIconButton.d.ts +0 -100
- package/dist/esm/components/icon-button/CircularIconButton.js +0 -99
- package/dist/esm/components/icon-button/IconButton.js +0 -59
- package/dist/esm/components/icon-button/IconButton.variants.d.ts +0 -589
- package/dist/esm/components/icon-button/IconButton.variants.js +0 -356
- package/dist/esm/components/input/Input.js +0 -149
- package/dist/esm/components/label/Label.js +0 -64
- package/dist/esm/components/link/Link.d.ts +0 -83
- package/dist/esm/components/link/Link.js +0 -66
- package/dist/esm/components/link/Link.variants.d.ts +0 -120
- package/dist/esm/components/menu/parts/MenuContent.js +0 -22
- package/dist/esm/components/menu/parts/MenuHeader.js +0 -16
- package/dist/esm/components/multi-select/MultiSelect.d.ts +0 -62
- package/dist/esm/components/multi-select/MultiSelect.js +0 -233
- package/dist/esm/components/multi-select/Multiselect.context.d.ts +0 -7
- package/dist/esm/components/multi-select/Multiselect.context.js +0 -8
- package/dist/esm/components/multi-select/Multiselect.types.d.ts +0 -109
- package/dist/esm/components/multi-select/hooks/use-combobox-filter.d.ts +0 -12
- package/dist/esm/components/multi-select/hooks/use-combobox-filter.js +0 -22
- package/dist/esm/components/multi-select/hooks/use-multiselection-state.d.ts +0 -14
- package/dist/esm/components/multi-select/hooks/use-multiselection-state.js +0 -47
- package/dist/esm/components/multi-select/parts/MultiSelectButton.d.ts +0 -16
- package/dist/esm/components/multi-select/parts/MultiSelectButton.js +0 -161
- package/dist/esm/components/multi-select/parts/MultiSelectOptGroup.d.ts +0 -69
- package/dist/esm/components/multi-select/parts/MultiSelectOptGroup.js +0 -34
- package/dist/esm/components/multi-select/parts/MultiSelectOption.d.ts +0 -20
- package/dist/esm/components/multi-select/parts/MultiSelectOption.js +0 -87
- package/dist/esm/components/multi-select/parts/MultiSelectPopover.d.ts +0 -7
- package/dist/esm/components/multi-select/parts/MultiSelectPopover.js +0 -65
- package/dist/esm/components/multi-select-field/MultiSelectField.d.ts +0 -59
- package/dist/esm/components/multi-select-field/MultiSelectField.js +0 -82
- package/dist/esm/components/nav/Nav.js +0 -28
- package/dist/esm/components/nav/parts/NavGroup.js +0 -105
- package/dist/esm/components/nav/parts/NavItem.d.ts +0 -281
- package/dist/esm/components/nav/parts/NavItem.js +0 -88
- package/dist/esm/components/page/Page.d.ts +0 -75
- package/dist/esm/components/page/Page.js +0 -44
- package/dist/esm/components/page/parts/PageHeader.d.ts +0 -100
- package/dist/esm/components/page/parts/PageHeader.js +0 -34
- package/dist/esm/components/page/parts/PageHeading.d.ts +0 -30
- package/dist/esm/components/page/parts/PageHeading.js +0 -19
- package/dist/esm/components/pagination/Pagination.d.ts +0 -106
- package/dist/esm/components/pagination/Pagination.js +0 -179
- package/dist/esm/components/pagination/hooks/use-pagination.d.ts +0 -11
- package/dist/esm/components/pagination/hooks/use-pagination.js +0 -27
- package/dist/esm/components/pagination/parts/PaginationEllipsis.d.ts +0 -6
- package/dist/esm/components/pagination/parts/PaginationEllipsis.js +0 -30
- package/dist/esm/components/pagination/parts/PaginationJumpDialog.d.ts +0 -8
- package/dist/esm/components/pagination/parts/PaginationJumpDialog.js +0 -143
- package/dist/esm/components/pagination/parts/PaginationLink.d.ts +0 -46
- package/dist/esm/components/pagination/parts/PaginationLink.js +0 -49
- package/dist/esm/components/pagination/parts/PaginationNavButton.d.ts +0 -9
- package/dist/esm/components/pagination/parts/PaginationNavButton.js +0 -31
- package/dist/esm/components/pagination/utils/pagination-window.d.ts +0 -8
- package/dist/esm/components/pagination/utils/pagination-window.js +0 -33
- package/dist/esm/components/payfit-brand/PayFitBrand.js +0 -76
- package/dist/esm/components/payfit-brand/PayFitPreprod.js +0 -57
- package/dist/esm/components/pill/Pill.d.ts +0 -143
- package/dist/esm/components/pill/Pill.js +0 -53
- package/dist/esm/components/popover/Popover.d.ts +0 -56
- package/dist/esm/components/popover/Popover.js +0 -37
- package/dist/esm/components/popover/parts/PopoverContent.d.ts +0 -6
- package/dist/esm/components/popover/parts/PopoverContent.js +0 -9
- package/dist/esm/components/popover/parts/PopoverHeader.d.ts +0 -20
- package/dist/esm/components/popover/parts/PopoverHeader.js +0 -56
- package/dist/esm/components/progress-bar/ProgressBar.js +0 -40
- package/dist/esm/components/radio-button-group/RadioButtonGroup.d.ts +0 -22
- package/dist/esm/components/radio-button-group/RadioButtonGroup.js +0 -23
- package/dist/esm/components/radio-button-group/parts/RadioButton.d.ts +0 -74
- package/dist/esm/components/radio-button-group/parts/RadioButton.js +0 -79
- package/dist/esm/components/radio-button-group/parts/RadioButtonHelper.d.ts +0 -19
- package/dist/esm/components/radio-button-group/parts/RadioButtonHelper.js +0 -19
- package/dist/esm/components/radio-button-group/parts/radio-input-selected.svg.js +0 -5
- package/dist/esm/components/radio-button-group/parts/radio-input-unselected.svg.js +0 -5
- package/dist/esm/components/radio-button-group-field/RadioButtonGroupField.d.ts +0 -47
- package/dist/esm/components/radio-button-group-field/RadioButtonGroupField.js +0 -52
- package/dist/esm/components/search/Search.d.ts +0 -180
- package/dist/esm/components/search/Search.js +0 -164
- package/dist/esm/components/segmented-button-group/SegmentedButtonGroup.d.ts +0 -43
- package/dist/esm/components/segmented-button-group/SegmentedButtonGroup.js +0 -22
- package/dist/esm/components/segmented-button-group/SegmentedButtonGroups.context.d.ts +0 -8
- package/dist/esm/components/segmented-button-group/SegmentedButtonGroups.context.js +0 -15
- package/dist/esm/components/segmented-button-group/parts/ToggleButton.d.ts +0 -47
- package/dist/esm/components/segmented-button-group/parts/ToggleButton.js +0 -122
- package/dist/esm/components/select/Select.d.ts +0 -54
- package/dist/esm/components/select/Select.js +0 -68
- package/dist/esm/components/select/parts/SearchInput.js +0 -39
- package/dist/esm/components/select/parts/SelectButton.js +0 -96
- package/dist/esm/components/select/parts/SelectOption.d.ts +0 -13
- package/dist/esm/components/select/parts/SelectOption.js +0 -64
- package/dist/esm/components/select/parts/SelectOptionHelper.js +0 -22
- package/dist/esm/components/select-field/SelectField.d.ts +0 -50
- package/dist/esm/components/select-field/SelectField.js +0 -65
- package/dist/esm/components/selectable-button-group/SelectableButtonGroup.context.d.ts +0 -2
- package/dist/esm/components/selectable-button-group/SelectableButtonGroup.context.js +0 -5
- package/dist/esm/components/selectable-button-group/SelectableButtonGroup.d.ts +0 -59
- package/dist/esm/components/selectable-button-group/SelectableButtonGroup.js +0 -34
- package/dist/esm/components/selectable-button-group/parts/SelectableButton.d.ts +0 -127
- package/dist/esm/components/selectable-button-group/parts/SelectableButton.js +0 -99
- package/dist/esm/components/selectable-card/internals/Content.d.ts +0 -6
- package/dist/esm/components/selectable-card/internals/Content.js +0 -9
- package/dist/esm/components/selectable-card/internals/Description.d.ts +0 -6
- package/dist/esm/components/selectable-card/internals/Description.js +0 -10
- package/dist/esm/components/selectable-card/internals/Illustration.d.ts +0 -6
- package/dist/esm/components/selectable-card/internals/Illustration.js +0 -9
- package/dist/esm/components/selectable-card/internals/SelectedIndicator.d.ts +0 -6
- package/dist/esm/components/selectable-card/internals/SelectedIndicator.js +0 -9
- package/dist/esm/components/selectable-card/selectable-card-checkbox-group/SelectableCardCheckboxGroup.d.ts +0 -20
- package/dist/esm/components/selectable-card/selectable-card-checkbox-group/SelectableCardCheckboxGroup.js +0 -16
- package/dist/esm/components/selectable-card/selectable-card-checkbox-group/parts/SelectableCardCheckbox.d.ts +0 -47
- package/dist/esm/components/selectable-card/selectable-card-checkbox-group/parts/SelectableCardCheckbox.js +0 -40
- package/dist/esm/components/selectable-card/selectable-card-radio-group/SelectableCardRadioGroup.d.ts +0 -20
- package/dist/esm/components/selectable-card/selectable-card-radio-group/SelectableCardRadioGroup.js +0 -24
- package/dist/esm/components/selectable-card/selectable-card-radio-group/parts/RadioIndicator.d.ts +0 -8
- package/dist/esm/components/selectable-card/selectable-card-radio-group/parts/RadioIndicator.js +0 -67
- package/dist/esm/components/selectable-card/selectable-card-radio-group/parts/SelectableCardRadio.d.ts +0 -50
- package/dist/esm/components/selectable-card/selectable-card-radio-group/parts/SelectableCardRadio.js +0 -36
- package/dist/esm/components/selectable-card/selectableCard.variant.d.ts +0 -35
- package/dist/esm/components/selectable-card/selectableCard.variant.js +0 -24
- package/dist/esm/components/selectable-card-checkbox-group-field/SelectableCardCheckboxGroupField.d.ts +0 -31
- package/dist/esm/components/selectable-card-checkbox-group-field/SelectableCardCheckboxGroupField.js +0 -46
- package/dist/esm/components/selectable-card-radio-group-field/SelectableCardRadioGroupField.d.ts +0 -31
- package/dist/esm/components/selectable-card-radio-group-field/SelectableCardRadioGroupField.js +0 -46
- package/dist/esm/components/side-panel/SidePanel.d.ts +0 -152
- package/dist/esm/components/side-panel/SidePanel.js +0 -67
- package/dist/esm/components/side-panel/parts/SidePanelContent.d.ts +0 -71
- package/dist/esm/components/side-panel/parts/SidePanelContent.js +0 -26
- package/dist/esm/components/side-panel/parts/SidePanelDragIndicator.d.ts +0 -54
- package/dist/esm/components/side-panel/parts/SidePanelDragIndicator.js +0 -67
- package/dist/esm/components/side-panel/parts/SidePanelFooter.d.ts +0 -27
- package/dist/esm/components/side-panel/parts/SidePanelFooter.js +0 -20
- package/dist/esm/components/side-panel/parts/SidePanelHeader.d.ts +0 -75
- package/dist/esm/components/side-panel/parts/SidePanelHeader.js +0 -43
- package/dist/esm/components/spinner/Spinner.js +0 -108
- package/dist/esm/components/table/Table.context.d.ts +0 -59
- package/dist/esm/components/table/Table.context.js +0 -42
- package/dist/esm/components/table/Table.d.ts +0 -93
- package/dist/esm/components/table/Table.js +0 -148
- package/dist/esm/components/table/assets/EmptyStateError.svg.js +0 -5
- package/dist/esm/components/table/assets/EmptyStateNoData.svg.js +0 -5
- package/dist/esm/components/table/hooks/useTableAnnouncer.d.ts +0 -5
- package/dist/esm/components/table/hooks/useTableKeyboardNavigation.d.ts +0 -39
- package/dist/esm/components/table/hooks/useTableKeyboardNavigation.js +0 -157
- package/dist/esm/components/table/parts/TableBody.d.ts +0 -56
- package/dist/esm/components/table/parts/TableBody.js +0 -38
- package/dist/esm/components/table/parts/TableCell.d.ts +0 -80
- package/dist/esm/components/table/parts/TableCell.js +0 -55
- package/dist/esm/components/table/parts/TableColumnHeader.d.ts +0 -89
- package/dist/esm/components/table/parts/TableColumnHeader.js +0 -72
- package/dist/esm/components/table/parts/TableEmptyState.d.ts +0 -177
- package/dist/esm/components/table/parts/TableEmptyState.js +0 -94
- package/dist/esm/components/table/parts/TableHeader.d.ts +0 -29
- package/dist/esm/components/table/parts/TableHeader.js +0 -35
- package/dist/esm/components/table/parts/TablePagination.d.ts +0 -135
- package/dist/esm/components/table/parts/TablePagination.js +0 -139
- package/dist/esm/components/table/parts/TableRow.d.ts +0 -40
- package/dist/esm/components/table/parts/TableRow.js +0 -46
- package/dist/esm/components/tabs/Tabs.js +0 -24
- package/dist/esm/components/tabs/Tabs.variant.d.ts +0 -139
- package/dist/esm/components/tabs/Tabs.variant.js +0 -35
- package/dist/esm/components/tabs/parts/NavigationButton.js +0 -43
- package/dist/esm/components/tabs/parts/Tab.js +0 -18
- package/dist/esm/components/tabs/parts/TabList.js +0 -78
- package/dist/esm/components/text/Text.js +0 -57
- package/dist/esm/components/text/Text.variants.d.ts +0 -673
- package/dist/esm/components/text-area/TextArea.d.ts +0 -220
- package/dist/esm/components/text-area/TextArea.js +0 -163
- package/dist/esm/components/text-field/TextField.js +0 -78
- package/dist/esm/components/toast/UnityToast.d.ts +0 -55
- package/dist/esm/components/toast/UnityToast.js +0 -93
- package/dist/esm/components/toast/parts/ToastAction.js +0 -12
- package/dist/esm/components/toast/parts/ToastContent.js +0 -11
- package/dist/esm/components/toast/parts/ToastTitle.js +0 -9
- package/dist/esm/components/toast/toast.d.ts +0 -44
- package/dist/esm/components/toast/toast.js +0 -39
- package/dist/esm/components/toggle-switch/ToggleSwitch.d.ts +0 -111
- package/dist/esm/components/toggle-switch/ToggleSwitch.js +0 -60
- package/dist/esm/components/toggle-switch-field/ToggleSwitchField.d.ts +0 -73
- package/dist/esm/components/toggle-switch-field/ToggleSwitchField.js +0 -67
- package/dist/esm/components/toggle-switch-group/ToggleSwitchGroup.d.ts +0 -71
- package/dist/esm/components/toggle-switch-group/ToggleSwitchGroup.js +0 -109
- package/dist/esm/components/toggle-switch-group-field/ToggleSwitchGroupField.d.ts +0 -82
- package/dist/esm/components/toggle-switch-group-field/ToggleSwitchGroupField.js +0 -54
- package/dist/esm/components/tooltip/Tooltip.d.ts +0 -7
- package/dist/esm/components/tooltip/Tooltip.js +0 -21
- package/dist/esm/docs/table/mocks/employee-columns.d.ts +0 -3
- package/dist/esm/hooks/use-async-list.d.ts +0 -2
- package/dist/esm/hooks/use-breakpoint-listener.js +0 -14
- package/dist/esm/hooks/use-form.js +0 -32
- package/dist/esm/hooks/use-media-query.js +0 -19
- package/dist/esm/index.d.ts +0 -142
- package/dist/esm/index.js +0 -334
- package/dist/esm/mocks/employees.d.ts +0 -17
- package/dist/esm/providers/router/RouterProvider.d.ts +0 -37
- package/dist/esm/providers/router/RouterProvider.js +0 -18
- package/dist/esm/providers/router/integrations/UnityReactRouterV5Provider.d.ts +0 -6
- package/dist/esm/providers/router/integrations/UnityReactRouterV5Provider.js +0 -28
- package/dist/esm/types/utils.d.ts +0 -1
- /package/dist/cjs/components/actionable/{Actionable.cjs → Actionable.js} +0 -0
- /package/dist/cjs/components/alert/parts/{AlertActions.cjs → AlertActions.js} +0 -0
- /package/dist/{esm → cjs}/components/alert/parts/AlertContent.d.ts +0 -0
- /package/dist/{esm → cjs}/components/alert/parts/AlertTitle.d.ts +0 -0
- /package/dist/{esm → cjs}/components/anchor/Anchor.d.ts +0 -0
- /package/dist/cjs/components/anchor/{Anchor.cjs → Anchor.js} +0 -0
- /package/dist/{esm → cjs}/components/app-layout/AppLayout.d.ts +0 -0
- /package/dist/{esm → cjs}/components/app-menu/AppMenu.d.ts +0 -0
- /package/dist/{esm → cjs}/components/app-menu/parts/AppMenu.context.d.ts +0 -0
- /package/dist/cjs/components/app-menu/parts/{AppMenu.context.cjs → AppMenu.context.js} +0 -0
- /package/dist/{esm → cjs}/components/app-menu/parts/AppMenuFooter.d.ts +0 -0
- /package/dist/{esm → cjs}/components/app-menu/parts/AppMenuHeader.d.ts +0 -0
- /package/dist/{esm → cjs}/components/app-menu/parts/AppMenuNavContent.d.ts +0 -0
- /package/dist/{esm → cjs}/components/avatar/Avatar.context.d.ts +0 -0
- /package/dist/cjs/components/avatar/{Avatar.context.cjs → Avatar.context.js} +0 -0
- /package/dist/cjs/components/avatar/{Avatar.variants.cjs → Avatar.variants.js} +0 -0
- /package/dist/{esm → cjs}/components/avatar/parts/AvatarImage.d.ts +0 -0
- /package/dist/{esm → cjs}/components/avatar/parts/AvatarPair.d.ts +0 -0
- /package/dist/{esm → cjs}/components/avatar/utils.d.ts +0 -0
- /package/dist/cjs/components/avatar/{utils.cjs → utils.js} +0 -0
- /package/dist/{esm → cjs}/components/breadcrumbs/Breadcrumbs.context.d.ts +0 -0
- /package/dist/cjs/components/breadcrumbs/{Breadcrumbs.context.cjs → Breadcrumbs.context.js} +0 -0
- /package/dist/{esm → cjs}/components/breadcrumbs/Breadcrumbs.d.ts +0 -0
- /package/dist/cjs/components/breadcrumbs/{Breadcrumbs.variant.cjs → Breadcrumbs.variant.js} +0 -0
- /package/dist/{esm → cjs}/components/breadcrumbs/parts/Breadcrumb.d.ts +0 -0
- /package/dist/{esm → cjs}/components/button/Button.d.ts +0 -0
- /package/dist/{esm → cjs}/components/checkbox/parts/CheckboxIndicator.d.ts +0 -0
- /package/dist/{esm → cjs}/components/checkbox-field/CheckboxField.d.ts +0 -0
- /package/dist/{esm → cjs}/components/checkbox-group-field/CheckboxGroupField.d.ts +0 -0
- /package/dist/{esm → cjs}/components/date-picker/DatePicker.d.ts +0 -0
- /package/dist/{esm → cjs}/components/date-picker/hooks/useMonthsList.d.ts +0 -0
- /package/dist/cjs/components/date-picker/hooks/{useMonthsList.cjs → useMonthsList.js} +0 -0
- /package/dist/{esm → cjs}/components/date-picker/hooks/useYearsList.d.ts +0 -0
- /package/dist/cjs/components/date-picker/hooks/{useYearsList.cjs → useYearsList.js} +0 -0
- /package/dist/{esm → cjs}/components/date-picker/parts/DateCalendar.d.ts +0 -0
- /package/dist/{esm → cjs}/components/date-picker/parts/DateSegmentSelect.d.ts +0 -0
- /package/dist/{esm → cjs}/components/date-picker/utils.d.ts +0 -0
- /package/dist/{esm → cjs}/components/date-picker-field/DatePickerField.d.ts +0 -0
- /package/dist/{esm → cjs}/components/dialog/parts/DialogActions.d.ts +0 -0
- /package/dist/{esm → cjs}/components/dialog/parts/DialogContent.d.ts +0 -0
- /package/dist/{esm → cjs}/components/dialog/parts/DialogTitle.d.ts +0 -0
- /package/dist/{esm → cjs}/components/flex/Flex.d.ts +0 -0
- /package/dist/{esm → cjs}/components/flex/Flex.variants.d.ts +0 -0
- /package/dist/cjs/components/flex/{Flex.variants.cjs → Flex.variants.js} +0 -0
- /package/dist/{esm → cjs}/components/flex/FlexItem.d.ts +0 -0
- /package/dist/cjs/components/form/{Form.context.cjs → Form.context.js} +0 -0
- /package/dist/{esm → cjs}/components/form/Form.d.ts +0 -0
- /package/dist/{esm → cjs}/components/form-field/FormField.context.d.ts +0 -0
- /package/dist/cjs/components/form-field/{FormField.context.cjs → FormField.context.js} +0 -0
- /package/dist/{esm → cjs}/components/form-field/FormField.d.ts +0 -0
- /package/dist/{esm → cjs}/components/form-field/parts/FormContextualLink.d.ts +0 -0
- /package/dist/{esm → cjs}/components/form-field/parts/FormFeedbackText.d.ts +0 -0
- /package/dist/{esm → cjs}/components/form-field/parts/FormHelperText.d.ts +0 -0
- /package/dist/{esm → cjs}/components/form-field/parts/FormLabel.d.ts +0 -0
- /package/dist/{esm → cjs}/components/form-field/utils/isFieldRequired.d.ts +0 -0
- /package/dist/cjs/components/form-field/utils/{isFieldRequired.cjs → isFieldRequired.js} +0 -0
- /package/dist/{esm → cjs}/components/grid/Grid.d.ts +0 -0
- /package/dist/{esm → cjs}/components/grid/Grid.variants.d.ts +0 -0
- /package/dist/cjs/components/grid/{Grid.variants.cjs → Grid.variants.js} +0 -0
- /package/dist/{esm → cjs}/components/grid/GridItem.d.ts +0 -0
- /package/dist/{esm → cjs}/components/icon-button/IconButton.d.ts +0 -0
- /package/dist/{esm → cjs}/components/input/Input.d.ts +0 -0
- /package/dist/{esm → cjs}/components/label/Label.d.ts +0 -0
- /package/dist/cjs/components/link/{Link.variants.cjs → Link.variants.js} +0 -0
- /package/dist/{esm → cjs}/components/link/utils.d.ts +0 -0
- /package/dist/cjs/components/link/{utils.cjs → utils.js} +0 -0
- /package/dist/{esm → cjs}/components/menu/Menu.d.ts +0 -0
- /package/dist/cjs/components/menu/{Menu.cjs → Menu.js} +0 -0
- /package/dist/{esm → cjs}/components/menu/parts/MenuContent.d.ts +0 -0
- /package/dist/{esm → cjs}/components/menu/parts/MenuHeader.d.ts +0 -0
- /package/dist/{esm → cjs}/components/menu/parts/MenuItem.d.ts +0 -0
- /package/dist/cjs/components/menu/parts/{MenuItem.cjs → MenuItem.js} +0 -0
- /package/dist/{esm → cjs}/components/menu/parts/MenuSeparator.d.ts +0 -0
- /package/dist/cjs/components/menu/parts/{MenuSeparator.cjs → MenuSeparator.js} +0 -0
- /package/dist/{esm → cjs}/components/menu/parts/MenuTrigger.d.ts +0 -0
- /package/dist/cjs/components/menu/parts/{MenuTrigger.cjs → MenuTrigger.js} +0 -0
- /package/dist/{esm → cjs}/components/nav/Nav.d.ts +0 -0
- /package/dist/{esm → cjs}/components/nav/parts/NavGroup.d.ts +0 -0
- /package/dist/{esm → cjs}/components/payfit-brand/PayFitBrand.d.ts +0 -0
- /package/dist/{esm → cjs}/components/payfit-brand/PayFitPreprod.d.ts +0 -0
- /package/dist/{esm → cjs}/components/progress-bar/ProgressBar.d.ts +0 -0
- /package/dist/{esm → cjs}/components/select/parts/SearchInput.d.ts +0 -0
- /package/dist/{esm → cjs}/components/select/parts/SelectButton.d.ts +0 -0
- /package/dist/{esm → cjs}/components/select/parts/SelectOption.context.d.ts +0 -0
- /package/dist/cjs/components/select/parts/{SelectOption.context.cjs → SelectOption.context.js} +0 -0
- /package/dist/{esm → cjs}/components/select/parts/SelectOptionGroup.d.ts +0 -0
- /package/dist/cjs/components/select/parts/{SelectOptionGroup.cjs → SelectOptionGroup.js} +0 -0
- /package/dist/{esm → cjs}/components/select/parts/SelectOptionHelper.d.ts +0 -0
- /package/dist/{esm → cjs}/components/spinner/Spinner.d.ts +0 -0
- /package/dist/{esm → cjs}/components/spinner/dynamic-content.d.ts +0 -0
- /package/dist/{esm → cjs}/components/stepper/Stepper.context.d.ts +0 -0
- /package/dist/{esm → cjs}/components/stepper/Stepper.d.ts +0 -0
- /package/dist/{esm → cjs}/components/stepper/hooks/useStepper.d.ts +0 -0
- /package/dist/{esm → cjs}/components/stepper/parts/Step.d.ts +0 -0
- /package/dist/{esm → cjs}/components/tabs/Tabs.context.d.ts +0 -0
- /package/dist/cjs/components/tabs/{Tabs.context.cjs → Tabs.context.js} +0 -0
- /package/dist/{esm → cjs}/components/tabs/Tabs.d.ts +0 -0
- /package/dist/{esm → cjs}/components/tabs/parts/NavigationButton.d.ts +0 -0
- /package/dist/{esm → cjs}/components/tabs/parts/Tab.d.ts +0 -0
- /package/dist/{esm → cjs}/components/tabs/parts/TabList.d.ts +0 -0
- /package/dist/{esm → cjs}/components/tabs/parts/TabPanel.d.ts +0 -0
- /package/dist/cjs/components/tabs/parts/{TabPanel.cjs → TabPanel.js} +0 -0
- /package/dist/{esm → cjs}/components/text/Text.d.ts +0 -0
- /package/dist/cjs/components/text/{Text.variants.cjs → Text.variants.js} +0 -0
- /package/dist/{esm → cjs}/components/text-field/TextField.d.ts +0 -0
- /package/dist/{esm → cjs}/components/toast/Toast.context.d.ts +0 -0
- /package/dist/cjs/components/toast/{Toast.context.cjs → Toast.context.js} +0 -0
- /package/dist/{esm → cjs}/components/toast/ToastManager.d.ts +0 -0
- /package/dist/cjs/components/toast/{ToastManager.cjs → ToastManager.js} +0 -0
- /package/dist/{esm → cjs}/components/toast/parts/ToastAction.d.ts +0 -0
- /package/dist/{esm → cjs}/components/toast/parts/ToastContent.d.ts +0 -0
- /package/dist/{esm → cjs}/components/toast/parts/ToastTitle.d.ts +0 -0
- /package/dist/{esm → cjs}/docs/blocks/Cards.d.ts +0 -0
- /package/dist/{esm → cjs}/hooks/use-breakpoint-listener.d.ts +0 -0
- /package/dist/{esm → cjs}/hooks/use-form.d.ts +0 -0
- /package/dist/{esm → cjs}/hooks/use-form.types.d.ts +0 -0
- /package/dist/{esm → cjs}/hooks/use-id.d.ts +0 -0
- /package/dist/cjs/hooks/{use-id.cjs → use-id.js} +0 -0
- /package/dist/{esm → cjs}/hooks/use-media-query.d.ts +0 -0
- /package/dist/{esm → cjs}/hooks/use-resizable.d.ts +0 -0
- /package/dist/cjs/hooks/{use-resizable.cjs → use-resizable.js} +0 -0
- /package/dist/cjs/providers/router/{RouterProvider.cjs → RouterProvider.js} +0 -0
- /package/dist/{esm → cjs}/types/DataAttributes.d.ts +0 -0
- /package/dist/{esm → cjs}/utils/platform.d.ts +0 -0
- /package/dist/cjs/utils/{platform.cjs → platform.js} +0 -0
- /package/dist/esm/components/actionable/{Actionable.js → Actionable.mjs} +0 -0
- /package/dist/esm/components/alert/parts/{AlertActions.js → AlertActions.mjs} +0 -0
- /package/dist/{cjs/components/anchor/Anchor.d.cts → esm/components/anchor/Anchor.d.mts} +0 -0
- /package/dist/esm/components/anchor/{Anchor.js → Anchor.mjs} +0 -0
- /package/dist/{cjs/components/app-layout/AppLayout.d.cts → esm/components/app-layout/AppLayout.d.mts} +0 -0
- /package/dist/{cjs/components/app-menu/AppMenu.d.cts → esm/components/app-menu/AppMenu.d.mts} +0 -0
- /package/dist/{cjs/components/app-menu/parts/AppMenu.context.d.cts → esm/components/app-menu/parts/AppMenu.context.d.mts} +0 -0
- /package/dist/esm/components/app-menu/parts/{AppMenu.context.js → AppMenu.context.mjs} +0 -0
- /package/dist/{cjs/components/app-menu/parts/AppMenuHeader.d.cts → esm/components/app-menu/parts/AppMenuHeader.d.mts} +0 -0
- /package/dist/{cjs/components/app-menu/parts/AppMenuNavContent.d.cts → esm/components/app-menu/parts/AppMenuNavContent.d.mts} +0 -0
- /package/dist/{cjs/components/avatar/Avatar.context.d.cts → esm/components/avatar/Avatar.context.d.mts} +0 -0
- /package/dist/esm/components/avatar/{Avatar.context.js → Avatar.context.mjs} +0 -0
- /package/dist/esm/components/avatar/{Avatar.variants.js → Avatar.variants.mjs} +0 -0
- /package/dist/{cjs/components/avatar/parts/AvatarImage.d.cts → esm/components/avatar/parts/AvatarImage.d.mts} +0 -0
- /package/dist/{cjs/components/avatar/utils.d.cts → esm/components/avatar/utils.d.mts} +0 -0
- /package/dist/esm/components/avatar/{utils.js → utils.mjs} +0 -0
- /package/dist/esm/components/breadcrumbs/{Breadcrumbs.context.js → Breadcrumbs.context.mjs} +0 -0
- /package/dist/esm/components/breadcrumbs/{Breadcrumbs.variant.js → Breadcrumbs.variant.mjs} +0 -0
- /package/dist/{cjs/components/breadcrumbs/parts/Breadcrumb.d.cts → esm/components/breadcrumbs/parts/Breadcrumb.d.mts} +0 -0
- /package/dist/{cjs/components/checkbox/parts/CheckboxIndicator.d.cts → esm/components/checkbox/parts/CheckboxIndicator.d.mts} +0 -0
- /package/dist/{cjs/components/date-picker/DatePicker.d.cts → esm/components/date-picker/DatePicker.d.mts} +0 -0
- /package/dist/{cjs/components/date-picker/hooks/useMonthsList.d.cts → esm/components/date-picker/hooks/useMonthsList.d.mts} +0 -0
- /package/dist/esm/components/date-picker/hooks/{useMonthsList.js → useMonthsList.mjs} +0 -0
- /package/dist/{cjs/components/date-picker/hooks/useYearsList.d.cts → esm/components/date-picker/hooks/useYearsList.d.mts} +0 -0
- /package/dist/esm/components/date-picker/hooks/{useYearsList.js → useYearsList.mjs} +0 -0
- /package/dist/{cjs/components/date-picker/parts/DateCalendar.d.cts → esm/components/date-picker/parts/DateCalendar.d.mts} +0 -0
- /package/dist/{cjs/components/date-picker/parts/DateSegmentSelect.d.cts → esm/components/date-picker/parts/DateSegmentSelect.d.mts} +0 -0
- /package/dist/{cjs/components/date-picker/utils.d.cts → esm/components/date-picker/utils.d.mts} +0 -0
- /package/dist/{cjs/components/dialog/parts/DialogActions.d.cts → esm/components/dialog/parts/DialogActions.d.mts} +0 -0
- /package/dist/{cjs/components/dialog/parts/DialogContent.d.cts → esm/components/dialog/parts/DialogContent.d.mts} +0 -0
- /package/dist/{cjs/components/dialog/parts/DialogTitle.d.cts → esm/components/dialog/parts/DialogTitle.d.mts} +0 -0
- /package/dist/{cjs/components/flex/Flex.variants.d.cts → esm/components/flex/Flex.variants.d.mts} +0 -0
- /package/dist/esm/components/flex/{Flex.variants.js → Flex.variants.mjs} +0 -0
- /package/dist/esm/components/form/{Form.context.js → Form.context.mjs} +0 -0
- /package/dist/{cjs/components/form-field/FormField.context.d.cts → esm/components/form-field/FormField.context.d.mts} +0 -0
- /package/dist/esm/components/form-field/{FormField.context.js → FormField.context.mjs} +0 -0
- /package/dist/{cjs/components/form-field/FormField.d.cts → esm/components/form-field/FormField.d.mts} +0 -0
- /package/dist/{cjs/components/form-field/parts/FormContextualLink.d.cts → esm/components/form-field/parts/FormContextualLink.d.mts} +0 -0
- /package/dist/{cjs/components/form-field/parts/FormFeedbackText.d.cts → esm/components/form-field/parts/FormFeedbackText.d.mts} +0 -0
- /package/dist/{cjs/components/form-field/parts/FormHelperText.d.cts → esm/components/form-field/parts/FormHelperText.d.mts} +0 -0
- /package/dist/{cjs/components/form-field/utils/isFieldRequired.d.cts → esm/components/form-field/utils/isFieldRequired.d.mts} +0 -0
- /package/dist/esm/components/form-field/utils/{isFieldRequired.js → isFieldRequired.mjs} +0 -0
- /package/dist/{cjs/components/grid/Grid.variants.d.cts → esm/components/grid/Grid.variants.d.mts} +0 -0
- /package/dist/esm/components/grid/{Grid.variants.js → Grid.variants.mjs} +0 -0
- /package/dist/{cjs/components/input/Input.d.cts → esm/components/input/Input.d.mts} +0 -0
- /package/dist/{cjs/components/label/Label.d.cts → esm/components/label/Label.d.mts} +0 -0
- /package/dist/esm/components/link/{Link.variants.js → Link.variants.mjs} +0 -0
- /package/dist/{cjs/components/link/utils.d.cts → esm/components/link/utils.d.mts} +0 -0
- /package/dist/esm/components/link/{utils.js → utils.mjs} +0 -0
- /package/dist/{cjs/components/menu/Menu.d.cts → esm/components/menu/Menu.d.mts} +0 -0
- /package/dist/esm/components/menu/{Menu.js → Menu.mjs} +0 -0
- /package/dist/{cjs/components/menu/parts/MenuContent.d.cts → esm/components/menu/parts/MenuContent.d.mts} +0 -0
- /package/dist/{cjs/components/menu/parts/MenuHeader.d.cts → esm/components/menu/parts/MenuHeader.d.mts} +0 -0
- /package/dist/esm/components/menu/parts/{MenuItem.js → MenuItem.mjs} +0 -0
- /package/dist/{cjs/components/menu/parts/MenuSeparator.d.cts → esm/components/menu/parts/MenuSeparator.d.mts} +0 -0
- /package/dist/esm/components/menu/parts/{MenuSeparator.js → MenuSeparator.mjs} +0 -0
- /package/dist/{cjs/components/menu/parts/MenuTrigger.d.cts → esm/components/menu/parts/MenuTrigger.d.mts} +0 -0
- /package/dist/esm/components/menu/parts/{MenuTrigger.js → MenuTrigger.mjs} +0 -0
- /package/dist/{cjs/components/nav/Nav.d.cts → esm/components/nav/Nav.d.mts} +0 -0
- /package/dist/{cjs/components/payfit-brand/PayFitBrand.d.cts → esm/components/payfit-brand/PayFitBrand.d.mts} +0 -0
- /package/dist/{cjs/components/progress-bar/ProgressBar.d.cts → esm/components/progress-bar/ProgressBar.d.mts} +0 -0
- /package/dist/{cjs/components/select/parts/SearchInput.d.cts → esm/components/select/parts/SearchInput.d.mts} +0 -0
- /package/dist/{cjs/components/select/parts/SelectButton.d.cts → esm/components/select/parts/SelectButton.d.mts} +0 -0
- /package/dist/{cjs/components/select/parts/SelectOption.context.d.cts → esm/components/select/parts/SelectOption.context.d.mts} +0 -0
- /package/dist/esm/components/select/parts/{SelectOption.context.js → SelectOption.context.mjs} +0 -0
- /package/dist/{cjs/components/select/parts/SelectOptionGroup.d.cts → esm/components/select/parts/SelectOptionGroup.d.mts} +0 -0
- /package/dist/esm/components/select/parts/{SelectOptionGroup.js → SelectOptionGroup.mjs} +0 -0
- /package/dist/{cjs/components/select/parts/SelectOptionHelper.d.cts → esm/components/select/parts/SelectOptionHelper.d.mts} +0 -0
- /package/dist/{cjs/components/spinner/Spinner.d.cts → esm/components/spinner/Spinner.d.mts} +0 -0
- /package/dist/{cjs/components/spinner/dynamic-content.d.cts → esm/components/spinner/dynamic-content.d.mts} +0 -0
- /package/dist/{cjs/components/stepper/Stepper.context.d.cts → esm/components/stepper/Stepper.context.d.mts} +0 -0
- /package/dist/{cjs/components/stepper/Stepper.d.cts → esm/components/stepper/Stepper.d.mts} +0 -0
- /package/dist/{cjs/components/stepper/hooks/useStepper.d.cts → esm/components/stepper/hooks/useStepper.d.mts} +0 -0
- /package/dist/{cjs/components/stepper/parts/Step.d.cts → esm/components/stepper/parts/Step.d.mts} +0 -0
- /package/dist/esm/components/tabs/{Tabs.context.js → Tabs.context.mjs} +0 -0
- /package/dist/{cjs/components/tabs/parts/NavigationButton.d.cts → esm/components/tabs/parts/NavigationButton.d.mts} +0 -0
- /package/dist/{cjs/components/tabs/parts/Tab.d.cts → esm/components/tabs/parts/Tab.d.mts} +0 -0
- /package/dist/{cjs/components/tabs/parts/TabList.d.cts → esm/components/tabs/parts/TabList.d.mts} +0 -0
- /package/dist/{cjs/components/tabs/parts/TabPanel.d.cts → esm/components/tabs/parts/TabPanel.d.mts} +0 -0
- /package/dist/esm/components/tabs/parts/{TabPanel.js → TabPanel.mjs} +0 -0
- /package/dist/esm/components/text/{Text.variants.js → Text.variants.mjs} +0 -0
- /package/dist/{cjs/components/toast/Toast.context.d.cts → esm/components/toast/Toast.context.d.mts} +0 -0
- /package/dist/esm/components/toast/{Toast.context.js → Toast.context.mjs} +0 -0
- /package/dist/esm/components/toast/{ToastManager.js → ToastManager.mjs} +0 -0
- /package/dist/{cjs/components/toast/parts/ToastAction.d.cts → esm/components/toast/parts/ToastAction.d.mts} +0 -0
- /package/dist/{cjs/components/toast/parts/ToastContent.d.cts → esm/components/toast/parts/ToastContent.d.mts} +0 -0
- /package/dist/{cjs/components/toast/parts/ToastTitle.d.cts → esm/components/toast/parts/ToastTitle.d.mts} +0 -0
- /package/dist/{cjs/docs/blocks/Cards.d.cts → esm/docs/blocks/Cards.d.mts} +0 -0
- /package/dist/{cjs/hooks/use-breakpoint-listener.d.cts → esm/hooks/use-breakpoint-listener.d.mts} +0 -0
- /package/dist/{cjs/hooks/use-form.types.d.cts → esm/hooks/use-form.types.d.mts} +0 -0
- /package/dist/{cjs/hooks/use-id.d.cts → esm/hooks/use-id.d.mts} +0 -0
- /package/dist/esm/hooks/{use-id.js → use-id.mjs} +0 -0
- /package/dist/{cjs/hooks/use-media-query.d.cts → esm/hooks/use-media-query.d.mts} +0 -0
- /package/dist/{cjs/hooks/use-resizable.d.cts → esm/hooks/use-resizable.d.mts} +0 -0
- /package/dist/esm/hooks/{use-resizable.js → use-resizable.mjs} +0 -0
- /package/dist/{cjs/types/DataAttributes.d.cts → esm/types/DataAttributes.d.mts} +0 -0
- /package/dist/{cjs/utils/platform.d.cts → esm/utils/platform.d.mts} +0 -0
- /package/dist/esm/utils/{platform.js → platform.mjs} +0 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { jsx as n } from "react/jsx-runtime";
|
|
2
|
+
import { Text as r } from "../../text/Text.mjs";
|
|
3
|
+
import { useToastContext as e } from "../Toast.context.mjs";
|
|
4
|
+
function a({ children: t }) {
|
|
5
|
+
const { inline: o } = e();
|
|
6
|
+
return o ? /* @__PURE__ */ n(r, { variant: "body", className: "uy-mb-100", children: t }) : null;
|
|
7
|
+
}
|
|
8
|
+
a.displayName = "ToastContent";
|
|
9
|
+
export {
|
|
10
|
+
a as ToastContent
|
|
11
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { jsx as o } from "react/jsx-runtime";
|
|
2
|
+
import { Text as a } from "../../text/Text.mjs";
|
|
3
|
+
function e({ children: t }) {
|
|
4
|
+
return /* @__PURE__ */ o(a, { asElement: "h4", variant: "bodyStrong", className: "uy-mt-100", children: t });
|
|
5
|
+
}
|
|
6
|
+
e.displayName = "ToastTitle";
|
|
7
|
+
export {
|
|
8
|
+
e as ToastTitle
|
|
9
|
+
};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
import { ToastActionProps } from './parts/ToastAction.mjs';
|
|
3
|
+
import { UnityToastProps } from './UnityToast.mjs';
|
|
4
|
+
interface Base {
|
|
5
|
+
title: ReactNode;
|
|
6
|
+
content?: ReactNode;
|
|
7
|
+
}
|
|
8
|
+
interface WithAction {
|
|
9
|
+
action: ReactNode;
|
|
10
|
+
actionOnPress: ToastActionProps['onPress'];
|
|
11
|
+
}
|
|
12
|
+
interface SuccessParams extends Base {
|
|
13
|
+
variant: Extract<UnityToastProps['variant'], 'success'>;
|
|
14
|
+
duration?: number;
|
|
15
|
+
action?: never;
|
|
16
|
+
actionOnPress?: never;
|
|
17
|
+
}
|
|
18
|
+
interface ErrorParams extends Base {
|
|
19
|
+
variant: Extract<UnityToastProps['variant'], 'error'>;
|
|
20
|
+
duration?: never;
|
|
21
|
+
action?: never;
|
|
22
|
+
actionOnPress?: never;
|
|
23
|
+
}
|
|
24
|
+
interface SuccessParamsWithAction extends Base, WithAction {
|
|
25
|
+
variant: Extract<UnityToastProps['variant'], 'success'>;
|
|
26
|
+
duration?: number;
|
|
27
|
+
}
|
|
28
|
+
interface ErrorParamsWithAction extends Base, WithAction {
|
|
29
|
+
variant: Extract<UnityToastProps['variant'], 'error'>;
|
|
30
|
+
duration?: never;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* creates a toast
|
|
34
|
+
* @param prop the object which contains all the properties
|
|
35
|
+
* @param prop.title the toast title
|
|
36
|
+
* @param prop.content (optional) the content of the toast
|
|
37
|
+
* @param prop.variant the toast type
|
|
38
|
+
* @param prop.action (optional) the label of the action
|
|
39
|
+
* @param prop.actionOnPress (optional) the function to trigger when click on the action
|
|
40
|
+
* @param prop.duration (optional) to override the toast duration
|
|
41
|
+
*/
|
|
42
|
+
declare function toast({ title, content, variant, action, actionOnPress, duration, }: SuccessParams | ErrorParams | SuccessParamsWithAction | ErrorParamsWithAction): string;
|
|
43
|
+
export { toast };
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { jsxs as d, jsx as r } from "react/jsx-runtime";
|
|
2
|
+
import m from "react-hot-toast";
|
|
3
|
+
import { ToastAction as f } from "./parts/ToastAction.mjs";
|
|
4
|
+
import { ToastContent as p } from "./parts/ToastContent.mjs";
|
|
5
|
+
import { ToastTitle as T } from "./parts/ToastTitle.mjs";
|
|
6
|
+
import { TOAST_CONFIG as u } from "./ToastManager.mjs";
|
|
7
|
+
import { UnityToast as a } from "./UnityToast.mjs";
|
|
8
|
+
function y({
|
|
9
|
+
title: s,
|
|
10
|
+
content: o,
|
|
11
|
+
variant: i,
|
|
12
|
+
action: t,
|
|
13
|
+
actionOnPress: n,
|
|
14
|
+
duration: l
|
|
15
|
+
}) {
|
|
16
|
+
return m.custom(
|
|
17
|
+
(e) => /* @__PURE__ */ d(
|
|
18
|
+
a,
|
|
19
|
+
{
|
|
20
|
+
onClose: () => {
|
|
21
|
+
m.dismiss(e.id);
|
|
22
|
+
},
|
|
23
|
+
variant: i,
|
|
24
|
+
inline: !!o,
|
|
25
|
+
children: [
|
|
26
|
+
/* @__PURE__ */ r(T, { children: s }),
|
|
27
|
+
o ? /* @__PURE__ */ r(p, { children: o }) : null,
|
|
28
|
+
t ? /* @__PURE__ */ r(f, { onPress: n, children: t }) : null
|
|
29
|
+
]
|
|
30
|
+
}
|
|
31
|
+
),
|
|
32
|
+
{ duration: l ?? u[i].duration }
|
|
33
|
+
);
|
|
34
|
+
}
|
|
35
|
+
export {
|
|
36
|
+
y as toast
|
|
37
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { jsxs as n, jsx as e } from "react/jsx-runtime";
|
|
2
|
+
import { Button as p, Link as y, TooltipTrigger as a, Tooltip as r } from "react-aria-components";
|
|
3
|
+
import { Actionable as u } from "../actionable/Actionable.mjs";
|
|
4
|
+
import { Button as i } from "../button/Button.mjs";
|
|
5
|
+
import { Link as l } from "../link/Link.mjs";
|
|
6
|
+
const s = (o) => o.type === i || o.type === p;
|
|
7
|
+
function x({ title: o, children: t }) {
|
|
8
|
+
if (t.type !== i && t.type !== p && t.type !== l && t.type !== y && t.type !== u)
|
|
9
|
+
throw new Error(
|
|
10
|
+
"The tooltip can be applied only to Button and Link components, if you want to use it with something else, be sure to wrap it with a Actionable component"
|
|
11
|
+
);
|
|
12
|
+
return /* @__PURE__ */ n(a, { delay: 500, closeDelay: 1500, children: [
|
|
13
|
+
t,
|
|
14
|
+
/* @__PURE__ */ e(
|
|
15
|
+
r,
|
|
16
|
+
{
|
|
17
|
+
offset: s(t) ? 4 : 8,
|
|
18
|
+
className: "uy-inline-flex uy-rounded-50 uy-pl-100 uy-pr-100 uy-pt-50 uy-pb-50 uy-bg-grayscale-L12 uy-max-w-[300px]",
|
|
19
|
+
children: /* @__PURE__ */ e("p", { className: "uy-typography-body-small uy-text-content-inverted uy-overflow-hidden uy-text-ellipsis uy-line-clamp-3", children: o })
|
|
20
|
+
}
|
|
21
|
+
)
|
|
22
|
+
] });
|
|
23
|
+
}
|
|
24
|
+
export {
|
|
25
|
+
x as default
|
|
26
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { useMediaQuery as r } from "./use-media-query.mjs";
|
|
2
|
+
const o = (e) => {
|
|
3
|
+
const t = getComputedStyle(document.documentElement).getPropertyValue(
|
|
4
|
+
`--uy-screens-${e}`
|
|
5
|
+
);
|
|
6
|
+
return parseInt(t.replace("px", ""), 10);
|
|
7
|
+
}, n = (e) => `(min-width: ${o(e)}px)`;
|
|
8
|
+
function c() {
|
|
9
|
+
const e = r(n("xl")), t = r(n("lg")), s = r(n("md")), u = r(n("sm"));
|
|
10
|
+
return e ? "xl" : t ? "lg" : s ? "md" : u ? "sm" : "xs";
|
|
11
|
+
}
|
|
12
|
+
export {
|
|
13
|
+
c as useBreakpointListener
|
|
14
|
+
};
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { JSX, PropsWithChildren } from 'react';
|
|
2
|
+
import { UseFormProps as UseHookFormProps, UseFormReturn as UseHookFormReturn } from 'react-hook-form';
|
|
3
|
+
import { infer as ZodInfer } from 'zod';
|
|
4
|
+
import { FormFieldProps } from '../components/form-field/FormField.mjs';
|
|
5
|
+
import { FormProps } from '../components/form/Form.mjs';
|
|
6
|
+
import { Schema } from './use-form.types.mjs';
|
|
7
|
+
export type UseUnityFormReturn<TSchema extends Schema> = {
|
|
8
|
+
methods: UseHookFormReturn<ZodInfer<TSchema>>;
|
|
9
|
+
Form: (props: Omit<FormProps<TSchema>, 'form' | 'schema'>) => JSX.Element;
|
|
10
|
+
FormField: (props: PropsWithChildren<Omit<FormFieldProps<ZodInfer<TSchema>>, 'control'>>) => JSX.Element;
|
|
11
|
+
};
|
|
12
|
+
/**
|
|
13
|
+
* A hook to create `Form` and `FormField` components that are bound to a specific schema definition and form controller. The resulting components will have full type-safety based on the provided schema type.
|
|
14
|
+
* @param `schema` a Zod schema definition to validate the form data, {@link [Zod](https://zod.dev)}
|
|
15
|
+
* @param `options` the options to pass to the `react-hook-form` hook. See the official documentation for more details. {@link [React Hook Form](https://react-hook-form.com/api/useform)}
|
|
16
|
+
* @returns an object containing the bounded `Form` and `FormField` components, as well as the form controller methods {@link UseUnityFormReturn}
|
|
17
|
+
* @example
|
|
18
|
+
* ```tsx
|
|
19
|
+
* import { useUnityForm } from '@payfit/unity-components'
|
|
20
|
+
* import * as z from 'zod'
|
|
21
|
+
*
|
|
22
|
+
* const schema = z.object({
|
|
23
|
+
* foo: z.string().min(3),
|
|
24
|
+
* bar: z.string().optional(),
|
|
25
|
+
* })
|
|
26
|
+
*
|
|
27
|
+
* function DemoForm() {
|
|
28
|
+
* const { Form, FormField } = useUnityForm(schema, {
|
|
29
|
+
* defaultValues: { foo: 'Hello world', bar: '' },
|
|
30
|
+
* })
|
|
31
|
+
*
|
|
32
|
+
* return (
|
|
33
|
+
* <Form action={() => ...}>
|
|
34
|
+
* <FormField name="foo" type="text">
|
|
35
|
+
* // ...
|
|
36
|
+
* </FormField>
|
|
37
|
+
* // Type Error: "baz" is not assignable to "foo" | "bar".
|
|
38
|
+
* <FormField name="baz" type="text">
|
|
39
|
+
* // ...
|
|
40
|
+
* </FormField>
|
|
41
|
+
* </Form>
|
|
42
|
+
* )
|
|
43
|
+
* }
|
|
44
|
+
* ```
|
|
45
|
+
* @remarks
|
|
46
|
+
* [API]() • [Demo]()
|
|
47
|
+
*/
|
|
48
|
+
export declare function useUnityForm<TSchema extends Schema>(schema: TSchema, options?: Omit<UseHookFormProps<ZodInfer<TSchema>>, 'resolver'>): UseUnityFormReturn<TSchema>;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { jsx as t } from "react/jsx-runtime";
|
|
2
|
+
import { useMemo as n } from "react";
|
|
3
|
+
import { zodResolver as l } from "@hookform/resolvers/zod";
|
|
4
|
+
import { useForm as c } from "react-hook-form";
|
|
5
|
+
import { FormField as u } from "../components/form-field/FormField.mjs";
|
|
6
|
+
import { Form as s } from "../components/form/Form.mjs";
|
|
7
|
+
function v(m, i = {
|
|
8
|
+
mode: "onTouched",
|
|
9
|
+
reValidateMode: "onChange"
|
|
10
|
+
}) {
|
|
11
|
+
const r = c({
|
|
12
|
+
...i,
|
|
13
|
+
resolver: l(m)
|
|
14
|
+
}), d = n(() => {
|
|
15
|
+
const o = (e) => /* @__PURE__ */ t(s, { ...e, form: r, schema: m, children: e.children });
|
|
16
|
+
return o.displayName = "FormWithSchema", o;
|
|
17
|
+
}, [r, m]), F = n(() => {
|
|
18
|
+
const o = (e) => (
|
|
19
|
+
// @ts-expect-error: REACT-18-MIGRATION
|
|
20
|
+
/* @__PURE__ */ t(u, { ...e, control: r.control, children: e.children })
|
|
21
|
+
);
|
|
22
|
+
return o.displayName = "FormFieldWithSchema", o;
|
|
23
|
+
}, [r]);
|
|
24
|
+
return {
|
|
25
|
+
methods: r,
|
|
26
|
+
Form: d,
|
|
27
|
+
FormField: F
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
export {
|
|
31
|
+
v as useUnityForm
|
|
32
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { useMemo as o, useState as c, useCallback as u, useLayoutEffect as d } from "react";
|
|
2
|
+
import { isBrowser as m, isTestEnvironment as M } from "../utils/platform.mjs";
|
|
3
|
+
const f = (t) => m() && !M() ? window.matchMedia(t) : null, s = (t) => t.matches;
|
|
4
|
+
function v(t, r = !1) {
|
|
5
|
+
const e = o(() => f(t), [t]), [a, i] = c(
|
|
6
|
+
e ? s(e) : r
|
|
7
|
+
), n = u(() => {
|
|
8
|
+
e && i(s(e));
|
|
9
|
+
}, [e]);
|
|
10
|
+
return d(() => {
|
|
11
|
+
if (e)
|
|
12
|
+
return e.addEventListener("change", n), () => {
|
|
13
|
+
e.removeEventListener("change", n);
|
|
14
|
+
};
|
|
15
|
+
}), a;
|
|
16
|
+
}
|
|
17
|
+
export {
|
|
18
|
+
v as useMediaQuery
|
|
19
|
+
};
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
export * from './components/actionable/Actionable.mjs';
|
|
2
|
+
export * from './components/alert/Alert.mjs';
|
|
3
|
+
export * from './components/alert/parts/AlertActions.mjs';
|
|
4
|
+
export * from './components/alert/parts/AlertContent.mjs';
|
|
5
|
+
export * from './components/alert/parts/AlertTitle.mjs';
|
|
6
|
+
export * from './components/anchor/Anchor.mjs';
|
|
7
|
+
export * from './components/app-layout/AppLayout.mjs';
|
|
8
|
+
export * from './components/app-menu/AppMenu.mjs';
|
|
9
|
+
export * from './components/app-menu/parts/AppMenuHeader.mjs';
|
|
10
|
+
export * from './components/app-menu/parts/AppMenuFooter.mjs';
|
|
11
|
+
export * from './components/app-menu/parts/AppMenuNavContent.mjs';
|
|
12
|
+
export * from './components/app-menu/parts/AppMenu.context.mjs';
|
|
13
|
+
export * from './components/avatar/Avatar.mjs';
|
|
14
|
+
export * from './components/avatar/utils.mjs';
|
|
15
|
+
export * from './components/avatar/parts/AvatarFallback.mjs';
|
|
16
|
+
export * from './components/avatar/parts/AvatarImage.mjs';
|
|
17
|
+
export * from './components/avatar/parts/AvatarPair.mjs';
|
|
18
|
+
export * from './components/badge/Badge.mjs';
|
|
19
|
+
export * from './components/breadcrumbs/Breadcrumbs.mjs';
|
|
20
|
+
export * from './components/breadcrumbs/parts/Breadcrumb.mjs';
|
|
21
|
+
export * from './components/button/Button.mjs';
|
|
22
|
+
export * from './components/checkbox/Checkbox.mjs';
|
|
23
|
+
export * from './components/checkbox-field/CheckboxField.mjs';
|
|
24
|
+
export * from './components/checkbox-group/CheckboxGroup.mjs';
|
|
25
|
+
export * from './components/checkbox-group-field/CheckboxGroupField.mjs';
|
|
26
|
+
export * from './components/date-picker/DatePicker.mjs';
|
|
27
|
+
export * from './components/date-picker-field/DatePickerField.mjs';
|
|
28
|
+
export * from './components/dialog/Dialog.mjs';
|
|
29
|
+
export * from './components/dialog/parts/DialogActions.mjs';
|
|
30
|
+
export * from './components/dialog/parts/DialogContent.mjs';
|
|
31
|
+
export * from './components/dialog/parts/DialogTitle.mjs';
|
|
32
|
+
export * from './components/flex/Flex.mjs';
|
|
33
|
+
export * from './components/flex/Flex.variants.mjs';
|
|
34
|
+
export * from './components/flex/FlexItem.mjs';
|
|
35
|
+
export * from './components/form/Form.mjs';
|
|
36
|
+
export * from './components/form-field/FormField.mjs';
|
|
37
|
+
export * from './components/form-field/parts/FormControl.mjs';
|
|
38
|
+
export * from './components/form-field/parts/FormContextualLink.mjs';
|
|
39
|
+
export * from './components/form-field/parts/FormFeedbackText.mjs';
|
|
40
|
+
export * from './components/form-field/parts/FormHelperText.mjs';
|
|
41
|
+
export * from './components/form-field/parts/FormLabel.mjs';
|
|
42
|
+
export * from './components/full-page-loader/FullPageLoader.mjs';
|
|
43
|
+
export * from './components/grid/Grid.mjs';
|
|
44
|
+
export * from './components/grid/Grid.variants.mjs';
|
|
45
|
+
export * from './components/grid/GridItem.mjs';
|
|
46
|
+
export * from './components/icon/Icon.mjs';
|
|
47
|
+
export * from './components/icon-button/IconButton.mjs';
|
|
48
|
+
export * from './components/input/Input.mjs';
|
|
49
|
+
export * from './components/label/Label.mjs';
|
|
50
|
+
export * from './components/link/Link.mjs';
|
|
51
|
+
export * from './components/menu/Menu.mjs';
|
|
52
|
+
export * from './components/menu/parts/MenuContent.mjs';
|
|
53
|
+
export * from './components/menu/parts/MenuHeader.mjs';
|
|
54
|
+
export * from './components/menu/parts/MenuItem.mjs';
|
|
55
|
+
export * from './components/menu/parts/MenuSeparator.mjs';
|
|
56
|
+
export * from './components/menu/parts/MenuTrigger.mjs';
|
|
57
|
+
export * from './components/nav/Nav.mjs';
|
|
58
|
+
export * from './components/nav/parts/NavGroup.mjs';
|
|
59
|
+
export * from './components/nav/parts/NavItem.mjs';
|
|
60
|
+
export * from './components/payfit-brand/PayFitBrand.mjs';
|
|
61
|
+
export * from './components/payfit-brand/PayFitPreprod.mjs';
|
|
62
|
+
export * from './components/pill/Pill.mjs';
|
|
63
|
+
export * from './components/progress-bar/ProgressBar.mjs';
|
|
64
|
+
export * from './components/select/parts/SelectButton.mjs';
|
|
65
|
+
export * from './components/select/parts/SelectOption.mjs';
|
|
66
|
+
export * from './components/select/parts/SelectOptionGroup.mjs';
|
|
67
|
+
export * from './components/select/parts/SelectOptionHelper.mjs';
|
|
68
|
+
export * from './components/select/Select.mjs';
|
|
69
|
+
export * from './components/select-field/SelectField.mjs';
|
|
70
|
+
export * from './components/spinner/Spinner.mjs';
|
|
71
|
+
export * from './components/tabs/Tabs.mjs';
|
|
72
|
+
export * from './components/tabs/parts/Tab.mjs';
|
|
73
|
+
export * from './components/tabs/parts/TabList.mjs';
|
|
74
|
+
export * from './components/tabs/parts/TabPanel.mjs';
|
|
75
|
+
export * from './components/text/Text.mjs';
|
|
76
|
+
export * from './components/text/Text.variants.mjs';
|
|
77
|
+
export * from './components/text-area/TextArea.mjs';
|
|
78
|
+
export * from './components/text-field/TextField.mjs';
|
|
79
|
+
export * from './components/toast/toast.mjs';
|
|
80
|
+
export * from './components/toast/ToastManager.mjs';
|
|
81
|
+
export * from './hooks/use-breakpoint-listener.mjs';
|
|
82
|
+
export * from './hooks/use-media-query.mjs';
|
|
83
|
+
export * from './hooks/use-form.mjs';
|
|
84
|
+
export * from './providers/router/RouterProvider.mjs';
|
|
85
|
+
export * from './providers/router/integrations/UnityReactRouterV5Provider.mjs';
|
|
@@ -0,0 +1,187 @@
|
|
|
1
|
+
import { Actionable as e } from "./components/actionable/Actionable.mjs";
|
|
2
|
+
import { Alert as p } from "./components/alert/Alert.mjs";
|
|
3
|
+
import { AlertActions as m } from "./components/alert/parts/AlertActions.mjs";
|
|
4
|
+
import { AlertContent as a } from "./components/alert/parts/AlertContent.mjs";
|
|
5
|
+
import { AlertTitle as i } from "./components/alert/parts/AlertTitle.mjs";
|
|
6
|
+
import { Anchor as u } from "./components/anchor/Anchor.mjs";
|
|
7
|
+
import { AppLayout as d } from "./components/app-layout/AppLayout.mjs";
|
|
8
|
+
import { AppMenu as F } from "./components/app-menu/AppMenu.mjs";
|
|
9
|
+
import { AppMenuHeader as b } from "./components/app-menu/parts/AppMenuHeader.mjs";
|
|
10
|
+
import { AppMenuFooter as T } from "./components/app-menu/parts/AppMenuFooter.mjs";
|
|
11
|
+
import { AppMenuNavContent as M } from "./components/app-menu/parts/AppMenuNavContent.mjs";
|
|
12
|
+
import { AppMenuContext as I, AppMenuContextProvider as P, useAppMenuContext as v } from "./components/app-menu/parts/AppMenu.context.mjs";
|
|
13
|
+
import { Avatar as S } from "./components/avatar/Avatar.mjs";
|
|
14
|
+
import { getInitials as G } from "./components/avatar/utils.mjs";
|
|
15
|
+
import { AvatarFallback as D } from "./components/avatar/parts/AvatarFallback.mjs";
|
|
16
|
+
import { AvatarImage as N } from "./components/avatar/parts/AvatarImage.mjs";
|
|
17
|
+
import { AvatarPair as H } from "./components/avatar/parts/AvatarPair.mjs";
|
|
18
|
+
import { Badge as U } from "./components/badge/Badge.mjs";
|
|
19
|
+
import { Breadcrumbs as V } from "./components/breadcrumbs/Breadcrumbs.mjs";
|
|
20
|
+
import { Breadcrumb as j } from "./components/breadcrumbs/parts/Breadcrumb.mjs";
|
|
21
|
+
import { Button as w } from "./components/button/Button.mjs";
|
|
22
|
+
import { Checkbox as E, checkbox as J } from "./components/checkbox/Checkbox.mjs";
|
|
23
|
+
import { CheckboxField as W } from "./components/checkbox-field/CheckboxField.mjs";
|
|
24
|
+
import { CheckboxGroup as Y, checkboxGroup as Z } from "./components/checkbox-group/CheckboxGroup.mjs";
|
|
25
|
+
import { CheckboxGroupField as rr } from "./components/checkbox-group-field/CheckboxGroupField.mjs";
|
|
26
|
+
import { DatePicker as er } from "./components/date-picker/DatePicker.mjs";
|
|
27
|
+
import { DatePickerField as pr } from "./components/date-picker-field/DatePickerField.mjs";
|
|
28
|
+
import { Dialog as mr } from "./components/dialog/Dialog.mjs";
|
|
29
|
+
import { DialogActions as ar } from "./components/dialog/parts/DialogActions.mjs";
|
|
30
|
+
import { DialogContent as ir } from "./components/dialog/parts/DialogContent.mjs";
|
|
31
|
+
import { DialogTitle as ur } from "./components/dialog/parts/DialogTitle.mjs";
|
|
32
|
+
import { Flex as dr, Stack as Ar } from "./components/flex/Flex.mjs";
|
|
33
|
+
import { flex as gr, flexItem as br } from "./components/flex/Flex.variants.mjs";
|
|
34
|
+
import { FlexItem as Tr, StackItem as kr } from "./components/flex/FlexItem.mjs";
|
|
35
|
+
import { Form as Cr } from "./components/form/Form.mjs";
|
|
36
|
+
import { FormField as Pr } from "./components/form-field/FormField.mjs";
|
|
37
|
+
import { FormControl as Br } from "./components/form-field/parts/FormControl.mjs";
|
|
38
|
+
import { FormContextualLink as Lr } from "./components/form-field/parts/FormContextualLink.mjs";
|
|
39
|
+
import { FormFeedbackText as hr } from "./components/form-field/parts/FormFeedbackText.mjs";
|
|
40
|
+
import { FormHelperText as yr } from "./components/form-field/parts/FormHelperText.mjs";
|
|
41
|
+
import { FormLabel as Or } from "./components/form-field/parts/FormLabel.mjs";
|
|
42
|
+
import { FullPageLoader as Rr, fullPageLoader as Ur } from "./components/full-page-loader/FullPageLoader.mjs";
|
|
43
|
+
import { Grid as Vr } from "./components/grid/Grid.mjs";
|
|
44
|
+
import { grid as jr, gridItem as qr } from "./components/grid/Grid.variants.mjs";
|
|
45
|
+
import { GridItem as zr } from "./components/grid/GridItem.mjs";
|
|
46
|
+
import { Icon as Jr } from "./components/icon/Icon.mjs";
|
|
47
|
+
import { IconButton as Wr } from "./components/icon-button/IconButton.mjs";
|
|
48
|
+
import { Input as Yr } from "./components/input/Input.mjs";
|
|
49
|
+
import { Label as $r } from "./components/label/Label.mjs";
|
|
50
|
+
import { Link as oo } from "./components/link/Link.mjs";
|
|
51
|
+
import { Menu as to } from "./components/menu/Menu.mjs";
|
|
52
|
+
import { MenuContent as xo } from "./components/menu/parts/MenuContent.mjs";
|
|
53
|
+
import { MenuHeader as fo } from "./components/menu/parts/MenuHeader.mjs";
|
|
54
|
+
import { MenuItem as no } from "./components/menu/parts/MenuItem.mjs";
|
|
55
|
+
import { MenuSeparator as lo } from "./components/menu/parts/MenuSeparator.mjs";
|
|
56
|
+
import { MenuTrigger as co } from "./components/menu/parts/MenuTrigger.mjs";
|
|
57
|
+
import { Nav as Fo } from "./components/nav/Nav.mjs";
|
|
58
|
+
import { NavGroup as bo } from "./components/nav/parts/NavGroup.mjs";
|
|
59
|
+
import { NavItem as To, navItemBase as ko } from "./components/nav/parts/NavItem.mjs";
|
|
60
|
+
import { PayFitBrand as Co } from "./components/payfit-brand/PayFitBrand.mjs";
|
|
61
|
+
import { PayFitBrandPreprod as Po } from "./components/payfit-brand/PayFitPreprod.mjs";
|
|
62
|
+
import { Pill as Bo } from "./components/pill/Pill.mjs";
|
|
63
|
+
import { ProgressBar as Lo } from "./components/progress-bar/ProgressBar.mjs";
|
|
64
|
+
import { SelectButton as ho } from "./components/select/parts/SelectButton.mjs";
|
|
65
|
+
import { SelectOption as yo } from "./components/select/parts/SelectOption.mjs";
|
|
66
|
+
import { SelectOptionGroup as Oo } from "./components/select/parts/SelectOptionGroup.mjs";
|
|
67
|
+
import { SelectOptionHelper as Ro } from "./components/select/parts/SelectOptionHelper.mjs";
|
|
68
|
+
import { Select as Qo } from "./components/select/Select.mjs";
|
|
69
|
+
import { SelectField as _o } from "./components/select-field/SelectField.mjs";
|
|
70
|
+
import { Spinner as qo } from "./components/spinner/Spinner.mjs";
|
|
71
|
+
import { Tabs as zo } from "./components/tabs/Tabs.mjs";
|
|
72
|
+
import { Tab as Jo } from "./components/tabs/parts/Tab.mjs";
|
|
73
|
+
import { TabList as Wo } from "./components/tabs/parts/TabList.mjs";
|
|
74
|
+
import { TabPanel as Yo } from "./components/tabs/parts/TabPanel.mjs";
|
|
75
|
+
import { Text as $o } from "./components/text/Text.mjs";
|
|
76
|
+
import { text as oe } from "./components/text/Text.variants.mjs";
|
|
77
|
+
import { TextArea as te, textArea as pe } from "./components/text-area/TextArea.mjs";
|
|
78
|
+
import { TextField as me } from "./components/text-field/TextField.mjs";
|
|
79
|
+
import { toast as ae } from "./components/toast/toast.mjs";
|
|
80
|
+
import { TOAST_CONFIG as ie, ToastManager as le } from "./components/toast/ToastManager.mjs";
|
|
81
|
+
import { useBreakpointListener as ce } from "./hooks/use-breakpoint-listener.mjs";
|
|
82
|
+
import { useMediaQuery as Ae } from "./hooks/use-media-query.mjs";
|
|
83
|
+
import { useUnityForm as ge } from "./hooks/use-form.mjs";
|
|
84
|
+
import { RouterProvider as se, useRouter as Te } from "./providers/router/RouterProvider.mjs";
|
|
85
|
+
import { UnityReactRouterV5Provider as Me } from "./providers/router/integrations/UnityReactRouterV5Provider.mjs";
|
|
86
|
+
import { DialogTrigger as Ie } from "react-aria-components";
|
|
87
|
+
export {
|
|
88
|
+
e as Actionable,
|
|
89
|
+
p as Alert,
|
|
90
|
+
m as AlertActions,
|
|
91
|
+
a as AlertContent,
|
|
92
|
+
i as AlertTitle,
|
|
93
|
+
u as Anchor,
|
|
94
|
+
d as AppLayout,
|
|
95
|
+
F as AppMenu,
|
|
96
|
+
I as AppMenuContext,
|
|
97
|
+
P as AppMenuContextProvider,
|
|
98
|
+
T as AppMenuFooter,
|
|
99
|
+
b as AppMenuHeader,
|
|
100
|
+
M as AppMenuNavContent,
|
|
101
|
+
S as Avatar,
|
|
102
|
+
D as AvatarFallback,
|
|
103
|
+
N as AvatarImage,
|
|
104
|
+
H as AvatarPair,
|
|
105
|
+
U as Badge,
|
|
106
|
+
j as Breadcrumb,
|
|
107
|
+
V as Breadcrumbs,
|
|
108
|
+
w as Button,
|
|
109
|
+
E as Checkbox,
|
|
110
|
+
W as CheckboxField,
|
|
111
|
+
Y as CheckboxGroup,
|
|
112
|
+
rr as CheckboxGroupField,
|
|
113
|
+
er as DatePicker,
|
|
114
|
+
pr as DatePickerField,
|
|
115
|
+
mr as Dialog,
|
|
116
|
+
ar as DialogActions,
|
|
117
|
+
ir as DialogContent,
|
|
118
|
+
ur as DialogTitle,
|
|
119
|
+
Ie as DialogTrigger,
|
|
120
|
+
dr as Flex,
|
|
121
|
+
Tr as FlexItem,
|
|
122
|
+
Cr as Form,
|
|
123
|
+
Lr as FormContextualLink,
|
|
124
|
+
Br as FormControl,
|
|
125
|
+
hr as FormFeedbackText,
|
|
126
|
+
Pr as FormField,
|
|
127
|
+
yr as FormHelperText,
|
|
128
|
+
Or as FormLabel,
|
|
129
|
+
Rr as FullPageLoader,
|
|
130
|
+
Vr as Grid,
|
|
131
|
+
zr as GridItem,
|
|
132
|
+
Jr as Icon,
|
|
133
|
+
Wr as IconButton,
|
|
134
|
+
Yr as Input,
|
|
135
|
+
$r as Label,
|
|
136
|
+
oo as Link,
|
|
137
|
+
to as Menu,
|
|
138
|
+
xo as MenuContent,
|
|
139
|
+
fo as MenuHeader,
|
|
140
|
+
no as MenuItem,
|
|
141
|
+
lo as MenuSeparator,
|
|
142
|
+
co as MenuTrigger,
|
|
143
|
+
Fo as Nav,
|
|
144
|
+
bo as NavGroup,
|
|
145
|
+
To as NavItem,
|
|
146
|
+
Co as PayFitBrand,
|
|
147
|
+
Po as PayFitBrandPreprod,
|
|
148
|
+
Bo as Pill,
|
|
149
|
+
Lo as ProgressBar,
|
|
150
|
+
se as RouterProvider,
|
|
151
|
+
Qo as Select,
|
|
152
|
+
ho as SelectButton,
|
|
153
|
+
_o as SelectField,
|
|
154
|
+
yo as SelectOption,
|
|
155
|
+
Oo as SelectOptionGroup,
|
|
156
|
+
Ro as SelectOptionHelper,
|
|
157
|
+
qo as Spinner,
|
|
158
|
+
Ar as Stack,
|
|
159
|
+
kr as StackItem,
|
|
160
|
+
ie as TOAST_CONFIG,
|
|
161
|
+
Jo as Tab,
|
|
162
|
+
Wo as TabList,
|
|
163
|
+
Yo as TabPanel,
|
|
164
|
+
zo as Tabs,
|
|
165
|
+
$o as Text,
|
|
166
|
+
te as TextArea,
|
|
167
|
+
me as TextField,
|
|
168
|
+
le as ToastManager,
|
|
169
|
+
Me as UnityReactRouterV5Provider,
|
|
170
|
+
J as checkbox,
|
|
171
|
+
Z as checkboxGroup,
|
|
172
|
+
gr as flex,
|
|
173
|
+
br as flexItem,
|
|
174
|
+
Ur as fullPageLoader,
|
|
175
|
+
G as getInitials,
|
|
176
|
+
jr as grid,
|
|
177
|
+
qr as gridItem,
|
|
178
|
+
ko as navItemBase,
|
|
179
|
+
oe as text,
|
|
180
|
+
pe as textArea,
|
|
181
|
+
ae as toast,
|
|
182
|
+
v as useAppMenuContext,
|
|
183
|
+
ce as useBreakpointListener,
|
|
184
|
+
Ae as useMediaQuery,
|
|
185
|
+
Te as useRouter,
|
|
186
|
+
ge as useUnityForm
|
|
187
|
+
};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { ComponentProps } from 'react';
|
|
2
|
+
import { RouterProvider as AriaRouterProvider } from 'react-aria-components';
|
|
3
|
+
export interface ExtendedRouterContextValue {
|
|
4
|
+
/**
|
|
5
|
+
* Function to determine if a route is active
|
|
6
|
+
*/
|
|
7
|
+
isActive: (to: string) => boolean;
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Hook to access the extended ARIA router context. For internal use in Unity only.
|
|
11
|
+
*/
|
|
12
|
+
export declare const useRouter: () => ExtendedRouterContextValue | null;
|
|
13
|
+
type AriaRouterProviderProps = ComponentProps<typeof AriaRouterProvider>;
|
|
14
|
+
export interface RouterProviderProps extends ComponentProps<typeof AriaRouterProvider> {
|
|
15
|
+
/**
|
|
16
|
+
* function received from a client-side routing library to perform a client-side navigation programmatically
|
|
17
|
+
*/
|
|
18
|
+
navigate: AriaRouterProviderProps['navigate'];
|
|
19
|
+
/**
|
|
20
|
+
* Optional function to convert a router-specific href to a native HTML href, e.g. prepending a base path
|
|
21
|
+
*/
|
|
22
|
+
useHref?: AriaRouterProviderProps['useHref'];
|
|
23
|
+
/**
|
|
24
|
+
* Function to determine if a route is active
|
|
25
|
+
*/
|
|
26
|
+
isActive: (to: string) => boolean;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* The `RouterProvider` component is a provider that allows for integrations between Unity components that render links (such as `Link`, `NavItem`, etc.) and any client-side routing library in a single or multi-page application.
|
|
30
|
+
*
|
|
31
|
+
* By default, links perform native browser navigation when they are interacted with. However, many apps and frameworks use client side routers to avoid a full page reload when navigating between pages. The `RouterProvider` component configures all Unity components that support it to navigate using the client side router you provide. Set this up once in the root of your app, and any component with the href prop will automatically navigate using your router.
|
|
32
|
+
*/
|
|
33
|
+
export declare function RouterProvider({ isActive, children, ...routerProps }: RouterProviderProps): import("react/jsx-runtime").JSX.Element;
|
|
34
|
+
export declare namespace RouterProvider {
|
|
35
|
+
var displayName: string;
|
|
36
|
+
}
|
|
37
|
+
export {};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
+
import { createContext as u, useContext as i } from "react";
|
|
3
|
+
import { RouterProvider as d } from "react-aria-components";
|
|
4
|
+
const o = u(
|
|
5
|
+
null
|
|
6
|
+
), R = () => i(o);
|
|
7
|
+
function m({
|
|
8
|
+
isActive: t,
|
|
9
|
+
children: n,
|
|
10
|
+
...r
|
|
11
|
+
}) {
|
|
12
|
+
return /* @__PURE__ */ e(o.Provider, { value: { isActive: t, ...r }, children: /* @__PURE__ */ e(d, { ...r, children: n }) });
|
|
13
|
+
}
|
|
14
|
+
m.displayName = "RouterProvider";
|
|
15
|
+
export {
|
|
16
|
+
m as RouterProvider,
|
|
17
|
+
R as useRouter
|
|
18
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { PropsWithChildren } from 'react';
|
|
2
|
+
/**
|
|
3
|
+
* Provider that integrates Unity's RouterProvider with React Router v5.
|
|
4
|
+
* Handles navigation and active state detection automatically.
|
|
5
|
+
*/
|
|
6
|
+
export declare function UnityReactRouterV5Provider({ children, }: PropsWithChildren<unknown>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { jsx as c } from "react/jsx-runtime";
|
|
2
|
+
import { createLocation as s } from "history";
|
|
3
|
+
import { useHistory as m, useLocation as p, matchPath as u } from "react-router-dom";
|
|
4
|
+
import { RouterProvider as h } from "../RouterProvider.mjs";
|
|
5
|
+
const l = (o, r) => s(o, null, void 0, r);
|
|
6
|
+
function g({
|
|
7
|
+
children: o
|
|
8
|
+
}) {
|
|
9
|
+
const r = m(), e = p();
|
|
10
|
+
return /* @__PURE__ */ c(
|
|
11
|
+
h,
|
|
12
|
+
{
|
|
13
|
+
navigate: (t) => {
|
|
14
|
+
r.push(t.toString());
|
|
15
|
+
},
|
|
16
|
+
isActive: (t) => {
|
|
17
|
+
const a = l(t, e), { pathname: i } = a, n = i.replace(/([.+*?=^!:${}()[\]|/\\])/g, "\\$1");
|
|
18
|
+
return n ? !!u(e.pathname, {
|
|
19
|
+
path: n,
|
|
20
|
+
exact: t === "/"
|
|
21
|
+
}) : !1;
|
|
22
|
+
},
|
|
23
|
+
children: o
|
|
24
|
+
}
|
|
25
|
+
);
|
|
26
|
+
}
|
|
27
|
+
export {
|
|
28
|
+
g as UnityReactRouterV5Provider
|
|
29
|
+
};
|