@pingux/astro 1.0.0-alpha.8 → 1.0.0-alpha.9

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,17 @@
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.0.0-alpha.9](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.0.0-alpha.8...@pingux/astro@1.0.0-alpha.9) (2022-01-07)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * [UIP-5013] Accordion design improvements ([436b8ef](https://gitlab.corp.pingidentity.com/ux/pingux/commit/436b8ef7d6e07c03feb7b4abf89e07eae022f809))
12
+
13
+
14
+
15
+
16
+
6
17
  # [1.0.0-alpha.8](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.0.0-alpha.7...@pingux/astro@1.0.0-alpha.8) (2021-12-30)
7
18
 
8
19
 
@@ -108,7 +108,9 @@ var AccordionItem = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
108
108
  "aria-label": ariaLabel || 'Accordion',
109
109
  ref: buttonRef,
110
110
  sx: {
111
- display: 'flex'
111
+ display: 'flex',
112
+ px: '0',
113
+ height: 'unset'
112
114
  },
113
115
  variant: "accordionHeader",
114
116
  className: buttonClasses
@@ -23,12 +23,12 @@ var accordionTitle = {
23
23
  var accordion = {
24
24
  display: 'flex',
25
25
  mt: '5px',
26
- mb: '5px',
26
+ mb: '20px',
27
27
  alignItems: 'flex-start'
28
28
  };
29
29
  var accordionBody = {
30
30
  display: 'none !important',
31
- p: 'md',
31
+ pt: 'md',
32
32
  width: '100%',
33
33
  '.is-open &': {
34
34
  display: 'flex !important'
@@ -80,7 +80,9 @@ var AccordionItem = /*#__PURE__*/forwardRef(function (props, ref) {
80
80
  "aria-label": ariaLabel || 'Accordion',
81
81
  ref: buttonRef,
82
82
  sx: {
83
- display: 'flex'
83
+ display: 'flex',
84
+ px: '0',
85
+ height: 'unset'
84
86
  },
85
87
  variant: "accordionHeader",
86
88
  className: buttonClasses
@@ -14,12 +14,12 @@ var accordionTitle = {
14
14
  var accordion = {
15
15
  display: 'flex',
16
16
  mt: '5px',
17
- mb: '5px',
17
+ mb: '20px',
18
18
  alignItems: 'flex-start'
19
19
  };
20
20
  var accordionBody = {
21
21
  display: 'none !important',
22
- p: 'md',
22
+ pt: 'md',
23
23
  width: '100%',
24
24
  '.is-open &': {
25
25
  display: 'flex !important'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pingux/astro",
3
- "version": "1.0.0-alpha.8",
3
+ "version": "1.0.0-alpha.9",
4
4
  "description": "PingUX themeable React component library",
5
5
  "author": "uxdev@pingidentity.com",
6
6
  "license": "Apache-2.0",