@recursica/mui-adapter 0.34.0 → 0.34.3

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 (78) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist/index.d.ts +219 -154
  3. package/dist/mui-adapter.cjs +55 -55
  4. package/dist/mui-adapter.cjs.map +1 -1
  5. package/dist/mui-adapter.css +1 -1
  6. package/dist/mui-adapter.js +3383 -3440
  7. package/dist/mui-adapter.js.map +1 -1
  8. package/package.json +9 -4
  9. package/src/OverStyling.tsx +2 -2
  10. package/src/components/Accordion/Accordion.test.tsx +1 -0
  11. package/src/components/AssistiveElement/AssistiveElement.test.tsx +1 -0
  12. package/src/components/Autocomplete/Autocomplete.test.tsx +1 -0
  13. package/src/components/Avatar/Avatar.test.tsx +1 -0
  14. package/src/components/Badge/Badge.test.tsx +1 -0
  15. package/src/components/Box/Box.test.tsx +1 -0
  16. package/src/components/Breadcrumb/Breadcrumb.test.tsx +1 -0
  17. package/src/components/Button/BUTTON_IMPLEMENTATION_NOTES.md +10 -0
  18. package/src/components/Button/Button.module.css +1 -0
  19. package/src/components/Button/Button.styleIsolation.dom.test.tsx +98 -0
  20. package/src/components/Card/Card.test.tsx +1 -0
  21. package/src/components/Checkbox/Checkbox.test.tsx +1 -0
  22. package/src/components/Chip/Chip.test.tsx +1 -0
  23. package/src/components/Container/Container.test.tsx +1 -0
  24. package/src/components/DatePicker/DatePicker.stories.tsx +25 -0
  25. package/src/components/DatePicker/DatePicker.test.tsx +1 -0
  26. package/src/components/Dropdown/Dropdown.test.tsx +1 -0
  27. package/src/components/FileInput/FileInput.test.tsx +1 -0
  28. package/src/components/FileUpload/FileUpload.test.tsx +1 -0
  29. package/src/components/Flex/Flex.test.tsx +1 -0
  30. package/src/components/Flex/Flex.tsx +21 -4
  31. package/src/components/FormControlLayout/FormControlLayout.test.tsx +1 -0
  32. package/src/components/FormControlWrapper/FormControlWrapper.test.tsx +1 -0
  33. package/src/components/Grid/Grid.stories.tsx +38 -62
  34. package/src/components/Grid/Grid.test.tsx +1 -0
  35. package/src/components/Grid/Grid.tsx +59 -144
  36. package/src/components/Grid/IMPLEMENTATION_NOTES.md +11 -11
  37. package/src/components/Grid/USAGE.md +8 -6
  38. package/src/components/Group/Group.test.tsx +1 -0
  39. package/src/components/Group/Group.tsx +24 -2
  40. package/src/components/HoverCard/HoverCard.test.tsx +1 -0
  41. package/src/components/Label/Label.test.tsx +1 -0
  42. package/src/components/Link/Link.test.tsx +1 -0
  43. package/src/components/Loader/Loader.test.tsx +1 -0
  44. package/src/components/Menu/Menu.test.tsx +1 -0
  45. package/src/components/Modal/Modal.module.css +103 -1
  46. package/src/components/Modal/Modal.stories.tsx +28 -2
  47. package/src/components/Modal/Modal.test.tsx +1 -0
  48. package/src/components/NumberInput/NumberInput.test.tsx +1 -0
  49. package/src/components/Pagination/Pagination.test.tsx +1 -0
  50. package/src/components/Panel/Panel.test.tsx +1 -0
  51. package/src/components/Popover/Popover.test.tsx +1 -0
  52. package/src/components/Radio/Radio.test.tsx +1 -0
  53. package/src/components/ReadOnlyField/ReadOnlyField.test.tsx +1 -0
  54. package/src/components/SegmentedControl/SegmentedControl.test.tsx +1 -0
  55. package/src/components/Slider/Slider.test.tsx +1 -0
  56. package/src/components/Stack/Stack.stories.tsx +9 -9
  57. package/src/components/Stack/Stack.test.tsx +1 -0
  58. package/src/components/Stack/Stack.tsx +15 -14
  59. package/src/components/Stack/USAGE.md +1 -1
  60. package/src/components/Stepper/Stepper.test.tsx +1 -0
  61. package/src/components/Switch/Switch.stories.tsx +1 -1
  62. package/src/components/Switch/Switch.test.tsx +1 -0
  63. package/src/components/Table/Table.test.tsx +1 -0
  64. package/src/components/Tabs/Tabs.test.tsx +1 -0
  65. package/src/components/Text/Text.stories.tsx +3 -16
  66. package/src/components/Text/Text.test.tsx +1 -0
  67. package/src/components/TextArea/TextArea.test.tsx +1 -0
  68. package/src/components/TextField/TextField.test.tsx +1 -0
  69. package/src/components/TimePicker/TimePicker.test.tsx +1 -0
  70. package/src/components/Timeline/Timeline.test.tsx +1 -0
  71. package/src/components/Title/Title.stories.tsx +3 -16
  72. package/src/components/Title/Title.test.tsx +1 -0
  73. package/src/components/Toast/Toast.test.tsx +1 -0
  74. package/src/components/Tooltip/Tooltip.test.tsx +1 -0
  75. package/src/components/TransferList/TransferList.test.tsx +1 -0
  76. package/src/components/Tree/Tree.test.tsx +1 -0
  77. package/src/components/Typography/Typography.test.tsx +1 -0
  78. package/src/utils/filterStylingProps.test.ts +85 -0
package/dist/index.d.ts CHANGED
@@ -14,6 +14,7 @@ import { CheckboxProps as CheckboxProps_2 } from '@mui/material';
14
14
  import { ChipProps as ChipProps_2 } from '@mui/material';
15
15
  import { CommonProps } from '@mui/material/OverridableComponent';
16
16
  import { ContainerProps as ContainerProps_2 } from '@mui/material';
17
+ import { CSSProperties } from 'react';
17
18
  import { DatePickerProps } from '@mui/x-date-pickers/DatePicker';
18
19
  import { DatePickerSlotProps } from '@mui/x-date-pickers/DatePicker';
19
20
  import { DatePickerSlots } from '@mui/x-date-pickers/DatePicker';
@@ -87,7 +88,7 @@ export declare const AccordionControl: typeof rawComponents.AccordionControl;
87
88
 
88
89
  declare const AccordionControl_2: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<Omit<AccordionSummaryProps, "expandIcon"> & RecursicaAccordionControlProps>, BlockedStylingKeys> & ForbiddenStyles & {
89
90
  overStyled?: false | undefined;
90
- }, "ref"> | Omit<Omit<Omit<AccordionSummaryProps, "expandIcon"> & RecursicaAccordionControlProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
91
+ }, "ref"> | Omit<Omit<Omit<AccordionSummaryProps, "expandIcon"> & RecursicaAccordionControlProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
91
92
  m?: string | number | RecursicaSpacing;
92
93
  mx?: string | number | RecursicaSpacing;
93
94
  my?: string | number | RecursicaSpacing;
@@ -98,6 +99,8 @@ declare const AccordionControl_2: default_2.ForwardRefExoticComponent<(Omit<Omit
98
99
  gap?: string | number | RecursicaSpacing;
99
100
  rowGap?: string | number | RecursicaSpacing;
100
101
  columnGap?: string | number | RecursicaSpacing;
102
+ gutter?: string | number | RecursicaSpacing;
103
+ spacing?: string | number | RecursicaSpacing;
101
104
  } & {
102
105
  overStyled: true;
103
106
  }, "ref">) & default_2.RefAttributes<HTMLDivElement>>;
@@ -114,7 +117,7 @@ value: string;
114
117
  }, "ref"> | Omit<Omit<Omit<AccordionProps_2, "value" | "children" | "onChange" | "defaultExpanded" | "expanded"> & {
115
118
  children?: default_2.ReactNode;
116
119
  value: string;
117
- } & RecursicaAccordionItemProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
120
+ } & RecursicaAccordionItemProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
118
121
  m?: string | number | RecursicaSpacing;
119
122
  mx?: string | number | RecursicaSpacing;
120
123
  my?: string | number | RecursicaSpacing;
@@ -125,6 +128,8 @@ value: string;
125
128
  gap?: string | number | RecursicaSpacing;
126
129
  rowGap?: string | number | RecursicaSpacing;
127
130
  columnGap?: string | number | RecursicaSpacing;
131
+ gutter?: string | number | RecursicaSpacing;
132
+ spacing?: string | number | RecursicaSpacing;
128
133
  } & {
129
134
  overStyled: true;
130
135
  }, "ref">) & default_2.RefAttributes<HTMLDivElement>>;
@@ -138,7 +143,7 @@ export declare const AccordionPanel: typeof rawComponents.AccordionPanel;
138
143
 
139
144
  declare const AccordionPanel_2: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<AccordionDetailsProps & RecursicaAccordionPanelProps>, BlockedStylingKeys> & ForbiddenStyles & {
140
145
  overStyled?: false | undefined;
141
- }, "ref"> | Omit<Omit<AccordionDetailsProps & RecursicaAccordionPanelProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
146
+ }, "ref"> | Omit<Omit<AccordionDetailsProps & RecursicaAccordionPanelProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
142
147
  m?: string | number | RecursicaSpacing;
143
148
  mx?: string | number | RecursicaSpacing;
144
149
  my?: string | number | RecursicaSpacing;
@@ -149,6 +154,8 @@ declare const AccordionPanel_2: default_2.ForwardRefExoticComponent<(Omit<Omit<W
149
154
  gap?: string | number | RecursicaSpacing;
150
155
  rowGap?: string | number | RecursicaSpacing;
151
156
  columnGap?: string | number | RecursicaSpacing;
157
+ gutter?: string | number | RecursicaSpacing;
158
+ spacing?: string | number | RecursicaSpacing;
152
159
  } & {
153
160
  overStyled: true;
154
161
  }, "ref">) & default_2.RefAttributes<HTMLDivElement>>;
@@ -163,7 +170,7 @@ export declare const AssistiveElement: typeof rawComponents.AssistiveElement;
163
170
 
164
171
  declare const AssistiveElement_2: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<Omit<FormHelperTextProps, "component" | "error"> & RecursicaAssistiveElementProps>, BlockedStylingKeys> & ForbiddenStyles & {
165
172
  overStyled?: false | undefined;
166
- }, "ref"> | Omit<Omit<Omit<FormHelperTextProps, "component" | "error"> & RecursicaAssistiveElementProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
173
+ }, "ref"> | Omit<Omit<Omit<FormHelperTextProps, "component" | "error"> & RecursicaAssistiveElementProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
167
174
  m?: string | number | RecursicaSpacing;
