@backstage/plugin-catalog-react 0.0.0-nightly-20230403021721 → 0.0.0-nightly-20230404022000

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,25 +1,26 @@
1
1
  # @backstage/plugin-catalog-react
2
2
 
3
- ## 0.0.0-nightly-20230403021721
3
+ ## 0.0.0-nightly-20230404022000
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - 81bee24c5de: Fixed bug in catalog filters where you could not click on the text to select a value.
7
8
  - 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
8
9
  - 2898b6c8d52: Minor type tweaks for TypeScript 5.0
9
10
  - e0c6e8b9c3c: Update peer dependencies
10
11
  - Updated dependencies
11
- - @backstage/core-components@0.0.0-nightly-20230403021721
12
- - @backstage/plugin-permission-common@0.0.0-nightly-20230403021721
13
- - @backstage/core-plugin-api@0.0.0-nightly-20230403021721
14
- - @backstage/plugin-permission-react@0.0.0-nightly-20230403021721
15
- - @backstage/version-bridge@0.0.0-nightly-20230403021721
16
- - @backstage/integration@0.0.0-nightly-20230403021721
17
- - @backstage/theme@0.0.0-nightly-20230403021721
12
+ - @backstage/core-components@0.0.0-nightly-20230404022000
13
+ - @backstage/plugin-permission-common@0.0.0-nightly-20230404022000
14
+ - @backstage/core-plugin-api@0.0.0-nightly-20230404022000
15
+ - @backstage/plugin-permission-react@0.0.0-nightly-20230404022000
16
+ - @backstage/version-bridge@0.0.0-nightly-20230404022000
17
+ - @backstage/integration@0.0.0-nightly-20230404022000
18
+ - @backstage/theme@0.0.0-nightly-20230404022000
18
19
  - @backstage/catalog-client@1.4.0
19
20
  - @backstage/catalog-model@1.2.1
20
21
  - @backstage/errors@1.1.5
21
22
  - @backstage/types@1.0.2
22
- - @backstage/plugin-catalog-common@0.0.0-nightly-20230403021721
23
+ - @backstage/plugin-catalog-common@0.0.0-nightly-20230404022000
23
24
 
24
25
  ## 1.4.1-next.1
25
26
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-react",
3
- "version": "0.0.0-nightly-20230403021721",
3
+ "version": "0.0.0-nightly-20230404022000",
4
4
  "main": "../dist/alpha.esm.js",
5
5
  "module": "../dist/alpha.esm.js",
6
6
  "types": "../dist/alpha.d.ts"
package/dist/index.esm.js CHANGED
@@ -919,6 +919,7 @@ const EntityLifecyclePicker = (props) => {
919
919
  checked: selected
920
920
  }
921
921
  ),
922
+ onClick: (event) => event.preventDefault(),
922
923
  label: option
923
924
  }
924
925
  ),
@@ -1005,6 +1006,7 @@ const EntityOwnerPicker = () => {
1005
1006
  checked: selected
1006
1007
  }
1007
1008
  ),
1009
+ onClick: (event) => event.preventDefault(),
1008
1010
  label: option
1009
1011
  }
1010
1012
  ),
@@ -1385,7 +1387,8 @@ const EntityAutocompletePickerOption = memo((props) => {
1385
1387
  FormControlLabel,
1386
1388
  {
1387
1389
  control: /* @__PURE__ */ React.createElement(OptionCheckbox, { selected }),
1388
- label
1390
+ label,
1391
+ onClick: (event) => event.preventDefault()
1389
1392
  }
1390
1393
  );
1391
1394
  });
@@ -2458,6 +2461,7 @@ const EntityProcessingStatusPicker = () => {
2458
2461
  checked: selected
2459
2462
  }
2460
2463
  ),
2464
+ onClick: (event) => event.preventDefault(),
2461
2465
  label: option
2462
2466
  }
2463
2467
  ),