@pingux/astro 1.9.0 → 1.10.0-alpha.0
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/lib/cjs/components/OverlayPanel/OverlayPanel.js +1 -1
- package/lib/cjs/styles/theme.js +8 -1
- package/lib/cjs/styles/variants/overlayPanel.js +1 -1
- package/lib/components/OverlayPanel/OverlayPanel.js +1 -1
- package/lib/styles/theme.js +8 -1
- package/lib/styles/variants/overlayPanel.js +1 -1
- package/package.json +1 -1
@@ -96,7 +96,7 @@ OverlayPanel.propTypes = {
|
|
96
96
|
/** Sets the open state of the menu. */
|
97
97
|
isOpen: _propTypes["default"].bool,
|
98
98
|
|
99
|
-
/** Sets the
|
99
|
+
/** Sets the size of the overlay panel. */
|
100
100
|
size: _propTypes["default"].oneOf((0, _values["default"])(_panelSizes.panelSizes)),
|
101
101
|
|
102
102
|
/** JSX styling that is passed into the component. */
|
package/lib/cjs/styles/theme.js
CHANGED
@@ -67,7 +67,14 @@ var _default = {
|
|
67
67
|
fontWeights: _text.fontWeights,
|
68
68
|
sizes: {
|
69
69
|
buttonHeight: 36,
|
70
|
-
column: 400
|
70
|
+
column: 400,
|
71
|
+
container: {
|
72
|
+
xs: '400px',
|
73
|
+
sm: '550px',
|
74
|
+
md: '800px',
|
75
|
+
lg: '1200px',
|
76
|
+
full: '100%'
|
77
|
+
}
|
71
78
|
},
|
72
79
|
shadows: {
|
73
80
|
standard: "0 1px 3px ".concat(_colors.shadow),
|
@@ -62,7 +62,7 @@ OverlayPanel.propTypes = {
|
|
62
62
|
/** Sets the open state of the menu. */
|
63
63
|
isOpen: PropTypes.bool,
|
64
64
|
|
65
|
-
/** Sets the
|
65
|
+
/** Sets the size of the overlay panel. */
|
66
66
|
size: PropTypes.oneOf(_Object$values(panelSizes)),
|
67
67
|
|
68
68
|
/** JSX styling that is passed into the component. */
|
package/lib/styles/theme.js
CHANGED
@@ -35,7 +35,14 @@ export default {
|
|
35
35
|
fontWeights: fontWeights,
|
36
36
|
sizes: {
|
37
37
|
buttonHeight: 36,
|
38
|
-
column: 400
|
38
|
+
column: 400,
|
39
|
+
container: {
|
40
|
+
xs: '400px',
|
41
|
+
sm: '550px',
|
42
|
+
md: '800px',
|
43
|
+
lg: '1200px',
|
44
|
+
full: '100%'
|
45
|
+
}
|
39
46
|
},
|
40
47
|
shadows: {
|
41
48
|
standard: "0 1px 3px ".concat(shadow),
|