@gratiaos/pad-core 1.0.2 → 1.0.4
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/dist/types.d.ts +1 -1
- package/package.json +5 -4
package/dist/types.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ export type PadSceneId = string;
|
|
|
18
18
|
/** Alias for clarity in scene-related modules. */
|
|
19
19
|
export type SceneId = PadSceneId;
|
|
20
20
|
/** A pad's transient “mood” (used for micro-animations / ambience). */
|
|
21
|
-
export type PadMood = 'soft' | 'focused' | 'celebratory';
|
|
21
|
+
export type PadMood = 'soft' | 'focused' | 'celebratory' | 'presence';
|
|
22
22
|
/** Optional theme nudge a pad can suggest to its host shell. */
|
|
23
23
|
export interface PadTheme {
|
|
24
24
|
/** CSS color token or hex (host decides how to interpret). */
|
package/package.json
CHANGED
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gratiaos/pad-core",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Shared pad contract, registry, routing, and realtime events for Garden apps.",
|
|
5
5
|
"funding": "https://github.com/sponsors/GratiaOS",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"license": "AGPL-3.0-only",
|
|
8
8
|
"publishConfig": {
|
|
9
9
|
"access": "public",
|
|
10
|
+
"registry": "https://registry.npmjs.org/",
|
|
10
11
|
"provenance": true
|
|
11
12
|
},
|
|
12
13
|
"repository": {
|
|
13
14
|
"type": "git",
|
|
14
|
-
"url": "https://github.com/GratiaOS/garden-core.git",
|
|
15
|
+
"url": "git+https://github.com/GratiaOS/garden-core.git",
|
|
15
16
|
"directory": "packages/pad-core"
|
|
16
17
|
},
|
|
17
18
|
"sideEffects": false,
|
|
@@ -41,8 +42,8 @@
|
|
|
41
42
|
"clean": "rimraf dist"
|
|
42
43
|
},
|
|
43
44
|
"devDependencies": {
|
|
44
|
-
"@types/react": "^19.
|
|
45
|
-
"react": "^19.
|
|
45
|
+
"@types/react": "^19.2.2",
|
|
46
|
+
"react": "^19.2.0",
|
|
46
47
|
"typescript": "^5.9.3",
|
|
47
48
|
"rimraf": "^6.0.1"
|
|
48
49
|
}
|