@backstage/plugin-catalog-import 0.9.2-next.2 → 0.9.2-next.4

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,38 @@
1
1
  # @backstage/plugin-catalog-import
2
2
 
3
+ ## 0.9.2-next.4
4
+
5
+ ### Patch Changes
6
+
7
+ - 2e701b3796: Internal refactor to use `react-router-dom` rather than `react-router`.
8
+ - Updated dependencies
9
+ - @backstage/core-components@0.12.1-next.4
10
+ - @backstage/plugin-catalog-react@1.2.2-next.4
11
+ - @backstage/catalog-client@1.2.0-next.1
12
+ - @backstage/catalog-model@1.1.4-next.1
13
+ - @backstage/config@1.0.5-next.1
14
+ - @backstage/core-plugin-api@1.2.0-next.2
15
+ - @backstage/errors@1.1.4-next.1
16
+ - @backstage/integration@1.4.1-next.1
17
+ - @backstage/integration-react@1.1.7-next.4
18
+ - @backstage/plugin-catalog-common@1.0.9-next.3
19
+
20
+ ## 0.9.2-next.3
21
+
22
+ ### Patch Changes
23
+
24
+ - Updated dependencies
25
+ - @backstage/core-components@0.12.1-next.3
26
+ - @backstage/catalog-client@1.2.0-next.1
27
+ - @backstage/catalog-model@1.1.4-next.1
28
+ - @backstage/config@1.0.5-next.1
29
+ - @backstage/core-plugin-api@1.2.0-next.2
30
+ - @backstage/errors@1.1.4-next.1
31
+ - @backstage/integration@1.4.1-next.1
32
+ - @backstage/integration-react@1.1.7-next.3
33
+ - @backstage/plugin-catalog-common@1.0.9-next.2
34
+ - @backstage/plugin-catalog-react@1.2.2-next.3
35
+
3
36
  ## 0.9.2-next.2
4
37
 
5
38
  ### 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-b494239c.esm.js.map
32
+ //# sourceMappingURL=index-ebaa1caf.esm.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index-b494239c.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';\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;;;;"}
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-b494239c.esm.js').then((m) => m.ImportPage),
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-next.2",
4
+ "version": "0.9.2-next.4",
5
5
  "main": "dist/index.esm.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -35,13 +35,13 @@
35
35
  "@backstage/catalog-client": "^1.2.0-next.1",
36
36
  "@backstage/catalog-model": "^1.1.4-next.1",
37
37
  "@backstage/config": "^1.0.5-next.1",
38
- "@backstage/core-components": "^0.12.1-next.2",
38
+ "@backstage/core-components": "^0.12.1-next.4",
39
39
  "@backstage/core-plugin-api": "^1.2.0-next.2",
40
40
  "@backstage/errors": "^1.1.4-next.1",
41
41
  "@backstage/integration": "^1.4.1-next.1",
42
- "@backstage/integration-react": "^1.1.7-next.2",
43
- "@backstage/plugin-catalog-common": "^1.0.9-next.2",
44
- "@backstage/plugin-catalog-react": "^1.2.2-next.2",
42
+ "@backstage/integration-react": "^1.1.7-next.4",
43
+ "@backstage/plugin-catalog-common": "^1.0.9-next.3",
44
+ "@backstage/plugin-catalog-react": "^1.2.2-next.4",
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.21.2-next.2",
63
- "@backstage/core-app-api": "^1.2.1-next.2",
64
- "@backstage/dev-utils": "^1.0.9-next.2",
65
- "@backstage/test-utils": "^1.2.3-next.2",
62
+ "@backstage/cli": "^0.22.0-next.4",
63
+ "@backstage/core-app-api": "^1.3.0-next.4",
64
+ "@backstage/dev-utils": "^1.0.9-next.4",
65
+ "@backstage/test-utils": "^1.2.3-next.4",
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",