@pingux/astro 1.35.0-alpha.3 → 1.36.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,23 @@
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.35.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.34.0...@pingux/astro@1.35.0) (2022-11-10)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * [UIP-5879] Modal: revert checkbox focus fix inside a modal ([0f18f93](https://gitlab.corp.pingidentity.com/ux/pingux/commit/0f18f9324aa346cc3ba9d8d3c98efa41976d500b))
12
+
13
+
14
+ ### Features
15
+
16
+ * [UIP-5852] NavBarItemBody: allow no separator allow no subTitle ([1726df9](https://gitlab.corp.pingidentity.com/ux/pingux/commit/1726df9df148e6a176466df8f5de2007f07e6c06))
17
+ * [UIP-5853] NavBarSection: allow data-id through prop spreading ([d899211](https://gitlab.corp.pingidentity.com/ux/pingux/commit/d899211fded182d4cb700d8fb384c9cad8c549d2))
18
+
19
+
20
+
21
+
22
+
6
23
  # [1.34.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.33.1...@pingux/astro@1.34.0) (2022-11-03)
7
24
 
8
25
 
@@ -89,6 +89,22 @@ var buttons = {
89
89
  ':not(.is-selected):hover': {
90
90
  color: 'accent.30'
91
91
  }
92
+ }),
93
+ navBarSectionButton: _objectSpread(_objectSpread({}, _theme["default"].buttons.navBarSectionButton), {}, {
94
+ height: 'unset',
95
+ minHeight: '36px',
96
+ '&:not(.disabled):hover': _objectSpread({}, _theme["default"].buttons.navBarSectionButton),
97
+ ':focus': {
98
+ border: 'none'
99
+ }
100
+ }),
101
+ navItemButton: _objectSpread(_objectSpread({
102
+ height: 'unset'
103
+ }, _theme["default"].buttons.navItemButton), {}, {
104
+ '&:not(.disabled):hover': _objectSpread({}, _theme["default"].buttons.navItemButton),
105
+ ':focus': {
106
+ border: 'none'
107
+ }
92
108
  })
93
109
  };
94
110
  var forms = {
@@ -70,6 +70,22 @@ var buttons = {
70
70
  ':not(.is-selected):hover': {
71
71
  color: 'accent.30'
72
72
  }
73
+ }),
74
+ navBarSectionButton: _objectSpread(_objectSpread({}, theme.buttons.navBarSectionButton), {}, {
75
+ height: 'unset',
76
+ minHeight: '36px',
77
+ '&:not(.disabled):hover': _objectSpread({}, theme.buttons.navBarSectionButton),
78
+ ':focus': {
79
+ border: 'none'
80
+ }
81
+ }),
82
+ navItemButton: _objectSpread(_objectSpread({
83
+ height: 'unset'
84
+ }, theme.buttons.navItemButton), {}, {
85
+ '&:not(.disabled):hover': _objectSpread({}, theme.buttons.navItemButton),
86
+ ':focus': {
87
+ border: 'none'
88
+ }
73
89
  })
74
90
  };
75
91
  var forms = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pingux/astro",
3
- "version": "1.35.0-alpha.3",
3
+ "version": "1.36.0-alpha.0",
4
4
  "description": "PingUX themeable React component library",
5
5
  "repository": {
6
6
  "type": "git",