@backstage/plugin-user-settings 0.8.11 → 0.8.12-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,23 @@
1
1
  # @backstage/plugin-user-settings
2
2
 
3
+ ## 0.8.12-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - fec8b57: Updated exports to use the new type parameters for extensions and extension blueprints.
8
+ - Updated dependencies
9
+ - @backstage/frontend-plugin-api@0.8.0-next.0
10
+ - @backstage/core-compat-api@0.2.9-next.0
11
+ - @backstage/plugin-catalog-react@1.12.4-next.0
12
+ - @backstage/plugin-signals-react@0.0.5-next.0
13
+ - @backstage/core-app-api@1.14.2
14
+ - @backstage/core-components@0.14.10
15
+ - @backstage/core-plugin-api@1.9.3
16
+ - @backstage/errors@1.2.4
17
+ - @backstage/theme@0.5.6
18
+ - @backstage/types@1.1.1
19
+ - @backstage/plugin-user-settings-common@0.0.1
20
+
3
21
  ## 0.8.11
4
22
 
5
23
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-user-settings__alpha",
3
- "version": "0.8.11",
3
+ "version": "0.8.12-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
@@ -18,14 +18,18 @@ declare const userSettingsTranslationRef: _backstage_core_plugin_api_alpha.Trans
18
18
  }>;
19
19
 
20
20
  /** @alpha */
21
- declare const settingsNavItem: _backstage_frontend_plugin_api.ExtensionDefinition<{}, {}, _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<{
22
- title: string;
23
- icon: _backstage_core_plugin_api.IconComponent;
24
- routeRef: _backstage_frontend_plugin_api.RouteRef<undefined>;
25
- }, "core.nav-item.target", {}>, {}, {
21
+ declare const settingsNavItem: _backstage_frontend_plugin_api.ExtensionDefinition<{
26
22
  kind: "nav-item";
27
23
  namespace: undefined;
28
24
  name: undefined;
25
+ config: {};
26
+ configInput: {};
27
+ output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<{
28
+ title: string;
29
+ icon: _backstage_core_plugin_api.IconComponent;
30
+ routeRef: _backstage_frontend_plugin_api.RouteRef<undefined>;
31
+ }, "core.nav-item.target", {}>;
32
+ inputs: {};
29
33
  }>;
30
34
  /**
31
35
  * @alpha
@@ -33,31 +37,35 @@ declare const settingsNavItem: _backstage_frontend_plugin_api.ExtensionDefinitio
33
37
  declare const _default: _backstage_frontend_plugin_api.BackstagePlugin<{
34
38
  root: _backstage_frontend_plugin_api.RouteRef<undefined>;
35
39
  }, {}, {
36
- "nav-item:user-settings": _backstage_frontend_plugin_api.ExtensionDefinition<{}, {}, _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<{
37
- title: string;
38
- icon: _backstage_core_plugin_api.IconComponent;
39
- routeRef: _backstage_frontend_plugin_api.RouteRef<undefined>;
40
- }, "core.nav-item.target", {}>, {}, {
40
+ "nav-item:user-settings": _backstage_frontend_plugin_api.ExtensionDefinition<{
41
41
  kind: "nav-item";
42
42
  namespace: undefined;
43
43
  name: undefined;
44
+ config: {};
45
+ configInput: {};
46
+ output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<{
47
+ title: string;
48
+ icon: _backstage_core_plugin_api.IconComponent;
49
+ routeRef: _backstage_frontend_plugin_api.RouteRef<undefined>;
50
+ }, "core.nav-item.target", {}>;
51
+ inputs: {};
44
52
  }>;
45
53
  "page:user-settings": _backstage_frontend_plugin_api.ExtensionDefinition<{
46
- [x: string]: any;
47
- } & {
48
- path: string | undefined;
49
- }, {
50
- [x: string]: any;
51
- } & {
52
- path?: string | undefined;
53
- }, _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<React__default.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
54
- optional: true;
55
- }>, {
56
- providerSettings: _backstage_frontend_plugin_api.ExtensionInput<_backstage_frontend_plugin_api.ConfigurableExtensionDataRef<React__default.JSX.Element, "core.reactElement", {}>, {
57
- singleton: true;
54
+ config: {
55
+ path: string | undefined;
56
+ };
57
+ configInput: {
58
+ path?: string | undefined;
59
+ };
60
+ output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<React__default.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
58
61
  optional: true;
59
62
  }>;
60
- }, {
63
+ inputs: {
64
+ providerSettings: _backstage_frontend_plugin_api.ExtensionInput<_backstage_frontend_plugin_api.ConfigurableExtensionDataRef<React__default.JSX.Element, "core.reactElement", {}>, {
65
+ singleton: true;
66
+ optional: true;
67
+ }>;
68
+ };
61
69
  kind: "page";
62
70
  namespace: undefined;
63
71
  name: undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-user-settings",
3
- "version": "0.8.11",
3
+ "version": "0.8.12-next.0",
4
4
  "description": "A Backstage plugin that provides a settings page",
5
5
  "backstage": {
6
6
  "role": "frontend-plugin",
@@ -55,13 +55,13 @@
55
55
  },
56
56
  "dependencies": {
57
57
  "@backstage/core-app-api": "^1.14.2",
58
- "@backstage/core-compat-api": "^0.2.8",
58
+ "@backstage/core-compat-api": "^0.2.9-next.0",
59
59
  "@backstage/core-components": "^0.14.10",
60
60
  "@backstage/core-plugin-api": "^1.9.3",
61
61
  "@backstage/errors": "^1.2.4",
62
- "@backstage/frontend-plugin-api": "^0.7.0",
63
- "@backstage/plugin-catalog-react": "^1.12.3",
64
- "@backstage/plugin-signals-react": "^0.0.4",
62
+ "@backstage/frontend-plugin-api": "^0.8.0-next.0",
63
+ "@backstage/plugin-catalog-react": "^1.12.4-next.0",
64
+ "@backstage/plugin-signals-react": "^0.0.5-next.0",
65
65
  "@backstage/plugin-user-settings-common": "^0.0.1",
66
66
  "@backstage/theme": "^0.5.6",
67
67
  "@backstage/types": "^1.1.1",
@@ -73,10 +73,10 @@
73
73
  "zen-observable": "^0.10.0"
74
74
  },
75
75
  "devDependencies": {
76
- "@backstage/cli": "^0.27.0",
77
- "@backstage/dev-utils": "^1.0.37",
78
- "@backstage/plugin-catalog": "^1.22.0",
79
- "@backstage/test-utils": "^1.5.10",
76
+ "@backstage/cli": "^0.27.1-next.0",
77
+ "@backstage/dev-utils": "^1.0.38-next.0",
78
+ "@backstage/plugin-catalog": "^1.22.1-next.0",
79
+ "@backstage/test-utils": "^1.6.0-next.0",
80
80
  "@testing-library/dom": "^10.0.0",
81
81
  "@testing-library/jest-dom": "^6.0.0",
82
82
  "@testing-library/react": "^15.0.0",