@pingux/astro 1.25.2 → 1.26.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,17 +3,6 @@
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.25.2](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.25.1...@pingux/astro@1.25.2) (2022-09-01)
7
-
8
-
9
- ### Bug Fixes
10
-
11
- * [UIP-5621] AccordionGrid focusing styles ([27ff03c](https://gitlab.corp.pingidentity.com/ux/pingux/commit/27ff03c5b3c3f5e17e334aab5d5431a773c86deb))
12
-
13
-
14
-
15
-
16
-
17
6
  ## [1.25.1](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.25.0...@pingux/astro@1.25.1) (2022-08-30)
18
7
 
19
8
 
@@ -41,6 +41,15 @@ var buttons = {
41
41
  border: 'none'
42
42
  })
43
43
  }),
44
+ critical: {
45
+ '&:not(.disabled):hover': _objectSpread(_objectSpread({}, _theme["default"].buttons.critical), _theme["default"].buttons.defaultHover)
46
+ },
47
+ danger: {
48
+ '&:not(.disabled):hover': _objectSpread(_objectSpread({}, _theme["default"].buttons.danger), _theme["default"].buttons.defaultHover)
49
+ },
50
+ success: {
51
+ '&:not(.disabled):hover': _objectSpread(_objectSpread({}, _theme["default"].buttons.success), _theme["default"].buttons.defaultHover)
52
+ },
44
53
  "default": {
45
54
  '&:not(.disabled):hover': _objectSpread(_objectSpread({}, _theme["default"].buttons["default"]), _theme["default"].buttons.defaultHover),
46
55
  '&:focus': _objectSpread({}, _theme["default"].buttons.defaultHover)
@@ -89,6 +98,11 @@ var forms = {
89
98
  }
90
99
  })
91
100
  },
101
+ select: {
102
+ '&:not(.disabled):hover': _objectSpread(_objectSpread({}, _theme["default"].text.inputValue), {}, {
103
+ borderColor: 'neutral.80'
104
+ })
105
+ },
92
106
  search: {
93
107
  container: {
94
108
  '& input[type=search]': _objectSpread(_objectSpread({}, _theme["default"].text.inputValue), {}, {
@@ -22,6 +22,15 @@ var buttons = {
22
22
  border: 'none'
23
23
  })
24
24
  }),
25
+ critical: {
26
+ '&:not(.disabled):hover': _objectSpread(_objectSpread({}, theme.buttons.critical), theme.buttons.defaultHover)
27
+ },
28
+ danger: {
29
+ '&:not(.disabled):hover': _objectSpread(_objectSpread({}, theme.buttons.danger), theme.buttons.defaultHover)
30
+ },
31
+ success: {
32
+ '&:not(.disabled):hover': _objectSpread(_objectSpread({}, theme.buttons.success), theme.buttons.defaultHover)
33
+ },
25
34
  "default": {
26
35
  '&:not(.disabled):hover': _objectSpread(_objectSpread({}, theme.buttons["default"]), theme.buttons.defaultHover),
27
36
  '&:focus': _objectSpread({}, theme.buttons.defaultHover)
@@ -70,6 +79,11 @@ var forms = {
70
79
  }
71
80
  })
72
81
  },
82
+ select: {
83
+ '&:not(.disabled):hover': _objectSpread(_objectSpread({}, theme.text.inputValue), {}, {
84
+ borderColor: 'neutral.80'
85
+ })
86
+ },
73
87
  search: {
74
88
  container: {
75
89
  '& input[type=search]': _objectSpread(_objectSpread({}, theme.text.inputValue), {}, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pingux/astro",
3
- "version": "1.25.2",
3
+ "version": "1.26.0-alpha.0",
4
4
  "description": "PingUX themeable React component library",
5
5
  "author": "ux-development@pingidentity.com",
6
6
  "license": "Apache-2.0",