delta-comic-core 0.0.2 → 0.0.3
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/LICENSE +661 -21
- package/README.md +30 -30
- package/dist/bundle.css +1 -1
- package/dist/bundle.js +170 -139
- package/dist/bundle.js.map +1 -1
- package/dist/bundle.umd.cjs +2 -2
- package/dist/bundle.umd.cjs.map +1 -1
- package/dist/components/content/unitCard.vue.d.ts +576 -108
- package/dist/components/image.vue.d.ts +288 -54
- package/dist/index.d.ts +672 -126
- package/dist/pack.tgz +0 -0
- package/dist/plugin/define.d.ts +51 -8
- package/dist/struct/content.d.ts +10 -1
- package/dist/struct/item.d.ts +1 -0
- package/package.json +8 -8
|
@@ -88,7 +88,20 @@ declare function __VLS_template(): {
|
|
|
88
88
|
arrowOffsetVertical: string;
|
|
89
89
|
arrowHeight: string;
|
|
90
90
|
padding: string;
|
|
91
|
-
},
|
|
91
|
+
}, {
|
|
92
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
93
|
+
height: string;
|
|
94
|
+
width: string;
|
|
95
|
+
borderRadius: string;
|
|
96
|
+
color: string;
|
|
97
|
+
colorHover: string;
|
|
98
|
+
railInsetHorizontalBottom: string;
|
|
99
|
+
railInsetHorizontalTop: string;
|
|
100
|
+
railInsetVerticalRight: string;
|
|
101
|
+
railInsetVerticalLeft: string;
|
|
102
|
+
railColor: string;
|
|
103
|
+
}, any>;
|
|
104
|
+
}>;
|
|
92
105
|
}>;
|
|
93
106
|
}>>;
|
|
94
107
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Image", {
|
|
@@ -117,7 +130,20 @@ declare function __VLS_template(): {
|
|
|
117
130
|
arrowOffsetVertical: string;
|
|
118
131
|
arrowHeight: string;
|
|
119
132
|
padding: string;
|
|
120
|
-
},
|
|
133
|
+
}, {
|
|
134
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
135
|
+
height: string;
|
|
136
|
+
width: string;
|
|
137
|
+
borderRadius: string;
|
|
138
|
+
color: string;
|
|
139
|
+
colorHover: string;
|
|
140
|
+
railInsetHorizontalBottom: string;
|
|
141
|
+
railInsetHorizontalTop: string;
|
|
142
|
+
railInsetVerticalRight: string;
|
|
143
|
+
railInsetVerticalLeft: string;
|
|
144
|
+
railColor: string;
|
|
145
|
+
}, any>;
|
|
146
|
+
}>;
|
|
121
147
|
}>;
|
|
122
148
|
}>>>;
|
|
123
149
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Image", {
|
|
@@ -146,7 +172,20 @@ declare function __VLS_template(): {
|
|
|
146
172
|
arrowOffsetVertical: string;
|
|
147
173
|
arrowHeight: string;
|
|
148
174
|
padding: string;
|
|
149
|
-
},
|
|
175
|
+
}, {
|
|
176
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
177
|
+
height: string;
|
|
178
|
+
width: string;
|
|
179
|
+
borderRadius: string;
|
|
180
|
+
color: string;
|
|
181
|
+
colorHover: string;
|
|
182
|
+
railInsetHorizontalBottom: string;
|
|
183
|
+
railInsetHorizontalTop: string;
|
|
184
|
+
railInsetVerticalRight: string;
|
|
185
|
+
railInsetVerticalLeft: string;
|
|
186
|
+
railColor: string;
|
|
187
|
+
}, any>;
|
|
188
|
+
}>;
|
|
150
189
|
}>;
|
|
151
190
|
}>>>;
|
|
152
191
|
alt: StringConstructor;
|
|
@@ -169,24 +208,24 @@ declare function __VLS_template(): {
|
|
|
169
208
|
onLoad: import('vue').PropType<(e: Event) => void>;
|
|
170
209
|
}>> & Readonly<{}>, {
|
|
171
210
|
click: () => void;
|
|
211
|
+
showPreview: () => void;
|
|
172
212
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
173
213
|
groupId: string | undefined;
|
|
174
214
|
previewInstRef: import('vue').Ref<{
|
|
175
215
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
176
|
-
|
|
177
|
-
toggleShow: () => void;
|
|
178
|
-
} | null, import('naive-ui/es/image/src/ImagePreview').ImagePreviewInst | {
|
|
216
|
+
} | null, import('naive-ui').ImagePreviewInst | {
|
|
179
217
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
180
|
-
setPreviewSrc: (src?: string) => void;
|
|
181
|
-
toggleShow: () => void;
|
|
182
218
|
} | null>;
|
|
183
219
|
imageRef: import('vue').Ref<HTMLImageElement | null, HTMLImageElement | null>;
|
|
220
|
+
mergedPreviewSrc: import('vue').ComputedRef<string | undefined>;
|
|
184
221
|
showError: import('vue').Ref<boolean, boolean>;
|
|
185
222
|
shouldStartLoading: import('vue').Ref<boolean, boolean>;
|
|
186
223
|
loaded: import('vue').Ref<boolean, boolean>;
|
|
187
|
-
mergedOnClick: (e:
|
|
224
|
+
mergedOnClick: (e: PointerEvent) => void;
|
|
225
|
+
onPreviewClose: () => void;
|
|
188
226
|
mergedOnError: (e: Event) => void;
|
|
189
227
|
mergedOnLoad: (e: Event) => void;
|
|
228
|
+
previewShow: import('vue').Ref<boolean, boolean>;
|
|
190
229
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
191
230
|
objectFit: "fill" | "none" | "contain" | "cover" | "scale-down";
|
|
192
231
|
lazy: boolean;
|
|
@@ -235,7 +274,20 @@ declare function __VLS_template(): {
|
|
|
235
274
|
arrowOffsetVertical: string;
|
|
236
275
|
arrowHeight: string;
|
|
237
276
|
padding: string;
|
|
238
|
-
},
|
|
277
|
+
}, {
|
|
278
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
279
|
+
height: string;
|
|
280
|
+
width: string;
|
|
281
|
+
borderRadius: string;
|
|
282
|
+
color: string;
|
|
283
|
+
colorHover: string;
|
|
284
|
+
railInsetHorizontalBottom: string;
|
|
285
|
+
railInsetHorizontalTop: string;
|
|
286
|
+
railInsetVerticalRight: string;
|
|
287
|
+
railInsetVerticalLeft: string;
|
|
288
|
+
railColor: string;
|
|
289
|
+
}, any>;
|
|
290
|
+
}>;
|
|
239
291
|
}>;
|
|
240
292
|
}>>;
|
|
241
293
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Image", {
|
|
@@ -264,7 +316,20 @@ declare function __VLS_template(): {
|
|
|
264
316
|
arrowOffsetVertical: string;
|
|
265
317
|
arrowHeight: string;
|
|
266
318
|
padding: string;
|
|
267
|
-
},
|
|
319
|
+
}, {
|
|
320
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
321
|
+
height: string;
|
|
322
|
+
width: string;
|
|
323
|
+
borderRadius: string;
|
|
324
|
+
color: string;
|
|
325
|
+
colorHover: string;
|
|
326
|
+
railInsetHorizontalBottom: string;
|
|
327
|
+
railInsetHorizontalTop: string;
|
|
328
|
+
railInsetVerticalRight: string;
|
|
329
|
+
railInsetVerticalLeft: string;
|
|
330
|
+
railColor: string;
|
|
331
|
+
}, any>;
|
|
332
|
+
}>;
|
|
268
333
|
}>;
|
|
269
334
|
}>>>;
|
|
270
335
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Image", {
|
|
@@ -293,7 +358,20 @@ declare function __VLS_template(): {
|
|
|
293
358
|
arrowOffsetVertical: string;
|
|
294
359
|
arrowHeight: string;
|
|
295
360
|
padding: string;
|
|
296
|
-
},
|
|
361
|
+
}, {
|
|
362
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
363
|
+
height: string;
|
|
364
|
+
width: string;
|
|
365
|
+
borderRadius: string;
|
|
366
|
+
color: string;
|
|
367
|
+
colorHover: string;
|
|
368
|
+
railInsetHorizontalBottom: string;
|
|
369
|
+
railInsetHorizontalTop: string;
|
|
370
|
+
railInsetVerticalRight: string;
|
|
371
|
+
railInsetVerticalLeft: string;
|
|
372
|
+
railColor: string;
|
|
373
|
+
}, any>;
|
|
374
|
+
}>;
|
|
297
375
|
}>;
|
|
298
376
|
}>>>;
|
|
299
377
|
alt: StringConstructor;
|
|
@@ -316,24 +394,24 @@ declare function __VLS_template(): {
|
|
|
316
394
|
onLoad: import('vue').PropType<(e: Event) => void>;
|
|
317
395
|
}>> & Readonly<{}>, {
|
|
318
396
|
click: () => void;
|
|
397
|
+
showPreview: () => void;
|
|
319
398
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
320
399
|
groupId: string | undefined;
|
|
321
400
|
previewInstRef: import('vue').Ref<{
|
|
322
401
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
323
|
-
|
|
324
|
-
toggleShow: () => void;
|
|
325
|
-
} | null, import('naive-ui/es/image/src/ImagePreview').ImagePreviewInst | {
|
|
402
|
+
} | null, import('naive-ui').ImagePreviewInst | {
|
|
326
403
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
327
|
-
setPreviewSrc: (src?: string) => void;
|
|
328
|
-
toggleShow: () => void;
|
|
329
404
|
} | null>;
|
|
330
405
|
imageRef: import('vue').Ref<HTMLImageElement | null, HTMLImageElement | null>;
|
|
406
|
+
mergedPreviewSrc: import('vue').ComputedRef<string | undefined>;
|
|
331
407
|
showError: import('vue').Ref<boolean, boolean>;
|
|
332
408
|
shouldStartLoading: import('vue').Ref<boolean, boolean>;
|
|
333
409
|
loaded: import('vue').Ref<boolean, boolean>;
|
|
334
|
-
mergedOnClick: (e:
|
|
410
|
+
mergedOnClick: (e: PointerEvent) => void;
|
|
411
|
+
onPreviewClose: () => void;
|
|
335
412
|
mergedOnError: (e: Event) => void;
|
|
336
413
|
mergedOnLoad: (e: Event) => void;
|
|
414
|
+
previewShow: import('vue').Ref<boolean, boolean>;
|
|
337
415
|
}, {}, {}, {}, {
|
|
338
416
|
objectFit: "fill" | "none" | "contain" | "cover" | "scale-down";
|
|
339
417
|
lazy: boolean;
|
|
@@ -411,7 +489,20 @@ declare function __VLS_template(): {
|
|
|
411
489
|
arrowOffsetVertical: string;
|
|
412
490
|
arrowHeight: string;
|
|
413
491
|
padding: string;
|
|
414
|
-
},
|
|
492
|
+
}, {
|
|
493
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
494
|
+
height: string;
|
|
495
|
+
width: string;
|
|
496
|
+
borderRadius: string;
|
|
497
|
+
color: string;
|
|
498
|
+
colorHover: string;
|
|
499
|
+
railInsetHorizontalBottom: string;
|
|
500
|
+
railInsetHorizontalTop: string;
|
|
501
|
+
railInsetVerticalRight: string;
|
|
502
|
+
railInsetVerticalLeft: string;
|
|
503
|
+
railColor: string;
|
|
504
|
+
}, any>;
|
|
505
|
+
}>;
|
|
415
506
|
}>;
|
|
416
507
|
}>>;
|
|
417
508
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Image", {
|
|
@@ -440,7 +531,20 @@ declare function __VLS_template(): {
|
|
|
440
531
|
arrowOffsetVertical: string;
|
|
441
532
|
arrowHeight: string;
|
|
442
533
|
padding: string;
|
|
443
|
-
},
|
|
534
|
+
}, {
|
|
535
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
536
|
+
height: string;
|
|
537
|
+
width: string;
|
|
538
|
+
borderRadius: string;
|
|
539
|
+
color: string;
|
|
540
|
+
colorHover: string;
|
|
541
|
+
railInsetHorizontalBottom: string;
|
|
542
|
+
railInsetHorizontalTop: string;
|
|
543
|
+
railInsetVerticalRight: string;
|
|
544
|
+
railInsetVerticalLeft: string;
|
|
545
|
+
railColor: string;
|
|
546
|
+
}, any>;
|
|
547
|
+
}>;
|
|
444
548
|
}>;
|
|
445
549
|
}>>>;
|
|
446
550
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Image", {
|
|
@@ -469,7 +573,20 @@ declare function __VLS_template(): {
|
|
|
469
573
|
arrowOffsetVertical: string;
|
|
470
574
|
arrowHeight: string;
|
|
471
575
|
padding: string;
|
|
472
|
-
},
|
|
576
|
+
}, {
|
|
577
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
578
|
+
height: string;
|
|
579
|
+
width: string;
|
|
580
|
+
borderRadius: string;
|
|
581
|
+
color: string;
|
|
582
|
+
colorHover: string;
|
|
583
|
+
railInsetHorizontalBottom: string;
|
|
584
|
+
railInsetHorizontalTop: string;
|
|
585
|
+
railInsetVerticalRight: string;
|
|
586
|
+
railInsetVerticalLeft: string;
|
|
587
|
+
railColor: string;
|
|
588
|
+
}, any>;
|
|
589
|
+
}>;
|
|
473
590
|
}>;
|
|
474
591
|
}>>>;
|
|
475
592
|
alt: StringConstructor;
|
|
@@ -492,24 +609,24 @@ declare function __VLS_template(): {
|
|
|
492
609
|
onLoad: import('vue').PropType<(e: Event) => void>;
|
|
493
610
|
}>> & Readonly<{}>, {
|
|
494
611
|
click: () => void;
|
|
612
|
+
showPreview: () => void;
|
|
495
613
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
496
614
|
groupId: string | undefined;
|
|
497
615
|
previewInstRef: import('vue').Ref<{
|
|
498
616
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
499
|
-
|
|
500
|
-
toggleShow: () => void;
|
|
501
|
-
} | null, import('naive-ui/es/image/src/ImagePreview').ImagePreviewInst | {
|
|
617
|
+
} | null, import('naive-ui').ImagePreviewInst | {
|
|
502
618
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
503
|
-
setPreviewSrc: (src?: string) => void;
|
|
504
|
-
toggleShow: () => void;
|
|
505
619
|
} | null>;
|
|
506
620
|
imageRef: import('vue').Ref<HTMLImageElement | null, HTMLImageElement | null>;
|
|
621
|
+
mergedPreviewSrc: import('vue').ComputedRef<string | undefined>;
|
|
507
622
|
showError: import('vue').Ref<boolean, boolean>;
|
|
508
623
|
shouldStartLoading: import('vue').Ref<boolean, boolean>;
|
|
509
624
|
loaded: import('vue').Ref<boolean, boolean>;
|
|
510
|
-
mergedOnClick: (e:
|
|
625
|
+
mergedOnClick: (e: PointerEvent) => void;
|
|
626
|
+
onPreviewClose: () => void;
|
|
511
627
|
mergedOnError: (e: Event) => void;
|
|
512
628
|
mergedOnLoad: (e: Event) => void;
|
|
629
|
+
previewShow: import('vue').Ref<boolean, boolean>;
|
|
513
630
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
514
631
|
objectFit: "fill" | "none" | "contain" | "cover" | "scale-down";
|
|
515
632
|
lazy: boolean;
|
|
@@ -558,7 +675,20 @@ declare function __VLS_template(): {
|
|
|
558
675
|
arrowOffsetVertical: string;
|
|
559
676
|
arrowHeight: string;
|
|
560
677
|
padding: string;
|
|
561
|
-
},
|
|
678
|
+
}, {
|
|
679
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
680
|
+
height: string;
|
|
681
|
+
width: string;
|
|
682
|
+
borderRadius: string;
|
|
683
|
+
color: string;
|
|
684
|
+
colorHover: string;
|
|
685
|
+
railInsetHorizontalBottom: string;
|
|
686
|
+
railInsetHorizontalTop: string;
|
|
687
|
+
railInsetVerticalRight: string;
|
|
688
|
+
railInsetVerticalLeft: string;
|
|
689
|
+
railColor: string;
|
|
690
|
+
}, any>;
|
|
691
|
+
}>;
|
|
562
692
|
}>;
|
|
563
693
|
}>>;
|
|
564
694
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Image", {
|
|
@@ -587,7 +717,20 @@ declare function __VLS_template(): {
|
|
|
587
717
|
arrowOffsetVertical: string;
|
|
588
718
|
arrowHeight: string;
|
|
589
719
|
padding: string;
|
|
590
|
-
},
|
|
720
|
+
}, {
|
|
721
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
722
|
+
height: string;
|
|
723
|
+
width: string;
|
|
724
|
+
borderRadius: string;
|
|
725
|
+
color: string;
|
|
726
|
+
colorHover: string;
|
|
727
|
+
railInsetHorizontalBottom: string;
|
|
728
|
+
railInsetHorizontalTop: string;
|
|
729
|
+
railInsetVerticalRight: string;
|
|
730
|
+
railInsetVerticalLeft: string;
|
|
731
|
+
railColor: string;
|
|
732
|
+
}, any>;
|
|
733
|
+
}>;
|
|
591
734
|
}>;
|
|
592
735
|
}>>>;
|
|
593
736
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Image", {
|
|
@@ -616,7 +759,20 @@ declare function __VLS_template(): {
|
|
|
616
759
|
arrowOffsetVertical: string;
|
|
617
760
|
arrowHeight: string;
|
|
618
761
|
padding: string;
|
|
619
|
-
},
|
|
762
|
+
}, {
|
|
763
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
764
|
+
height: string;
|
|
765
|
+
width: string;
|
|
766
|
+
borderRadius: string;
|
|
767
|
+
color: string;
|
|
768
|
+
colorHover: string;
|
|
769
|
+
railInsetHorizontalBottom: string;
|
|
770
|
+
railInsetHorizontalTop: string;
|
|
771
|
+
railInsetVerticalRight: string;
|
|
772
|
+
railInsetVerticalLeft: string;
|
|
773
|
+
railColor: string;
|
|
774
|
+
}, any>;
|
|
775
|
+
}>;
|
|
620
776
|
}>;
|
|
621
777
|
}>>>;
|
|
622
778
|
alt: StringConstructor;
|
|
@@ -639,24 +795,24 @@ declare function __VLS_template(): {
|
|
|
639
795
|
onLoad: import('vue').PropType<(e: Event) => void>;
|
|
640
796
|
}>> & Readonly<{}>, {
|
|
641
797
|
click: () => void;
|
|
798
|
+
showPreview: () => void;
|
|
642
799
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
643
800
|
groupId: string | undefined;
|
|
644
801
|
previewInstRef: import('vue').Ref<{
|
|
645
802
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
646
|
-
|
|
647
|
-
toggleShow: () => void;
|
|
648
|
-
} | null, import('naive-ui/es/image/src/ImagePreview').ImagePreviewInst | {
|
|
803
|
+
} | null, import('naive-ui').ImagePreviewInst | {
|
|
649
804
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
650
|
-
setPreviewSrc: (src?: string) => void;
|
|
651
|
-
toggleShow: () => void;
|
|
652
805
|
} | null>;
|
|
653
806
|
imageRef: import('vue').Ref<HTMLImageElement | null, HTMLImageElement | null>;
|
|
807
|
+
mergedPreviewSrc: import('vue').ComputedRef<string | undefined>;
|
|
654
808
|
showError: import('vue').Ref<boolean, boolean>;
|
|
655
809
|
shouldStartLoading: import('vue').Ref<boolean, boolean>;
|
|
656
810
|
loaded: import('vue').Ref<boolean, boolean>;
|
|
657
|
-
mergedOnClick: (e:
|
|
811
|
+
mergedOnClick: (e: PointerEvent) => void;
|
|
812
|
+
onPreviewClose: () => void;
|
|
658
813
|
mergedOnError: (e: Event) => void;
|
|
659
814
|
mergedOnLoad: (e: Event) => void;
|
|
815
|
+
previewShow: import('vue').Ref<boolean, boolean>;
|
|
660
816
|
}, {}, {}, {}, {
|
|
661
817
|
objectFit: "fill" | "none" | "contain" | "cover" | "scale-down";
|
|
662
818
|
lazy: boolean;
|
|
@@ -755,7 +911,20 @@ declare function __VLS_template(): {
|
|
|
755
911
|
arrowOffsetVertical: string;
|
|
756
912
|
arrowHeight: string;
|
|
757
913
|
padding: string;
|
|
758
|
-
},
|
|
914
|
+
}, {
|
|
915
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
916
|
+
height: string;
|
|
917
|
+
width: string;
|
|
918
|
+
borderRadius: string;
|
|
919
|
+
color: string;
|
|
920
|
+
colorHover: string;
|
|
921
|
+
railInsetHorizontalBottom: string;
|
|
922
|
+
railInsetHorizontalTop: string;
|
|
923
|
+
railInsetVerticalRight: string;
|
|
924
|
+
railInsetVerticalLeft: string;
|
|
925
|
+
railColor: string;
|
|
926
|
+
}, any>;
|
|
927
|
+
}>;
|
|
759
928
|
}>;
|
|
760
929
|
}>>;
|
|
761
930
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Image", {
|
|
@@ -784,7 +953,20 @@ declare function __VLS_template(): {
|
|
|
784
953
|
arrowOffsetVertical: string;
|
|
785
954
|
arrowHeight: string;
|
|
786
955
|
padding: string;
|
|
787
|
-
},
|
|
956
|
+
}, {
|
|
957
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
958
|
+
height: string;
|
|
959
|
+
width: string;
|
|
960
|
+
borderRadius: string;
|
|
961
|
+
color: string;
|
|
962
|
+
colorHover: string;
|
|
963
|
+
railInsetHorizontalBottom: string;
|
|
964
|
+
railInsetHorizontalTop: string;
|
|
965
|
+
railInsetVerticalRight: string;
|
|
966
|
+
railInsetVerticalLeft: string;
|
|
967
|
+
railColor: string;
|
|
968
|
+
}, any>;
|
|
969
|
+
}>;
|
|
788
970
|
}>;
|
|
789
971
|
}>>>;
|
|
790
972
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Image", {
|
|
@@ -813,7 +995,20 @@ declare function __VLS_template(): {
|
|
|
813
995
|
arrowOffsetVertical: string;
|
|
814
996
|
arrowHeight: string;
|
|
815
997
|
padding: string;
|
|
816
|
-
},
|
|
998
|
+
}, {
|
|
999
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1000
|
+
height: string;
|
|
1001
|
+
width: string;
|
|
1002
|
+
borderRadius: string;
|
|
1003
|
+
color: string;
|
|
1004
|
+
colorHover: string;
|
|
1005
|
+
railInsetHorizontalBottom: string;
|
|
1006
|
+
railInsetHorizontalTop: string;
|
|
1007
|
+
railInsetVerticalRight: string;
|
|
1008
|
+
railInsetVerticalLeft: string;
|
|
1009
|
+
railColor: string;
|
|
1010
|
+
}, any>;
|
|
1011
|
+
}>;
|
|
817
1012
|
}>;
|
|
818
1013
|
}>>>;
|
|
819
1014
|
alt: StringConstructor;
|
|
@@ -836,24 +1031,24 @@ declare function __VLS_template(): {
|
|
|
836
1031
|
onLoad: import('vue').PropType<(e: Event) => void>;
|
|
837
1032
|
}>> & Readonly<{}>, {
|
|
838
1033
|
click: () => void;
|
|
1034
|
+
showPreview: () => void;
|
|
839
1035
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
840
1036
|
groupId: string | undefined;
|
|
841
1037
|
previewInstRef: import('vue').Ref<{
|
|
842
1038
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
843
|
-
|
|
844
|
-
toggleShow: () => void;
|
|
845
|
-
} | null, import('naive-ui/es/image/src/ImagePreview').ImagePreviewInst | {
|
|
1039
|
+
} | null, import('naive-ui').ImagePreviewInst | {
|
|
846
1040
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
847
|
-
setPreviewSrc: (src?: string) => void;
|
|
848
|
-
toggleShow: () => void;
|
|
849
1041
|
} | null>;
|
|
850
1042
|
imageRef: import('vue').Ref<HTMLImageElement | null, HTMLImageElement | null>;
|
|
1043
|
+
mergedPreviewSrc: import('vue').ComputedRef<string | undefined>;
|
|
851
1044
|
showError: import('vue').Ref<boolean, boolean>;
|
|
852
1045
|
shouldStartLoading: import('vue').Ref<boolean, boolean>;
|
|
853
1046
|
loaded: import('vue').Ref<boolean, boolean>;
|
|
854
|
-
mergedOnClick: (e:
|
|
1047
|
+
mergedOnClick: (e: PointerEvent) => void;
|
|
1048
|
+
onPreviewClose: () => void;
|
|
855
1049
|
mergedOnError: (e: Event) => void;
|
|
856
1050
|
mergedOnLoad: (e: Event) => void;
|
|
1051
|
+
previewShow: import('vue').Ref<boolean, boolean>;
|
|
857
1052
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
858
1053
|
objectFit: "fill" | "none" | "contain" | "cover" | "scale-down";
|
|
859
1054
|
lazy: boolean;
|
|
@@ -902,7 +1097,20 @@ declare function __VLS_template(): {
|
|
|
902
1097
|
arrowOffsetVertical: string;
|
|
903
1098
|
arrowHeight: string;
|
|
904
1099
|
padding: string;
|
|
905
|
-
},
|
|
1100
|
+
}, {
|
|
1101
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1102
|
+
height: string;
|
|
1103
|
+
width: string;
|
|
1104
|
+
borderRadius: string;
|
|
1105
|
+
color: string;
|
|
1106
|
+
colorHover: string;
|
|
1107
|
+
railInsetHorizontalBottom: string;
|
|
1108
|
+
railInsetHorizontalTop: string;
|
|
1109
|
+
railInsetVerticalRight: string;
|
|
1110
|
+
railInsetVerticalLeft: string;
|
|
1111
|
+
railColor: string;
|
|
1112
|
+
}, any>;
|
|
1113
|
+
}>;
|
|
906
1114
|
}>;
|
|
907
1115
|
}>>;
|
|
908
1116
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Image", {
|
|
@@ -931,7 +1139,20 @@ declare function __VLS_template(): {
|
|
|
931
1139
|
arrowOffsetVertical: string;
|
|
932
1140
|
arrowHeight: string;
|
|
933
1141
|
padding: string;
|
|
934
|
-
},
|
|
1142
|
+
}, {
|
|
1143
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1144
|
+
height: string;
|
|
1145
|
+
width: string;
|
|
1146
|
+
borderRadius: string;
|
|
1147
|
+
color: string;
|
|
1148
|
+
colorHover: string;
|
|
1149
|
+
railInsetHorizontalBottom: string;
|
|
1150
|
+
railInsetHorizontalTop: string;
|
|
1151
|
+
railInsetVerticalRight: string;
|
|
1152
|
+
railInsetVerticalLeft: string;
|
|
1153
|
+
railColor: string;
|
|
1154
|
+
}, any>;
|
|
1155
|
+
}>;
|
|
935
1156
|
}>;
|
|
936
1157
|
}>>>;
|
|
937
1158
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Image", {
|
|
@@ -960,7 +1181,20 @@ declare function __VLS_template(): {
|
|
|
960
1181
|
arrowOffsetVertical: string;
|
|
961
1182
|
arrowHeight: string;
|
|
962
1183
|
padding: string;
|
|
963
|
-
},
|
|
1184
|
+
}, {
|
|
1185
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1186
|
+
height: string;
|
|
1187
|
+
width: string;
|
|
1188
|
+
borderRadius: string;
|
|
1189
|
+
color: string;
|
|
1190
|
+
colorHover: string;
|
|
1191
|
+
railInsetHorizontalBottom: string;
|
|
1192
|
+
railInsetHorizontalTop: string;
|
|
1193
|
+
railInsetVerticalRight: string;
|
|
1194
|
+
railInsetVerticalLeft: string;
|
|
1195
|
+
railColor: string;
|
|
1196
|
+
}, any>;
|
|
1197
|
+
}>;
|
|
964
1198
|
}>;
|
|
965
1199
|
}>>>;
|
|
966
1200
|
alt: StringConstructor;
|
|
@@ -983,24 +1217,24 @@ declare function __VLS_template(): {
|
|
|
983
1217
|
onLoad: import('vue').PropType<(e: Event) => void>;
|
|
984
1218
|
}>> & Readonly<{}>, {
|
|
985
1219
|
click: () => void;
|
|
1220
|
+
showPreview: () => void;
|
|
986
1221
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
987
1222
|
groupId: string | undefined;
|
|
988
1223
|
previewInstRef: import('vue').Ref<{
|
|
989
1224
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
990
|
-
|
|
991
|
-
toggleShow: () => void;
|
|
992
|
-
} | null, import('naive-ui/es/image/src/ImagePreview').ImagePreviewInst | {
|
|
1225
|
+
} | null, import('naive-ui').ImagePreviewInst | {
|
|
993
1226
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
994
|
-
setPreviewSrc: (src?: string) => void;
|
|
995
|
-
toggleShow: () => void;
|
|
996
1227
|
} | null>;
|
|
997
1228
|
imageRef: import('vue').Ref<HTMLImageElement | null, HTMLImageElement | null>;
|
|
1229
|
+
mergedPreviewSrc: import('vue').ComputedRef<string | undefined>;
|
|
998
1230
|
showError: import('vue').Ref<boolean, boolean>;
|
|
999
1231
|
shouldStartLoading: import('vue').Ref<boolean, boolean>;
|
|
1000
1232
|
loaded: import('vue').Ref<boolean, boolean>;
|
|
1001
|
-
mergedOnClick: (e:
|
|
1233
|
+
mergedOnClick: (e: PointerEvent) => void;
|
|
1234
|
+
onPreviewClose: () => void;
|
|
1002
1235
|
mergedOnError: (e: Event) => void;
|
|
1003
1236
|
mergedOnLoad: (e: Event) => void;
|
|
1237
|
+
previewShow: import('vue').Ref<boolean, boolean>;
|
|
1004
1238
|
}, {}, {}, {}, {
|
|
1005
1239
|
objectFit: "fill" | "none" | "contain" | "cover" | "scale-down";
|
|
1006
1240
|
lazy: boolean;
|
|
@@ -1096,7 +1330,20 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1096
1330
|
arrowOffsetVertical: string;
|
|
1097
1331
|
arrowHeight: string;
|
|
1098
1332
|
padding: string;
|
|
1099
|
-
},
|
|
1333
|
+
}, {
|
|
1334
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1335
|
+
height: string;
|
|
1336
|
+
width: string;
|
|
1337
|
+
borderRadius: string;
|
|
1338
|
+
color: string;
|
|
1339
|
+
colorHover: string;
|
|
1340
|
+
railInsetHorizontalBottom: string;
|
|
1341
|
+
railInsetHorizontalTop: string;
|
|
1342
|
+
railInsetVerticalRight: string;
|
|
1343
|
+
railInsetVerticalLeft: string;
|
|
1344
|
+
railColor: string;
|
|
1345
|
+
}, any>;
|
|
1346
|
+
}>;
|
|
1100
1347
|
}>;
|
|
1101
1348
|
}>>;
|
|
1102
1349
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Image", {
|
|
@@ -1125,7 +1372,20 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1125
1372
|
arrowOffsetVertical: string;
|
|
1126
1373
|
arrowHeight: string;
|
|
1127
1374
|
padding: string;
|
|
1128
|
-
},
|
|
1375
|
+
}, {
|
|
1376
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1377
|
+
height: string;
|
|
1378
|
+
width: string;
|
|
1379
|
+
borderRadius: string;
|
|
1380
|
+
color: string;
|
|
1381
|
+
colorHover: string;
|
|
1382
|
+
railInsetHorizontalBottom: string;
|
|
1383
|
+
railInsetHorizontalTop: string;
|
|
1384
|
+
railInsetVerticalRight: string;
|
|
1385
|
+
railInsetVerticalLeft: string;
|
|
1386
|
+
railColor: string;
|
|
1387
|
+
}, any>;
|
|
1388
|
+
}>;
|
|
1129
1389
|
}>;
|
|
1130
1390
|
}>>>;
|
|
1131
1391
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Image", {
|
|
@@ -1154,7 +1414,20 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1154
1414
|
arrowOffsetVertical: string;
|
|
1155
1415
|
arrowHeight: string;
|
|
1156
1416
|
padding: string;
|
|
1157
|
-
},
|
|
1417
|
+
}, {
|
|
1418
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1419
|
+
height: string;
|
|
1420
|
+
width: string;
|
|
1421
|
+
borderRadius: string;
|
|
1422
|
+
color: string;
|
|
1423
|
+
colorHover: string;
|
|
1424
|
+
railInsetHorizontalBottom: string;
|
|
1425
|
+
railInsetHorizontalTop: string;
|
|
1426
|
+
railInsetVerticalRight: string;
|
|
1427
|
+
railInsetVerticalLeft: string;
|
|
1428
|
+
railColor: string;
|
|
1429
|
+
}, any>;
|
|
1430
|
+
}>;
|
|
1158
1431
|
}>;
|
|
1159
1432
|
}>>>;
|
|
1160
1433
|
alt: StringConstructor;
|
|
@@ -1177,24 +1450,24 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1177
1450
|
onLoad: import('vue').PropType<(e: Event) => void>;
|
|
1178
1451
|
}>> & Readonly<{}>, {
|
|
1179
1452
|
click: () => void;
|
|
1453
|
+
showPreview: () => void;
|
|
1180
1454
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
1181
1455
|
groupId: string | undefined;
|
|
1182
1456
|
previewInstRef: import('vue').Ref<{
|
|
1183
1457
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
1184
|
-
|
|
1185
|
-
toggleShow: () => void;
|
|
1186
|
-
} | null, import('naive-ui/es/image/src/ImagePreview').ImagePreviewInst | {
|
|
1458
|
+
} | null, import('naive-ui').ImagePreviewInst | {
|
|
1187
1459
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
1188
|
-
setPreviewSrc: (src?: string) => void;
|
|
1189
|
-
toggleShow: () => void;
|
|
1190
1460
|
} | null>;
|
|
1191
1461
|
imageRef: import('vue').Ref<HTMLImageElement | null, HTMLImageElement | null>;
|
|
1462
|
+
mergedPreviewSrc: import('vue').ComputedRef<string | undefined>;
|
|
1192
1463
|
showError: import('vue').Ref<boolean, boolean>;
|
|
1193
1464
|
shouldStartLoading: import('vue').Ref<boolean, boolean>;
|
|
1194
1465
|
loaded: import('vue').Ref<boolean, boolean>;
|
|
1195
|
-
mergedOnClick: (e:
|
|
1466
|
+
mergedOnClick: (e: PointerEvent) => void;
|
|
1467
|
+
onPreviewClose: () => void;
|
|
1196
1468
|
mergedOnError: (e: Event) => void;
|
|
1197
1469
|
mergedOnLoad: (e: Event) => void;
|
|
1470
|
+
previewShow: import('vue').Ref<boolean, boolean>;
|
|
1198
1471
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
1199
1472
|
objectFit: "fill" | "none" | "contain" | "cover" | "scale-down";
|
|
1200
1473
|
lazy: boolean;
|
|
@@ -1243,7 +1516,20 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1243
1516
|
arrowOffsetVertical: string;
|
|
1244
1517
|
arrowHeight: string;
|
|
1245
1518
|
padding: string;
|
|
1246
|
-
},
|
|
1519
|
+
}, {
|
|
1520
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1521
|
+
height: string;
|
|
1522
|
+
width: string;
|
|
1523
|
+
borderRadius: string;
|
|
1524
|
+
color: string;
|
|
1525
|
+
colorHover: string;
|
|
1526
|
+
railInsetHorizontalBottom: string;
|
|
1527
|
+
railInsetHorizontalTop: string;
|
|
1528
|
+
railInsetVerticalRight: string;
|
|
1529
|
+
railInsetVerticalLeft: string;
|
|
1530
|
+
railColor: string;
|
|
1531
|
+
}, any>;
|
|
1532
|
+
}>;
|
|
1247
1533
|
}>;
|
|
1248
1534
|
}>>;
|
|
1249
1535
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Image", {
|
|
@@ -1272,7 +1558,20 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1272
1558
|
arrowOffsetVertical: string;
|
|
1273
1559
|
arrowHeight: string;
|
|
1274
1560
|
padding: string;
|
|
1275
|
-
},
|
|
1561
|
+
}, {
|
|
1562
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1563
|
+
height: string;
|
|
1564
|
+
width: string;
|
|
1565
|
+
borderRadius: string;
|
|
1566
|
+
color: string;
|
|
1567
|
+
colorHover: string;
|
|
1568
|
+
railInsetHorizontalBottom: string;
|
|
1569
|
+
railInsetHorizontalTop: string;
|
|
1570
|
+
railInsetVerticalRight: string;
|
|
1571
|
+
railInsetVerticalLeft: string;
|
|
1572
|
+
railColor: string;
|
|
1573
|
+
}, any>;
|
|
1574
|
+
}>;
|
|
1276
1575
|
}>;
|
|
1277
1576
|
}>>>;
|
|
1278
1577
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Image", {
|
|
@@ -1301,7 +1600,20 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1301
1600
|
arrowOffsetVertical: string;
|
|
1302
1601
|
arrowHeight: string;
|
|
1303
1602
|
padding: string;
|
|
1304
|
-
},
|
|
1603
|
+
}, {
|
|
1604
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1605
|
+
height: string;
|
|
1606
|
+
width: string;
|
|
1607
|
+
borderRadius: string;
|
|
1608
|
+
color: string;
|
|
1609
|
+
colorHover: string;
|
|
1610
|
+
railInsetHorizontalBottom: string;
|
|
1611
|
+
railInsetHorizontalTop: string;
|
|
1612
|
+
railInsetVerticalRight: string;
|
|
1613
|
+
railInsetVerticalLeft: string;
|
|
1614
|
+
railColor: string;
|
|
1615
|
+
}, any>;
|
|
1616
|
+
}>;
|
|
1305
1617
|
}>;
|
|
1306
1618
|
}>>>;
|
|
1307
1619
|
alt: StringConstructor;
|
|
@@ -1324,24 +1636,24 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1324
1636
|
onLoad: import('vue').PropType<(e: Event) => void>;
|
|
1325
1637
|
}>> & Readonly<{}>, {
|
|
1326
1638
|
click: () => void;
|
|
1639
|
+
showPreview: () => void;
|
|
1327
1640
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
1328
1641
|
groupId: string | undefined;
|
|
1329
1642
|
previewInstRef: import('vue').Ref<{
|
|
1330
1643
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
1331
|
-
|
|
1332
|
-
toggleShow: () => void;
|
|
1333
|
-
} | null, import('naive-ui/es/image/src/ImagePreview').ImagePreviewInst | {
|
|
1644
|
+
} | null, import('naive-ui').ImagePreviewInst | {
|
|
1334
1645
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
1335
|
-
setPreviewSrc: (src?: string) => void;
|
|
1336
|
-
toggleShow: () => void;
|
|
1337
1646
|
} | null>;
|
|
1338
1647
|
imageRef: import('vue').Ref<HTMLImageElement | null, HTMLImageElement | null>;
|
|
1648
|
+
mergedPreviewSrc: import('vue').ComputedRef<string | undefined>;
|
|
1339
1649
|
showError: import('vue').Ref<boolean, boolean>;
|
|
1340
1650
|
shouldStartLoading: import('vue').Ref<boolean, boolean>;
|
|
1341
1651
|
loaded: import('vue').Ref<boolean, boolean>;
|
|
1342
|
-
mergedOnClick: (e:
|
|
1652
|
+
mergedOnClick: (e: PointerEvent) => void;
|
|
1653
|
+
onPreviewClose: () => void;
|
|
1343
1654
|
mergedOnError: (e: Event) => void;
|
|
1344
1655
|
mergedOnLoad: (e: Event) => void;
|
|
1656
|
+
previewShow: import('vue').Ref<boolean, boolean>;
|
|
1345
1657
|
}, {}, {}, {}, {
|
|
1346
1658
|
objectFit: "fill" | "none" | "contain" | "cover" | "scale-down";
|
|
1347
1659
|
lazy: boolean;
|
|
@@ -1419,7 +1731,20 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1419
1731
|
arrowOffsetVertical: string;
|
|
1420
1732
|
arrowHeight: string;
|
|
1421
1733
|
padding: string;
|
|
1422
|
-
},
|
|
1734
|
+
}, {
|
|
1735
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1736
|
+
height: string;
|
|
1737
|
+
width: string;
|
|
1738
|
+
borderRadius: string;
|
|
1739
|
+
color: string;
|
|
1740
|
+
colorHover: string;
|
|
1741
|
+
railInsetHorizontalBottom: string;
|
|
1742
|
+
railInsetHorizontalTop: string;
|
|
1743
|
+
railInsetVerticalRight: string;
|
|
1744
|
+
railInsetVerticalLeft: string;
|
|
1745
|
+
railColor: string;
|
|
1746
|
+
}, any>;
|
|
1747
|
+
}>;
|
|
1423
1748
|
}>;
|
|
1424
1749
|
}>>;
|
|
1425
1750
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Image", {
|
|
@@ -1448,7 +1773,20 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1448
1773
|
arrowOffsetVertical: string;
|
|
1449
1774
|
arrowHeight: string;
|
|
1450
1775
|
padding: string;
|
|
1451
|
-
},
|
|
1776
|
+
}, {
|
|
1777
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1778
|
+
height: string;
|
|
1779
|
+
width: string;
|
|
1780
|
+
borderRadius: string;
|
|
1781
|
+
color: string;
|
|
1782
|
+
colorHover: string;
|
|
1783
|
+
railInsetHorizontalBottom: string;
|
|
1784
|
+
railInsetHorizontalTop: string;
|
|
1785
|
+
railInsetVerticalRight: string;
|
|
1786
|
+
railInsetVerticalLeft: string;
|
|
1787
|
+
railColor: string;
|
|
1788
|
+
}, any>;
|
|
1789
|
+
}>;
|
|
1452
1790
|
}>;
|
|
1453
1791
|
}>>>;
|
|
1454
1792
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Image", {
|
|
@@ -1477,7 +1815,20 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1477
1815
|
arrowOffsetVertical: string;
|
|
1478
1816
|
arrowHeight: string;
|
|
1479
1817
|
padding: string;
|
|
1480
|
-
},
|
|
1818
|
+
}, {
|
|
1819
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1820
|
+
height: string;
|
|
1821
|
+
width: string;
|
|
1822
|
+
borderRadius: string;
|
|
1823
|
+
color: string;
|
|
1824
|
+
colorHover: string;
|
|
1825
|
+
railInsetHorizontalBottom: string;
|
|
1826
|
+
railInsetHorizontalTop: string;
|
|
1827
|
+
railInsetVerticalRight: string;
|
|
1828
|
+
railInsetVerticalLeft: string;
|
|
1829
|
+
railColor: string;
|
|
1830
|
+
}, any>;
|
|
1831
|
+
}>;
|
|
1481
1832
|
}>;
|
|
1482
1833
|
}>>>;
|
|
1483
1834
|
alt: StringConstructor;
|
|
@@ -1500,24 +1851,24 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1500
1851
|
onLoad: import('vue').PropType<(e: Event) => void>;
|
|
1501
1852
|
}>> & Readonly<{}>, {
|
|
1502
1853
|
click: () => void;
|
|
1854
|
+
showPreview: () => void;
|
|
1503
1855
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
1504
1856
|
groupId: string | undefined;
|
|
1505
1857
|
previewInstRef: import('vue').Ref<{
|
|
1506
1858
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
1507
|
-
|
|
1508
|
-
toggleShow: () => void;
|
|
1509
|
-
} | null, import('naive-ui/es/image/src/ImagePreview').ImagePreviewInst | {
|
|
1859
|
+
} | null, import('naive-ui').ImagePreviewInst | {
|
|
1510
1860
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
1511
|
-
setPreviewSrc: (src?: string) => void;
|
|
1512
|
-
toggleShow: () => void;
|
|
1513
1861
|
} | null>;
|
|
1514
1862
|
imageRef: import('vue').Ref<HTMLImageElement | null, HTMLImageElement | null>;
|
|
1863
|
+
mergedPreviewSrc: import('vue').ComputedRef<string | undefined>;
|
|
1515
1864
|
showError: import('vue').Ref<boolean, boolean>;
|
|
1516
1865
|
shouldStartLoading: import('vue').Ref<boolean, boolean>;
|
|
1517
1866
|
loaded: import('vue').Ref<boolean, boolean>;
|
|
1518
|
-
mergedOnClick: (e:
|
|
1867
|
+
mergedOnClick: (e: PointerEvent) => void;
|
|
1868
|
+
onPreviewClose: () => void;
|
|
1519
1869
|
mergedOnError: (e: Event) => void;
|
|
1520
1870
|
mergedOnLoad: (e: Event) => void;
|
|
1871
|
+
previewShow: import('vue').Ref<boolean, boolean>;
|
|
1521
1872
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
1522
1873
|
objectFit: "fill" | "none" | "contain" | "cover" | "scale-down";
|
|
1523
1874
|
lazy: boolean;
|
|
@@ -1566,7 +1917,20 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1566
1917
|
arrowOffsetVertical: string;
|
|
1567
1918
|
arrowHeight: string;
|
|
1568
1919
|
padding: string;
|
|
1569
|
-
},
|
|
1920
|
+
}, {
|
|
1921
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1922
|
+
height: string;
|
|
1923
|
+
width: string;
|
|
1924
|
+
borderRadius: string;
|
|
1925
|
+
color: string;
|
|
1926
|
+
colorHover: string;
|
|
1927
|
+
railInsetHorizontalBottom: string;
|
|
1928
|
+
railInsetHorizontalTop: string;
|
|
1929
|
+
railInsetVerticalRight: string;
|
|
1930
|
+
railInsetVerticalLeft: string;
|
|
1931
|
+
railColor: string;
|
|
1932
|
+
}, any>;
|
|
1933
|
+
}>;
|
|
1570
1934
|
}>;
|
|
1571
1935
|
}>>;
|
|
1572
1936
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Image", {
|
|
@@ -1595,7 +1959,20 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1595
1959
|
arrowOffsetVertical: string;
|
|
1596
1960
|
arrowHeight: string;
|
|
1597
1961
|
padding: string;
|
|
1598
|
-
},
|
|
1962
|
+
}, {
|
|
1963
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1964
|
+
height: string;
|
|
1965
|
+
width: string;
|
|
1966
|
+
borderRadius: string;
|
|
1967
|
+
color: string;
|
|
1968
|
+
colorHover: string;
|
|
1969
|
+
railInsetHorizontalBottom: string;
|
|
1970
|
+
railInsetHorizontalTop: string;
|
|
1971
|
+
railInsetVerticalRight: string;
|
|
1972
|
+
railInsetVerticalLeft: string;
|
|
1973
|
+
railColor: string;
|
|
1974
|
+
}, any>;
|
|
1975
|
+
}>;
|
|
1599
1976
|
}>;
|
|
1600
1977
|
}>>>;
|
|
1601
1978
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Image", {
|
|
@@ -1624,7 +2001,20 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1624
2001
|
arrowOffsetVertical: string;
|
|
1625
2002
|
arrowHeight: string;
|
|
1626
2003
|
padding: string;
|
|
1627
|
-
},
|
|
2004
|
+
}, {
|
|
2005
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
2006
|
+
height: string;
|
|
2007
|
+
width: string;
|
|
2008
|
+
borderRadius: string;
|
|
2009
|
+
color: string;
|
|
2010
|
+
colorHover: string;
|
|
2011
|
+
railInsetHorizontalBottom: string;
|
|
2012
|
+
railInsetHorizontalTop: string;
|
|
2013
|
+
railInsetVerticalRight: string;
|
|
2014
|
+
railInsetVerticalLeft: string;
|
|
2015
|
+
railColor: string;
|
|
2016
|
+
}, any>;
|
|
2017
|
+
}>;
|
|
1628
2018
|
}>;
|
|
1629
2019
|
}>>>;
|
|
1630
2020
|
alt: StringConstructor;
|
|
@@ -1647,24 +2037,24 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1647
2037
|
onLoad: import('vue').PropType<(e: Event) => void>;
|
|
1648
2038
|
}>> & Readonly<{}>, {
|
|
1649
2039
|
click: () => void;
|
|
2040
|
+
showPreview: () => void;
|
|
1650
2041
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
1651
2042
|
groupId: string | undefined;
|
|
1652
2043
|
previewInstRef: import('vue').Ref<{
|
|
1653
2044
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
1654
|
-
|
|
1655
|
-
toggleShow: () => void;
|
|
1656
|
-
} | null, import('naive-ui/es/image/src/ImagePreview').ImagePreviewInst | {
|
|
2045
|
+
} | null, import('naive-ui').ImagePreviewInst | {
|
|
1657
2046
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
1658
|
-
setPreviewSrc: (src?: string) => void;
|
|
1659
|
-
toggleShow: () => void;
|
|
1660
2047
|
} | null>;
|
|
1661
2048
|
imageRef: import('vue').Ref<HTMLImageElement | null, HTMLImageElement | null>;
|
|
2049
|
+
mergedPreviewSrc: import('vue').ComputedRef<string | undefined>;
|
|
1662
2050
|
showError: import('vue').Ref<boolean, boolean>;
|
|
1663
2051
|
shouldStartLoading: import('vue').Ref<boolean, boolean>;
|
|
1664
2052
|
loaded: import('vue').Ref<boolean, boolean>;
|
|
1665
|
-
mergedOnClick: (e:
|
|
2053
|
+
mergedOnClick: (e: PointerEvent) => void;
|
|
2054
|
+
onPreviewClose: () => void;
|
|
1666
2055
|
mergedOnError: (e: Event) => void;
|
|
1667
2056
|
mergedOnLoad: (e: Event) => void;
|
|
2057
|
+
previewShow: import('vue').Ref<boolean, boolean>;
|
|
1668
2058
|
}, {}, {}, {}, {
|
|
1669
2059
|
objectFit: "fill" | "none" | "contain" | "cover" | "scale-down";
|
|
1670
2060
|
lazy: boolean;
|
|
@@ -1763,7 +2153,20 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1763
2153
|
arrowOffsetVertical: string;
|
|
1764
2154
|
arrowHeight: string;
|
|
1765
2155
|
padding: string;
|
|
1766
|
-
},
|
|
2156
|
+
}, {
|
|
2157
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
2158
|
+
height: string;
|
|
2159
|
+
width: string;
|
|
2160
|
+
borderRadius: string;
|
|
2161
|
+
color: string;
|
|
2162
|
+
colorHover: string;
|
|
2163
|
+
railInsetHorizontalBottom: string;
|
|
2164
|
+
railInsetHorizontalTop: string;
|
|
2165
|
+
railInsetVerticalRight: string;
|
|
2166
|
+
railInsetVerticalLeft: string;
|
|
2167
|
+
railColor: string;
|
|
2168
|
+
}, any>;
|
|
2169
|
+
}>;
|
|
1767
2170
|
}>;
|
|
1768
2171
|
}>>;
|
|
1769
2172
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Image", {
|
|
@@ -1792,7 +2195,20 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1792
2195
|
arrowOffsetVertical: string;
|
|
1793
2196
|
arrowHeight: string;
|
|
1794
2197
|
padding: string;
|
|
1795
|
-
},
|
|
2198
|
+
}, {
|
|
2199
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
2200
|
+
height: string;
|
|
2201
|
+
width: string;
|
|
2202
|
+
borderRadius: string;
|
|
2203
|
+
color: string;
|
|
2204
|
+
colorHover: string;
|
|
2205
|
+
railInsetHorizontalBottom: string;
|
|
2206
|
+
railInsetHorizontalTop: string;
|
|
2207
|
+
railInsetVerticalRight: string;
|
|
2208
|
+
railInsetVerticalLeft: string;
|
|
2209
|
+
railColor: string;
|
|
2210
|
+
}, any>;
|
|
2211
|
+
}>;
|
|
1796
2212
|
}>;
|
|
1797
2213
|
}>>>;
|
|
1798
2214
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Image", {
|
|
@@ -1821,7 +2237,20 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1821
2237
|
arrowOffsetVertical: string;
|
|
1822
2238
|
arrowHeight: string;
|
|
1823
2239
|
padding: string;
|
|
1824
|
-
},
|
|
2240
|
+
}, {
|
|
2241
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
2242
|
+
height: string;
|
|
2243
|
+
width: string;
|
|
2244
|
+
borderRadius: string;
|
|
2245
|
+
color: string;
|
|
2246
|
+
colorHover: string;
|
|
2247
|
+
railInsetHorizontalBottom: string;
|
|
2248
|
+
railInsetHorizontalTop: string;
|
|
2249
|
+
railInsetVerticalRight: string;
|
|
2250
|
+
railInsetVerticalLeft: string;
|
|
2251
|
+
railColor: string;
|
|
2252
|
+
}, any>;
|
|
2253
|
+
}>;
|
|
1825
2254
|
}>;
|
|
1826
2255
|
}>>>;
|
|
1827
2256
|
alt: StringConstructor;
|
|
@@ -1844,24 +2273,24 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1844
2273
|
onLoad: import('vue').PropType<(e: Event) => void>;
|
|
1845
2274
|
}>> & Readonly<{}>, {
|
|
1846
2275
|
click: () => void;
|
|
2276
|
+
showPreview: () => void;
|
|
1847
2277
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
1848
2278
|
groupId: string | undefined;
|
|
1849
2279
|
previewInstRef: import('vue').Ref<{
|
|
1850
2280
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
1851
|
-
|
|
1852
|
-
toggleShow: () => void;
|
|
1853
|
-
} | null, import('naive-ui/es/image/src/ImagePreview').ImagePreviewInst | {
|
|
2281
|
+
} | null, import('naive-ui').ImagePreviewInst | {
|
|
1854
2282
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
1855
|
-
setPreviewSrc: (src?: string) => void;
|
|
1856
|
-
toggleShow: () => void;
|
|
1857
2283
|
} | null>;
|
|
1858
2284
|
imageRef: import('vue').Ref<HTMLImageElement | null, HTMLImageElement | null>;
|
|
2285
|
+
mergedPreviewSrc: import('vue').ComputedRef<string | undefined>;
|
|
1859
2286
|
showError: import('vue').Ref<boolean, boolean>;
|
|
1860
2287
|
shouldStartLoading: import('vue').Ref<boolean, boolean>;
|
|
1861
2288
|
loaded: import('vue').Ref<boolean, boolean>;
|
|
1862
|
-
mergedOnClick: (e:
|
|
2289
|
+
mergedOnClick: (e: PointerEvent) => void;
|
|
2290
|
+
onPreviewClose: () => void;
|
|
1863
2291
|
mergedOnError: (e: Event) => void;
|
|
1864
2292
|
mergedOnLoad: (e: Event) => void;
|
|
2293
|
+
previewShow: import('vue').Ref<boolean, boolean>;
|
|
1865
2294
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
1866
2295
|
objectFit: "fill" | "none" | "contain" | "cover" | "scale-down";
|
|
1867
2296
|
lazy: boolean;
|
|
@@ -1910,7 +2339,20 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1910
2339
|
arrowOffsetVertical: string;
|
|
1911
2340
|
arrowHeight: string;
|
|
1912
2341
|
padding: string;
|
|
1913
|
-
},
|
|
2342
|
+
}, {
|
|
2343
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
2344
|
+
height: string;
|
|
2345
|
+
width: string;
|
|
2346
|
+
borderRadius: string;
|
|
2347
|
+
color: string;
|
|
2348
|
+
colorHover: string;
|
|
2349
|
+
railInsetHorizontalBottom: string;
|
|
2350
|
+
railInsetHorizontalTop: string;
|
|
2351
|
+
railInsetVerticalRight: string;
|
|
2352
|
+
railInsetVerticalLeft: string;
|
|
2353
|
+
railColor: string;
|
|
2354
|
+
}, any>;
|
|
2355
|
+
}>;
|
|
1914
2356
|
}>;
|
|
1915
2357
|
}>>;
|
|
1916
2358
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Image", {
|
|
@@ -1939,7 +2381,20 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1939
2381
|
arrowOffsetVertical: string;
|
|
1940
2382
|
arrowHeight: string;
|
|
1941
2383
|
padding: string;
|
|
1942
|
-
},
|
|
2384
|
+
}, {
|
|
2385
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
2386
|
+
height: string;
|
|
2387
|
+
width: string;
|
|
2388
|
+
borderRadius: string;
|
|
2389
|
+
color: string;
|
|
2390
|
+
colorHover: string;
|
|
2391
|
+
railInsetHorizontalBottom: string;
|
|
2392
|
+
railInsetHorizontalTop: string;
|
|
2393
|
+
railInsetVerticalRight: string;
|
|
2394
|
+
railInsetVerticalLeft: string;
|
|
2395
|
+
railColor: string;
|
|
2396
|
+
}, any>;
|
|
2397
|
+
}>;
|
|
1943
2398
|
}>;
|
|
1944
2399
|
}>>>;
|
|
1945
2400
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Image", {
|
|
@@ -1968,7 +2423,20 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1968
2423
|
arrowOffsetVertical: string;
|
|
1969
2424
|
arrowHeight: string;
|
|
1970
2425
|
padding: string;
|
|
1971
|
-
},
|
|
2426
|
+
}, {
|
|
2427
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
2428
|
+
height: string;
|
|
2429
|
+
width: string;
|
|
2430
|
+
borderRadius: string;
|
|
2431
|
+
color: string;
|
|
2432
|
+
colorHover: string;
|
|
2433
|
+
railInsetHorizontalBottom: string;
|
|
2434
|
+
railInsetHorizontalTop: string;
|
|
2435
|
+
railInsetVerticalRight: string;
|
|
2436
|
+
railInsetVerticalLeft: string;
|
|
2437
|
+
railColor: string;
|
|
2438
|
+
}, any>;
|
|
2439
|
+
}>;
|
|
1972
2440
|
}>;
|
|
1973
2441
|
}>>>;
|
|
1974
2442
|
alt: StringConstructor;
|
|
@@ -1991,24 +2459,24 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
1991
2459
|
onLoad: import('vue').PropType<(e: Event) => void>;
|
|
1992
2460
|
}>> & Readonly<{}>, {
|
|
1993
2461
|
click: () => void;
|
|
2462
|
+
showPreview: () => void;
|
|
1994
2463
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
1995
2464
|
groupId: string | undefined;
|
|
1996
2465
|
previewInstRef: import('vue').Ref<{
|
|
1997
2466
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
1998
|
-
|
|
1999
|
-
toggleShow: () => void;
|
|
2000
|
-
} | null, import('naive-ui/es/image/src/ImagePreview').ImagePreviewInst | {
|
|
2467
|
+
} | null, import('naive-ui').ImagePreviewInst | {
|
|
2001
2468
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
2002
|
-
setPreviewSrc: (src?: string) => void;
|
|
2003
|
-
toggleShow: () => void;
|
|
2004
2469
|
} | null>;
|
|
2005
2470
|
imageRef: import('vue').Ref<HTMLImageElement | null, HTMLImageElement | null>;
|
|
2471
|
+
mergedPreviewSrc: import('vue').ComputedRef<string | undefined>;
|
|
2006
2472
|
showError: import('vue').Ref<boolean, boolean>;
|
|
2007
2473
|
shouldStartLoading: import('vue').Ref<boolean, boolean>;
|
|
2008
2474
|
loaded: import('vue').Ref<boolean, boolean>;
|
|
2009
|
-
mergedOnClick: (e:
|
|
2475
|
+
mergedOnClick: (e: PointerEvent) => void;
|
|
2476
|
+
onPreviewClose: () => void;
|
|
2010
2477
|
mergedOnError: (e: Event) => void;
|
|
2011
2478
|
mergedOnLoad: (e: Event) => void;
|
|
2479
|
+
previewShow: import('vue').Ref<boolean, boolean>;
|
|
2012
2480
|
}, {}, {}, {}, {
|
|
2013
2481
|
objectFit: "fill" | "none" | "contain" | "cover" | "scale-down";
|
|
2014
2482
|
lazy: boolean;
|