168
175
  mx?: string | number | RecursicaSpacing;
169
176
  my?: string | number | RecursicaSpacing;
@@ -174,6 +181,8 @@ declare const AssistiveElement_2: default_2.ForwardRefExoticComponent<(Omit<Omit
174
181
  gap?: string | number | RecursicaSpacing;
175
182
  rowGap?: string | number | RecursicaSpacing;
176
183
  columnGap?: string | number | RecursicaSpacing;
184
+ gutter?: string | number | RecursicaSpacing;
185
+ spacing?: string | number | RecursicaSpacing;
177
186
  } & {
178
187
  overStyled: true;
179
188
  }, "ref">) & default_2.RefAttributes<HTMLParagraphElement>>;
@@ -184,7 +193,7 @@ export declare const Autocomplete: typeof rawComponents.Autocomplete;
184
193
 
185
194
  declare const Autocomplete_2: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<RecursicaAutocompleteProps>, BlockedStylingKeys> & ForbiddenStyles & {
186
195
  overStyled?: false | undefined;
187
- }, "ref"> | Omit<Omit<RecursicaAutocompleteProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
196
+ }, "ref"> | Omit<Omit<RecursicaAutocompleteProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
188
197
  m?: string | number | RecursicaSpacing;
189
198
  mx?: string | number | RecursicaSpacing;
190
199
  my?: string | number | RecursicaSpacing;
@@ -195,6 +204,8 @@ declare const Autocomplete_2: default_2.ForwardRefExoticComponent<(Omit<Omit<Wit
195
204
  gap?: string | number | RecursicaSpacing;
196
205
  rowGap?: string | number | RecursicaSpacing;
197
206
  columnGap?: string | number | RecursicaSpacing;
207
+ gutter?: string | number | RecursicaSpacing;
208
+ spacing?: string | number | RecursicaSpacing;
198
209
  } & {
199
210
  overStyled: true;
200
211
  }, "ref">) & default_2.RefAttributes<HTMLInputElement>>;
@@ -210,7 +221,7 @@ export declare const Avatar: typeof rawComponents.Avatar;
210
221
  */
211
222
  declare const Avatar_2: ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<Omit<AvatarProps_2, "variant"> & RecursicaAvatarProps>, BlockedStylingKeys> & ForbiddenStyles & {
212
223
  overStyled?: false | undefined;
213
- }, "ref"> | Omit<Omit<Omit<AvatarProps_2, "variant"> & RecursicaAvatarProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
224
+ }, "ref"> | Omit<Omit<Omit<AvatarProps_2, "variant"> & RecursicaAvatarProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
214
225
  m?: string | number | RecursicaSpacing;
215
226
  mx?: string | number | RecursicaSpacing;
216
227
  my?: string | number | RecursicaSpacing;
@@ -221,6 +232,8 @@ mr?: string | number | RecursicaSpacing;
221
232
  gap?: string | number | RecursicaSpacing;
222
233
  rowGap?: string | number | RecursicaSpacing;
223
234
  columnGap?: string | number | RecursicaSpacing;
235
+ gutter?: string | number | RecursicaSpacing;
236
+ spacing?: string | number | RecursicaSpacing;
224
237
  } & {
225
238
  overStyled: true;
226
239
  }, "ref">) & RefAttributes<HTMLDivElement>>;
@@ -236,7 +249,7 @@ export declare const Badge: typeof rawComponents.Badge;
236
249
  */
237
250
  declare const Badge_2: ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<Omit<BadgeProps_2, "color" | "variant" | "size" | "radius"> & RecursicaBadgeProps>, BlockedStylingKeys> & ForbiddenStyles & {
238
251
  overStyled?: false | undefined;
239
- }, "ref"> | Omit<Omit<Omit<BadgeProps_2, "color" | "variant" | "size" | "radius"> & RecursicaBadgeProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
252
+ }, "ref"> | Omit<Omit<Omit<BadgeProps_2, "color" | "variant" | "size" | "radius"> & RecursicaBadgeProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
240
253
  m?: string | number | RecursicaSpacing;
241
254
  mx?: string | number | RecursicaSpacing;
242
255
  my?: string | number | RecursicaSpacing;
@@ -247,6 +260,8 @@ mr?: string | number | RecursicaSpacing;
247
260
  gap?: string | number | RecursicaSpacing;
248
261
  rowGap?: string | number | RecursicaSpacing;
249
262
  columnGap?: string | number | RecursicaSpacing;
263
+ gutter?: string | number | RecursicaSpacing;
264
+ spacing?: string | number | RecursicaSpacing;
250
265
  } & {
251
266
  overStyled: true;
252
267
  }, "ref">) & RefAttributes<HTMLDivElement>>;
@@ -274,7 +289,7 @@ export declare const Breadcrumb: typeof rawComponents.Breadcrumb;
274
289
 
275
290
  declare const Breadcrumb_2: ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<Omit<BreadcrumbsProps, "variant" | "size"> & RecursicaBreadcrumbProps>, BlockedStylingKeys> & ForbiddenStyles & {
276
291
  overStyled?: false | undefined;
277
- }, "ref"> | Omit<Omit<Omit<BreadcrumbsProps, "variant" | "size"> & RecursicaBreadcrumbProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
292
+ }, "ref"> | Omit<Omit<Omit<BreadcrumbsProps, "variant" | "size"> & RecursicaBreadcrumbProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
278
293
  m?: string | number | RecursicaSpacing;
279
294
  mx?: string | number | RecursicaSpacing;
280
295
  my?: string | number | RecursicaSpacing;
@@ -285,12 +300,16 @@ mr?: string | number | RecursicaSpacing;
285
300
  gap?: string | number | RecursicaSpacing;
286
301
  rowGap?: string | number | RecursicaSpacing;
287
302
  columnGap?: string | number | RecursicaSpacing;
303
+ gutter?: string | number | RecursicaSpacing;
304
+ spacing?: string | number | RecursicaSpacing;
288
305
  } & {
289
306
  overStyled: true;
290
307
  }, "ref">) & RefAttributes<HTMLDivElement>>;
291
308
 
292
309
  declare type BreadcrumbProps = RecursicaOverStyled<Omit<BreadcrumbsProps, "variant" | "size"> & RecursicaBreadcrumbProps>;
293
310
 
311
+ declare type Breakpoint = "xs" | "sm" | "md" | "lg" | "xl";
312
+
294
313
  export declare const Button: typeof rawComponents.Button;
295
314
 
296
315
  /**
@@ -311,7 +330,7 @@ export declare const Button: typeof rawComponents.Button;
311
330
  */
312
331
  declare const Button_2: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<Omit<ButtonProps_2, "color" | "variant" | "size" | "fullWidth"> & RecursicaButtonProps>, BlockedStylingKeys> & ForbiddenStyles & {
313
332
  overStyled?: false | undefined;
314
- }, "ref"> | Omit<Omit<Omit<ButtonProps_2, "color" | "variant" | "size" | "fullWidth"> & RecursicaButtonProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
333
+ }, "ref"> | Omit<Omit<Omit<ButtonProps_2, "color" | "variant" | "size" | "fullWidth"> & RecursicaButtonProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
315
334
  m?: string | number | RecursicaSpacing;
316
335
  mx?: string | number | RecursicaSpacing;
317
336
  my?: string | number | RecursicaSpacing;
@@ -322,6 +341,8 @@ declare const Button_2: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRecur
322
341
  gap?: string | number | RecursicaSpacing;
323
342
  rowGap?: string | number | RecursicaSpacing;
324
343
  columnGap?: string | number | RecursicaSpacing;
344
+ gutter?: string | number | RecursicaSpacing;
345
+ spacing?: string | number | RecursicaSpacing;
325
346
  } & {
326
347
  overStyled: true;
327
348
  }, "ref">) & default_2.RefAttributes<HTMLButtonElement>>;
@@ -387,7 +408,7 @@ export declare const CheckboxGroup: typeof rawComponents.CheckboxGroup;
387
408
 
388
409
  declare const CheckboxGroup_2: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<RecursicaCheckboxGroupProps_2>, BlockedStylingKeys> & ForbiddenStyles & {
389
410
  overStyled?: false | undefined;
390
- }, "ref"> | Omit<Omit<RecursicaCheckboxGroupProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
411
+ }, "ref"> | Omit<Omit<RecursicaCheckboxGroupProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
391
412
  m?: string | number | RecursicaSpacing;
392
413
  mx?: string | number | RecursicaSpacing;
393
414
  my?: string | number | RecursicaSpacing;
@@ -398,6 +419,8 @@ declare const CheckboxGroup_2: default_2.ForwardRefExoticComponent<(Omit<Omit<Wi
398
419
  gap?: string | number | RecursicaSpacing;
399
420
  rowGap?: string | number | RecursicaSpacing;
400
421
  columnGap?: string | number | RecursicaSpacing;
422
+ gutter?: string | number | RecursicaSpacing;
423
+ spacing?: string | number | RecursicaSpacing;
401
424
  } & {
402
425
  overStyled: true;
403
426
  }, "ref">) & default_2.RefAttributes<HTMLDivElement>>;
@@ -416,7 +439,7 @@ children?: default_2.ReactNode;
416
439
  overStyled?: false | undefined;
417
440
  }, "ref"> | Omit<Omit<Omit<ChipProps_2, "color" | "children" | "variant" | "size" | "radius"> & RecursicaChipProps & {
418
441
  children?: default_2.ReactNode;
419
- }, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
442
+ }, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
420
443
  m?: string | number | RecursicaSpacing;
421
444
  mx?: string | number | RecursicaSpacing;
422
445
  my?: string | number | RecursicaSpacing;
@@ -427,6 +450,8 @@ children?: default_2.ReactNode;
427
450
  gap?: string | number | RecursicaSpacing;
428
451
  rowGap?: string | number | RecursicaSpacing;
429
452
  columnGap?: string | number | RecursicaSpacing;
453
+ gutter?: string | number | RecursicaSpacing;
454
+ spacing?: string | number | RecursicaSpacing;
430
455
  } & {
431
456
  overStyled: true;
432
457
  }, "ref">) & default_2.RefAttributes<HTMLInputElement>>;
@@ -458,7 +483,7 @@ export declare const Dropdown: typeof rawComponents.Dropdown;
458
483
 
