@backstage/plugin-catalog-react 1.0.1 → 1.1.0-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,16 @@
1
1
  # @backstage/plugin-catalog-react
2
2
 
3
+ ## 1.1.0-next.0
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@1.2.0-next.0
13
+
3
14
  ## 1.0.1
4
15
 
5
16
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-react",
3
- "version": "1.0.1",
3
+ "version": "1.1.0-next.0",
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>[];