@firecms/core 3.0.0-canary.132 → 3.0.0-canary.134
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/dist/app/Drawer.d.ts +0 -1
- package/dist/index.es.js +9 -9
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +9 -9
- package/dist/index.umd.js.map +1 -1
- package/package.json +5 -5
- package/src/app/Drawer.tsx +0 -1
- package/src/components/HomePage/NavigationGroup.tsx +1 -1
- package/src/form/field_bindings/ArrayCustomShapedFieldBinding.tsx +1 -1
- package/src/form/field_bindings/ArrayOfReferencesFieldBinding.tsx +1 -1
- package/src/form/field_bindings/BlockFieldBinding.tsx +1 -1
- package/src/form/field_bindings/KeyValueFieldBinding.tsx +3 -3
- package/src/form/field_bindings/MapFieldBinding.tsx +1 -1
- package/src/form/field_bindings/RepeatFieldBinding.tsx +1 -1
package/dist/app/Drawer.d.ts
CHANGED
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
* If you want to customise the drawer, you can create your own component and pass it as a child.
|
|
6
6
|
* For custom drawers, you can use the {@link useApp} to open and close the drawer.
|
|
7
7
|
*
|
|
8
|
-
|
|
9
8
|
*/
|
|
10
9
|
export declare function Drawer({ children, className, style }: {
|
|
11
10
|
children?: React.ReactNode;
|
package/dist/index.es.js
CHANGED
|
@@ -11205,7 +11205,7 @@ function NavigationGroup({
|
|
|
11205
11205
|
{
|
|
11206
11206
|
invisible: true,
|
|
11207
11207
|
titleClassName: "font-medium text-sm text-gray-600 dark:text-gray-400",
|
|
11208
|
-
|
|
11208
|
+
innerClassName: "py-4",
|
|
11209
11209
|
initiallyExpanded: !(userConfigurationPersistence?.collapsedGroups ?? []).includes(group ?? "ungrouped"),
|
|
11210
11210
|
onExpandedChange: (expanded) => {
|
|
11211
11211
|
if (userConfigurationPersistence) {
|
|
@@ -14274,7 +14274,7 @@ function ArrayOfReferencesFieldBinding({
|
|
|
14274
14274
|
ExpandablePanel,
|
|
14275
14275
|
{
|
|
14276
14276
|
titleClassName: fieldBackgroundMixin,
|
|
14277
|
-
|
|
14277
|
+
innerClassName: cls("px-2 md:px-4 pb-2 md:pb-4 pt-1 md:pt-2", fieldBackgroundMixin),
|
|
14278
14278
|
initiallyExpanded: expanded,
|
|
14279
14279
|
title,
|
|
14280
14280
|
children: body
|
|
@@ -15379,7 +15379,7 @@ function MapFieldBinding({
|
|
|
15379
15379
|
ExpandablePanel,
|
|
15380
15380
|
{
|
|
15381
15381
|
initiallyExpanded: expanded,
|
|
15382
|
-
|
|
15382
|
+
innerClassName: "px-2 md:px-4 pb-2 md:pb-4 pt-1 md:pt-2 bg-white dark:bg-gray-900",
|
|
15383
15383
|
title,
|
|
15384
15384
|
children: mapFormView
|
|
15385
15385
|
}
|
|
@@ -15442,7 +15442,7 @@ function KeyValueFieldBinding({
|
|
|
15442
15442
|
{
|
|
15443
15443
|
initiallyExpanded: expanded,
|
|
15444
15444
|
title,
|
|
15445
|
-
|
|
15445
|
+
innerClassName: "px-2 md:px-4 pb-2 md:pb-4 pt-1 md:pt-2",
|
|
15446
15446
|
children: mapFormView
|
|
15447
15447
|
}
|
|
15448
15448
|
),
|
|
@@ -15667,7 +15667,7 @@ function MapKeyValueRow({
|
|
|
15667
15667
|
BooleanSwitchWithLabel,
|
|
15668
15668
|
{
|
|
15669
15669
|
value: entryValue2,
|
|
15670
|
-
size: "
|
|
15670
|
+
size: "small",
|
|
15671
15671
|
position: "start",
|
|
15672
15672
|
disabled: disabled || !fieldKey2,
|
|
15673
15673
|
onValueChange: (newValue) => {
|
|
@@ -15901,7 +15901,7 @@ function ArrayKeyValueRow({
|
|
|
15901
15901
|
BooleanSwitchWithLabel,
|
|
15902
15902
|
{
|
|
15903
15903
|
value: entryValue,
|
|
15904
|
-
size: "
|
|
15904
|
+
size: "small",
|
|
15905
15905
|
position: "start",
|
|
15906
15906
|
onValueChange: (v) => {
|
|
15907
15907
|
setValue(v);
|
|
@@ -16108,7 +16108,7 @@ function RepeatFieldBinding({
|
|
|
16108
16108
|
ExpandablePanel,
|
|
16109
16109
|
{
|
|
16110
16110
|
initiallyExpanded: expanded,
|
|
16111
|
-
|
|
16111
|
+
innerClassName: "px-2 md:px-4 pb-2 md:pb-4 pt-1 md:pt-2",
|
|
16112
16112
|
title,
|
|
16113
16113
|
children: arrayContainer
|
|
16114
16114
|
}
|
|
@@ -16199,7 +16199,7 @@ function BlockFieldBinding({
|
|
|
16199
16199
|
!minimalistView && /* @__PURE__ */ jsx(
|
|
16200
16200
|
ExpandablePanel,
|
|
16201
16201
|
{
|
|
16202
|
-
|
|
16202
|
+
innerClassName: "px-2 md:px-4 pb-2 md:pb-4 pt-1 md:pt-2",
|
|
16203
16203
|
initiallyExpanded: expanded,
|
|
16204
16204
|
title,
|
|
16205
16205
|
children: body
|
|
@@ -16510,7 +16510,7 @@ function ArrayCustomShapedFieldBinding({
|
|
|
16510
16510
|
{
|
|
16511
16511
|
initiallyExpanded: expanded,
|
|
16512
16512
|
title,
|
|
16513
|
-
|
|
16513
|
+
innerClassName: "px-2 md:px-4 pb-2 md:pb-4 pt-1 md:pt-2",
|
|
16514
16514
|
children: body
|
|
16515
16515
|
}
|
|
16516
16516
|
),
|