@m4l/components 9.1.93 → 9.1.94

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 (99) hide show
  1. package/@types/types.d.ts +44 -35
  2. package/components/Chip/Chip.d.ts +2 -2
  3. package/components/Chip/ChipStyles.js +10 -10
  4. package/components/Chip/index.js +1 -0
  5. package/components/Chip/types.d.ts +3 -2
  6. package/components/Chip/types.js +1 -0
  7. package/components/Color/types.d.ts +8 -0
  8. package/components/CommonActions/components/ActionFormIntro/index.d.ts +2 -2
  9. package/components/DataGrid/dictionary.d.ts +1 -1
  10. package/components/DataGrid/subcomponents/Actions/index.d.ts +1 -1
  11. package/components/DataGrid/subcomponents/Actions/subcomponents/Density/index.d.ts +1 -1
  12. package/components/DataGrid/subcomponents/Actions/subcomponents/MobileMenuActions/index.d.ts +1 -1
  13. package/components/MenuActions/MenuActions.d.ts +1 -1
  14. package/components/MenuActions/MenuActions.js +2 -1
  15. package/components/MenuActions/MenuActions.styles.js +19 -5
  16. package/components/MenuActions/types.d.ts +10 -7
  17. package/components/Pager/Pager.d.ts +2 -2
  18. package/components/Pager/Pager.styles.js +8 -8
  19. package/components/Pager/subcomponents/CustomTablePagination/CustomTablePagination.d.ts +1 -1
  20. package/components/Pager/subcomponents/CustomTablePagination/types.d.ts +3 -3
  21. package/components/Pager/subcomponents/PagerActions/PagerActions.d.ts +1 -1
  22. package/components/PropertyValue/PropertyValue.js +1 -1
  23. package/components/ToastContainer/ToastContainer.d.ts +4 -0
  24. package/components/WindowBase/WindowBase.d.ts +1 -1
  25. package/components/WindowBase/subcomponents/Header/HeaderWindowBase.d.ts +1 -1
  26. package/components/WindowBase/types.d.ts +1 -1
  27. package/components/areas/components/AreasAdmin/AreasAdmin.d.ts +13 -0
  28. package/components/areas/components/AreasAdmin/AreasAdmin.js +163 -0
  29. package/components/areas/components/AreasAdmin/AreasAdmin.styles.d.ts +2 -0
  30. package/components/areas/components/AreasAdmin/AreasAdmin.styles.js +264 -0
  31. package/components/areas/components/AreasAdmin/classes/index.js +1 -2
  32. package/components/areas/components/AreasAdmin/constants.d.ts +1 -0
  33. package/components/areas/components/AreasAdmin/constants.js +4 -0
  34. package/components/areas/components/AreasAdmin/slots/AreasAdminEnum.d.ts +23 -0
  35. package/components/areas/components/AreasAdmin/slots/AreasAdminEnum.js +27 -0
  36. package/components/areas/components/AreasAdmin/slots/AreasAdminSlots.d.ts +63 -0
  37. package/components/areas/components/AreasAdmin/slots/AreasAdminSlots.js +116 -0
  38. package/components/areas/components/AreasAdmin/slots/index.d.ts +2 -0
  39. package/components/areas/components/AreasAdmin/slots/index.js +1 -0
  40. package/components/areas/components/AreasAdmin/subcomponents/AreaChip/{index.d.ts → AreaChip.d.ts} +4 -26
  41. package/components/areas/components/AreasAdmin/subcomponents/AreaChip/{index.js → AreaChip.js} +81 -88
  42. package/components/areas/components/AreasAdmin/subcomponents/AreaChip/subcomponents/ChipActionsMobile/ChipActionsMobile.d.ts +8 -0
  43. package/components/areas/components/AreasAdmin/subcomponents/AreaChip/subcomponents/ChipActionsMobile/ChipActionsMobile.js +53 -0
  44. package/components/areas/components/AreasAdmin/subcomponents/AreaChip/subcomponents/ChipActionsMobile/index.d.ts +1 -1
  45. package/components/areas/components/AreasAdmin/subcomponents/AreaChip/types.d.ts +18 -0
  46. package/components/areas/components/AreasAdmin/subcomponents/AreaChipMobile/{index.d.ts → AreaChipMobile.d.ts} +1 -1
  47. package/components/areas/components/AreasAdmin/subcomponents/AreaChipMobile/AreaChipMobile.js +81 -0
  48. package/components/areas/components/AreasAdmin/subcomponents/AreaChipMobile/subcomponents/ChipMobile/ChipMobile.d.ts +2 -3
  49. package/components/areas/components/AreasAdmin/subcomponents/AreaChipMobile/subcomponents/ChipMobile/ChipMobile.js +36 -78
  50. package/components/areas/components/AreasAdmin/subcomponents/AreaChipMobile/subcomponents/PanelWindowPopUp/index.d.ts +1 -1
  51. package/components/areas/components/AreasAdmin/subcomponents/PanelWindowPopUp/{index.d.ts → PanelWindowPopUp.d.ts} +1 -1
  52. package/components/areas/components/AreasAdmin/test/AreasAdmin.test.d.ts +1 -0
  53. package/components/areas/components/AreasAdmin/types.d.ts +47 -0
  54. package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Header/helper.d.ts +23 -3
  55. package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Header/index.d.ts +1 -1
  56. package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Header/subcomponents/WindowPopUpsList/index.d.ts +1 -1
  57. package/components/areas/components/index.d.ts +1 -1
  58. package/components/areas/contexts/AreasContext/index.js +2 -0
  59. package/components/areas/contexts/AreasContext/store.d.ts +2 -2
  60. package/components/areas/contexts/AreasContext/store.js +166 -166
  61. package/components/areas/contexts/AreasContext/types.d.ts +6 -2
  62. package/components/areas/dictionary.d.ts +1 -0
  63. package/components/areas/dictionary.js +2 -1
  64. package/components/areas/icons.d.ts +2 -0
  65. package/components/areas/icons.js +3 -1
  66. package/components/areas/types.d.ts +1 -1
  67. package/components/hook-form/RHFAutocomplete/RFHAutocompleteStyles.js +4 -4
  68. package/components/hook-form/RHFAutocomplete/RHFAutocomplete.d.ts +2 -2
  69. package/components/hook-form/RHFCheckbox/RHFCheckbox.d.ts +5 -0
  70. package/components/hook-form/RHFDateTime/RHFDateTime.d.ts +2 -2
  71. package/components/hook-form/RHFDateTime/RHFDateTime.styles.js +2 -2
  72. package/components/maps/components/Map/subcomponents/Controls/subcomponents/TopLeftTools/subcomponents/PopoverToolButton/subcomponentes/LayersTool/hooks/useRowActionsGetter.d.ts +1 -1
  73. package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofencesList/hooks/useRowActionsGetter.d.ts +1 -1
  74. package/components/mui_extended/Autocomplete/Autocomplete.styles.js +22 -14
  75. package/components/mui_extended/Badge/slots/BadgeSlots.d.ts +1 -1
  76. package/components/mui_extended/CheckBox/CheckBox.d.ts +4 -0
  77. package/components/mui_extended/DateTimePicker/DateTimePicker.d.ts +2 -2
  78. package/components/mui_extended/DateTimePicker/DateTimePicker.styles.js +14 -14
  79. package/components/mui_extended/Divider/Divider.d.ts +4 -0
  80. package/components/mui_extended/IconButton/IconButton.styles.js +6 -6
  81. package/components/mui_extended/IconButton/slots/IconButtonSlots.d.ts +1 -1
  82. package/components/mui_extended/MenuItem/MenuItem.styles.js +39 -8
  83. package/components/mui_extended/MenuItem/slots/MenuItemSlots.js +1 -1
  84. package/components/mui_extended/NavLink/NavLink.d.ts +4 -0
  85. package/components/mui_extended/NavLink/NavLink.styles.js +28 -6
  86. package/components/mui_extended/Popover/Popover.styles.js +4 -4
  87. package/components/mui_extended/Select/Select.styles.js +5 -5
  88. package/components/mui_extended/Select/types.d.ts +6 -0
  89. package/components/mui_extended/Stack/Stack.d.ts +4 -0
  90. package/index.js +1 -1
  91. package/package.json +1 -1
  92. package/components/areas/components/AreasAdmin/index.d.ts +0 -10
  93. package/components/areas/components/AreasAdmin/index.js +0 -95
  94. package/components/areas/components/AreasAdmin/styles.js +0 -17
  95. package/components/areas/components/AreasAdmin/subcomponents/AreaChip/styles.js +0 -29
  96. package/components/areas/components/AreasAdmin/subcomponents/AreaChip/subcomponents/ChipActionsMobile/index.js +0 -56
  97. package/components/areas/components/AreasAdmin/subcomponents/AreaChipMobile/index.js +0 -96
  98. package/components/areas/components/AreasAdmin/subcomponents/PanelWindowPopUp/index.js +0 -54
  99. package/components/areas/utils/useOnClickOutside/index.js +0 -22
