@backstage/plugin-catalog-react 1.0.1-next.3 → 1.1.0-next.1

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,56 @@
1
1
  # @backstage/plugin-catalog-react
2
2
 
3
+ ## 1.1.0-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 0418447669: Added menu parent role for menu items accessibility
8
+ - Updated dependencies
9
+ - @backstage/core-components@0.9.4-next.0
10
+ - @backstage/core-plugin-api@1.0.2-next.0
11
+ - @backstage/plugin-permission-react@0.4.1-next.0
12
+
13
+ ## 1.1.0-next.0
14
+
15
+ ### Minor Changes
16
+
17
+ - 4274844a8c: Use InfoCardVariants on custom cards variant attribute
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies
22
+ - @backstage/integration@1.2.0-next.0
23
+
24
+ ## 1.0.1
25
+
26
+ ### Patch Changes
27
+
28
+ - 0ffd88a90e: Prevent permissions with types other than `ResourcePermission<'catalog-entity'>` from being used with the `useEntityPermission` hook.
29
+ - 7c7919777e: build(deps-dev): bump `@testing-library/react-hooks` from 7.0.2 to 8.0.0
30
+ - 24254fd433: build(deps): bump `@testing-library/user-event` from 13.5.0 to 14.0.0
31
+ - 4af82967f4: Decouple tags picker from backend entities
32
+
33
+ `EntityTagPicker` fetches all the tags independently and it doesn't require all the entities to be available client side.
34
+
35
+ - 4be0d1e777: Changed catalog filter components to only pay attention to query parameters relevant to the component.
36
+ - 5d5fdbe541: Columns in CatalogTable now change depending on the entity kind, ensuring only relevant columns are displayed.
37
+ - 863e7bcb7b: Updated the "unregister location" behavior in `UnregisterEntityDialog`. Removed unnecessary entity deletion requests that were sent after successfully deleting a location.
38
+ - 37b04b5a5e: Removed broken link from Labels section of entity inspector.
39
+ - a496cee4d1: Add support for string refs to the `EntityRefLinks` component
40
+ - d34900af81: Added a new `NextScaffolderRouter` which will eventually replace the exiting router
41
+ - 99063c39ae: Minor API report cleanup
42
+ - 4431873583: Update `usePermission` usage.
43
+ - Updated dependencies
44
+ - @backstage/integration@1.1.0
45
+ - @backstage/plugin-permission-react@0.4.0
46
+ - @backstage/plugin-permission-common@0.6.0
47
+ - @backstage/catalog-model@1.0.1
48
+ - @backstage/core-components@0.9.3
49
+ - @backstage/core-plugin-api@1.0.1
50
+ - @backstage/version-bridge@1.0.1
51
+ - @backstage/plugin-catalog-common@1.0.1
52
+ - @backstage/catalog-client@1.0.1
53
+
3
54
  ## 1.0.1-next.3
4
55
 
5
56
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-react",
3
- "version": "1.0.1-next.3",
3
+ "version": "1.1.0-next.1",
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>[];
package/dist/index.esm.js CHANGED
@@ -2025,7 +2025,8 @@ const UserListPicker = (props) => {
2025
2025
  className: classes.groupWrapper
2026
2026
  }, /* @__PURE__ */ React.createElement(List, {
2027
2027
  disablePadding: true,
2028
- dense: true
2028
+ dense: true,
2029
+ role: "menu"
2029
2030
  }, group.items.map((item) => {
2030
2031
  var _a2, _b;
2031
2032
  return /* @__PURE__ */ React.createElement(MenuItem, {