@pingux/astro 1.25.2 → 1.26.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,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.26.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.25.2...@pingux/astro@1.26.0) (2022-09-06)
7
+
8
+
9
+ ### Features
10
+
11
+ * [UIP-5599] Override Theme Additions ([ce0f8eb](https://gitlab.corp.pingidentity.com/ux/pingux/commit/ce0f8eb8943bf31c69c18eadda01437d9b5ff2c6))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [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
18
 
8
19
 
package/NOTICE.html CHANGED
@@ -146,7 +146,7 @@
146
146
 
147
147
  <main class="u-padding--xl">
148
148
  <h1>Snyk Licenses Attribution Report</h1>
149
- <h4>Report date: 9/1/2022</h4>
149
+ <h4>Report date: 9/6/2022</h4>
150
150
  <h2>Organization: <a href="https://app.snyk.io/org/ux-fbf">UX</a></h2>
151
151
  <div class="u-padding-top--sm">
152
152
  <h1>
@@ -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",
4
4
  "description": "PingUX themeable React component library",
5
5
  "author": "ux-development@pingidentity.com",
6
6
  "license": "Apache-2.0",