@mezzanine-ui/react 0.16.0 → 1.0.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Accordion/AccordionControlContext.js +1 -0
- package/Accordion/AccordionDetails.js +1 -0
- package/Accordion/AccordionSummary.js +10 -10
- package/Accordion/index.d.ts +6 -3
- package/Alert/index.d.ts +3 -2
- package/AlertBanner/AlertBanner.d.ts +93 -0
- package/AlertBanner/AlertBanner.js +154 -0
- package/AlertBanner/index.d.ts +2 -0
- package/AlertBanner/index.js +1 -0
- package/Anchor/Anchor.js +1 -1
- package/Anchor/index.d.ts +2 -1
- package/AppBar/index.d.ts +8 -4
- package/{Overlay/Overlay.d.ts → Backdrop/Backdrop.d.ts} +12 -16
- package/Backdrop/Backdrop.js +40 -0
- package/Backdrop/index.d.ts +2 -0
- package/Backdrop/index.js +1 -0
- package/Badge/Badge.d.ts +20 -14
- package/Badge/Badge.js +14 -16
- package/Badge/BadgeContainer.d.ts +1 -1
- package/Badge/BadgeContainer.js +1 -1
- package/Badge/index.d.ts +3 -2
- package/Badge/typings.d.ts +48 -0
- package/Breadcrumb/Breadcrumb.d.ts +6 -0
- package/Breadcrumb/Breadcrumb.js +53 -0
- package/Breadcrumb/BreadcrumbItem.d.ts +4 -0
- package/Breadcrumb/BreadcrumbItem.js +45 -0
- package/Breadcrumb/index.d.ts +2 -0
- package/Breadcrumb/index.js +1 -0
- package/Breadcrumb/typings.d.ts +75 -0
- package/Button/Button.js +24 -19
- package/Button/ButtonGroup.d.ts +6 -28
- package/Button/ButtonGroup.js +7 -16
- package/Button/index.d.ts +4 -10
- package/Button/index.js +2 -3
- package/Button/typings.d.ts +11 -26
- package/Calendar/Calendar.d.ts +31 -2
- package/Calendar/Calendar.js +74 -19
- package/Calendar/CalendarCell.d.ts +4 -0
- package/Calendar/CalendarCell.js +3 -3
- package/Calendar/CalendarConfigProviderDayjs.d.ts +21 -0
- package/Calendar/CalendarConfigProviderDayjs.js +15 -0
- package/Calendar/CalendarConfigProviderLuxon.d.ts +21 -0
- package/Calendar/CalendarConfigProviderLuxon.js +15 -0
- package/Calendar/CalendarConfigProviderMoment.d.ts +21 -0
- package/Calendar/CalendarConfigProviderMoment.js +15 -0
- package/Calendar/CalendarContext.d.ts +14 -7
- package/Calendar/CalendarContext.js +8 -13
- package/Calendar/CalendarControls.d.ts +16 -0
- package/Calendar/CalendarControls.js +3 -7
- package/Calendar/CalendarDayOfWeek.js +4 -3
- package/Calendar/CalendarDays.d.ts +9 -1
- package/Calendar/CalendarDays.js +63 -38
- package/Calendar/CalendarFooterActions.d.ts +13 -0
- package/Calendar/CalendarFooterActions.js +14 -0
- package/Calendar/CalendarFooterControl.d.ts +16 -0
- package/Calendar/CalendarFooterControl.js +14 -0
- package/Calendar/CalendarHalfYears.d.ts +39 -0
- package/Calendar/CalendarHalfYears.js +62 -0
- package/Calendar/CalendarMonths.js +16 -4
- package/Calendar/CalendarQuarters.d.ts +37 -0
- package/Calendar/CalendarQuarters.js +64 -0
- package/Calendar/CalendarQuickSelect.d.ts +21 -0
- package/Calendar/CalendarQuickSelect.js +15 -0
- package/Calendar/CalendarWeeks.d.ts +1 -1
- package/Calendar/CalendarWeeks.js +89 -44
- package/Calendar/CalendarYears.js +13 -3
- package/Calendar/RangeCalendar.d.ts +59 -0
- package/Calendar/RangeCalendar.js +232 -0
- package/Calendar/index.d.ts +33 -10
- package/Calendar/index.js +7 -0
- package/Calendar/useCalendarControlModifiers.d.ts +4 -4
- package/Calendar/useCalendarControlModifiers.js +40 -8
- package/Calendar/useCalendarControls.d.ts +2 -0
- package/Calendar/useCalendarControls.js +19 -2
- package/Calendar/useCalendarModeStack.js +1 -0
- package/Calendar/useRangeCalendarControls.d.ts +18 -0
- package/Calendar/useRangeCalendarControls.js +115 -0
- package/Card/CardActions.js +1 -1
- package/Card/index.d.ts +4 -2
- package/Checkbox/CheckAll.d.ts +16 -6
- package/Checkbox/CheckAll.js +40 -26
- package/Checkbox/Checkbox.d.ts +100 -22
- package/Checkbox/Checkbox.js +73 -16
- package/Checkbox/CheckboxGroup.d.ts +100 -18
- package/Checkbox/CheckboxGroup.js +169 -24
- package/Checkbox/CheckboxGroupContext.d.ts +0 -2
- package/Checkbox/CheckboxGroupContext.js +1 -0
- package/Checkbox/index.d.ts +16 -4
- package/Checkbox/index.js +6 -2
- package/Checkbox/typings.d.ts +37 -0
- package/ClearActions/ClearActions.d.ts +41 -0
- package/ClearActions/ClearActions.js +23 -0
- package/ClearActions/index.d.ts +3 -0
- package/ClearActions/index.js +5 -0
- package/ConfirmActions/ConfirmActions.d.ts +2 -1
- package/ConfirmActions/index.d.ts +2 -1
- package/DatePicker/DatePicker.d.ts +12 -1
- package/DatePicker/DatePicker.js +41 -9
- package/DatePicker/DatePickerCalendar.d.ts +2 -5
- package/DatePicker/DatePickerCalendar.js +37 -37
- package/DatePicker/index.d.ts +4 -2
- package/DateRangePicker/DateRangePicker.d.ts +18 -2
- package/DateRangePicker/DateRangePicker.js +143 -100
- package/DateRangePicker/DateRangePickerCalendar.d.ts +13 -9
- package/DateRangePicker/DateRangePickerCalendar.js +7 -94
- package/DateRangePicker/index.d.ts +6 -3
- package/DateRangePicker/useDateRangeCalendarControls.js +11 -6
- package/DateRangePicker/useDateRangePickerValue.d.ts +38 -15
- package/DateRangePicker/useDateRangePickerValue.js +142 -63
- package/DateTimePicker/DateTimePicker.d.ts +31 -10
- package/DateTimePicker/DateTimePicker.js +179 -94
- package/DateTimePicker/index.d.ts +2 -2
- package/DateTimePicker/index.js +0 -1
- package/Drawer/Drawer.d.ts +47 -6
- package/Drawer/Drawer.js +36 -11
- package/Drawer/index.d.ts +2 -1
- package/Dropdown/Dropdown.js +12 -22
- package/Dropdown/index.d.ts +2 -1
- package/Empty/Empty.d.ts +1 -16
- package/Empty/Empty.js +59 -7
- package/Empty/icons/EmptyMainInitialDataIcon.d.ts +4 -0
- package/Empty/icons/EmptyMainInitialDataIcon.js +9 -0
- package/Empty/icons/EmptyMainResultIcon.d.ts +4 -0
- package/Empty/icons/EmptyMainResultIcon.js +9 -0
- package/Empty/icons/EmptyMainSystemIcon.d.ts +4 -0
- package/Empty/icons/EmptyMainSystemIcon.js +9 -0
- package/Empty/index.d.ts +2 -1
- package/Empty/typings.d.ts +61 -0
- package/Form/FormControlContext.js +1 -0
- package/Form/FormHintText.d.ts +18 -0
- package/Form/FormHintText.js +17 -0
- package/Form/FormLabel.js +1 -0
- package/Form/index.d.ts +9 -5
- package/Form/index.js +1 -1
- package/Form/useAutoCompleteValueControl.js +2 -0
- package/Form/useCheckboxControlValue.js +0 -1
- package/Form/useSelectValueControl.js +2 -0
- package/InlineMessage/InlineMessage.d.ts +33 -0
- package/InlineMessage/InlineMessage.js +42 -0
- package/InlineMessage/InlineMessageGroup.d.ts +24 -0
- package/InlineMessage/InlineMessageGroup.js +21 -0
- package/InlineMessage/index.d.ts +4 -0
- package/InlineMessage/index.js +2 -0
- package/Input/ActionButton/ActionButton.d.ts +26 -0
- package/Input/ActionButton/ActionButton.js +14 -0
- package/Input/ActionButton/index.d.ts +2 -0
- package/Input/ActionButton/index.js +1 -0
- package/Input/Input.d.ts +147 -42
- package/Input/Input.js +195 -27
- package/Input/PasswordStrengthIndicator/PasswordStrengthIndicator.d.ts +31 -0
- package/Input/PasswordStrengthIndicator/PasswordStrengthIndicator.js +18 -0
- package/Input/PasswordStrengthIndicator/index.d.ts +2 -0
- package/Input/PasswordStrengthIndicator/index.js +1 -0
- package/Input/SelectButton/SelectButton.d.ts +20 -0
- package/Input/SelectButton/SelectButton.js +21 -0
- package/Input/SelectButton/index.d.ts +2 -0
- package/Input/SelectButton/index.js +1 -0
- package/Input/SpinnerButton/SpinnerButton.d.ts +19 -0
- package/Input/SpinnerButton/SpinnerButton.js +14 -0
- package/Input/SpinnerButton/index.d.ts +2 -0
- package/Input/SpinnerButton/index.js +1 -0
- package/Input/index.d.ts +3 -2
- package/Menu/Menu.js +1 -0
- package/Menu/index.d.ts +8 -4
- package/Message/Message.d.ts +6 -4
- package/Message/Message.js +86 -9
- package/Message/MessageTimerController.d.ts +14 -0
- package/Message/MessageTimerController.js +27 -0
- package/Message/index.d.ts +3 -2
- package/Modal/Modal.js +2 -2
- package/Modal/ModalActions.js +1 -0
- package/Modal/ModalControl.js +1 -0
- package/Modal/ModalHeader.js +1 -0
- package/Modal/index.d.ts +10 -5
- package/Modal/useModalContainer.d.ts +1 -1
- package/Modal/useModalContainer.js +2 -4
- package/Navigation/Navigation.js +37 -34
- package/Navigation/NavigationContext.js +1 -0
- package/Navigation/NavigationItem.js +1 -0
- package/Navigation/NavigationSubMenu.js +16 -26
- package/Navigation/index.d.ts +8 -4
- package/Notification/Notification.js +0 -1
- package/Notification/index.d.ts +3 -2
- package/Notifier/NotifierManager.d.ts +15 -2
- package/Notifier/NotifierManager.js +60 -18
- package/Notifier/createNotifier.d.ts +9 -0
- package/Notifier/createNotifier.js +3 -2
- package/Notifier/typings.d.ts +3 -1
- package/OverflowTooltip/OverflowCounterTag.d.ts +12 -0
- package/OverflowTooltip/OverflowCounterTag.js +48 -0
- package/OverflowTooltip/OverflowTooltip.d.ts +34 -0
- package/OverflowTooltip/OverflowTooltip.js +53 -0
- package/OverflowTooltip/index.d.ts +2 -0
- package/OverflowTooltip/index.js +2 -0
- package/PageFooter/PageFooter.d.ts +73 -8
- package/PageFooter/PageFooter.js +34 -3
- package/PageFooter/index.d.ts +2 -1
- package/PageHeader/PageHeader.d.ts +40 -0
- package/PageHeader/PageHeader.js +70 -0
- package/PageHeader/index.d.ts +2 -0
- package/PageHeader/index.js +1 -0
- package/PageToolbar/PageToolbar.d.ts +114 -0
- package/PageToolbar/PageToolbar.js +23 -0
- package/PageToolbar/index.d.ts +2 -0
- package/PageToolbar/index.js +1 -0
- package/PageToolbar/utils.d.ts +23 -0
- package/PageToolbar/utils.js +165 -0
- package/Pagination/Pagination.d.ts +23 -29
- package/Pagination/Pagination.js +3 -4
- package/Pagination/PaginationItem.d.ts +1 -1
- package/Pagination/PaginationItem.js +4 -3
- package/Pagination/PaginationJumper.d.ts +7 -9
- package/Pagination/PaginationJumper.js +3 -5
- package/Pagination/PaginationPageSize.d.ts +8 -11
- package/Pagination/PaginationPageSize.js +5 -4
- package/Pagination/index.d.ts +8 -4
- package/Pagination/usePagination.d.ts +3 -1
- package/Pagination/usePagination.js +12 -21
- package/Picker/FormattedInput.d.ts +17 -0
- package/Picker/FormattedInput.js +74 -0
- package/Picker/MaskFormat.d.ts +39 -0
- package/Picker/MaskFormat.js +94 -0
- package/Picker/PickerTrigger.d.ts +13 -3
- package/Picker/PickerTrigger.js +17 -2
- package/Picker/PickerTriggerWithSeparator.d.ts +124 -0
- package/Picker/PickerTriggerWithSeparator.js +80 -0
- package/Picker/RangePickerTrigger.d.ts +55 -4
- package/Picker/RangePickerTrigger.js +65 -7
- package/Picker/formatUtils.d.ts +34 -0
- package/Picker/formatUtils.js +124 -0
- package/Picker/index.d.ts +17 -6
- package/Picker/index.js +4 -1
- package/Picker/useDateInputFormatter.d.ts +52 -0
- package/Picker/useDateInputFormatter.js +382 -0
- package/Picker/usePickerValue.d.ts +1 -2
- package/Picker/usePickerValue.js +8 -13
- package/Popconfirm/Popconfirm.js +1 -1
- package/Popconfirm/index.d.ts +2 -1
- package/Popover/Popover.js +4 -8
- package/Popover/index.d.ts +2 -1
- package/Popper/Popper.d.ts +15 -10
- package/Popper/Popper.js +88 -17
- package/Popper/index.d.ts +2 -1
- package/Portal/Portal.d.ts +13 -5
- package/Portal/Portal.js +25 -10
- package/Portal/index.d.ts +4 -1
- package/Portal/index.js +1 -0
- package/Portal/portalRegistry.d.ts +17 -0
- package/Portal/portalRegistry.js +92 -0
- package/Progress/Progress.d.ts +23 -30
- package/Progress/Progress.js +71 -21
- package/Progress/index.d.ts +3 -2
- package/Provider/ConfigProvider.d.ts +1 -0
- package/Provider/ConfigProvider.js +1 -0
- package/Provider/context.js +1 -0
- package/Radio/Radio.d.ts +37 -4
- package/Radio/Radio.js +23 -12
- package/Radio/RadioGroup.d.ts +37 -8
- package/Radio/RadioGroup.js +6 -5
- package/Radio/RadioGroupContext.d.ts +2 -1
- package/Radio/RadioGroupContext.js +1 -0
- package/Radio/index.d.ts +5 -3
- package/ResultState/ResultState.d.ts +52 -0
- package/ResultState/ResultState.js +24 -0
- package/ResultState/index.d.ts +2 -0
- package/ResultState/index.js +1 -0
- package/Select/AutoComplete.d.ts +1 -1
- package/Select/AutoComplete.js +2 -1
- package/Select/Option.js +1 -0
- package/Select/Select.d.ts +1 -1
- package/Select/Select.js +2 -1
- package/Select/SelectControlContext.js +1 -0
- package/Select/SelectTrigger.d.ts +1 -87
- package/Select/SelectTrigger.js +26 -21
- package/Select/SelectTriggerTags.d.ts +1 -1
- package/Select/SelectTriggerTags.js +47 -18
- package/Select/TreeSelect.d.ts +1 -1
- package/Select/TreeSelect.js +2 -1
- package/Select/index.d.ts +14 -7
- package/Select/typings.d.ts +99 -0
- package/Select/useSelectTriggerTags.d.ts +15 -8
- package/Select/useSelectTriggerTags.js +83 -44
- package/Selection/Selection.d.ts +98 -0
- package/Selection/Selection.js +46 -0
- package/Selection/index.d.ts +12 -0
- package/Selection/index.js +5 -0
- package/Skeleton/Skeleton.d.ts +10 -3
- package/Skeleton/Skeleton.js +12 -4
- package/Skeleton/index.d.ts +2 -1
- package/Slider/Slider.d.ts +44 -7
- package/Slider/Slider.js +17 -13
- package/Slider/index.d.ts +5 -3
- package/Spin/Spin.d.ts +39 -0
- package/{Loading/Loading.js → Spin/Spin.js} +9 -9
- package/Spin/index.d.ts +2 -0
- package/Spin/index.js +1 -0
- package/Stepper/Step.d.ts +1 -35
- package/Stepper/Step.js +43 -8
- package/Stepper/Stepper.d.ts +1 -14
- package/Stepper/Stepper.js +49 -15
- package/Stepper/index.d.ts +5 -2
- package/Stepper/index.js +1 -0
- package/Stepper/typings.d.ts +77 -0
- package/Stepper/useStepDistance.d.ts +10 -0
- package/Stepper/useStepDistance.js +81 -0
- package/Stepper/useStepper.d.ts +21 -0
- package/Stepper/useStepper.js +26 -0
- package/Tab/Tab.d.ts +32 -0
- package/Tab/Tab.js +57 -0
- package/Tab/TabItem.d.ts +27 -0
- package/Tab/TabItem.js +18 -0
- package/Tab/index.d.ts +4 -0
- package/Tab/index.js +2 -0
- package/Table/Table.d.ts +75 -94
- package/Table/Table.js +216 -161
- package/Table/TableContext.d.ts +114 -51
- package/Table/TableContext.js +22 -3
- package/Table/components/TableBody.d.ts +5 -0
- package/Table/components/TableBody.js +102 -0
- package/Table/components/TableCell.d.ts +17 -0
- package/Table/components/TableCell.js +74 -0
- package/Table/components/TableColGroup.d.ts +4 -0
- package/Table/components/TableColGroup.js +206 -0
- package/Table/components/TableDragHandleCell.d.ts +9 -0
- package/Table/components/TableDragHandleCell.js +37 -0
- package/Table/components/TableExpandCell.d.ts +11 -0
- package/Table/components/TableExpandCell.js +44 -0
- package/Table/components/TableExpandedRow.d.ts +9 -0
- package/Table/components/TableExpandedRow.js +46 -0
- package/Table/components/TableHeader.d.ts +4 -0
- package/Table/components/TableHeader.js +125 -0
- package/Table/components/TablePagination.d.ts +3 -0
- package/Table/components/TablePagination.js +11 -0
- package/Table/components/TableResizeHandle.d.ts +13 -0
- package/Table/components/TableResizeHandle.js +115 -0
- package/Table/components/TableRow.d.ts +12 -0
- package/Table/components/TableRow.js +126 -0
- package/Table/components/TableSelectionCell.d.ts +13 -0
- package/Table/components/TableSelectionCell.js +35 -0
- package/Table/components/index.d.ts +10 -0
- package/Table/components/index.js +10 -0
- package/Table/hooks/index.d.ts +9 -0
- package/Table/hooks/index.js +8 -0
- package/Table/hooks/typings.d.ts +14 -0
- package/Table/hooks/useTableColumns.d.ts +8 -0
- package/Table/hooks/useTableColumns.js +91 -0
- package/Table/hooks/useTableDataSource.d.ts +57 -0
- package/Table/hooks/useTableDataSource.js +183 -0
- package/Table/hooks/useTableExpansion.d.ts +7 -0
- package/Table/hooks/useTableExpansion.js +52 -0
- package/Table/hooks/useTableFixedOffsets.d.ts +29 -0
- package/Table/hooks/useTableFixedOffsets.js +241 -0
- package/Table/hooks/useTableScroll.d.ts +12 -0
- package/Table/hooks/useTableScroll.js +58 -0
- package/Table/hooks/useTableSelection.d.ts +7 -0
- package/Table/hooks/useTableSelection.js +94 -0
- package/Table/hooks/useTableSorting.d.ts +6 -0
- package/Table/hooks/useTableSorting.js +32 -0
- package/Table/hooks/useTableVirtualization.d.ts +22 -0
- package/Table/hooks/useTableVirtualization.js +115 -0
- package/Table/index.d.ts +7 -7
- package/Table/index.js +22 -6
- package/Table/utils/index.d.ts +2 -0
- package/Table/utils/index.js +1 -0
- package/Table/utils/useTableRowSelection.d.ts +18 -0
- package/Table/utils/useTableRowSelection.js +63 -0
- package/Tag/Tag.d.ts +2 -25
- package/Tag/Tag.js +23 -13
- package/Tag/TagGroup.d.ts +12 -0
- package/Tag/TagGroup.js +41 -0
- package/Tag/index.d.ts +2 -1
- package/Tag/typings.d.ts +78 -0
- package/TextField/TextField.d.ts +78 -19
- package/TextField/TextField.js +58 -22
- package/TextField/index.d.ts +2 -1
- package/Textarea/Textarea.d.ts +19 -51
- package/Textarea/Textarea.js +13 -19
- package/Textarea/index.d.ts +2 -2
- package/TimePanel/TimePanel.d.ts +1 -22
- package/TimePanel/TimePanel.js +31 -26
- package/TimePanel/TimePanelAction.d.ts +2 -8
- package/TimePanel/TimePanelAction.js +2 -2
- package/TimePanel/TimePanelColumn.d.ts +0 -13
- package/TimePanel/TimePanelColumn.js +9 -11
- package/TimePanel/index.d.ts +6 -3
- package/TimePicker/TimePicker.d.ts +10 -1
- package/TimePicker/TimePicker.js +86 -35
- package/TimePicker/TimePickerPanel.d.ts +1 -2
- package/TimePicker/TimePickerPanel.js +2 -2
- package/TimePicker/index.d.ts +4 -2
- package/Toggle/Toggle.d.ts +46 -0
- package/Toggle/Toggle.js +29 -0
- package/Toggle/index.d.ts +3 -0
- package/Toggle/index.js +1 -0
- package/Tooltip/Tooltip.d.ts +13 -2
- package/Tooltip/Tooltip.js +56 -10
- package/Tooltip/index.d.ts +2 -1
- package/Tooltip/useDelayMouseEnterLeave.d.ts +1 -2
- package/Tooltip/useDelayMouseEnterLeave.js +10 -13
- package/Transition/Collapse.d.ts +2 -0
- package/Transition/Collapse.js +5 -6
- package/Transition/Fade.js +4 -4
- package/Transition/Rotate.d.ts +42 -0
- package/Transition/Rotate.js +30 -0
- package/Transition/Scale.d.ts +13 -0
- package/Transition/{Grow.js → Scale.js} +19 -16
- package/Transition/Slide.d.ts +7 -0
- package/Transition/{Zoom.js → Slide.js} +14 -12
- package/Transition/SlideFade.d.ts +3 -0
- package/Transition/SlideFade.js +5 -4
- package/Transition/Transition.d.ts +2 -2
- package/Transition/Translate.d.ts +14 -0
- package/Transition/Translate.js +94 -0
- package/Transition/index.d.ts +16 -6
- package/Transition/index.js +4 -2
- package/Transition/useAutoTransitionDuration.d.ts +1 -1
- package/Transition/useAutoTransitionDuration.js +3 -3
- package/Transition/useSetNodeTransition.js +0 -2
- package/Tree/TreeNode.js +7 -6
- package/Tree/index.d.ts +10 -5
- package/Typography/Typography.d.ts +6 -9
- package/Typography/Typography.js +7 -9
- package/Typography/index.d.ts +2 -5
- package/Upload/Upload.d.ts +175 -0
- package/Upload/Upload.js +279 -0
- package/Upload/UploadItem.d.ts +82 -0
- package/Upload/UploadItem.js +118 -0
- package/Upload/UploadPictureCard.d.ts +110 -0
- package/Upload/UploadPictureCard.js +101 -0
- package/Upload/Uploader.d.ts +161 -0
- package/Upload/Uploader.js +120 -0
- package/Upload/index.d.ts +8 -6
- package/Upload/index.js +4 -5
- package/Upload/upload-utils.d.ts +41 -0
- package/Upload/upload-utils.js +65 -0
- package/_internal/InputCheck/InputCheck.d.ts +15 -1
- package/_internal/InputCheck/InputCheck.js +6 -2
- package/_internal/InputCheck/InputCheckGroup.d.ts +11 -1
- package/_internal/InputCheck/InputCheckGroup.js +4 -2
- package/_internal/InputCheck/index.d.ts +4 -2
- package/_internal/InputTriggerPopper/InputTriggerPopper.js +15 -25
- package/_internal/InputTriggerPopper/index.d.ts +2 -1
- package/_internal/SlideFadeOverlay/SlideFadeOverlay.d.ts +3 -3
- package/_internal/SlideFadeOverlay/SlideFadeOverlay.js +5 -28
- package/_internal/SlideFadeOverlay/index.d.ts +2 -1
- package/_internal/SlideFadeOverlay/useTopStack.js +1 -0
- package/dayjs.d.ts +21 -0
- package/dayjs.js +2 -0
- package/hooks/useComposeRefs.js +1 -1
- package/hooks/useLastCallback.js +3 -1
- package/hooks/useScrollLock.d.ts +28 -0
- package/hooks/useScrollLock.js +134 -0
- package/index.d.ts +128 -58
- package/index.js +90 -80
- package/luxon.d.ts +21 -0
- package/luxon.js +2 -0
- package/moment.d.ts +21 -0
- package/moment.js +2 -0
- package/package.json +14 -17
- package/utils/composeRefs.js +0 -1
- package/utils/flatten-children.d.ts +12 -0
- package/utils/flatten-children.js +37 -0
- package/utils/get-css-variable-value.d.ts +2 -0
- package/utils/get-css-variable-value.js +12 -0
- package/Button/IconButton.d.ts +0 -21
- package/Button/IconButton.js +0 -13
- package/DateTimePicker/DateTimePickerPanel.d.ts +0 -28
- package/DateTimePicker/DateTimePickerPanel.js +0 -49
- package/Form/FormMessage.d.ts +0 -7
- package/Form/FormMessage.js +0 -18
- package/Form/useInputWithTagsModeValue.js +0 -86
- package/Loading/Loading.d.ts +0 -33
- package/Loading/index.d.ts +0 -1
- package/Loading/index.js +0 -1
- package/Overlay/Overlay.js +0 -31
- package/Overlay/index.d.ts +0 -1
- package/Overlay/index.js +0 -1
- package/Picker/useRangePickerValue.d.ts +0 -23
- package/Picker/useRangePickerValue.js +0 -99
- package/Switch/Switch.d.ts +0 -43
- package/Switch/Switch.js +0 -28
- package/Switch/index.d.ts +0 -2
- package/Switch/index.js +0 -1
- package/Table/TableBody.d.ts +0 -10
- package/Table/TableBody.js +0 -30
- package/Table/TableBodyRow.d.ts +0 -11
- package/Table/TableBodyRow.js +0 -64
- package/Table/TableCell.d.ts +0 -19
- package/Table/TableCell.js +0 -24
- package/Table/TableExpandedTable.d.ts +0 -11
- package/Table/TableExpandedTable.js +0 -28
- package/Table/TableHeader.d.ts +0 -3
- package/Table/TableHeader.js +0 -35
- package/Table/draggable/useTableDraggable.d.ts +0 -14
- package/Table/draggable/useTableDraggable.js +0 -64
- package/Table/editable/TableEditRenderWrapper.d.ts +0 -7
- package/Table/editable/TableEditRenderWrapper.js +0 -15
- package/Table/expandable/TableExpandable.d.ts +0 -27
- package/Table/expandable/TableExpandable.js +0 -24
- package/Table/pagination/TablePagination.d.ts +0 -10
- package/Table/pagination/TablePagination.js +0 -25
- package/Table/pagination/useTablePagination.d.ts +0 -8
- package/Table/pagination/useTablePagination.js +0 -29
- package/Table/refresh/TableRefresh.d.ts +0 -10
- package/Table/refresh/TableRefresh.js +0 -20
- package/Table/rowSelection/TableRowSelection.d.ts +0 -18
- package/Table/rowSelection/TableRowSelection.js +0 -92
- package/Table/rowSelection/useTableRowSelection.d.ts +0 -6
- package/Table/rowSelection/useTableRowSelection.js +0 -53
- package/Table/sorting/TableSortingIcon.d.ts +0 -10
- package/Table/sorting/TableSortingIcon.js +0 -32
- package/Table/sorting/useTableSorting.d.ts +0 -11
- package/Table/sorting/useTableSorting.js +0 -120
- package/Table/useTableFetchMore.d.ts +0 -10
- package/Table/useTableFetchMore.js +0 -50
- package/Table/useTableLoading.d.ts +0 -5
- package/Table/useTableLoading.js +0 -19
- package/Table/useTableScroll.d.ts +0 -596
- package/Table/useTableScroll.js +0 -294
- package/Tabs/Tab.d.ts +0 -18
- package/Tabs/Tab.js +0 -16
- package/Tabs/TabPane.d.ts +0 -14
- package/Tabs/TabPane.js +0 -18
- package/Tabs/Tabs.d.ts +0 -39
- package/Tabs/Tabs.js +0 -47
- package/Tabs/index.d.ts +0 -3
- package/Tabs/index.js +0 -3
- package/Tabs/useTabsOverflow.d.ts +0 -8
- package/Tabs/useTabsOverflow.js +0 -61
- package/Transition/Grow.d.ts +0 -12
- package/Transition/Zoom.d.ts +0 -7
- package/Upload/UploadButton.d.ts +0 -9
- package/Upload/UploadButton.js +0 -23
- package/Upload/UploadInput.d.ts +0 -20
- package/Upload/UploadInput.js +0 -24
- package/Upload/UploadPicture.d.ts +0 -49
- package/Upload/UploadPicture.js +0 -51
- package/Upload/UploadPictureBlock.d.ts +0 -20
- package/Upload/UploadPictureBlock.js +0 -81
- package/Upload/UploadPictureWall.d.ts +0 -81
- package/Upload/UploadPictureWall.js +0 -168
- package/Upload/UploadPictureWallItem.d.ts +0 -15
- package/Upload/UploadPictureWallItem.js +0 -18
- package/Upload/UploadResult.d.ts +0 -35
- package/Upload/UploadResult.js +0 -29
- package/utils/scroll-lock.d.ts +0 -2
- package/utils/scroll-lock.js +0 -24
package/index.d.ts
CHANGED
|
@@ -1,20 +1,21 @@
|
|
|
1
|
+
export * from './utils/array-move';
|
|
1
2
|
export * from './utils/composeRefs';
|
|
2
3
|
export * from './utils/cx';
|
|
3
|
-
export * from './utils/getElement';
|
|
4
|
-
export * from './utils/jsx-types';
|
|
5
4
|
export * from './utils/general';
|
|
6
|
-
export * from './utils/
|
|
7
|
-
export * from './utils/array-move';
|
|
5
|
+
export * from './utils/get-css-variable-value';
|
|
8
6
|
export * from './utils/get-scrollbar-width';
|
|
7
|
+
export * from './utils/getElement';
|
|
8
|
+
export * from './utils/jsx-types';
|
|
9
9
|
export * from './hooks/useClickAway';
|
|
10
10
|
export * from './hooks/useComposeRefs';
|
|
11
11
|
export * from './hooks/useDocumentEscapeKeyDown';
|
|
12
12
|
export * from './hooks/useDocumentEvents';
|
|
13
|
+
export * from './hooks/useDocumentTabKeyDown';
|
|
13
14
|
export * from './hooks/useIsomorphicLayoutEffect';
|
|
14
15
|
export * from './hooks/useLastCallback';
|
|
15
16
|
export * from './hooks/useLastValue';
|
|
16
17
|
export * from './hooks/usePreviousValue';
|
|
17
|
-
export * from './hooks/
|
|
18
|
+
export * from './hooks/useScrollLock';
|
|
18
19
|
export * from './hooks/useWindowWidth';
|
|
19
20
|
export * from './Tooltip/useDelayMouseEnterLeave';
|
|
20
21
|
/**
|
|
@@ -32,76 +33,145 @@ export * from './Form/useSwitchControlValue';
|
|
|
32
33
|
/**
|
|
33
34
|
* General
|
|
34
35
|
*/
|
|
35
|
-
export {
|
|
36
|
-
export {
|
|
37
|
-
export {
|
|
36
|
+
export { default as Button, ButtonGroup } from './Button';
|
|
37
|
+
export type { ButtonComponent, ButtonGroupChild, ButtonGroupOrientation, ButtonGroupProps, ButtonProps, ButtonPropsBase, ButtonSize, ButtonVariant, } from './Button';
|
|
38
|
+
export { default as Icon } from './Icon';
|
|
39
|
+
export type { IconColor, IconProps } from './Icon';
|
|
40
|
+
export { default as Typography } from './Typography';
|
|
41
|
+
export type { TypographyAlign, TypographyColor, TypographyComponent, TypographyDisplay, TypographyProps, TypographySemanticType, } from './Typography';
|
|
38
42
|
/**
|
|
39
43
|
* Navigation
|
|
40
44
|
*/
|
|
41
|
-
export {
|
|
42
|
-
export {
|
|
43
|
-
export {
|
|
44
|
-
export {
|
|
45
|
-
export {
|
|
46
|
-
export {
|
|
47
|
-
export {
|
|
48
|
-
export {
|
|
45
|
+
export { default as AppBar, AppBarBrand, AppBarMain, AppBarSupport, } from './AppBar';
|
|
46
|
+
export type { AppBarBrandProps, AppBarChild, AppBarChildren, AppBarMainProps, AppBarSupportProps, } from './AppBar';
|
|
47
|
+
export { default as Breadcrumb } from './Breadcrumb';
|
|
48
|
+
export type { BreadcrumbItemProps, BreadcrumbProps } from './Breadcrumb';
|
|
49
|
+
export { default as Drawer } from './Drawer';
|
|
50
|
+
export type { DrawerPlacement, DrawerProps } from './Drawer';
|
|
51
|
+
export { default as Dropdown } from './Dropdown';
|
|
52
|
+
export type { DropdownProps } from './Dropdown';
|
|
53
|
+
export { default as Menu, MenuDivider, MenuItem, MenuItemGroup } from './Menu';
|
|
54
|
+
export type { MenuDividerProps, MenuItemGroupProps, MenuItemProps, MenuProps, MenuSize, } from './Menu';
|
|
55
|
+
export { default as Navigation, NavigationItem, NavigationSubMenu, } from './Navigation';
|
|
56
|
+
export type { NavigationChild, NavigationChildren, NavigationItemProps, NavigationProps, NavigationSubMenuChild, NavigationSubMenuChildren, NavigationSubMenuProps, } from './Navigation';
|
|
57
|
+
export { default as PageFooter } from './PageFooter';
|
|
58
|
+
export type { PageFooterProps } from './PageFooter';
|
|
59
|
+
export { default as PageHeader } from './PageHeader';
|
|
60
|
+
export type { PageHeaderProps } from './PageHeader';
|
|
61
|
+
export { Step, default as Stepper, useStepper } from './Stepper';
|
|
62
|
+
export type { StepperProps, StepProps } from './Stepper';
|
|
63
|
+
export { TabItem, default as Tab } from './Tab';
|
|
64
|
+
export type { TabItemProps, TabsChild, TabProps } from './Tab';
|
|
49
65
|
/**
|
|
50
66
|
* Data Display
|
|
51
67
|
*/
|
|
52
|
-
export {
|
|
53
|
-
export {
|
|
54
|
-
export {
|
|
55
|
-
export {
|
|
56
|
-
export {
|
|
57
|
-
export {
|
|
58
|
-
export {
|
|
59
|
-
export {
|
|
68
|
+
export { default as Accordion, AccordionDetails, AccordionSummary, } from './Accordion';
|
|
69
|
+
export type { AccordionDetailsProps, AccordionProps, AccordionSummaryProps, } from './Accordion';
|
|
70
|
+
export { default as Badge, BadgeContainer } from './Badge';
|
|
71
|
+
export type { BadgeProps } from './Badge';
|
|
72
|
+
export { default as Card, CardActions } from './Card';
|
|
73
|
+
export type { CardActionsProps, CardProps } from './Card';
|
|
74
|
+
export { default as Empty } from './Empty';
|
|
75
|
+
export type { EmptyProps } from './Empty';
|
|
76
|
+
export { OverflowCounterTag } from './OverflowTooltip';
|
|
77
|
+
export type { OverflowCounterTagProps } from './OverflowTooltip';
|
|
78
|
+
export { default as Pagination, PaginationItem, PaginationJumper, PaginationPageSize, usePagination, } from './Pagination';
|
|
79
|
+
export type { PaginationItemProps, PaginationItemType, PaginationJumperProps, PaginationPageSizeProps, PaginationProps, } from './Pagination';
|
|
80
|
+
export { default as Table, TableContext, TableDataContext, useTableContext, useTableDataContext,
|
|
81
|
+
/** @NOTE Table hooks only for internal usage */
|
|
82
|
+
useTableRowSelection, } from './Table';
|
|
83
|
+
export type { TableProps, TableContextValue, TableDataContextValue, TableSortingState, TableSelectionState, TableExpansionState, TableColumnState, TableDraggableState, TableSize, UseTableRowSelectionProps, } from './Table';
|
|
84
|
+
export { default as Tag } from './Tag';
|
|
85
|
+
export type { TagProps, TagSize } from './Tag';
|
|
86
|
+
export { default as Tooltip } from './Tooltip';
|
|
87
|
+
export type { TooltipProps } from './Tooltip';
|
|
88
|
+
export { getTreeNodeEntities, toggleValue, toggleValueWithStatusControl, traverseTree, default as Tree, TreeNode, TreeNodeList, uniqueArray, useTreeExpandedValue, } from './Tree';
|
|
89
|
+
export type { GetTreeNodeEntitiesProps, TreeExpandControl, TreeNodeData, TreeNodeElementProps, TreeNodeEntities, TreeNodeEntity, TreeNodeListElementProps, TreeNodeListProps, TreeNodeProp, TreeNodeProps, TreeNodeRefs, TreeNodeRefsShape, TreeProps, UseTreeExpandedValueProps, } from './Tree';
|
|
60
90
|
/**
|
|
61
91
|
* Data Entry
|
|
62
92
|
*/
|
|
63
|
-
export {
|
|
64
|
-
export {
|
|
65
|
-
export {
|
|
66
|
-
export {
|
|
67
|
-
export {
|
|
68
|
-
export {
|
|
69
|
-
export {
|
|
70
|
-
export {
|
|
71
|
-
export {
|
|
72
|
-
export {
|
|
73
|
-
export {
|
|
74
|
-
export {
|
|
75
|
-
export {
|
|
76
|
-
export {
|
|
77
|
-
export {
|
|
93
|
+
export { CheckAll, default as Checkbox, CheckboxGroup } from './Checkbox';
|
|
94
|
+
export type { CheckAllProps, CheckboxGroupChangeEvent, CheckboxGroupChangeEventTarget, CheckboxGroupLayout, CheckboxGroupOption, CheckboxGroupProps, CheckboxProps, } from './Checkbox';
|
|
95
|
+
export { default as DatePicker, DatePickerCalendar } from './DatePicker';
|
|
96
|
+
export type { DatePickerCalendarProps, DatePickerProps } from './DatePicker';
|
|
97
|
+
export { default as DateRangePicker, DateRangePickerCalendar, useDateRangeCalendarControls, useDateRangePickerValue, } from './DateRangePicker';
|
|
98
|
+
export type { DateRangePickerCalendarProps, DateRangePickerProps, UseDateRangePickerValueProps, } from './DateRangePicker';
|
|
99
|
+
export { default as DateTimePicker } from './DateTimePicker';
|
|
100
|
+
export type { DateTimePickerProps } from './DateTimePicker';
|
|
101
|
+
export { FormControlContext, FormField, FormHintText, FormLabel } from './Form';
|
|
102
|
+
export type { FormControl, FormFieldProps, FormHintTextProps, FormLabelProps, } from './Form';
|
|
103
|
+
export { default as Input } from './Input';
|
|
104
|
+
export type { ActionInputProps, BaseInputProps, ClearableInput, InputBaseProps, InputProps, InputSize, InputStrength, NumberInput, NumberInputProps, PasswordInputProps, SearchInputProps, SelectInputProps, UnitInputProps, WithAffixInputProps, WithPasswordStrengthIndicator, } from './Input';
|
|
105
|
+
export { PickerTrigger, RangePickerTrigger, usePickerDocumentEventClose, usePickerValue, useTabKeyClose, } from './Picker';
|
|
106
|
+
export type { PickerTriggerProps, RangePickerTriggerProps, UsePickerDocumentEventCloseProps, UsePickerValueProps, } from './Picker';
|
|
107
|
+
export { default as Radio, RadioGroup } from './Radio';
|
|
108
|
+
export type { RadioGroupOrientation, RadioGroupProps, RadioProps, RadioSize, } from './Radio';
|
|
109
|
+
export { AutoComplete, Option, OptionGroup, default as Select, SelectControlContext, SelectTrigger, SelectTriggerTags, TreeSelect, } from './Select';
|
|
110
|
+
export type { AutoCompleteProps, OptionGroupProps, OptionProps, SelectControl, SelectProps, SelectTriggerInputProps, SelectTriggerProps, SelectTriggerTagsProps, SelectValue, TreeSelectOption, TreeSelectProps, } from './Select';
|
|
111
|
+
export { default as Selection } from './Selection';
|
|
112
|
+
export type { SelectionProps, SelectionPropsBase } from './Selection';
|
|
113
|
+
export { default as Slider, useSlider } from './Slider';
|
|
114
|
+
export type { RangeSliderProps, RangeSliderValue, SingleSliderProps, SingleSliderValue, SliderBaseProps, SliderComponentProps, SliderProps, SliderRect, SliderValue, UseRangeSliderProps, UseSingleSliderProps, UseSliderCommonProps, UseSliderProps, UseSliderResult, } from './Slider';
|
|
115
|
+
export { default as Textarea } from './Textarea';
|
|
116
|
+
export type { TextareaProps } from './Textarea';
|
|
117
|
+
export { default as TextField } from './TextField';
|
|
118
|
+
export type { TextFieldAffixProps, TextFieldBaseProps, TextFieldInteractiveStateProps, TextFieldPaddingInfo, TextFieldProps, TextFieldSize, } from './TextField';
|
|
119
|
+
export { default as TimePicker, TimePickerPanel } from './TimePicker';
|
|
120
|
+
export type { TimePickerPanelProps, TimePickerProps } from './TimePicker';
|
|
121
|
+
export { default as Switch } from './Toggle';
|
|
122
|
+
export type { ToggleProps as SwitchProps, ToggleSize as SwitchSize, } from './Toggle';
|
|
123
|
+
export { Upload, Uploader, UploadItem, UploadPictureCard } from './Upload';
|
|
124
|
+
export type { UploaderProps, UploadFile, UploadItemProps, UploadPictureCardProps, UploadProps, } from './Upload';
|
|
78
125
|
/**
|
|
79
126
|
* Feedback
|
|
80
127
|
*/
|
|
81
|
-
export {
|
|
82
|
-
export {
|
|
83
|
-
export {
|
|
84
|
-
export {
|
|
85
|
-
export {
|
|
86
|
-
export {
|
|
87
|
-
export {
|
|
88
|
-
export {
|
|
89
|
-
export {
|
|
128
|
+
export { default as Alert } from './Alert';
|
|
129
|
+
export type { AlertProps, AlertSeverity } from './Alert';
|
|
130
|
+
export { default as ConfirmActions } from './ConfirmActions';
|
|
131
|
+
export type { ConfirmActionsProps } from './ConfirmActions';
|
|
132
|
+
export { default as Message } from './Message';
|
|
133
|
+
export type { MessageData, MessageSeverity, MessageType } from './Message';
|
|
134
|
+
export { default as Modal, ModalActions, ModalBody, ModalFooter, ModalHeader, useModalContainer, } from './Modal';
|
|
135
|
+
export type { ModalActionsProps, ModalBodyProps, ModalFooterProps, ModalHeaderProps, ModalProps, ModalSeverity, ModalSize, } from './Modal';
|
|
136
|
+
export { default as Notification } from './Notification';
|
|
137
|
+
export type { NotificationData, NotificationSeverity } from './Notification';
|
|
138
|
+
export { default as Popconfirm } from './Popconfirm';
|
|
139
|
+
export type { PopconfirmProps } from './Popconfirm';
|
|
140
|
+
export { default as Progress } from './Progress';
|
|
141
|
+
export type { ProgressProps, ProgressStatus, ProgressStatuses, ProgressType, } from './Progress';
|
|
142
|
+
export { default as Skeleton } from './Skeleton';
|
|
143
|
+
export type { SkeletonProps } from './Skeleton';
|
|
144
|
+
export { default as Spin } from './Spin';
|
|
145
|
+
export type { SpinProps } from './Spin';
|
|
146
|
+
export { default as InlineMessage, InlineMessageGroup } from './InlineMessage';
|
|
147
|
+
export type { InlineMessageGroupItem, InlineMessageGroupProps, InlineMessageProps, } from './InlineMessage';
|
|
148
|
+
export { default as ResultState } from './ResultState';
|
|
149
|
+
export type { ResultStateActions, ResultStateProps } from './ResultState';
|
|
90
150
|
/**
|
|
91
151
|
* Others
|
|
92
152
|
*/
|
|
93
|
-
export {
|
|
153
|
+
export { default as Anchor } from './Anchor';
|
|
154
|
+
export type { AnchorProps } from './Anchor';
|
|
155
|
+
export { default as Backdrop } from './Backdrop';
|
|
156
|
+
export type { BackdropProps } from './Backdrop';
|
|
157
|
+
export { default as AlertBanner } from './AlertBanner';
|
|
158
|
+
export type { AlertBannerProps } from './AlertBanner';
|
|
94
159
|
/**
|
|
95
160
|
* Utility
|
|
96
161
|
*/
|
|
162
|
+
export { default as Calendar, CalendarCell, CalendarConfigProvider, CalendarContext, CalendarControls, CalendarDayOfWeek, CalendarDays, CalendarHalfYears, CalendarMonths, CalendarQuarters, CalendarWeeks, CalendarYears, RangeCalendar, useCalendarContext, useCalendarControlModifiers, useCalendarControls, useCalendarModeStack, useRangeCalendarControls, } from './Calendar';
|
|
163
|
+
export type { CalendarCellProps, CalendarConfigProviderProps, CalendarConfigs, CalendarControlModifier, CalendarControlsProps, CalendarDayOfWeekProps, CalendarDaysProps, CalendarHalfYearsProps, CalendarMonthsProps, CalendarProps, CalendarQuartersProps, CalendarWeeksProps, CalendarYearsProps, RangeCalendarProps, UseCalendarControlModifiersResult, } from './Calendar';
|
|
97
164
|
export * from './Notifier';
|
|
98
|
-
export {
|
|
99
|
-
export { PopoverProps
|
|
100
|
-
export {
|
|
101
|
-
export {
|
|
102
|
-
export {
|
|
103
|
-
export {
|
|
104
|
-
export {
|
|
105
|
-
export { TimePanelActionProps,
|
|
165
|
+
export { default as Popover } from './Popover';
|
|
166
|
+
export type { PopoverProps } from './Popover';
|
|
167
|
+
export { default as Popper } from './Popper';
|
|
168
|
+
export type { PopperController, PopperPlacement, PopperPositionStrategy, PopperProps, } from './Popper';
|
|
169
|
+
export { default as Portal } from './Portal';
|
|
170
|
+
export type { PortalProps } from './Portal';
|
|
171
|
+
export { default as TimePanel, TimePanelAction, TimePanelColumn, } from './TimePanel';
|
|
172
|
+
export type { TimePanelActionProps, TimePanelColumnProps, TimePanelProps, } from './TimePanel';
|
|
173
|
+
export { Collapse, Fade, Rotate, Scale, Slide, SlideFade, default as Transition, Translate, } from './Transition';
|
|
174
|
+
export type { CollapseProps, FadeProps, RotateProps, ScaleProps, SlideFadeDirection, SlideFadeProps, SlideProps, TransitionProps, TranslateFrom, TranslateProps, } from './Transition';
|
|
106
175
|
/** Context */
|
|
107
|
-
export {
|
|
176
|
+
export { default as ConfigProvider, MezzanineConfig } from './Provider';
|
|
177
|
+
export type { ConfigProviderProps, MezzanineConfigContext } from './Provider';
|
package/index.js
CHANGED
|
@@ -1,17 +1,18 @@
|
|
|
1
|
-
export { composeRefs } from './utils/composeRefs.js';
|
|
2
|
-
export { getElement } from './utils/getElement.js';
|
|
3
|
-
export { allowBodyScroll, lockBodyScroll } from './utils/scroll-lock.js';
|
|
4
1
|
export { arrayMove } from './utils/array-move.js';
|
|
2
|
+
export { composeRefs } from './utils/composeRefs.js';
|
|
3
|
+
export { getCSSVariableValue, getNumericCSSVariablePixelValue } from './utils/get-css-variable-value.js';
|
|
5
4
|
export { getScrollbarWidth } from './utils/get-scrollbar-width.js';
|
|
5
|
+
export { getElement } from './utils/getElement.js';
|
|
6
6
|
export { useClickAway } from './hooks/useClickAway.js';
|
|
7
7
|
export { useComposeRefs } from './hooks/useComposeRefs.js';
|
|
8
8
|
export { useDocumentEscapeKeyDown } from './hooks/useDocumentEscapeKeyDown.js';
|
|
9
9
|
export { useDocumentEvents } from './hooks/useDocumentEvents.js';
|
|
10
|
+
export { useDocumentTabKeyDown } from './hooks/useDocumentTabKeyDown.js';
|
|
10
11
|
export { useIsomorphicLayoutEffect } from './hooks/useIsomorphicLayoutEffect.js';
|
|
11
12
|
export { useLastCallback } from './hooks/useLastCallback.js';
|
|
12
13
|
export { useLastValue } from './hooks/useLastValue.js';
|
|
13
14
|
export { usePreviousValue } from './hooks/usePreviousValue.js';
|
|
14
|
-
export {
|
|
15
|
+
export { useScrollLock } from './hooks/useScrollLock.js';
|
|
15
16
|
export { useWindowWidth } from './hooks/useWindowWidth.js';
|
|
16
17
|
export { useDelayMouseEnterLeave } from './Tooltip/useDelayMouseEnterLeave.js';
|
|
17
18
|
export { useAutoCompleteValueControl } from './Form/useAutoCompleteValueControl.js';
|
|
@@ -23,140 +24,149 @@ export { useInputWithClearControlValue } from './Form/useInputWithClearControlVa
|
|
|
23
24
|
export { useRadioControlValue } from './Form/useRadioControlValue.js';
|
|
24
25
|
export { useSelectValueControl } from './Form/useSelectValueControl.js';
|
|
25
26
|
export { useSwitchControlValue } from './Form/useSwitchControlValue.js';
|
|
26
|
-
export { IconButton } from './Button/index.js';
|
|
27
|
-
export { default as Typography } from './Typography/Typography.js';
|
|
28
27
|
export { default as Button } from './Button/Button.js';
|
|
29
28
|
export { default as ButtonGroup } from './Button/ButtonGroup.js';
|
|
29
|
+
export { default as Typography } from './Typography/Typography.js';
|
|
30
|
+
export { default as Checkbox } from './Checkbox/Checkbox.js';
|
|
31
|
+
export { default as CheckAll } from './Checkbox/CheckAll.js';
|
|
32
|
+
export { default as CheckboxGroup } from './Checkbox/CheckboxGroup.js';
|
|
33
|
+
export { default as Selection } from './Selection/Selection.js';
|
|
30
34
|
export { default as Icon } from './Icon/Icon.js';
|
|
35
|
+
export { default as AppBar } from './AppBar/AppBar.js';
|
|
36
|
+
export { default as AppBarBrand } from './AppBar/AppBarBrand.js';
|
|
37
|
+
export { default as AppBarMain } from './AppBar/AppBarMain.js';
|
|
38
|
+
export { default as AppBarSupport } from './AppBar/AppBarSupport.js';
|
|
39
|
+
export { default as Breadcrumb } from './Breadcrumb/Breadcrumb.js';
|
|
40
|
+
export { default as Drawer } from './Drawer/Drawer.js';
|
|
41
|
+
export { default as Dropdown } from './Dropdown/Dropdown.js';
|
|
42
|
+
export { default as Menu } from './Menu/Menu.js';
|
|
31
43
|
export { default as MenuDivider } from './Menu/MenuDivider.js';
|
|
32
44
|
export { default as MenuItem } from './Menu/MenuItem.js';
|
|
33
45
|
export { default as MenuItemGroup, default as OptionGroup } from './Menu/MenuItemGroup.js';
|
|
34
|
-
export { default as
|
|
35
|
-
export { default as Tab } from './Tabs/Tab.js';
|
|
36
|
-
export { default as TabPane } from './Tabs/TabPane.js';
|
|
37
|
-
export { default as Tabs } from './Tabs/Tabs.js';
|
|
38
|
-
export { default as Drawer } from './Drawer/Drawer.js';
|
|
39
|
-
export { default as Dropdown } from './Dropdown/Dropdown.js';
|
|
46
|
+
export { default as Navigation } from './Navigation/Navigation.js';
|
|
40
47
|
export { default as NavigationItem } from './Navigation/NavigationItem.js';
|
|
41
48
|
export { default as NavigationSubMenu } from './Navigation/NavigationSubMenu.js';
|
|
42
|
-
export { default as Navigation } from './Navigation/Navigation.js';
|
|
43
|
-
export { default as AppBarBrand } from './AppBar/AppBarBrand.js';
|
|
44
|
-
export { default as AppBarMain } from './AppBar/AppBarMain.js';
|
|
45
|
-
export { default as AppBarSupport } from './AppBar/AppBarSupport.js';
|
|
46
|
-
export { default as AppBar } from './AppBar/AppBar.js';
|
|
47
49
|
export { default as PageFooter } from './PageFooter/PageFooter.js';
|
|
50
|
+
export { default as PageHeader } from './PageHeader/PageHeader.js';
|
|
48
51
|
export { default as Step } from './Stepper/Step.js';
|
|
49
52
|
export { default as Stepper } from './Stepper/Stepper.js';
|
|
50
|
-
export { default as
|
|
51
|
-
export { default as
|
|
53
|
+
export { default as TabItem } from './Tab/TabItem.js';
|
|
54
|
+
export { default as Tab } from './Tab/Tab.js';
|
|
52
55
|
export { default as Accordion } from './Accordion/Accordion.js';
|
|
53
|
-
export { default as
|
|
56
|
+
export { default as AccordionDetails } from './Accordion/AccordionDetails.js';
|
|
57
|
+
export { default as AccordionSummary } from './Accordion/AccordionSummary.js';
|
|
54
58
|
export { default as Badge } from './Badge/Badge.js';
|
|
55
|
-
export { default as
|
|
59
|
+
export { default as BadgeContainer } from './Badge/BadgeContainer.js';
|
|
56
60
|
export { default as Card } from './Card/Card.js';
|
|
61
|
+
export { default as CardActions } from './Card/CardActions.js';
|
|
57
62
|
export { default as Empty } from './Empty/Empty.js';
|
|
58
|
-
export { default as
|
|
59
|
-
export { default as
|
|
60
|
-
export { default as Table } from './Table/Table.js';
|
|
61
|
-
export { default as Tag } from './Tag/Tag.js';
|
|
63
|
+
export { default as OverflowCounterTag } from './OverflowTooltip/OverflowCounterTag.js';
|
|
64
|
+
export { default as Pagination } from './Pagination/Pagination.js';
|
|
62
65
|
export { default as PaginationItem } from './Pagination/PaginationItem.js';
|
|
63
66
|
export { default as PaginationJumper } from './Pagination/PaginationJumper.js';
|
|
64
67
|
export { default as PaginationPageSize } from './Pagination/PaginationPageSize.js';
|
|
65
|
-
export {
|
|
68
|
+
export { Table } from './Table/Table.js';
|
|
69
|
+
export { default as Tag } from './Tag/Tag.js';
|
|
70
|
+
export { default as Tooltip } from './Tooltip/Tooltip.js';
|
|
71
|
+
export { default as Tree } from './Tree/Tree.js';
|
|
66
72
|
export { default as TreeNode } from './Tree/TreeNode.js';
|
|
67
73
|
export { default as TreeNodeList } from './Tree/TreeNodeList.js';
|
|
68
|
-
export { default as
|
|
69
|
-
export { default as
|
|
70
|
-
export { default as
|
|
71
|
-
export { default as
|
|
74
|
+
export { default as DatePicker } from './DatePicker/DatePicker.js';
|
|
75
|
+
export { default as DatePickerCalendar } from './DatePicker/DatePickerCalendar.js';
|
|
76
|
+
export { default as DateRangePicker } from './DateRangePicker/DateRangePicker.js';
|
|
77
|
+
export { default as DateRangePickerCalendar } from './DateRangePicker/DateRangePickerCalendar.js';
|
|
78
|
+
export { default as DateTimePicker } from './DateTimePicker/DateTimePicker.js';
|
|
72
79
|
export { default as FormField } from './Form/FormField.js';
|
|
80
|
+
export { default as FormHintText } from './Form/FormHintText.js';
|
|
73
81
|
export { default as FormLabel } from './Form/FormLabel.js';
|
|
74
|
-
export { default as FormMessage } from './Form/FormMessage.js';
|
|
75
82
|
export { default as Input } from './Input/Input.js';
|
|
76
|
-
export { default as
|
|
83
|
+
export { default as PickerTrigger } from './Picker/PickerTrigger.js';
|
|
84
|
+
export { default as RangePickerTrigger } from './Picker/RangePickerTrigger.js';
|
|
77
85
|
export { default as Radio } from './Radio/Radio.js';
|
|
86
|
+
export { default as RadioGroup } from './Radio/RadioGroup.js';
|
|
78
87
|
export { default as AutoComplete } from './Select/AutoComplete.js';
|
|
88
|
+
export { default as Option } from './Select/Option.js';
|
|
89
|
+
export { default as Select } from './Select/Select.js';
|
|
79
90
|
export { default as SelectTrigger } from './Select/SelectTrigger.js';
|
|
80
91
|
export { default as SelectTriggerTags } from './Select/SelectTriggerTags.js';
|
|
81
|
-
export { default as Option } from './Select/Option.js';
|
|
82
92
|
export { default as TreeSelect } from './Select/TreeSelect.js';
|
|
83
|
-
export { default as
|
|
84
|
-
export { default as Switch } from './Switch/Switch.js';
|
|
93
|
+
export { default as Slider } from './Slider/Slider.js';
|
|
85
94
|
export { default as Textarea } from './Textarea/Textarea.js';
|
|
86
95
|
export { default as TextField } from './TextField/TextField.js';
|
|
87
|
-
export { default as UploadButton } from './Upload/UploadButton.js';
|
|
88
|
-
export { default as UploadPicture } from './Upload/UploadPicture.js';
|
|
89
|
-
export { default as UploadPictureWall } from './Upload/UploadPictureWall.js';
|
|
90
|
-
export { default as UploadResult } from './Upload/UploadResult.js';
|
|
91
|
-
export { default as PickerTrigger } from './Picker/PickerTrigger.js';
|
|
92
|
-
export { default as RangePickerTrigger } from './Picker/RangePickerTrigger.js';
|
|
93
|
-
export { default as DatePickerCalendar } from './DatePicker/DatePickerCalendar.js';
|
|
94
|
-
export { default as DatePicker } from './DatePicker/DatePicker.js';
|
|
95
|
-
export { default as DateRangePickerCalendar } from './DateRangePicker/DateRangePickerCalendar.js';
|
|
96
|
-
export { default as DateRangePicker } from './DateRangePicker/DateRangePicker.js';
|
|
97
|
-
export { default as TimePickerPanel } from './TimePicker/TimePickerPanel.js';
|
|
98
96
|
export { default as TimePicker } from './TimePicker/TimePicker.js';
|
|
99
|
-
export { default as
|
|
100
|
-
export { default as
|
|
101
|
-
export { default as
|
|
97
|
+
export { default as TimePickerPanel } from './TimePicker/TimePickerPanel.js';
|
|
98
|
+
export { default as Switch } from './Toggle/Toggle.js';
|
|
99
|
+
export { default as Upload } from './Upload/Upload.js';
|
|
100
|
+
export { default as Uploader } from './Upload/Uploader.js';
|
|
101
|
+
export { default as UploadItem } from './Upload/UploadItem.js';
|
|
102
|
+
export { default as UploadPictureCard } from './Upload/UploadPictureCard.js';
|
|
102
103
|
export { default as Alert } from './Alert/Alert.js';
|
|
103
104
|
export { default as ConfirmActions } from './ConfirmActions/ConfirmActions.js';
|
|
104
|
-
export { default as Loading } from './Loading/Loading.js';
|
|
105
105
|
export { default as Message } from './Message/Message.js';
|
|
106
|
-
export { default as
|
|
106
|
+
export { default as Modal } from './Modal/Modal.js';
|
|
107
|
+
export { default as ModalActions } from './Modal/ModalActions.js';
|
|
107
108
|
export { default as ModalBody } from './Modal/ModalBody.js';
|
|
108
109
|
export { default as ModalFooter } from './Modal/ModalFooter.js';
|
|
109
|
-
export { default as
|
|
110
|
+
export { default as ModalHeader } from './Modal/ModalHeader.js';
|
|
110
111
|
export { default as useModalContainer } from './Modal/useModalContainer.js';
|
|
111
|
-
export { default as Modal } from './Modal/Modal.js';
|
|
112
|
-
export { default as Popconfirm } from './Popconfirm/Popconfirm.js';
|
|
113
112
|
export { default as Notification } from './Notification/Notification.js';
|
|
113
|
+
export { default as Popconfirm } from './Popconfirm/Popconfirm.js';
|
|
114
114
|
export { default as Progress } from './Progress/Progress.js';
|
|
115
115
|
export { default as Skeleton } from './Skeleton/Skeleton.js';
|
|
116
|
+
export { default as Spin } from './Spin/Spin.js';
|
|
117
|
+
export { default as InlineMessage } from './InlineMessage/InlineMessage.js';
|
|
118
|
+
export { default as InlineMessageGroup } from './InlineMessage/InlineMessageGroup.js';
|
|
119
|
+
export { default as ResultState } from './ResultState/ResultState.js';
|
|
116
120
|
export { default as Anchor } from './Anchor/Anchor.js';
|
|
117
|
-
export { default as
|
|
121
|
+
export { default as Backdrop } from './Backdrop/Backdrop.js';
|
|
122
|
+
export { default as AlertBanner } from './AlertBanner/AlertBanner.js';
|
|
123
|
+
export { default as Calendar } from './Calendar/Calendar.js';
|
|
124
|
+
export { default as CalendarCell } from './Calendar/CalendarCell.js';
|
|
125
|
+
export { default as CalendarConfigProvider, CalendarContext, useCalendarContext } from './Calendar/CalendarContext.js';
|
|
126
|
+
export { default as CalendarControls } from './Calendar/CalendarControls.js';
|
|
127
|
+
export { default as CalendarDayOfWeek } from './Calendar/CalendarDayOfWeek.js';
|
|
128
|
+
export { default as CalendarDays } from './Calendar/CalendarDays.js';
|
|
129
|
+
export { default as CalendarHalfYears } from './Calendar/CalendarHalfYears.js';
|
|
130
|
+
export { default as CalendarMonths } from './Calendar/CalendarMonths.js';
|
|
131
|
+
export { default as CalendarQuarters } from './Calendar/CalendarQuarters.js';
|
|
132
|
+
export { default as CalendarWeeks } from './Calendar/CalendarWeeks.js';
|
|
133
|
+
export { default as CalendarYears } from './Calendar/CalendarYears.js';
|
|
134
|
+
export { default as RangeCalendar } from './Calendar/RangeCalendar.js';
|
|
118
135
|
export { default as Popover } from './Popover/Popover.js';
|
|
119
136
|
export { default as Popper } from './Popper/Popper.js';
|
|
120
137
|
export { default as Portal } from './Portal/Portal.js';
|
|
121
|
-
export { default as
|
|
138
|
+
export { default as TimePanel } from './TimePanel/TimePanel.js';
|
|
139
|
+
export { default as TimePanelAction } from './TimePanel/TimePanelAction.js';
|
|
140
|
+
export { default as TimePanelColumn } from './TimePanel/TimePanelColumn.js';
|
|
122
141
|
export { default as Collapse } from './Transition/Collapse.js';
|
|
123
142
|
export { default as Fade } from './Transition/Fade.js';
|
|
124
|
-
export { default as
|
|
143
|
+
export { default as Rotate } from './Transition/Rotate.js';
|
|
144
|
+
export { default as Scale } from './Transition/Scale.js';
|
|
145
|
+
export { default as Slide } from './Transition/Slide.js';
|
|
125
146
|
export { default as SlideFade } from './Transition/SlideFade.js';
|
|
126
|
-
export { default as
|
|
127
|
-
export { default as
|
|
128
|
-
export { default as CalendarConfigProvider, CalendarContext, useCalendarContext } from './Calendar/CalendarContext.js';
|
|
129
|
-
export { default as CalendarYears } from './Calendar/CalendarYears.js';
|
|
130
|
-
export { default as CalendarWeeks } from './Calendar/CalendarWeeks.js';
|
|
131
|
-
export { default as CalendarMonths } from './Calendar/CalendarMonths.js';
|
|
132
|
-
export { default as CalendarDays } from './Calendar/CalendarDays.js';
|
|
133
|
-
export { default as CalendarDayOfWeek } from './Calendar/CalendarDayOfWeek.js';
|
|
134
|
-
export { default as CalendarControls } from './Calendar/CalendarControls.js';
|
|
135
|
-
export { default as CalendarCell } from './Calendar/CalendarCell.js';
|
|
136
|
-
export { default as Calendar } from './Calendar/Calendar.js';
|
|
137
|
-
export { default as TimePanelAction } from './TimePanel/TimePanelAction.js';
|
|
138
|
-
export { default as TimePanelColumn } from './TimePanel/TimePanelColumn.js';
|
|
139
|
-
export { default as TimePanel } from './TimePanel/TimePanel.js';
|
|
147
|
+
export { default as Transition } from './Transition/Transition.js';
|
|
148
|
+
export { default as Translate } from './Transition/Translate.js';
|
|
140
149
|
export { default as ConfigProvider } from './Provider/ConfigProvider.js';
|
|
141
|
-
export {
|
|
142
|
-
export { SELECTED_ALL_KEY, useTableRowSelection } from './Table/rowSelection/useTableRowSelection.js';
|
|
150
|
+
export { useStepper } from './Stepper/useStepper.js';
|
|
143
151
|
export { usePagination } from './Pagination/usePagination.js';
|
|
152
|
+
export { TableContext, TableDataContext, useTableContext, useTableDataContext } from './Table/TableContext.js';
|
|
153
|
+
export { useTableRowSelection } from './Table/utils/useTableRowSelection.js';
|
|
154
|
+
export { getTreeNodeEntities } from './Tree/getTreeNodeEntities.js';
|
|
144
155
|
export { toggleValue, toggleValueWithStatusControl, uniqueArray } from './Tree/toggleValue.js';
|
|
145
156
|
export { traverseTree } from './Tree/traverseTree.js';
|
|
146
157
|
export { useTreeExpandedValue } from './Tree/useTreeExpandedValue.js';
|
|
147
|
-
export {
|
|
158
|
+
export { useDateRangeCalendarControls } from './DateRangePicker/useDateRangeCalendarControls.js';
|
|
159
|
+
export { useDateRangePickerValue } from './DateRangePicker/useDateRangePickerValue.js';
|
|
148
160
|
export { FormControlContext } from './Form/FormControlContext.js';
|
|
149
|
-
export { SelectControlContext } from './Select/SelectControlContext.js';
|
|
150
|
-
export { useTabKeyClose } from './Picker/useTabKeyClose.js';
|
|
151
161
|
export { usePickerDocumentEventClose } from './Picker/usePickerDocumentEventClose.js';
|
|
152
162
|
export { usePickerValue } from './Picker/usePickerValue.js';
|
|
153
|
-
export {
|
|
154
|
-
export {
|
|
155
|
-
export { useDateRangePickerValue } from './DateRangePicker/useDateRangePickerValue.js';
|
|
163
|
+
export { useTabKeyClose } from './Picker/useTabKeyClose.js';
|
|
164
|
+
export { SelectControlContext } from './Select/SelectControlContext.js';
|
|
156
165
|
export { useSlider } from './Slider/useSlider.js';
|
|
157
166
|
export { useCalendarControlModifiers } from './Calendar/useCalendarControlModifiers.js';
|
|
158
|
-
export { useCalendarModeStack } from './Calendar/useCalendarModeStack.js';
|
|
159
167
|
export { useCalendarControls } from './Calendar/useCalendarControls.js';
|
|
168
|
+
export { useCalendarModeStack } from './Calendar/useCalendarModeStack.js';
|
|
169
|
+
export { useRangeCalendarControls } from './Calendar/useRangeCalendarControls.js';
|
|
160
170
|
export { MezzanineConfig } from './Provider/context.js';
|
|
161
171
|
export { default as cx } from 'clsx';
|
|
162
172
|
export { createNotifier } from './Notifier/createNotifier.js';
|
package/luxon.d.ts
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Luxon-specific entry point for Mezzanine UI React
|
|
3
|
+
* Import from this path to use Luxon without loading other date libraries
|
|
4
|
+
*
|
|
5
|
+
* @example
|
|
6
|
+
* ```tsx
|
|
7
|
+
* import { CalendarConfigProviderLuxon, CalendarLocale } from '@mezzanine-ui/react/luxon';
|
|
8
|
+
*
|
|
9
|
+
* export default function RootLayout({ children }) {
|
|
10
|
+
* return (
|
|
11
|
+
* <CalendarConfigProviderLuxon locale={CalendarLocale.ZH_TW}>
|
|
12
|
+
* {children}
|
|
13
|
+
* </CalendarConfigProviderLuxon>
|
|
14
|
+
* );
|
|
15
|
+
* }
|
|
16
|
+
* ```
|
|
17
|
+
*/
|
|
18
|
+
export { CalendarLocale } from '@mezzanine-ui/core/calendar';
|
|
19
|
+
export type { CalendarLocaleValue } from '@mezzanine-ui/core/calendar';
|
|
20
|
+
export { default as CalendarConfigProviderLuxon } from './Calendar/CalendarConfigProviderLuxon';
|
|
21
|
+
export type { CalendarConfigProviderLuxonProps } from './Calendar/CalendarConfigProviderLuxon';
|
package/luxon.js
ADDED
package/moment.d.ts
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Moment-specific entry point for Mezzanine UI React
|
|
3
|
+
* Import from this path to use Moment without loading other date libraries
|
|
4
|
+
*
|
|
5
|
+
* @example
|
|
6
|
+
* ```tsx
|
|
7
|
+
* import { CalendarConfigProviderMoment, CalendarLocale } from '@mezzanine-ui/react/moment';
|
|
8
|
+
*
|
|
9
|
+
* export default function RootLayout({ children }) {
|
|
10
|
+
* return (
|
|
11
|
+
* <CalendarConfigProviderMoment locale={CalendarLocale.ZH_TW}>
|
|
12
|
+
* {children}
|
|
13
|
+
* </CalendarConfigProviderMoment>
|
|
14
|
+
* );
|
|
15
|
+
* }
|
|
16
|
+
* ```
|
|
17
|
+
*/
|
|
18
|
+
export { CalendarLocale } from '@mezzanine-ui/core/calendar';
|
|
19
|
+
export type { CalendarLocaleValue } from '@mezzanine-ui/core/calendar';
|
|
20
|
+
export { default as CalendarConfigProviderMoment } from './Calendar/CalendarConfigProviderMoment';
|
|
21
|
+
export type { CalendarConfigProviderMomentProps } from './Calendar/CalendarConfigProviderMoment';
|
package/moment.js
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mezzanine-ui/react",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0-beta.0",
|
|
4
4
|
"description": "React components for mezzanine-ui",
|
|
5
5
|
"author": "Mezzanine",
|
|
6
6
|
"repository": {
|
|
@@ -28,32 +28,29 @@
|
|
|
28
28
|
"react-dom": ">=18"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
+
"@floating-ui/dom": "^1.7.4",
|
|
32
|
+
"@floating-ui/react-dom": "^2.1.6",
|
|
31
33
|
"@hello-pangea/dnd": "^18.0.1",
|
|
32
|
-
"@mezzanine-ui/core": "^0.
|
|
33
|
-
"@mezzanine-ui/icons": "^0.
|
|
34
|
-
"@mezzanine-ui/system": "^0.
|
|
35
|
-
"@
|
|
34
|
+
"@mezzanine-ui/core": "^1.0.0-beta.0",
|
|
35
|
+
"@mezzanine-ui/icons": "^1.0.0-beta.0",
|
|
36
|
+
"@mezzanine-ui/system": "^1.0.0-beta.0",
|
|
37
|
+
"@tanstack/react-virtual": "^3.13.13",
|
|
36
38
|
"@types/react-transition-group": "^4.4.12",
|
|
37
39
|
"clsx": "^2.1.1",
|
|
38
40
|
"lodash": "^4.17.21",
|
|
39
|
-
"react-popper": "^2.3.0",
|
|
40
41
|
"react-transition-group": "^4.4.5",
|
|
41
42
|
"tslib": "^2.8.1"
|
|
42
43
|
},
|
|
43
44
|
"devDependencies": {
|
|
44
|
-
"@
|
|
45
|
-
"@testing-library/react-hooks": "^8.0.1",
|
|
46
|
-
"@types/lodash": "^4.17.16",
|
|
45
|
+
"@types/lodash": "^4.17.20",
|
|
47
46
|
"@types/moment": "^2.13.0",
|
|
48
|
-
"@types/react": "^19.
|
|
49
|
-
"@types/react-dom": "^19.
|
|
50
|
-
"
|
|
51
|
-
"dayjs": "^1.11.13",
|
|
47
|
+
"@types/react": "^19.2.2",
|
|
48
|
+
"@types/react-dom": "^19.2.2",
|
|
49
|
+
"dayjs": "^1.11.19",
|
|
52
50
|
"lodash": "^4.17.21",
|
|
53
|
-
"luxon": "^3.
|
|
51
|
+
"luxon": "^3.7.2",
|
|
54
52
|
"moment": "^2.30.1",
|
|
55
|
-
"react": "^19.
|
|
56
|
-
"react-dom": "^19.
|
|
57
|
-
"react-test-renderer": "^19.1.0"
|
|
53
|
+
"react": "^19.2.0",
|
|
54
|
+
"react-dom": "^19.2.0"
|
|
58
55
|
}
|
|
59
56
|
}
|