459
484
  declare const Dropdown_2: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<RecursicaDropdownProps>, BlockedStylingKeys> & ForbiddenStyles & {
460
485
  overStyled?: false | undefined;
461
- }, "ref"> | Omit<Omit<RecursicaDropdownProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
486
+ }, "ref"> | Omit<Omit<RecursicaDropdownProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
462
487
  m?: string | number | RecursicaSpacing;
463
488
  mx?: string | number | RecursicaSpacing;
464
489
  my?: string | number | RecursicaSpacing;
@@ -469,6 +494,8 @@ declare const Dropdown_2: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRec
469
494
  gap?: string | number | RecursicaSpacing;
470
495
  rowGap?: string | number | RecursicaSpacing;
471
496
  columnGap?: string | number | RecursicaSpacing;
497
+ gutter?: string | number | RecursicaSpacing;
498
+ spacing?: string | number | RecursicaSpacing;
472
499
  } & {
473
500
  overStyled: true;
474
501
  }, "ref">) & default_2.RefAttributes<HTMLInputElement>>;
@@ -506,7 +533,7 @@ export declare const FileInput: typeof rawComponents.FileInput;
506
533
  */
507
534
  declare const FileInput_2: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<RecursicaFileInputProps_2>, BlockedStylingKeys> & ForbiddenStyles & {
508
535
  overStyled?: false | undefined;
509
- }, "ref"> | Omit<Omit<RecursicaFileInputProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
536
+ }, "ref"> | Omit<Omit<RecursicaFileInputProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
510
537
  m?: string | number | RecursicaSpacing;
511
538
  mx?: string | number | RecursicaSpacing;
512
539
  my?: string | number | RecursicaSpacing;
@@ -517,6 +544,8 @@ declare const FileInput_2: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRe
517
544
  gap?: string | number | RecursicaSpacing;
518
545
  rowGap?: string | number | RecursicaSpacing;
519
546
  columnGap?: string | number | RecursicaSpacing;
547
+ gutter?: string | number | RecursicaSpacing;
548
+ spacing?: string | number | RecursicaSpacing;
520
549
  } & {
521
550
  overStyled: true;
522
551
  }, "ref">) & default_2.RefAttributes<HTMLDivElement>>;
@@ -548,7 +577,7 @@ export declare const FileUpload: typeof rawComponents.FileUpload;
548
577
  */
549
578
  declare const FileUpload_2: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<RecursicaFileUploadProps_2>, BlockedStylingKeys> & ForbiddenStyles & {
550
579
  overStyled?: false | undefined;
551
- }, "ref"> | Omit<Omit<RecursicaFileUploadProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
580
+ }, "ref"> | Omit<Omit<RecursicaFileUploadProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
552
581
  m?: string | number | RecursicaSpacing;
553
582
  mx?: string | number | RecursicaSpacing;
554
583
  my?: string | number | RecursicaSpacing;
@@ -559,6 +588,8 @@ declare const FileUpload_2: default_2.ForwardRefExoticComponent<(Omit<Omit<WithR
559
588
  gap?: string | number | RecursicaSpacing;
560
589
  rowGap?: string | number | RecursicaSpacing;
561
590
  columnGap?: string | number | RecursicaSpacing;
591
+ gutter?: string | number | RecursicaSpacing;
592
+ spacing?: string | number | RecursicaSpacing;
562
593
  } & {
563
594
  overStyled: true;
564
595
  }, "ref">) & default_2.RefAttributes<HTMLDivElement>>;
@@ -569,7 +600,24 @@ export declare const Flex: ForwardRefExoticComponent<Omit<rawComponents.FlexProp
569
600
 
570
601
  declare const Flex_2: ForwardRefExoticComponent<Omit<FlexProps, "ref"> & RefAttributes<HTMLDivElement>>;
571
602
 
572
- declare type FlexProps = WithRecursicaSpacing<OmitSx<BoxProps_2 & RecursicaFlexProps>>;
603
+ declare interface FlexOwnProps {
604
+ /** Global gap spacing key or CSS value */
605
+ gap?: string | number;
606
+ /** Horizontal row spacing */
607
+ rowGap?: string | number;
608
+ /** Vertical column spacing */
609
+ columnGap?: string | number;
610
+ /** Flex direction */
611
+ direction?: React.CSSProperties["flexDirection"];
612
+ /** Align items */
613
+ align?: React.CSSProperties["alignItems"];
614
+ /** Justify content */
615
+ justify?: React.CSSProperties["justifyContent"];
616
+ /** Flex wrap */
617
+ wrap?: React.CSSProperties["flexWrap"];
618
+ }
619
+
620
+ declare type FlexProps = WithRecursicaSpacing<OmitSx<BoxProps_2 & FlexOwnProps>>;
573
621
 
574
622
  export declare type ForbiddenStyles = {
575
623
  [K in BlockedStylingKeys]?: never;
@@ -601,19 +649,46 @@ export declare const GridCol: ForwardRefExoticComponent<Omit<rawComponents.GridC
601
649
 
602
650
  declare const GridCol_2: ForwardRefExoticComponent<Omit<GridColProps, "ref"> & RefAttributes<HTMLDivElement>>;
603
651
 
604
- declare type GridColProps = WithRecursicaSpacing<OmitSx<Omit<GridProps_2, "container" | "size" | "offset">> & RecursicaGridColProps>;
652
+ declare type GridColProps = WithRecursicaSpacing<OmitSx<Omit<GridProps_2, "container" | "order">>> & {
653
+ /** Sets the CSS `order` property. Applied via inline style — see notes above. */
654
+ order?: number;
655
+ /** Hides the column below the given breakpoint. MUI has no native equivalent. */
656
+ visibleFrom?: Breakpoint;
657
+ /** Hides the column above the given breakpoint. MUI has no native equivalent. */
658
+ hiddenFrom?: Breakpoint;
659
+ };
605
660
 
606
661
  declare type GridComponent = typeof GridBase & {
607
662
  Col: typeof GridCol_2;
608
663
  };
609
664
 
610
- declare type GridProps = WithRecursicaSpacing<OmitSx<Omit<GridProps_2, "container" | "size" | "offset">> & RecursicaGridProps>;
665
+ declare type GridProps = WithRecursicaSpacing<OmitSx<Omit<GridProps_2, "container" | "justifyContent" | "alignItems">>> & {
666
+ /** Sets `justify-content` on the container. Applied via inline style — see notes above. */
667
+ justifyContent?: CSSProperties["justifyContent"];
668
+ /** Sets `align-items` on the container. Applied via inline style — see notes above. */
669
+ alignItems?: CSSProperties["alignItems"];
670
+ };
611
671
 
612
672
  export declare const Group: ForwardRefExoticComponent<Omit<rawComponents.GroupProps, "ref"> & RefAttributes<HTMLDivElement>>;
613
673
 
614
674
  declare const Group_2: ForwardRefExoticComponent<Omit<GroupProps, "ref"> & RefAttributes<HTMLDivElement>>;
615
675
 
616
- declare type GroupProps = WithRecursicaSpacing<OmitSx<Omit<StackProps, "spacing" | "direction"> & RecursicaGroupProps>>;
676
+ declare interface GroupOwnProps {
677
+ /** Gap spacing */
678
+ gap?: string | number;
679
+ /** Row gap spacing */
680
+ rowGap?: string | number;
681
+ /** Column gap spacing */
682
+ columnGap?: string | number;
683
+ /** Align items justify properties */
684
+ justify?: React.CSSProperties["justifyContent"];
685
+ /** Align items vertical alignment */
686
+ align?: React.CSSProperties["alignItems"];
687
+ /** Flex-wrap settings */
688
+ wrap?: React.CSSProperties["flexWrap"];
689
+ }
690
+
691
+ declare type GroupProps = WithRecursicaSpacing<OmitSx<Omit<StackProps, "spacing" | "direction"> & GroupOwnProps>>;
617
692
 
618
693
  export declare const HoverCard: typeof rawComponents.HoverCard;
619
694
 
@@ -683,7 +758,7 @@ export declare const Link: typeof rawComponents.Link;
683
758
 
684
759
  declare const Link_2: ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<Omit<LinkProps_2, "underline"> & RecursicaLinkProps>, BlockedStylingKeys> & ForbiddenStyles & {
685
760
  overStyled?: false | undefined;
686
- }, "ref"> | Omit<Omit<Omit<LinkProps_2, "underline"> & RecursicaLinkProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
761
+ }, "ref"> | Omit<Omit<Omit<LinkProps_2, "underline"> & RecursicaLinkProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
687
762
  m?: string | number | RecursicaSpacing;
688
763
  mx?: string | number | RecursicaSpacing;
689
764
  my?: string | number | RecursicaSpacing;
@@ -694,6 +769,8 @@ mr?: string | number | RecursicaSpacing;
694
769
  gap?: string | number | RecursicaSpacing;
695
770
  rowGap?: string | number | RecursicaSpacing;
696
771
  columnGap?: string | number | RecursicaSpacing;
772
+ gutter?: string | number | RecursicaSpacing;
773
+ spacing?: string | number | RecursicaSpacing;
697
774
  } & {
698
775
  overStyled: true;
699
776
  }, "ref">) & RefAttributes<HTMLAnchorElement>>;
@@ -710,7 +787,7 @@ export declare const Menu: typeof rawComponents.Menu;
710
787
 
711
788
  declare const Menu_2: ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<MenuProps_2 & RecursicaMenuProps>, BlockedStylingKeys> & ForbiddenStyles & {
712
789
  overStyled?: false | undefined;
713
- }, "ref"> | Omit<Omit<MenuProps_2 & RecursicaMenuProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
790
+ }, "ref"> | Omit<Omit<MenuProps_2 & RecursicaMenuProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
714
791
  m?: string | number | RecursicaSpacing;
715
792
  mx?: string | number | RecursicaSpacing;
716
793
  my?: string | number | RecursicaSpacing;
@@ -721,6 +798,8 @@ mr?: string | number | RecursicaSpacing;
721
798
  gap?: string | number | RecursicaSpacing;
722
799
  rowGap?: string | number | RecursicaSpacing;
723
800
  columnGap?: string | number | RecursicaSpacing;
801
+ gutter?: string | number | RecursicaSpacing;
802
+ spacing?: string | number | RecursicaSpacing;
724
803
  } & {
725
804
  overStyled: true;
726
805
  }, "ref">) & RefAttributes<HTMLDivElement>>;
@@ -729,7 +808,7 @@ export declare const MenuDivider: typeof rawComponents.MenuDivider;
729
808
 
