@m4l/components 9.3.35-BE20251128-beta.1 → 9.3.35-JT27112025.beta.1

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 (183) hide show
  1. package/components/AccountPopover/slots/AccountPopoverSlots.d.ts +6 -6
  2. package/components/AppBar/slots/AppBarSlots.d.ts +1 -1
  3. package/components/Chip/slots/ChipSlots.d.ts +2 -2
  4. package/components/CommonActions/components/ActionCancel/slots/ActionsCancelSlots.d.ts +1 -1
  5. package/components/CommonActions/components/ActionFormCancel/slots/ActionFormCancelSlots.d.ts +1 -1
  6. package/components/CommonActions/components/ActionIntro/slots/ActionsIntroSlots.d.ts +1 -1
  7. package/components/CommonActions/components/ActionsContainer/slots/ActionsContainerSlots.d.ts +1 -1
  8. package/components/DataGrid/contexts/DataGridContext/index.js +39 -268
  9. package/components/DataGrid/contexts/DataGridContext/types.d.ts +3 -20
  10. package/components/DataGrid/helpers/getAllViewModes/getAllViewModes.d.ts +19 -0
  11. package/components/DataGrid/helpers/getAllViewModes/getAllViewModes.js +6 -0
  12. package/components/DataGrid/helpers/getAllViewModes/getAllViewModes.test.d.ts +1 -0
  13. package/components/DataGrid/helpers/getAllViewModes/index.d.ts +1 -0
  14. package/components/DataGrid/helpers/getAllViewModes/index.js +1 -0
  15. package/components/DataGrid/helpers/getColumnsWidth/getColumnsWidth.d.ts +47 -0
  16. package/components/DataGrid/helpers/getColumnsWidth/getColumnsWidth.js +32 -0
  17. package/components/DataGrid/helpers/getColumnsWidth/getColumnsWidth.test.d.ts +1 -0
  18. package/components/DataGrid/helpers/getColumnsWidth/index.d.ts +1 -0
  19. package/components/DataGrid/helpers/getColumnsWidth/index.js +1 -0
  20. package/components/DataGrid/helpers/getIndexRowHeightVariant/getIndexRowHeightVariant.d.ts +24 -0
  21. package/components/DataGrid/helpers/getIndexRowHeightVariant/getIndexRowHeightVariant.js +12 -0
  22. package/components/DataGrid/helpers/getIndexRowHeightVariant/getIndexRowHeightVariant.test.d.ts +1 -0
  23. package/components/DataGrid/helpers/getIndexRowHeightVariant/index.d.ts +1 -0
  24. package/components/DataGrid/helpers/getIndexRowHeightVariant/index.js +1 -0
  25. package/components/DataGrid/helpers/getInitialColumnsConfig/getInitialColumnsConfig.d.ts +48 -0
  26. package/components/DataGrid/helpers/getInitialColumnsConfig/getInitialColumnsConfig.js +35 -0
  27. package/components/DataGrid/helpers/getInitialColumnsConfig/getInitialColumnsConfig.test.d.ts +1 -0
  28. package/components/DataGrid/helpers/getInitialColumnsConfig/index.d.ts +1 -0
  29. package/components/DataGrid/helpers/getInitialColumnsConfig/index.js +1 -0
  30. package/components/DataGrid/helpers/getViewSpecificConfig/getViewSpecificConfig.d.ts +28 -0
  31. package/components/DataGrid/helpers/getViewSpecificConfig/getViewSpecificConfig.js +22 -0
  32. package/components/DataGrid/helpers/getViewSpecificConfig/getViewSpecificConfig.test.d.ts +1 -0
  33. package/components/DataGrid/helpers/getViewSpecificConfig/index.d.ts +1 -0
  34. package/components/DataGrid/helpers/getViewSpecificConfig/index.js +1 -0
  35. package/components/DataGrid/helpers/getViewSuffix/getViewSuffix.d.ts +24 -0
  36. package/components/DataGrid/helpers/getViewSuffix/getViewSuffix.js +9 -0
  37. package/components/DataGrid/helpers/getViewSuffix/getViewSuffix.test.d.ts +1 -0
  38. package/components/DataGrid/helpers/getViewSuffix/index.d.ts +1 -0
  39. package/components/DataGrid/helpers/getViewSuffix/index.js +1 -0
  40. package/components/DataGrid/helpers/index.d.ts +12 -0
  41. package/components/DataGrid/helpers/index.js +1 -0
  42. package/components/DataGrid/helpers/loadViewConfig/index.d.ts +1 -0
  43. package/components/DataGrid/helpers/loadViewConfig/index.js +1 -0
  44. package/components/DataGrid/helpers/loadViewConfig/loadViewConfig.d.ts +23 -0
  45. package/components/DataGrid/helpers/loadViewConfig/loadViewConfig.js +12 -0
  46. package/components/DataGrid/helpers/loadViewConfig/loadViewConfig.test.d.ts +1 -0
  47. package/components/DataGrid/helpers/saveColumnsWidth/index.d.ts +1 -0
  48. package/components/DataGrid/helpers/saveColumnsWidth/index.js +1 -0
  49. package/components/DataGrid/helpers/saveColumnsWidth/saveColumnsWidth.d.ts +52 -0
  50. package/components/DataGrid/helpers/saveColumnsWidth/saveColumnsWidth.js +18 -0
  51. package/components/DataGrid/helpers/saveColumnsWidth/saveColumnsWidth.test.d.ts +1 -0
  52. package/components/DataGrid/helpers/saveViewConfig/index.d.ts +1 -0
  53. package/components/DataGrid/helpers/saveViewConfig/index.js +1 -0
  54. package/components/DataGrid/helpers/saveViewConfig/saveViewConfig.d.ts +35 -0
  55. package/components/DataGrid/helpers/saveViewConfig/saveViewConfig.js +15 -0
  56. package/components/DataGrid/helpers/saveViewConfig/saveViewConfig.test.d.ts +1 -0
  57. package/components/DataGrid/helpers/saveViewMode/index.d.ts +1 -0
  58. package/components/DataGrid/helpers/saveViewMode/index.js +1 -0
  59. package/components/DataGrid/helpers/saveViewMode/saveViewMode.d.ts +33 -0
  60. package/components/DataGrid/helpers/saveViewMode/saveViewMode.js +13 -0
  61. package/components/DataGrid/helpers/saveViewMode/saveViewMode.test.d.ts +1 -0
  62. package/components/DataGrid/hooks/index.d.ts +6 -0
  63. package/components/DataGrid/hooks/index.js +1 -0
  64. package/components/DataGrid/hooks/useChangeColumnsConfig/index.d.ts +1 -0
  65. package/components/DataGrid/hooks/useChangeColumnsConfig/index.js +1 -0
  66. package/components/DataGrid/hooks/useChangeColumnsConfig/useChangeColumnsConfig.d.ts +9 -0
  67. package/components/DataGrid/hooks/useChangeColumnsConfig/useChangeColumnsConfig.js +27 -0
  68. package/components/DataGrid/hooks/useChangeColumnsConfig/useChangeColumnsConfig.test.d.ts +1 -0
  69. package/components/DataGrid/hooks/useChangeColumnsOrder/index.d.ts +1 -0
  70. package/components/DataGrid/hooks/useChangeColumnsOrder/index.js +1 -0
  71. package/components/DataGrid/hooks/useChangeColumnsOrder/useChangeColumnsOrder.d.ts +10 -0
  72. package/components/DataGrid/hooks/useChangeColumnsOrder/useChangeColumnsOrder.js +34 -0
  73. package/components/DataGrid/hooks/useChangeColumnsOrder/useChangeColumnsOrder.test.d.ts +1 -0
  74. package/components/DataGrid/hooks/useColumnsWidth/index.d.ts +1 -0
  75. package/components/DataGrid/hooks/useColumnsWidth/index.js +1 -0
  76. package/components/DataGrid/hooks/useColumnsWidth/useColumnsWidth.d.ts +11 -0
  77. package/components/DataGrid/hooks/useColumnsWidth/useColumnsWidth.js +29 -0
  78. package/components/DataGrid/hooks/useColumnsWidth/useColumnsWidth.test.d.ts +1 -0
  79. package/components/DataGrid/hooks/useRowHeight/index.d.ts +1 -0
  80. package/components/DataGrid/hooks/useRowHeight/index.js +1 -0
  81. package/components/DataGrid/hooks/useRowHeight/useRowHeight.d.ts +28 -0
  82. package/components/DataGrid/hooks/useRowHeight/useRowHeight.js +51 -0
  83. package/components/DataGrid/hooks/useRowHeight/useRowHeight.test.d.ts +1 -0
  84. package/components/DataGrid/hooks/useViewConfig/index.d.ts +1 -0
  85. package/components/DataGrid/hooks/useViewConfig/index.js +1 -0
  86. package/components/DataGrid/hooks/useViewConfig/useViewConfig.d.ts +9 -0
  87. package/components/DataGrid/hooks/useViewConfig/useViewConfig.js +30 -0
  88. package/components/DataGrid/hooks/useViewConfig/useViewConfig.test.d.ts +1 -0
  89. package/components/DataGrid/hooks/useViewMode/index.d.ts +1 -0
  90. package/components/DataGrid/hooks/useViewMode/index.js +1 -0
  91. package/components/DataGrid/hooks/useViewMode/useViewMode.d.ts +44 -0
  92. package/components/DataGrid/hooks/useViewMode/useViewMode.js +48 -0
  93. package/components/DataGrid/hooks/useViewMode/useViewMode.test.d.ts +1 -0
  94. package/components/DataGrid/index.d.ts +5 -4
  95. package/components/DataGrid/types.helpers.d.ts +55 -0
  96. package/components/DataGrid/types.helpers.js +1 -0
  97. package/components/DataGrid/types.hooks.d.ts +79 -0
  98. package/components/DynamicFilter/slots/dynamicFilterSlots.d.ts +2 -2
  99. package/components/DynamicSort/slots/DynamicSortSlots.d.ts +2 -2
  100. package/components/EditLabel/constants.d.ts +1 -1
  101. package/components/EditLabel/slots/EditLabelSlots.d.ts +4 -4
  102. package/components/HelperError/slots/HelperErrorSlots.d.ts +1 -1
  103. package/components/ImageText/constants.d.ts +1 -1
  104. package/components/ImageText/slots/ImageTextSlots.d.ts +2 -2
  105. package/components/Label/slots/LabelSlots.d.ts +3 -3
  106. package/components/LanguagePopover/slots/LanguagePopoverSlots.d.ts +1 -1
  107. package/components/LoadingError/slots/LoadingErrorSlots.d.ts +1 -1
  108. package/components/MenuActions/slots/MenuActionsSlots.d.ts +2 -2
  109. package/components/ModalDialog/slots/ModalDialogSlots.d.ts +2 -2
  110. package/components/NumberInput/slots/NumberInputSlots.d.ts +2 -2
  111. package/components/ObjectLogs/slots/ObjectLogsSlots.d.ts +1 -1
  112. package/components/Pager/slots/PagerSlots.d.ts +3 -3
  113. package/components/PaperForm/slots/PaperFormSlots.d.ts +1 -1
  114. package/components/SettingsLayout/slots/SettingsLayoutSlots.d.ts +3 -3
  115. package/components/SideBar/slots/SideBarSlots.d.ts +1 -1
  116. package/components/Stepper/slots/StepperSlot.d.ts +4 -4
  117. package/components/TabsNavigator/slots/TabsNavigatorSlots.d.ts +2 -2
  118. package/components/ToastContainer/slots/toastContainerSlots.d.ts +4 -4
  119. package/components/WindowBase/slots/WindowBaseSlots.d.ts +2 -2
  120. package/components/animate/variants/background.d.ts +9 -9
  121. package/components/animate/variants/bounce.d.ts +9 -9
  122. package/components/animate/variants/fade.d.ts +20 -20
  123. package/components/animate/variants/flip.d.ts +6 -6
  124. package/components/animate/variants/rotate.d.ts +3 -3
  125. package/components/animate/variants/scale.d.ts +6 -6
  126. package/components/animate/variants/slide.d.ts +16 -16
  127. package/components/animate/variants/transition.d.ts +3 -3
  128. package/components/animate/variants/zoom.d.ts +15 -15
  129. package/components/areas/components/AreasAdmin/slots/AreasAdminSlots.d.ts +3 -3
  130. package/components/extended/React-Resizable/Resizable/slots/ResizableSlots.d.ts +1 -1
  131. package/components/extended/React-Resizable/ResizableBox/slots/ResizableBoxSlots.d.ts +1 -1
  132. package/components/extended/React-resizable-panels/slots/SplitLayoutSlots.d.ts +6 -6
  133. package/components/formatters/BooleanFormatter/slots/BooleanFormatterSlots.d.ts +1 -1
  134. package/components/formatters/ConcatenatedFormatter/slots/ConcatenatedFormatterSlots.d.ts +1 -1
  135. package/components/formatters/DateFormatter/slots/DateFormatterSlots.d.ts +1 -1
  136. package/components/formatters/DistanceToNowFormatter/slots/DistanceToNowFormatterSlots.d.ts +1 -1
  137. package/components/formatters/ImageFormatter/constants.d.ts +1 -1
  138. package/components/formatters/ImageFormatter/slots/ImageFormatterSlots.d.ts +1 -1
  139. package/components/formatters/PeriodFormatter/slots/PeriodFormatterSlots.d.ts +1 -1
  140. package/components/formatters/PointsFormatter/slots/ointsFormatterSlots.d.ts +1 -1
  141. package/components/formatters/PriceFormatter/slots/PriceFormatterSlots.d.ts +1 -1
  142. package/components/formatters/UncertaintyFormatter/slots/UncertaintyFormatterSlots.d.ts +1 -1
  143. package/components/hook-form/RHFCheckbox/slots/RHFCheckBoxSlots.d.ts +1 -1
  144. package/components/hook-form/RHFColorPicker/slots/RHFColorPickerSlots.d.ts +1 -1
  145. package/components/hook-form/RHFPeriod/slots/RHFPeriodSlots.d.ts +1 -1
  146. package/components/hook-form/RHFSelect/constants.d.ts +1 -1
  147. package/components/hook-form/RHFSelect/slots/RHFSlots.d.ts +1 -1
  148. package/components/hook-form/RHFTextField/slots/RHFTextFieldSlots.d.ts +1 -1
  149. package/components/hook-form/RHFTextFieldPassword/slots/RHFTextFieldPasswordSlots.d.ts +2 -2
  150. package/components/hook-form/RHFUpload/RHFUploadImage/slots/RHFUploadImageSlots.d.ts +3 -3
  151. package/components/hook-form/RHFUpload/RHFUploadSingleFile/constants.d.ts +1 -1
  152. package/components/hook-form/RHFUpload/RHFUploadSingleFile/slots/RHFUploadSingleFileSlots.d.ts +7 -7
  153. package/components/hook-form/RHFormProvider/classes/index.d.ts +1 -1
  154. package/components/mui_extended/Accordion/slots/AccordionSlots.d.ts +3 -3
  155. package/components/mui_extended/Autocomplete/slots/AutocompleteSlots.d.ts +6 -6
  156. package/components/mui_extended/Avatar/slots/AvatarSlots.d.ts +1 -1
  157. package/components/mui_extended/Badge/slots/BadgeSlots.d.ts +1 -1
  158. package/components/mui_extended/Button/slots/ButtonSlots.d.ts +2 -2
  159. package/components/mui_extended/CheckBox/slots/CheckBoxSlots.d.ts +2 -2
  160. package/components/mui_extended/DateTimePicker/slots/DateTimePickerSlots.d.ts +4 -4
  161. package/components/mui_extended/Divider/slots/DividerSlots.d.ts +1 -1
  162. package/components/mui_extended/IconButton/constants.d.ts +1 -1
  163. package/components/mui_extended/IconButton/slots/IconButtonSlots.d.ts +1 -1
  164. package/components/mui_extended/LoadingButton/slots/LoadingButtonSlots.d.ts +1 -1
  165. package/components/mui_extended/MenuDivider/slots/MenuDividerSlots.d.ts +1 -1
  166. package/components/mui_extended/MenuItem/slots/MenuItemSlots.d.ts +2 -2
  167. package/components/mui_extended/NavLink/slots/NavLinkSlots.d.ts +1 -1
  168. package/components/mui_extended/Popper/slots/PopperStlots.d.ts +1 -1
  169. package/components/mui_extended/Select/slots/SelectSlots.d.ts +5 -5
  170. package/components/mui_extended/Skeleton/Slots/skeletonSlots.d.ts +1 -1
  171. package/components/mui_extended/Stack/slots/StackSlot.d.ts +1 -1
  172. package/components/mui_extended/Tab/Slots/TabSlots.d.ts +2 -2
  173. package/components/mui_extended/Tabs/slots/TabsSlots.d.ts +1 -1
  174. package/components/mui_extended/TextField/slots/TextFieldSlots.d.ts +4 -4
  175. package/components/mui_extended/TimePicker/slots/TimePickerSlots.d.ts +3 -3
  176. package/components/mui_extended/ToggleButton/slots/ToggleButtonSlots.d.ts +1 -1
  177. package/components/mui_extended/ToggleIconButton/slots/ToggleIconButtonSlots.d.ts +1 -1
  178. package/components/mui_extended/Tooltip/constants.d.ts +1 -1
  179. package/components/mui_extended/Typography/slots/typographySlots.d.ts +1 -1
  180. package/hooks/useDataGridPersistence/constants.d.ts +1 -0
  181. package/hooks/useDataGridPersistence/constants.js +4 -2
  182. package/hooks/useDataGridPersistence/useDataGridPersistence.js +5 -2
  183. package/package.json +3 -3
