@backstage/core-plugin-api 1.5.2 → 1.5.3-next.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
@@ -1,5 +1,13 @@
1
1
  # @backstage/core-plugin-api
2
2
 
3
+ ## 1.5.3-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 13426ebd1235: Change `IconComponent` type to be compatible with Material UI v5 icons.
8
+ - Updated dependencies
9
+ - @backstage/config@1.0.8
10
+
3
11
  ## 1.5.2
4
12
 
5
13
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/core-plugin-api",
3
- "version": "1.5.2",
3
+ "version": "1.5.3-next.0",
4
4
  "main": "../dist/alpha.esm.js",
5
5
  "module": "../dist/alpha.esm.js",
6
6
  "types": "../dist/alpha.d.ts"
package/dist/index.d.ts CHANGED
@@ -181,7 +181,9 @@ declare function createApiFactory<Api, Impl extends Api>(api: ApiRef<Api>, insta
181
181
  * @public
182
182
  */
183
183
  type IconComponent = ComponentType<{
184
- fontSize?: 'default' | 'small' | 'large';
184
+ fontSize?: 'large' | 'small' | 'default';
185
+ } | {
186
+ fontSize?: 'medium' | 'large' | 'small';
185
187
  }>;
186
188
 
187
189
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/core-plugin-api",
3
3
  "description": "Core API used by Backstage plugins",
4
- "version": "1.5.2",
4
+ "version": "1.5.3-next.0",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -57,9 +57,9 @@
57
57
  "react-router-dom": "6.0.0-beta.0 || ^6.3.0"
58
58
  },
59
59
  "devDependencies": {
60
- "@backstage/cli": "^0.22.8",
61
- "@backstage/core-app-api": "^1.8.1",
62
- "@backstage/test-utils": "^1.4.0",
60
+ "@backstage/cli": "^0.22.9-next.0",
61
+ "@backstage/core-app-api": "^1.8.2-next.0",
62
+ "@backstage/test-utils": "^1.4.1-next.1",
63
63
  "@testing-library/dom": "^8.0.0",
64
64
  "@testing-library/jest-dom": "^5.10.1",
65
65
  "@testing-library/react": "^12.1.3",