@m4l/components 9.3.37 → 9.3.38-BE20251203-beta.2

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.
Files changed (96) hide show
  1. package/@types/types.d.ts +16 -0
  2. package/components/CommonActions/components/ActionCancel/slots/ActionsCancelSlots.d.ts +1 -1
  3. package/components/CommonActions/components/ActionFormCancel/slots/ActionFormCancelSlots.d.ts +1 -1
  4. package/components/CommonActions/components/ActionIntro/slots/ActionsIntroSlots.d.ts +1 -1
  5. package/components/EditLabel/slots/EditLabelSlots.d.ts +1 -1
  6. package/components/LoadingError/LoadingError.js +1 -1
  7. package/components/ModalDialog/slots/ModalDialogSlots.d.ts +1 -1
  8. package/components/PropertyValue/PropertyValue.js +1 -1
  9. package/components/SettingsLayout/slots/SettingsLayoutSlots.d.ts +1 -1
  10. package/components/Stepper/subcomponents/StepperButtons/StepperSubmitButton/index.js +1 -1
  11. package/components/areas/components/AreasAdmin/slots/AreasAdminSlots.d.ts +1 -1
  12. package/components/formatters/ImageFormatter/slots/ImageFormatterSlots.js +1 -1
  13. package/components/hook-form/RHFActionsGroup/RHFActionsGroup.js +2 -2
  14. package/components/hook-form/RHFAutocomplete/RHFAutocomplete.js +2 -2
  15. package/components/hook-form/RHFCheckbox/RHFCheckbox.js +2 -2
  16. package/components/hook-form/RHFCheckbox/slots/RHFCheckBoxSlots.d.ts +1 -1
  17. package/components/hook-form/RHFColorPicker/RFHColorPicker.js +2 -2
  18. package/components/hook-form/RHFColorPicker/slots/RHFColorPickerSlots.js +1 -1
  19. package/components/hook-form/RHFDatePicker/RHFDatePicker.d.ts +7 -0
  20. package/components/hook-form/RHFDatePicker/RHFDatePicker.js +85 -0
  21. package/components/hook-form/RHFDatePicker/RHFDatePicker.styles.d.ts +5 -0
  22. package/components/hook-form/RHFDatePicker/RHFDatePicker.styles.js +200 -0
  23. package/components/hook-form/RHFDatePicker/__tests__/RHFDatePicker.test.d.ts +1 -0
  24. package/components/hook-form/RHFDatePicker/constants.d.ts +4 -0
  25. package/components/hook-form/RHFDatePicker/constants.js +4 -0
  26. package/components/hook-form/RHFDatePicker/icons.d.ts +6 -0
  27. package/components/hook-form/RHFDatePicker/index.d.ts +1 -0
  28. package/components/hook-form/RHFDatePicker/index.js +1 -0
  29. package/components/hook-form/RHFDatePicker/slots/RHFDatePickerEnum.d.ts +11 -0
  30. package/components/hook-form/RHFDatePicker/slots/RHFDatePickerEnum.js +15 -0
  31. package/components/hook-form/RHFDatePicker/slots/RHFDatePickerSlots.d.ts +50 -0
  32. package/components/hook-form/RHFDatePicker/slots/RHFDatePickerSlots.js +44 -0
  33. package/components/hook-form/RHFDatePicker/slots/index.d.ts +2 -0
  34. package/components/hook-form/RHFDatePicker/slots/index.js +1 -0
  35. package/components/hook-form/RHFDatePicker/types.d.ts +61 -0
  36. package/components/hook-form/RHFDateTime/RHFDateTime.d.ts +24 -1
  37. package/components/hook-form/RHFDateTime/RHFDateTime.js +2 -2
  38. package/components/hook-form/RHFDateTimePicker/RHFDateTimePicker.d.ts +11 -0
  39. package/components/hook-form/RHFDateTimePicker/RHFDateTimePicker.js +8 -0
  40. package/components/hook-form/RHFDateTimePicker/index.d.ts +1 -0
  41. package/components/hook-form/RHFDateTimePicker/index.js +1 -0
  42. package/components/hook-form/RHFNumberInput/RHFNumberInput.js +2 -2
  43. package/components/hook-form/RHFPeriod/RHFPeriod.js +2 -2
  44. package/components/hook-form/RHFPeriod/slots/RHFPeriodSlots.d.ts +1 -1
  45. package/components/hook-form/RHFPeriod/subcomponents/Period/Period.js +1 -0
  46. package/components/hook-form/RHFSelect/RHFSelect.js +2 -2
  47. package/components/hook-form/RHFSelect/slots/RHFSlots.d.ts +1 -1
  48. package/components/hook-form/RHFTextField/RHFTextField.js +2 -2
  49. package/components/hook-form/RHFTextField/slots/RHFTextFieldSlots.d.ts +1 -1
  50. package/components/hook-form/RHFTextFieldPassword/RHFTextFieldPassword.js +2 -2
  51. package/components/hook-form/RHFTextFieldPassword/slots/RHFTextFieldPasswordSlots.d.ts +1 -1
  52. package/components/hook-form/RHFUpload/RHFUploadImage/RHFUploadImage.js +3 -1
  53. package/components/hook-form/RHFUpload/RHFUploadImage/slots/RHFUploadImageSlots.d.ts +1 -1
  54. package/components/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/UploadImage.js +4 -3
  55. package/components/hook-form/RHFUpload/RHFUploadImage/types.d.ts +4 -0
  56. package/components/hook-form/RHFUpload/RHFUploadSingleFile/RHFUploadSingleFile.js +6 -4
  57. package/components/hook-form/RHFUpload/RHFUploadSingleFile/slots/RHFUploadSingleFileSlots.d.ts +1 -1
  58. package/components/hook-form/RHFUpload/RHFUploadSingleFile/subcomponents/Preview/Preview.js +3 -2
  59. package/components/hook-form/RHFUpload/RHFUploadSingleFile/subcomponents/Preview/types.d.ts +1 -1
  60. package/components/hook-form/RHFUpload/RHFUploadSingleFile/subcomponents/UploadSingleFile/index.js +13 -4
  61. package/components/hook-form/RHFUpload/RHFUploadSingleFile/types.d.ts +4 -0
  62. package/components/hook-form/index.d.ts +2 -0
  63. package/components/mui_extended/Autocomplete/slots/AutocompleteSlots.d.ts +1 -1
  64. package/components/mui_extended/Autocomplete/slots/AutocompleteSlots.js +1 -1
  65. package/components/mui_extended/Button/slots/ButtonSlots.d.ts +1 -1
  66. package/components/mui_extended/DatePicker/DatePicker.d.ts +7 -0
  67. package/components/mui_extended/DatePicker/DatePicker.js +39 -0
  68. package/components/mui_extended/DatePicker/DatePicker.styles.d.ts +5 -0
  69. package/components/mui_extended/DatePicker/DatePicker.styles.js +193 -0
  70. package/components/mui_extended/DatePicker/__tests__/DatePicker.test.d.ts +1 -0
  71. package/components/mui_extended/DatePicker/constants.d.ts +2 -0
  72. package/components/mui_extended/DatePicker/constants.js +8 -0
  73. package/components/mui_extended/DatePicker/hooks/useDatePicker/types.d.ts +11 -0
  74. package/components/mui_extended/DatePicker/hooks/useDatePicker/useDatePicker.d.ts +9 -0
  75. package/components/mui_extended/DatePicker/hooks/useDatePicker/useDatePicker.js +200 -0
  76. package/components/mui_extended/DatePicker/icons.d.ts +4 -0
  77. package/components/mui_extended/DatePicker/icons.js +10 -0
  78. package/components/mui_extended/DatePicker/index.d.ts +2 -0
  79. package/components/mui_extended/DatePicker/index.js +1 -0
  80. package/components/mui_extended/DatePicker/slots/DatePickerEnum.d.ts +10 -0
  81. package/components/mui_extended/DatePicker/slots/DatePickerEnum.js +14 -0
  82. package/components/mui_extended/DatePicker/slots/DatePickerSlots.d.ts +44 -0
  83. package/components/mui_extended/DatePicker/slots/DatePickerSlots.js +46 -0
  84. package/components/mui_extended/DatePicker/types.d.ts +32 -0
  85. package/components/mui_extended/LoadingButton/index.js +1 -0
  86. package/components/mui_extended/LoadingButton/slots/LoadingButtonSlots.d.ts +1 -1
  87. package/components/mui_extended/NavLink/constants.d.ts +1 -1
  88. package/components/mui_extended/Select/slots/SelectSlots.d.ts +1 -1
  89. package/components/mui_extended/Select/slots/SelectSlots.js +1 -1
  90. package/components/mui_extended/TextField/TextField.js +2 -2
  91. package/components/mui_extended/TextField/TextField.styles.js +1 -1
  92. package/components/mui_extended/TextField/slots/TextFieldSlots.d.ts +1 -1
  93. package/components/mui_extended/ToggleButton/slots/ToggleButtonSlots.d.ts +1 -1
  94. package/components/mui_extended/index.d.ts +1 -0
  95. package/index.js +46 -40
  96. package/package.json +1 -1
