@backstage/plugin-catalog-import 0.9.2-next.3 → 0.9.2
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,40 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-import
|
|
2
2
|
|
|
3
|
+
## 0.9.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 2e701b3796: Internal refactor to use `react-router-dom` rather than `react-router`.
|
|
8
|
+
- 3280711113: Updated dependency `msw` to `^0.49.0`.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- @backstage/core-plugin-api@1.2.0
|
|
11
|
+
- @backstage/catalog-client@1.2.0
|
|
12
|
+
- @backstage/core-components@0.12.1
|
|
13
|
+
- @backstage/errors@1.1.4
|
|
14
|
+
- @backstage/plugin-catalog-react@1.2.2
|
|
15
|
+
- @backstage/integration-react@1.1.7
|
|
16
|
+
- @backstage/integration@1.4.1
|
|
17
|
+
- @backstage/catalog-model@1.1.4
|
|
18
|
+
- @backstage/config@1.0.5
|
|
19
|
+
- @backstage/plugin-catalog-common@1.0.9
|
|
20
|
+
|
|
21
|
+
## 0.9.2-next.4
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- 2e701b3796: Internal refactor to use `react-router-dom` rather than `react-router`.
|
|
26
|
+
- Updated dependencies
|
|
27
|
+
- @backstage/core-components@0.12.1-next.4
|
|
28
|
+
- @backstage/plugin-catalog-react@1.2.2-next.4
|
|
29
|
+
- @backstage/catalog-client@1.2.0-next.1
|
|
30
|
+
- @backstage/catalog-model@1.1.4-next.1
|
|
31
|
+
- @backstage/config@1.0.5-next.1
|
|
32
|
+
- @backstage/core-plugin-api@1.2.0-next.2
|
|
33
|
+
- @backstage/errors@1.1.4-next.1
|
|
34
|
+
- @backstage/integration@1.4.1-next.1
|
|
35
|
+
- @backstage/integration-react@1.1.7-next.4
|
|
36
|
+
- @backstage/plugin-catalog-common@1.0.9-next.3
|
|
37
|
+
|
|
3
38
|
## 0.9.2-next.3
|
|
4
39
|
|
|
5
40
|
### Patch Changes
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { useOutlet } from 'react-router';
|
|
2
|
+
import { useOutlet } from 'react-router-dom';
|
|
3
3
|
import { DefaultImportPage } from '../index.esm.js';
|
|
4
4
|
import '@backstage/core-plugin-api';
|
|
5
5
|
import '@backstage/integration-react';
|
|
@@ -29,4 +29,4 @@ const ImportPage = () => {
|
|
|
29
29
|
};
|
|
30
30
|
|
|
31
31
|
export { ImportPage };
|
|
32
|
-
//# sourceMappingURL=index-
|
|
32
|
+
//# sourceMappingURL=index-ebaa1caf.esm.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index-
|
|
1
|
+
{"version":3,"file":"index-ebaa1caf.esm.js","sources":["../../src/components/ImportPage/ImportPage.tsx"],"sourcesContent":["/*\n * Copyright 2020 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport React from 'react';\nimport { useOutlet } from 'react-router-dom';\nimport { DefaultImportPage } from '../DefaultImportPage';\n\n/**\n * The whole catalog import page.\n *\n * @public\n */\nexport const ImportPage = () => {\n const outlet = useOutlet();\n\n return outlet || <DefaultImportPage />;\n};\n"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;AAyBO,MAAM,aAAa,MAAM;AAC9B,EAAA,MAAM,SAAS,SAAU,EAAA,CAAA;AAEzB,EAAO,OAAA,MAAA,wCAAW,iBAAkB,EAAA,IAAA,CAAA,CAAA;AACtC;;;;"}
|
package/dist/index.esm.js
CHANGED
|
@@ -327,7 +327,7 @@ const catalogImportPlugin = createPlugin({
|
|
|
327
327
|
const CatalogImportPage = catalogImportPlugin.provide(
|
|
328
328
|
createRoutableExtension({
|
|
329
329
|
name: "CatalogImportPage",
|
|
330
|
-
component: () => import('./esm/index-
|
|
330
|
+
component: () => import('./esm/index-ebaa1caf.esm.js').then((m) => m.ImportPage),
|
|
331
331
|
mountPoint: rootRouteRef
|
|
332
332
|
})
|
|
333
333
|
);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-import",
|
|
3
3
|
"description": "A Backstage plugin the helps you import entities into your catalog",
|
|
4
|
-
"version": "0.9.2
|
|
4
|
+
"version": "0.9.2",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -32,16 +32,16 @@
|
|
|
32
32
|
"clean": "backstage-cli package clean"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@backstage/catalog-client": "^1.2.0
|
|
36
|
-
"@backstage/catalog-model": "^1.1.4
|
|
37
|
-
"@backstage/config": "^1.0.5
|
|
38
|
-
"@backstage/core-components": "^0.12.1
|
|
39
|
-
"@backstage/core-plugin-api": "^1.2.0
|
|
40
|
-
"@backstage/errors": "^1.1.4
|
|
41
|
-
"@backstage/integration": "^1.4.1
|
|
42
|
-
"@backstage/integration-react": "^1.1.7
|
|
43
|
-
"@backstage/plugin-catalog-common": "^1.0.9
|
|
44
|
-
"@backstage/plugin-catalog-react": "^1.2.2
|
|
35
|
+
"@backstage/catalog-client": "^1.2.0",
|
|
36
|
+
"@backstage/catalog-model": "^1.1.4",
|
|
37
|
+
"@backstage/config": "^1.0.5",
|
|
38
|
+
"@backstage/core-components": "^0.12.1",
|
|
39
|
+
"@backstage/core-plugin-api": "^1.2.0",
|
|
40
|
+
"@backstage/errors": "^1.1.4",
|
|
41
|
+
"@backstage/integration": "^1.4.1",
|
|
42
|
+
"@backstage/integration-react": "^1.1.7",
|
|
43
|
+
"@backstage/plugin-catalog-common": "^1.0.9",
|
|
44
|
+
"@backstage/plugin-catalog-react": "^1.2.2",
|
|
45
45
|
"@material-ui/core": "^4.12.2",
|
|
46
46
|
"@material-ui/icons": "^4.9.1",
|
|
47
47
|
"@material-ui/lab": "4.0.0-alpha.57",
|
|
@@ -56,13 +56,13 @@
|
|
|
56
56
|
"peerDependencies": {
|
|
57
57
|
"@types/react": "^16.13.1 || ^17.0.0",
|
|
58
58
|
"react": "^16.13.1 || ^17.0.0",
|
|
59
|
-
"react-router": "6.0.0-beta.0 || ^6.3.0"
|
|
59
|
+
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@backstage/cli": "^0.
|
|
63
|
-
"@backstage/core-app-api": "^1.
|
|
64
|
-
"@backstage/dev-utils": "^1.0.9
|
|
65
|
-
"@backstage/test-utils": "^1.2.3
|
|
62
|
+
"@backstage/cli": "^0.22.0",
|
|
63
|
+
"@backstage/core-app-api": "^1.3.0",
|
|
64
|
+
"@backstage/dev-utils": "^1.0.9",
|
|
65
|
+
"@backstage/test-utils": "^1.2.3",
|
|
66
66
|
"@testing-library/jest-dom": "^5.10.1",
|
|
67
67
|
"@testing-library/react": "^12.1.3",
|
|
68
68
|
"@testing-library/react-hooks": "^8.0.0",
|