@backstage/plugin-catalog-react 0.0.0-nightly-20230403021721 → 0.0.0-nightly-20230405021251
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 +31 -10
- package/alpha/package.json +1 -1
- package/dist/index.esm.js +5 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +16 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,25 +1,46 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-react
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20230405021251
|
|
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-
|
|
12
|
-
- @backstage/
|
|
13
|
-
- @backstage/
|
|
14
|
-
- @backstage/
|
|
15
|
-
- @backstage/
|
|
16
|
-
- @backstage/
|
|
17
|
-
- @backstage/
|
|
18
|
-
- @backstage/
|
|
12
|
+
- @backstage/core-components@0.0.0-nightly-20230405021251
|
|
13
|
+
- @backstage/catalog-client@0.0.0-nightly-20230405021251
|
|
14
|
+
- @backstage/plugin-permission-common@0.0.0-nightly-20230405021251
|
|
15
|
+
- @backstage/catalog-model@0.0.0-nightly-20230405021251
|
|
16
|
+
- @backstage/core-plugin-api@0.0.0-nightly-20230405021251
|
|
17
|
+
- @backstage/plugin-permission-react@0.0.0-nightly-20230405021251
|
|
18
|
+
- @backstage/version-bridge@0.0.0-nightly-20230405021251
|
|
19
|
+
- @backstage/integration@0.0.0-nightly-20230405021251
|
|
20
|
+
- @backstage/theme@0.0.0-nightly-20230405021251
|
|
21
|
+
- @backstage/errors@1.1.5
|
|
22
|
+
- @backstage/types@1.0.2
|
|
23
|
+
- @backstage/plugin-catalog-common@0.0.0-nightly-20230405021251
|
|
24
|
+
|
|
25
|
+
## 1.4.1-next.2
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- 81bee24c5de: Fixed bug in catalog filters where you could not click on the text to select a value.
|
|
30
|
+
- 2898b6c8d52: Minor type tweaks for TypeScript 5.0
|
|
31
|
+
- Updated dependencies
|
|
32
|
+
- @backstage/catalog-client@1.4.1-next.0
|
|
33
|
+
- @backstage/core-components@0.12.6-next.2
|
|
34
|
+
- @backstage/core-plugin-api@1.5.1-next.1
|
|
19
35
|
- @backstage/catalog-model@1.2.1
|
|
20
36
|
- @backstage/errors@1.1.5
|
|
37
|
+
- @backstage/integration@1.4.4-next.0
|
|
38
|
+
- @backstage/theme@0.2.19-next.0
|
|
21
39
|
- @backstage/types@1.0.2
|
|
22
|
-
- @backstage/
|
|
40
|
+
- @backstage/version-bridge@1.0.4-next.0
|
|
41
|
+
- @backstage/plugin-catalog-common@1.0.13-next.0
|
|
42
|
+
- @backstage/plugin-permission-common@0.7.5-next.0
|
|
43
|
+
- @backstage/plugin-permission-react@0.4.12-next.1
|
|
23
44
|
|
|
24
45
|
## 1.4.1-next.1
|
|
25
46
|
|
package/alpha/package.json
CHANGED
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
|
),
|