@@ -0,0 +1 @@
1
+ export { useRowHeight } from './useRowHeight';
@@ -0,0 +1,28 @@
1
+ import { UseRowHeightParams, UseRowHeightReturn } from '../../types.hooks';
2
+ /**
3
+ * Hook para manejar el estado de la altura de las filas del DataGrid.
4
+ *
5
+ * Soporta dos modos:
6
+ * - **Modo fijo**: rowHeights y rowHeaderHeights son números fijos
7
+ * - **Modo variable**: rowHeights y rowHeaderHeights son arrays de 3 elementos [compact, standard, confortable]
8
+ * @param params - Parámetros del hook
9
+ * @returns Estado actual y función para cambiar el variant
10
+ * @throws Error si rowHeights y rowHeaderHeights no son del mismo tipo
11
+ * @throws Error si los arrays no tienen exactamente 3 elementos
12
+ * @throws Error si se intenta cambiar el variant en modo fijo
13
+ * @example
14
+ * // Modo variable (permite cambiar variant)
15
+ * const { currentRowHeightVariant, setRowHeightVariant } = useRowHeight({
16
+ * rowHeights: [32, 40, 48],
17
+ * rowHeaderHeights: [36, 44, 52],
18
+ * initialRowHeightVariant: 'standard',
19
+ * });
20
+ *
21
+ * // Modo fijo (altura constante)
22
+ * const { currentRowHeightVariant } = useRowHeight({
23
+ * rowHeights: 40,
24
+ * rowHeaderHeights: 44,
25
+ * initialRowHeightVariant: 'standard',
26
+ * });
27
+ */
28
+ export declare const useRowHeight: ({ rowHeights, rowHeaderHeights, initialRowHeightVariant, }: UseRowHeightParams) => UseRowHeightReturn;
@@ -0,0 +1,51 @@
1
+ import { useState, useCallback } from "react";
2
+ import { g as getIndexRowHeightVariant } from "../../helpers/getIndexRowHeightVariant/getIndexRowHeightVariant.js";
3
+ const useRowHeight = ({
4
+ rowHeights,
5
+ rowHeaderHeights,
6
+ initialRowHeightVariant
7
+ }) => {
8
+ const [currentRowHeightVariant, setCurrentRowHeightVariant] = useState(() => {
9
+ if (typeof rowHeights !== typeof rowHeaderHeights) {
10
+ throw new Error("Must be same type rowheights and rowHeaderTypes");
11
+ }
12
+ if (typeof rowHeights === "number" && typeof rowHeaderHeights === "number") {
13
+ return {
14
+ rowHVariant: "compact",
15
+ rowHeight: rowHeights,
16
+ rowHeaderHeight: rowHeaderHeights
17
+ };
18
+ }
19
+ if (typeof rowHeights !== "number" && rowHeights.length !== 3) {
20
+ throw new Error("Must be 3 heights");
21
+ }
22
+ if (typeof rowHeaderHeights !== "number" && rowHeaderHeights.length !== 3) {
23
+ throw new Error("Must be 3 HeaderHeights");
24
+ }
25
+ return {
26
+ rowHVariant: initialRowHeightVariant,
27
+ rowHeight: typeof rowHeights !== "number" ? rowHeights[getIndexRowHeightVariant(initialRowHeightVariant)] : rowHeights,
28
+ rowHeaderHeight: typeof rowHeaderHeights !== "number" ? rowHeaderHeights[getIndexRowHeightVariant(initialRowHeightVariant)] : rowHeaderHeights
29
+ };
30
+ });
31
+ const setRowHeightVariant = useCallback(
32
+ (newVariant) => {
33
+ if (typeof rowHeights === "number" || typeof rowHeaderHeights === "number") {
34
+ throw new Error("Only use setCurrentRowHeight with vector rowHeights");
35
+ }
36
+ setCurrentRowHeightVariant({
37
+ rowHVariant: newVariant,
38
+ rowHeight: rowHeights[getIndexRowHeightVariant(newVariant)],
39
+ rowHeaderHeight: rowHeaderHeights[getIndexRowHeightVariant(newVariant)]
40
+ });
41
+ },
42
+ [rowHeights, rowHeaderHeights]
43
+ );
44
+ return {
45
+ currentRowHeightVariant,
46
+ setRowHeightVariant
47
+ };
48
+ };
49
+ export {
50
+ useRowHeight as u
51
+ };
@@ -0,0 +1 @@
1
+ export { useViewConfig } from './useViewConfig';
@@ -0,0 +1,9 @@
1
+ import { UseViewConfigReturn } from '../../types.hooks';
2
+ /**
3
+ * Hook para manejar el estado de la configuración de columnas por vista.
4
+ *
5
+ * Maneja un estado genérico unificado para las configuraciones de TODAS las vistas
6
+ * (table, cards, etc).
7
+ * @returns Estado y funciones para manejar la configuración de vistas
8
+ */
9
+ export declare const useViewConfig: () => UseViewConfigReturn;
@@ -0,0 +1,30 @@
1
+ import { useState, useCallback } from "react";
2
+ const useViewConfig = () => {
3
+ const [viewConfig, setViewConfig] = useState(() => ({
4
+ table: [],
5
+ cards: []
6
+ }));
7
+ const getConfigColumns = useCallback(
8
+ (viewModeParam) => {
9
+ return viewConfig[viewModeParam];
10
+ },
11
+ [viewConfig]
12
+ );
13
+ const updateConfigColumns = useCallback(
14
+ (viewModeParam, config) => {
15
+ setViewConfig((prev) => ({
16
+ ...prev,
17
+ [viewModeParam]: config
18
+ }));
19
+ },
20
+ []
21
+ );
22
+ return {
23
+ viewConfig,
24
+ getConfigColumns,
25
+ updateConfigColumns
26
+ };
27
+ };
28
+ export {
29
+ useViewConfig as u
30
+ };
@@ -0,0 +1 @@
1
+ export { useViewMode } from './useViewMode';
@@ -0,0 +1,44 @@
1
+ import { UseViewModeParams, UseViewModeReturn } from '../../types.hooks';
2
+ /**
3
+ * Hook para manejar el estado del modo de visualización (table/cards).
4
+ *
5
+ * ## Precedencia para determinar el viewMode inicial
6
+ *
7
+ * 1. `viewMode` prop - Modo controlado (el padre controla completamente el estado)
8
+ * 2. localStorage - Preferencia del usuario guardada previamente
9
+ * 3. `defaultViewMode` prop - Valor inicial establecido por el desarrollador
10
+ * 4. `useIsMobile()` - Fallback automático según el dispositivo:
11
+ * - Móvil: 'cards'
12
+ * - Escritorio: 'table'
13
+ *
14
+ * ## Persistencia del viewMode
15
+ *
16
+ * - Si `onChangeUserColumns` está definido → Guarda en backend (cookies de red)
17
+ * - Si no está definido → Fallback a localStorage
18
+ *
19
+ * ## Modo controlado vs no controlado
20
+ *
21
+ * - **Controlado**: Cuando se pasa `viewMode` prop, el padre controla el estado
22
+ * - **No controlado**: El hook maneja internamente el estado y persiste
23
+ * @param id - Identificador único del DataGrid
24
+ * @param viewMode - ViewMode controlado por el padre (opcional)
25
+ * @param defaultViewMode - ViewMode por defecto cuando no hay valor guardado (opcional)
26
+ * @param onViewModeChange - Callback cuando cambia el viewMode (opcional)
27
+ * @param onChangeUserColumns - Callback para guardar en backend (opcional)
28
+ * @returns viewModeState - Estado actual del viewMode
29
+ * @returns handleViewModeChange - Función para cambiar el viewMode
30
+ * @example
31
+ * // Con persistencia en backend
32
+ * const { viewModeState, handleViewModeChange } = useViewMode({
33
+ * id: 'my-grid',
34
+ * defaultViewMode: 'table',
35
+ * onChangeUserColumns, // Guarda en backend
36
+ * });
37
+ *
38
+ * // Sin backend (solo localStorage)
39
+ * const { viewModeState, handleViewModeChange } = useViewMode({
40
+ * id: 'my-grid',
41
+ * defaultViewMode: 'table',
42
+ * });
43
+ */
44
+ export declare const useViewMode: ({ id, viewMode, defaultViewMode, onViewModeChange, onChangeUserColumns, }: UseViewModeParams) => UseViewModeReturn;
@@ -0,0 +1,48 @@
1
+ import { useState, useCallback, useEffect } from "react";
2
+ import { useIsMobile } from "@m4l/graphics";
3
+ import { s as saveViewMode } from "../../helpers/saveViewMode/saveViewMode.js";
4
+ const useViewMode = ({
5
+ id,
6
+ viewMode,
7
+ defaultViewMode,
8
+ onViewModeChange,
9
+ onChangeUserColumns
10
+ }) => {
11
+ const isMobile = useIsMobile();
12
+ const [viewModeState, setViewModeState] = useState(() => {
13
+ if (viewMode) {
14
+ return viewMode;
15
+ }
16
+ try {
17
+ const savedViewMode = localStorage.getItem(`${id}_view_mode`);
18
+ if (savedViewMode === "cards" || savedViewMode === "table") {
19
+ return savedViewMode;
20
+ }
21
+ } catch (_e) {
22
+ }
23
+ if (defaultViewMode) {
24
+ return defaultViewMode;
25
+ }
26
+ return isMobile ? "cards" : "table";
27
+ });
28
+ const handleViewModeChange = useCallback(
29
+ (newViewMode) => {
30
+ setViewModeState(newViewMode);
31
+ saveViewMode(id, newViewMode, onChangeUserColumns);
32
+ onViewModeChange?.(newViewMode);
33
+ },
34
+ [id, onViewModeChange, onChangeUserColumns]
35
+ );
36
+ useEffect(() => {
37
+ if (viewMode !== void 0) {
38
+ setViewModeState(viewMode);
39
+ }
40
+ }, [viewMode]);
41
+ return {
42
+ viewModeState,
43
+ handleViewModeChange
44
+ };
45
+ };
46
+ export {
47
+ useViewMode as u
48
+ };
@@ -1,9 +1,10 @@
1
1
  export { DataGrid } from './DataGrid';