730
809
  declare const MenuDivider_2: ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<DividerProps>, BlockedStylingKeys> & ForbiddenStyles & {
731
810
  overStyled?: false | undefined;
732
- }, "ref"> | Omit<Omit<DividerProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
811
+ }, "ref"> | Omit<Omit<DividerProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
733
812
  m?: string | number | RecursicaSpacing;
734
813
  mx?: string | number | RecursicaSpacing;
735
814
  my?: string | number | RecursicaSpacing;
@@ -740,6 +819,8 @@ mr?: string | number | RecursicaSpacing;
740
819
  gap?: string | number | RecursicaSpacing;
741
820
  rowGap?: string | number | RecursicaSpacing;
742
821
  columnGap?: string | number | RecursicaSpacing;
822
+ gutter?: string | number | RecursicaSpacing;
823
+ spacing?: string | number | RecursicaSpacing;
743
824
  } & {
744
825
  overStyled: true;
745
826
  }, "ref">) & RefAttributes<HTMLHRElement>>;
@@ -750,7 +831,7 @@ export declare const MenuItem: typeof rawComponents.MenuItem;
750
831
 
751
832
  declare const MenuItem_2: ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<MenuItemProps_2>, BlockedStylingKeys> & ForbiddenStyles & {
752
833
  overStyled?: false | undefined;
753
- }, "ref"> | Omit<Omit<MenuItemProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
834
+ }, "ref"> | Omit<Omit<MenuItemProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
754
835
  m?: string | number | RecursicaSpacing;
755
836
  mx?: string | number | RecursicaSpacing;
756
837
  my?: string | number | RecursicaSpacing;
@@ -761,6 +842,8 @@ mr?: string | number | RecursicaSpacing;
761
842
  gap?: string | number | RecursicaSpacing;
762
843
  rowGap?: string | number | RecursicaSpacing;
763
844
  columnGap?: string | number | RecursicaSpacing;
845
+ gutter?: string | number | RecursicaSpacing;
846
+ spacing?: string | number | RecursicaSpacing;
764
847
  } & {
765
848
  overStyled: true;
766
849
  }, "ref">) & RefAttributes<HTMLLIElement>>;
@@ -818,7 +901,7 @@ declare const Modal_2: typeof ModalRoot & {
818
901
 
819
902
  declare const ModalBody: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<DialogContentProps>, BlockedStylingKeys> & ForbiddenStyles & {
820
903
  overStyled?: false | undefined;
821
- }, "ref"> | Omit<Omit<DialogContentProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
904
+ }, "ref"> | Omit<Omit<DialogContentProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
822
905
  m?: string | number | RecursicaSpacing;
823
906
  mx?: string | number | RecursicaSpacing;
824
907
  my?: string | number | RecursicaSpacing;
@@ -829,6 +912,8 @@ declare const ModalBody: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRecu
829
912
  gap?: string | number | RecursicaSpacing;
830
913
  rowGap?: string | number | RecursicaSpacing;
831
914
  columnGap?: string | number | RecursicaSpacing;
915
+ gutter?: string | number | RecursicaSpacing;
916
+ spacing?: string | number | RecursicaSpacing;
832
917
  } & {
833
918
  overStyled: true;
834
919
  }, "ref">) & default_2.RefAttributes<HTMLDivElement>>;
@@ -837,7 +922,7 @@ declare type ModalBodyProps = RecursicaOverStyled<DialogContentProps>;
837
922
 
838
923
  declare const ModalFooter: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<DialogActionsProps>, BlockedStylingKeys> & ForbiddenStyles & {
839
924
  overStyled?: false | undefined;
840
- }, "ref"> | Omit<Omit<DialogActionsProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
925
+ }, "ref"> | Omit<Omit<DialogActionsProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
841
926
  m?: string | number | RecursicaSpacing;
842
927
  mx?: string | number | RecursicaSpacing;
843
928
  my?: string | number | RecursicaSpacing;
@@ -848,6 +933,8 @@ declare const ModalFooter: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRe
848
933
  gap?: string | number | RecursicaSpacing;
849
934
  rowGap?: string | number | RecursicaSpacing;
850
935
  columnGap?: string | number | RecursicaSpacing;
936
+ gutter?: string | number | RecursicaSpacing;
937
+ spacing?: string | number | RecursicaSpacing;
851
938
  } & {
852
939
  overStyled: true;
853
940
  }, "ref">) & default_2.RefAttributes<HTMLDivElement>>;
@@ -858,7 +945,7 @@ declare type ModalProps = RecursicaOverStyled<Omit<DialogProps, "size" | "radius
858
945
 
859
946
  declare const ModalRoot: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<Omit<DialogProps, "shadow" | "size" | "open" | "radius"> & RecursicaModalProps>, BlockedStylingKeys> & ForbiddenStyles & {
860
947
  overStyled?: false | undefined;
861
- }, "ref"> | Omit<Omit<Omit<DialogProps, "shadow" | "size" | "open" | "radius"> & RecursicaModalProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
948
+ }, "ref"> | Omit<Omit<Omit<DialogProps, "shadow" | "size" | "open" | "radius"> & RecursicaModalProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
862
949
  m?: string | number | RecursicaSpacing;
863
950
  mx?: string | number | RecursicaSpacing;
864
951
  my?: string | number | RecursicaSpacing;
@@ -869,13 +956,15 @@ declare const ModalRoot: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRecu
869
956
  gap?: string | number | RecursicaSpacing;
870
957
  rowGap?: string | number | RecursicaSpacing;
871
958
  columnGap?: string | number | RecursicaSpacing;
959
+ gutter?: string | number | RecursicaSpacing;
960
+ spacing?: string | number | RecursicaSpacing;
872
961
  } & {
873
962
  overStyled: true;
874
963
  }, "ref">) & default_2.RefAttributes<HTMLDivElement>>;
875
964
 
876
965
  declare const ModalTitle: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<DialogTitleProps>, BlockedStylingKeys> & ForbiddenStyles & {
877
966
  overStyled?: false | undefined;
878
- }, "ref"> | Omit<Omit<DialogTitleProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
967
+ }, "ref"> | Omit<Omit<DialogTitleProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
879
968
  m?: string | number | RecursicaSpacing;
880
969
  mx?: string | number | RecursicaSpacing;
881
970
  my?: string | number | RecursicaSpacing;
@@ -886,6 +975,8 @@ declare const ModalTitle: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRec
886
975
  gap?: string | number | RecursicaSpacing;
887
976
  rowGap?: string | number | RecursicaSpacing;
888
977
  columnGap?: string | number | RecursicaSpacing;
978
+ gutter?: string | number | RecursicaSpacing;
979
+ spacing?: string | number | RecursicaSpacing;
889
980
  } & {
890
981
  overStyled: true;
891
982
  }, "ref">) & default_2.RefAttributes<HTMLDivElement>>;
@@ -902,7 +993,7 @@ export declare const NumberInput: typeof rawComponents.NumberInput;
902
993
 
903
994
  declare const NumberInput_2: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<RecursicaNumberInputProps>, BlockedStylingKeys> & ForbiddenStyles & {
904
995
  overStyled?: false | undefined;
905
- }, "ref"> | Omit<Omit<RecursicaNumberInputProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
996
+ }, "ref"> | Omit<Omit<RecursicaNumberInputProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
906
997
  m?: string | number | RecursicaSpacing;
907
998
  mx?: string | number | RecursicaSpacing;
908
999
  my?: string | number | RecursicaSpacing;
@@ -913,6 +1004,8 @@ declare const NumberInput_2: default_2.ForwardRefExoticComponent<(Omit<Omit<With
913
1004
  gap?: string | number | RecursicaSpacing;
914
1005
  rowGap?: string | number | RecursicaSpacing;
915
1006
  columnGap?: string | number | RecursicaSpacing;
1007
+ gutter?: string | number | RecursicaSpacing;
1008
+ spacing?: string | number | RecursicaSpacing;
916
1009
  } & {
917
1010
  overStyled: true;
918
1011
  }, "ref">) & default_2.RefAttributes<HTMLInputElement>>;
@@ -954,7 +1047,7 @@ export declare const Pagination: typeof rawComponents.Pagination;
954
1047
  */
955
1048
  declare const Pagination_2: ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<PaginationProps_2 & RecursicaPaginationProps>, BlockedStylingKeys> & ForbiddenStyles & {
956
1049
  overStyled?: false | undefined;
957
- }, "ref"> | Omit<Omit<PaginationProps_2 & RecursicaPaginationProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
1050
+ }, "ref"> | Omit<Omit<PaginationProps_2 & RecursicaPaginationProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
958
1051
  m?: string | number | RecursicaSpacing;
959
1052
  mx?: string | number | RecursicaSpacing;
960
1053
  my?: string | number | RecursicaSpacing;
@@ -965,6 +1058,8 @@ mr?: string | number | RecursicaSpacing;
965
1058
  gap?: string | number | RecursicaSpacing;
966
1059
  rowGap?: string | number | RecursicaSpacing;
967
1060
  columnGap?: string | number | RecursicaSpacing;
1061
+ gutter?: string | number | RecursicaSpacing;
1062
+ spacing?: string | number | RecursicaSpacing;
968
1063
  } & {
969
1064
  overStyled: true;
970
1065
  }, "ref">) & RefAttributes<HTMLDivElement>>;
@@ -1044,7 +1139,7 @@ h?: string | number;
1044
1139
  height?: string | number;
1045
1140
  }, "ref"> | Omit<Omit<CardOwnProps & CommonProps & Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "className" | "classes" | "style" | "sx" | "children" | "variant" | "elevation" | "square" | "raised"> & {
1046
1141
  component?: React.ElementType | undefined;
1047
- } & RecursicaCardProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
1142
+ } & RecursicaCardProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
1048
1143
  m?: string | number | RecursicaSpacing;
1049
1144
  mx?: string | number | RecursicaSpacing;
1050
1145
  my?: string | number | RecursicaSpacing;
@@ -1055,6 +1150,8 @@ mr?: string | number | RecursicaSpacing;
1055
1150
  gap?: string | number | RecursicaSpacing;
1056
1151
  rowGap?: string | number | RecursicaSpacing;
1057
1152
  columnGap?: string | number | RecursicaSpacing;
1153
+ gutter?: string | number | RecursicaSpacing;
1154
+ spacing?: string | number | RecursicaSpacing;
1058
1155
  } & {
1059
1156
  overStyled: true;
1060
1157
  } & {
@@ -1897,28 +1994,6 @@ declare interface RecursicaFileUploadProps_2 extends Omit<default_2.HTMLAttribut
1897
1994
  withAsterisk?: boolean;
1898
1995
  }
