@recursica/mui-adapter 0.17.0 → 0.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/OVERSTYLING.md +1 -1
- package/dist/mui-adapter.cjs +21 -21
- package/dist/mui-adapter.cjs.map +1 -1
- package/dist/mui-adapter.css +1 -1
- package/dist/mui-adapter.js +1915 -1793
- package/dist/mui-adapter.js.map +1 -1
- package/dist/src/components/Grid/Grid.d.ts +12 -0
- package/dist/src/components/Grid/index.d.ts +1 -0
- package/dist/src/components/index.d.ts +1 -0
- package/dist/src/index.d.ts +4 -0
- package/llms.txt +1 -0
- package/package.json +1 -1
- package/src/components/Grid/Grid.module.css +72 -0
- package/src/components/Grid/Grid.stories.tsx +185 -0
- package/src/components/Grid/Grid.tsx +240 -0
- package/src/components/Grid/IMPLEMENTATION_NOTES.md +16 -0
- package/src/components/Grid/USAGE.md +55 -0
- package/src/components/Grid/index.ts +1 -0
- package/src/components/index.ts +1 -0
- package/src/index.ts +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @recursica/mui-adapter
|
|
2
2
|
|
|
3
|
+
## 0.18.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- c49adb9: Added a Grid component (Grid, Grid.Col) to both the mantine-adapter and mui-adapter, sharing RecursicaGridProps/RecursicaGridColProps from adapter-common so both adapters expose the exact same prop API. mantine-adapter wraps Mantine's native Grid/Grid.Col directly; mui-adapter hand-composes the same API from MUI's single merged Grid component, since MUI has no separate container/item split.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [c49adb9]
|
|
12
|
+
- @recursica/adapter-common@0.11.0
|
|
13
|
+
|
|
3
14
|
## 0.17.0
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|
package/OVERSTYLING.md
CHANGED
|
@@ -42,7 +42,7 @@ Available Recursica layout tokens:
|
|
|
42
42
|
|
|
43
43
|
## Primitive Layout Components Exemption
|
|
44
44
|
|
|
45
|
-
Unlike complex UI components (Buttons, Tabs, Inputs) which are strictly protected, **Primitive Layout Components** (`Flex`, `Stack`, `Group`, `Container`) are entirely exempt from the `RecursicaOverStyled` gatekeeper.
|
|
45
|
+
Unlike complex UI components (Buttons, Tabs, Inputs) which are strictly protected, **Primitive Layout Components** (`Flex`, `Stack`, `Group`, `Container`, `Grid`) are entirely exempt from the `RecursicaOverStyled` gatekeeper.
|
|
46
46
|
|
|
47
47
|
Because the entire functional purpose of these components is structural layout composition, developers are free to pass any standard MUI width, height, padding, margin, gap, and alignment property directly to them without needing to flag `overStyled={true}`. The internal custom token mapper (such as converting `gap="rec-md"`) is still active natively on these wrappers.
|
|
48
48
|
|