@backstage/plugin-catalog-react 0.0.0-nightly-20230226023329 → 0.0.0-nightly-20230228023039

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,6 @@
1
1
  # @backstage/plugin-catalog-react
2
2
 
3
- ## 0.0.0-nightly-20230226023329
3
+ ## 0.0.0-nightly-20230228023039
4
4
 
5
5
  ### Minor Changes
6
6
 
@@ -9,19 +9,20 @@
9
9
  ### Patch Changes
10
10
 
11
11
  - 928a12a9b3e: Internal refactor of `/alpha` exports.
12
- - Updated dependencies
13
- - @backstage/catalog-client@0.0.0-nightly-20230226023329
14
- - @backstage/core-components@0.0.0-nightly-20230226023329
15
- - @backstage/core-plugin-api@0.0.0-nightly-20230226023329
16
- - @backstage/catalog-model@0.0.0-nightly-20230226023329
17
- - @backstage/plugin-catalog-common@0.0.0-nightly-20230226023329
18
- - @backstage/integration@0.0.0-nightly-20230226023329
19
- - @backstage/plugin-permission-common@0.0.0-nightly-20230226023329
20
- - @backstage/errors@1.1.4
21
- - @backstage/theme@0.2.17
12
+ - 24916d23494: Do not close `Autocomplete` powered multiple-selection filters when checking boxes
13
+ - Updated dependencies
14
+ - @backstage/catalog-client@0.0.0-nightly-20230228023039
15
+ - @backstage/errors@0.0.0-nightly-20230228023039
16
+ - @backstage/core-components@0.0.0-nightly-20230228023039
17
+ - @backstage/core-plugin-api@0.0.0-nightly-20230228023039
18
+ - @backstage/catalog-model@0.0.0-nightly-20230228023039
19
+ - @backstage/plugin-catalog-common@0.0.0-nightly-20230228023039
20
+ - @backstage/integration@0.0.0-nightly-20230228023039
21
+ - @backstage/plugin-permission-common@0.0.0-nightly-20230228023039
22
+ - @backstage/theme@0.0.0-nightly-20230228023039
22
23
  - @backstage/types@1.0.2
23
24
  - @backstage/version-bridge@1.0.3
24
- - @backstage/plugin-permission-react@0.0.0-nightly-20230226023329
25
+ - @backstage/plugin-permission-react@0.0.0-nightly-20230228023039
25
26
 
26
27
  ## 1.4.0-next.0
27
28
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-react",
3
- "version": "0.0.0-nightly-20230226023329",
3
+ "version": "0.0.0-nightly-20230228023039",
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) => {