2
2
  export * from './formatters';
3
- export type { Column, RenderEditCellProps, RenderCellProps } from 'react-data-grid';
4
- export type { RowKey, ChangeUserColumn, RowActionsGetter, RowKeyGetter } from './types';
3
+ export type { Column, RenderEditCellProps, RenderCellProps, } from 'react-data-grid';
4
+ export type { RowKey, ChangeUserColumn, RowActionsGetter, RowKeyGetter, } from './types';
5
5
  export { getDataGridComponentsDictionary } from './dictionary';
6
6
  export { TextEditor, NumberEditor } from './subcomponents/editors/TextEditor';
7
7
  export { getDataGridRowsFromSet } from './utils/getDataGridRowsFromSet';
8
- export type { IGridConfig, IGridConfigExtended, BaseConfigColumn } from './contexts/DataGridContext/types';
9
- export { DATAGRID_SEMANTIC_WIDTHS, DATAGRID_ROW_HEADER_HEIGHTS, DATAGRID_ROW_HEIGHTS } from './constants';
8
+ export type { IGridConfigExtended, BaseConfigColumn, } from './contexts/DataGridContext/types';
9
+ export { DATAGRID_SEMANTIC_WIDTHS, DATAGRID_ROW_HEADER_HEIGHTS, DATAGRID_ROW_HEIGHTS, } from './constants';
10
+ export * from './types.helpers';
@@ -0,0 +1,55 @@
1
+ import { RowKey } from './types';
2
+ import { BaseConfigColumn } from './contexts/DataGridContext/types';
3
+ /**
4
+ * Configuración base genérica que puede extenderse con propiedades específicas de cualquier vista.
5
+ *
6
+ * USO INTERNO: El sistema usa esto para manejar genéricamente las configuraciones
7
+ * de columnas sin importar el tipo de vista (table, cards, etc).
8
+ * @example
9
+ * // Para vista table
10
+ * BaseViewConfig<{ frozen: boolean }>
11
+ *
12
+ * // Para vista cards
13
+ * BaseViewConfig<{ showTitle: boolean }>
14
+ */
15
+ export type BaseViewConfig<TViewSpecific = object> = TViewSpecific & {
16
+ key: string;
17
+ visible: boolean;
18
+ index: number;
19
+ name?: string;
20
+ };
21
+ /**
22
+ *
23
+ *Este tipo define la estructura de configuración que el usuario puede
24
+ *pasar al DataGrid para personalizar columnas y sus anchos.
25
+ *
26
+ *- `columnsConfig`: Configuración de visibilidad y orden de columnas para vista table
27
+ *- `columnsWidths`: Anchos personalizados de columnas
28
+ * @example
29
+ * ```typescript
30
+ * const userConfig: IGridConfig = {
31
+ * columnsConfig: [
32
+ * { key: 'name', visible: true, index: 0, frozen: false },
33
+ * { key: 'email', visible: true, index: 1, frozen: false },
34
+ * ],
35
+ * columnsWidths: { name: 200, email: 300 }
36
+ * };
37
+ * ```
38
+ */
39
+ export interface IGridConfig {
40
+ /** Configuración de columnas para vista table (visibilidad, orden, frozen) */
41
+ columnsConfig: BaseConfigColumn[];
42
+ /** Anchos de columnas en píxeles */
43
+ columnsWidths: Record<RowKey, number>;
44
+ }
45
+ /**
46
+ * Configuración específica retornada por getViewSpecificConfig
47
+ */
48
+ export interface ViewSpecificConfig {
49
+ /** Valores por defecto para propiedades específicas de la vista */
50
+ defaults: Record<string, unknown>;
51
+ /** Valores originales por defecto para tracking de cambios */
52
+ originalDefaults: Record<string, unknown>;
53
+ /** Función para obtener propiedades originales dinámicas de un item */
54
+ dynamicOriginalProperty: (item: unknown) => Record<string, unknown>;
55
+ }
@@ -0,0 +1,79 @@
1
+ import { RowKey, RowHeightVariants, RowHeights, OnChangeUserColumns } from './types';
2
+ import { Maybe } from '@m4l/core';
3
+ import { IViewConfig, RowHeightState, ViewMode } from './contexts/DataGridContext/types';
4
+ export interface UseViewModeParams {
5
+ /** Identificador único del DataGrid */
6
+ id: RowKey;
7
+ /** ViewMode controlado por el padre */
8
+ viewMode?: ViewMode;
9
+ /** ViewMode por defecto cuando no hay valor guardado */
10
+ defaultViewMode?: ViewMode;
11
+ /** Callback cuando cambia el viewMode */
12
+ onViewModeChange?: (viewMode: ViewMode) => void;
13
+ /** Callback para guardar cambios en backend (cookies de red) */
14
+ onChangeUserColumns?: OnChangeUserColumns;
15
+ }
16
+ export interface UseViewModeReturn {
17
+ /** Estado actual del viewMode */
18
+ viewModeState: ViewMode;
19
+ /** Función para cambiar el viewMode */
20
+ handleViewModeChange: (newViewMode: ViewMode) => void;
21
+ }
22
+ export interface UseRowHeightParams {
23
+ /** Alturas de las filas (número fijo o array de 3 elementos) */
24
+ rowHeights: RowHeights;
25
+ /** Alturas de los headers (número fijo o array de 3 elementos) */
26
+ rowHeaderHeights: RowHeights;
27
+ /** Variant inicial de altura */
28
+ initialRowHeightVariant: RowHeightVariants;
29
+ }
30
+ export interface UseRowHeightReturn {
31
+ /** Estado actual de la altura de filas */
32
+ currentRowHeightVariant: RowHeightState;
33
+ /** Función para cambiar el variant de altura */
34
+ setRowHeightVariant: (newVariant: RowHeightVariants) => void;
35
+ }
36
+ export interface UseColumnsWidthParams {
37
+ /** Identificador único del DataGrid */
38
+ id: RowKey;
39
+ /** Callback para guardar cambios en columnas */
40
+ onChangeUserColumns?: OnChangeUserColumns;
41
+ }
42
+ export interface UseColumnsWidthReturn {
43
+ /** Mapa con el ancho de cada columna */
44
+ columnsWidths: Map<string, Maybe<string | number>>;
45
+ /** Función para establecer el mapa de anchos */
46
+ setColumnsWidths: React.Dispatch<React.SetStateAction<Map<string, Maybe<string | number>>>>;
47
+ /** Función para cambiar el ancho de una columna */
48
+ onChangeColumnWidth: (columnKey: string, width: number) => void;
49
+ }
50
+ export interface UseViewConfigReturn {
51
+ /** Estado de configuración por vista */
52
+ viewConfig: Record<ViewMode, IViewConfig<any, any>[]>;
53
+ /** Obtiene la configuración de columnas para una vista */
54
+ getConfigColumns: (viewMode: ViewMode) => IViewConfig<any, any>[];
55
+ /** Actualiza la configuración de columnas para una vista */
56
+ updateConfigColumns: (viewMode: ViewMode, config: IViewConfig<any, any>[]) => void;
57
+ }
58
+ export interface UseChangeColumnsConfigParams {
59
+ /** Identificador único del DataGrid */
60
+ id: RowKey;
61
+ /** Callback para guardar cambios en columnas */
62
+ onChangeUserColumns?: OnChangeUserColumns;
63
+ /** Función para actualizar la configuración de columnas */
64
+ updateConfigColumns: (viewMode: ViewMode, config: IViewConfig<any, any>[]) => void;
65
+ }
66
+ export interface UseChangeColumnsConfigReturn {
67
+ /** Función para cambiar la configuración de columnas de una vista */
68
+ onChangeColumnsConfig: (viewMode: ViewMode, newConfig: IViewConfig<any, any>[]) => void;
69
+ }
70
+ export interface UseChangeColumnsOrderParams {
71
+ /** Función para obtener la configuración de columnas de una vista */
72
+ getConfigColumns: (viewMode: ViewMode) => IViewConfig<any, any>[];
73
+ /** Función para cambiar la configuración de columnas */
74
+ onChangeColumnsConfig: (viewMode: ViewMode, newConfig: IViewConfig<any, any>[]) => void;
75
+ }
76
+ export interface UseChangeColumnsOrderReturn {
77
+ /** Función para cambiar el orden de columnas de una vista */
78
+ onChangeColumnsOrder: (viewMode: ViewMode, sourceKey: string, targetKey: string) => void;
79
+ }
@@ -19,10 +19,10 @@ export declare const AppliedFilterInnerContainerStyled: import('@emotion/styled'
19
19
  export declare const ActionsStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
20
20
  ownerState?: (Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown>) | undefined;
21
21
  }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
