@automattic/jetpack-components 1.4.0 → 1.4.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,10 @@
2
2
 
3
3
  ### This is a list detailing changes for the Jetpack RNA Components package releases.
4
4
 
5
+ ## [1.4.1] - 2025-12-11
6
+ ### Changed
7
+ - Improve scrolling for navigator modal sidebar and content. [#46252]
8
+
5
9
  ## [1.4.0] - 2025-12-08
6
10
  ### Added
7
11
  - Jetpack Logo: Add support for customized title in shared component. [#46162]
@@ -1583,6 +1587,7 @@
1583
1587
  ### Changed
1584
1588
  - Update node version requirement to 14.16.1
1585
1589
 
1590
+ [1.4.1]: https://github.com/Automattic/jetpack-components/compare/1.4.0...1.4.1
1586
1591
  [1.4.0]: https://github.com/Automattic/jetpack-components/compare/1.3.13...1.4.0
1587
1592
  [1.3.13]: https://github.com/Automattic/jetpack-components/compare/1.3.12...1.3.13
1588
1593
  [1.3.12]: https://github.com/Automattic/jetpack-components/compare/1.3.11...1.3.12
@@ -69,16 +69,15 @@
69
69
  display: flex;
70
70
  flex-direction: column;
71
71
  gap: 1.5rem;
72
- flex-basis: 30%;
73
72
 
74
73
  @container navigator-modal (width >= #{gb.$break-small}) {
75
74
 
76
75
  & {
76
+ flex-basis: 30%;
77
77
  height: 100%;
78
- max-width: 22rem;
79
- min-width: 18rem;
80
78
  flex-shrink: 0;
81
79
  border-inline-end: 1px solid gb.$gray-300;
80
+ overflow: auto;
82
81
  }
83
82
  }
84
83
  }
@@ -87,7 +86,13 @@
87
86
  width: 100%;
88
87
  height: 100%;
89
88
  flex: 1;
90
- overflow: auto;
89
+
90
+ @container navigator-modal (width >= #{gb.$break-small}) {
91
+
92
+ & {
93
+ overflow: auto;
94
+ }
95
+ }
91
96
  }
92
97
 
93
98
  .footer {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automattic/jetpack-components",
3
- "version": "1.4.0",
3
+ "version": "1.4.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": {
@@ -42,7 +42,7 @@
42
42
  "dependencies": {
43
43
  "@automattic/format-currency": "1.0.1",
44
44
  "@automattic/jetpack-api": "^1.0.12",
45
- "@automattic/jetpack-boost-score-api": "^1.0.20",
45
+ "@automattic/jetpack-boost-score-api": "^1.0.21",
46
46
  "@automattic/jetpack-script-data": "^0.5.4",
47
47
  "@automattic/number-formatters": "^1.0.15",
48
48
  "@babel/runtime": "^7",