@myissue/vue-website-page-builder 3.5.58 → 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 & {});
@@ -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
  /**