@recursica/mui-adapter 0.33.0 → 0.34.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -0
- package/dist/index.d.ts +6 -0
- package/dist/mui-adapter.cjs +1 -1
- package/dist/mui-adapter.cjs.map +1 -1
- package/dist/mui-adapter.css +1 -1
- package/dist/mui-adapter.js +18 -7
- package/dist/mui-adapter.js.map +1 -1
- package/package.json +7 -3
- package/src/components/DatePicker/DatePicker.stories.tsx +25 -0
- package/src/components/Menu/IMPLEMENTATION_NOTES.md +1 -0
- package/src/components/Menu/Menu.stories.tsx +37 -0
- package/src/components/Menu/Menu.tsx +25 -5
- package/src/components/Menu/USAGE.md +6 -0
- package/src/components/Modal/Modal.module.css +103 -1
- package/src/components/Modal/Modal.stories.tsx +28 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @recursica/mui-adapter
|
|
2
2
|
|
|
3
|
+
## 0.34.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f34665a: Modal close button now matches the Button component's styling (radius, padding, color tokens, hover/focus states, icon sizing).
|
|
8
|
+
- f34665a: Modal title now truncates with an ellipsis instead of wrapping when it's too long, and mantine-adapter's Modal width scales with content again instead of being pinned at 440px. Added an open-by-default `LongTitle` story to both adapters.
|
|
9
|
+
|
|
10
|
+
## 0.34.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- 2369301: Add optional `maxHeight` prop to Menu, overriding the token-driven dropdown max-height with an explicit pixel value.
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies [2369301]
|
|
19
|
+
- @recursica/adapter-common@0.25.0
|
|
20
|
+
|
|
3
21
|
## 0.33.0
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -2119,6 +2119,12 @@ export declare interface RecursicaLoaderProps {
|
|
|
2119
2119
|
* Props for the Recursica Menu component.
|
|
2120
2120
|
*/
|
|
2121
2121
|
export declare interface RecursicaMenuProps {
|
|
2122
|
+
/**
|
|
2123
|
+
* Overrides the dropdown's token-driven max-height with an explicit pixel (or other CSS
|
|
2124
|
+
* length) value. Escape hatch for callers that need an arbitrary menu height the design
|
|
2125
|
+
* tokens don't express; leave unset to use the token default.
|
|
2126
|
+
*/
|
|
2127
|
+
maxHeight?: default_2.CSSProperties["maxHeight"];
|
|
2122
2128
|
}
|
|
2123
2129
|
|
|
2124
2130
|
/**
|