@firecms/core 3.0.0-canary.133 → 3.0.0-canary.135

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/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
- className: "py-4",
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
- className: cls("px-2 md:px-4 pb-2 md:pb-4 pt-1 md:pt-2", fieldBackgroundMixin),
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
- className: "px-2 md:px-4 pb-2 md:pb-4 pt-1 md:pt-2 bg-slate-50 bg-opacity-50 dark:bg-gray-900",
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
- className: "px-2 md:px-4 pb-2 md:pb-4 pt-1 md:pt-2",
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: "medium",
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: "medium",
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
- className: "px-2 md:px-4 pb-2 md:pb-4 pt-1 md:pt-2",
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
- className: "px-2 md:px-4 pb-2 md:pb-4 pt-1 md:pt-2",
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
- className: "px-2 md:px-4 pb-2 md:pb-4 pt-1 md:pt-2",
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
  ),