1899
1996
 
1900
- /**
1901
- * Props for the Recursica Flex layout component.
1902
- */
1903
- export declare interface RecursicaFlexProps {
1904
- /** Children nodes */
1905
- children?: default_2.ReactNode;
1906
- /** Global gap spacing key or CSS value */
1907
- gap?: string | number | RecursicaSpacing;
1908
- /** Horizontal row spacing */
1909
- rowGap?: string | number | RecursicaSpacing;
1910
- /** Vertical column spacing */
1911
- columnGap?: string | number | RecursicaSpacing;
1912
- /** Flex direction */
1913
- direction?: default_2.CSSProperties["flexDirection"];
1914
- /** Align items */
1915
- align?: default_2.CSSProperties["alignItems"];
1916
- /** Justify content */
1917
- justify?: default_2.CSSProperties["justifyContent"];
1918
- /** Flex wrap */
1919
- wrap?: default_2.CSSProperties["flexWrap"];
1920
- }
1921
-
1922
1997
  /**
1923
1998
  * Props for the Recursica FormControlLayout component.
1924
1999
  */
@@ -1969,64 +2044,6 @@ declare interface RecursicaFormControlWrapperProps_2 extends RecursicaLabelProps
1969
2044
  controlMinWidth?: string | undefined;
1970
2045
  }
1971
2046
 
1972
- declare type RecursicaGridBreakpoint = "base" | "xs" | "sm" | "md" | "lg" | "xl";
1973
-
1974
- /**
1975
- * Props for the Recursica Grid.Col layout component.
1976
- */
1977
- export declare interface RecursicaGridColProps {
1978
- /** Content of the column */
1979
- children?: default_2.ReactNode;
1980
- /** Column span, either a fixed value or a per-breakpoint object */
1981
- span?: number | "auto" | "content" | Partial<Record<RecursicaGridBreakpoint, number | "auto" | "content">>;
1982
- /** Column offset, either a fixed value or a per-breakpoint object */
1983
- offset?: number | Partial<Record<RecursicaGridBreakpoint, number>>;
1984
- /** Column order, either a fixed value or a per-breakpoint object */
1985
- order?: number | Partial<Record<RecursicaGridBreakpoint, number>>;
1986
- /** Hides the column below the given breakpoint */
1987
- visibleFrom?: RecursicaGridBreakpoint;
1988
- /** Hides the column above the given breakpoint */
1989
- hiddenFrom?: RecursicaGridBreakpoint;
1990
- }
1991
-
1992
- /**
1993
- * Props for the Recursica Grid layout component.
1994
- */
1995
- export declare interface RecursicaGridProps {
1996
- /** Grid columns and their content */
1997
- children?: default_2.ReactNode;
1998
- /** Gap between columns. Renamed from Mantine's `gutter` for consistency with Flex/Stack/Group. */
1999
- gap?: string | number | RecursicaSpacing;
2000
- /** Number of columns in each row */
2001
- columns?: number;
2002
- /** If set, columns in the last row expand to fill all available space */
2003
- grow?: boolean;
2004
- /** Justify-content flexbox property */
2005
- justify?: default_2.CSSProperties["justifyContent"];
2006
- /** Align-items flexbox property */
2007
- align?: default_2.CSSProperties["alignItems"];
2008
- }
2009
-
2010
- /**
2011
- * Props for the Recursica Group layout component.
2012
- */
2013
- export declare interface RecursicaGroupProps {
2014
- /** Children elements to align horizontally */
2015
- children?: default_2.ReactNode;
2016
- /** Gap spacing */
2017
- gap?: string | RecursicaSpacing;
2018
- /** Row gap spacing */
2019
- rowGap?: string | RecursicaSpacing;
2020
- /** Column gap spacing */
2021
- columnGap?: string | RecursicaSpacing;
2022
- /** Align items justify properties */
2023
- justify?: default_2.CSSProperties["justifyContent"];
2024
- /** Align items vertical alignment */
2025
- align?: default_2.CSSProperties["alignItems"];
2026
- /** Flex-wrap settings */
2027
- wrap?: default_2.CSSProperties["flexWrap"];
2028
- }
2029
-
2030
2047
  /**
2031
2048
  * Props for the Recursica HoverCard component.
2032
2049
  */
@@ -2333,20 +2350,6 @@ declare interface RecursicaSliderProps_2 {
2333
2350
  */
2334
2351
  export declare type RecursicaSpacing = "rec-none" | "rec-sm" | "rec-default" | "rec-md" | "rec-lg" | "rec-xl" | "rec-2xl";
2335
2352
 
2336
- /**
2337
- * Props for the Recursica Stack layout component.
2338
- */
2339
- export declare interface RecursicaStackProps {
2340
- /** Children elements aligned vertically */
2341
- children?: default_2.ReactNode;
2342
- /** Gap space size */
2343
- gap?: string | number | RecursicaSpacing;
2344
- /** Align-items flexbox property */
2345
- align?: default_2.CSSProperties["alignItems"];
2346
- /** Justify-content flexbox property */
2347
- justify?: default_2.CSSProperties["justifyContent"];
2348
- }
2349
-
2350
2353
  /**
2351
2354
  * Props for the Recursica Stepper component.
2352
2355
  */
@@ -2723,7 +2726,7 @@ overStyled?: false | undefined;
2723
2726
  }, "ref"> | Omit<Omit<Omit<ToggleButtonGroupProps, "className" | "color" | "value" | "classNames" | "variant" | "size" | "radius"> & {
2724
2727
  className?: string;
2725
2728
  classNames?: Partial<Record<string, string>>;
2726
- } & RecursicaSegmentedControlProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
2729
+ } & RecursicaSegmentedControlProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
2727
2730
  m?: string | number | RecursicaSpacing;
2728
2731
  mx?: string | number | RecursicaSpacing;
2729
2732
  my?: string | number | RecursicaSpacing;
@@ -2734,6 +2737,8 @@ mr?: string | number | RecursicaSpacing;
2734
2737
  gap?: string | number | RecursicaSpacing;
2735
2738
  rowGap?: string | number | RecursicaSpacing;
2736
2739
  columnGap?: string | number | RecursicaSpacing;
2740
+ gutter?: string | number | RecursicaSpacing;
2741
+ spacing?: string | number | RecursicaSpacing;
2737
2742
  } & {
2738
2743
  overStyled: true;
2739
2744
  }, "ref">) & RefAttributes<HTMLDivElement>>;
@@ -2758,7 +2763,7 @@ export declare const Slider: typeof rawComponents.Slider;
2758
2763
  */
2759
2764
  declare const Slider_2: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<RecursicaSliderProps>, BlockedStylingKeys> & ForbiddenStyles & {
2760
2765
  overStyled?: false | undefined;
2761
- }, "ref"> | Omit<Omit<RecursicaSliderProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
2766
+ }, "ref"> | Omit<Omit<RecursicaSliderProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
2762
2767
  m?: string | number | RecursicaSpacing;
2763
2768
  mx?: string | number | RecursicaSpacing;
2764
2769
  my?: string | number | RecursicaSpacing;
@@ -2769,6 +2774,8 @@ declare const Slider_2: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRecur
2769
2774
  gap?: string | number | RecursicaSpacing;
2770
2775
  rowGap?: string | number | RecursicaSpacing;
2771
2776
  columnGap?: string | number | RecursicaSpacing;
2777
+ gutter?: string | number | RecursicaSpacing;
2778
+ spacing?: string | number | RecursicaSpacing;
2772
2779
  } & {
2773
2780
  overStyled: true;
2774
2781
  }, "ref">) & default_2.RefAttributes<HTMLDivElement>>;
@@ -2779,11 +2786,11 @@ export declare const Stack: ForwardRefExoticComponent<Omit<rawComponents.StackPr
2779
2786
 
2780
2787
  declare const Stack_2: ForwardRefExoticComponent<Omit<StackProps_2, "ref"> & RefAttributes<HTMLDivElement>>;
2781
2788
 
2782
- declare type StackProps_2 = WithRecursicaSpacing<OmitSx<Omit<StackProps, "spacing"> & RecursicaStackProps>>;
2789
+ declare type StackProps_2 = WithRecursicaSpacing<OmitSx<StackProps>>;
2783
2790
 
2784
2791
  declare const Step: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<StepProps_2>, BlockedStylingKeys> & ForbiddenStyles & {
2785
2792
  overStyled?: false | undefined;
2786
- }, "ref"> | Omit<Omit<StepProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
2793
+ }, "ref"> | Omit<Omit<StepProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
2787
2794
  m?: string | number | RecursicaSpacing;
2788
2795
  mx?: string | number | RecursicaSpacing;
2789
2796
  my?: string | number | RecursicaSpacing;
@@ -2794,13 +2801,15 @@ declare const Step: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRecursica
2794
2801
  gap?: string | number | RecursicaSpacing;
2795
2802
  rowGap?: string | number | RecursicaSpacing;
2796
2803
  columnGap?: string | number | RecursicaSpacing;
2804
+ gutter?: string | number | RecursicaSpacing;
2805
+ spacing?: string | number | RecursicaSpacing;
2797
2806
  } & {
2798
2807
  overStyled: true;
2799
2808
  }, "ref">) & default_2.RefAttributes<HTMLDivElement>>;
2800
2809
 
2801
2810
  declare const StepButton: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<StepButtonProps_2>, BlockedStylingKeys> & ForbiddenStyles & {
2802
2811
  overStyled?: false | undefined;
2803
- }, "ref"> | Omit<Omit<StepButtonProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
2812
+ }, "ref"> | Omit<Omit<StepButtonProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
2804
2813
  m?: string | number | RecursicaSpacing;
2805
2814
  mx?: string | number | RecursicaSpacing;
2806
2815
  my?: string | number | RecursicaSpacing;
@@ -2811,6 +2820,8 @@ declare const StepButton: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRec
2811
2820
  gap?: string | number | RecursicaSpacing;
2812
2821
  rowGap?: string | number | RecursicaSpacing;
2813
2822
  columnGap?: string | number | RecursicaSpacing;
2823
+ gutter?: string | number | RecursicaSpacing;
2824
+ spacing?: string | number | RecursicaSpacing;
2814
2825
  } & {
2815
2826
  overStyled: true;
2816
2827
  }, "ref">) & default_2.RefAttributes<HTMLButtonElement>>;
@@ -2819,7 +2830,7 @@ declare type StepButtonProps = RecursicaOverStyled<StepButtonProps_2>;
2819
2830
 
