@backstage/plugin-user-settings 0.8.30-next.0 → 0.8.31-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 +22 -0
- package/dist/alpha.d.ts +1 -2
- package/dist/index.d.ts +4 -2
- package/dist/package.json.esm.js +4 -4
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @backstage/plugin-user-settings
|
|
2
2
|
|
|
3
|
+
## 0.8.31-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/plugin-catalog-react@1.21.5-next.0
|
|
9
|
+
- @backstage/frontend-plugin-api@0.13.2
|
|
10
|
+
|
|
11
|
+
## 0.8.30
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- d02db50: Remove unnecessary use of `compatWrapper` and `convertLegacyRouteRef`(s) for the new frontend system.
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @backstage/core-app-api@1.19.3
|
|
18
|
+
- @backstage/frontend-plugin-api@0.13.2
|
|
19
|
+
- @backstage/core-components@0.18.4
|
|
20
|
+
- @backstage/plugin-catalog-react@1.21.4
|
|
21
|
+
- @backstage/core-plugin-api@1.12.1
|
|
22
|
+
- @backstage/theme@0.7.1
|
|
23
|
+
- @backstage/plugin-signals-react@0.0.18
|
|
24
|
+
|
|
3
25
|
## 0.8.30-next.0
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
package/dist/alpha.d.ts
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
2
|
import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
|
|
3
3
|
import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
|
|
4
|
-
import * as _backstage_core_plugin_api_alpha from '@backstage/core-plugin-api/alpha';
|
|
5
4
|
|
|
6
5
|
/** @alpha */
|
|
7
|
-
declare const userSettingsTranslationRef:
|
|
6
|
+
declare const userSettingsTranslationRef: _backstage_frontend_plugin_api.TranslationRef<"user-settings", {
|
|
8
7
|
readonly "featureFlags.title": "Feature Flags";
|
|
9
8
|
readonly "featureFlags.description": "Please refresh the page when toggling feature flags";
|
|
10
9
|
readonly "featureFlags.filterTitle": "Filter";
|
package/dist/index.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import { StorageApi, FetchApi, DiscoveryApi, ErrorApi, IdentityApi, StorageValue
|
|
|
3
3
|
import { JsonValue, Observable } from '@backstage/types';
|
|
4
4
|
import { SignalApi } from '@backstage/plugin-signals-react';
|
|
5
5
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
6
|
+
import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
|
|
6
7
|
import { PropsWithChildren, ReactNode, ElementType } from 'react';
|
|
7
8
|
import { TabProps } from '@material-ui/core/Tab';
|
|
8
9
|
|
|
@@ -119,7 +120,7 @@ declare const useUserProfile: () => {
|
|
|
119
120
|
backstageIdentity?: undefined;
|
|
120
121
|
} | {
|
|
121
122
|
profile: ProfileInfo;
|
|
122
|
-
backstageIdentity:
|
|
123
|
+
backstageIdentity: _backstage_frontend_plugin_api.BackstageUserIdentity;
|
|
123
124
|
displayName: string;
|
|
124
125
|
loading: false;
|
|
125
126
|
};
|
|
@@ -167,4 +168,5 @@ declare const SettingsLayout: {
|
|
|
167
168
|
Route: (props: SettingsLayoutRouteProps) => null;
|
|
168
169
|
};
|
|
169
170
|
|
|
170
|
-
export { DefaultProviderSettings, ProviderSettingsItem, SettingsPage as Router, Settings, SettingsLayout,
|
|
171
|
+
export { DefaultProviderSettings, ProviderSettingsItem, SettingsPage as Router, Settings, SettingsLayout, USER_SETTINGS_TAB_KEY, UserSettingsAppearanceCard, UserSettingsAuthProviders, UserSettingsFeatureFlags, UserSettingsGeneral, UserSettingsIdentityCard, UserSettingsLanguageToggle, UserSettingsMenu, UserSettingsPage, UserSettingsPinToggle, UserSettingsProfileCard, UserSettingsSignInAvatar, UserSettingsStorage, UserSettingsTab, UserSettingsThemeToggle, userSettingsPlugin as plugin, useUserProfile, userSettingsPlugin };
|
|
172
|
+
export type { SettingsLayoutProps, SettingsLayoutRouteProps, UserSettingsTabProps };
|
package/dist/package.json.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
var name = "@backstage/plugin-user-settings";
|
|
2
|
-
var version = "0.8.
|
|
2
|
+
var version = "0.8.31-next.0";
|
|
3
3
|
var description = "A Backstage plugin that provides a settings page";
|
|
4
4
|
var backstage = {
|
|
5
5
|
role: "frontend-plugin",
|
|
@@ -24,7 +24,7 @@ var repository = {
|
|
|
24
24
|
};
|
|
25
25
|
var license = "Apache-2.0";
|
|
26
26
|
var sideEffects = false;
|
|
27
|
-
var exports = {
|
|
27
|
+
var exports$1 = {
|
|
28
28
|
".": "./src/index.ts",
|
|
29
29
|
"./alpha": "./src/alpha.tsx",
|
|
30
30
|
"./package.json": "./package.json"
|
|
@@ -128,7 +128,7 @@ var _package = {
|
|
|
128
128
|
repository: repository,
|
|
129
129
|
license: license,
|
|
130
130
|
sideEffects: sideEffects,
|
|
131
|
-
exports: exports,
|
|
131
|
+
exports: exports$1,
|
|
132
132
|
main: main,
|
|
133
133
|
types: types,
|
|
134
134
|
typesVersions: typesVersions,
|
|
@@ -141,5 +141,5 @@ var _package = {
|
|
|
141
141
|
configSchema: configSchema
|
|
142
142
|
};
|
|
143
143
|
|
|
144
|
-
export { backstage, configSchema, _package as default, dependencies, description, devDependencies, exports, files, homepage, keywords, license, main, name, peerDependencies, peerDependenciesMeta, publishConfig, repository, scripts, sideEffects, types, typesVersions, version };
|
|
144
|
+
export { backstage, configSchema, _package as default, dependencies, description, devDependencies, exports$1 as exports, files, homepage, keywords, license, main, name, peerDependencies, peerDependenciesMeta, publishConfig, repository, scripts, sideEffects, types, typesVersions, version };
|
|
145
145
|
//# sourceMappingURL=package.json.esm.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-user-settings",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.31-next.0",
|
|
4
4
|
"description": "A Backstage plugin that provides a settings page",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -68,15 +68,15 @@
|
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
70
|
"@backstage/catalog-model": "1.7.6",
|
|
71
|
-
"@backstage/core-app-api": "1.19.3
|
|
72
|
-
"@backstage/core-components": "0.18.4
|
|
73
|
-
"@backstage/core-plugin-api": "1.12.1
|
|
71
|
+
"@backstage/core-app-api": "1.19.3",
|
|
72
|
+
"@backstage/core-components": "0.18.4",
|
|
73
|
+
"@backstage/core-plugin-api": "1.12.1",
|
|
74
74
|
"@backstage/errors": "1.2.7",
|
|
75
|
-
"@backstage/frontend-plugin-api": "0.13.2
|
|
76
|
-
"@backstage/plugin-catalog-react": "1.21.
|
|
77
|
-
"@backstage/plugin-signals-react": "0.0.18
|
|
75
|
+
"@backstage/frontend-plugin-api": "0.13.2",
|
|
76
|
+
"@backstage/plugin-catalog-react": "1.21.5-next.0",
|
|
77
|
+
"@backstage/plugin-signals-react": "0.0.18",
|
|
78
78
|
"@backstage/plugin-user-settings-common": "0.0.1",
|
|
79
|
-
"@backstage/theme": "0.7.1
|
|
79
|
+
"@backstage/theme": "0.7.1",
|
|
80
80
|
"@backstage/types": "1.2.2",
|
|
81
81
|
"@material-ui/core": "^4.12.2",
|
|
82
82
|
"@material-ui/icons": "^4.9.1",
|
|
@@ -85,10 +85,10 @@
|
|
|
85
85
|
"zen-observable": "^0.10.0"
|
|
86
86
|
},
|
|
87
87
|
"devDependencies": {
|
|
88
|
-
"@backstage/cli": "0.
|
|
89
|
-
"@backstage/dev-utils": "1.1.
|
|
90
|
-
"@backstage/plugin-catalog": "1.32.
|
|
91
|
-
"@backstage/test-utils": "1.7.14
|
|
88
|
+
"@backstage/cli": "0.35.2-next.1",
|
|
89
|
+
"@backstage/dev-utils": "1.1.19-next.1",
|
|
90
|
+
"@backstage/plugin-catalog": "1.32.2-next.0",
|
|
91
|
+
"@backstage/test-utils": "1.7.14",
|
|
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",
|