baseui 0.0.0-next-c17dbe5 → 0.0.0-next-0b8a514
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/datepicker/index.js.flow
CHANGED
|
@@ -19,7 +19,7 @@ export { default as TimezonePicker } from '../timezonepicker/timezone-picker.js'
|
|
|
19
19
|
// Util functions
|
|
20
20
|
export { formatDate } from './utils/index.js';
|
|
21
21
|
// Constants
|
|
22
|
-
export { DENSITY, ORIENTATION, STATE_CHANGE_TYPE
|
|
22
|
+
export { DENSITY, ORIENTATION, STATE_CHANGE_TYPE } from './constants.js';
|
|
23
23
|
// Styled elements
|
|
24
24
|
export * from './styled-components.js';
|
|
25
25
|
// Flow
|
|
@@ -62,7 +62,8 @@ export const StyledBottomContainer = styled('div', ({
|
|
|
62
62
|
const baseStyle = {
|
|
63
63
|
borderTopLeftRadius: $theme.borders.radius500,
|
|
64
64
|
borderTopRightRadius: $theme.borders.radius500,
|
|
65
|
-
backgroundColor: $theme.colors.backgroundPrimary
|
|
65
|
+
backgroundColor: $theme.colors.backgroundPrimary,
|
|
66
|
+
boxShadow: $theme.lighting.shallowAbove
|
|
66
67
|
};
|
|
67
68
|
return $draggable ? {
|
|
68
69
|
position: 'relative',
|
|
@@ -67,7 +67,8 @@ export var StyledBottomContainer = styled('div', function (_ref3) {
|
|
|
67
67
|
var baseStyle = {
|
|
68
68
|
borderTopLeftRadius: $theme.borders.radius500,
|
|
69
69
|
borderTopRightRadius: $theme.borders.radius500,
|
|
70
|
-
backgroundColor: $theme.colors.backgroundPrimary
|
|
70
|
+
backgroundColor: $theme.colors.backgroundPrimary,
|
|
71
|
+
boxShadow: $theme.lighting.shallowAbove
|
|
71
72
|
};
|
|
72
73
|
return $draggable ? _objectSpread({
|
|
73
74
|
position: 'relative',
|
package/package.json
CHANGED
|
@@ -72,7 +72,8 @@ var StyledBottomContainer = (0, _styles.styled)('div', function (_ref3) {
|
|
|
72
72
|
var baseStyle = {
|
|
73
73
|
borderTopLeftRadius: $theme.borders.radius500,
|
|
74
74
|
borderTopRightRadius: $theme.borders.radius500,
|
|
75
|
-
backgroundColor: $theme.colors.backgroundPrimary
|
|
75
|
+
backgroundColor: $theme.colors.backgroundPrimary,
|
|
76
|
+
boxShadow: $theme.lighting.shallowAbove
|
|
76
77
|
};
|
|
77
78
|
return $draggable ? _objectSpread({
|
|
78
79
|
position: 'relative',
|