22
- export declare const ActionsClearButtonStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../mui_extended/IconButton/types').IconButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>, "value" | "size" | "children" | "title" | "component" | "name" | "id" | "type" | "selected" | "disabled" | "action" | "variant" | "color" | "content" | "translate" | "className" | "style" | "classes" | "src" | "sx" | "form" | "slot" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "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" | "tooltip" | "instaceDataTestId" | "placement" | "icon" | "rotationAngle" | "ariaLabel" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "edge" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "badgeProps" | keyof import('react').RefAttributes<HTMLButtonElement>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
22
+ export declare const ActionsClearButtonStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../mui_extended/IconButton/types').IconButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>, "value" | "size" | "children" | "title" | "component" | "name" | "id" | "type" | "selected" | "disabled" | "action" | "hidden" | "color" | "content" | "style" | "icon" | "tooltip" | "variant" | "translate" | "className" | "classes" | "src" | "sx" | "form" | "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" | "instaceDataTestId" | "placement" | "rotationAngle" | "ariaLabel" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "edge" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "badgeProps" | keyof import('react').RefAttributes<HTMLButtonElement>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
23
23
  ownerState?: (Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown>) | undefined;
24
24
  }, {}, {}>;
25
- export declare const ActionsSubmitButtonStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../mui_extended/IconButton/types').IconButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>, "value" | "size" | "children" | "title" | "component" | "name" | "id" | "type" | "selected" | "disabled" | "action" | "variant" | "color" | "content" | "translate" | "className" | "style" | "classes" | "src" | "sx" | "form" | "slot" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "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" | "tooltip" | "instaceDataTestId" | "placement" | "icon" | "rotationAngle" | "ariaLabel" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "edge" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "badgeProps" | keyof import('react').RefAttributes<HTMLButtonElement>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
25
+ export declare const ActionsSubmitButtonStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../mui_extended/IconButton/types').IconButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>, "value" | "size" | "children" | "title" | "component" | "name" | "id" | "type" | "selected" | "disabled" | "action" | "hidden" | "color" | "content" | "style" | "icon" | "tooltip" | "variant" | "translate" | "className" | "classes" | "src" | "sx" | "form" | "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" | "instaceDataTestId" | "placement" | "rotationAngle" | "ariaLabel" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "edge" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "badgeProps" | keyof import('react').RefAttributes<HTMLButtonElement>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
26
26
  ownerState?: (Partial<import('../types').DynamicFilterOwnerState> & Record<string, unknown>) | undefined;