@@ -1,3 +1,3 @@
1
- export declare const ToggleButtonRootStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../Button').ButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>, "value" | "size" | "children" | "title" | "component" | "name" | "id" | "type" | "disabled" | "action" | "hidden" | "color" | "content" | "style" | "variant" | "translate" | "className" | "classes" | "sx" | "form" | "label" | "slot" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "href" | "skeletonWidth" | "startIcon" | "endIcon" | keyof import('react').RefAttributes<HTMLButtonElement> | "disableElevation" | "fullWidth"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('..').ToggleButtonOwnerState> & Record<string, unknown> & {
1
+ export declare const ToggleButtonRootStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../Button').ButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>, "value" | "size" | "children" | "title" | "component" | "name" | "id" | "type" | "disabled" | "action" | "hidden" | "color" | "content" | "style" | "variant" | "translate" | "className" | "classes" | "sx" | "form" | "label" | "slot" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "href" | "skeletonWidth" | "startIcon" | "endIcon" | keyof import('react').RefAttributes<HTMLButtonElement> | "fullWidth" | "disableElevation"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('..').ToggleButtonOwnerState> & Record<string, unknown> & {
2
2
  ownerState: Partial<import('..').ToggleButtonOwnerState> & Record<string, unknown>;
3
3
  }, {}, {}>;
