@backstage/plugin-user-settings-common 0.0.0-nightly-20240609021850

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 ADDED
@@ -0,0 +1,7 @@
1
+ # @backstage/plugin-user-settings-common
2
+
3
+ ## 0.0.0-nightly-20240609021850
4
+
5
+ ### Patch Changes
6
+
7
+ - e6ec179: Use signals to update user settings across sessions
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # @backstage/plugin-user-settings-common
2
+
3
+ Welcome to the common package for the user-settings plugin!
4
+
5
+ _This plugin was created through the Backstage CLI_
@@ -0,0 +1,3 @@
1
+ 'use strict';
2
+
3
+ //# sourceMappingURL=index.cjs.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.cjs.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;"}
@@ -0,0 +1,7 @@
1
+ /** @public */
2
+ type UserSettingsSignal = {
3
+ type: 'key-changed' | 'key-deleted';
4
+ key: string;
5
+ };
6
+
7
+ export type { UserSettingsSignal };
@@ -0,0 +1,2 @@
1
+
2
+ //# sourceMappingURL=index.esm.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
package/package.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "@backstage/plugin-user-settings-common",
3
+ "version": "0.0.0-nightly-20240609021850",
4
+ "description": "Common functionalities for the user-settings plugin",
5
+ "backstage": {
6
+ "role": "common-library"
7
+ },
8
+ "publishConfig": {
9
+ "access": "public",
10
+ "main": "dist/index.cjs.js",
11
+ "module": "dist/index.esm.js",
12
+ "types": "dist/index.d.ts"
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/backstage/backstage",
17
+ "directory": "plugins/user-settings-common"
18
+ },
19
+ "license": "Apache-2.0",
20
+ "sideEffects": false,
21
+ "main": "dist/index.cjs.js",
22
+ "types": "dist/index.d.ts",
23
+ "files": [
24
+ "dist"
25
+ ],
26
+ "scripts": {
27
+ "build": "backstage-cli package build",
28
+ "clean": "backstage-cli package clean",
29
+ "lint": "backstage-cli package lint",
30
+ "prepack": "backstage-cli package prepack",
31
+ "postpack": "backstage-cli package postpack",
32
+ "test": "backstage-cli package test"
33
+ },
34
+ "devDependencies": {
35
+ "@backstage/cli": "^0.0.0-nightly-20240609021850"
36
+ },
37
+ "module": "dist/index.esm.js"
38
+ }