27
27
  }, {}, {}>;
28
28
  export declare const PopoverMenuStyled: import('@emotion/styled').StyledComponent<Pick<import('../../mui_extended/Popover/types').PopoverProps, keyof import('../../mui_extended/Popover/types').PopoverProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
@@ -19,10 +19,10 @@ export declare const AppliedSortInnerContainerStyled: import('@emotion/styled').
19
19
  export declare const ActionsStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
20
20
  ownerState?: (Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>) | undefined;
21
21
  }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
22
- export declare const ActionsClearButtonStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../mui_extended/IconButton/types').IconButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>, "value" | "size" | "children" | "title" | "component" | "name" | "id" | "type" | "selected" | "disabled" | "action" | "variant" | "color" | "content" | "translate" | "className" | "style" | "classes" | "src" | "sx" | "form" | "slot" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "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" | "tooltip" | "instaceDataTestId" | "placement" | "icon" | "rotationAngle" | "ariaLabel" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "edge" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "badgeProps" | keyof import('react').RefAttributes<HTMLButtonElement>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
22
+ export declare const ActionsClearButtonStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../mui_extended/IconButton/types').IconButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>, "value" | "size" | "children" | "title" | "component" | "name" | "id" | "type" | "selected" | "disabled" | "action" | "hidden" | "color" | "content" | "style" | "icon" | "tooltip" | "variant" | "translate" | "className" | "classes" | "src" | "sx" | "form" | "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" | "instaceDataTestId" | "placement" | "rotationAngle" | "ariaLabel" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "edge" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "badgeProps" | keyof import('react').RefAttributes<HTMLButtonElement>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
23
23
  ownerState?: (Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>) | undefined;
