@backstage/plugin-user-settings 0.9.2-next.2 → 0.9.3-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/dist/alpha.d.ts +16 -8
- package/dist/package.json.esm.js +1 -1
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# @backstage/plugin-user-settings
|
|
2
2
|
|
|
3
|
+
## 0.9.3-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/core-components@0.18.10-next.0
|
|
9
|
+
- @backstage/ui@0.15.0-next.0
|
|
10
|
+
- @backstage/errors@1.3.1-next.0
|
|
11
|
+
- @backstage/plugin-catalog-react@2.1.5-next.0
|
|
12
|
+
- @backstage/frontend-plugin-api@0.17.0-next.0
|
|
13
|
+
- @backstage/core-app-api@1.20.1-next.0
|
|
14
|
+
- @backstage/catalog-model@1.8.1-next.0
|
|
15
|
+
- @backstage/core-plugin-api@1.12.6-next.0
|
|
16
|
+
- @backstage/theme@0.7.3
|
|
17
|
+
- @backstage/types@1.2.2
|
|
18
|
+
- @backstage/plugin-signals-react@0.0.22-next.0
|
|
19
|
+
- @backstage/plugin-user-settings-common@0.1.0
|
|
20
|
+
|
|
21
|
+
## 0.9.2
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- Updated dependencies
|
|
26
|
+
- @backstage/ui@0.14.0
|
|
27
|
+
- @backstage/errors@1.3.0
|
|
28
|
+
- @backstage/theme@0.7.3
|
|
29
|
+
- @backstage/catalog-model@1.8.0
|
|
30
|
+
- @backstage/plugin-catalog-react@2.1.2
|
|
31
|
+
- @backstage/core-app-api@1.20.0
|
|
32
|
+
- @backstage/frontend-plugin-api@0.16.0
|
|
33
|
+
- @backstage/core-components@0.18.9
|
|
34
|
+
- @backstage/core-plugin-api@1.12.5
|
|
35
|
+
- @backstage/plugin-signals-react@0.0.21
|
|
36
|
+
|
|
3
37
|
## 0.9.2-next.2
|
|
4
38
|
|
|
5
39
|
### Patch Changes
|
package/dist/alpha.d.ts
CHANGED
|
@@ -62,8 +62,12 @@ declare const userSettingsTranslationRef: _backstage_frontend_plugin_api.Transla
|
|
|
62
62
|
declare const settingsNavItem: _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
63
63
|
kind: "nav-item";
|
|
64
64
|
name: undefined;
|
|
65
|
-
config: {
|
|
66
|
-
|
|
65
|
+
config: {
|
|
66
|
+
title: string | undefined;
|
|
67
|
+
};
|
|
68
|
+
configInput: {
|
|
69
|
+
title?: string | undefined;
|
|
70
|
+
};
|
|
67
71
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<{
|
|
68
72
|
title: string;
|
|
69
73
|
icon: _backstage_frontend_plugin_api.IconComponent;
|
|
@@ -85,8 +89,12 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
85
89
|
"nav-item:user-settings": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
86
90
|
kind: "nav-item";
|
|
87
91
|
name: undefined;
|
|
88
|
-
config: {
|
|
89
|
-
|
|
92
|
+
config: {
|
|
93
|
+
title: string | undefined;
|
|
94
|
+
};
|
|
95
|
+
configInput: {
|
|
96
|
+
title?: string | undefined;
|
|
97
|
+
};
|
|
90
98
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<{
|
|
91
99
|
title: string;
|
|
92
100
|
icon: _backstage_frontend_plugin_api.IconComponent;
|
|
@@ -107,8 +115,8 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
107
115
|
title: string | undefined;
|
|
108
116
|
};
|
|
109
117
|
configInput: {
|
|
110
|
-
title?: string | undefined;
|
|
111
118
|
path?: string | undefined;
|
|
119
|
+
title?: string | undefined;
|
|
112
120
|
};
|
|
113
121
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
114
122
|
optional: true;
|
|
@@ -145,8 +153,8 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
145
153
|
title: string | undefined;
|
|
146
154
|
};
|
|
147
155
|
configInput: {
|
|
148
|
-
title?: string | undefined;
|
|
149
156
|
path?: string | undefined;
|
|
157
|
+
title?: string | undefined;
|
|
150
158
|
};
|
|
151
159
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
152
160
|
optional: true;
|
|
@@ -178,8 +186,8 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
178
186
|
title: string | undefined;
|
|
179
187
|
};
|
|
180
188
|
configInput: {
|
|
181
|
-
title?: string | undefined;
|
|
182
189
|
path?: string | undefined;
|
|
190
|
+
title?: string | undefined;
|
|
183
191
|
};
|
|
184
192
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
185
193
|
optional: true;
|
|
@@ -203,8 +211,8 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
203
211
|
title: string | undefined;
|
|
204
212
|
};
|
|
205
213
|
configInput: {
|
|
206
|
-
title?: string | undefined;
|
|
207
214
|
path?: string | undefined;
|
|
215
|
+
title?: string | undefined;
|
|
208
216
|
};
|
|
209
217
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
210
218
|
optional: true;
|
package/dist/package.json.esm.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-user-settings",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.3-next.0",
|
|
4
4
|
"description": "A Backstage plugin that provides a settings page",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -67,18 +67,18 @@
|
|
|
67
67
|
"test": "backstage-cli package test"
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
|
-
"@backstage/catalog-model": "1.
|
|
71
|
-
"@backstage/core-app-api": "1.20.
|
|
72
|
-
"@backstage/core-components": "0.18.
|
|
73
|
-
"@backstage/core-plugin-api": "1.12.
|
|
74
|
-
"@backstage/errors": "1.3.
|
|
75
|
-
"@backstage/frontend-plugin-api": "0.
|
|
76
|
-
"@backstage/plugin-catalog-react": "2.1.
|
|
77
|
-
"@backstage/plugin-signals-react": "0.0.
|
|
70
|
+
"@backstage/catalog-model": "1.8.1-next.0",
|
|
71
|
+
"@backstage/core-app-api": "1.20.1-next.0",
|
|
72
|
+
"@backstage/core-components": "0.18.10-next.0",
|
|
73
|
+
"@backstage/core-plugin-api": "1.12.6-next.0",
|
|
74
|
+
"@backstage/errors": "1.3.1-next.0",
|
|
75
|
+
"@backstage/frontend-plugin-api": "0.17.0-next.0",
|
|
76
|
+
"@backstage/plugin-catalog-react": "2.1.5-next.0",
|
|
77
|
+
"@backstage/plugin-signals-react": "0.0.22-next.0",
|
|
78
78
|
"@backstage/plugin-user-settings-common": "0.1.0",
|
|
79
|
-
"@backstage/theme": "0.7.3
|
|
79
|
+
"@backstage/theme": "0.7.3",
|
|
80
80
|
"@backstage/types": "1.2.2",
|
|
81
|
-
"@backstage/ui": "0.
|
|
81
|
+
"@backstage/ui": "0.15.0-next.0",
|
|
82
82
|
"@material-ui/core": "^4.12.2",
|
|
83
83
|
"@material-ui/icons": "^4.9.1",
|
|
84
84
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
@@ -87,10 +87,10 @@
|
|
|
87
87
|
"zen-observable": "^0.10.0"
|
|
88
88
|
},
|
|
89
89
|
"devDependencies": {
|
|
90
|
-
"@backstage/cli": "0.36.
|
|
91
|
-
"@backstage/dev-utils": "1.1.
|
|
92
|
-
"@backstage/plugin-catalog": "2.0.
|
|
93
|
-
"@backstage/test-utils": "1.7.
|
|
90
|
+
"@backstage/cli": "0.36.2-next.0",
|
|
91
|
+
"@backstage/dev-utils": "1.1.23-next.0",
|
|
92
|
+
"@backstage/plugin-catalog": "2.0.5-next.0",
|
|
93
|
+
"@backstage/test-utils": "1.7.18-next.0",
|
|
94
94
|
"@testing-library/dom": "^10.0.0",
|
|
95
95
|
"@testing-library/jest-dom": "^6.0.0",
|
|
96
96
|
"@testing-library/react": "^16.0.0",
|