@recursica/mantine-adapter 0.55.3 → 0.55.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/mantine-adapter.cjs.map +1 -1
- package/dist/mantine-adapter.js.map +1 -1
- package/package.json +2 -2
- package/src/components/AssistiveElement/AssistiveElement.stories.tsx +0 -1
- package/src/components/Chip/Chip.stories.tsx +15 -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 +105 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @recursica/mantine-adapter
|
|
2
2
|
|
|
3
|
+
## 0.55.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.55.3
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -1501,6 +1501,9 @@ declare namespace rawComponents {
|
|
|
1501
1501
|
RecursicaDropdownProps,
|
|
1502
1502
|
DropdownProps,
|
|
1503
1503
|
Dropdown_2 as Dropdown,
|
|
1504
|
+
EmptyValueRenderer,
|
|
1505
|
+
EmptyValueRendererProps,
|
|
1506
|
+
RecursicaEmptyValueRendererProps,
|
|
1504
1507
|
RecursicaFileUploadItem,
|
|
1505
1508
|
RecursicaFileInputProps_2 as RecursicaFileInputProps,
|
|
1506
1509
|
FileInputProps,
|
|
@@ -1524,6 +1527,9 @@ declare namespace rawComponents {
|
|
|
1524
1527
|
HoverCardTargetProps,
|
|
1525
1528
|
HoverCardDropdownProps,
|
|
1526
1529
|
HoverCard_2 as HoverCard,
|
|
1530
|
+
Layer,
|
|
1531
|
+
RecursicaLayerProps,
|
|
1532
|
+
LayerProps,
|
|
1527
1533
|
LinkProps,
|
|
1528
1534
|
Link_2 as Link,
|
|
1529
1535
|
LoaderProps,
|
|
@@ -1600,6 +1606,8 @@ declare namespace rawComponents {
|
|
|
1600
1606
|
ReadOnlyTextField,
|
|
1601
1607
|
ReadOnlySwitchField,
|
|
1602
1608
|
ReadOnlyBooleanField,
|
|
1609
|
+
RecursicaThemeProvider,
|
|
1610
|
+
RecursicaThemeProviderProps,
|
|
1603
1611
|
SegmentedControlProps,
|
|
1604
1612
|
SegmentedControl_2 as SegmentedControl,
|
|
1605
1613
|
RecursicaSliderProps,
|
|
@@ -2026,6 +2034,14 @@ declare interface RecursicaDropdownProps_2 {
|
|
|
2026
2034
|
wrapItemText?: boolean;
|
|
2027
2035
|
}
|
|
2028
2036
|
|
|
2037
|
+
/**
|
|
2038
|
+
* Props for the Recursica EmptyValueRenderer component.
|
|
2039
|
+
*/
|
|
2040
|
+
export declare interface RecursicaEmptyValueRendererProps {
|
|
2041
|
+
/** Fallback node to show when values are missing */
|
|
2042
|
+
fallback?: default_2.ReactNode;
|
|
2043
|
+
}
|
|
2044
|
+
|
|
2029
2045
|
/**
|
|
2030
2046
|
* Props for the Recursica FileInput component.
|
|
2031
2047
|
*
|