@bluepic/embed 0.1.82 → 0.1.83

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.
Files changed (29) hide show
  1. package/lib/bluepic-embed.es.js +1694 -1580
  2. package/lib/bluepic-embed.umd.js +38 -38
  3. package/lib/components/BluepicEmbeddedEditor.vue.d.ts +341 -0
  4. package/lib/components/BluepicEmbeddedEditor.vue.d.ts.map +1 -1
  5. package/lib/components/CollectionEntryFields.vue.d.ts +7 -0
  6. package/lib/components/CollectionEntryFields.vue.d.ts.map +1 -1
  7. package/lib/components/CollectionFieldPopup.vue.d.ts +7 -0
  8. package/lib/components/CollectionFieldPopup.vue.d.ts.map +1 -1
  9. package/lib/components/Fields.vue.d.ts +7 -0
  10. package/lib/components/Fields.vue.d.ts.map +1 -1
  11. package/lib/components/ImportData.vue.d.ts +320 -0
  12. package/lib/components/ImportData.vue.d.ts.map +1 -1
  13. package/lib/components/KioskField.vue.d.ts +7 -0
  14. package/lib/components/KioskField.vue.d.ts.map +1 -1
  15. package/lib/components/MobileFieldsSlide.vue.d.ts +7 -0
  16. package/lib/components/MobileFieldsSlide.vue.d.ts.map +1 -1
  17. package/lib/components/TableDataMatcher.vue.d.ts +320 -0
  18. package/lib/components/TableDataMatcher.vue.d.ts.map +1 -1
  19. package/lib/components/fields/Collection.vue.d.ts +7 -0
  20. package/lib/components/fields/Collection.vue.d.ts.map +1 -1
  21. package/lib/components/fields/Group.vue.d.ts +7 -0
  22. package/lib/components/fields/Group.vue.d.ts.map +1 -1
  23. package/lib/components/fields/HighlightedText.vue.d.ts +12278 -0
  24. package/lib/components/fields/HighlightedText.vue.d.ts.map +1 -0
  25. package/lib/components/fields/index.d.ts +1 -0
  26. package/lib/components/fields/index.d.ts.map +1 -1
  27. package/lib/util/fields.d.ts +16 -0
  28. package/lib/util/fields.d.ts.map +1 -1
  29. package/package.json +2 -2
@@ -129,6 +129,46 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
129
129
  placeholder: string | (() => string | (() => string)) | (() => string);
130
130
  maxHeight: string | (() => string | (() => string | null) | null) | (() => string | null) | null;
131
131
  };
