@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 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 open state of the menu. */
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. */
@@ -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),
@@ -33,7 +33,7 @@ var overlayPanel = {
33
33
  width: '800px'
34
34
  },
35
35
  '&.is-full': {
36
- width: '100%'
36
+ width: 'container.full'
37
37
  },
38
38
  '&.is-open': {
39
39
  display: 'flex !important',
@@ -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 open state of the menu. */
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. */
@@ -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),
@@ -24,7 +24,7 @@ var overlayPanel = {
24
24
  width: '800px'
25
25
  },
26
26
  '&.is-full': {
27
- width: '100%'
27
+ width: 'container.full'
28
28
  },
29
29
  '&.is-open': {
30
30
  display: 'flex !important',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pingux/astro",
3
- "version": "1.9.0-alpha.3",
3
+ "version": "1.10.0-alpha.0",
4
4
  "description": "PingUX themeable React component library",
5
5
  "author": "ux-development@pingidentity.com",
6
6
  "license": "Apache-2.0",