lf-pagebuilder-vue 0.0.13 → 0.0.15

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
@@ -162,7 +162,8 @@ declare interface ComponentField_3 {
162
162
  image_cuts?: Array<{
163
163
  width: number;
164
164
  height: number;
165
- name: string;
165
+ label: string;
166
+ required?: boolean;
166
167
  }>;
167
168
  }
168
169
 
@@ -177,7 +178,8 @@ declare interface ComponentField_4 {
177
178
  image_cuts?: Array<{
178
179
  width: number;
179
180
  height: number;
180
- name: string;
181
+ label: string;
182
+ required?: boolean;
181
183
  }>;
182
184
  }
183
185
 
@@ -234,12 +236,20 @@ debugMode?: boolean;
234
236
  submitForm?: boolean;
235
237
  inputId?: string | null;
236
238
  excludeComponentTypes?: string[];
239
+ /** Public Key de Limbo (pk_xxx) - Si se proporciona, se inicializa Limbo automáticamente */
240
+ limboPublicKey?: string;
241
+ /** URL del endpoint proxy para obtener tokens (default: '/api/limbo-token') */
242
+ limboTokenEndpoint?: string;
237
243
  }>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
238
244
  isProduction?: boolean;
239
245
  debugMode?: boolean;
240
246
  submitForm?: boolean;
241
247
  inputId?: string | null;
242
248
  excludeComponentTypes?: string[];
249
+ /** Public Key de Limbo (pk_xxx) - Si se proporciona, se inicializa Limbo automáticamente */
250
+ limboPublicKey?: string;
251
+ /** URL del endpoint proxy para obtener tokens (default: '/api/limbo-token') */
252
+ limboTokenEndpoint?: string;
243
253
  }>>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
244
254
  export { _default as Pagebuilder }
245
255
  export default _default;
@@ -407,7 +417,8 @@ submitForm: boolean;
407
417
  export declare interface ImageCut {
408
418
  width: number;
409
419
  height: number;
410
- name: string;
420
+ label: string;
421
+ required?: boolean;
411
422
  }
412
423
 
413
424
  export declare const InitialComponent: DefineComponent<ExtractPropTypes< {