@myissue/vue-website-page-builder 3.5.57 → 3.5.59

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 CHANGED
@@ -107,6 +107,7 @@ declare interface BuildProductSectionStyleOptions {
107
107
  hidePrice?: boolean;
108
108
  hideImage?: boolean;
109
109
  hideButton?: boolean;
110
+ hideLinks?: boolean;
110
111
  mobileColumns?: 1 | 2;
111
112
  }
112
113
 
@@ -165,6 +166,8 @@ export declare interface InsertProductsOptions {
165
166
  hideImage?: boolean;
166
167
  /** Hides the CTA button when product data includes url and buttonText */
167
168
  hideButton?: boolean;
169
+ /** Removes clickable links from product cards (title/image/CTA). */
170
+ hideLinks?: boolean;
168
171
  sectionTitle?: string;
169
172
  /** unshift | push | insert (uses current add index) */
170
173
  method?: 'unshift' | 'push' | 'insert' | (string & {});
@@ -931,10 +934,10 @@ export declare class PageBuilderService {
931
934
  /**
932
935
  * Handles the form submission process, clearing local storage and the DOM.
933
936
  * By default, global page settings (classes / inline styles on the wrapper)
934
- * are preserved so they survive a "remove all components" action.
937
+ * are reset so a brand-new resource starts clean after submit.
935
938
  *
936
- * Pass `{ preservePageSettings: false }` when starting a brand-new resource
937
- * after submit, so wrapper classes/styles are reset.
939
+ * Pass `{ preservePageSettings: true }` when you want "remove all components"
940
+ * behavior that keeps wrapper classes/styles.
938
941
  * @returns {Promise<void>}
939
942
  */
940
943
  handleFormSubmission(options?: {
@@ -1255,6 +1258,8 @@ export declare interface ProductSectionOptions {
1255
1258
  hideImage?: boolean;
1256
1259
  /** Hides the CTA button when product data includes url and buttonText */
1257
1260
  hideButton?: boolean;
1261
+ /** Removes clickable links from product cards (title/image/CTA). */
1262
+ hideLinks?: boolean;
1258
1263
  }
1259
1264
 
1260
1265
  /**