@backstage/plugin-catalog-react 1.4.0-next.0 → 1.4.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,24 @@
1
1
  # @backstage/plugin-catalog-react
2
2
 
3
+ ## 1.4.0-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 24916d23494: Do not close `Autocomplete` powered multiple-selection filters when checking boxes
8
+ - Updated dependencies
9
+ - @backstage/core-components@0.12.5-next.1
10
+ - @backstage/errors@1.1.5-next.0
11
+ - @backstage/catalog-client@1.4.0-next.1
12
+ - @backstage/core-plugin-api@1.4.1-next.1
13
+ - @backstage/integration@1.4.3-next.0
14
+ - @backstage/plugin-permission-common@0.7.4-next.0
15
+ - @backstage/theme@0.2.18-next.0
16
+ - @backstage/catalog-model@1.2.1-next.1
17
+ - @backstage/types@1.0.2
18
+ - @backstage/version-bridge@1.0.3
19
+ - @backstage/plugin-catalog-common@1.0.12-next.1
20
+ - @backstage/plugin-permission-react@0.4.11-next.1
21
+
3
22
  ## 1.4.0-next.0
4
23
 
5
24
  ### Minor Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-react",
3
- "version": "1.4.0-next.0",
3
+ "version": "1.4.0-next.1",
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
@@ -976,6 +976,7 @@ const EntityLifecyclePicker = (props) => {
976
976
  Autocomplete,
977
977
  {
978
978
  multiple: true,
979
+ disableCloseOnSelect: true,
979
980
  options: availableLifecycles,
980
981
  value: selectedLifecycles,
981
982
  onChange: (_, value) => setSelectedLifecycles(value),
@@ -1061,6 +1062,7 @@ const EntityOwnerPicker = () => {
1061
1062
  Autocomplete,
1062
1063
  {
1063
1064
  multiple: true,
1065
+ disableCloseOnSelect: true,
1064
1066
  options: availableOwners,
1065
1067
  value: selectedOwners,
1066
1068
  onChange: (_, value) => setSelectedOwners(value),
@@ -1526,6 +1528,7 @@ function EntityAutocompletePicker(props) {
1526
1528
  Autocomplete,
1527
1529
  {
1528
1530
  multiple: true,
1531
+ disableCloseOnSelect: true,
1529
1532
  options: availableOptions,
1530
1533
  value: selectedOptions,
1531
1534
  onChange: (_event, options) => setSelectedOptions(options),
@@ -2507,6 +2510,7 @@ const EntityProcessingStatusPicker = () => {
2507
2510
  Autocomplete,
2508
2511
  {
2509
2512
  multiple: true,
2513
+ disableCloseOnSelect: true,
2510
2514
  options: availableAdvancedItems,
2511
2515
  value: selectedAdvancedItems,
2512
2516
  onChange: (_, value) => {