@automattic/jetpack-connection 0.39.8 → 0.39.10
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 +11 -1
- package/components/connect-screen/layout/style.scss +2 -0
- package/components/connect-screen/required-plan/style.scss +3 -0
- package/components/connection-error-notice/styles.module.scss +1 -0
- package/components/disconnect-dialog/style.scss +8 -0
- package/components/disconnect-survey/_jp-connect_disconnect-survey-card.scss +1 -0
- package/components/in-place-connection/style.scss +11 -0
- package/components/manage-connection-dialog/style.scss +1 -0
- package/components/owner-disconnect-dialog/style.scss +2 -0
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -2,9 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
### This is a list detailing changes for the Jetpack RNA Connection Component releases.
|
|
4
4
|
|
|
5
|
+
## [0.39.10] - 2025-04-07
|
|
6
|
+
### Changed
|
|
7
|
+
- Code: First pass of style coding standards. [#42734]
|
|
8
|
+
|
|
9
|
+
## [0.39.9] - 2025-04-01
|
|
10
|
+
### Changed
|
|
11
|
+
- Update package dependencies. [#42809]
|
|
12
|
+
|
|
5
13
|
## [0.39.8] - 2025-04-01
|
|
6
14
|
### Fixed
|
|
7
|
-
- Fix
|
|
15
|
+
- Fix TypeScript configuration. [#42762]
|
|
8
16
|
|
|
9
17
|
## [0.39.7] - 2025-03-31
|
|
10
18
|
### Changed
|
|
@@ -988,6 +996,8 @@
|
|
|
988
996
|
- `Main` and `ConnectUser` components added.
|
|
989
997
|
- `JetpackRestApiClient` API client added.
|
|
990
998
|
|
|
999
|
+
[0.39.10]: https://github.com/Automattic/jetpack-connection-js/compare/v0.39.9...v0.39.10
|
|
1000
|
+
[0.39.9]: https://github.com/Automattic/jetpack-connection-js/compare/v0.39.8...v0.39.9
|
|
991
1001
|
[0.39.8]: https://github.com/Automattic/jetpack-connection-js/compare/v0.39.7...v0.39.8
|
|
992
1002
|
[0.39.7]: https://github.com/Automattic/jetpack-connection-js/compare/v0.39.6...v0.39.7
|
|
993
1003
|
[0.39.6]: https://github.com/Automattic/jetpack-connection-js/compare/v0.39.5...v0.39.6
|
|
@@ -147,6 +147,7 @@
|
|
|
147
147
|
}
|
|
148
148
|
|
|
149
149
|
.jp-connection__connect-screen-required-plan__pricing-card {
|
|
150
|
+
|
|
150
151
|
/** Line up with the top of the product logo,
|
|
151
152
|
* and mirror 96px horizontal padding seen in
|
|
152
153
|
* .jp-connection__connect-screen-layout__left
|
|
@@ -177,6 +178,7 @@
|
|
|
177
178
|
}
|
|
178
179
|
|
|
179
180
|
.jp-backup-dashboard-promotion {
|
|
181
|
+
|
|
180
182
|
ul.jp-product-promote li {
|
|
181
183
|
margin-bottom: 0.75rem;
|
|
182
184
|
}
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
@import '@wordpress/base-styles/mixins';
|
|
3
3
|
|
|
4
4
|
.jp-connection__connect-screen-layout__left {
|
|
5
|
+
|
|
5
6
|
/**
|
|
6
7
|
* Start with 100% width;
|
|
7
8
|
* then account for a 384px pricing card that floats to the right;
|
|
@@ -13,6 +14,7 @@
|
|
|
13
14
|
}
|
|
14
15
|
|
|
15
16
|
.jp-connection__connect-screen-required-plan {
|
|
17
|
+
|
|
16
18
|
@include break-xlarge {
|
|
17
19
|
position: relative;
|
|
18
20
|
background: linear-gradient(to right, white 70%, #f9f9f6 30%);
|
|
@@ -31,6 +33,7 @@
|
|
|
31
33
|
}
|
|
32
34
|
|
|
33
35
|
&__pricing-card {
|
|
36
|
+
|
|
34
37
|
/** Line up with the top of the product logo,
|
|
35
38
|
* and mirror 96px horizontal padding seen in
|
|
36
39
|
* .jp-connection__connect-screen-layout__left
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
@import '@automattic/jetpack-base-styles/style';
|
|
2
2
|
|
|
3
3
|
.jp-connection__disconnect-dialog {
|
|
4
|
+
|
|
4
5
|
h1 {
|
|
5
6
|
margin-top: 0;
|
|
6
7
|
line-height: 1.2;
|
|
@@ -56,6 +57,7 @@
|
|
|
56
57
|
}
|
|
57
58
|
|
|
58
59
|
.components-modal{
|
|
60
|
+
|
|
59
61
|
&__content{
|
|
60
62
|
padding: 0;
|
|
61
63
|
display: flex;
|
|
@@ -158,7 +160,9 @@
|
|
|
158
160
|
|
|
159
161
|
// When the screen height is shorter, hide the decorative cards to show the text and controls without scrolling.
|
|
160
162
|
.jp-connection__disconnect-dialog__content {
|
|
163
|
+
|
|
161
164
|
@media (max-height: 900px) {
|
|
165
|
+
|
|
162
166
|
.jp-components__decorative-card {
|
|
163
167
|
display: none;
|
|
164
168
|
}
|
|
@@ -166,6 +170,7 @@
|
|
|
166
170
|
}
|
|
167
171
|
|
|
168
172
|
@media (min-width: 600px){
|
|
173
|
+
|
|
169
174
|
.jp-connection__disconnect-dialog,
|
|
170
175
|
.jp-connection__disconnect-dialog.components-modal__frame {
|
|
171
176
|
width: 100%;
|
|
@@ -173,6 +178,7 @@
|
|
|
173
178
|
}
|
|
174
179
|
|
|
175
180
|
.jp-connection__disconnect-dialog {
|
|
181
|
+
|
|
176
182
|
&__content {
|
|
177
183
|
padding: 2rem;
|
|
178
184
|
}
|
|
@@ -185,6 +191,7 @@
|
|
|
185
191
|
|
|
186
192
|
|
|
187
193
|
@media (min-width: 960px){
|
|
194
|
+
|
|
188
195
|
.jp-connection__disconnect-dialog,
|
|
189
196
|
.jp-connection__disconnect-dialog.components-modal__frame {
|
|
190
197
|
width: 1200px;
|
|
@@ -194,6 +201,7 @@
|
|
|
194
201
|
}
|
|
195
202
|
|
|
196
203
|
.jp-connection__disconnect-dialog {
|
|
204
|
+
|
|
197
205
|
h1 {
|
|
198
206
|
font-size: var( --font-title-large );
|
|
199
207
|
}
|
|
@@ -9,27 +9,38 @@
|
|
|
9
9
|
-o-animation: fadeIn ease 1.5s;
|
|
10
10
|
-ms-animation: fadeIn ease 1.5s;
|
|
11
11
|
}
|
|
12
|
+
|
|
12
13
|
@keyframes fadeIn {
|
|
14
|
+
|
|
13
15
|
0% {opacity:0;}
|
|
16
|
+
|
|
14
17
|
100% {opacity:1;}
|
|
15
18
|
}
|
|
16
19
|
|
|
17
20
|
@-moz-keyframes fadeIn {
|
|
21
|
+
|
|
18
22
|
0% {opacity:0;}
|
|
23
|
+
|
|
19
24
|
100% {opacity:1;}
|
|
20
25
|
}
|
|
21
26
|
|
|
22
27
|
@-webkit-keyframes fadeIn {
|
|
28
|
+
|
|
23
29
|
0% {opacity:0;}
|
|
30
|
+
|
|
24
31
|
100% {opacity:1;}
|
|
25
32
|
}
|
|
26
33
|
|
|
27
34
|
@-o-keyframes fadeIn {
|
|
35
|
+
|
|
28
36
|
0% {opacity:0;}
|
|
37
|
+
|
|
29
38
|
100% {opacity:1;}
|
|
30
39
|
}
|
|
31
40
|
|
|
32
41
|
@-ms-keyframes fadeIn {
|
|
42
|
+
|
|
33
43
|
0% {opacity:0;}
|
|
44
|
+
|
|
34
45
|
100% {opacity:1;}
|
|
35
46
|
}
|
|
@@ -3,9 +3,11 @@
|
|
|
3
3
|
.components-button.jp-connection__disconnect-dialog__btn-dismiss {
|
|
4
4
|
background: var( --jp-black ) !important;
|
|
5
5
|
}
|
|
6
|
+
|
|
6
7
|
.jp-connection__disconnect-dialog__content {
|
|
7
8
|
--spacing-base: 8px;
|
|
8
9
|
}
|
|
10
|
+
|
|
9
11
|
.components-modal__content > div:not(.components-modal__header) {
|
|
10
12
|
display: flex;
|
|
11
13
|
flex-direction: column;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automattic/jetpack-connection",
|
|
3
|
-
"version": "0.39.
|
|
3
|
+
"version": "0.39.10",
|
|
4
4
|
"description": "Jetpack Connection Component",
|
|
5
5
|
"homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/connection/#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -15,23 +15,23 @@
|
|
|
15
15
|
"license": "GPL-2.0-or-later",
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@automattic/jetpack-analytics": "^0.1.36",
|
|
18
|
-
"@automattic/jetpack-api": "^0.20.
|
|
19
|
-
"@automattic/jetpack-components": "^0.72.
|
|
18
|
+
"@automattic/jetpack-api": "^0.20.1",
|
|
19
|
+
"@automattic/jetpack-components": "^0.72.3",
|
|
20
20
|
"@automattic/jetpack-config": "^0.1.29",
|
|
21
21
|
"@automattic/jetpack-script-data": "^0.3.0",
|
|
22
|
-
"@wordpress/base-styles": "5.
|
|
23
|
-
"@wordpress/browserslist-config": "6.
|
|
24
|
-
"@wordpress/components": "29.
|
|
25
|
-
"@wordpress/data": "10.
|
|
26
|
-
"@wordpress/element": "6.
|
|
27
|
-
"@wordpress/i18n": "5.
|
|
28
|
-
"@wordpress/icons": "10.
|
|
22
|
+
"@wordpress/base-styles": "5.21.0",
|
|
23
|
+
"@wordpress/browserslist-config": "6.21.0",
|
|
24
|
+
"@wordpress/components": "29.7.0",
|
|
25
|
+
"@wordpress/data": "10.21.0",
|
|
26
|
+
"@wordpress/element": "6.21.0",
|
|
27
|
+
"@wordpress/i18n": "5.21.0",
|
|
28
|
+
"@wordpress/icons": "10.21.0",
|
|
29
29
|
"clsx": "2.1.1",
|
|
30
30
|
"debug": "4.4.0",
|
|
31
31
|
"prop-types": "^15.7.2"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@automattic/jetpack-base-styles": "^0.
|
|
34
|
+
"@automattic/jetpack-base-styles": "^0.7.0",
|
|
35
35
|
"@babel/core": "7.26.10",
|
|
36
36
|
"@babel/preset-react": "7.26.3",
|
|
37
37
|
"@storybook/addon-actions": "8.6.7",
|