@pushwoosh/rpc-gateway-ai-assistant 0.1.191 → 0.1.192
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 +4 -0
- package/package.json +1 -1
- package/pushwoosh_aibuilder_v1.d.ts +8 -2
package/data.js
CHANGED
package/package.json
CHANGED
|
@@ -187,8 +187,8 @@ export type EdgeInsets = {
|
|
|
187
187
|
* LLM-managed: background_color, border_color, border_radius — the
|
|
188
188
|
* block generator may emit these via AiGenBlockStyles and the
|
|
189
189
|
* pipeline lifts them into BlockStyles.
|
|
190
|
-
* Client-managed: border_width — the LLM never sees
|
|
191
|
-
* preserves
|
|
190
|
+
* Client-managed: border_width and border_radius_css — the LLM never sees
|
|
191
|
+
* them, the backend preserves them verbatim across edits.
|
|
192
192
|
*/
|
|
193
193
|
export type BlockStyles = {
|
|
194
194
|
/**
|
|
@@ -205,6 +205,12 @@ export type BlockStyles = {
|
|
|
205
205
|
borderWidth?: number;
|
|
206
206
|
/** Explicit 0 is distinct from unset and preserved. */
|
|
207
207
|
borderRadius?: number;
|
|
208
|
+
/**
|
|
209
|
+
* CSS border-radius shorthand for per-corner rounding ("20px 20px 0px
|
|
210
|
+
* 0px"). Written by Unlayer conversion; clients render border_radius
|
|
211
|
+
* when set (user-edited uniform value wins), else this.
|
|
212
|
+
*/
|
|
213
|
+
borderRadiusCss?: string;
|
|
208
214
|
};
|
|
209
215
|
/** Two-stop CSS linear gradient: `linear-gradient(<angle>deg, from, to)`. */
|
|
210
216
|
export type BackgroundGradient = {
|