@backstage/plugin-user-settings 0.7.2-next.1 → 0.7.2-next.3
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 +26 -0
- package/dist/index.d.ts +3 -3
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @backstage/plugin-user-settings
|
|
2
2
|
|
|
3
|
+
## 0.7.2-next.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/plugin-catalog-react@1.5.0-next.3
|
|
9
|
+
- @backstage/core-app-api@1.7.0-next.3
|
|
10
|
+
- @backstage/core-components@0.13.0-next.3
|
|
11
|
+
- @backstage/core-plugin-api@1.5.1-next.1
|
|
12
|
+
- @backstage/errors@1.1.5
|
|
13
|
+
- @backstage/theme@0.2.19-next.0
|
|
14
|
+
- @backstage/types@1.0.2
|
|
15
|
+
|
|
16
|
+
## 0.7.2-next.2
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Updated dependencies
|
|
21
|
+
- @backstage/core-components@0.12.6-next.2
|
|
22
|
+
- @backstage/plugin-catalog-react@1.4.1-next.2
|
|
23
|
+
- @backstage/core-plugin-api@1.5.1-next.1
|
|
24
|
+
- @backstage/core-app-api@1.7.0-next.2
|
|
25
|
+
- @backstage/errors@1.1.5
|
|
26
|
+
- @backstage/theme@0.2.19-next.0
|
|
27
|
+
- @backstage/types@1.0.2
|
|
28
|
+
|
|
3
29
|
## 0.7.2-next.1
|
|
4
30
|
|
|
5
31
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -121,7 +121,7 @@ declare const useUserProfile: () => {
|
|
|
121
121
|
/** @public @deprecated Use SettingsLayout.Route approach instead */
|
|
122
122
|
declare const USER_SETTINGS_TAB_KEY = "plugin.user-settings.settingsLayoutRoute";
|
|
123
123
|
/** @public @deprecated Use SettingsLayoutRouteProps instead */
|
|
124
|
-
|
|
124
|
+
type UserSettingsTabProps = PropsWithChildren<{
|
|
125
125
|
/**
|
|
126
126
|
* The path to the tab in the settings route
|
|
127
127
|
* @example `/settings/advanced`
|
|
@@ -139,7 +139,7 @@ declare type UserSettingsTabProps = PropsWithChildren<{
|
|
|
139
139
|
declare const UserSettingsTab: (props: UserSettingsTabProps) => JSX.Element;
|
|
140
140
|
|
|
141
141
|
/** @public */
|
|
142
|
-
|
|
142
|
+
type SettingsLayoutRouteProps = {
|
|
143
143
|
path: string;
|
|
144
144
|
title: string;
|
|
145
145
|
children: JSX.Element;
|
|
@@ -148,7 +148,7 @@ declare type SettingsLayoutRouteProps = {
|
|
|
148
148
|
}>;
|
|
149
149
|
};
|
|
150
150
|
/** @public */
|
|
151
|
-
|
|
151
|
+
type SettingsLayoutProps = {
|
|
152
152
|
title?: string;
|
|
153
153
|
subtitle?: string;
|
|
154
154
|
children?: React.ReactNode;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-user-settings",
|
|
3
3
|
"description": "A Backstage plugin that provides a settings page",
|
|
4
|
-
"version": "0.7.2-next.
|
|
4
|
+
"version": "0.7.2-next.3",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"clean": "backstage-cli package clean"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@backstage/core-app-api": "^1.7.0-next.
|
|
36
|
-
"@backstage/core-components": "^0.
|
|
37
|
-
"@backstage/core-plugin-api": "^1.5.1-next.
|
|
35
|
+
"@backstage/core-app-api": "^1.7.0-next.3",
|
|
36
|
+
"@backstage/core-components": "^0.13.0-next.3",
|
|
37
|
+
"@backstage/core-plugin-api": "^1.5.1-next.1",
|
|
38
38
|
"@backstage/errors": "^1.1.5",
|
|
39
|
-
"@backstage/plugin-catalog-react": "^1.
|
|
39
|
+
"@backstage/plugin-catalog-react": "^1.5.0-next.3",
|
|
40
40
|
"@backstage/theme": "^0.2.19-next.0",
|
|
41
41
|
"@backstage/types": "^1.0.2",
|
|
42
42
|
"@material-ui/core": "^4.12.2",
|
|
@@ -52,9 +52,9 @@
|
|
|
52
52
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@backstage/cli": "^0.22.6-next.
|
|
56
|
-
"@backstage/dev-utils": "^1.0.14-next.
|
|
57
|
-
"@backstage/test-utils": "^1.3.0-next.
|
|
55
|
+
"@backstage/cli": "^0.22.6-next.3",
|
|
56
|
+
"@backstage/dev-utils": "^1.0.14-next.3",
|
|
57
|
+
"@backstage/test-utils": "^1.3.0-next.3",
|
|
58
58
|
"@testing-library/dom": "^8.0.0",
|
|
59
59
|
"@testing-library/jest-dom": "^5.10.1",
|
|
60
60
|
"@testing-library/react": "^12.1.3",
|