@super-calendar/dom 2.3.0 → 2.3.1
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 +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +2 -2
- package/src/DateRangePicker.tsx +2 -2
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
3
|
+
"version": "2.3.1",
|
|
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.
|
|
51
|
+
"@super-calendar/core": "2.3.1"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
54
|
"@legendapp/list": ">=3",
|
package/src/DateRangePicker.tsx
CHANGED
|
@@ -150,7 +150,7 @@ function PickerShell({
|
|
|
150
150
|
base: triggerDefault,
|
|
151
151
|
themed: {
|
|
152
152
|
border: `1px solid ${theme.gridLine}`,
|
|
153
|
-
background: theme.
|
|
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.
|
|
169
|
+
themed: { background: theme.surface, border: `1px solid ${theme.gridLine}` },
|
|
170
170
|
})}
|
|
171
171
|
>
|
|
172
172
|
{children}
|