@@ -8,7 +8,7 @@ import { ComponentPalletColor, Sizes } from '@m4l/styles';
8
8
  * Type representing a single action in the `WindowBase` component.
9
9
  * @author cesar - automatic
10
10
  * @createdAt 2024-12-23 09:48:25 - automatic
11
- * @updatedAt 2025-01-31 08:23:27 - automatic
11
+ * @updatedAt 2025-02-04 15:44:12 - automatic
12
12
  * @updatedUser cesar - automatic
13
13
  */
14
14
  export interface WindowBaseAction {
@@ -0,0 +1,13 @@
1
+ import { AreasAdminProps } from './types';
2
+ /**
3
+ * AreasAdmin
4
+ * Componente para administrar áreas.
5
+ * Este componente permite al usuario administrar las áreas disponibles,
6
+ * seleccionar un área específica y agregar nuevas áreas.
7
+ * Utiliza hooks como useAreasStore, useEnvironment, useModuleDictionary.
8
+ * @author cesar - automatic
9
+ * @createdAt 2025-01-24 09:29:33 - automatic
10
+ * @updatedAt 2025-02-04 09:25:18 - automatic
11
+ * @updatedUser cesar - automatic
12
+ */
13
+ export declare const AreasAdmin: (props: AreasAdminProps) => import("react/jsx-runtime").JSX.Element | null;
@@ -0,0 +1,163 @@
1
+ import { jsx, jsxs, Fragment } from "react/jsx-runtime";
2
+ import { u as useAreasStore } from "../../hooks/useAreas/index.js";
3
+ import { useEnvironment, useModuleDictionary } from "@m4l/core";
4
+ import clsx from "clsx";
5
+ import { A as AreaChip } from "./subcomponents/AreaChip/AreaChip.js";
6
+ import { shallow } from "zustand/shallow";
7
+ import { I as ICONS } from "../../icons.js";
8
+ import { S as ScrollBar } from "../../../ScrollBar/index.js";
9
+ import { A as AreaChipMobile } from "./subcomponents/AreaChipMobile/AreaChipMobile.js";
10
+ import { useRef } from "react";
11
+ import { g as getAreasDictionary, A as AREAS_DICCTIONARY } from "../../dictionary.js";
12
+ import { A as AreasAdminRootStyled, a as AreasAdminContentStyled, b as AreasContainerChipIconStyled, c as AreasContainerContentChipsStyled, I as IconButtonAddAreaStyled, d as AreaContentChipStyled, C as ContainerAdminWindowsStyled } from "./slots/AreasAdminSlots.js";
13
+ import { useIsMobile } from "@m4l/graphics";
14
+ import { A as AREAS_ADMIN_KEY_COMPONENT } from "./constants.js";
15
+ import { a as getComponentSlotRoot } from "../../../../utils/getComponentSlotRoot.js";
16
+ import { g as getPropDataTestId } from "../../../../test/getNameDataTestId.js";
17
+ import { u as useComponentSize } from "../../../../hooks/useComponentSize/useComponentSize.js";
18
+ import { T as Typography } from "../../../mui_extended/Typography/Typography.js";
19
+ import { A as AreasAdminSlots } from "./slots/AreasAdminEnum.js";
20
+ import { M as MenuActions } from "../../../MenuActions/MenuActions.js";
21
+ const AreasAdmin = (props) => {
22
+ const {
23
+ color = "primary",
24
+ size = "medium",
25
+ className,
26
+ dataTestId,
27
+ ...others
28
+ } = props;
29
+ const isMobile = useIsMobile();
30
+ const { currentSize } = useComponentSize(size);
31
+ const normalizedSize = currentSize === "large" ? "medium" : currentSize;
32
+ const areas = useAreasStore((state) => state.areasIds ?? [], shallow);
33
+ const currentAreaId = useAreasStore((state) => state.currentAreaId, shallow);
34
+ const status = useAreasStore((state) => state.ownerState.status);
35
+ const areasLength = useAreasStore((state) => state.areasIds.length);
36
+ const { addArea } = useAreasStore((state) => state.areasActions, shallow);
37
+ const { maximizeLayout } = useAreasStore((state) => state.areaActions);
38
+ const maximizedId = useAreasStore(
39
+ (state) => state.hashAreas[currentAreaId] ? state.hashAreas[currentAreaId].maximizedId : false,
40
+ shallow
41
+ );
42
+ const windowsLayouts = useAreasStore(
43
+ (state) => state.hashAreas[state.currentAreaId]?.layoutItemsIds?.filter((li) => state.hashWindows[li].emergeType === "layout")?.map((lim) => {
44
+ const w = state.hashWindows[lim];
45
+ return {
46
+ i: w.windowId,
47
+ url_icon: w.iconUrl,
48
+ title: w.title
49
+ };
50
+ }) ?? [],
51
+ shallow
52
+ );
53
+ const { host_static_assets, environment_assets } = useEnvironment();
54
+ const { getLabel } = useModuleDictionary();
55
+ const divRef = useRef(null);
56
+ const divRefOut = useRef(null);
57
+ if (status !== "loaded") {
58
+ return null;
59
+ }
60
+ const ownerState = {
61
+ isMobile,
62
+ color,
63
+ size: normalizedSize
64
+ };
65
+ const onTouched = (layoutId) => {
66
+ maximizeLayout(currentAreaId, layoutId);
67
+ };
68
+ const menuActions = windowsLayouts.map((element) => {
69
+ return {
70
+ type: "menuItem",
71
+ onClick: () => onTouched(element.i),
72
+ label: element.title,
73
+ urlIcon: element.url_icon,
74
+ checkable: true,
75
+ checked: maximizedId === element.i
76
+ };
77
+ });
78
+ return /* @__PURE__ */ jsx(
79
+ AreasAdminRootStyled,
80
+ {
81
+ className: clsx(getComponentSlotRoot(AREAS_ADMIN_KEY_COMPONENT), className),
82
+ ...getPropDataTestId(AREAS_ADMIN_KEY_COMPONENT, AreasAdminSlots.root, dataTestId),
83
+ role: "areas-admin-role",
84
+ ownerState,
85
+ ref: divRefOut,
86
+ ...others,
87
+ children: /* @__PURE__ */ jsx(
88
+ AreasAdminContentStyled,
89
+ {
90
+ size: normalizedSize,
91
+ ownerState: {},
92
+ role: "presentation",
93
+ ref: divRef,
94
+ children: /* @__PURE__ */ jsx(
95
+ AreasContainerChipIconStyled,
96
+ {
97
+ size: normalizedSize,
98
+ ownerState: {},
99
+ children: /* @__PURE__ */ jsx(
100
+ AreasContainerContentChipsStyled,
101
+ {
102
+ size: normalizedSize,
103
+ ownerState: {},
104
+ children: !isMobile ? /* @__PURE__ */ jsxs(Fragment, { children: [
105
+ /* @__PURE__ */ jsx(ScrollBar, { children: /* @__PURE__ */ jsxs(Fragment, { children: [
106
+ /* @__PURE__ */ jsx(
107
+ IconButtonAddAreaStyled,
108
+ {
109
+ "aria-label": "Agregar área",
110
+ size: normalizedSize,
111
+ variant: "contained",
112
+ ownerState,
113
+ src: `${host_static_assets}/${environment_assets}/frontend/components/areas/assets/icons/${ICONS.ADD_AREA}`,
114
+ onClick: addArea,
115
+ tooltip: getLabel(getAreasDictionary(AREAS_DICCTIONARY.area_add_new))
116
+ }
117
+ ),
118
+ /* @__PURE__ */ jsx(
119
+ AreaContentChipStyled,
120
+ {
121
+ size: normalizedSize,
122
+ ownerState: {},
123
+ children: Array.isArray(areas) && areas.length > 0 && areas.map((areaId) => /* @__PURE__ */ jsx(
124
+ AreaChip,
125
+ {
126
+ size: normalizedSize,
127
+ color,
128
+ areaId,
129
+ selected: areaId === currentAreaId,
130
+ disabled: areasLength === 1
131
+ },
132
+ areaId
133
+ ))
134
+ }
135
+ )
136
+ ] }) }),
137
+ maximizedId && /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsxs(ContainerAdminWindowsStyled, { size: normalizedSize, ownerState, children: [
138
+ /* @__PURE__ */ jsx(Typography, { size: normalizedSize, children: getLabel(getAreasDictionary(AREAS_DICCTIONARY.label_window)) }),
139
+ /* @__PURE__ */ jsx(
140
+ MenuActions,
141
+ {
142
+ size: normalizedSize,
143
+ icon: `${host_static_assets}/${environment_assets}/frontend/components/areas_admin/assets/icons/${ICONS.PENDING_ORDER}`,
144
+ arrowType: "no-arrow",
145
+ anchorOrigin: { vertical: "bottom", horizontal: "right" },
146
+ transformOrigin: { vertical: "top", horizontal: "left" },
147
+ menuActions
148
+ }
149
+ )
150
+ ] }) })
151
+ ] }) : /* @__PURE__ */ jsx(AreaChipMobile, {})
152
+ }
153
+ )
154
+ }
155
+ )
156
+ }
157
+ )
158
+ }
159
+ );
160
+ };
161
+ export {
162
+ AreasAdmin as A
163
+ };
@@ -0,0 +1,2 @@
1
+ import { AreasAdminStyles } from './types';
2
+ export declare const areasAdminStyles: AreasAdminStyles;
@@ -0,0 +1,264 @@
1
+ import { g as getHeightSizeStyles } from "../../../../utils/getHeightSizeStyles.js";
2
+ const areasAdminStyles = {
3
+ /**
4
+ * Root areas admin Styles
5
+ * @author cesar - automatic
6
+ * @createdAt 2025-01-22 17:19:48 - automatic
7
+ * @updatedAt 2025-02-04 09:17:16 - automatic
8
+ * @updatedUser cesar - automatic
9
+ */
10
+ root: ({ theme }) => ({
11
+ width: "100%",
12
+ display: "flex",
13
+ flexDirection: "row",
14
+ "& .simplebar-content": {
15
+ display: "flex",
16
+ flexDirection: "row",
17
+ gap: theme.vars.size.baseSpacings.sp2,
18
+ alignItems: "center"
19
+ }
20
+ }),
21
+ /**
22
+ * Root areas admin content Styles
23
+ * @author cesar - automatic
24
+ * @createdAt 2025-01-25 19:41:41 - automatic
25
+ * @updatedAt 2025-02-04 09:17:16 - automatic
26
+ * @updatedUser cesar - automatic
27
+ */
28
+ areasAdminContent: () => ({
29
+ display: "flex",
30
+ flexDirection: "row",
31
+ width: "100%"
32
+ }),
33
+ /**
34
+ * Root container admin windows Styles
35
+ * @author cesar - automatic
36
+ * @createdAt 2025-01-25 19:41:41 - automatic
37
+ * @updatedAt 2025-02-04 09:17:16 - automatic
38
+ * @updatedUser cesar - automatic
39
+ */
40
+ containerAdminWindows: ({ theme }) => ({
41
+ display: "flex",
42
+ flexDirection: "row",
43
+ alignItems: "center",
44
+ gap: theme.vars.size.baseSpacings.sp2
45
+ }),
46
+ areaContainerChipIcon: () => ({
47
+ width: "100%"
48
+ }),
49
+ /**
50
+ * Root area container content chips
51
+ * @author cesar - automatic
52
+ * @createdAt 2025-01-24 09:29:33 - automatic
53
+ * @updatedAt 2025-02-04 09:17:16 - automatic
54
+ * @updatedUser cesar - automatic
55
+ */
56
+ areaContainerContentChips: () => ({
57
+ display: "flex",
58
+ flexDirection: "row"
59
+ }),
60
+ /**
61
+ * Root area content chip Styles
62
+ * @author cesar - automatic
63
+ * @createdAt 2025-01-24 09:29:33 - automatic
64
+ * @updatedAt 2025-02-04 09:17:16 - automatic
65
+ * @updatedUser cesar - automatic
66
+ */
67
+ areaContentChip: ({ theme }) => ({
68
+ height: "100%",
69
+ display: "flex",
70
+ flexDirection: "row",
71
+ gap: theme.vars.size.baseSpacings.sp2,
72
+ alignItems: "center"
73
+ }),
74
+ /**
75
+ * Root area chip Styles
76
+ * @author cesar - automatic
77
+ * @createdAt 2025-01-24 09:29:33 - automatic
78
+ * @updatedAt 2025-02-04 09:17:16 - automatic
79
+ * @updatedUser cesar - automatic
80
+ */
81
+ areaChipRoot: () => ({
82
+ width: "100%",
83
+ display: "flex",
84
+ flexDirection: "row"
85
+ }),
86
+ /**
87
+ * Root area container chip edit button
88
+ * @author cesar - automatic
89
+ * @createdAt 2025-01-24 09:29:33 - automatic
90
+ * @updatedAt 2025-02-04 09:17:16 - automatic
91
+ * @updatedUser cesar - automatic
92
+ */
93
+ areaContainerChipEditButton: () => ({
94
+ display: "flex",
95
+ flexDirection: "row"
96
+ }),
97
+ /**
98
+ * Chip areas Styles
99
+ * @author cesar - automatic
100
+ * @createdAt 2025-01-24 09:29:33 - automatic
101
+ * @updatedAt 2025-02-04 09:17:16 - automatic
102
+ * @updatedUser cesar - automatic
103
+ */
104
+ chipAreas: ({ theme, ownerState }) => ({
105
+ borderRadius: theme.vars.size.borderRadius.r1,
106
+ ...getHeightSizeStyles(
107
+ theme.generalSettings.isMobile,
108
+ ownerState.size || "small",
109
+ "action"
110
+ ),
111
+ "&:hover > .M4LAreasAdmin-menuActionsChip": {
112
+ opacity: 1,
113
+ pointerEvents: "auto"
114
+ }
115
+ }),
116
+ /**
117
+ * Icon button add area Styles
118
+ * @author cesar - automatic
119
+ * @createdAt 2025-01-24 12:34:21 - automatic
120
+ * @updatedAt 2025-02-04 09:17:16 - automatic
121
+ * @updatedUser cesar - automatic
122
+ */
123
+ iconButtonAddArea: ({ theme, ownerState }) => ({
124
+ borderRadius: theme.vars.size.borderRadius.r1,
125
+ ...getHeightSizeStyles(
126
+ theme.generalSettings.isMobile,
127
+ ownerState.size || "small",
128
+ "action"
129
+ )
130
+ }),
131
+ /**
132
+ * Menu actions Styles
133
+ * @author cesar - automatic
134
+ * @createdAt 2025-01-25 19:41:41 - automatic
135
+ * @updatedAt 2025-02-04 09:17:16 - automatic
136
+ * @updatedUser cesar - automatic
137
+ */
138
+ menuActionsChip: () => ({
139
+ opacity: 0,
140
+ pointerEvents: "none",
141
+ transition: "opacity 0.2s ease-in-out"
142
+ }),
143
+ /**
144
+ * Root area chip mobile Styles
145
+ * @author cesar - automatic
146
+ * @createdAt 2025-01-26 19:29:17 - automatic
147
+ * @updatedAt 2025-02-04 09:17:16 - automatic
148
+ * @updatedUser cesar - automatic
149
+ */
150
+ areaChipMobileRoot: ({ theme }) => ({
151
+ display: "flex",
152
+ flexDirection: "row",
153
+ alignItems: "center",
154
+ gap: theme.vars.size.baseSpacings.sp1
155
+ }),
156
+ /**
157
+ * Root chip mobile Styles
158
+ * @author cesar - automatic
159
+ * @createdAt 2025-01-26 19:29:17 - automatic
160
+ * @updatedAt 2025-02-04 09:17:16 - automatic
161
+ * @updatedUser cesar - automatic
162
+ */
163
+ chipMobileRoot: ({ theme }) => ({
164
+ display: "flex",
165
+ flexDirection: "row",
166
+ alignItems: "center",
167
+ gap: theme.vars.size.baseSpacings.sp1
168
+ }),
169
+ /**
170
+ * Root chip mobile content Styles
171
+ * @author cesar - automatic
172
+ * @createdAt 2025-01-26 19:29:17 - automatic
173
+ * @updatedAt 2025-02-04 09:17:16 - automatic
174
+ * @updatedUser cesar - automatic
175
+ */
176
+ chipMobileContent: ({ theme }) => ({
177
+ display: "flex",
178
+ flexDirection: "row",
179
+ alignItems: "center",
180
+ borderRadius: theme.vars.size.borderRadius.r1
181
+ }),
182
+ /**
183
+ * Name area chip mobile Styles
184
+ * @author cesar - automatic
185
+ * @createdAt 2025-01-27 12:58:18 - automatic
186
+ * @updatedAt 2025-02-04 09:17:16 - automatic
187
+ * @updatedUser cesar - automatic
188
+ */
189
+ nameChipMobile: ({ theme }) => ({
190
+ padding: theme.vars.size.baseSpacings.sp1
191
+ }),
192
+ /**
193
+ * Root add areas mobile container
194
+ * @author cesar - automatic
195
+ * @createdAt 2025-01-26 19:29:17 - automatic
196
+ * @updatedAt 2025-02-04 09:17:16 - automatic
197
+ * @updatedUser cesar - automatic
198
+ */
199
+ addAreasMobileContainer: () => ({
200
+ display: "flex",
201
+ flexDirection: "column"
202
+ }),
203
+ /**
204
+ * Root menu actions area chip mobile
205
+ * @author cesar - automatic
206
+ * @createdAt 2025-01-26 19:29:17 - automatic
207
+ * @updatedAt 2025-02-04 09:17:16 - automatic
208
+ * @updatedUser cesar - automatic
209
+ */
210
+ menuActionsAreaChipMobile: ({ theme }) => ({
211
+ display: "flex",
212
+ flexDirection: "column",
213
+ alignItems: "center",
214
+ alignContent: "center",
215
+ borderRadius: theme.vars.size.borderRadius.r1,
216
+ gap: theme.vars.size.baseSpacings.sp1
217
+ }),
218
+ buttonAddArea: ({ theme }) => ({
219
+ color: theme.vars.palette.primary.contrastText
220
+ }),
221
+ /**
222
+ * Root edit area chip container
223
+ * @author cesar - automatic
224
+ * @createdAt 2025-01-26 22:11:32 - automatic
225
+ * @updatedAt 2025-02-04 09:17:16 - automatic
226
+ * @updatedUser cesar - automatic
227
+ */
228
+ editAreaChipContainer: ({ theme }) => ({
229
+ borderRadius: theme.vars.size.borderRadius.r1,
230
+ display: "flex",
231
+ flexDirection: "column"
232
+ }),
233
+ /**
234
+ * Root edit area header
235
+ * @author cesar - automatic
236
+ * @createdAt 2025-01-26 22:11:32 - automatic
237
+ * @updatedAt 2025-02-04 09:17:16 - automatic
238
+ * @updatedUser cesar - automatic
239
+ */
240
+ editAreaHeader: ({ theme }) => ({
241
+ display: "flex",
242
+ padding: theme.vars.size.baseSpacings.sp0,
243
+ flexDirection: "column",
244
+ justifyContent: "center",
245
+ gap: theme.vars.size.baseSpacings["sp0-5"],
246
+ alignSelf: "stretch"
247
+ }),
248
+ /**
249
+ * Root edit area chip mobile container
250
+ * @author cesar - automatic
251
+ * @createdAt 2025-01-26 22:11:32 - automatic
252
+ * @updatedAt 2025-02-04 09:17:16 - automatic
253
+ * @updatedUser cesar - automatic
254
+ */
255
+ editAreaChipMobileContainer: ({ theme }) => ({
256
+ borderRadius: theme.vars.size.borderRadius.r1,
257
+ display: "flex",
258
+ flexDirection: "column",
259
+ width: "100%"
260
+ })
261
+ };
262
+ export {
263
+ areasAdminStyles as a
264
+ };
@@ -2,7 +2,7 @@ import { generateUtilityClasses } from "@mui/material";
2
2
  import { unstable_composeClasses } from "@mui/base";