@@ -30,3 +30,4 @@ export * from './ToggleIconButton';
30
30
  export * from './NavLink';
31
31
  export * from './Dialog';
32
32
  export * from './Divider';
33
+ export * from './DatePicker';
package/index.js CHANGED
@@ -121,8 +121,9 @@ import { T as T16 } from "./components/mui_extended/ToggleIconButton/slots/Toggl
121
121
  import { N as N2 } from "./components/mui_extended/NavLink/NavLink.js";
122
122
  import { D as D6 } from "./components/mui_extended/Dialog/Dialog.js";
123
123
  import { D as D7 } from "./components/mui_extended/Divider/Divider.js";
124
+ import { D as D8 } from "./components/mui_extended/DatePicker/DatePicker.js";
124
125
  import { B as B6 } from "./components/formatters/BooleanFormatter/BooleanFormatter.js";
125
- import { D as D8, g as g12 } from "./components/formatters/DateFormatter/DateFormatter.js";
126
+ import { D as D9, g as g12 } from "./components/formatters/DateFormatter/DateFormatter.js";
126
127
  import { U, g as g13 } from "./components/formatters/UncertaintyFormatter/UncertaintyFormatter.js";
127
128
  import { P as P3, g as g14 } from "./components/formatters/PointsFormatter/PointsFormatter.js";
128
129
  import { C as C20, g as g15 } from "./components/formatters/ConcatenatedFormatter/ConcatenatedFormatter.js";
@@ -133,7 +134,7 @@ import { C as C21 } from "./components/formatters/ColorFormatter/ColorFormatter.
133
134
  import { I as I4 } from "./components/formatters/ImageFormatter/ImageFormatter.js";
134
135
  import { C as C22 } from "./components/formatters/ChipStatusFormatter/ChipStatusFormatter.js";
135
136
  import { g as g17 } from "./components/formatters/DistanceToNowFormatter/dictionary.js";
136
- import { D as D9 } from "./components/formatters/DistanceToNowFormatter/DistanceToNowFormatter.js";
137
+ import { D as D10 } from "./components/formatters/DistanceToNowFormatter/DistanceToNowFormatter.js";
137
138
  import { u as u17 } from "./components/formatters/DistanceToNowFormatter/hooks/useDistanceToNowFormatter.js";
138
139
  import { g as g18 } from "./components/formatters/dictionary.js";
139
140
  import { F as F2 } from "./components/FormContainer/FormContainer.js";
@@ -149,27 +150,29 @@ import { g as g19 } from "./components/hook-form/RHFAutocomplete/dictionary.js";
149
150
  import { R as R7 } from "./components/hook-form/RHFAutocompleteAsync/RHFAutocompleteAsync.js";
150
151
  import { g as g20 } from "./components/hook-form/RHFAutocompleteAsync/dictionary.js";
151
152
  import { R as R8 } from "./components/hook-form/RHFDateTime/RHFDateTime.js";
