@backstage/dev-utils 1.1.8-next.1 → 1.1.8

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,33 @@
1
1
  # @backstage/dev-utils
2
2
 
3
+ ## 1.1.8
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/core-components@0.17.0
9
+ - @backstage/core-plugin-api@1.10.5
10
+ - @backstage/core-app-api@1.16.0
11
+ - @backstage/plugin-catalog-react@1.16.0
12
+ - @backstage/app-defaults@1.6.0
13
+ - @backstage/integration-react@1.2.5
14
+ - @backstage/catalog-model@1.7.3
15
+ - @backstage/theme@0.6.4
16
+
17
+ ## 1.1.8-next.2
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies
22
+ - @backstage/core-app-api@1.16.0-next.0
23
+ - @backstage/plugin-catalog-react@1.16.0-next.2
24
+ - @backstage/core-components@0.16.5-next.1
25
+ - @backstage/app-defaults@1.6.0-next.1
26
+ - @backstage/catalog-model@1.7.3
27
+ - @backstage/core-plugin-api@1.10.4
28
+ - @backstage/integration-react@1.2.5-next.0
29
+ - @backstage/theme@0.6.4
30
+
3
31
  ## 1.1.8-next.1
4
32
 
5
33
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { Entity } from '@backstage/catalog-model';
3
2
  import { GridProps } from '@material-ui/core/Grid';
4
3
  import React, { ReactNode, ComponentType, PropsWithChildren } from 'react';
@@ -7,7 +6,7 @@ import { SignInProviderConfig } from '@backstage/core-components';
7
6
  import { TranslationResource } from '@backstage/core-plugin-api/alpha';
8
7
 
9
8
  /** @public */
10
- declare const EntityGridItem: (props: Omit<GridProps, 'item' | 'container'> & {
9
+ declare const EntityGridItem: (props: Omit<GridProps, "item" | "container"> & {
11
10
  entity: Entity;
12
11
  }) => JSX.Element;
13
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/dev-utils",
3
- "version": "1.1.8-next.1",
3
+ "version": "1.1.8",
4
4
  "description": "Utilities for developing Backstage plugins.",
5
5
  "backstage": {
6
6
  "role": "web-library"
@@ -36,21 +36,21 @@
36
36
  "test": "backstage-cli package test"
37
37
  },
38
38
  "dependencies": {
39
- "@backstage/app-defaults": "1.5.18-next.0",
40
- "@backstage/catalog-model": "1.7.3",
41
- "@backstage/core-app-api": "1.15.5",
42
- "@backstage/core-components": "0.16.5-next.0",
43
- "@backstage/core-plugin-api": "1.10.4",
44
- "@backstage/integration-react": "1.2.4",
45
- "@backstage/plugin-catalog-react": "1.16.0-next.1",
46
- "@backstage/theme": "0.6.4",
39
+ "@backstage/app-defaults": "^1.6.0",
40
+ "@backstage/catalog-model": "^1.7.3",
41
+ "@backstage/core-app-api": "^1.16.0",
42
+ "@backstage/core-components": "^0.17.0",
43
+ "@backstage/core-plugin-api": "^1.10.5",
44
+ "@backstage/integration-react": "^1.2.5",
45
+ "@backstage/plugin-catalog-react": "^1.16.0",
46
+ "@backstage/theme": "^0.6.4",
47
47
  "@material-ui/core": "^4.12.2",
48
48
  "@material-ui/icons": "^4.9.1",
49
49
  "react-use": "^17.2.4"
50
50
  },
51
51
  "devDependencies": {
52
- "@backstage/cli": "0.30.1-next.0",
53
- "@backstage/test-utils": "1.7.5",
52
+ "@backstage/cli": "^0.31.0",
53
+ "@backstage/test-utils": "^1.7.6",
54
54
  "@testing-library/dom": "^10.0.0",
55
55
  "@testing-library/jest-dom": "^6.0.0",
56
56
  "@testing-library/react": "^16.0.0",
@@ -72,12 +72,5 @@
72
72
  "optional": true
73
73
  }
74
74
  },
75
- "typesVersions": {
76
- "*": {
77
- "index": [
78
- "dist/index.d.ts"
79
- ]
80
- }
81
- },
82
75
  "module": "./dist/index.esm.js"
83
76
  }