@super-calendar/dom 2.3.0 → 2.3.2

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.js CHANGED
@@ -1673,7 +1673,7 @@ function PickerShell({ open, setOpen, rootRef, triggerRef, theme, slot, label, h
1673
1673
  base: triggerDefault,
1674
1674
  themed: {
1675
1675
  border: `1px solid ${theme.gridLine}`,
1676
- background: theme.eventBackground,
1676
+ background: theme.surface,
1677
1677
  color: hasValue ? theme.text : theme.textMuted,
1678
1678
  opacity: disabled ? .5 : 1
1679
1679
  }
@@ -1689,7 +1689,7 @@ function PickerShell({ open, setOpen, rootRef, triggerRef, theme, slot, label, h
1689
1689
  ...slot("popover", {
1690
1690
  base: popoverDefault,
1691
1691
  themed: {
1692
- background: theme.eventBackground,
1692
+ background: theme.surface,
1693
1693
  border: `1px solid ${theme.gridLine}`
1694
1694
  }
1695
1695
  }),
package/dist/index.mjs CHANGED
@@ -1672,7 +1672,7 @@ function PickerShell({ open, setOpen, rootRef, triggerRef, theme, slot, label, h
1672
1672
  base: triggerDefault,
1673
1673
  themed: {
1674
1674
  border: `1px solid ${theme.gridLine}`,
1675
- background: theme.eventBackground,
1675
+ background: theme.surface,
1676
1676
  color: hasValue ? theme.text : theme.textMuted,
1677
1677
  opacity: disabled ? .5 : 1
1678
1678
  }
@@ -1688,7 +1688,7 @@ function PickerShell({ open, setOpen, rootRef, triggerRef, theme, slot, label, h
1688
1688
  ...slot("popover", {
1689
1689
  base: popoverDefault,
1690
1690
  themed: {
1691
- background: theme.eventBackground,
1691
+ background: theme.surface,
1692
1692
  border: `1px solid ${theme.gridLine}`
1693
1693
  }
1694
1694
  }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@super-calendar/dom",
3
- "version": "2.3.0",
3
+ "version": "2.3.2",
4
4
  "description": "Virtualized month / week / day calendar and date picker for react-dom. No React Native, no react-native-web.",
5
5
  "keywords": [
6
6
  "calendar",
@@ -48,7 +48,7 @@
48
48
  "access": "public"
49
49
  },
50
50
  "dependencies": {
51
- "@super-calendar/core": "2.3.0"
51
+ "@super-calendar/core": "2.3.2"
52
52
  },
53
53
  "peerDependencies": {
54
54
  "@legendapp/list": ">=3",
@@ -150,7 +150,7 @@ function PickerShell({
150
150
  base: triggerDefault,
151
151
  themed: {
152
152
  border: `1px solid ${theme.gridLine}`,
153
- background: theme.eventBackground,
153
+ background: theme.surface,
154
154
  color: hasValue ? theme.text : theme.textMuted,
155
155
  opacity: disabled ? 0.5 : 1,
156
156
  },
@@ -166,7 +166,7 @@ function PickerShell({
166
166
  aria-label={ariaLabel}
167
167
  {...slot("popover", {
168
168
  base: popoverDefault,
169
- themed: { background: theme.eventBackground, border: `1px solid ${theme.gridLine}` },
169
+ themed: { background: theme.surface, border: `1px solid ${theme.gridLine}` },
170
170
  })}
171
171
  >
172
172
  {children}