@automattic/jetpack-components 1.6.0 → 1.6.1

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
@@ -2,6 +2,14 @@
2
2
 
3
3
  ### This is a list detailing changes for the Jetpack RNA Components package releases.
4
4
 
5
+ ## [1.6.1] - 2026-03-23
6
+ ### Changed
7
+ - Update package dependencies. [#47684] [#47719]
8
+
9
+ ### Fixed
10
+ - Prevent content from overlapping the page header. [#47697]
11
+ - Prevent horizontal scroll on narrow viewports. [#47490]
12
+
5
13
  ## [1.6.0] - 2026-03-16
6
14
  ### Added
7
15
  - Add support for X connection. [#47538]
@@ -1701,6 +1709,7 @@
1701
1709
  ### Changed
1702
1710
  - Update node version requirement to 14.16.1
1703
1711
 
1712
+ [1.6.1]: https://github.com/Automattic/jetpack-components/compare/1.6.0...1.6.1
1704
1713
  [1.6.0]: https://github.com/Automattic/jetpack-components/compare/1.5.0...1.6.0
1705
1714
  [1.5.0]: https://github.com/Automattic/jetpack-components/compare/1.4.16...1.5.0
1706
1715
  [1.4.16]: https://github.com/Automattic/jetpack-components/compare/1.4.15...1.4.16
@@ -21,6 +21,7 @@
21
21
  // JETPACK-1386
22
22
  :global(.admin-ui-page__header) {
23
23
  position: relative;
24
+ z-index: 1;
24
25
  }
25
26
 
26
27
  // Normalize admin headers: implementation of admin-ui needs to
@@ -1,4 +1,5 @@
1
1
  .section-hero {
2
2
  padding-top: 1px; // prevent margin collapse for interior sections
3
3
  background: var(--jp-white-off);
4
+ overflow: hidden;
4
5
  }
@@ -21,6 +21,7 @@
21
21
  // JETPACK-1386
22
22
  :global(.admin-ui-page__header) {
23
23
  position: relative;
24
+ z-index: 1;
24
25
  }
25
26
 
26
27
  // Normalize admin headers: implementation of admin-ui needs to
@@ -1,4 +1,5 @@
1
1
  .section-hero {
2
2
  padding-top: 1px; // prevent margin collapse for interior sections
3
3
  background: var(--jp-white-off);
4
+ overflow: hidden;
4
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automattic/jetpack-components",
3
- "version": "1.6.0",
3
+ "version": "1.6.1",
4
4
  "description": "Jetpack Components Package",
5
5
  "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/components/#readme",
6
6
  "bugs": {
@@ -45,21 +45,21 @@
45
45
  ],
46
46
  "dependencies": {
47
47
  "@automattic/format-currency": "1.0.1",
48
- "@automattic/jetpack-api": "^1.0.19",
49
- "@automattic/jetpack-boost-score-api": "^1.0.33",
48
+ "@automattic/jetpack-api": "^1.0.20",
49
+ "@automattic/jetpack-boost-score-api": "^1.0.34",
50
50
  "@automattic/jetpack-script-data": "^0.6.1",
51
51
  "@automattic/number-formatters": "^1.1.2",
52
52
  "@babel/runtime": "^7",
53
- "@wordpress/admin-ui": "1.9.0",
54
- "@wordpress/browserslist-config": "6.41.0",
55
- "@wordpress/components": "32.3.0",
56
- "@wordpress/compose": "7.41.0",
57
- "@wordpress/data": "10.41.0",
58
- "@wordpress/date": "5.41.0",
59
- "@wordpress/element": "6.41.0",
60
- "@wordpress/i18n": "6.14.0",
61
- "@wordpress/icons": "11.8.0",
62
- "@wordpress/notices": "5.41.0",
53
+ "@wordpress/admin-ui": "1.10.0",
54
+ "@wordpress/browserslist-config": "6.42.0",
55
+ "@wordpress/components": "32.4.0",
56
+ "@wordpress/compose": "7.42.0",
57
+ "@wordpress/data": "10.42.0",
58
+ "@wordpress/date": "5.42.0",
59
+ "@wordpress/element": "6.42.0",
60
+ "@wordpress/i18n": "6.15.0",
61
+ "@wordpress/icons": "12.0.0",
62
+ "@wordpress/notices": "5.42.0",
63
63
  "clsx": "2.1.1",
64
64
  "prop-types": "^15.7.2",
65
65
  "qrcode.react": "4.2.0",
@@ -69,12 +69,12 @@
69
69
  "uplot-react": "1.1.4"
70
70
  },
71
71
  "devDependencies": {
72
- "@automattic/jetpack-base-styles": "^1.0.19",
72
+ "@automattic/jetpack-base-styles": "^1.0.20",
73
73
  "@babel/core": "7.29.0",
74
74
  "@babel/preset-react": "7.28.5",
75
75
  "@jest/globals": "30.2.0",
76
- "@storybook/addon-docs": "10.2.11",
77
- "@storybook/react": "10.2.11",
76
+ "@storybook/addon-docs": "10.3.1",
77
+ "@storybook/react": "10.3.1",
78
78
  "@testing-library/dom": "10.4.1",
79
79
  "@testing-library/react": "16.3.0",
80
80
  "@testing-library/user-event": "14.6.1",
@@ -87,8 +87,9 @@
87
87
  "react": "18.3.1",
88
88
  "react-dom": "18.3.1",
89
89
  "require-from-string": "2.0.2",
90
- "storybook": "10.2.11",
90
+ "storybook": "10.3.1",
91
91
  "ts-dedent": "2.2.0",
92
+ "typescript": "5.9.3",
92
93
  "webpack": "5.105.2",
93
94
  "webpack-cli": "6.0.1"
94
95
  },