@backstage/plugin-catalog-react 0.0.0-nightly-20220417023605 → 0.0.0-nightly-20220426024700

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,6 +1,17 @@
1
1
  # @backstage/plugin-catalog-react
2
2
 
3
- ## 0.0.0-nightly-20220417023605
3
+ ## 0.0.0-nightly-20220426024700
4
+
5
+ ### Minor Changes
6
+
7
+ - 4274844a8c: Use InfoCardVariants on custom cards variant attribute
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+ - @backstage/integration@0.0.0-nightly-20220426024700
13
+
14
+ ## 1.0.1
4
15
 
5
16
  ### Patch Changes
6
17
 
@@ -20,15 +31,15 @@
20
31
  - 99063c39ae: Minor API report cleanup
21
32
  - 4431873583: Update `usePermission` usage.
22
33
  - Updated dependencies
23
- - @backstage/integration@0.0.0-nightly-20220417023605
24
- - @backstage/plugin-permission-react@0.0.0-nightly-20220417023605
25
- - @backstage/plugin-permission-common@0.0.0-nightly-20220417023605
26
- - @backstage/catalog-model@0.0.0-nightly-20220417023605
27
- - @backstage/core-components@0.0.0-nightly-20220417023605
28
- - @backstage/core-plugin-api@0.0.0-nightly-20220417023605
29
- - @backstage/version-bridge@0.0.0-nightly-20220417023605
30
- - @backstage/plugin-catalog-common@0.0.0-nightly-20220417023605
31
- - @backstage/catalog-client@0.0.0-nightly-20220417023605
34
+ - @backstage/integration@1.1.0
35
+ - @backstage/plugin-permission-react@0.4.0
36
+ - @backstage/plugin-permission-common@0.6.0
37
+ - @backstage/catalog-model@1.0.1
38
+ - @backstage/core-components@0.9.3
39
+ - @backstage/core-plugin-api@1.0.1
40
+ - @backstage/version-bridge@1.0.1
41
+ - @backstage/plugin-catalog-common@1.0.1
42
+ - @backstage/catalog-client@1.0.1
32
43
 
33
44
  ## 1.0.1-next.3
34
45
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-react",
3
- "version": "0.0.0-nightly-20220417023605",
3
+ "version": "0.0.0-nightly-20220426024700",
4
4
  "main": "../dist/index.esm.js",
5
5
  "types": "../dist/index.alpha.d.ts"
6
6
  }
@@ -14,6 +14,7 @@ import { ComponentProps } from 'react';
14
14
  import { CompoundEntityRef } from '@backstage/catalog-model';
15
15
  import { Entity } from '@backstage/catalog-model';
16
16
  import { IconButton } from '@material-ui/core';
17
+ import { InfoCardVariants } from '@backstage/core-components';
17
18
  import { LinkProps } from '@backstage/core-components';
18
19
  import { Observable } from '@backstage/types';
19
20
  import { Overrides } from '@material-ui/core/styles/overrides';
@@ -383,7 +384,7 @@ export declare const EntityTable: {
383
384
  */
384
385
  export declare interface EntityTableProps<T extends Entity> {
385
386
  title: string;
386
- variant?: 'gridItem';
387
+ variant?: InfoCardVariants;
387
388
  entities: T[];
388
389
  emptyContent?: ReactNode;
389
390
  columns: TableColumn<T>[];
@@ -14,6 +14,7 @@ import { ComponentProps } from 'react';
14
14
  import { CompoundEntityRef } from '@backstage/catalog-model';
15
15
  import { Entity } from '@backstage/catalog-model';
16
16
  import { IconButton } from '@material-ui/core';
17
+ import { InfoCardVariants } from '@backstage/core-components';
17
18
  import { LinkProps } from '@backstage/core-components';
18
19
  import { Observable } from '@backstage/types';
19
20
  import { Overrides } from '@material-ui/core/styles/overrides';
@@ -383,7 +384,7 @@ export declare const EntityTable: {
383
384
  */
384
385
  export declare interface EntityTableProps<T extends Entity> {
385
386
  title: string;
386
- variant?: 'gridItem';
387
+ variant?: InfoCardVariants;
387
388
  entities: T[];
388
389
  emptyContent?: ReactNode;
389
390
  columns: TableColumn<T>[];
package/dist/index.d.ts CHANGED
@@ -14,6 +14,7 @@ import { ComponentProps } from 'react';
14
14
  import { CompoundEntityRef } from '@backstage/catalog-model';
15
15
  import { Entity } from '@backstage/catalog-model';
16
16
  import { IconButton } from '@material-ui/core';
17
+ import { InfoCardVariants } from '@backstage/core-components';
17
18
  import { LinkProps } from '@backstage/core-components';
18
19
  import { Observable } from '@backstage/types';
19
20
  import { Overrides } from '@material-ui/core/styles/overrides';
@@ -383,7 +384,7 @@ export declare const EntityTable: {
383
384
  */
384
385
  export declare interface EntityTableProps<T extends Entity> {
385
386
  title: string;
386
- variant?: 'gridItem';
387
+ variant?: InfoCardVariants;
387
388
  entities: T[];
388
389
  emptyContent?: ReactNode;
389
390
  columns: TableColumn<T>[];