@backstage/plugin-home-react 0.1.2-next.0 → 0.1.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,23 @@
1
1
  # @backstage/plugin-home-react
2
2
 
3
+ ## 0.1.3-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 482bb5c0bbf8: Moved `@types/react` to be a regular dependency
8
+ - Updated dependencies
9
+ - @backstage/core-plugin-api@1.6.0-next.0
10
+ - @backstage/core-components@0.13.5-next.0
11
+
12
+ ## 0.1.2
13
+
14
+ ### Patch Changes
15
+
16
+ - bf67dce73174: Make `title` optional when defining the `createCardExtension`
17
+ - Updated dependencies
18
+ - @backstage/core-components@0.13.4
19
+ - @backstage/core-plugin-api@1.5.3
20
+
3
21
  ## 0.1.2-next.0
4
22
 
5
23
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- /// <reference types="react" />
1
+ import React from 'react';
2
2
  import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
3
3
  import { RJSFSchema, UiSchema } from '@rjsf/utils';
4
4
 
@@ -8,7 +8,7 @@ declare const SettingsModal: (props: {
8
8
  close: Function;
9
9
  componentName?: string;
10
10
  children: JSX.Element;
11
- }) => JSX.Element;
11
+ }) => React.JSX.Element;
12
12
 
13
13
  /**
14
14
  * @public
@@ -78,6 +78,6 @@ declare function createCardExtension<T>(options: {
78
78
  description?: string;
79
79
  layout?: CardLayout;
80
80
  settings?: CardSettings;
81
- }): _backstage_core_plugin_api.Extension<(props: CardExtensionProps<T>) => JSX.Element>;
81
+ }): _backstage_core_plugin_api.Extension<(props: CardExtensionProps<T>) => React.JSX.Element>;
82
82
 
83
83
  export { CardConfig, CardExtensionProps, CardLayout, CardSettings, ComponentParts, ComponentRenderer, RendererProps, SettingsModal, createCardExtension };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-home-react",
3
3
  "description": "A Backstage plugin that contains react components helps you build a home page",
4
- "version": "0.1.2-next.0",
4
+ "version": "0.1.3-next.0",
5
5
  "main": "dist/index.esm.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -33,11 +33,12 @@
33
33
  "clean": "backstage-cli package clean"
34
34
  },
35
35
  "dependencies": {
36
- "@backstage/core-components": "^0.13.4-next.0",
37
- "@backstage/core-plugin-api": "^1.5.3",
36
+ "@backstage/core-components": "^0.13.5-next.0",
37
+ "@backstage/core-plugin-api": "^1.6.0-next.0",
38
38
  "@material-ui/core": "^4.12.2",
39
39
  "@material-ui/icons": "^4.9.1",
40
- "@rjsf/utils": "5.7.3"
40
+ "@rjsf/utils": "5.7.3",
41
+ "@types/react": "^16.13.1 || ^17.0.0"
41
42
  },
42
43
  "peerDependencies": {
43
44
  "react": "^16.13.1 || ^17.0.0",
@@ -45,16 +46,15 @@
45
46
  "react-router-dom": "6.0.0-beta.0 || ^6.3.0"
46
47
  },
47
48
  "devDependencies": {
48
- "@backstage/cli": "^0.22.10-next.0",
49
- "@backstage/core-app-api": "^1.9.1-next.0",
50
- "@backstage/dev-utils": "^1.0.18-next.0",
51
- "@backstage/test-utils": "^1.4.2-next.0",
49
+ "@backstage/cli": "^0.22.12-next.0",
50
+ "@backstage/core-app-api": "^1.10.0-next.0",
51
+ "@backstage/dev-utils": "^1.0.20-next.0",
52
+ "@backstage/test-utils": "^1.4.3-next.0",
52
53
  "@testing-library/dom": "^8.0.0",
53
54
  "@testing-library/jest-dom": "^5.10.1",
54
55
  "@testing-library/react": "^12.1.3",
55
56
  "@testing-library/user-event": "^14.0.0",
56
57
  "@types/node": "^16.11.26",
57
- "@types/react": "^16.13.1 || ^17.0.0",
58
58
  "@types/react-grid-layout": "^1.3.2",
59
59
  "cross-fetch": "^3.1.5",
60
60
  "msw": "^1.0.0"