@backstage/plugin-catalog-react 1.1.3-next.1 → 1.1.4-next.0
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 +34 -0
- package/alpha/package.json +1 -1
- package/dist/index.alpha.d.ts +4 -4
- package/dist/index.beta.d.ts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.esm.js +3 -8
- package/dist/index.esm.js.map +1 -1
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-react
|
|
2
2
|
|
|
3
|
+
## 1.1.4-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- ef9ab322de: Minor API signatures cleanup
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/core-plugin-api@1.0.6-next.0
|
|
10
|
+
- @backstage/core-components@0.11.1-next.0
|
|
11
|
+
- @backstage/catalog-client@1.0.5-next.0
|
|
12
|
+
- @backstage/integration@1.3.1-next.0
|
|
13
|
+
- @backstage/plugin-permission-common@0.6.4-next.0
|
|
14
|
+
- @backstage/plugin-permission-react@0.4.5-next.0
|
|
15
|
+
- @backstage/plugin-catalog-common@1.0.6-next.0
|
|
16
|
+
|
|
17
|
+
## 1.1.3
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- 44e691a7f9: Modify description column to not use auto width.
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @backstage/integration@1.3.0
|
|
24
|
+
- @backstage/core-components@0.11.0
|
|
25
|
+
- @backstage/core-plugin-api@1.0.5
|
|
26
|
+
- @backstage/plugin-catalog-common@1.0.5
|
|
27
|
+
- @backstage/plugin-permission-react@0.4.4
|
|
28
|
+
|
|
29
|
+
## 1.1.3-next.2
|
|
30
|
+
|
|
31
|
+
### Patch Changes
|
|
32
|
+
|
|
33
|
+
- 44e691a7f9: Modify description column to not use auto width.
|
|
34
|
+
- Updated dependencies
|
|
35
|
+
- @backstage/core-components@0.11.0-next.2
|
|
36
|
+
|
|
3
37
|
## 1.1.3-next.1
|
|
4
38
|
|
|
5
39
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/index.alpha.d.ts
CHANGED
|
@@ -109,13 +109,13 @@ export declare const columnFactories: Readonly<{
|
|
|
109
109
|
createEntityRefColumn<T extends Entity>(options: {
|
|
110
110
|
defaultKind?: string;
|
|
111
111
|
}): TableColumn<T>;
|
|
112
|
-
createEntityRelationColumn<T_1 extends Entity>(
|
|
112
|
+
createEntityRelationColumn<T_1 extends Entity>(options: {
|
|
113
113
|
title: string;
|
|
114
114
|
relation: string;
|
|
115
|
-
defaultKind?: string
|
|
115
|
+
defaultKind?: string;
|
|
116
116
|
filter?: {
|
|
117
117
|
kind: string;
|
|
118
|
-
}
|
|
118
|
+
};
|
|
119
119
|
}): TableColumn<T_1>;
|
|
120
120
|
createOwnerColumn<T_2 extends Entity>(): TableColumn<T_2>;
|
|
121
121
|
createDomainColumn<T_3 extends Entity>(): TableColumn<T_3>;
|
|
@@ -387,7 +387,7 @@ export declare const EntityTable: {
|
|
|
387
387
|
createEntityRefColumn<T_1 extends Entity>(options: {
|
|
388
388
|
defaultKind?: string | undefined;
|
|
389
389
|
}): TableColumn<T_1>;
|
|
390
|
-
createEntityRelationColumn<T_2 extends Entity>(
|
|
390
|
+
createEntityRelationColumn<T_2 extends Entity>(options: {
|
|
391
391
|
title: string;
|
|
392
392
|
relation: string;
|
|
393
393
|
defaultKind?: string | undefined;
|
package/dist/index.beta.d.ts
CHANGED
|
@@ -109,13 +109,13 @@ export declare const columnFactories: Readonly<{
|
|
|
109
109
|
createEntityRefColumn<T extends Entity>(options: {
|
|
110
110
|
defaultKind?: string;
|
|
111
111
|
}): TableColumn<T>;
|
|
112
|
-
createEntityRelationColumn<T_1 extends Entity>(
|
|
112
|
+
createEntityRelationColumn<T_1 extends Entity>(options: {
|
|
113
113
|
title: string;
|
|
114
114
|
relation: string;
|
|
115
|
-
defaultKind?: string
|
|
115
|
+
defaultKind?: string;
|
|
116
116
|
filter?: {
|
|
117
117
|
kind: string;
|
|
118
|
-
}
|
|
118
|
+
};
|
|
119
119
|
}): TableColumn<T_1>;
|
|
120
120
|
createOwnerColumn<T_2 extends Entity>(): TableColumn<T_2>;
|
|
121
121
|
createDomainColumn<T_3 extends Entity>(): TableColumn<T_3>;
|
|
@@ -387,7 +387,7 @@ export declare const EntityTable: {
|
|
|
387
387
|
createEntityRefColumn<T_1 extends Entity>(options: {
|
|
388
388
|
defaultKind?: string | undefined;
|
|
389
389
|
}): TableColumn<T_1>;
|
|
390
|
-
createEntityRelationColumn<T_2 extends Entity>(
|
|
390
|
+
createEntityRelationColumn<T_2 extends Entity>(options: {
|
|
391
391
|
title: string;
|
|
392
392
|
relation: string;
|
|
393
393
|
defaultKind?: string | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -109,13 +109,13 @@ export declare const columnFactories: Readonly<{
|
|
|
109
109
|
createEntityRefColumn<T extends Entity>(options: {
|
|
110
110
|
defaultKind?: string;
|
|
111
111
|
}): TableColumn<T>;
|
|
112
|
-
createEntityRelationColumn<T_1 extends Entity>(
|
|
112
|
+
createEntityRelationColumn<T_1 extends Entity>(options: {
|
|
113
113
|
title: string;
|
|
114
114
|
relation: string;
|
|
115
|
-
defaultKind?: string
|
|
115
|
+
defaultKind?: string;
|
|
116
116
|
filter?: {
|
|
117
117
|
kind: string;
|
|
118
|
-
}
|
|
118
|
+
};
|
|
119
119
|
}): TableColumn<T_1>;
|
|
120
120
|
createOwnerColumn<T_2 extends Entity>(): TableColumn<T_2>;
|
|
121
121
|
createDomainColumn<T_3 extends Entity>(): TableColumn<T_3>;
|
|
@@ -387,7 +387,7 @@ export declare const EntityTable: {
|
|
|
387
387
|
createEntityRefColumn<T_1 extends Entity>(options: {
|
|
388
388
|
defaultKind?: string | undefined;
|
|
389
389
|
}): TableColumn<T_1>;
|
|
390
|
-
createEntityRelationColumn<T_2 extends Entity>(
|
|
390
|
+
createEntityRelationColumn<T_2 extends Entity>(options: {
|
|
391
391
|
title: string;
|
|
392
392
|
relation: string;
|
|
393
393
|
defaultKind?: string | undefined;
|
package/dist/index.esm.js
CHANGED
|
@@ -1040,12 +1040,8 @@ const columnFactories = Object.freeze({
|
|
|
1040
1040
|
}
|
|
1041
1041
|
};
|
|
1042
1042
|
},
|
|
1043
|
-
createEntityRelationColumn({
|
|
1044
|
-
title,
|
|
1045
|
-
relation,
|
|
1046
|
-
defaultKind,
|
|
1047
|
-
filter: entityFilter
|
|
1048
|
-
}) {
|
|
1043
|
+
createEntityRelationColumn(options) {
|
|
1044
|
+
const { title, relation, defaultKind, filter: entityFilter } = options;
|
|
1049
1045
|
function getRelations(entity) {
|
|
1050
1046
|
return getEntityRelations(entity, relation, entityFilter);
|
|
1051
1047
|
}
|
|
@@ -1103,8 +1099,7 @@ const columnFactories = Object.freeze({
|
|
|
1103
1099
|
text: entity.metadata.description,
|
|
1104
1100
|
placement: "bottom-start",
|
|
1105
1101
|
line: 2
|
|
1106
|
-
})
|
|
1107
|
-
width: "auto"
|
|
1102
|
+
})
|
|
1108
1103
|
};
|
|
1109
1104
|
},
|
|
1110
1105
|
createSpecLifecycleColumn() {
|