24
24
  }, {}, {}>;
25
- export declare const ActionsSubmitButtonStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../mui_extended/IconButton/types').IconButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>, "value" | "size" | "children" | "title" | "component" | "name" | "id" | "type" | "selected" | "disabled" | "action" | "variant" | "color" | "content" | "translate" | "className" | "style" | "classes" | "src" | "sx" | "form" | "slot" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "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" | "tooltip" | "instaceDataTestId" | "placement" | "icon" | "rotationAngle" | "ariaLabel" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "edge" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "badgeProps" | keyof import('react').RefAttributes<HTMLButtonElement>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
25
+ export declare const ActionsSubmitButtonStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../mui_extended/IconButton/types').IconButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>, "value" | "size" | "children" | "title" | "component" | "name" | "id" | "type" | "selected" | "disabled" | "action" | "hidden" | "color" | "content" | "style" | "icon" | "tooltip" | "variant" | "translate" | "className" | "classes" | "src" | "sx" | "form" | "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" | "instaceDataTestId" | "placement" | "rotationAngle" | "ariaLabel" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "edge" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "badgeProps" | keyof import('react').RefAttributes<HTMLButtonElement>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
26
26
  ownerState?: (Partial<import('../types').DynamicSortOwnerState> & Record<string, unknown>) | undefined;
27
27
  }, {}, {}>;
28
28
  export declare const PopoverMenuStyled: import('@emotion/styled').StyledComponent<Pick<import('../../mui_extended/Popover/types').PopoverProps, keyof import('../../mui_extended/Popover/types').PopoverProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
@@ -1,2 +1,2 @@
1
1
  export declare const EDIT_LABEL_KEY_COMPONENT = "M4LEditLabel";
2
- export declare const EDIT_LABEL_CLASSES: Record<"label" | "root" | "iconButton" | "textField" | "iconButtonEdit" | "containerActions", string>;
2
+ export declare const EDIT_LABEL_CLASSES: Record<"root" | "label" | "iconButton" | "textField" | "iconButtonEdit" | "containerActions", string>;