@pingux/astro 1.9.0-alpha.3 → 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/CHANGELOG.md +18 -0
- 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
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,24 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
+
# [1.9.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.8.1...@pingux/astro@1.9.0) (2022-04-21)
|
7
|
+
|
8
|
+
|
9
|
+
### Bug Fixes
|
10
|
+
|
11
|
+
* [UIP-5348] NumberField keyboard interactions not working in external projects ([bc56154](https://gitlab.corp.pingidentity.com/ux/pingux/commit/bc561546b32121590b6219bff425b838e41e6b76))
|
12
|
+
* [UIP-5393] Astro ComboBoxField component mixes custom value key with text content ([dbe53f6](https://gitlab.corp.pingidentity.com/ux/pingux/commit/dbe53f6e81bf2219dbad02cc632325629585fef4))
|
13
|
+
* [UIP-5412] Fix autocomplete for Astro and Schema Form ([db7ad4d](https://gitlab.corp.pingidentity.com/ux/pingux/commit/db7ad4dbbac061be092c654125608259ce127703))
|
14
|
+
|
15
|
+
|
16
|
+
### Features
|
17
|
+
|
18
|
+
* [UIP-5383] Remove box shadow on button focus ([4074f15](https://gitlab.corp.pingidentity.com/ux/pingux/commit/4074f15b87548942b1b3eae27150f8ae2db8a6dc))
|
19
|
+
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
|
6
24
|
## [1.8.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.8.0...@pingux/astro@1.8.1) (2022-04-14)
|
7
25
|
|
8
26
|
|
@@ -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),
|