@pushwoosh/rpc-gateway-ai-assistant 0.1.239 → 0.1.240
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/data.js +8 -0
- package/package.json +1 -1
- package/pushwoosh_aibuilder_v1.d.ts +12 -0
package/data.js
CHANGED
|
@@ -116,6 +116,10 @@ export const data = {
|
|
|
116
116
|
"color": {
|
|
117
117
|
"type": "string",
|
|
118
118
|
"optional": true
|
|
119
|
+
},
|
|
120
|
+
"letterSpacing": {
|
|
121
|
+
"type": "number",
|
|
122
|
+
"optional": true
|
|
119
123
|
}
|
|
120
124
|
}
|
|
121
125
|
},
|
|
@@ -364,6 +368,10 @@ export const data = {
|
|
|
364
368
|
},
|
|
365
369
|
"mobileAlign": {
|
|
366
370
|
"type": "pushwoosh.aibuilder.v1.TextAlign"
|
|
371
|
+
},
|
|
372
|
+
"letterSpacing": {
|
|
373
|
+
"type": "number",
|
|
374
|
+
"optional": true
|
|
367
375
|
}
|
|
368
376
|
}
|
|
369
377
|
},
|
package/package.json
CHANGED
|
@@ -167,6 +167,12 @@ export type TextVariantStyle = {
|
|
|
167
167
|
* variant colours are user preferences, round-tripped verbatim.
|
|
168
168
|
*/
|
|
169
169
|
color?: string;
|
|
170
|
+
/**
|
|
171
|
+
* Letter spacing (CSS letter-spacing) in px; fractional and negative
|
|
172
|
+
* values are meaningful ("-0.2" tightens display type). Unset = normal.
|
|
173
|
+
* Client-managed typography, round-tripped verbatim like font_family.
|
|
174
|
+
*/
|
|
175
|
+
letterSpacing?: number;
|
|
170
176
|
};
|
|
171
177
|
export type ColorSchemeItem = {
|
|
172
178
|
color: string;
|
|
@@ -408,6 +414,12 @@ export type TextBlock = {
|
|
|
408
414
|
mobileFontSize?: number;
|
|
409
415
|
/** Mobile alignment override. UNSPECIFIED = inherit `align` (explicit LEFT survives). Client-managed. */
|
|
410
416
|
mobileAlign: TextAlign;
|
|
417
|
+
/**
|
|
418
|
+
* Per-item letter-spacing override in px (fractional/negative meaningful;
|
|
419
|
+
* explicit 0 = "normal", overriding a variant's tracking). Unset = inherit
|
|
420
|
+
* TextVariantStyle.letter_spacing. Client-managed, like font_size.
|
|
421
|
+
*/
|
|
422
|
+
letterSpacing?: number;
|
|
411
423
|
};
|
|
412
424
|
export type ButtonActionHref = {
|
|
413
425
|
url: string;
|