2820
2831
  declare const StepConnector: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<StepConnectorProps_2>, BlockedStylingKeys> & ForbiddenStyles & {
2821
2832
  overStyled?: false | undefined;
2822
- }, "ref"> | Omit<Omit<StepConnectorProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
2833
+ }, "ref"> | Omit<Omit<StepConnectorProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
2823
2834
  m?: string | number | RecursicaSpacing;
2824
2835
  mx?: string | number | RecursicaSpacing;
2825
2836
  my?: string | number | RecursicaSpacing;
@@ -2830,6 +2841,8 @@ declare const StepConnector: default_2.ForwardRefExoticComponent<(Omit<Omit<With
2830
2841
  gap?: string | number | RecursicaSpacing;
2831
2842
  rowGap?: string | number | RecursicaSpacing;
2832
2843
  columnGap?: string | number | RecursicaSpacing;
2844
+ gutter?: string | number | RecursicaSpacing;
2845
+ spacing?: string | number | RecursicaSpacing;
2833
2846
  } & {
2834
2847
  overStyled: true;
2835
2848
  }, "ref">) & default_2.RefAttributes<HTMLDivElement>>;
@@ -2842,7 +2855,7 @@ description?: default_2.ReactNode;
2842
2855
  overStyled?: false | undefined;
2843
2856
  }, "ref"> | Omit<Omit<StepLabelProps_2 & {
2844
2857
  description?: default_2.ReactNode;
2845
- }, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
2858
+ }, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
2846
2859
  m?: string | number | RecursicaSpacing;
2847
2860
  mx?: string | number | RecursicaSpacing;
2848
2861
  my?: string | number | RecursicaSpacing;
@@ -2853,6 +2866,8 @@ description?: default_2.ReactNode;
2853
2866
  gap?: string | number | RecursicaSpacing;
2854
2867
  rowGap?: string | number | RecursicaSpacing;
2855
2868
  columnGap?: string | number | RecursicaSpacing;
2869
+ gutter?: string | number | RecursicaSpacing;
2870
+ spacing?: string | number | RecursicaSpacing;
2856
2871
  } & {
2857
2872
  overStyled: true;
2858
2873
  }, "ref">) & default_2.RefAttributes<HTMLDivElement>>;
@@ -2865,7 +2880,7 @@ export declare const Stepper: typeof rawComponents.Stepper;
2865
2880
 
2866
2881
  declare const Stepper_2: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<RecursicaStepperPropsExtended>, BlockedStylingKeys> & ForbiddenStyles & {
2867
2882
  overStyled?: false | undefined;
2868
- }, "ref"> | Omit<Omit<RecursicaStepperPropsExtended, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
2883
+ }, "ref"> | Omit<Omit<RecursicaStepperPropsExtended, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
2869
2884
  m?: string | number | RecursicaSpacing;
2870
2885
  mx?: string | number | RecursicaSpacing;
2871
2886
  my?: string | number | RecursicaSpacing;
@@ -2876,6 +2891,8 @@ declare const Stepper_2: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRecu
2876
2891
  gap?: string | number | RecursicaSpacing;
2877
2892
  rowGap?: string | number | RecursicaSpacing;
2878
2893
  columnGap?: string | number | RecursicaSpacing;
2894
+ gutter?: string | number | RecursicaSpacing;
2895
+ spacing?: string | number | RecursicaSpacing;
2879
2896
  } & {
2880
2897
  overStyled: true;
2881
2898
  }, "ref">) & default_2.RefAttributes<HTMLDivElement>>;
@@ -2896,7 +2913,7 @@ export declare const SwitchGroup: typeof rawComponents.SwitchGroup;
2896
2913
 
2897
2914
  declare const SwitchGroup_2: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<RecursicaSwitchGroupProps_2>, BlockedStylingKeys> & ForbiddenStyles & {
2898
2915
  overStyled?: false | undefined;
2899
- }, "ref"> | Omit<Omit<RecursicaSwitchGroupProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
2916
+ }, "ref"> | Omit<Omit<RecursicaSwitchGroupProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
2900
2917
  m?: string | number | RecursicaSpacing;
2901
2918
  mx?: string | number | RecursicaSpacing;
2902
2919
  my?: string | number | RecursicaSpacing;
@@ -2907,6 +2924,8 @@ declare const SwitchGroup_2: default_2.ForwardRefExoticComponent<(Omit<Omit<With
2907
2924
  gap?: string | number | RecursicaSpacing;
2908
2925
  rowGap?: string | number | RecursicaSpacing;
2909
2926
  columnGap?: string | number | RecursicaSpacing;
2927
+ gutter?: string | number | RecursicaSpacing;
2928
+ spacing?: string | number | RecursicaSpacing;
2910
2929
  } & {
2911
2930
  overStyled: true;
2912
2931
  }, "ref">) & default_2.RefAttributes<HTMLDivElement>>;
@@ -2928,7 +2947,7 @@ export declare const Tab: typeof rawComponents.Tab;
2928
2947
 
2929
2948
  declare const Tab_2: ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<TabProps_2>, BlockedStylingKeys> & ForbiddenStyles & {
2930
2949
  overStyled?: false | undefined;
2931
- }, "ref"> | Omit<Omit<TabProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
2950
+ }, "ref"> | Omit<Omit<TabProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
2932
2951
  m?: string | number | RecursicaSpacing;
2933
2952
  mx?: string | number | RecursicaSpacing;
2934
2953
  my?: string | number | RecursicaSpacing;
@@ -2939,6 +2958,8 @@ mr?: string | number | RecursicaSpacing;
2939
2958
  gap?: string | number | RecursicaSpacing;
2940
2959
  rowGap?: string | number | RecursicaSpacing;
2941
2960
  columnGap?: string | number | RecursicaSpacing;
2961
+ gutter?: string | number | RecursicaSpacing;
2962
+ spacing?: string | number | RecursicaSpacing;
2942
2963
  } & {
2943
2964
  overStyled: true;
2944
2965
  }, "ref">) & RefAttributes<HTMLDivElement>>;
@@ -2953,7 +2974,7 @@ component?: React.ElementType | undefined;
2953
2974
  overStyled?: false | undefined;
2954
2975
  }, "ref"> | Omit<Omit<TableOwnProps & CommonProps & Omit<DetailedHTMLProps<TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, "className" | "classes" | "style" | "sx" | "children" | "padding" | "size" | "stickyHeader"> & {
2955
2976
  component?: React.ElementType | undefined;
2956
- } & RecursicaTableProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
2977
+ } & RecursicaTableProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
2957
2978
  m?: string | number | RecursicaSpacing;
2958
2979
  mx?: string | number | RecursicaSpacing;
2959
2980
  my?: string | number | RecursicaSpacing;
@@ -2964,13 +2985,15 @@ mr?: string | number | RecursicaSpacing;
2964
2985
  gap?: string | number | RecursicaSpacing;
2965
2986
  rowGap?: string | number | RecursicaSpacing;
2966
2987
  columnGap?: string | number | RecursicaSpacing;
2988
+ gutter?: string | number | RecursicaSpacing;
2989
+ spacing?: string | number | RecursicaSpacing;
2967
2990
  } & {
2968
2991
  overStyled: true;
2969
2992
  }, "ref">) & RefAttributes<HTMLTableElement>>;
2970
2993
 
2971
2994
  declare const TableBodyComponent: ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<TableBodyProps>, BlockedStylingKeys> & ForbiddenStyles & {
2972
2995
  overStyled?: false | undefined;
2973
- }, "ref"> | Omit<Omit<TableBodyProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
2996
+ }, "ref"> | Omit<Omit<TableBodyProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
2974
2997
  m?: string | number | RecursicaSpacing;
2975
2998
  mx?: string | number | RecursicaSpacing;
2976
2999
  my?: string | number | RecursicaSpacing;
@@ -2981,6 +3004,8 @@ mr?: string | number | RecursicaSpacing;
2981
3004
  gap?: string | number | RecursicaSpacing;
2982
3005
  rowGap?: string | number | RecursicaSpacing;
2983
3006
  columnGap?: string | number | RecursicaSpacing;
3007
+ gutter?: string | number | RecursicaSpacing;
3008
+ spacing?: string | number | RecursicaSpacing;
2984
3009
  } & {
2985
3010
  overStyled: true;
2986
3011
  }, "ref">) & RefAttributes<HTMLTableSectionElement>>;
@@ -2989,7 +3014,7 @@ declare type TableBodyPropsRecursica = RecursicaOverStyled<TableBodyProps>;
2989
3014
 
2990
3015
  declare const TableCellComponent: ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<Omit<TableCellProps, "children" | "variant"> & RecursicaTableHeaderCellProps & RecursicaTableCellProps>, BlockedStylingKeys> & ForbiddenStyles & {
2991
3016
  overStyled?: false | undefined;
2992
- }, "ref"> | Omit<Omit<Omit<TableCellProps, "children" | "variant"> & RecursicaTableHeaderCellProps & RecursicaTableCellProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
3017
+ }, "ref"> | Omit<Omit<Omit<TableCellProps, "children" | "variant"> & RecursicaTableHeaderCellProps & RecursicaTableCellProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
2993
3018
  m?: string | number | RecursicaSpacing;
2994
3019
  mx?: string | number | RecursicaSpacing;
2995
3020
  my?: string | number | RecursicaSpacing;
@@ -3000,6 +3025,8 @@ mr?: string | number | RecursicaSpacing;
3000
3025
  gap?: string | number | RecursicaSpacing;
3001
3026
  rowGap?: string | number | RecursicaSpacing;
3002
3027
  columnGap?: string | number | RecursicaSpacing;
3028
+ gutter?: string | number | RecursicaSpacing;
3029
+ spacing?: string | number | RecursicaSpacing;
3003
3030
  } & {
3004
3031
  overStyled: true;
3005
3032
  }, "ref">) & RefAttributes<HTMLTableCellElement>>;
@@ -3018,7 +3045,7 @@ declare type TableComponent = typeof TableBase & {
3018
3045
 
3019
3046
  declare const TableContainerComponent: ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<TableContainerProps>, BlockedStylingKeys> & ForbiddenStyles & {
3020
3047
  overStyled?: false | undefined;
3021
- }, "ref"> | Omit<Omit<TableContainerProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
3048
+ }, "ref"> | Omit<Omit<TableContainerProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
3022
3049
  m?: string | number | RecursicaSpacing;
3023
3050
  mx?: string | number | RecursicaSpacing;
3024
3051
  my?: string | number | RecursicaSpacing;
