@backstage/plugin-user-settings 0.8.12-next.2 → 0.8.13-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 CHANGED
@@ -1,5 +1,42 @@
1
1
  # @backstage/plugin-user-settings
2
2
 
3
+ ## 0.8.13-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/frontend-plugin-api@0.9.0-next.0
9
+ - @backstage/core-compat-api@0.3.1-next.0
10
+ - @backstage/core-components@0.15.1-next.0
11
+ - @backstage/core-plugin-api@1.10.0-next.0
12
+ - @backstage/plugin-catalog-react@1.13.1-next.0
13
+ - @backstage/core-app-api@1.15.1-next.0
14
+ - @backstage/errors@1.2.4
15
+ - @backstage/theme@0.5.7
16
+ - @backstage/types@1.1.1
17
+ - @backstage/plugin-signals-react@0.0.6-next.0
18
+ - @backstage/plugin-user-settings-common@0.0.1
19
+
20
+ ## 0.8.12
21
+
22
+ ### Patch Changes
23
+
24
+ - fec8b57: Updated exports to use the new type parameters for extensions and extension blueprints.
25
+ - 836127c: Updated dependency `@testing-library/react` to `^16.0.0`.
26
+ - da86ac2: Update README to clarify location of additional tabs example
27
+ - Updated dependencies
28
+ - @backstage/core-components@0.15.0
29
+ - @backstage/plugin-catalog-react@1.13.0
30
+ - @backstage/frontend-plugin-api@0.8.0
31
+ - @backstage/core-app-api@1.15.0
32
+ - @backstage/core-compat-api@0.3.0
33
+ - @backstage/core-plugin-api@1.9.4
34
+ - @backstage/theme@0.5.7
35
+ - @backstage/plugin-signals-react@0.0.5
36
+ - @backstage/errors@1.2.4
37
+ - @backstage/types@1.1.1
38
+ - @backstage/plugin-user-settings-common@0.0.1
39
+
3
40
  ## 0.8.12-next.2
4
41
 
5
42
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-user-settings__alpha",
3
- "version": "0.8.12-next.2",
3
+ "version": "0.8.13-next.0",
4
4
  "main": "../dist/alpha.esm.js",
5
5
  "module": "../dist/alpha.esm.js",
6
6
  "types": "../dist/alpha.d.ts"
package/dist/alpha.d.ts CHANGED
@@ -20,7 +20,6 @@ declare const userSettingsTranslationRef: _backstage_core_plugin_api_alpha.Trans
20
20
  /** @alpha */
21
21
  declare const settingsNavItem: _backstage_frontend_plugin_api.ExtensionDefinition<{
22
22
  kind: "nav-item";
23
- namespace: undefined;
24
23
  name: undefined;
25
24
  config: {};
26
25
  configInput: {};
@@ -30,6 +29,11 @@ declare const settingsNavItem: _backstage_frontend_plugin_api.ExtensionDefinitio
30
29
  routeRef: _backstage_frontend_plugin_api.RouteRef<undefined>;
31
30
  }, "core.nav-item.target", {}>;
32
31
  inputs: {};
32
+ params: {
33
+ title: string;
34
+ icon: _backstage_core_plugin_api.IconComponent;
35
+ routeRef: _backstage_frontend_plugin_api.RouteRef<undefined>;
36
+ };
33
37
  }>;