152
- import { R as R9 } from "./components/hook-form/RHFMultiCheckbox/index.js";
153
- import { R as R10 } from "./components/hook-form/RHFSelect/RHFSelect.js";
154
- import { R as R11 } from "./components/hook-form/RHFHelperError/index.js";
155
- import { R as R12 } from "./components/hook-form/RHFRadioGroup/RHFRadioGroup.js";
156
- import { R as R13 } from "./components/hook-form/RHFUpload/RHFUploadSingleFile/RHFUploadSingleFile.js";
157
- import { R as R14 } from "./components/hook-form/RHFColorPicker/RFHColorPicker.js";
158
- import { R as R15 } from "./components/hook-form/RHFCheckbox/RHFCheckbox.js";
159
- import { R as R16 } from "./components/hook-form/RHFTextField/RHFTextField.js";
160
- import { R as R17 } from "./components/hook-form/RHFTextFieldPassword/RHFTextFieldPassword.js";
153
+ import { R as R9 } from "./components/hook-form/RHFDateTimePicker/RHFDateTimePicker.js";
154
+ import { R as R10 } from "./components/hook-form/RHFDatePicker/RHFDatePicker.js";
155
+ import { R as R11 } from "./components/hook-form/RHFMultiCheckbox/index.js";
156
+ import { R as R12 } from "./components/hook-form/RHFSelect/RHFSelect.js";
157
+ import { R as R13 } from "./components/hook-form/RHFHelperError/index.js";
158
+ import { R as R14 } from "./components/hook-form/RHFRadioGroup/RHFRadioGroup.js";
159
+ import { R as R15 } from "./components/hook-form/RHFUpload/RHFUploadSingleFile/RHFUploadSingleFile.js";
160
+ import { R as R16 } from "./components/hook-form/RHFColorPicker/RFHColorPicker.js";
161
+ import { R as R17 } from "./components/hook-form/RHFCheckbox/RHFCheckbox.js";
162
+ import { R as R18 } from "./components/hook-form/RHFTextField/RHFTextField.js";
163
+ import { R as R19 } from "./components/hook-form/RHFTextFieldPassword/RHFTextFieldPassword.js";
161
164
  import { g as g21 } from "./components/hook-form/RHFPeriod/subcomponents/Period/dictionary.js";
162
165
  import { r } from "./components/hook-form/RHFPeriod/RHFPeriod.styles.js";
163
- import { R as R18 } from "./components/hook-form/RHFPeriod/RHFPeriod.js";
164
- import { R as R19 } from "./components/hook-form/RHFPeriod/constants.js";
165
- import { R as R20 } from "./components/hook-form/RHFPeriod/slots/RHFPeriodEnum.js";
166
- import { N as N3, P as P6, R as R21, S as S7 } from "./components/hook-form/RHFPeriod/slots/RHFPeriodSlots.js";
167
- import { R as R22 } from "./components/hook-form/RHFNumberInput/RHFNumberInput.js";
168
- import { R as R23 } from "./components/hook-form/RHFUpload/RHFUploadImage/RHFUploadImage.js";
166
+ import { R as R20 } from "./components/hook-form/RHFPeriod/RHFPeriod.js";
167
+ import { R as R21 } from "./components/hook-form/RHFPeriod/constants.js";
168
+ import { R as R22 } from "./components/hook-form/RHFPeriod/slots/RHFPeriodEnum.js";
169
+ import { N as N3, P as P6, R as R23, S as S7 } from "./components/hook-form/RHFPeriod/slots/RHFPeriodSlots.js";
170
+ import { R as R24 } from "./components/hook-form/RHFNumberInput/RHFNumberInput.js";
171
+ import { R as R25 } from "./components/hook-form/RHFUpload/RHFUploadImage/RHFUploadImage.js";
169
172
  import { V as V2, b as b4, a as a9 } from "./components/hook-form/RHFormProvider/types.js";
170
- import { F as F3, R as R24, u as u18 } from "./components/hook-form/RHFormProvider/RHFormProvider.js";
173
+ import { F as F3, R as R26, u as u18 } from "./components/hook-form/RHFormProvider/RHFormProvider.js";
171
174
  import { d as d4, a as a10, b as b5, c as c3 } from "./components/hook-form/RHFormProvider/schema.js";
172
- import { R as R25 } from "./components/hook-form/RHFActionsGroup/RHFActionsGroup.js";
175
+ import { R as R27 } from "./components/hook-form/RHFActionsGroup/RHFActionsGroup.js";
173
176
  import { I as I5 } from "./components/Icon/Icon.js";
