@pingux/astro 1.6.0-alpha.1 → 1.7.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.6.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.5.0...@pingux/astro@1.6.0) (2022-03-24)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * [UIP-5123] TextAreaField Content Will Overlap with Floating Label ([a6bfee4](https://gitlab.corp.pingidentity.com/ux/pingux/commit/a6bfee4aeef48afd921afefd17667c3c78c75bfa))
12
+ * [UIP-5249] 'field' text variant should be medium (500) weight ([6815ce3](https://gitlab.corp.pingidentity.com/ux/pingux/commit/6815ce35d9c72b94e65d70a31eae51e5a704dbe6))
13
+ * [UIP-5339] Replace FieldHelperText Top Padding ([6d973f8](https://gitlab.corp.pingidentity.com/ux/pingux/commit/6d973f8198f1bd86d9540974955c63a921bf2864))
14
+
15
+
16
+ ### Features
17
+
18
+ * [UIP-5276] Add TimeZonePicker component ([8bb44e4](https://gitlab.corp.pingidentity.com/ux/pingux/commit/8bb44e437fd0a04c1ff3162775adb604506828af))
19
+
20
+
21
+
22
+
23
+
6
24
  # [1.5.0](https://gitlab.corp.pingidentity.com/ux/pingux/compare/@pingux/astro@1.4.1...@pingux/astro@1.5.0) (2022-03-22)
7
25
 
8
26
 
@@ -71,8 +71,10 @@ var defaultHover = {
71
71
  boxShadow: 'standard'
72
72
  };
73
73
  var defaultFocus = {
74
- outline: 'none',
75
- boxShadow: 'focus'
74
+ boxShadow: 'focus',
75
+ outline: '1px solid',
76
+ outlineColor: 'active',
77
+ outlineOffset: '4px'
76
78
  };
77
79
  var navItemButton = {
78
80
  textDecoration: 'none',
@@ -281,7 +281,8 @@ var text = {
281
281
  label: _objectSpread(_objectSpread({}, wordWrap), {}, {
282
282
  fontSize: 'sm',
283
283
  color: 'text.secondary',
284
- fontFamily: 'standard'
284
+ fontFamily: 'standard',
285
+ fontWeight: 1
285
286
  }),
286
287
  listTitle: _objectSpread(_objectSpread({}, wordWrap), {}, {
287
288
  fontSize: 'md',
@@ -49,8 +49,10 @@ var defaultHover = {
49
49
  boxShadow: 'standard'
50
50
  };
51
51
  var defaultFocus = {
52
- outline: 'none',
53
- boxShadow: 'focus'
52
+ boxShadow: 'focus',
53
+ outline: '1px solid',
54
+ outlineColor: 'active',
55
+ outlineOffset: '4px'
54
56
  };
55
57
  var navItemButton = {
56
58
  textDecoration: 'none',
@@ -261,7 +261,8 @@ export var text = {
261
261
  label: _objectSpread(_objectSpread({}, wordWrap), {}, {
262
262
  fontSize: 'sm',
263
263
  color: 'text.secondary',
264
- fontFamily: 'standard'
264
+ fontFamily: 'standard',
265
+ fontWeight: 1
265
266
  }),
266
267
  listTitle: _objectSpread(_objectSpread({}, wordWrap), {}, {
267
268
  fontSize: 'md',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pingux/astro",
3
- "version": "1.6.0-alpha.1",
3
+ "version": "1.7.0-alpha.0",
4
4
  "description": "PingUX themeable React component library",
5
5
  "author": "ux-development@pingidentity.com",
6
6
  "license": "Apache-2.0",