@myissue/vue-website-page-builder 3.5.76 → 3.5.78
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/index.d.ts +15 -2
- package/dist/style.css +1 -1
- package/dist/vue-website-page-builder.js +16288 -15704
- package/dist/vue-website-page-builder.umd.cjs +87 -86
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -267,7 +267,18 @@ export declare interface PageBuilderConfig {
|
|
|
267
267
|
elementFonts?: PageBuilderElementFonts;
|
|
268
268
|
} | null;
|
|
269
269
|
settings?: {
|
|
270
|
-
|
|
270
|
+
/** Primary brand / accent color for links, UI chrome, and focus states. */
|
|
271
|
+
brandColor?: string | null;
|
|
272
|
+
/**
|
|
273
|
+
* Filled button / CTA background color (`myPrimaryButtonColor`).
|
|
274
|
+
* When omitted, falls back to `brandColor`, then the default green.
|
|
275
|
+
*/
|
|
276
|
+
buttonColor?: string | null;
|
|
277
|
+
/**
|
|
278
|
+
* Label / icon color on filled buttons (`myPrimaryButtonTextColor`).
|
|
279
|
+
* Defaults to white when omitted — use a dark hex for light button backgrounds.
|
|
280
|
+
*/
|
|
281
|
+
buttonTextColor?: string | null;
|
|
271
282
|
themeColorPresets?: ThemeColorPresetSettingsInput | ThemeColorPresetSettings | null;
|
|
272
283
|
[key: string]: unknown;
|
|
273
284
|
} | null;
|
|
@@ -1616,7 +1627,9 @@ export declare const usePageBuilderStateStore: StoreDefinition<"pageBuilderState
|
|
|
1616
1627
|
} | null | undefined;
|
|
1617
1628
|
settings?: {
|
|
1618
1629
|
[x: string]: unknown;
|
|
1619
|
-
brandColor?: string | undefined;
|
|
1630
|
+
brandColor?: string | null | undefined;
|
|
1631
|
+
buttonColor?: string | null | undefined;
|
|
1632
|
+
buttonTextColor?: string | null | undefined;
|
|
1620
1633
|
themeColorPresets?: {
|
|
1621
1634
|
[x: string]: unknown;
|
|
1622
1635
|
enabled?: boolean | undefined;
|