@crossworks/share-ui 0.232.64 → 0.232.65
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/package.json +3 -3
- package/src/appearance.ts +6 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crossworks/share-ui",
|
|
3
|
-
"version": "0.232.
|
|
3
|
+
"version": "0.232.65",
|
|
4
4
|
"description": "The server-rendered share surface — the /s/<token> presenters, view-payload contract, mini-app sandbox, and the few primitives they need. Lives in MANTLE (the server renders these), published for jackdaw to consume; may depend only on @mantle/{client-types,content-core} (the jackdaw-repo-split boundary).",
|
|
5
5
|
"exports": {
|
|
6
6
|
"./app-presenter": "./src/app-presenter.tsx",
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"./styles/app.css": "./styles/app.css"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@mantle/client-types": "npm:@crossworks/client-types@0.232.
|
|
36
|
-
"@mantle/content-core": "npm:@crossworks/content-core@0.232.
|
|
35
|
+
"@mantle/client-types": "npm:@crossworks/client-types@0.232.65",
|
|
36
|
+
"@mantle/content-core": "npm:@crossworks/content-core@0.232.65",
|
|
37
37
|
"@radix-ui/react-label": "^2.1.12",
|
|
38
38
|
"@radix-ui/react-slot": "^1.3.0",
|
|
39
39
|
"class-variance-authority": "^0.7.1",
|
package/src/appearance.ts
CHANGED
|
@@ -55,6 +55,12 @@ export type BrainAppearance = {
|
|
|
55
55
|
avatarStyle: string | null;
|
|
56
56
|
avatarTint: string | null;
|
|
57
57
|
backgrounds: string | null;
|
|
58
|
+
/** The generated whole-surface Neat gradient's spec, compact JSON
|
|
59
|
+
* `{v,seed,tone,speed}` — colours derive from the live theme client-side.
|
|
60
|
+
* NOT stamped onto `<html>`: it feeds a WebGL component, not the CSS.
|
|
61
|
+
* Optional for the published-contract reason below: readers treat absence
|
|
62
|
+
* as "not set" and paint the plain themed fill. */
|
|
63
|
+
neatBackground?: string | null;
|
|
58
64
|
/**
|
|
59
65
|
* WHO this brain is — its own name, the name of the box, and whether an
|
|
60
66
|
* uploaded logo exists. Unlike everything above these are NOT stamped onto
|