@recursica/mui-adapter 0.39.3 → 0.39.4
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 +8 -0
- package/dist/index.d.ts +16 -0
- package/dist/mui-adapter.cjs.map +1 -1
- package/dist/mui-adapter.js.map +1 -1
- package/package.json +4 -3
- package/src/components/AssistiveElement/AssistiveElement.stories.tsx +0 -1
- package/src/components/EmptyValueRenderer/USAGE.md +37 -0
- package/src/components/EmptyValueRenderer/index.ts +5 -0
- package/src/components/Layer/index.ts +5 -0
- package/src/components/RecursicaThemeProvider/index.ts +2 -0
- package/src/components/index.ts +3 -0
- package/src/index.ts +108 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @recursica/mui-adapter
|
|
2
2
|
|
|
3
|
+
## 0.39.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f82fa40: Exposed the previously-orphaned `RecursicaEmptyValueRendererProps` type from `adapter-common` and re-exported it from `mantine-adapter`/`mui-adapter`. Also fixed a pre-existing unused-import lint failure and a `Chip` story type error in their Storybook files.
|
|
8
|
+
- Updated dependencies [f82fa40]
|
|
9
|
+
- @recursica/adapter-common@0.29.1
|
|
10
|
+
|
|
3
11
|
## 0.39.3
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -1339,6 +1339,9 @@ declare namespace rawComponents {
|
|
|
1339
1339
|
RecursicaDropdownProps,
|
|
1340
1340
|
DropdownProps,
|
|
1341
1341
|
Dropdown_2 as Dropdown,
|
|
1342
|
+
EmptyValueRenderer,
|
|
1343
|
+
EmptyValueRendererProps,
|
|
1344
|
+
RecursicaEmptyValueRendererProps,
|
|
1342
1345
|
RecursicaFileUploadItem,
|
|
1343
1346
|
RecursicaFileInputProps_2 as RecursicaFileInputProps,
|
|
1344
1347
|
FileInputProps,
|
|
@@ -1367,6 +1370,9 @@ declare namespace rawComponents {
|
|
|
1367
1370
|
HoverCard_2 as HoverCard,
|
|
1368
1371
|
LabelProps,
|
|
1369
1372
|
Label_2 as Label,
|
|
1373
|
+
Layer,
|
|
1374
|
+
RecursicaLayerProps,
|
|
1375
|
+
LayerProps,
|
|
1370
1376
|
LinkProps,
|
|
1371
1377
|
Link_2 as Link,
|
|
1372
1378
|
LoaderProps,
|
|
@@ -1408,6 +1414,8 @@ declare namespace rawComponents {
|
|
|
1408
1414
|
ReadOnlyField_2 as ReadOnlyField,
|
|
1409
1415
|
WithReadOnlyWrapperProps,
|
|
1410
1416
|
WithReadOnlyWrapper,
|
|
1417
|
+
RecursicaThemeProvider,
|
|
1418
|
+
RecursicaThemeProviderProps,
|
|
1411
1419
|
SegmentedControlProps,
|
|
1412
1420
|
SegmentedControl_2 as SegmentedControl,
|
|
1413
1421
|
RecursicaSliderProps,
|
|
@@ -1836,6 +1844,14 @@ declare interface RecursicaDropdownProps_2 {
|
|
|
1836
1844
|
wrapItemText?: boolean;
|
|
1837
1845
|
}
|
|
1838
1846
|
|
|
1847
|
+
/**
|
|
1848
|
+
* Props for the Recursica EmptyValueRenderer component.
|
|
1849
|
+
*/
|
|
1850
|
+
export declare interface RecursicaEmptyValueRendererProps {
|
|
1851
|
+
/** Fallback node to show when values are missing */
|
|
1852
|
+
fallback?: default_2.ReactNode;
|
|
1853
|
+
}
|
|
1854
|
+
|
|
1839
1855
|
/**
|
|
1840
1856
|
* Props for the Recursica FileInput component.
|
|
1841
1857
|
*
|