34
38
  /**
35
39
  * @alpha
@@ -39,7 +43,6 @@ declare const _default: _backstage_frontend_plugin_api.FrontendPlugin<{
39
43
  }, {}, {
40
44
  "nav-item:user-settings": _backstage_frontend_plugin_api.ExtensionDefinition<{
41
45
  kind: "nav-item";
42
- namespace: undefined;
43
46
  name: undefined;
44
47
  config: {};
45
48
  configInput: {};
@@ -49,6 +52,11 @@ declare const _default: _backstage_frontend_plugin_api.FrontendPlugin<{
49
52
  routeRef: _backstage_frontend_plugin_api.RouteRef<undefined>;
50
53
  }, "core.nav-item.target", {}>;
51
54
  inputs: {};
55
+ params: {
56
+ title: string;
57
+ icon: _backstage_core_plugin_api.IconComponent;
58
+ routeRef: _backstage_frontend_plugin_api.RouteRef<undefined>;
59
+ };
52
60
  }>;
53
61
  "page:user-settings": _backstage_frontend_plugin_api.ExtensionDefinition<{
54
62
  config: {
@@ -67,8 +75,12 @@ declare const _default: _backstage_frontend_plugin_api.FrontendPlugin<{
67
75
  }>;
68
76
  };
69
77
  kind: "page";
70
- namespace: undefined;
71
78
  name: undefined;
79
+ params: {
80
+ defaultPath: string;
81
+ loader: () => Promise<JSX.Element>;
82
+ routeRef?: _backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams> | undefined;
83
+ };
72
84
  }>;
73
85
  }>;
74
86
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-user-settings",
3
- "version": "0.8.12-next.2",
3
+ "version": "0.8.13-next.0",
4
4
  "description": "A Backstage plugin that provides a settings page",
5
5
  "backstage": {
6
6
  "role": "frontend-plugin",
@@ -32,6 +32,7 @@
32
32
  "default": "./dist/index.esm.js"
33
33
  },
34
34
  "./alpha": {
35
+ "backstage": "@backstage/FrontendPlugin",
35
36
  "import": "./dist/alpha.esm.js",
36
37
  "types": "./dist/alpha.d.ts",
37
38
  "default": "./dist/alpha.esm.js"
@@ -54,16 +55,16 @@
54
55
  "test": "backstage-cli package test"
55
56
  },
56
57
  "dependencies": {
57
- "@backstage/core-app-api": "^1.14.3-next.0",
58
- "@backstage/core-compat-api": "^0.3.0-next.2",
59
- "@backstage/core-components": "^0.14.11-next.1",
60
- "@backstage/core-plugin-api": "^1.9.4-next.0",
58
+ "@backstage/core-app-api": "^1.15.1-next.0",
59
+ "@backstage/core-compat-api": "^0.3.1-next.0",
60
+ "@backstage/core-components": "^0.15.1-next.0",
61
+ "@backstage/core-plugin-api": "^1.10.0-next.0",
61
62
  "@backstage/errors": "^1.2.4",
62
- "@backstage/frontend-plugin-api": "^0.8.0-next.2",
63
- "@backstage/plugin-catalog-react": "^1.13.0-next.2",
64
- "@backstage/plugin-signals-react": "^0.0.5-next.1",
63
+ "@backstage/frontend-plugin-api": "^0.9.0-next.0",
64
+ "@backstage/plugin-catalog-react": "^1.13.1-next.0",
65
+ "@backstage/plugin-signals-react": "^0.0.6-next.0",
65
66
  "@backstage/plugin-user-settings-common": "^0.0.1",
66
- "@backstage/theme": "^0.5.7-next.0",
67
+ "@backstage/theme": "^0.5.7",
67
68
  "@backstage/types": "^1.1.1",
68
69
  "@material-ui/core": "^4.12.2",
69
70
  "@material-ui/icons": "^4.9.1",
@@ -73,10 +74,10 @@
73
74
  "zen-observable": "^0.10.0"
74
75
  },
75
76
  "devDependencies": {
76
- "@backstage/cli": "^0.27.1-next.2",
77
- "@backstage/dev-utils": "^1.1.0-next.2",
78
- "@backstage/plugin-catalog": "^1.23.0-next.2",
79
- "@backstage/test-utils": "^1.6.0-next.1",
77
+ "@backstage/cli": "^0.28.0-next.0",
78
+ "@backstage/dev-utils": "^1.1.1-next.0",
79
+ "@backstage/plugin-catalog": "^1.24.0-next.0",
80
+ "@backstage/test-utils": "^1.6.1-next.0",
80
81
  "@testing-library/dom": "^10.0.0",
81
82
  "@testing-library/jest-dom": "^6.0.0",
82
83
  "@testing-library/react": "^16.0.0",