@backstage/plugin-org 0.6.45-next.1 → 0.6.45
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 +21 -0
- package/dist/alpha.d.ts +28 -6
- package/dist/alpha.esm.js +44 -12
- package/dist/alpha.esm.js.map +1 -1
- package/dist/package.json.esm.js +1 -1
- package/package.json +17 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @backstage/plugin-org
|
|
2
2
|
|
|
3
|
+
## 0.6.45
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8b7351f: Add `initialRelationAggregation` and `showAggregateMembersToggle` options to `EntityMembersListCard` as well to `EntityOwnershipCard`
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/plugin-catalog-react@1.21.2
|
|
10
|
+
- @backstage/core-components@0.18.2
|
|
11
|
+
- @backstage/frontend-plugin-api@0.12.1
|
|
12
|
+
- @backstage/core-compat-api@0.5.3
|
|
13
|
+
- @backstage/core-plugin-api@1.11.1
|
|
14
|
+
- @backstage/plugin-catalog-common@1.1.6
|
|
15
|
+
|
|
16
|
+
## 0.6.45-next.2
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- 8b7351f: Add `initialRelationAggregation` and `showAggregateMembersToggle` options to `EntityMembersListCard` as well to `EntityOwnershipCard`
|
|
21
|
+
- Updated dependencies
|
|
22
|
+
- @backstage/core-components@0.18.2-next.2
|
|
23
|
+
|
|
3
24
|
## 0.6.45-next.1
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
package/dist/alpha.d.ts
CHANGED
|
@@ -65,13 +65,17 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
65
65
|
};
|
|
66
66
|
}>;
|
|
67
67
|
"entity-card:org/members-list": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
68
|
-
kind: "entity-card";
|
|
69
|
-
name: "members-list";
|
|
70
68
|
config: {
|
|
69
|
+
initialRelationAggregation: "direct" | "aggregated" | undefined;
|
|
70
|
+
showAggregateMembersToggle: boolean | undefined;
|
|
71
|
+
} & {
|
|
71
72
|
filter: _backstage_plugin_catalog_react_alpha.EntityPredicate | undefined;
|
|
72
73
|
type: "content" | "summary" | "info" | undefined;
|
|
73
74
|
};
|
|
74
75
|
configInput: {
|
|
76
|
+
showAggregateMembersToggle?: boolean | undefined;
|
|
77
|
+
initialRelationAggregation?: "direct" | "aggregated" | undefined;
|
|
78
|
+
} & {
|
|
75
79
|
filter?: _backstage_plugin_catalog_react_alpha.EntityPredicate | undefined;
|
|
76
80
|
type?: "content" | "summary" | "info" | undefined;
|
|
77
81
|
};
|
|
@@ -82,7 +86,14 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
82
86
|
}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_plugin_catalog_react_alpha.EntityCardType, "catalog.entity-card-type", {
|
|
83
87
|
optional: true;
|
|
84
88
|
}>;
|
|
85
|
-
inputs: {
|
|
89
|
+
inputs: {
|
|
90
|
+
[x: string]: _backstage_frontend_plugin_api.ExtensionInput<_backstage_frontend_plugin_api.ExtensionDataRef, {
|
|
91
|
+
optional: boolean;
|
|
92
|
+
singleton: boolean;
|
|
93
|
+
}>;
|
|
94
|
+
};
|
|
95
|
+
kind: "entity-card";
|
|
96
|
+
name: "members-list";
|
|
86
97
|
params: {
|
|
87
98
|
loader: () => Promise<JSX.Element>;
|
|
88
99
|
filter?: string | _backstage_plugin_catalog_react_alpha.EntityPredicate | ((entity: _backstage_catalog_model.Entity) => boolean);
|
|
@@ -90,13 +101,17 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
90
101
|
};
|
|
91
102
|
}>;
|
|
92
103
|
"entity-card:org/ownership": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
93
|
-
kind: "entity-card";
|
|
94
|
-
name: "ownership";
|
|
95
104
|
config: {
|
|
105
|
+
initialRelationAggregation: "direct" | "aggregated" | undefined;
|
|
106
|
+
showAggregateMembersToggle: boolean | undefined;
|
|
107
|
+
} & {
|
|
96
108
|
filter: _backstage_plugin_catalog_react_alpha.EntityPredicate | undefined;
|
|
97
109
|
type: "content" | "summary" | "info" | undefined;
|
|
98
110
|
};
|
|
99
111
|
configInput: {
|
|
112
|
+
showAggregateMembersToggle?: boolean | undefined;
|
|
113
|
+
initialRelationAggregation?: "direct" | "aggregated" | undefined;
|
|
114
|
+
} & {
|
|
100
115
|
filter?: _backstage_plugin_catalog_react_alpha.EntityPredicate | undefined;
|
|
101
116
|
type?: "content" | "summary" | "info" | undefined;
|
|
102
117
|
};
|
|
@@ -107,7 +122,14 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
107
122
|
}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_plugin_catalog_react_alpha.EntityCardType, "catalog.entity-card-type", {
|
|
108
123
|
optional: true;
|
|
109
124
|
}>;
|
|
110
|
-
inputs: {
|
|
125
|
+
inputs: {
|
|
126
|
+
[x: string]: _backstage_frontend_plugin_api.ExtensionInput<_backstage_frontend_plugin_api.ExtensionDataRef, {
|
|
127
|
+
optional: boolean;
|
|
128
|
+
singleton: boolean;
|
|
129
|
+
}>;
|
|
130
|
+
};
|
|
131
|
+
kind: "entity-card";
|
|
132
|
+
name: "ownership";
|
|
111
133
|
params: {
|
|
112
134
|
loader: () => Promise<JSX.Element>;
|
|
113
135
|
filter?: string | _backstage_plugin_catalog_react_alpha.EntityPredicate | ((entity: _backstage_catalog_model.Entity) => boolean);
|
package/dist/alpha.esm.js
CHANGED
|
@@ -15,22 +15,54 @@ const EntityGroupProfileCard = EntityCardBlueprint.make({
|
|
|
15
15
|
)
|
|
16
16
|
}
|
|
17
17
|
});
|
|
18
|
-
const EntityMembersListCard = EntityCardBlueprint.
|
|
18
|
+
const EntityMembersListCard = EntityCardBlueprint.makeWithOverrides({
|
|
19
19
|
name: "members-list",
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
(
|
|
24
|
-
|
|
20
|
+
config: {
|
|
21
|
+
schema: {
|
|
22
|
+
initialRelationAggregation: (z) => z.enum(["direct", "aggregated"]).optional(),
|
|
23
|
+
showAggregateMembersToggle: (z) => z.boolean().optional()
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
factory(originalFactory, { config }) {
|
|
27
|
+
return originalFactory({
|
|
28
|
+
filter: { kind: "group" },
|
|
29
|
+
loader: async () => import('./components/Cards/Group/MembersList/MembersListCard.esm.js').then(
|
|
30
|
+
(m) => compatWrapper(
|
|
31
|
+
/* @__PURE__ */ jsx(
|
|
32
|
+
m.MembersListCard,
|
|
33
|
+
{
|
|
34
|
+
relationAggregation: config.initialRelationAggregation,
|
|
35
|
+
showAggregateMembersToggle: config.showAggregateMembersToggle
|
|
36
|
+
}
|
|
37
|
+
)
|
|
38
|
+
)
|
|
39
|
+
)
|
|
40
|
+
});
|
|
25
41
|
}
|
|
26
42
|
});
|
|
27
|
-
const EntityOwnershipCard = EntityCardBlueprint.
|
|
43
|
+
const EntityOwnershipCard = EntityCardBlueprint.makeWithOverrides({
|
|
28
44
|
name: "ownership",
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
(
|
|
33
|
-
|
|
45
|
+
config: {
|
|
46
|
+
schema: {
|
|
47
|
+
initialRelationAggregation: (z) => z.enum(["direct", "aggregated"]).optional(),
|
|
48
|
+
showAggregateMembersToggle: (z) => z.boolean().optional()
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
factory(originalFactory, { config }) {
|
|
52
|
+
return originalFactory({
|
|
53
|
+
filter: { kind: { $in: ["group", "user"] } },
|
|
54
|
+
loader: async () => import('./components/Cards/OwnershipCard/OwnershipCard.esm.js').then(
|
|
55
|
+
(m) => compatWrapper(
|
|
56
|
+
/* @__PURE__ */ jsx(
|
|
57
|
+
m.OwnershipCard,
|
|
58
|
+
{
|
|
59
|
+
relationAggregation: config.initialRelationAggregation,
|
|
60
|
+
hideRelationsToggle: config.showAggregateMembersToggle === void 0 ? void 0 : !config.showAggregateMembersToggle
|
|
61
|
+
}
|
|
62
|
+
)
|
|
63
|
+
)
|
|
64
|
+
)
|
|
65
|
+
});
|
|
34
66
|
}
|
|
35
67
|
});
|
|
36
68
|
const EntityUserProfileCard = EntityCardBlueprint.makeWithOverrides({
|
package/dist/alpha.esm.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"alpha.esm.js","sources":["../src/alpha.tsx"],"sourcesContent":["/*\n * Copyright 2023 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n compatWrapper,\n convertLegacyRouteRefs,\n} from '@backstage/core-compat-api';\nimport { createFrontendPlugin } from '@backstage/frontend-plugin-api';\nimport { catalogIndexRouteRef } from './routes';\nimport { EntityCardBlueprint } from '@backstage/plugin-catalog-react/alpha';\n\n/** @alpha */\nconst EntityGroupProfileCard = EntityCardBlueprint.make({\n name: 'group-profile',\n params: {\n type: 'info',\n filter: { kind: 'group' },\n loader: async () =>\n import('./components/Cards/Group/GroupProfile/GroupProfileCard').then(m =>\n compatWrapper(<m.GroupProfileCard />),\n ),\n },\n});\n\n/** @alpha */\nconst EntityMembersListCard = EntityCardBlueprint.
|
|
1
|
+
{"version":3,"file":"alpha.esm.js","sources":["../src/alpha.tsx"],"sourcesContent":["/*\n * Copyright 2023 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n compatWrapper,\n convertLegacyRouteRefs,\n} from '@backstage/core-compat-api';\nimport { createFrontendPlugin } from '@backstage/frontend-plugin-api';\nimport { catalogIndexRouteRef } from './routes';\nimport { EntityCardBlueprint } from '@backstage/plugin-catalog-react/alpha';\n\n/** @alpha */\nconst EntityGroupProfileCard = EntityCardBlueprint.make({\n name: 'group-profile',\n params: {\n type: 'info',\n filter: { kind: 'group' },\n loader: async () =>\n import('./components/Cards/Group/GroupProfile/GroupProfileCard').then(m =>\n compatWrapper(<m.GroupProfileCard />),\n ),\n },\n});\n\n/** @alpha */\nconst EntityMembersListCard = EntityCardBlueprint.makeWithOverrides({\n name: 'members-list',\n config: {\n schema: {\n initialRelationAggregation: z =>\n z.enum(['direct', 'aggregated']).optional(),\n showAggregateMembersToggle: z => z.boolean().optional(),\n },\n },\n factory(originalFactory, { config }) {\n return originalFactory({\n filter: { kind: 'group' },\n loader: async () =>\n import('./components/Cards/Group/MembersList/MembersListCard').then(m =>\n compatWrapper(\n <m.MembersListCard\n relationAggregation={config.initialRelationAggregation}\n showAggregateMembersToggle={config.showAggregateMembersToggle}\n />,\n ),\n ),\n });\n },\n});\n\n/** @alpha */\nconst EntityOwnershipCard = EntityCardBlueprint.makeWithOverrides({\n name: 'ownership',\n config: {\n schema: {\n initialRelationAggregation: z =>\n z.enum(['direct', 'aggregated']).optional(),\n showAggregateMembersToggle: z => z.boolean().optional(),\n },\n },\n factory(originalFactory, { config }) {\n return originalFactory({\n filter: { kind: { $in: ['group', 'user'] } },\n loader: async () =>\n import('./components/Cards/OwnershipCard/OwnershipCard').then(m =>\n compatWrapper(\n <m.OwnershipCard\n relationAggregation={config.initialRelationAggregation}\n // harmonize the exposed alpha endpoints, but keep the default behaviour\n hideRelationsToggle={\n config.showAggregateMembersToggle === undefined\n ? undefined\n : !config.showAggregateMembersToggle\n }\n />,\n ),\n ),\n });\n },\n});\n\n/** @alpha */\nconst EntityUserProfileCard = EntityCardBlueprint.makeWithOverrides({\n name: 'user-profile',\n config: {\n schema: {\n maxRelations: z => z.number().optional(),\n hideIcons: z => z.boolean().default(false),\n },\n },\n factory(originalFactory, { config }) {\n return originalFactory({\n type: 'info',\n filter: { kind: 'user' },\n loader: async () =>\n import('./components/Cards/User/UserProfileCard/UserProfileCard').then(\n m =>\n compatWrapper(\n <m.UserProfileCard\n maxRelations={config.maxRelations}\n hideIcons={config.hideIcons}\n />,\n ),\n ),\n });\n },\n});\n\n/** @alpha */\nexport default createFrontendPlugin({\n pluginId: 'org',\n info: { packageJson: () => import('../package.json') },\n extensions: [\n EntityGroupProfileCard,\n EntityMembersListCard,\n EntityOwnershipCard,\n EntityUserProfileCard,\n ],\n externalRoutes: convertLegacyRouteRefs({\n catalogIndex: catalogIndexRouteRef,\n }),\n});\n\nexport { orgTranslationRef } from './translation';\n"],"names":[],"mappings":";;;;;;;AAyBA,MAAM,sBAAA,GAAyB,oBAAoB,IAAA,CAAK;AAAA,EACtD,IAAA,EAAM,eAAA;AAAA,EACN,MAAA,EAAQ;AAAA,IACN,IAAA,EAAM,MAAA;AAAA,IACN,MAAA,EAAQ,EAAE,IAAA,EAAM,OAAA,EAAQ;AAAA,IACxB,MAAA,EAAQ,YACN,OAAO,+DAAwD,CAAA,CAAE,IAAA;AAAA,MAAK,OACpE,aAAA,iBAAc,GAAA,CAAC,CAAA,CAAE,gBAAA,EAAF,EAAmB,CAAE;AAAA;AACtC;AAEN,CAAC,CAAA;AAGD,MAAM,qBAAA,GAAwB,oBAAoB,iBAAA,CAAkB;AAAA,EAClE,IAAA,EAAM,cAAA;AAAA,EACN,MAAA,EAAQ;AAAA,IACN,MAAA,EAAQ;AAAA,MACN,0BAAA,EAA4B,OAC1B,CAAA,CAAE,IAAA,CAAK,CAAC,QAAA,EAAU,YAAY,CAAC,CAAA,CAAE,QAAA,EAAS;AAAA,MAC5C,0BAAA,EAA4B,CAAA,CAAA,KAAK,CAAA,CAAE,OAAA,GAAU,QAAA;AAAS;AACxD,GACF;AAAA,EACA,OAAA,CAAQ,eAAA,EAAiB,EAAE,MAAA,EAAO,EAAG;AACnC,IAAA,OAAO,eAAA,CAAgB;AAAA,MACrB,MAAA,EAAQ,EAAE,IAAA,EAAM,OAAA,EAAQ;AAAA,MACxB,MAAA,EAAQ,YACN,OAAO,6DAAsD,CAAA,CAAE,IAAA;AAAA,QAAK,CAAA,CAAA,KAClE,aAAA;AAAA,0BACE,GAAA;AAAA,YAAC,CAAA,CAAE,eAAA;AAAA,YAAF;AAAA,cACC,qBAAqB,MAAA,CAAO,0BAAA;AAAA,cAC5B,4BAA4B,MAAA,CAAO;AAAA;AAAA;AACrC;AACF;AACF,KACH,CAAA;AAAA,EACH;AACF,CAAC,CAAA;AAGD,MAAM,mBAAA,GAAsB,oBAAoB,iBAAA,CAAkB;AAAA,EAChE,IAAA,EAAM,WAAA;AAAA,EACN,MAAA,EAAQ;AAAA,IACN,MAAA,EAAQ;AAAA,MACN,0BAAA,EAA4B,OAC1B,CAAA,CAAE,IAAA,CAAK,CAAC,QAAA,EAAU,YAAY,CAAC,CAAA,CAAE,QAAA,EAAS;AAAA,MAC5C,0BAAA,EAA4B,CAAA,CAAA,KAAK,CAAA,CAAE,OAAA,GAAU,QAAA;AAAS;AACxD,GACF;AAAA,EACA,OAAA,CAAQ,eAAA,EAAiB,EAAE,MAAA,EAAO,EAAG;AACnC,IAAA,OAAO,eAAA,CAAgB;AAAA,MACrB,MAAA,EAAQ,EAAE,IAAA,EAAM,EAAE,KAAK,CAAC,OAAA,EAAS,MAAM,CAAA,EAAE,EAAE;AAAA,MAC3C,MAAA,EAAQ,YACN,OAAO,uDAAgD,CAAA,CAAE,IAAA;AAAA,QAAK,CAAA,CAAA,KAC5D,aAAA;AAAA,0BACE,GAAA;AAAA,YAAC,CAAA,CAAE,aAAA;AAAA,YAAF;AAAA,cACC,qBAAqB,MAAA,CAAO,0BAAA;AAAA,cAE5B,qBACE,MAAA,CAAO,0BAAA,KAA+B,MAAA,GAClC,MAAA,GACA,CAAC,MAAA,CAAO;AAAA;AAAA;AAEhB;AACF;AACF,KACH,CAAA;AAAA,EACH;AACF,CAAC,CAAA;AAGD,MAAM,qBAAA,GAAwB,oBAAoB,iBAAA,CAAkB;AAAA,EAClE,IAAA,EAAM,cAAA;AAAA,EACN,MAAA,EAAQ;AAAA,IACN,MAAA,EAAQ;AAAA,MACN,YAAA,EAAc,CAAA,CAAA,KAAK,CAAA,CAAE,MAAA,GAAS,QAAA,EAAS;AAAA,MACvC,WAAW,CAAA,CAAA,KAAK,CAAA,CAAE,OAAA,EAAQ,CAAE,QAAQ,KAAK;AAAA;AAC3C,GACF;AAAA,EACA,OAAA,CAAQ,eAAA,EAAiB,EAAE,MAAA,EAAO,EAAG;AACnC,IAAA,OAAO,eAAA,CAAgB;AAAA,MACrB,IAAA,EAAM,MAAA;AAAA,MACN,MAAA,EAAQ,EAAE,IAAA,EAAM,MAAA,EAAO;AAAA,MACvB,MAAA,EAAQ,YACN,OAAO,gEAAyD,CAAA,CAAE,IAAA;AAAA,QAChE,CAAA,CAAA,KACE,aAAA;AAAA,0BACE,GAAA;AAAA,YAAC,CAAA,CAAE,eAAA;AAAA,YAAF;AAAA,cACC,cAAc,MAAA,CAAO,YAAA;AAAA,cACrB,WAAW,MAAA,CAAO;AAAA;AAAA;AACpB;AACF;AACJ,KACH,CAAA;AAAA,EACH;AACF,CAAC,CAAA;AAGD,YAAe,oBAAA,CAAqB;AAAA,EAClC,QAAA,EAAU,KAAA;AAAA,EACV,MAAM,EAAE,WAAA,EAAa,MAAM,OAAO,uBAAiB,CAAA,EAAE;AAAA,EACrD,UAAA,EAAY;AAAA,IACV,sBAAA;AAAA,IACA,qBAAA;AAAA,IACA,mBAAA;AAAA,IACA;AAAA,GACF;AAAA,EACA,gBAAgB,sBAAA,CAAuB;AAAA,IACrC,YAAA,EAAc;AAAA,GACf;AACH,CAAC,CAAA;;;;"}
|
package/dist/package.json.esm.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-org",
|
|
3
|
-
"version": "0.6.45
|
|
3
|
+
"version": "0.6.45",
|
|
4
4
|
"description": "A Backstage plugin that helps you create entity pages for your organization",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -63,13 +63,13 @@
|
|
|
63
63
|
"test": "backstage-cli package test"
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
|
-
"@backstage/catalog-model": "1.7.5",
|
|
67
|
-
"@backstage/core-compat-api": "0.5.3
|
|
68
|
-
"@backstage/core-components": "0.18.2
|
|
69
|
-
"@backstage/core-plugin-api": "1.11.1
|
|
70
|
-
"@backstage/frontend-plugin-api": "0.12.1
|
|
71
|
-
"@backstage/plugin-catalog-common": "1.1.6
|
|
72
|
-
"@backstage/plugin-catalog-react": "1.21.2
|
|
66
|
+
"@backstage/catalog-model": "^1.7.5",
|
|
67
|
+
"@backstage/core-compat-api": "^0.5.3",
|
|
68
|
+
"@backstage/core-components": "^0.18.2",
|
|
69
|
+
"@backstage/core-plugin-api": "^1.11.1",
|
|
70
|
+
"@backstage/frontend-plugin-api": "^0.12.1",
|
|
71
|
+
"@backstage/plugin-catalog-common": "^1.1.6",
|
|
72
|
+
"@backstage/plugin-catalog-react": "^1.21.2",
|
|
73
73
|
"@material-ui/core": "^4.12.2",
|
|
74
74
|
"@material-ui/icons": "^4.9.1",
|
|
75
75
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
@@ -80,15 +80,15 @@
|
|
|
80
80
|
"react-use": "^17.2.4"
|
|
81
81
|
},
|
|
82
82
|
"devDependencies": {
|
|
83
|
-
"@backstage/catalog-client": "1.12.0",
|
|
84
|
-
"@backstage/cli": "0.34.4
|
|
85
|
-
"@backstage/core-app-api": "1.19.1
|
|
86
|
-
"@backstage/dev-utils": "1.1.15
|
|
87
|
-
"@backstage/plugin-catalog": "1.31.4
|
|
88
|
-
"@backstage/plugin-permission-common": "0.9.2
|
|
89
|
-
"@backstage/plugin-permission-react": "0.4.37
|
|
90
|
-
"@backstage/test-utils": "1.7.12
|
|
91
|
-
"@backstage/types": "1.2.2",
|
|
83
|
+
"@backstage/catalog-client": "^1.12.0",
|
|
84
|
+
"@backstage/cli": "^0.34.4",
|
|
85
|
+
"@backstage/core-app-api": "^1.19.1",
|
|
86
|
+
"@backstage/dev-utils": "^1.1.15",
|
|
87
|
+
"@backstage/plugin-catalog": "^1.31.4",
|
|
88
|
+
"@backstage/plugin-permission-common": "^0.9.2",
|
|
89
|
+
"@backstage/plugin-permission-react": "^0.4.37",
|
|
90
|
+
"@backstage/test-utils": "^1.7.12",
|
|
91
|
+
"@backstage/types": "^1.2.2",
|
|
92
92
|
"@testing-library/dom": "^10.0.0",
|
|
93
93
|
"@testing-library/jest-dom": "^6.0.0",
|
|
94
94
|
"@testing-library/react": "^16.0.0",
|