174
177
  import { I as I6 } from "./components/Image/Image.js";
175
178
  import { L as L6 } from "./components/Label/Label.js";
@@ -209,7 +212,7 @@ import { u as u20 } from "./components/WindowBase/hooks/useWindowToolsMF/index.j
209
212
  import { u as u21, a as a13 } from "./components/WindowBase/hooks/useDynamicMFParameters/index.js";
210
213
  import { M as M7, W as W3, a as a14 } from "./components/WindowBase/contexts/WindowToolsMFContext/WindowToolsMFContext.js";
211
214
  import { c as c4 } from "./components/WindowBase/contexts/DynamicMFParmsContext/store.js";
212
- import { D as D10, a as a15, M as M8 } from "./components/WindowBase/contexts/DynamicMFParmsContext/DynamicMFParmsContext.js";
215
+ import { D as D11, a as a15, M as M8 } from "./components/WindowBase/contexts/DynamicMFParmsContext/DynamicMFParmsContext.js";
213
216
  import { W as W4 } from "./components/WindowConfirm/WindowConfirm.js";
214
217
  import { a as a16, g as g29 } from "./components/ModalDialog/dictionary.js";
215
218
  import { M as M9 } from "./components/ModalDialog/ModalDialog.js";
@@ -316,13 +319,14 @@ export {
316
319
  f as DATAGRID_SEMANTIC_WIDTHS,
317
320
  D as DICTIONARY,
318
321
  D2 as DataGrid,
319
- D8 as DateFormatter,
322
+ D9 as DateFormatter,
323
+ D8 as DatePicker,
320
324
  D6 as Dialog,
321
- D9 as DistanceToNowFormatter,
325
+ D10 as DistanceToNowFormatter,
322
326
  D7 as Divider,
323
327
  D3 as DragResizeWindowRND,
324
328
  D4 as DynamicFilter,
325
- D10 as DynamicMFParmsContext,
329
+ D11 as DynamicMFParmsContext,
326
330
  a15 as DynamicMFParmsProvider,
327
331
  D5 as DynamicSort,
328
332
  F as FixedSizeList,
@@ -382,26 +386,28 @@ export {
382
386
  P11 as PrintingSystem,
383
387
  P as PropagateLoaderSpinner,
384
388
  P12 as PropertyValue,
385
- R25 as RHFActionsGroup,
389
+ R27 as RHFActionsGroup,
386
390
  R6 as RHFAutocomplete,
387
391
  R7 as RHFAutocompleteAsync,
388
- R15 as RHFCheckbox,
389
- R14 as RHFColorPicker,
392
+ R17 as RHFCheckbox,
393
+ R16 as RHFColorPicker,
394
+ R10 as RHFDatePicker,
390
395
  R8 as RHFDateTime,
391
- R11 as RHFHelperError,
392
- R9 as RHFMultiCheckbox,
393
- R22 as RHFNumberInput,
394
- R18 as RHFPeriod,
395
- R21 as RHFPeriodRootStyled,
396
- R20 as RHFPeriodSlots,
397
- R12 as RHFRadioGroup,
398
- R10 as RHFSelect,
399
- R16 as RHFTextField,
400
- R17 as RHFTextFieldPassword,
401
- R23 as RHFUploadImage,
402
- R13 as RHFUploadSingleFile,
403
- R19 as RHF_PERIOD_KEY_COMPONENT,
404
- R24 as RHFormProvider,
396
+ R9 as RHFDateTimePicker,
397
+ R13 as RHFHelperError,
398
+ R11 as RHFMultiCheckbox,
399
+ R24 as RHFNumberInput,
400
+ R20 as RHFPeriod,
401
+ R23 as RHFPeriodRootStyled,
402
+ R22 as RHFPeriodSlots,
403
+ R14 as RHFRadioGroup,
404
+ R12 as RHFSelect,
405
+ R18 as RHFTextField,
406
+ R19 as RHFTextFieldPassword,
407
+ R25 as RHFUploadImage,
408
+ R15 as RHFUploadSingleFile,
409
+ R21 as RHF_PERIOD_KEY_COMPONENT,
410
+ R26 as RHFormProvider,
405
411
  R4 as RadioButton,
406
412
  R3 as ReactJsonViewer,
407
413
  R as Resizable,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@m4l/components",
3
- "version": "9.3.37",
3
+ "version": "9.3.38-BE20251203-beta.2",
4
4
  "license": "UNLICENSED",
5
5
  "description": "M4L Components",
6
6
  "lint-staged": {