132
+ } | {
133
+ type: "HighlightedText";
134
+ model: {
135
+ modelValue: string;
136
+ };
137
+ description?: string | undefined;
138
+ detailedDescription?: string | undefined;
139
+ layout: {
140
+ minWidth: string;
141
+ maxWidth: string;
142
+ };
143
+ hitbox?: {
144
+ x: number;
145
+ y: number;
146
+ width: number;
147
+ height: number;
148
+ zIndex?: number | undefined;
149
+ } | undefined;
150
+ frameIndex?: number | undefined;
151
+ props: {
152
+ options: (() => (() => import("@bluepic/types").RichTextOption[]) | import("@bluepic/types").RichTextOption[]) | (() => import("@bluepic/types").RichTextOption[]) | {
153
+ label: string;
154
+ style: {
155
+ fontSize?: number | undefined;
156
+ fontWeight?: number | undefined;
157
+ fontStyle?: "normal" | "italic" | "condensed" | undefined;
158
+ fontFamily?: string | undefined;
159
+ letterSpacing?: number | undefined;
160
+ scale?: number | undefined;
161
+ rotate?: number | undefined;
162
+ color?: string | undefined;
163
+ customClass?: string | undefined;
164
+ highlightColor?: string | undefined;
165
+ textDecoration?: string | undefined;
166
+ };
167
+ }[];
168
+ userAgentRichText: boolean | (() => boolean | (() => boolean)) | (() => boolean);
169
+ noStyleLabel: import("@bluepic/types").Localized<string> | (() => import("@bluepic/types").Localized<string> | (() => import("@bluepic/types").Localized<string>)) | (() => import("@bluepic/types").Localized<string>);
170
+ mixedStyleLabel: import("@bluepic/types").Localized<string> | (() => import("@bluepic/types").Localized<string> | (() => import("@bluepic/types").Localized<string>)) | (() => import("@bluepic/types").Localized<string>);
171
+ };
132
172
  } | {
133
173
  type: "ImageAdjust";
134
174
  model: {
@@ -297,6 +337,46 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
297
337
  placeholder: string | (() => string | (() => string)) | (() => string);
298
338
  maxHeight: string | (() => string | (() => string | null) | null) | (() => string | null) | null;
299
339
  };
340
+ } | {
341
+ type: "HighlightedText";
342
+ model: {
343
+ modelValue: string;
344
+ };
345
+ description?: string | undefined;
346
+ detailedDescription?: string | undefined;
347
+ layout: {
348
+ minWidth: string;
349
+ maxWidth: string;
350
+ };
351
+ hitbox?: {
352
+ x: number;
353
+ y: number;
354
+ width: number;
355
+ height: number;
356
+ zIndex?: number | undefined;
357
+ } | undefined;
358
+ frameIndex?: number | undefined;
359
+ props: {
360
+ options: (() => (() => import("@bluepic/types").RichTextOption[]) | import("@bluepic/types").RichTextOption[]) | (() => import("@bluepic/types").RichTextOption[]) | {
361
+ label: string;
362
+ style: {
363
+ fontSize?: number | undefined;
364
+ fontWeight?: number | undefined;
365
+ fontStyle?: "normal" | "italic" | "condensed" | undefined;
366
+ fontFamily?: string | undefined;
367
+ letterSpacing?: number | undefined;
368
+ scale?: number | undefined;
369
+ rotate?: number | undefined;
370
+ color?: string | undefined;
371
+ customClass?: string | undefined;
372
+ highlightColor?: string | undefined;
373
+ textDecoration?: string | undefined;
374
+ };
375
+ }[];
376
+ userAgentRichText: boolean | (() => boolean | (() => boolean)) | (() => boolean);
377
+ noStyleLabel: import("@bluepic/types").Localized<string> | (() => import("@bluepic/types").Localized<string> | (() => import("@bluepic/types").Localized<string>)) | (() => import("@bluepic/types").Localized<string>);
378
+ mixedStyleLabel: import("@bluepic/types").Localized<string> | (() => import("@bluepic/types").Localized<string> | (() => import("@bluepic/types").Localized<string>)) | (() => import("@bluepic/types").Localized<string>);
379
+ };
300
380
  } | {
301
381
  type: "ImageAdjust";
302
382
  model: {
@@ -465,6 +545,46 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
465
545
  placeholder: string | (() => string | (() => string)) | (() => string);
466
546
  maxHeight: string | (() => string | (() => string | null) | null) | (() => string | null) | null;
467
547
  };
548
+ } | {
549
+ type: "HighlightedText";
550
+ model: {
551
+ modelValue: string;
552
+ };
553
+ description?: string | undefined;
554
+ detailedDescription?: string | undefined;
555
+ layout: {
556
+ minWidth: string;
557
+ maxWidth: string;
558
+ };
559
+ hitbox?: {
560
+ x: number;
561
+ y: number;
562
+ width: number;
563
+ height: number;
564
+ zIndex?: number | undefined;
565
+ } | undefined;
566
+ frameIndex?: number | undefined;
567
+ props: {
568
+ options: (() => (() => import("@bluepic/types").RichTextOption[]) | import("@bluepic/types").RichTextOption[]) | (() => import("@bluepic/types").RichTextOption[]) | {
569
+ label: string;
570
+ style: {
571
+ fontSize?: number | undefined;
572
+ fontWeight?: number | undefined;
573
+ fontStyle?: "normal" | "italic" | "condensed" | undefined;
574
+ fontFamily?: string | undefined;
575
+ letterSpacing?: number | undefined;
576
+ scale?: number | undefined;
577
+ rotate?: number | undefined;
578
+ color?: string | undefined;
579
+ customClass?: string | undefined;
580
+ highlightColor?: string | undefined;
581
+ textDecoration?: string | undefined;
582
+ };
583
+ }[];
584
+ userAgentRichText: boolean | (() => boolean | (() => boolean)) | (() => boolean);
585
+ noStyleLabel: import("@bluepic/types").Localized<string> | (() => import("@bluepic/types").Localized<string> | (() => import("@bluepic/types").Localized<string>)) | (() => import("@bluepic/types").Localized<string>);
586
+ mixedStyleLabel: import("@bluepic/types").Localized<string> | (() => import("@bluepic/types").Localized<string> | (() => import("@bluepic/types").Localized<string>)) | (() => import("@bluepic/types").Localized<string>);
587
+ };
468
588
  } | {
469
589
  type: "ImageAdjust";
470
590
  model: {
@@ -1215,6 +1335,46 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
1215
1335
  placeholder: string | (() => string | (() => string)) | (() => string);
1216
1336
  maxHeight: string | (() => string | (() => string | null) | null) | (() => string | null) | null;
1217
1337
  };
1338
+ } | {
1339
+ type: "HighlightedText";
1340
+ model: {
1341
+ modelValue: string;
1342
+ };
1343
+ description?: string | undefined;
1344
+ detailedDescription?: string | undefined;
1345
+ layout: {
1346
+ minWidth: string;
1347
+ maxWidth: string;
1348
+ };
1349
+ hitbox?: {
1350
+ x: number;
1351
+ y: number;
1352
+ width: number;
1353
+ height: number;
1354
+ zIndex?: number | undefined;
1355
+ } | undefined;
1356
+ frameIndex?: number | undefined;
1357
+ props: {
1358
+ options: (() => (() => import("@bluepic/types").RichTextOption[]) | import("@bluepic/types").RichTextOption[]) | (() => import("@bluepic/types").RichTextOption[]) | {
1359
+ label: string;
1360
+ style: {
1361
+ fontSize?: number | undefined;
1362
+ fontWeight?: number | undefined;
1363
+ fontStyle?: "normal" | "italic" | "condensed" | undefined;
1364
+ fontFamily?: string | undefined;
1365
+ letterSpacing?: number | undefined;
1366
+ scale?: number | undefined;
1367
+ rotate?: number | undefined;
1368
+ color?: string | undefined;
1369
+ customClass?: string | undefined;
1370
+ highlightColor?: string | undefined;
1371
+ textDecoration?: string | undefined;
1372
+ };
1373
+ }[];
1374
+ userAgentRichText: boolean | (() => boolean | (() => boolean)) | (() => boolean);
1375
+ noStyleLabel: import("@bluepic/types").Localized<string> | (() => import("@bluepic/types").Localized<string> | (() => import("@bluepic/types").Localized<string>)) | (() => import("@bluepic/types").Localized<string>);
1376
+ mixedStyleLabel: import("@bluepic/types").Localized<string> | (() => import("@bluepic/types").Localized<string> | (() => import("@bluepic/types").Localized<string>)) | (() => import("@bluepic/types").Localized<string>);
1377
+ };
1218
1378
  } | {
1219
1379
  type: "ImageAdjust";
1220
1380
  model: {
@@ -1943,6 +2103,46 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
1943
2103
  placeholder: string | (() => string | (() => string)) | (() => string);
1944
2104
  maxHeight: string | (() => string | (() => string | null) | null) | (() => string | null) | null;
1945
2105
  };
2106
+ } | {
2107
+ type: "HighlightedText";
2108
+ model: {
2109
+ modelValue: string;
2110
+ };
2111
+ description?: string | undefined;
2112
+ detailedDescription?: string | undefined;
2113
+ layout: {
2114
+ minWidth: string;
2115
+ maxWidth: string;
2116
+ };
2117
+ hitbox?: {
2118
+ x: number;
2119
+ y: number;
2120
+ width: number;
2121
+ height: number;
2122
+ zIndex?: number | undefined;
2123
+ } | undefined;
2124
+ frameIndex?: number | undefined;
2125
+ props: {
2126
+ options: (() => (() => import("@bluepic/types").RichTextOption[]) | import("@bluepic/types").RichTextOption[]) | (() => import("@bluepic/types").RichTextOption[]) | {
2127
+ label: string;
2128
+ style: {
2129
+ fontSize?: number | undefined;
2130
+ fontWeight?: number | undefined;
2131
+ fontStyle?: "normal" | "italic" | "condensed" | undefined;
2132
+ fontFamily?: string | undefined;
2133
+ letterSpacing?: number | undefined;
2134
+ scale?: number | undefined;
2135
+ rotate?: number | undefined;
2136
+ color?: string | undefined;
2137
+ customClass?: string | undefined;
2138
+ highlightColor?: string | undefined;
2139
+ textDecoration?: string | undefined;
2140
+ };
2141
+ }[];
2142
+ userAgentRichText: boolean | (() => boolean | (() => boolean)) | (() => boolean);
2143
+ noStyleLabel: import("@bluepic/types").Localized<string> | (() => import("@bluepic/types").Localized<string> | (() => import("@bluepic/types").Localized<string>)) | (() => import("@bluepic/types").Localized<string>);
2144
+ mixedStyleLabel: import("@bluepic/types").Localized<string> | (() => import("@bluepic/types").Localized<string> | (() => import("@bluepic/types").Localized<string>)) | (() => import("@bluepic/types").Localized<string>);
2145
+ };
1946
2146
  } | {
1947
2147
  type: "ImageAdjust";
1948
2148
  model: {
@@ -2111,6 +2311,46 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
2111
2311
  placeholder: string | (() => string | (() => string)) | (() => string);
2112
2312
  maxHeight: string | (() => string | (() => string | null) | null) | (() => string | null) | null;
2113
2313
  };
2314
+ } | {
2315
+ type: "HighlightedText";
2316
+ model: {
2317
+ modelValue: string;
2318
+ };
2319
+ description?: string | undefined;
2320
+ detailedDescription?: string | undefined;
2321
+ layout: {
2322
+ minWidth: string;
2323
+ maxWidth: string;
2324
+ };
2325
+ hitbox?: {
2326
+ x: number;
2327
+ y: number;
2328
+ width: number;
2329
+ height: number;
2330
+ zIndex?: number | undefined;
2331
+ } | undefined;
2332
+ frameIndex?: number | undefined;
2333
+ props: {
2334
+ options: (() => (() => import("@bluepic/types").RichTextOption[]) | import("@bluepic/types").RichTextOption[]) | (() => import("@bluepic/types").RichTextOption[]) | {
2335
+ label: string;
2336
+ style: {
2337
+ fontSize?: number | undefined;
2338
+ fontWeight?: number | undefined;
2339
+ fontStyle?: "normal" | "italic" | "condensed" | undefined;
2340
+ fontFamily?: string | undefined;
2341
+ letterSpacing?: number | undefined;
2342
+ scale?: number | undefined;
2343
+ rotate?: number | undefined;
2344
+ color?: string | undefined;
2345
+ customClass?: string | undefined;
2346
+ highlightColor?: string | undefined;
2347
+ textDecoration?: string | undefined;
2348
+ };
2349
+ }[];
2350
+ userAgentRichText: boolean | (() => boolean | (() => boolean)) | (() => boolean);
2351
+ noStyleLabel: import("@bluepic/types").Localized<string> | (() => import("@bluepic/types").Localized<string> | (() => import("@bluepic/types").Localized<string>)) | (() => import("@bluepic/types").Localized<string>);
2352
+ mixedStyleLabel: import("@bluepic/types").Localized<string> | (() => import("@bluepic/types").Localized<string> | (() => import("@bluepic/types").Localized<string>)) | (() => import("@bluepic/types").Localized<string>);
2353
+ };
2114
2354
  } | {
2115
2355
  type: "ImageAdjust";
2116
2356
  model: {
@@ -2279,6 +2519,46 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
2279
2519
  placeholder: string | (() => string | (() => string)) | (() => string);
2280
2520
  maxHeight: string | (() => string | (() => string | null) | null) | (() => string | null) | null;
2281
2521
  };
2522
+ } | {
2523
+ type: "HighlightedText";
2524
+ model: {
2525
+ modelValue: string;
2526
+ };
2527
+ description?: string | undefined;
2528
+ detailedDescription?: string | undefined;
2529
+ layout: {
2530
+ minWidth: string;
2531
+ maxWidth: string;
2532
+ };
2533
+ hitbox?: {
2534
+ x: number;
2535
+ y: number;
2536
+ width: number;
2537
+ height: number;
2538
+ zIndex?: number | undefined;
2539
+ } | undefined;
2540
+ frameIndex?: number | undefined;
2541
+ props: {
2542
+ options: (() => (() => import("@bluepic/types").RichTextOption[]) | import("@bluepic/types").RichTextOption[]) | (() => import("@bluepic/types").RichTextOption[]) | {
2543
+ label: string;
2544
+ style: {
2545
+ fontSize?: number | undefined;
2546
+ fontWeight?: number | undefined;
2547
+ fontStyle?: "normal" | "italic" | "condensed" | undefined;
2548
+ fontFamily?: string | undefined;
2549
+ letterSpacing?: number | undefined;
2550
+ scale?: number | undefined;
2551
+ rotate?: number | undefined;
2552
+ color?: string | undefined;
2553
+ customClass?: string | undefined;
2554
+ highlightColor?: string | undefined;
2555
+ textDecoration?: string | undefined;
2556
+ };
2557
+ }[];
2558
+ userAgentRichText: boolean | (() => boolean | (() => boolean)) | (() => boolean);
2559
+ noStyleLabel: import("@bluepic/types").Localized<string> | (() => import("@bluepic/types").Localized<string> | (() => import("@bluepic/types").Localized<string>)) | (() => import("@bluepic/types").Localized<string>);
2560
+ mixedStyleLabel: import("@bluepic/types").Localized<string> | (() => import("@bluepic/types").Localized<string> | (() => import("@bluepic/types").Localized<string>)) | (() => import("@bluepic/types").Localized<string>);
2561
+ };
2282
2562
  } | {
2283
2563
  type: "ImageAdjust";
2284
2564
  model: {
@@ -3029,6 +3309,46 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
3029
3309
  placeholder: string | (() => string | (() => string)) | (() => string);
3030
3310
  maxHeight: string | (() => string | (() => string | null) | null) | (() => string | null) | null;
3031
3311
  };
3312
+ } | {
3313
+ type: "HighlightedText";
3314
+ model: {
3315
+ modelValue: string;
3316
+ };
3317
+ description?: string | undefined;
3318
+ detailedDescription?: string | undefined;
3319
+ layout: {
3320
+ minWidth: string;
3321
+ maxWidth: string;
3322
+ };
3323
+ hitbox?: {
3324
+ x: number;
3325
+ y: number;
3326
+ width: number;
3327
+ height: number;
3328
+ zIndex?: number | undefined;
3329
+ } | undefined;
3330
+ frameIndex?: number | undefined;
3331
+ props: {
3332
+ options: (() => (() => import("@bluepic/types").RichTextOption[]) | import("@bluepic/types").RichTextOption[]) | (() => import("@bluepic/types").RichTextOption[]) | {
3333
+ label: string;
3334
+ style: {
3335
+ fontSize?: number | undefined;
3336
+ fontWeight?: number | undefined;
3337
+ fontStyle?: "normal" | "italic" | "condensed" | undefined;
3338
+ fontFamily?: string | undefined;
3339
+ letterSpacing?: number | undefined;
3340
+ scale?: number | undefined;
3341
+ rotate?: number | undefined;
3342
+ color?: string | undefined;
3343
+ customClass?: string | undefined;
3344
+ highlightColor?: string | undefined;
3345
+ textDecoration?: string | undefined;
3346
+ };
3347
+ }[];
3348
+ userAgentRichText: boolean | (() => boolean | (() => boolean)) | (() => boolean);
3349
+ noStyleLabel: import("@bluepic/types").Localized<string> | (() => import("@bluepic/types").Localized<string> | (() => import("@bluepic/types").Localized<string>)) | (() => import("@bluepic/types").Localized<string>);
3350
+ mixedStyleLabel: import("@bluepic/types").Localized<string> | (() => import("@bluepic/types").Localized<string> | (() => import("@bluepic/types").Localized<string>)) | (() => import("@bluepic/types").Localized<string>);
3351
+ };
3032
3352
  } | {
3033
3353
  type: "ImageAdjust";
3034
3354
  model: {
@@ -1 +1 @@
1
- {"version":3,"file":"TableDataMatcher.vue.d.ts","sourceRoot":"","sources":["TableDataMatcher.vue.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAS9C,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0BA8Bc,MAAM;qCAIK,MAAM;0BAgBjB,YAAY,eAAe,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iFAiB5D,CAAA;AACF,eAAe,SAAS,CAAA"}
1
+ {"version":3,"file":"TableDataMatcher.vue.d.ts","sourceRoot":"","sources":["TableDataMatcher.vue.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAS9C,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0BA8Bc,MAAM;qCAIK,MAAM;0BAgBjB,YAAY,eAAe,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iFAiB5D,CAAA;AACF,eAAe,SAAS,CAAA"}
@@ -368,6 +368,8 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
368
368
  modelValue: string;
369
369
  } | {
370
370
  modelValue: string;
371
+ } | {
372
+ modelValue: string;
371
373
  } | {
372
374
  image: string;
373
375
  adjust: string;
@@ -422,6 +424,11 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
422
424
  };
423
425
  placeholder: string;
424
426
  maxHeight: string | null;
427
+ }>> | import("@bluepic/types").FieldProps<import("@bluepic/types").FieldProps<{
428
+ options: import("@bluepic/types").RichTextOption[];
429
+ userAgentRichText: boolean;
430
+ noStyleLabel: import("@bluepic/types").Localized<string>;
431
+ mixedStyleLabel: import("@bluepic/types").Localized<string>;
425
432
  }>> | import("@bluepic/types").FieldProps<import("@bluepic/types").FieldProps<{
426
433
  minX: number;
427
434
  maxX: number;
@@ -1 +1 @@
1
- {"version":3,"file":"Collection.vue.d.ts","sourceRoot":"","sources":["Collection.vue.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAe5D,QAAA,MAAM,SAAS;;;;;;;mCA2EuB,MAAM;yBAGhB,MAAM;0BAOL,MAAM,YAAY,MAAM;8BAcpB,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4EAwCrC,CAAA;AACF,eAAe,SAAS,CAAA"}
1
+ {"version":3,"file":"Collection.vue.d.ts","sourceRoot":"","sources":["Collection.vue.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAe5D,QAAA,MAAM,SAAS;;;;;;;mCA2EuB,MAAM;yBAGhB,MAAM;0BAOL,MAAM,YAAY,MAAM;8BAcpB,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4EAwCrC,CAAA;AACF,eAAe,SAAS,CAAA"}
@@ -65,6 +65,8 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
65
65
  modelValue: string;
66
66
  } | {
67
67
  modelValue: string;
68
+ } | {
69
+ modelValue: string;
68
70
  } | {
69
71
  image: string;
70
72
  adjust: string;
@@ -119,6 +121,11 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
119
121
  };
120
122
  placeholder: string;
121
123
  maxHeight: string | null;
124
+ }>> | import("@bluepic/types").FieldProps<import("@bluepic/types").FieldProps<{
125
+ options: import("@bluepic/types").RichTextOption[];
126
+ userAgentRichText: boolean;
127
+ noStyleLabel: import("@bluepic/types").Localized<string>;
128
+ mixedStyleLabel: import("@bluepic/types").Localized<string>;
122
129
  }>> | import("@bluepic/types").FieldProps<import("@bluepic/types").FieldProps<{
123
130
  minX: number;
124
131
  maxX: number;
@@ -1 +1 @@
1
- {"version":3,"file":"Group.vue.d.ts","sourceRoot":"","sources":["Group.vue.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAS5D,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4EAqBb,CAAA;AACF,eAAe,SAAS,CAAA"}
1
+ {"version":3,"file":"Group.vue.d.ts","sourceRoot":"","sources":["Group.vue.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAS5D,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4EAqBb,CAAA;AACF,eAAe,SAAS,CAAA"}