3
3
  import { g as getComponentUtilityClass } from "../../../../../utils/index.js";
4
4
  import { A as AREAS_ADMIN_CLASS_NAME } from "../../../constants.js";
5
- const areasAdminClasses = generateUtilityClasses(
5
+ generateUtilityClasses(
6
6
  AREAS_ADMIN_CLASS_NAME,
7
7
  [
8
8
  /* elements */
@@ -65,6 +65,5 @@ const useAreasAdminUtilityClasses = (ownerState) => {
65
65
  return unstable_composeClasses(slots, getComponentUtilityClass(AREAS_ADMIN_CLASS_NAME), {});
66
66
  };
67
67
  export {
68
- areasAdminClasses as a,
69
68
  useAreasAdminUtilityClasses as u
70
69
  };
@@ -0,0 +1 @@
1
+ export declare const AREAS_ADMIN_KEY_COMPONENT = "M4LAreasAdmin";
@@ -0,0 +1,4 @@
1
+ const AREAS_ADMIN_KEY_COMPONENT = "M4LAreasAdmin";
2
+ export {
3
+ AREAS_ADMIN_KEY_COMPONENT as A
4
+ };
@@ -0,0 +1,23 @@
1
+ export declare enum AreasAdminSlots {
2
+ root = "root",
3
+ areasAdminContent = "areasAdminContent",
4
+ areaContainerChipIcon = "areaContainerChipIcon",
5
+ areaContainerContentChips = "areaContainerContentChips",
6
+ areaContentChip = "areaContentChip",
7
+ containerAdminWindows = "containerAdminWindows",
8
+ areaChipRoot = "areaChipRoot",
9
+ areaContainerChipEditButton = "areaContainerChipEditButton",
10
+ menuActionsChip = "menuActionsChip",
11
+ editAreaChipContainer = "editAreaChipContainer",
12
+ editAreaHeader = "editAreaHeader",
13
+ areaChipMobileRoot = "areaChipMobileRoot",
14
+ addAreasMobileContainer = "addAreasMobileContainer",
15
+ menuActionsAreaChipMobile = "menuActionsAreaChipMobile",
16
+ buttonAddArea = "buttonAddArea",
17
+ chipMobileRoot = "chipMobileRoot",
18
+ chipMobileContent = "chipMobileContent",
19
+ editAreaChipMobileContainer = "editAreaChipMobileContainer",
20
+ nameChipMobile = "nameChipMobile",
21
+ chipAreas = "chipAreas",
22
+ iconButtonAddArea = "iconButtonAddArea"
23
+ }
@@ -0,0 +1,27 @@
1
+ var AreasAdminSlots = /* @__PURE__ */ ((AreasAdminSlots2) => {
2
+ AreasAdminSlots2["root"] = "root";
3
+ AreasAdminSlots2["areasAdminContent"] = "areasAdminContent";
4
+ AreasAdminSlots2["areaContainerChipIcon"] = "areaContainerChipIcon";
5
+ AreasAdminSlots2["areaContainerContentChips"] = "areaContainerContentChips";
6
+ AreasAdminSlots2["areaContentChip"] = "areaContentChip";
7
+ AreasAdminSlots2["containerAdminWindows"] = "containerAdminWindows";
8
+ AreasAdminSlots2["areaChipRoot"] = "areaChipRoot";
9
+ AreasAdminSlots2["areaContainerChipEditButton"] = "areaContainerChipEditButton";
10
+ AreasAdminSlots2["menuActionsChip"] = "menuActionsChip";
11
+ AreasAdminSlots2["editAreaChipContainer"] = "editAreaChipContainer";
12
+ AreasAdminSlots2["editAreaHeader"] = "editAreaHeader";
13
+ AreasAdminSlots2["areaChipMobileRoot"] = "areaChipMobileRoot";
14
+ AreasAdminSlots2["addAreasMobileContainer"] = "addAreasMobileContainer";
15
+ AreasAdminSlots2["menuActionsAreaChipMobile"] = "menuActionsAreaChipMobile";
16
+ AreasAdminSlots2["buttonAddArea"] = "buttonAddArea";
17
+ AreasAdminSlots2["chipMobileRoot"] = "chipMobileRoot";
18
+ AreasAdminSlots2["chipMobileContent"] = "chipMobileContent";
19
+ AreasAdminSlots2["editAreaChipMobileContainer"] = "editAreaChipMobileContainer";
20
+ AreasAdminSlots2["nameChipMobile"] = "nameChipMobile";
21
+ AreasAdminSlots2["chipAreas"] = "chipAreas";
22
+ AreasAdminSlots2["iconButtonAddArea"] = "iconButtonAddArea";
23
+ return AreasAdminSlots2;
24
+ })(AreasAdminSlots || {});
25
+ export {
26
+ AreasAdminSlots as A
27
+ };
@@ -0,0 +1,63 @@
1
+ export declare const AreasAdminRootStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
2
+ ownerState: Partial<import('../types').AreasAdminOwnerState> & Record<string, unknown>;
3
+ }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
4
+ export declare const AreasContainerChipIconStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
5
+ ownerState: Partial<import('../types').AreasAdminOwnerState> & Record<string, unknown>;
6
+ }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
7
+ export declare const AreasContainerContentChipsStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
8
+ ownerState: Partial<import('../types').AreasAdminOwnerState> & Record<string, unknown>;
9
+ }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
10
+ export declare const AreaContentChipStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
11
+ ownerState: Partial<import('../types').AreasAdminOwnerState> & Record<string, unknown>;
12
+ }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
13
+ export declare const AreaChipRootStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
14
+ ownerState: Partial<import('../types').AreasAdminOwnerState> & Record<string, unknown>;
15
+ }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
16
+ export declare const AreaContainerChipEditButtonStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
17
+ ownerState: Partial<import('../types').AreasAdminOwnerState> & Record<string, unknown>;
18
+ }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
19
+ export declare const AreasAdminContentStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
20
+ ownerState: Partial<import('../types').AreasAdminOwnerState> & Record<string, unknown>;
21
+ }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
22
+ export declare const ChipAreasStyled: import('@emotion/styled').StyledComponent<Pick<import('../../../../Chip/types').ChipProps & import('react').RefAttributes<HTMLDivElement>, keyof import('react').RefAttributes<HTMLDivElement> | keyof import('../../../../Chip/types').ChipProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
23
+ ownerState: Partial<import('../types').AreasAdminOwnerState> & Record<string, unknown>;
24
+ }, {}, {}>;
25
+ export declare const IconButtonAddAreaStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../../../mui_extended/IconButton/types').IconButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>, "children" | "value" | "title" | "component" | "size" | "name" | "id" | "type" | "selected" | "action" | "hidden" | "content" | "style" | "icon" | "tooltip" | "disabled" | "variant" | "translate" | "sx" | "classes" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "lang" | "nonce" | "slot" | "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" | "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" | "onResize" | "onResizeCapture" | "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" | "placement" | "form" | "src" | "rotationAngle" | "tooltipContent" | "instaceDataTestId" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "edge" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "componentPaletteColor" | "badgeContent" | "dictionaryTooltipId" | keyof import('react').RefAttributes<HTMLButtonElement>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
26
+ ownerState: Partial<import('../types').AreasAdminOwnerState> & Record<string, unknown>;
27
+ }, {}, {}>;
28
+ export declare const MenuActionsChipStyled: import('@emotion/styled').StyledComponent<Pick<import('../../../../MenuActions/types').MenuActionsProps, keyof import('../../../../MenuActions/types').MenuActionsProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
29
+ ownerState: Partial<import('../types').AreasAdminOwnerState> & Record<string, unknown>;
30
+ }, {}, {}>;
31
+ export declare const ContainerAdminWindowsStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
32
+ ownerState: Partial<import('../types').AreasAdminOwnerState> & Record<string, unknown>;
33
+ }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
34
+ export declare const AreaChipMobileRootStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
35
+ ownerState: Partial<import('../types').AreasAdminOwnerState> & Record<string, unknown>;
36
+ }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
37
+ export declare const ChipMobileRootStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
38
+ ownerState: Partial<import('../types').AreasAdminOwnerState> & Record<string, unknown>;
39
+ }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
40
+ export declare const ChipMobileContentStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
41
+ ownerState: Partial<import('../types').AreasAdminOwnerState> & Record<string, unknown>;
42
+ }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
43
+ export declare const AddAreasMobileContainerStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
44
+ ownerState: Partial<import('../types').AreasAdminOwnerState> & Record<string, unknown>;
45
+ }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
46
+ export declare const MenuActionsAreaChipMobileStyled: import('@emotion/styled').StyledComponent<Pick<import('../../../../MenuActions/types').MenuActionsProps, keyof import('../../../../MenuActions/types').MenuActionsProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
47
+ ownerState: Partial<import('../types').AreasAdminOwnerState> & Record<string, unknown>;
48
+ }, {}, {}>;
49
+ export declare const ButtonAddAreaStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../../../mui_extended/Button').ButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>, "children" | "value" | "title" | "component" | "size" | "name" | "id" | "type" | "action" | "hidden" | "color" | "content" | "style" | "disabled" | "variant" | "translate" | "sx" | "classes" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "lang" | "nonce" | "slot" | "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" | "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" | "onResize" | "onResizeCapture" | "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" | "form" | "label" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "href" | "startIcon" | "endIcon" | "skeletonWidth" | "disableElevation" | "fullWidth" | keyof import('react').RefAttributes<HTMLButtonElement>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
50
+ ownerState: Partial<import('../types').AreasAdminOwnerState> & Record<string, unknown>;
51
+ }, {}, {}>;
52
+ export declare const EditAreaChipContainerStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
53
+ ownerState: Partial<import('../types').AreasAdminOwnerState> & Record<string, unknown>;
54
+ }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
55
+ export declare const EditAreaHeaderStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
56
+ ownerState: Partial<import('../types').AreasAdminOwnerState> & Record<string, unknown>;
57
+ }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
58
+ export declare const EditAreaChipMobileContainerStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
59
+ ownerState: Partial<import('../types').AreasAdminOwnerState> & Record<string, unknown>;
60
+ }, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').HTMLAttributes<HTMLDivElement> | keyof import('react').ClassAttributes<HTMLDivElement>>, {}>;
61
+ export declare const NameChipMobileStyled: import('@emotion/styled').StyledComponent<Pick<import('../../../../mui_extended/Typography/types').TypographyProps, keyof import('../../../../mui_extended/Typography/types').TypographyProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
62
+ ownerState: Partial<import('../types').AreasAdminOwnerState> & Record<string, unknown>;
63
+ }, {}, {}>;