@@ -3029,6 +3056,8 @@ mr?: string | number | RecursicaSpacing;
3029
3056
  gap?: string | number | RecursicaSpacing;
3030
3057
  rowGap?: string | number | RecursicaSpacing;
3031
3058
  columnGap?: string | number | RecursicaSpacing;
3059
+ gutter?: string | number | RecursicaSpacing;
3060
+ spacing?: string | number | RecursicaSpacing;
3032
3061
  } & {
3033
3062
  overStyled: true;
3034
3063
  }, "ref">) & RefAttributes<HTMLDivElement>>;
@@ -3037,7 +3066,7 @@ declare type TableContainerPropsRecursica = RecursicaOverStyled<TableContainerPr
3037
3066
 
3038
3067
  declare const TableFooterComponent: ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<TableFooterProps>, BlockedStylingKeys> & ForbiddenStyles & {
3039
3068
  overStyled?: false | undefined;
3040
- }, "ref"> | Omit<Omit<TableFooterProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
3069
+ }, "ref"> | Omit<Omit<TableFooterProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
3041
3070
  m?: string | number | RecursicaSpacing;
3042
3071
  mx?: string | number | RecursicaSpacing;
3043
3072
  my?: string | number | RecursicaSpacing;
@@ -3048,6 +3077,8 @@ mr?: string | number | RecursicaSpacing;
3048
3077
  gap?: string | number | RecursicaSpacing;
3049
3078
  rowGap?: string | number | RecursicaSpacing;
3050
3079
  columnGap?: string | number | RecursicaSpacing;
3080
+ gutter?: string | number | RecursicaSpacing;
3081
+ spacing?: string | number | RecursicaSpacing;
3051
3082
  } & {
3052
3083
  overStyled: true;
3053
3084
  }, "ref">) & RefAttributes<HTMLTableSectionElement>>;
@@ -3056,7 +3087,7 @@ declare type TableFooterPropsRecursica = RecursicaOverStyled<TableFooterProps>;
3056
3087
 
3057
3088
  declare const TableHeadComponent: ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<TableHeadProps>, BlockedStylingKeys> & ForbiddenStyles & {
3058
3089
  overStyled?: false | undefined;
3059
- }, "ref"> | Omit<Omit<TableHeadProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
3090
+ }, "ref"> | Omit<Omit<TableHeadProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
3060
3091
  m?: string | number | RecursicaSpacing;
3061
3092
  mx?: string | number | RecursicaSpacing;
3062
3093
  my?: string | number | RecursicaSpacing;
@@ -3067,6 +3098,8 @@ mr?: string | number | RecursicaSpacing;
3067
3098
  gap?: string | number | RecursicaSpacing;
3068
3099
  rowGap?: string | number | RecursicaSpacing;
3069
3100
  columnGap?: string | number | RecursicaSpacing;
3101
+ gutter?: string | number | RecursicaSpacing;
3102
+ spacing?: string | number | RecursicaSpacing;
3070
3103
  } & {
3071
3104
  overStyled: true;
3072
3105
  }, "ref">) & RefAttributes<HTMLTableSectionElement>>;
@@ -3077,7 +3110,7 @@ declare type TableProps = RecursicaOverStyled<TableProps_2 & RecursicaTableProps
3077
3110
 
3078
3111
  declare const TableRowComponent: ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<Omit<TableRowProps, "children"> & RecursicaTableRowProps>, BlockedStylingKeys> & ForbiddenStyles & {
3079
3112
  overStyled?: false | undefined;
3080
- }, "ref"> | Omit<Omit<Omit<TableRowProps, "children"> & RecursicaTableRowProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
3113
+ }, "ref"> | Omit<Omit<Omit<TableRowProps, "children"> & RecursicaTableRowProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
3081
3114
  m?: string | number | RecursicaSpacing;
3082
3115
  mx?: string | number | RecursicaSpacing;
3083
3116
  my?: string | number | RecursicaSpacing;
@@ -3088,6 +3121,8 @@ mr?: string | number | RecursicaSpacing;
3088
3121
  gap?: string | number | RecursicaSpacing;
3089
3122
  rowGap?: string | number | RecursicaSpacing;
3090
3123
  columnGap?: string | number | RecursicaSpacing;
3124
+ gutter?: string | number | RecursicaSpacing;
3125
+ spacing?: string | number | RecursicaSpacing;
3091
3126
  } & {
3092
3127
  overStyled: true;
3093
3128
  }, "ref">) & RefAttributes<HTMLTableRowElement>>;
@@ -3096,7 +3131,7 @@ declare type TableRowPropsRecursica = RecursicaOverStyled<Omit<TableRowProps, "c
3096
3131
 
3097
3132
  declare const TableSortLabelComponent: ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<TableSortLabelProps>, BlockedStylingKeys> & ForbiddenStyles & {
3098
3133
  overStyled?: false | undefined;
3099
- }, "ref"> | Omit<Omit<TableSortLabelProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
3134
+ }, "ref"> | Omit<Omit<TableSortLabelProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
3100
3135
  m?: string | number | RecursicaSpacing;
3101
3136
  mx?: string | number | RecursicaSpacing;
3102
3137
  my?: string | number | RecursicaSpacing;
@@ -3107,6 +3142,8 @@ mr?: string | number | RecursicaSpacing;
3107
3142
  gap?: string | number | RecursicaSpacing;
3108
3143
  rowGap?: string | number | RecursicaSpacing;
3109
3144
  columnGap?: string | number | RecursicaSpacing;
3145
+ gutter?: string | number | RecursicaSpacing;
3146
+ spacing?: string | number | RecursicaSpacing;
3110
3147
  } & {
3111
3148
  overStyled: true;
3112
3149
  }, "ref">) & RefAttributes<HTMLSpanElement>>;
@@ -3117,7 +3154,7 @@ export declare const TabPanel: typeof rawComponents.TabPanel;
3117
3154
 
3118
3155
  declare const TabPanel_2: ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<TabPanelProps_2>, BlockedStylingKeys> & ForbiddenStyles & {
3119
3156
  overStyled?: false | undefined;
3120
- }, "ref"> | Omit<Omit<TabPanelProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
3157
+ }, "ref"> | Omit<Omit<TabPanelProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
3121
3158
  m?: string | number | RecursicaSpacing;
3122
3159
  mx?: string | number | RecursicaSpacing;
3123
3160
  my?: string | number | RecursicaSpacing;
@@ -3128,6 +3165,8 @@ mr?: string | number | RecursicaSpacing;
3128
3165
  gap?: string | number | RecursicaSpacing;
3129
3166
  rowGap?: string | number | RecursicaSpacing;
3130
3167
  columnGap?: string | number | RecursicaSpacing;
3168
+ gutter?: string | number | RecursicaSpacing;
3169
+ spacing?: string | number | RecursicaSpacing;
3131
3170
  } & {
3132
3171
  overStyled: true;
3133
3172
  }, "ref">) & RefAttributes<HTMLDivElement>>;
@@ -3140,7 +3179,7 @@ export declare const Tabs: typeof rawComponents.Tabs;
3140
3179
 
3141
3180
  declare const Tabs_2: ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<RecursicaTabsPropsExtended>, BlockedStylingKeys> & ForbiddenStyles & {
3142
3181
  overStyled?: false | undefined;
3143
- }, "ref"> | Omit<Omit<RecursicaTabsPropsExtended, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
3182
+ }, "ref"> | Omit<Omit<RecursicaTabsPropsExtended, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
3144
3183
  m?: string | number | RecursicaSpacing;
3145
3184
  mx?: string | number | RecursicaSpacing;
3146
3185
  my?: string | number | RecursicaSpacing;
@@ -3151,6 +3190,8 @@ mr?: string | number | RecursicaSpacing;
3151
3190
  gap?: string | number | RecursicaSpacing;
3152
3191
  rowGap?: string | number | RecursicaSpacing;
3153
3192
  columnGap?: string | number | RecursicaSpacing;
3193
+ gutter?: string | number | RecursicaSpacing;
3194
+ spacing?: string | number | RecursicaSpacing;
3154
3195
  } & {
3155
3196
  overStyled: true;
3156
3197
  }, "ref">) & RefAttributes<HTMLDivElement>>;
@@ -3162,7 +3203,7 @@ export { Text_2 as Text }
3162
3203
 
3163
3204
  declare const Text_3: ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<Omit<TypographyProps, "classes" | "variant"> & RecursicaTextProps>, BlockedStylingKeys> & ForbiddenStyles & {
3164
3205
  overStyled?: false | undefined;
3165
- }, "ref"> | Omit<Omit<Omit<TypographyProps, "classes" | "variant"> & RecursicaTextProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
3206
+ }, "ref"> | Omit<Omit<Omit<TypographyProps, "classes" | "variant"> & RecursicaTextProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
3166
3207
  m?: string | number | RecursicaSpacing;
3167
3208
  mx?: string | number | RecursicaSpacing;
3168
3209
  my?: string | number | RecursicaSpacing;
@@ -3173,6 +3214,8 @@ mr?: string | number | RecursicaSpacing;
3173
3214
  gap?: string | number | RecursicaSpacing;
3174
3215
  rowGap?: string | number | RecursicaSpacing;
3175
3216
  columnGap?: string | number | RecursicaSpacing;
3217
+ gutter?: string | number | RecursicaSpacing;
3218
+ spacing?: string | number | RecursicaSpacing;
3176
3219
  } & {
3177
3220
  overStyled: true;
3178
3221
  }, "ref">) & RefAttributes<HTMLElement>>;
@@ -3181,7 +3224,7 @@ export declare const TextArea: typeof rawComponents.TextArea;
3181
3224
 
3182
3225
  declare const TextArea_2: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<RecursicaTextAreaProps>, BlockedStylingKeys> & ForbiddenStyles & {
3183
3226
  overStyled?: false | undefined;
3184
- }, "ref"> | Omit<Omit<RecursicaTextAreaProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
3227
+ }, "ref"> | Omit<Omit<RecursicaTextAreaProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
3185
3228
  m?: string | number | RecursicaSpacing;
3186
3229
  mx?: string | number | RecursicaSpacing;
3187
3230
  my?: string | number | RecursicaSpacing;
@@ -3192,6 +3235,8 @@ declare const TextArea_2: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRec
3192
3235
  gap?: string | number | RecursicaSpacing;
3193
3236
  rowGap?: string | number | RecursicaSpacing;
3194
3237
  columnGap?: string | number | RecursicaSpacing;
