@automattic/jetpack-components 0.49.2 → 0.50.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,17 @@
2
2
 
3
3
  ### This is a list detailing changes for the Jetpack RNA Components package releases.
4
4
 
5
+ ## [0.50.1] - 2024-03-12
6
+ ### Added
7
+ - Social Logos: add new SMS icon. [#36176]
8
+
9
+ ### Changed
10
+ - Updated package dependencies. [#36325]
11
+
12
+ ## [0.50.0] - 2024-03-07
13
+ ### Added
14
+ - Fix typescript errors [#35904]
15
+
5
16
  ## [0.49.2] - 2024-03-04
6
17
  ### Changed
7
18
  - Updated package dependencies.
@@ -967,6 +978,8 @@
967
978
  ### Changed
968
979
  - Update node version requirement to 14.16.1
969
980
 
981
+ [0.50.1]: https://github.com/Automattic/jetpack-components/compare/0.50.0...0.50.1
982
+ [0.50.0]: https://github.com/Automattic/jetpack-components/compare/0.49.2...0.50.0
970
983
  [0.49.2]: https://github.com/Automattic/jetpack-components/compare/0.49.1...0.49.2
971
984
  [0.49.1]: https://github.com/Automattic/jetpack-components/compare/0.49.0...0.49.1
972
985
  [0.49.0]: https://github.com/Automattic/jetpack-components/compare/0.48.4...0.49.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automattic/jetpack-components",
3
- "version": "0.49.2",
3
+ "version": "0.50.1",
4
4
  "description": "Jetpack Components Package",
5
5
  "author": "Automattic",
6
6
  "license": "GPL-2.0-or-later",
@@ -15,26 +15,26 @@
15
15
  },
16
16
  "dependencies": {
17
17
  "@automattic/format-currency": "1.0.1",
18
- "@automattic/jetpack-boost-score-api": "^0.1.25",
18
+ "@automattic/jetpack-boost-score-api": "^0.1.26",
19
19
  "@babel/runtime": "^7",
20
- "@wordpress/browserslist-config": "5.35.0",
21
- "@wordpress/components": "27.0.0",
22
- "@wordpress/compose": "6.29.0",
23
- "@wordpress/data": "9.22.0",
24
- "@wordpress/date": "4.52.0",
25
- "@wordpress/element": "5.29.0",
26
- "@wordpress/i18n": "4.52.0",
27
- "@wordpress/icons": "9.43.0",
20
+ "@wordpress/browserslist-config": "5.36.0",
21
+ "@wordpress/components": "27.1.0",
22
+ "@wordpress/compose": "6.30.0",
23
+ "@wordpress/data": "9.23.0",
24
+ "@wordpress/date": "4.53.0",
25
+ "@wordpress/element": "5.30.0",
26
+ "@wordpress/i18n": "4.53.0",
27
+ "@wordpress/icons": "9.44.0",
28
28
  "classnames": "2.3.2",
29
29
  "prop-types": "^15.7.2",
30
30
  "qrcode.react": "3.1.0",
31
31
  "react-slider": "2.0.5",
32
- "social-logos": "2.5.6",
32
+ "social-logos": "2.5.9",
33
33
  "uplot": "1.6.24",
34
34
  "uplot-react": "1.1.4"
35
35
  },
36
36
  "devDependencies": {
37
- "@automattic/jetpack-base-styles": "^0.6.18",
37
+ "@automattic/jetpack-base-styles": "^0.6.19",
38
38
  "@babel/core": "7.24.0",
39
39
  "@babel/preset-react": "7.23.3",
40
40
  "@jest/globals": "29.4.3",
@@ -1,4 +1,3 @@
1
- import './types.ts';
2
1
  /**
3
2
  * Returns the site admin URL.
4
3
  *
@@ -38,11 +38,6 @@ export type QueryVars = {
38
38
  };
39
39
 
40
40
  declare global {
41
- interface Window {
42
- JP_CONNECTION_INITIAL_STATE: {
43
- calypsoEnv?: string;
44
- };
45
- }
46
41
  const jetpack_redirects: {
47
42
  currentSiteRawUrl?: string;
48
43
  currentBlogID?: string;
@@ -1,14 +0,0 @@
1
- declare global {
2
- interface Window {
3
- Initial_State?: {
4
- adminUrl?: string;
5
- };
6
- Jetpack_Editor_Initial_State?: {
7
- adminUrl?: string;
8
- };
9
- myJetpackInitialState?: {
10
- adminUrl?: string;
11
- };
12
- }
13
- }
14
- export {};