lf-pagebuilder-vue 0.0.14 → 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.cjs +1 -1
- package/dist/index.d.ts +8 -0
- package/dist/index.js +1084 -987
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -236,12 +236,20 @@ debugMode?: boolean;
|
|
|
236
236
|
submitForm?: boolean;
|
|
237
237
|
inputId?: string | null;
|
|
238
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;
|
|
239
243
|
}>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
240
244
|
isProduction?: boolean;
|
|
241
245
|
debugMode?: boolean;
|
|
242
246
|
submitForm?: boolean;
|
|
243
247
|
inputId?: string | null;
|
|
244
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;
|
|
245
253
|
}>>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
246
254
|
export { _default as Pagebuilder }
|
|
247
255
|
export default _default;
|