@automattic/jetpack-connection 0.35.20 → 0.36.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
@@ -2,6 +2,11 @@
2
2
 
3
3
  ### This is a list detailing changes for the Jetpack RNA Connection Component releases.
4
4
 
5
+ ## [0.36.0] - 2024-12-04
6
+ ### Changed
7
+ - Changed text domain from 'jetpack' to 'jetpack-connection-js'. [#40368]
8
+ - Updated package dependencies. [#40363]
9
+
5
10
  ## [0.35.20] - 2024-11-26
6
11
  ### Changed
7
12
  - Update dependencies.
@@ -901,6 +906,7 @@
901
906
  - `Main` and `ConnectUser` components added.
902
907
  - `JetpackRestApiClient` API client added.
903
908
 
909
+ [0.36.0]: https://github.com/Automattic/jetpack-connection-js/compare/v0.35.20...v0.36.0
904
910
  [0.35.20]: https://github.com/Automattic/jetpack-connection-js/compare/v0.35.19...v0.35.20
905
911
  [0.35.19]: https://github.com/Automattic/jetpack-connection-js/compare/v0.35.18...v0.35.19
906
912
  [0.35.18]: https://github.com/Automattic/jetpack-connection-js/compare/v0.35.17...v0.35.18
@@ -14,7 +14,7 @@ const ConnectButton = props => {
14
14
  const {
15
15
  apiRoot,
16
16
  apiNonce,
17
- connectLabel = __( 'Connect', 'jetpack' ),
17
+ connectLabel = __( 'Connect', 'jetpack-connection-js' ),
18
18
  registrationNonce,
19
19
  redirectUri = null,
20
20
  from,
@@ -83,11 +83,12 @@ const ConnectScreen: React.FC< Props > = ( {
83
83
  return (
84
84
  <ConnectScreenVisual
85
85
  title={
86
- title || __( 'Over 5 million WordPress sites are faster and more secure', 'jetpack' )
86
+ title ||
87
+ __( 'Over 5 million WordPress sites are faster and more secure', 'jetpack-connection-js' )
87
88
  }
88
89
  images={ images || [] }
89
90
  assetBaseUrl={ assetBaseUrl }
90
- buttonLabel={ buttonLabel || __( 'Set up Jetpack', 'jetpack' ) }
91
+ buttonLabel={ buttonLabel || __( 'Set up Jetpack', 'jetpack-connection-js' ) }
91
92
  loadingLabel={ loadingLabel }
92
93
  handleButtonClick={ handleRegisterSite }
93
94
  displayButtonError={ displayButtonError }
@@ -46,22 +46,25 @@ const getErrorMessage = ( errorCode, isOfflineMode ) => {
46
46
  case 'siteurl_private_ip':
47
47
  return __(
48
48
  'Your site host is on a private network. Jetpack can only connect to public sites.',
49
- 'jetpack'
49
+ 'jetpack-connection-js'
50
50
  );
51
51
  case 'connection_disabled':
52
- return __( 'This site has been suspended.', 'jetpack' );
52
+ return __( 'This site has been suspended.', 'jetpack-connection-js' );
53
53
  }
54
54
 
55
55
  if ( isOfflineMode ) {
56
- return createInterpolateElement( __( 'Unavailable in <a>Offline Mode</a>', 'jetpack' ), {
57
- a: (
58
- <a
59
- href={ getRedirectUrl( 'jetpack-support-development-mode' ) }
60
- target="_blank"
61
- rel="noopener noreferrer"
62
- />
63
- ),
64
- } );
56
+ return createInterpolateElement(
57
+ __( 'Unavailable in <a>Offline Mode</a>', 'jetpack-connection-js' ),
58
+ {
59
+ a: (
60
+ <a
61
+ href={ getRedirectUrl( 'jetpack-support-development-mode' ) }
62
+ target="_blank"
63
+ rel="noopener noreferrer"
64
+ />
65
+ ),
66
+ }
67
+ );
65
68
  }
66
69
  };
67
70
 
@@ -109,7 +112,7 @@ const ConnectScreenVisual: React.FC< Props > = ( {
109
112
  isDisabled={ isOfflineMode }
110
113
  />
111
114
  <span className="jp-connection__connect-screen__loading-message" role="status">
112
- { buttonIsLoading ? loadingLabel || __( 'Loading', 'jetpack' ) : '' }
115
+ { buttonIsLoading ? loadingLabel || __( 'Loading', 'jetpack-connection-js' ) : '' }
113
116
  </span>
114
117
 
115
118
  { footer && <div className="jp-connection__connect-screen__footer">{ footer }</div> }
@@ -13,9 +13,12 @@ import ConnectScreenRequiredPlanVisual from './visual';
13
13
  */
14
14
  const ConnectScreenRequiredPlan = props => {
15
15
  const {
16
- title = __( 'Over 5 million WordPress sites are faster and more secure', 'jetpack' ),
16
+ title = __(
17
+ 'Over 5 million WordPress sites are faster and more secure',
18
+ 'jetpack-connection-js'
19
+ ),
17
20
  autoTrigger = false,
18
- buttonLabel = __( 'Set up Jetpack', 'jetpack' ),
21
+ buttonLabel = __( 'Set up Jetpack', 'jetpack-connection-js' ),
19
22
  apiRoot,
20
23
  apiNonce,
21
24
  registrationNonce,
@@ -43,11 +43,11 @@ const ConnectScreenRequiredPlanVisual = props => {
43
43
  debug( 'props are %o', props );
44
44
 
45
45
  const withSubscription = createInterpolateElement(
46
- __( 'Already have a subscription? <connectButton/>', 'jetpack' ),
46
+ __( 'Already have a subscription? <connectButton/>', 'jetpack-connection-js' ),
47
47
  {
48
48
  connectButton: (
49
49
  <ActionButton
50
- label={ __( 'Log in to get started', 'jetpack' ) }
50
+ label={ __( 'Log in to get started', 'jetpack-connection-js' ) }
51
51
  onClick={ handleButtonClick }
52
52
  isLoading={ buttonIsLoading }
53
53
  />
@@ -56,15 +56,18 @@ const ConnectScreenRequiredPlanVisual = props => {
56
56
  );
57
57
 
58
58
  const errorMessage = isOfflineMode
59
- ? createInterpolateElement( __( 'Unavailable in <a>Offline Mode</a>', 'jetpack' ), {
60
- a: (
61
- <a
62
- href={ getRedirectUrl( 'jetpack-support-development-mode' ) }
63
- target="_blank"
64
- rel="noopener noreferrer"
65
- />
66
- ),
67
- } )
59
+ ? createInterpolateElement(
60
+ __( 'Unavailable in <a>Offline Mode</a>', 'jetpack-connection-js' ),
61
+ {
62
+ a: (
63
+ <a
64
+ href={ getRedirectUrl( 'jetpack-support-development-mode' ) }
65
+ target="_blank"
66
+ rel="noopener noreferrer"
67
+ />
68
+ ),
69
+ }
70
+ )
68
71
  : undefined;
69
72
 
70
73
  return (
@@ -40,7 +40,7 @@ const ConnectedPlugins = props => {
40
40
  <p className="jp-connection__disconnect-dialog__large-text">
41
41
  { __(
42
42
  'Jetpack is powering other plugins on your site. If you disconnect, these plugins will no longer work.',
43
- 'jetpack'
43
+ 'jetpack-connection-js'
44
44
  ) }
45
45
  </p>
46
46
  </div>
@@ -50,7 +50,7 @@ const ConnectionErrorNotice = props => {
50
50
  <Notice status={ 'error' } isDismissible={ false } className={ wrapperClassName }>
51
51
  <div className={ styles.message }>
52
52
  <Spinner color="#B32D2E" size={ 24 } />
53
- { __( 'Reconnecting Jetpack', 'jetpack' ) }
53
+ { __( 'Reconnecting Jetpack', 'jetpack-connection-js' ) }
54
54
  </div>
55
55
  </Notice>
56
56
  );
@@ -66,7 +66,7 @@ const ConnectionErrorNotice = props => {
66
66
  { icon }
67
67
  { sprintf(
68
68
  /* translators: placeholder is the error. */
69
- __( 'There was an error reconnecting Jetpack. Error: %s', 'jetpack' ),
69
+ __( 'There was an error reconnecting Jetpack. Error: %s', 'jetpack-connection-js' ),
70
70
  restoreConnectionError
71
71
  ) }
72
72
  </div>
@@ -88,7 +88,7 @@ const ConnectionErrorNotice = props => {
88
88
  className={ styles.button }
89
89
  href="#"
90
90
  >
91
- { __( 'Restore Connection', 'jetpack' ) }
91
+ { __( 'Restore Connection', 'jetpack-connection-js' ) }
92
92
  </a>
93
93
  ) }
94
94
  </Notice>
@@ -29,7 +29,7 @@ const DisconnectDialog = props => {
29
29
  apiRoot,
30
30
  apiNonce,
31
31
  connectedPlugins,
32
- title = __( 'Are you sure you want to disconnect?', 'jetpack' ),
32
+ title = __( 'Are you sure you want to disconnect?', 'jetpack-connection-js' ),
33
33
  pluginScreenDisconnectCallback,
34
34
  onDisconnected,
35
35
  onError,
@@ -23,7 +23,7 @@ const StepDisconnectConfirm = props => {
23
23
  <div className="jp-connection__disconnect-dialog__step-copy jp-connection__disconnect-dialog__step-copy--narrow">
24
24
  <h1>
25
25
  { createInterpolateElement(
26
- __( 'Jetpack has been <br/>successfully disconnected.', 'jetpack' ),
26
+ __( 'Jetpack has been <br/>successfully disconnected.', 'jetpack-connection-js' ),
27
27
  {
28
28
  br: <br />,
29
29
  }
@@ -35,7 +35,7 @@ const StepDisconnectConfirm = props => {
35
35
  <p>
36
36
  { __(
37
37
  'We’re sorry to see you go. Here at Jetpack, we’re always striving to provide the best experience for our customers. Please take our short survey (2 minutes, promise).',
38
- 'jetpack'
38
+ 'jetpack-connection-js'
39
39
  ) }
40
40
  </p>
41
41
  <p>
@@ -44,7 +44,7 @@ const StepDisconnectConfirm = props => {
44
44
  onClick={ onProvideFeedback }
45
45
  className="jp-connection__disconnect-dialog__btn-back-to-wp"
46
46
  >
47
- { __( 'Help us improve', 'jetpack' ) }
47
+ { __( 'Help us improve', 'jetpack-connection-js' ) }
48
48
  </Button>
49
49
  </p>
50
50
  <a
@@ -52,7 +52,7 @@ const StepDisconnectConfirm = props => {
52
52
  href="#"
53
53
  onClick={ onExit }
54
54
  >
55
- { __( 'No thank you', 'jetpack' ) }
55
+ { __( 'No thank you', 'jetpack-connection-js' ) }
56
56
  </a>
57
57
  </>
58
58
  ) }
@@ -65,7 +65,7 @@ const StepDisconnectConfirm = props => {
65
65
  onClick={ onExit }
66
66
  className="jp-connection__disconnect-dialog__btn-back-to-wp"
67
67
  >
68
- { __( 'Back to my website', 'jetpack' ) }
68
+ { __( 'Back to my website', 'jetpack-connection-js' ) }
69
69
  </Button>
70
70
  </p>
71
71
  </>
@@ -69,12 +69,12 @@ const StepDisconnect = props => {
69
69
  * @return {React.Component} - Button used for disconnect.
70
70
  */
71
71
  const renderDisconnectButton = () => {
72
- let buttonText = __( 'Disconnect', 'jetpack' );
72
+ let buttonText = __( 'Disconnect', 'jetpack-connection-js' );
73
73
  // When showing on the plugins page, this button should deactivate the plugin as well.
74
74
  if ( isDisconnecting ) {
75
- buttonText = __( 'Disconnecting…', 'jetpack' );
75
+ buttonText = __( 'Disconnecting…', 'jetpack-connection-js' );
76
76
  } else if ( context === 'plugins' ) {
77
- buttonText = __( 'Deactivate', 'jetpack' );
77
+ buttonText = __( 'Deactivate', 'jetpack-connection-js' );
78
78
  }
79
79
 
80
80
  return (
@@ -104,9 +104,15 @@ const StepDisconnect = props => {
104
104
  return (
105
105
  <div className="jp-connection__disconnect-dialog__step-copy">
106
106
  <p className="jp-connection__disconnect-dialog__large-text">
107
- { __( 'Jetpack is currently powering multiple products on your site.', 'jetpack' ) }
107
+ { __(
108
+ 'Jetpack is currently powering multiple products on your site.',
109
+ 'jetpack-connection-js'
110
+ ) }
108
111
  <br />
109
- { __( 'Once you disconnect Jetpack, these will no longer work.', 'jetpack' ) }
112
+ { __(
113
+ 'Once you disconnect Jetpack, these will no longer work.',
114
+ 'jetpack-connection-js'
115
+ ) }
110
116
  </p>
111
117
  </div>
112
118
  );
@@ -134,7 +140,7 @@ const StepDisconnect = props => {
134
140
  { createInterpolateElement(
135
141
  __(
136
142
  '<strong>Need help?</strong> Learn more about the <jpConnectionInfoLink>Jetpack connection</jpConnectionInfoLink> or <jpSupportLink>contact Jetpack support</jpSupportLink>.',
137
- 'jetpack'
143
+ 'jetpack-connection-js'
138
144
  ),
139
145
  {
140
146
  strong: <strong></strong>,
@@ -166,8 +172,12 @@ const StepDisconnect = props => {
166
172
  className="jp-connection__disconnect-dialog__btn-dismiss"
167
173
  >
168
174
  { context === 'plugins'
169
- ? __( 'Cancel', 'jetpack' )
170
- : __( 'Stay connected', 'jetpack', /* dummy arg to avoid bad minification */ 0 ) }
175
+ ? __( 'Cancel', 'jetpack-connection-js' )
176
+ : __(
177
+ 'Stay connected',
178
+ 'jetpack-connection-js',
179
+ /* dummy arg to avoid bad minification */ 0
180
+ ) }
171
181
  </Button>
172
182
  { renderDisconnectButton() }
173
183
  </div>
@@ -17,9 +17,9 @@ const StepSurvey = props => {
17
17
 
18
18
  return (
19
19
  <div className="jp-connection__disconnect-dialog__content">
20
- <h1>{ __( 'Before you go, help us improve Jetpack', 'jetpack' ) }</h1>
20
+ <h1>{ __( 'Before you go, help us improve Jetpack', 'jetpack-connection-js' ) }</h1>
21
21
  <p className="jp-connection__disconnect-dialog__large-text">
22
- { __( 'Let us know what didn‘t work for you', 'jetpack' ) }
22
+ { __( 'Let us know what didn‘t work for you', 'jetpack-connection-js' ) }
23
23
  </p>
24
24
  <DisconnectSurvey
25
25
  onSubmit={ onFeedBackProvided }
@@ -30,7 +30,7 @@ const StepSurvey = props => {
30
30
  href="#"
31
31
  onClick={ onExit }
32
32
  >
33
- { __( 'Skip for now', 'jetpack' ) }
33
+ { __( 'Skip for now', 'jetpack-connection-js' ) }
34
34
  </a>
35
35
  </div>
36
36
  );
@@ -20,12 +20,12 @@ const StepThankYou = props => {
20
20
  <DecorativeCard format="vertical" imageUrl={ disconnectImage } />
21
21
 
22
22
  <div className="jp-connection__disconnect-dialog__copy">
23
- <h1>{ __( 'Thank you!', 'jetpack' ) }</h1>
23
+ <h1>{ __( 'Thank you!', 'jetpack-connection-js' ) }</h1>
24
24
  <p className="jp-connection__disconnect-dialog__large-text">
25
25
  { createInterpolateElement(
26
26
  __(
27
27
  'Your answer has been submitted. <br/>Thanks for your input on how we can improve Jetpack.',
28
- 'jetpack'
28
+ 'jetpack-connection-js'
29
29
  ),
30
30
  {
31
31
  br: <br />,
@@ -37,7 +37,7 @@ const StepThankYou = props => {
37
37
  onClick={ onExit }
38
38
  className="jp-connection__disconnect-dialog__btn-back-to-wp"
39
39
  >
40
- { __( 'Back to my website', 'jetpack' ) }
40
+ { __( 'Back to my website', 'jetpack-connection-js' ) }
41
41
  </Button>
42
42
  </div>
43
43
  </div>
@@ -18,23 +18,26 @@ const DisconnectSurvey = props => {
18
18
  const options = [
19
19
  {
20
20
  id: 'troubleshooting',
21
- answerText: __( "Troubleshooting - I'll be reconnecting afterwards.", 'jetpack' ),
21
+ answerText: __(
22
+ "Troubleshooting - I'll be reconnecting afterwards.",
23
+ 'jetpack-connection-js'
24
+ ),
22
25
  },
23
26
  {
24
27
  id: 'not-working',
25
- answerText: __( "I can't get it to work.", 'jetpack' ),
28
+ answerText: __( "I can't get it to work.", 'jetpack-connection-js' ),
26
29
  },
27
30
  {
28
31
  id: 'slowed-down-site',
29
- answerText: __( 'It slowed down my site.', 'jetpack' ),
32
+ answerText: __( 'It slowed down my site.', 'jetpack-connection-js' ),
30
33
  },
31
34
  {
32
35
  id: 'buggy',
33
- answerText: __( "It's buggy.", 'jetpack' ),
36
+ answerText: __( "It's buggy.", 'jetpack-connection-js' ),
34
37
  },
35
38
  {
36
39
  id: 'what-does-it-do',
37
- answerText: __( "I don't know what it does.", 'jetpack' ),
40
+ answerText: __( "I don't know what it does.", 'jetpack-connection-js' ),
38
41
  },
39
42
  ];
40
43
 
@@ -136,9 +139,9 @@ const DisconnectSurvey = props => {
136
139
  className={ 'card jp-connect__disconnect-survey-card ' + selectedClass( customOption.id ) }
137
140
  >
138
141
  <p className="jp-connect__disconnect-survey-card__answer">
139
- { __( 'Other:', 'jetpack' ) }{ ' ' }
142
+ { __( 'Other:', 'jetpack-connection-js' ) }{ ' ' }
140
143
  <input
141
- placeholder={ __( 'share your experience', 'jetpack' ) }
144
+ placeholder={ __( 'share your experience', 'jetpack-connection-js' ) }
142
145
  className="jp-connect__disconnect-survey-card__input"
143
146
  type="text"
144
147
  value={ customResponse }
@@ -164,8 +167,12 @@ const DisconnectSurvey = props => {
164
167
  className="jp-connection__disconnect-dialog__btn-back-to-wp"
165
168
  >
166
169
  { isSubmittingFeedback
167
- ? __( 'Submitting…', 'jetpack' )
168
- : __( 'Submit Feedback', 'jetpack', /* dummy arg to avoid bad minification */ 0 ) }
170
+ ? __( 'Submitting…', 'jetpack-connection-js' )
171
+ : __(
172
+ 'Submit Feedback',
173
+ 'jetpack-connection-js',
174
+ /* dummy arg to avoid bad minification */ 0
175
+ ) }
169
176
  </Button>
170
177
  </p>
171
178
  </React.Fragment>
@@ -103,7 +103,7 @@ const InPlaceConnection = props => {
103
103
  <div className="dops-card fade-in jp-iframe-wrap" ref={ iframeWrapRef }>
104
104
  <h1>{ title }</h1>
105
105
  { isLoading ? (
106
- <p>{ __( 'Loading…', 'jetpack' ) }</p>
106
+ <p>{ __( 'Loading…', 'jetpack-connection-js' ) }</p>
107
107
  ) : (
108
108
  <iframe
109
109
  title={ title }
@@ -23,7 +23,7 @@ import './style.scss';
23
23
  */
24
24
  const ManageConnectionDialog = props => {
25
25
  const {
26
- title = __( 'Manage your Jetpack connection', 'jetpack' ),
26
+ title = __( 'Manage your Jetpack connection', 'jetpack-connection-js' ),
27
27
  apiRoot,
28
28
  apiNonce,
29
29
  connectedPlugins,
@@ -79,11 +79,11 @@ const ManageConnectionDialog = props => {
79
79
  <Text className="jp-connection__manage-dialog__large-text">
80
80
  { __(
81
81
  'At least one user must be connected for your Jetpack products to work properly.',
82
- 'jetpack'
82
+ 'jetpack-connection-js'
83
83
  ) }
84
84
  </Text>
85
85
  <ManageConnectionActionCard
86
- title={ __( 'Transfer ownership to another admin', 'jetpack' ) }
86
+ title={ __( 'Transfer ownership to another admin', 'jetpack-connection-js' ) }
87
87
  link={ getRedirectUrl( 'calypso-settings-manage-connection', {
88
88
  site: window?.myJetpackInitialState?.siteSuffix,
89
89
  } ) }
@@ -91,7 +91,7 @@ const ManageConnectionDialog = props => {
91
91
  action="transfer"
92
92
  />
93
93
  <ManageConnectionActionCard
94
- title={ __( 'Disconnect Jetpack', 'jetpack' ) }
94
+ title={ __( 'Disconnect Jetpack', 'jetpack-connection-js' ) }
95
95
  onClick={ openDisconnectDialog }
96
96
  key="disconnect"
97
97
  action="disconnect"
@@ -145,7 +145,7 @@ const HelpFooter = ( { onClose } ) => {
145
145
  { createInterpolateElement(
146
146
  __(
147
147
  '<strong>Need help?</strong> Learn more about the <connectionInfoLink>Jetpack connection</connectionInfoLink> or <supportLink>contact Jetpack support</supportLink>',
148
- 'jetpack'
148
+ 'jetpack-connection-js'
149
149
  ),
150
150
  {
151
151
  strong: <strong></strong>,
@@ -176,7 +176,7 @@ const HelpFooter = ( { onClose } ) => {
176
176
  onClick={ onClose }
177
177
  className="jp-connection__manage-dialog__btn-dismiss"
178
178
  >
179
- { __( 'Cancel', 'jetpack' ) }
179
+ { __( 'Cancel', 'jetpack-connection-js' ) }
180
180
  </Button>
181
181
  </div>
182
182
  </div>
@@ -1,9 +1,9 @@
1
1
  import restApi from '@automattic/jetpack-api';
2
- import { getCalypsoOrigin } from '@automattic/jetpack-connection';
3
2
  import { getScriptData } from '@automattic/jetpack-script-data';
4
3
  import { useDispatch, useSelect } from '@wordpress/data';
5
4
  import debugFactory from 'debug';
6
5
  import { useEffect, useState, useMemo } from 'react';
6
+ import { getCalypsoOrigin } from '@automattic/jetpack-connection';
7
7
  import useConnection from '../../components/use-connection';
8
8
  import { STORE_ID } from '../../state/store.jsx';
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automattic/jetpack-connection",
3
- "version": "0.35.20",
3
+ "version": "0.36.0",
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.33",
18
- "@automattic/jetpack-api": "^0.17.19",
19
- "@automattic/jetpack-components": "^0.63.0",
18
+ "@automattic/jetpack-api": "^0.17.20",
19
+ "@automattic/jetpack-components": "^0.64.0",
20
20
  "@automattic/jetpack-config": "^0.1.27",
21
21
  "@automattic/jetpack-script-data": "^0.1.5",
22
- "@wordpress/base-styles": "5.12.0",
23
- "@wordpress/browserslist-config": "6.12.0",
24
- "@wordpress/components": "28.12.0",
25
- "@wordpress/data": "10.12.0",
26
- "@wordpress/element": "6.12.0",
27
- "@wordpress/i18n": "5.12.0",
28
- "@wordpress/icons": "10.12.0",
22
+ "@wordpress/base-styles": "5.13.0",
23
+ "@wordpress/browserslist-config": "6.13.0",
24
+ "@wordpress/components": "28.13.0",
25
+ "@wordpress/data": "10.13.0",
26
+ "@wordpress/element": "6.13.0",
27
+ "@wordpress/i18n": "5.13.0",
28
+ "@wordpress/icons": "10.13.0",
29
29
  "clsx": "2.1.1",
30
30
  "debug": "4.3.4",
31
31
  "prop-types": "^15.7.2"
32
32
  },
33
33
  "devDependencies": {
34
- "@automattic/jetpack-base-styles": "^0.6.37",
34
+ "@automattic/jetpack-base-styles": "^0.6.38",
35
35
  "@babel/core": "7.26.0",
36
36
  "@babel/preset-react": "7.25.9",
37
37
  "@storybook/addon-actions": "8.3.5",