3238
+ gutter?: string | number | RecursicaSpacing;
3239
+ spacing?: string | number | RecursicaSpacing;
3195
3240
  } & {
3196
3241
  overStyled: true;
3197
3242
  }, "ref">) & default_2.RefAttributes<HTMLTextAreaElement>>;
@@ -3202,7 +3247,7 @@ export declare const TextField: typeof rawComponents.TextField;
3202
3247
 
3203
3248
  declare const TextField_2: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<RecursicaTextFieldProps>, BlockedStylingKeys> & ForbiddenStyles & {
3204
3249
  overStyled?: false | undefined;
3205
- }, "ref"> | Omit<Omit<RecursicaTextFieldProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
3250
+ }, "ref"> | Omit<Omit<RecursicaTextFieldProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
3206
3251
  m?: string | number | RecursicaSpacing;
3207
3252
  mx?: string | number | RecursicaSpacing;
3208
3253
  my?: string | number | RecursicaSpacing;
@@ -3213,6 +3258,8 @@ declare const TextField_2: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRe
3213
3258
  gap?: string | number | RecursicaSpacing;
3214
3259
  rowGap?: string | number | RecursicaSpacing;
3215
3260
  columnGap?: string | number | RecursicaSpacing;
3261
+ gutter?: string | number | RecursicaSpacing;
3262
+ spacing?: string | number | RecursicaSpacing;
3216
3263
  } & {
3217
3264
  overStyled: true;
3218
3265
  }, "ref">) & default_2.RefAttributes<HTMLInputElement>>;
@@ -3260,7 +3307,7 @@ title?: default_2.ReactNode;
3260
3307
  title?: default_2.ReactNode;
3261
3308
  /* Excluded from this release type: __active */
3262
3309
  /* Excluded from this release type: __isLast */
3263
- }, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
3310
+ }, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
3264
3311
  m?: string | number | RecursicaSpacing;
3265
3312
  mx?: string | number | RecursicaSpacing;
3266
3313
  my?: string | number | RecursicaSpacing;
@@ -3271,6 +3318,8 @@ title?: default_2.ReactNode;
3271
3318
  gap?: string | number | RecursicaSpacing;
3272
3319
  rowGap?: string | number | RecursicaSpacing;
3273
3320
  columnGap?: string | number | RecursicaSpacing;
3321
+ gutter?: string | number | RecursicaSpacing;
3322
+ spacing?: string | number | RecursicaSpacing;
3274
3323
  } & {
3275
3324
  overStyled: true;
3276
3325
  }, "ref">) & default_2.RefAttributes<HTMLLIElement>>;
@@ -3299,7 +3348,7 @@ export declare const Title: typeof rawComponents.Title;
3299
3348
 
3300
3349
  declare const Title_2: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<Omit<TypographyProps, "classes" | "variant"> & RecursicaTitleProps>, BlockedStylingKeys> & ForbiddenStyles & {
3301
3350
  overStyled?: false | undefined;
3302
- }, "ref"> | Omit<Omit<Omit<TypographyProps, "classes" | "variant"> & RecursicaTitleProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
3351
+ }, "ref"> | Omit<Omit<Omit<TypographyProps, "classes" | "variant"> & RecursicaTitleProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
3303
3352
  m?: string | number | RecursicaSpacing;
3304
3353
  mx?: string | number | RecursicaSpacing;
3305
3354
  my?: string | number | RecursicaSpacing;
@@ -3310,6 +3359,8 @@ declare const Title_2: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRecurs
3310
3359
  gap?: string | number | RecursicaSpacing;
3311
3360
  rowGap?: string | number | RecursicaSpacing;
3312
3361
  columnGap?: string | number | RecursicaSpacing;
3362
+ gutter?: string | number | RecursicaSpacing;
3363
+ spacing?: string | number | RecursicaSpacing;
3313
3364
  } & {
3314
3365
  overStyled: true;
3315
3366
  }, "ref">) & default_2.RefAttributes<HTMLElement>>;
@@ -3320,7 +3371,7 @@ export declare const Toast: typeof rawComponents.Toast;
3320
3371
 
3321
3372
  declare const Toast_2: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<Omit<AlertProps, "color" | "variant" | "onClose" | "radius"> & RecursicaToastProps>, BlockedStylingKeys> & ForbiddenStyles & {
3322
3373
  overStyled?: false | undefined;
3323
- }, "ref"> | Omit<Omit<Omit<AlertProps, "color" | "variant" | "onClose" | "radius"> & RecursicaToastProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
3374
+ }, "ref"> | Omit<Omit<Omit<AlertProps, "color" | "variant" | "onClose" | "radius"> & RecursicaToastProps, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
3324
3375
  m?: string | number | RecursicaSpacing;
3325
3376
  mx?: string | number | RecursicaSpacing;
3326
3377
  my?: string | number | RecursicaSpacing;
@@ -3331,6 +3382,8 @@ declare const Toast_2: default_2.ForwardRefExoticComponent<(Omit<Omit<WithRecurs
3331
3382
  gap?: string | number | RecursicaSpacing;
3332
3383
  rowGap?: string | number | RecursicaSpacing;
3333
3384
  columnGap?: string | number | RecursicaSpacing;
3385
+ gutter?: string | number | RecursicaSpacing;
3386
+ spacing?: string | number | RecursicaSpacing;
3334
3387
  } & {
3335
3388
  overStyled: true;
3336
3389
  }, "ref">) & default_2.RefAttributes<HTMLDivElement>>;
@@ -3384,7 +3437,7 @@ export declare const TransferList: typeof rawComponents.TransferList;
3384
3437
 
3385
3438
  declare const TransferList_2: ForwardRefExoticComponent<(Omit<Omit<WithRecursicaSpacing<RecursicaTransferListProps_2>, BlockedStylingKeys> & ForbiddenStyles & {
3386
3439
  overStyled?: false | undefined;
3387
- }, "ref"> | Omit<Omit<RecursicaTransferListProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
3440
+ }, "ref"> | Omit<Omit<RecursicaTransferListProps_2, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
3388
3441
  m?: string | number | RecursicaSpacing;
3389
3442
  mx?: string | number | RecursicaSpacing;
3390
3443
  my?: string | number | RecursicaSpacing;
@@ -3395,6 +3448,8 @@ mr?: string | number | RecursicaSpacing;
3395
3448
  gap?: string | number | RecursicaSpacing;
3396
3449
  rowGap?: string | number | RecursicaSpacing;
3397
3450
  columnGap?: string | number | RecursicaSpacing;
3451
+ gutter?: string | number | RecursicaSpacing;
3452
+ spacing?: string | number | RecursicaSpacing;
3398
3453
  } & {
3399
3454
  overStyled: true;
3400
3455
  }, "ref">) & RefAttributes<HTMLDivElement>>;
@@ -3428,7 +3483,7 @@ overStyled?: false | undefined;
3428
3483
  }, "ref"> | Omit<Omit<Omit<TypographyProps, "variant"> & {
3429
3484
  typographyClass: string;
3430
3485
  component?: React.ElementType;
3431
- }, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
3486
+ }, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
3432
3487
  m?: string | number | RecursicaSpacing;
3433
3488
  mx?: string | number | RecursicaSpacing;
3434
3489
  my?: string | number | RecursicaSpacing;
@@ -3439,6 +3494,8 @@ mr?: string | number | RecursicaSpacing;
3439
3494
  gap?: string | number | RecursicaSpacing;
3440
3495
  rowGap?: string | number | RecursicaSpacing;
3441
3496
  columnGap?: string | number | RecursicaSpacing;
3497
+ gutter?: string | number | RecursicaSpacing;
3498
+ spacing?: string | number | RecursicaSpacing;
3442
3499
  } & {
3443
3500
  overStyled: true;
3444
3501
  }, "ref">) & RefAttributes<HTMLElement>>;
@@ -3457,7 +3514,7 @@ component?: default_2.ElementType;
3457
3514
  */
3458
3515
  typographyClass: string;
3459
3516
  component?: default_2.ElementType;
3460
- }, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
3517
+ }, "m" | "my" | "mx" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
3461
3518
  m?: string | number | RecursicaSpacing;
3462
3519
  mx?: string | number | RecursicaSpacing;
3463
3520
  my?: string | number | RecursicaSpacing;
@@ -3468,6 +3525,8 @@ component?: default_2.ElementType;
3468
3525
  gap?: string | number | RecursicaSpacing;
3469
3526
  rowGap?: string | number | RecursicaSpacing;
3470
3527
  columnGap?: string | number | RecursicaSpacing;
3528
+ gutter?: string | number | RecursicaSpacing;
3529
+ spacing?: string | number | RecursicaSpacing;
3471
3530
  } & {
3472
3531
  overStyled: true;
3473
3532
  }, "ref">) & default_2.RefAttributes<HTMLElement>>;
@@ -3530,9 +3589,13 @@ declare interface WithReadOnlyWrapperProps extends Omit<FormControlWrapperProps,
3530
3589
  }
3531
3590
 
3532
3591
  /**
3533
- * Utility type to override margin and gap properties with RecursicaSpacing.
3592
+ * Utility type to override margin and gap-shaped properties with RecursicaSpacing.
3593
+ *
3594
+ * Covers every spacing prop name used natively across the underlying kits (Mantine's
3595
+ * `gap`/`gutter`, MUI's `spacing`) so each adapter can type its layout components
3596
+ * directly off the kit's own props without redeclaring a shared Recursica shape.
3534
3597
  */
3535
- export declare type WithRecursicaSpacing<T> = Omit<T, "m" | "mx" | "my" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap"> & {
3598
+ export declare type WithRecursicaSpacing<T> = Omit<T, "m" | "mx" | "my" | "mt" | "mb" | "ml" | "mr" | "gap" | "rowGap" | "columnGap" | "gutter" | "spacing"> & {
3536
3599
  m?: string | number | RecursicaSpacing;
3537
3600
  mx?: string | number | RecursicaSpacing;
3538
3601
  my?: string | number | RecursicaSpacing;
@@ -3543,6 +3606,8 @@ export declare type WithRecursicaSpacing<T> = Omit<T, "m" | "mx" | "my" | "mt" |
3543
3606
  gap?: string | number | RecursicaSpacing;
3544
3607
  rowGap?: string | number | RecursicaSpacing;
3545
3608
  columnGap?: string | number | RecursicaSpacing;
3609
+ gutter?: string | number | RecursicaSpacing;
3610
+ spacing?: string | number | RecursicaSpacing;
3546
3611
  };
3547
3612
 
3548
3613
  export declare function wrapComponent<T>(Component: T): T;