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
package/dist/index.d.ts
CHANGED
|
@@ -226,7 +226,20 @@ export declare const Comp: {
|
|
|
226
226
|
arrowOffsetVertical: string;
|
|
227
227
|
arrowHeight: string;
|
|
228
228
|
padding: string;
|
|
229
|
-
},
|
|
229
|
+
}, {
|
|
230
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
231
|
+
height: string;
|
|
232
|
+
width: string;
|
|
233
|
+
borderRadius: string;
|
|
234
|
+
color: string;
|
|
235
|
+
colorHover: string;
|
|
236
|
+
railInsetHorizontalBottom: string;
|
|
237
|
+
railInsetHorizontalTop: string;
|
|
238
|
+
railInsetVerticalRight: string;
|
|
239
|
+
railInsetVerticalLeft: string;
|
|
240
|
+
railColor: string;
|
|
241
|
+
}, any>;
|
|
242
|
+
}>;
|
|
230
243
|
}>;
|
|
231
244
|
}>>;
|
|
232
245
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins/use-theme').Theme<"Image", {
|
|
@@ -255,7 +268,20 @@ export declare const Comp: {
|
|
|
255
268
|
arrowOffsetVertical: string;
|
|
256
269
|
arrowHeight: string;
|
|
257
270
|
padding: string;
|
|
258
|
-
},
|
|
271
|
+
}, {
|
|
272
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
273
|
+
height: string;
|
|
274
|
+
width: string;
|
|
275
|
+
borderRadius: string;
|
|
276
|
+
color: string;
|
|
277
|
+
colorHover: string;
|
|
278
|
+
railInsetHorizontalBottom: string;
|
|
279
|
+
railInsetHorizontalTop: string;
|
|
280
|
+
railInsetVerticalRight: string;
|
|
281
|
+
railInsetVerticalLeft: string;
|
|
282
|
+
railColor: string;
|
|
283
|
+
}, any>;
|
|
284
|
+
}>;
|
|
259
285
|
}>;
|
|
260
286
|
}>>>;
|
|
261
287
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins/use-theme').Theme<"Image", {
|
|
@@ -284,7 +310,20 @@ export declare const Comp: {
|
|
|
284
310
|
arrowOffsetVertical: string;
|
|
285
311
|
arrowHeight: string;
|
|
286
312
|
padding: string;
|
|
287
|
-
},
|
|
313
|
+
}, {
|
|
314
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
315
|
+
height: string;
|
|
316
|
+
width: string;
|
|
317
|
+
borderRadius: string;
|
|
318
|
+
color: string;
|
|
319
|
+
colorHover: string;
|
|
320
|
+
railInsetHorizontalBottom: string;
|
|
321
|
+
railInsetHorizontalTop: string;
|
|
322
|
+
railInsetVerticalRight: string;
|
|
323
|
+
railInsetVerticalLeft: string;
|
|
324
|
+
railColor: string;
|
|
325
|
+
}, any>;
|
|
326
|
+
}>;
|
|
288
327
|
}>;
|
|
289
328
|
}>>>;
|
|
290
329
|
alt: StringConstructor;
|
|
@@ -307,24 +346,24 @@ export declare const Comp: {
|
|
|
307
346
|
onLoad: import('vue').PropType<(e: Event) => void>;
|
|
308
347
|
}>> & Readonly<{}>, {
|
|
309
348
|
click: () => void;
|
|
349
|
+
showPreview: () => void;
|
|
310
350
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
311
351
|
groupId: string | undefined;
|
|
312
352
|
previewInstRef: import('vue').Ref<{
|
|
313
353
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
314
|
-
|
|
315
|
-
toggleShow: () => void;
|
|
316
|
-
} | null, import('naive-ui/es/image/src/ImagePreview').ImagePreviewInst | {
|
|
354
|
+
} | null, import('naive-ui').ImagePreviewInst | {
|
|
317
355
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
318
|
-
setPreviewSrc: (src?: string) => void;
|
|
319
|
-
toggleShow: () => void;
|
|
320
356
|
} | null>;
|
|
321
357
|
imageRef: import('vue').Ref<HTMLImageElement | null, HTMLImageElement | null>;
|
|
358
|
+
mergedPreviewSrc: import('vue').ComputedRef<string | undefined>;
|
|
322
359
|
showError: import('vue').Ref<boolean, boolean>;
|
|
323
360
|
shouldStartLoading: import('vue').Ref<boolean, boolean>;
|
|
324
361
|
loaded: import('vue').Ref<boolean, boolean>;
|
|
325
|
-
mergedOnClick: (e:
|
|
362
|
+
mergedOnClick: (e: PointerEvent) => void;
|
|
363
|
+
onPreviewClose: () => void;
|
|
326
364
|
mergedOnError: (e: Event) => void;
|
|
327
365
|
mergedOnLoad: (e: Event) => void;
|
|
366
|
+
previewShow: import('vue').Ref<boolean, boolean>;
|
|
328
367
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
329
368
|
objectFit: "fill" | "none" | "contain" | "cover" | "scale-down";
|
|
330
369
|
lazy: boolean;
|
|
@@ -373,7 +412,20 @@ export declare const Comp: {
|
|
|
373
412
|
arrowOffsetVertical: string;
|
|
374
413
|
arrowHeight: string;
|
|
375
414
|
padding: string;
|
|
376
|
-
},
|
|
415
|
+
}, {
|
|
416
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
417
|
+
height: string;
|
|
418
|
+
width: string;
|
|
419
|
+
borderRadius: string;
|
|
420
|
+
color: string;
|
|
421
|
+
colorHover: string;
|
|
422
|
+
railInsetHorizontalBottom: string;
|
|
423
|
+
railInsetHorizontalTop: string;
|
|
424
|
+
railInsetVerticalRight: string;
|
|
425
|
+
railInsetVerticalLeft: string;
|
|
426
|
+
railColor: string;
|
|
427
|
+
}, any>;
|
|
428
|
+
}>;
|
|
377
429
|
}>;
|
|
378
430
|
}>>;
|
|
379
431
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins/use-theme').Theme<"Image", {
|
|
@@ -402,7 +454,20 @@ export declare const Comp: {
|
|
|
402
454
|
arrowOffsetVertical: string;
|
|
403
455
|
arrowHeight: string;
|
|
404
456
|
padding: string;
|
|
405
|
-
},
|
|
457
|
+
}, {
|
|
458
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
459
|
+
height: string;
|
|
460
|
+
width: string;
|
|
461
|
+
borderRadius: string;
|
|
462
|
+
color: string;
|
|
463
|
+
colorHover: string;
|
|
464
|
+
railInsetHorizontalBottom: string;
|
|
465
|
+
railInsetHorizontalTop: string;
|
|
466
|
+
railInsetVerticalRight: string;
|
|
467
|
+
railInsetVerticalLeft: string;
|
|
468
|
+
railColor: string;
|
|
469
|
+
}, any>;
|
|
470
|
+
}>;
|
|
406
471
|
}>;
|
|
407
472
|
}>>>;
|
|
408
473
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins/use-theme').Theme<"Image", {
|
|
@@ -431,7 +496,20 @@ export declare const Comp: {
|
|
|
431
496
|
arrowOffsetVertical: string;
|
|
432
497
|
arrowHeight: string;
|
|
433
498
|
padding: string;
|
|
434
|
-
},
|
|
499
|
+
}, {
|
|
500
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
501
|
+
height: string;
|
|
502
|
+
width: string;
|
|
503
|
+
borderRadius: string;
|
|
504
|
+
color: string;
|
|
505
|
+
colorHover: string;
|
|
506
|
+
railInsetHorizontalBottom: string;
|
|
507
|
+
railInsetHorizontalTop: string;
|
|
508
|
+
railInsetVerticalRight: string;
|
|
509
|
+
railInsetVerticalLeft: string;
|
|
510
|
+
railColor: string;
|
|
511
|
+
}, any>;
|
|
512
|
+
}>;
|
|
435
513
|
}>;
|
|
436
514
|
}>>>;
|
|
437
515
|
alt: StringConstructor;
|
|
@@ -454,24 +532,24 @@ export declare const Comp: {
|
|
|
454
532
|
onLoad: import('vue').PropType<(e: Event) => void>;
|
|
455
533
|
}>> & Readonly<{}>, {
|
|
456
534
|
click: () => void;
|
|
535
|
+
showPreview: () => void;
|
|
457
536
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
458
537
|
groupId: string | undefined;
|
|
459
538
|
previewInstRef: import('vue').Ref<{
|
|
460
539
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
461
|
-
|
|
462
|
-
toggleShow: () => void;
|
|
463
|
-
} | null, import('naive-ui/es/image/src/ImagePreview').ImagePreviewInst | {
|
|
540
|
+
} | null, import('naive-ui').ImagePreviewInst | {
|
|
464
541
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
465
|
-
setPreviewSrc: (src?: string) => void;
|
|
466
|
-
toggleShow: () => void;
|
|
467
542
|
} | null>;
|
|
468
543
|
imageRef: import('vue').Ref<HTMLImageElement | null, HTMLImageElement | null>;
|
|
544
|
+
mergedPreviewSrc: import('vue').ComputedRef<string | undefined>;
|
|
469
545
|
showError: import('vue').Ref<boolean, boolean>;
|
|
470
546
|
shouldStartLoading: import('vue').Ref<boolean, boolean>;
|
|
471
547
|
loaded: import('vue').Ref<boolean, boolean>;
|
|
472
|
-
mergedOnClick: (e:
|
|
548
|
+
mergedOnClick: (e: PointerEvent) => void;
|
|
549
|
+
onPreviewClose: () => void;
|
|
473
550
|
mergedOnError: (e: Event) => void;
|
|
474
551
|
mergedOnLoad: (e: Event) => void;
|
|
552
|
+
previewShow: import('vue').Ref<boolean, boolean>;
|
|
475
553
|
}, {}, {}, {}, {
|
|
476
554
|
objectFit: "fill" | "none" | "contain" | "cover" | "scale-down";
|
|
477
555
|
lazy: boolean;
|
|
@@ -522,7 +600,20 @@ export declare const Comp: {
|
|
|
522
600
|
arrowOffsetVertical: string;
|
|
523
601
|
arrowHeight: string;
|
|
524
602
|
padding: string;
|
|
525
|
-
},
|
|
603
|
+
}, {
|
|
604
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
605
|
+
height: string;
|
|
606
|
+
width: string;
|
|
607
|
+
borderRadius: string;
|
|
608
|
+
color: string;
|
|
609
|
+
colorHover: string;
|
|
610
|
+
railInsetHorizontalBottom: string;
|
|
611
|
+
railInsetHorizontalTop: string;
|
|
612
|
+
railInsetVerticalRight: string;
|
|
613
|
+
railInsetVerticalLeft: string;
|
|
614
|
+
railColor: string;
|
|
615
|
+
}, any>;
|
|
616
|
+
}>;
|
|
526
617
|
}>;
|
|
527
618
|
}>>;
|
|
528
619
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins/use-theme').Theme<"Image", {
|
|
@@ -551,7 +642,20 @@ export declare const Comp: {
|
|
|
551
642
|
arrowOffsetVertical: string;
|
|
552
643
|
arrowHeight: string;
|
|
553
644
|
padding: string;
|
|
554
|
-
},
|
|
645
|
+
}, {
|
|
646
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
647
|
+
height: string;
|
|
648
|
+
width: string;
|
|
649
|
+
borderRadius: string;
|
|
650
|
+
color: string;
|
|
651
|
+
colorHover: string;
|
|
652
|
+
railInsetHorizontalBottom: string;
|
|
653
|
+
railInsetHorizontalTop: string;
|
|
654
|
+
railInsetVerticalRight: string;
|
|
655
|
+
railInsetVerticalLeft: string;
|
|
656
|
+
railColor: string;
|
|
657
|
+
}, any>;
|
|
658
|
+
}>;
|
|
555
659
|
}>;
|
|
556
660
|
}>>>;
|
|
557
661
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins/use-theme').Theme<"Image", {
|
|
@@ -580,7 +684,20 @@ export declare const Comp: {
|
|
|
580
684
|
arrowOffsetVertical: string;
|
|
581
685
|
arrowHeight: string;
|
|
582
686
|
padding: string;
|
|
583
|
-
},
|
|
687
|
+
}, {
|
|
688
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
689
|
+
height: string;
|
|
690
|
+
width: string;
|
|
691
|
+
borderRadius: string;
|
|
692
|
+
color: string;
|
|
693
|
+
colorHover: string;
|
|
694
|
+
railInsetHorizontalBottom: string;
|
|
695
|
+
railInsetHorizontalTop: string;
|
|
696
|
+
railInsetVerticalRight: string;
|
|
697
|
+
railInsetVerticalLeft: string;
|
|
698
|
+
railColor: string;
|
|
699
|
+
}, any>;
|
|
700
|
+
}>;
|
|
584
701
|
}>;
|
|
585
702
|
}>>>;
|
|
586
703
|
alt: StringConstructor;
|
|
@@ -603,24 +720,24 @@ export declare const Comp: {
|
|
|
603
720
|
onLoad: import('vue').PropType<(e: Event) => void>;
|
|
604
721
|
}>> & Readonly<{}>, {
|
|
605
722
|
click: () => void;
|
|
723
|
+
showPreview: () => void;
|
|
606
724
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
607
725
|
groupId: string | undefined;
|
|
608
726
|
previewInstRef: import('vue').Ref<{
|
|
609
727
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
610
|
-
|
|
611
|
-
toggleShow: () => void;
|
|
612
|
-
} | null, import('naive-ui/es/image/src/ImagePreview').ImagePreviewInst | {
|
|
728
|
+
} | null, import('naive-ui').ImagePreviewInst | {
|
|
613
729
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
614
|
-
setPreviewSrc: (src?: string) => void;
|
|
615
|
-
toggleShow: () => void;
|
|
616
730
|
} | null>;
|
|
617
731
|
imageRef: import('vue').Ref<HTMLImageElement | null, HTMLImageElement | null>;
|
|
732
|
+
mergedPreviewSrc: import('vue').ComputedRef<string | undefined>;
|
|
618
733
|
showError: import('vue').Ref<boolean, boolean>;
|
|
619
734
|
shouldStartLoading: import('vue').Ref<boolean, boolean>;
|
|
620
735
|
loaded: import('vue').Ref<boolean, boolean>;
|
|
621
|
-
mergedOnClick: (e:
|
|
736
|
+
mergedOnClick: (e: PointerEvent) => void;
|
|
737
|
+
onPreviewClose: () => void;
|
|
622
738
|
mergedOnError: (e: Event) => void;
|
|
623
739
|
mergedOnLoad: (e: Event) => void;
|
|
740
|
+
previewShow: import('vue').Ref<boolean, boolean>;
|
|
624
741
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
625
742
|
objectFit: "fill" | "none" | "contain" | "cover" | "scale-down";
|
|
626
743
|
lazy: boolean;
|
|
@@ -669,7 +786,20 @@ export declare const Comp: {
|
|
|
669
786
|
arrowOffsetVertical: string;
|
|
670
787
|
arrowHeight: string;
|
|
671
788
|
padding: string;
|
|
672
|
-
},
|
|
789
|
+
}, {
|
|
790
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
791
|
+
height: string;
|
|
792
|
+
width: string;
|
|
793
|
+
borderRadius: string;
|
|
794
|
+
color: string;
|
|
795
|
+
colorHover: string;
|
|
796
|
+
railInsetHorizontalBottom: string;
|
|
797
|
+
railInsetHorizontalTop: string;
|
|
798
|
+
railInsetVerticalRight: string;
|
|
799
|
+
railInsetVerticalLeft: string;
|
|
800
|
+
railColor: string;
|
|
801
|
+
}, any>;
|
|
802
|
+
}>;
|
|
673
803
|
}>;
|
|
674
804
|
}>>;
|
|
675
805
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins/use-theme').Theme<"Image", {
|
|
@@ -698,7 +828,20 @@ export declare const Comp: {
|
|
|
698
828
|
arrowOffsetVertical: string;
|
|
699
829
|
arrowHeight: string;
|
|
700
830
|
padding: string;
|
|
701
|
-
},
|
|
831
|
+
}, {
|
|
832
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
833
|
+
height: string;
|
|
834
|
+
width: string;
|
|
835
|
+
borderRadius: string;
|
|
836
|
+
color: string;
|
|
837
|
+
colorHover: string;
|
|
838
|
+
railInsetHorizontalBottom: string;
|
|
839
|
+
railInsetHorizontalTop: string;
|
|
840
|
+
railInsetVerticalRight: string;
|
|
841
|
+
railInsetVerticalLeft: string;
|
|
842
|
+
railColor: string;
|
|
843
|
+
}, any>;
|
|
844
|
+
}>;
|
|
702
845
|
}>;
|
|
703
846
|
}>>>;
|
|
704
847
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins/use-theme').Theme<"Image", {
|
|
@@ -727,7 +870,20 @@ export declare const Comp: {
|
|
|
727
870
|
arrowOffsetVertical: string;
|
|
728
871
|
arrowHeight: string;
|
|
729
872
|
padding: string;
|
|
730
|
-
},
|
|
873
|
+
}, {
|
|
874
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
875
|
+
height: string;
|
|
876
|
+
width: string;
|
|
877
|
+
borderRadius: string;
|
|
878
|
+
color: string;
|
|
879
|
+
colorHover: string;
|
|
880
|
+
railInsetHorizontalBottom: string;
|
|
881
|
+
railInsetHorizontalTop: string;
|
|
882
|
+
railInsetVerticalRight: string;
|
|
883
|
+
railInsetVerticalLeft: string;
|
|
884
|
+
railColor: string;
|
|
885
|
+
}, any>;
|
|
886
|
+
}>;
|
|
731
887
|
}>;
|
|
732
888
|
}>>>;
|
|
733
889
|
alt: StringConstructor;
|
|
@@ -750,24 +906,24 @@ export declare const Comp: {
|
|
|
750
906
|
onLoad: import('vue').PropType<(e: Event) => void>;
|
|
751
907
|
}>> & Readonly<{}>, {
|
|
752
908
|
click: () => void;
|
|
909
|
+
showPreview: () => void;
|
|
753
910
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
754
911
|
groupId: string | undefined;
|
|
755
912
|
previewInstRef: import('vue').Ref<{
|
|
756
913
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
757
|
-
|
|
758
|
-
toggleShow: () => void;
|
|
759
|
-
} | null, import('naive-ui/es/image/src/ImagePreview').ImagePreviewInst | {
|
|
914
|
+
} | null, import('naive-ui').ImagePreviewInst | {
|
|
760
915
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
761
|
-
setPreviewSrc: (src?: string) => void;
|
|
762
|
-
toggleShow: () => void;
|
|
763
916
|
} | null>;
|
|
764
917
|
imageRef: import('vue').Ref<HTMLImageElement | null, HTMLImageElement | null>;
|
|
918
|
+
mergedPreviewSrc: import('vue').ComputedRef<string | undefined>;
|
|
765
919
|
showError: import('vue').Ref<boolean, boolean>;
|
|
766
920
|
shouldStartLoading: import('vue').Ref<boolean, boolean>;
|
|
767
921
|
loaded: import('vue').Ref<boolean, boolean>;
|
|
768
|
-
mergedOnClick: (e:
|
|
922
|
+
mergedOnClick: (e: PointerEvent) => void;
|
|
923
|
+
onPreviewClose: () => void;
|
|
769
924
|
mergedOnError: (e: Event) => void;
|
|
770
925
|
mergedOnLoad: (e: Event) => void;
|
|
926
|
+
previewShow: import('vue').Ref<boolean, boolean>;
|
|
771
927
|
}, {}, {}, {}, {
|
|
772
928
|
objectFit: "fill" | "none" | "contain" | "cover" | "scale-down";
|
|
773
929
|
lazy: boolean;
|
|
@@ -843,7 +999,20 @@ export declare const Comp: {
|
|
|
843
999
|
arrowOffsetVertical: string;
|
|
844
1000
|
arrowHeight: string;
|
|
845
1001
|
padding: string;
|
|
846
|
-
},
|
|
1002
|
+
}, {
|
|
1003
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
1004
|
+
height: string;
|
|
1005
|
+
width: string;
|
|
1006
|
+
borderRadius: string;
|
|
1007
|
+
color: string;
|
|
1008
|
+
colorHover: string;
|
|
1009
|
+
railInsetHorizontalBottom: string;
|
|
1010
|
+
railInsetHorizontalTop: string;
|
|
1011
|
+
railInsetVerticalRight: string;
|
|
1012
|
+
railInsetVerticalLeft: string;
|
|
1013
|
+
railColor: string;
|
|
1014
|
+
}, any>;
|
|
1015
|
+
}>;
|
|
847
1016
|
}>;
|
|
848
1017
|
}>>;
|
|
849
1018
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins/use-theme').Theme<"Image", {
|
|
@@ -872,7 +1041,20 @@ export declare const Comp: {
|
|
|
872
1041
|
arrowOffsetVertical: string;
|
|
873
1042
|
arrowHeight: string;
|
|
874
1043
|
padding: string;
|
|
875
|
-
},
|
|
1044
|
+
}, {
|
|
1045
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
1046
|
+
height: string;
|
|
1047
|
+
width: string;
|
|
1048
|
+
borderRadius: string;
|
|
1049
|
+
color: string;
|
|
1050
|
+
colorHover: string;
|
|
1051
|
+
railInsetHorizontalBottom: string;
|
|
1052
|
+
railInsetHorizontalTop: string;
|
|
1053
|
+
railInsetVerticalRight: string;
|
|
1054
|
+
railInsetVerticalLeft: string;
|
|
1055
|
+
railColor: string;
|
|
1056
|
+
}, any>;
|
|
1057
|
+
}>;
|
|
876
1058
|
}>;
|
|
877
1059
|
}>>>;
|
|
878
1060
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins/use-theme').Theme<"Image", {
|
|
@@ -901,7 +1083,20 @@ export declare const Comp: {
|
|
|
901
1083
|
arrowOffsetVertical: string;
|
|
902
1084
|
arrowHeight: string;
|
|
903
1085
|
padding: string;
|
|
904
|
-
},
|
|
1086
|
+
}, {
|
|
1087
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
1088
|
+
height: string;
|
|
1089
|
+
width: string;
|
|
1090
|
+
borderRadius: string;
|
|
1091
|
+
color: string;
|
|
1092
|
+
colorHover: string;
|
|
1093
|
+
railInsetHorizontalBottom: string;
|
|
1094
|
+
railInsetHorizontalTop: string;
|
|
1095
|
+
railInsetVerticalRight: string;
|
|
1096
|
+
railInsetVerticalLeft: string;
|
|
1097
|
+
railColor: string;
|
|
1098
|
+
}, any>;
|
|
1099
|
+
}>;
|
|
905
1100
|
}>;
|
|
906
1101
|
}>>>;
|
|
907
1102
|
alt: StringConstructor;
|
|
@@ -924,24 +1119,24 @@ export declare const Comp: {
|
|
|
924
1119
|
onLoad: import('vue').PropType<(e: Event) => void>;
|
|
925
1120
|
}>> & Readonly<{}>, {
|
|
926
1121
|
click: () => void;
|
|
1122
|
+
showPreview: () => void;
|
|
927
1123
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
928
1124
|
groupId: string | undefined;
|
|
929
1125
|
previewInstRef: import('vue').Ref<{
|
|
930
1126
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
931
|
-
|
|
932
|
-
toggleShow: () => void;
|
|
933
|
-
} | null, import('naive-ui/es/image/src/ImagePreview').ImagePreviewInst | {
|
|
1127
|
+
} | null, import('naive-ui').ImagePreviewInst | {
|
|
934
1128
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
935
|
-
setPreviewSrc: (src?: string) => void;
|
|
936
|
-
toggleShow: () => void;
|
|
937
1129
|
} | null>;
|
|
938
1130
|
imageRef: import('vue').Ref<HTMLImageElement | null, HTMLImageElement | null>;
|
|
1131
|
+
mergedPreviewSrc: import('vue').ComputedRef<string | undefined>;
|
|
939
1132
|
showError: import('vue').Ref<boolean, boolean>;
|
|
940
1133
|
shouldStartLoading: import('vue').Ref<boolean, boolean>;
|
|
941
1134
|
loaded: import('vue').Ref<boolean, boolean>;
|
|
942
|
-
mergedOnClick: (e:
|
|
1135
|
+
mergedOnClick: (e: PointerEvent) => void;
|
|
1136
|
+
onPreviewClose: () => void;
|
|
943
1137
|
mergedOnError: (e: Event) => void;
|
|
944
1138
|
mergedOnLoad: (e: Event) => void;
|
|
1139
|
+
previewShow: import('vue').Ref<boolean, boolean>;
|
|
945
1140
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
946
1141
|
objectFit: "fill" | "none" | "contain" | "cover" | "scale-down";
|
|
947
1142
|
lazy: boolean;
|
|
@@ -990,7 +1185,20 @@ export declare const Comp: {
|
|
|
990
1185
|
arrowOffsetVertical: string;
|
|
991
1186
|
arrowHeight: string;
|
|
992
1187
|
padding: string;
|
|
993
|
-
},
|
|
1188
|
+
}, {
|
|
1189
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
1190
|
+
height: string;
|
|
1191
|
+
width: string;
|
|
1192
|
+
borderRadius: string;
|
|
1193
|
+
color: string;
|
|
1194
|
+
colorHover: string;
|
|
1195
|
+
railInsetHorizontalBottom: string;
|
|
1196
|
+
railInsetHorizontalTop: string;
|
|
1197
|
+
railInsetVerticalRight: string;
|
|
1198
|
+
railInsetVerticalLeft: string;
|
|
1199
|
+
railColor: string;
|
|
1200
|
+
}, any>;
|
|
1201
|
+
}>;
|
|
994
1202
|
}>;
|
|
995
1203
|
}>>;
|
|
996
1204
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins/use-theme').Theme<"Image", {
|
|
@@ -1019,7 +1227,20 @@ export declare const Comp: {
|
|
|
1019
1227
|
arrowOffsetVertical: string;
|
|
1020
1228
|
arrowHeight: string;
|
|
1021
1229
|
padding: string;
|
|
1022
|
-
},
|
|
1230
|
+
}, {
|
|
1231
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
1232
|
+
height: string;
|
|
1233
|
+
width: string;
|
|
1234
|
+
borderRadius: string;
|
|
1235
|
+
color: string;
|
|
1236
|
+
colorHover: string;
|
|
1237
|
+
railInsetHorizontalBottom: string;
|
|
1238
|
+
railInsetHorizontalTop: string;
|
|
1239
|
+
railInsetVerticalRight: string;
|
|
1240
|
+
railInsetVerticalLeft: string;
|
|
1241
|
+
railColor: string;
|
|
1242
|
+
}, any>;
|
|
1243
|
+
}>;
|
|
1023
1244
|
}>;
|
|
1024
1245
|
}>>>;
|
|
1025
1246
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins/use-theme').Theme<"Image", {
|
|
@@ -1048,7 +1269,20 @@ export declare const Comp: {
|
|
|
1048
1269
|
arrowOffsetVertical: string;
|
|
1049
1270
|
arrowHeight: string;
|
|
1050
1271
|
padding: string;
|
|
1051
|
-
},
|
|
1272
|
+
}, {
|
|
1273
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
1274
|
+
height: string;
|
|
1275
|
+
width: string;
|
|
1276
|
+
borderRadius: string;
|
|
1277
|
+
color: string;
|
|
1278
|
+
colorHover: string;
|
|
1279
|
+
railInsetHorizontalBottom: string;
|
|
1280
|
+
railInsetHorizontalTop: string;
|
|
1281
|
+
railInsetVerticalRight: string;
|
|
1282
|
+
railInsetVerticalLeft: string;
|
|
1283
|
+
railColor: string;
|
|
1284
|
+
}, any>;
|
|
1285
|
+
}>;
|
|
1052
1286
|
}>;
|
|
1053
1287
|
}>>>;
|
|
1054
1288
|
alt: StringConstructor;
|
|
@@ -1071,24 +1305,24 @@ export declare const Comp: {
|
|
|
1071
1305
|
onLoad: import('vue').PropType<(e: Event) => void>;
|
|
1072
1306
|
}>> & Readonly<{}>, {
|
|
1073
1307
|
click: () => void;
|
|
1308
|
+
showPreview: () => void;
|
|
1074
1309
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
1075
1310
|
groupId: string | undefined;
|
|
1076
1311
|
previewInstRef: import('vue').Ref<{
|
|
1077
1312
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
1078
|
-
|
|
1079
|
-
toggleShow: () => void;
|
|
1080
|
-
} | null, import('naive-ui/es/image/src/ImagePreview').ImagePreviewInst | {
|
|
1313
|
+
} | null, import('naive-ui').ImagePreviewInst | {
|
|
1081
1314
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
1082
|
-
setPreviewSrc: (src?: string) => void;
|
|
1083
|
-
toggleShow: () => void;
|
|
1084
1315
|
} | null>;
|
|
1085
1316
|
imageRef: import('vue').Ref<HTMLImageElement | null, HTMLImageElement | null>;
|
|
1317
|
+
mergedPreviewSrc: import('vue').ComputedRef<string | undefined>;
|
|
1086
1318
|
showError: import('vue').Ref<boolean, boolean>;
|
|
1087
1319
|
shouldStartLoading: import('vue').Ref<boolean, boolean>;
|
|
1088
1320
|
loaded: import('vue').Ref<boolean, boolean>;
|
|
1089
|
-
mergedOnClick: (e:
|
|
1321
|
+
mergedOnClick: (e: PointerEvent) => void;
|
|
1322
|
+
onPreviewClose: () => void;
|
|
1090
1323
|
mergedOnError: (e: Event) => void;
|
|
1091
1324
|
mergedOnLoad: (e: Event) => void;
|
|
1325
|
+
previewShow: import('vue').Ref<boolean, boolean>;
|
|
1092
1326
|
}, {}, {}, {}, {
|
|
1093
1327
|
objectFit: "fill" | "none" | "contain" | "cover" | "scale-down";
|
|
1094
1328
|
lazy: boolean;
|
|
@@ -1164,7 +1398,20 @@ export declare const Comp: {
|
|
|
1164
1398
|
arrowOffsetVertical: string;
|
|
1165
1399
|
arrowHeight: string;
|
|
1166
1400
|
padding: string;
|
|
1167
|
-
},
|
|
1401
|
+
}, {
|
|
1402
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
1403
|
+
height: string;
|
|
1404
|
+
width: string;
|
|
1405
|
+
borderRadius: string;
|
|
1406
|
+
color: string;
|
|
1407
|
+
colorHover: string;
|
|
1408
|
+
railInsetHorizontalBottom: string;
|
|
1409
|
+
railInsetHorizontalTop: string;
|
|
1410
|
+
railInsetVerticalRight: string;
|
|
1411
|
+
railInsetVerticalLeft: string;
|
|
1412
|
+
railColor: string;
|
|
1413
|
+
}, any>;
|
|
1414
|
+
}>;
|
|
1168
1415
|
}>;
|
|
1169
1416
|
}>>;
|
|
1170
1417
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins/use-theme').Theme<"Image", {
|
|
@@ -1193,7 +1440,20 @@ export declare const Comp: {
|
|
|
1193
1440
|
arrowOffsetVertical: string;
|
|
1194
1441
|
arrowHeight: string;
|
|
1195
1442
|
padding: string;
|
|
1196
|
-
},
|
|
1443
|
+
}, {
|
|
1444
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
1445
|
+
height: string;
|
|
1446
|
+
width: string;
|
|
1447
|
+
borderRadius: string;
|
|
1448
|
+
color: string;
|
|
1449
|
+
colorHover: string;
|
|
1450
|
+
railInsetHorizontalBottom: string;
|
|
1451
|
+
railInsetHorizontalTop: string;
|
|
1452
|
+
railInsetVerticalRight: string;
|
|
1453
|
+
railInsetVerticalLeft: string;
|
|
1454
|
+
railColor: string;
|
|
1455
|
+
}, any>;
|
|
1456
|
+
}>;
|
|
1197
1457
|
}>;
|
|
1198
1458
|
}>>>;
|
|
1199
1459
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins/use-theme').Theme<"Image", {
|
|
@@ -1222,7 +1482,20 @@ export declare const Comp: {
|
|
|
1222
1482
|
arrowOffsetVertical: string;
|
|
1223
1483
|
arrowHeight: string;
|
|
1224
1484
|
padding: string;
|
|
1225
|
-
},
|
|
1485
|
+
}, {
|
|
1486
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
1487
|
+
height: string;
|
|
1488
|
+
width: string;
|
|
1489
|
+
borderRadius: string;
|
|
1490
|
+
color: string;
|
|
1491
|
+
colorHover: string;
|
|
1492
|
+
railInsetHorizontalBottom: string;
|
|
1493
|
+
railInsetHorizontalTop: string;
|
|
1494
|
+
railInsetVerticalRight: string;
|
|
1495
|
+
railInsetVerticalLeft: string;
|
|
1496
|
+
railColor: string;
|
|
1497
|
+
}, any>;
|
|
1498
|
+
}>;
|
|
1226
1499
|
}>;
|
|
1227
1500
|
}>>>;
|
|
1228
1501
|
alt: StringConstructor;
|
|
@@ -1245,24 +1518,24 @@ export declare const Comp: {
|
|
|
1245
1518
|
onLoad: import('vue').PropType<(e: Event) => void>;
|
|
1246
1519
|
}>> & Readonly<{}>, {
|
|
1247
1520
|
click: () => void;
|
|
1521
|
+
showPreview: () => void;
|
|
1248
1522
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
1249
1523
|
groupId: string | undefined;
|
|
1250
1524
|
previewInstRef: import('vue').Ref<{
|
|
1251
1525
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
1252
|
-
|
|
1253
|
-
toggleShow: () => void;
|
|
1254
|
-
} | null, import('naive-ui/es/image/src/ImagePreview').ImagePreviewInst | {
|
|
1526
|
+
} | null, import('naive-ui').ImagePreviewInst | {
|
|
1255
1527
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
1256
|
-
setPreviewSrc: (src?: string) => void;
|
|
1257
|
-
toggleShow: () => void;
|
|
1258
1528
|
} | null>;
|
|
1259
1529
|
imageRef: import('vue').Ref<HTMLImageElement | null, HTMLImageElement | null>;
|
|
1530
|
+
mergedPreviewSrc: import('vue').ComputedRef<string | undefined>;
|
|
1260
1531
|
showError: import('vue').Ref<boolean, boolean>;
|
|
1261
1532
|
shouldStartLoading: import('vue').Ref<boolean, boolean>;
|
|
1262
1533
|
loaded: import('vue').Ref<boolean, boolean>;
|
|
1263
|
-
mergedOnClick: (e:
|
|
1534
|
+
mergedOnClick: (e: PointerEvent) => void;
|
|
1535
|
+
onPreviewClose: () => void;
|
|
1264
1536
|
mergedOnError: (e: Event) => void;
|
|
1265
1537
|
mergedOnLoad: (e: Event) => void;
|
|
1538
|
+
previewShow: import('vue').Ref<boolean, boolean>;
|
|
1266
1539
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
1267
1540
|
objectFit: "fill" | "none" | "contain" | "cover" | "scale-down";
|
|
1268
1541
|
lazy: boolean;
|
|
@@ -1311,7 +1584,20 @@ export declare const Comp: {
|
|
|
1311
1584
|
arrowOffsetVertical: string;
|
|
1312
1585
|
arrowHeight: string;
|
|
1313
1586
|
padding: string;
|
|
1314
|
-
},
|
|
1587
|
+
}, {
|
|
1588
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
1589
|
+
height: string;
|
|
1590
|
+
width: string;
|
|
1591
|
+
borderRadius: string;
|
|
1592
|
+
color: string;
|
|
1593
|
+
colorHover: string;
|
|
1594
|
+
railInsetHorizontalBottom: string;
|
|
1595
|
+
railInsetHorizontalTop: string;
|
|
1596
|
+
railInsetVerticalRight: string;
|
|
1597
|
+
railInsetVerticalLeft: string;
|
|
1598
|
+
railColor: string;
|
|
1599
|
+
}, any>;
|
|
1600
|
+
}>;
|
|
1315
1601
|
}>;
|
|
1316
1602
|
}>>;
|
|
1317
1603
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins/use-theme').Theme<"Image", {
|
|
@@ -1340,7 +1626,20 @@ export declare const Comp: {
|
|
|
1340
1626
|
arrowOffsetVertical: string;
|
|
1341
1627
|
arrowHeight: string;
|
|
1342
1628
|
padding: string;
|
|
1343
|
-
},
|
|
1629
|
+
}, {
|
|
1630
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
1631
|
+
height: string;
|
|
1632
|
+
width: string;
|
|
1633
|
+
borderRadius: string;
|
|
1634
|
+
color: string;
|
|
1635
|
+
colorHover: string;
|
|
1636
|
+
railInsetHorizontalBottom: string;
|
|
1637
|
+
railInsetHorizontalTop: string;
|
|
1638
|
+
railInsetVerticalRight: string;
|
|
1639
|
+
railInsetVerticalLeft: string;
|
|
1640
|
+
railColor: string;
|
|
1641
|
+
}, any>;
|
|
1642
|
+
}>;
|
|
1344
1643
|
}>;
|
|
1345
1644
|
}>>>;
|
|
1346
1645
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins/use-theme').Theme<"Image", {
|
|
@@ -1369,7 +1668,20 @@ export declare const Comp: {
|
|
|
1369
1668
|
arrowOffsetVertical: string;
|
|
1370
1669
|
arrowHeight: string;
|
|
1371
1670
|
padding: string;
|
|
1372
|
-
},
|
|
1671
|
+
}, {
|
|
1672
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
1673
|
+
height: string;
|
|
1674
|
+
width: string;
|
|
1675
|
+
borderRadius: string;
|
|
1676
|
+
color: string;
|
|
1677
|
+
colorHover: string;
|
|
1678
|
+
railInsetHorizontalBottom: string;
|
|
1679
|
+
railInsetHorizontalTop: string;
|
|
1680
|
+
railInsetVerticalRight: string;
|
|
1681
|
+
railInsetVerticalLeft: string;
|
|
1682
|
+
railColor: string;
|
|
1683
|
+
}, any>;
|
|
1684
|
+
}>;
|
|
1373
1685
|
}>;
|
|
1374
1686
|
}>>>;
|
|
1375
1687
|
alt: StringConstructor;
|
|
@@ -1392,24 +1704,24 @@ export declare const Comp: {
|
|
|
1392
1704
|
onLoad: import('vue').PropType<(e: Event) => void>;
|
|
1393
1705
|
}>> & Readonly<{}>, {
|
|
1394
1706
|
click: () => void;
|
|
1707
|
+
showPreview: () => void;
|
|
1395
1708
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
1396
1709
|
groupId: string | undefined;
|
|
1397
1710
|
previewInstRef: import('vue').Ref<{
|
|
1398
1711
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
1399
|
-
|
|
1400
|
-
toggleShow: () => void;
|
|
1401
|
-
} | null, import('naive-ui/es/image/src/ImagePreview').ImagePreviewInst | {
|
|
1712
|
+
} | null, import('naive-ui').ImagePreviewInst | {
|
|
1402
1713
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
1403
|
-
setPreviewSrc: (src?: string) => void;
|
|
1404
|
-
toggleShow: () => void;
|
|
1405
1714
|
} | null>;
|
|
1406
1715
|
imageRef: import('vue').Ref<HTMLImageElement | null, HTMLImageElement | null>;
|
|
1716
|
+
mergedPreviewSrc: import('vue').ComputedRef<string | undefined>;
|
|
1407
1717
|
showError: import('vue').Ref<boolean, boolean>;
|
|
1408
1718
|
shouldStartLoading: import('vue').Ref<boolean, boolean>;
|
|
1409
1719
|
loaded: import('vue').Ref<boolean, boolean>;
|
|
1410
|
-
mergedOnClick: (e:
|
|
1720
|
+
mergedOnClick: (e: PointerEvent) => void;
|
|
1721
|
+
onPreviewClose: () => void;
|
|
1411
1722
|
mergedOnError: (e: Event) => void;
|
|
1412
1723
|
mergedOnLoad: (e: Event) => void;
|
|
1724
|
+
previewShow: import('vue').Ref<boolean, boolean>;
|
|
1413
1725
|
}, {}, {}, {}, {
|
|
1414
1726
|
objectFit: "fill" | "none" | "contain" | "cover" | "scale-down";
|
|
1415
1727
|
lazy: boolean;
|
|
@@ -1974,7 +2286,20 @@ export declare const Comp: {
|
|
|
1974
2286
|
arrowOffsetVertical: string;
|
|
1975
2287
|
arrowHeight: string;
|
|
1976
2288
|
padding: string;
|
|
1977
|
-
},
|
|
2289
|
+
}, {
|
|
2290
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
2291
|
+
height: string;
|
|
2292
|
+
width: string;
|
|
2293
|
+
borderRadius: string;
|
|
2294
|
+
color: string;
|
|
2295
|
+
colorHover: string;
|
|
2296
|
+
railInsetHorizontalBottom: string;
|
|
2297
|
+
railInsetHorizontalTop: string;
|
|
2298
|
+
railInsetVerticalRight: string;
|
|
2299
|
+
railInsetVerticalLeft: string;
|
|
2300
|
+
railColor: string;
|
|
2301
|
+
}, any>;
|
|
2302
|
+
}>;
|
|
1978
2303
|
}>;
|
|
1979
2304
|
}>>;
|
|
1980
2305
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins/use-theme').Theme<"Image", {
|
|
@@ -2003,7 +2328,20 @@ export declare const Comp: {
|
|
|
2003
2328
|
arrowOffsetVertical: string;
|
|
2004
2329
|
arrowHeight: string;
|
|
2005
2330
|
padding: string;
|
|
2006
|
-
},
|
|
2331
|
+
}, {
|
|
2332
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
2333
|
+
height: string;
|
|
2334
|
+
width: string;
|
|
2335
|
+
borderRadius: string;
|
|
2336
|
+
color: string;
|
|
2337
|
+
colorHover: string;
|
|
2338
|
+
railInsetHorizontalBottom: string;
|
|
2339
|
+
railInsetHorizontalTop: string;
|
|
2340
|
+
railInsetVerticalRight: string;
|
|
2341
|
+
railInsetVerticalLeft: string;
|
|
2342
|
+
railColor: string;
|
|
2343
|
+
}, any>;
|
|
2344
|
+
}>;
|
|
2007
2345
|
}>;
|
|
2008
2346
|
}>>>;
|
|
2009
2347
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins/use-theme').Theme<"Image", {
|
|
@@ -2032,7 +2370,20 @@ export declare const Comp: {
|
|
|
2032
2370
|
arrowOffsetVertical: string;
|
|
2033
2371
|
arrowHeight: string;
|
|
2034
2372
|
padding: string;
|
|
2035
|
-
},
|
|
2373
|
+
}, {
|
|
2374
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
2375
|
+
height: string;
|
|
2376
|
+
width: string;
|
|
2377
|
+
borderRadius: string;
|
|
2378
|
+
color: string;
|
|
2379
|
+
colorHover: string;
|
|
2380
|
+
railInsetHorizontalBottom: string;
|
|
2381
|
+
railInsetHorizontalTop: string;
|
|
2382
|
+
railInsetVerticalRight: string;
|
|
2383
|
+
railInsetVerticalLeft: string;
|
|
2384
|
+
railColor: string;
|
|
2385
|
+
}, any>;
|
|
2386
|
+
}>;
|
|
2036
2387
|
}>;
|
|
2037
2388
|
}>>>;
|
|
2038
2389
|
alt: StringConstructor;
|
|
@@ -2055,24 +2406,24 @@ export declare const Comp: {
|
|
|
2055
2406
|
onLoad: import('vue').PropType<(e: Event) => void>;
|
|
2056
2407
|
}>> & Readonly<{}>, {
|
|
2057
2408
|
click: () => void;
|
|
2409
|
+
showPreview: () => void;
|
|
2058
2410
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
2059
2411
|
groupId: string | undefined;
|
|
2060
2412
|
previewInstRef: import('vue').Ref<{
|
|
2061
2413
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
2062
|
-
|
|
2063
|
-
toggleShow: () => void;
|
|
2064
|
-
} | null, import('naive-ui/es/image/src/ImagePreview').ImagePreviewInst | {
|
|
2414
|
+
} | null, import('naive-ui').ImagePreviewInst | {
|
|
2065
2415
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
2066
|
-
setPreviewSrc: (src?: string) => void;
|
|
2067
|
-
toggleShow: () => void;
|
|
2068
2416
|
} | null>;
|
|
2069
2417
|
imageRef: import('vue').Ref<HTMLImageElement | null, HTMLImageElement | null>;
|
|
2418
|
+
mergedPreviewSrc: import('vue').ComputedRef<string | undefined>;
|
|
2070
2419
|
showError: import('vue').Ref<boolean, boolean>;
|
|
2071
2420
|
shouldStartLoading: import('vue').Ref<boolean, boolean>;
|
|
2072
2421
|
loaded: import('vue').Ref<boolean, boolean>;
|
|
2073
|
-
mergedOnClick: (e:
|
|
2422
|
+
mergedOnClick: (e: PointerEvent) => void;
|
|
2423
|
+
onPreviewClose: () => void;
|
|
2074
2424
|
mergedOnError: (e: Event) => void;
|
|
2075
2425
|
mergedOnLoad: (e: Event) => void;
|
|
2426
|
+
previewShow: import('vue').Ref<boolean, boolean>;
|
|
2076
2427
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
2077
2428
|
objectFit: "fill" | "none" | "contain" | "cover" | "scale-down";
|
|
2078
2429
|
lazy: boolean;
|
|
@@ -2121,7 +2472,20 @@ export declare const Comp: {
|
|
|
2121
2472
|
arrowOffsetVertical: string;
|
|
2122
2473
|
arrowHeight: string;
|
|
2123
2474
|
padding: string;
|
|
2124
|
-
},
|
|
2475
|
+
}, {
|
|
2476
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
2477
|
+
height: string;
|
|
2478
|
+
width: string;
|
|
2479
|
+
borderRadius: string;
|
|
2480
|
+
color: string;
|
|
2481
|
+
colorHover: string;
|
|
2482
|
+
railInsetHorizontalBottom: string;
|
|
2483
|
+
railInsetHorizontalTop: string;
|
|
2484
|
+
railInsetVerticalRight: string;
|
|
2485
|
+
railInsetVerticalLeft: string;
|
|
2486
|
+
railColor: string;
|
|
2487
|
+
}, any>;
|
|
2488
|
+
}>;
|
|
2125
2489
|
}>;
|
|
2126
2490
|
}>>;
|
|
2127
2491
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins/use-theme').Theme<"Image", {
|
|
@@ -2150,7 +2514,20 @@ export declare const Comp: {
|
|
|
2150
2514
|
arrowOffsetVertical: string;
|
|
2151
2515
|
arrowHeight: string;
|
|
2152
2516
|
padding: string;
|
|
2153
|
-
},
|
|
2517
|
+
}, {
|
|
2518
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
2519
|
+
height: string;
|
|
2520
|
+
width: string;
|
|
2521
|
+
borderRadius: string;
|
|
2522
|
+
color: string;
|
|
2523
|
+
colorHover: string;
|
|
2524
|
+
railInsetHorizontalBottom: string;
|
|
2525
|
+
railInsetHorizontalTop: string;
|
|
2526
|
+
railInsetVerticalRight: string;
|
|
2527
|
+
railInsetVerticalLeft: string;
|
|
2528
|
+
railColor: string;
|
|
2529
|
+
}, any>;
|
|
2530
|
+
}>;
|
|
2154
2531
|
}>;
|
|
2155
2532
|
}>>>;
|
|
2156
2533
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins/use-theme').Theme<"Image", {
|
|
@@ -2179,7 +2556,20 @@ export declare const Comp: {
|
|
|
2179
2556
|
arrowOffsetVertical: string;
|
|
2180
2557
|
arrowHeight: string;
|
|
2181
2558
|
padding: string;
|
|
2182
|
-
},
|
|
2559
|
+
}, {
|
|
2560
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
2561
|
+
height: string;
|
|
2562
|
+
width: string;
|
|
2563
|
+
borderRadius: string;
|
|
2564
|
+
color: string;
|
|
2565
|
+
colorHover: string;
|
|
2566
|
+
railInsetHorizontalBottom: string;
|
|
2567
|
+
railInsetHorizontalTop: string;
|
|
2568
|
+
railInsetVerticalRight: string;
|
|
2569
|
+
railInsetVerticalLeft: string;
|
|
2570
|
+
railColor: string;
|
|
2571
|
+
}, any>;
|
|
2572
|
+
}>;
|
|
2183
2573
|
}>;
|
|
2184
2574
|
}>>>;
|
|
2185
2575
|
alt: StringConstructor;
|
|
@@ -2202,24 +2592,24 @@ export declare const Comp: {
|
|
|
2202
2592
|
onLoad: import('vue').PropType<(e: Event) => void>;
|
|
2203
2593
|
}>> & Readonly<{}>, {
|
|
2204
2594
|
click: () => void;
|
|
2595
|
+
showPreview: () => void;
|
|
2205
2596
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
2206
2597
|
groupId: string | undefined;
|
|
2207
2598
|
previewInstRef: import('vue').Ref<{
|
|
2208
2599
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
2209
|
-
|
|
2210
|
-
toggleShow: () => void;
|
|
2211
|
-
} | null, import('naive-ui/es/image/src/ImagePreview').ImagePreviewInst | {
|
|
2600
|
+
} | null, import('naive-ui').ImagePreviewInst | {
|
|
2212
2601
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
2213
|
-
setPreviewSrc: (src?: string) => void;
|
|
2214
|
-
toggleShow: () => void;
|
|
2215
2602
|
} | null>;
|
|
2216
2603
|
imageRef: import('vue').Ref<HTMLImageElement | null, HTMLImageElement | null>;
|
|
2604
|
+
mergedPreviewSrc: import('vue').ComputedRef<string | undefined>;
|
|
2217
2605
|
showError: import('vue').Ref<boolean, boolean>;
|
|
2218
2606
|
shouldStartLoading: import('vue').Ref<boolean, boolean>;
|
|
2219
2607
|
loaded: import('vue').Ref<boolean, boolean>;
|
|
2220
|
-
mergedOnClick: (e:
|
|
2608
|
+
mergedOnClick: (e: PointerEvent) => void;
|
|
2609
|
+
onPreviewClose: () => void;
|
|
2221
2610
|
mergedOnError: (e: Event) => void;
|
|
2222
2611
|
mergedOnLoad: (e: Event) => void;
|
|
2612
|
+
previewShow: import('vue').Ref<boolean, boolean>;
|
|
2223
2613
|
}, {}, {}, {}, {
|
|
2224
2614
|
objectFit: "fill" | "none" | "contain" | "cover" | "scale-down";
|
|
2225
2615
|
lazy: boolean;
|
|
@@ -2297,7 +2687,20 @@ export declare const Comp: {
|
|
|
2297
2687
|
arrowOffsetVertical: string;
|
|
2298
2688
|
arrowHeight: string;
|
|
2299
2689
|
padding: string;
|
|
2300
|
-
},
|
|
2690
|
+
}, {
|
|
2691
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
2692
|
+
height: string;
|
|
2693
|
+
width: string;
|
|
2694
|
+
borderRadius: string;
|
|
2695
|
+
color: string;
|
|
2696
|
+
colorHover: string;
|
|
2697
|
+
railInsetHorizontalBottom: string;
|
|
2698
|
+
railInsetHorizontalTop: string;
|
|
2699
|
+
railInsetVerticalRight: string;
|
|
2700
|
+
railInsetVerticalLeft: string;
|
|
2701
|
+
railColor: string;
|
|
2702
|
+
}, any>;
|
|
2703
|
+
}>;
|
|
2301
2704
|
}>;
|
|
2302
2705
|
}>>;
|
|
2303
2706
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins/use-theme').Theme<"Image", {
|
|
@@ -2326,7 +2729,20 @@ export declare const Comp: {
|
|
|
2326
2729
|
arrowOffsetVertical: string;
|
|
2327
2730
|
arrowHeight: string;
|
|
2328
2731
|
padding: string;
|
|
2329
|
-
},
|
|
2732
|
+
}, {
|
|
2733
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
2734
|
+
height: string;
|
|
2735
|
+
width: string;
|
|
2736
|
+
borderRadius: string;
|
|
2737
|
+
color: string;
|
|
2738
|
+
colorHover: string;
|
|
2739
|
+
railInsetHorizontalBottom: string;
|
|
2740
|
+
railInsetHorizontalTop: string;
|
|
2741
|
+
railInsetVerticalRight: string;
|
|
2742
|
+
railInsetVerticalLeft: string;
|
|
2743
|
+
railColor: string;
|
|
2744
|
+
}, any>;
|
|
2745
|
+
}>;
|
|
2330
2746
|
}>;
|
|
2331
2747
|
}>>>;
|
|
2332
2748
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins/use-theme').Theme<"Image", {
|
|
@@ -2355,7 +2771,20 @@ export declare const Comp: {
|
|
|
2355
2771
|
arrowOffsetVertical: string;
|
|
2356
2772
|
arrowHeight: string;
|
|
2357
2773
|
padding: string;
|
|
2358
|
-
},
|
|
2774
|
+
}, {
|
|
2775
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
2776
|
+
height: string;
|
|
2777
|
+
width: string;
|
|
2778
|
+
borderRadius: string;
|
|
2779
|
+
color: string;
|
|
2780
|
+
colorHover: string;
|
|
2781
|
+
railInsetHorizontalBottom: string;
|
|
2782
|
+
railInsetHorizontalTop: string;
|
|
2783
|
+
railInsetVerticalRight: string;
|
|
2784
|
+
railInsetVerticalLeft: string;
|
|
2785
|
+
railColor: string;
|
|
2786
|
+
}, any>;
|
|
2787
|
+
}>;
|
|
2359
2788
|
}>;
|
|
2360
2789
|
}>>>;
|
|
2361
2790
|
alt: StringConstructor;
|
|
@@ -2378,24 +2807,24 @@ export declare const Comp: {
|
|
|
2378
2807
|
onLoad: import('vue').PropType<(e: Event) => void>;
|
|
2379
2808
|
}>> & Readonly<{}>, {
|
|
2380
2809
|
click: () => void;
|
|
2810
|
+
showPreview: () => void;
|
|
2381
2811
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
2382
2812
|
groupId: string | undefined;
|
|
2383
2813
|
previewInstRef: import('vue').Ref<{
|
|
2384
2814
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
2385
|
-
|
|
2386
|
-
toggleShow: () => void;
|
|
2387
|
-
} | null, import('naive-ui/es/image/src/ImagePreview').ImagePreviewInst | {
|
|
2815
|
+
} | null, import('naive-ui').ImagePreviewInst | {
|
|
2388
2816
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
2389
|
-
setPreviewSrc: (src?: string) => void;
|
|
2390
|
-
toggleShow: () => void;
|
|
2391
2817
|
} | null>;
|
|
2392
2818
|
imageRef: import('vue').Ref<HTMLImageElement | null, HTMLImageElement | null>;
|
|
2819
|
+
mergedPreviewSrc: import('vue').ComputedRef<string | undefined>;
|
|
2393
2820
|
showError: import('vue').Ref<boolean, boolean>;
|
|
2394
2821
|
shouldStartLoading: import('vue').Ref<boolean, boolean>;
|
|
2395
2822
|
loaded: import('vue').Ref<boolean, boolean>;
|
|
2396
|
-
mergedOnClick: (e:
|
|
2823
|
+
mergedOnClick: (e: PointerEvent) => void;
|
|
2824
|
+
onPreviewClose: () => void;
|
|
2397
2825
|
mergedOnError: (e: Event) => void;
|
|
2398
2826
|
mergedOnLoad: (e: Event) => void;
|
|
2827
|
+
previewShow: import('vue').Ref<boolean, boolean>;
|
|
2399
2828
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
2400
2829
|
objectFit: "fill" | "none" | "contain" | "cover" | "scale-down";
|
|
2401
2830
|
lazy: boolean;
|
|
@@ -2444,7 +2873,20 @@ export declare const Comp: {
|
|
|
2444
2873
|
arrowOffsetVertical: string;
|
|
2445
2874
|
arrowHeight: string;
|
|
2446
2875
|
padding: string;
|
|
2447
|
-
},
|
|
2876
|
+
}, {
|
|
2877
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
2878
|
+
height: string;
|
|
2879
|
+
width: string;
|
|
2880
|
+
borderRadius: string;
|
|
2881
|
+
color: string;
|
|
2882
|
+
colorHover: string;
|
|
2883
|
+
railInsetHorizontalBottom: string;
|
|
2884
|
+
railInsetHorizontalTop: string;
|
|
2885
|
+
railInsetVerticalRight: string;
|
|
2886
|
+
railInsetVerticalLeft: string;
|
|
2887
|
+
railColor: string;
|
|
2888
|
+
}, any>;
|
|
2889
|
+
}>;
|
|
2448
2890
|
}>;
|
|
2449
2891
|
}>>;
|
|
2450
2892
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins/use-theme').Theme<"Image", {
|
|
@@ -2473,7 +2915,20 @@ export declare const Comp: {
|
|
|
2473
2915
|
arrowOffsetVertical: string;
|
|
2474
2916
|
arrowHeight: string;
|
|
2475
2917
|
padding: string;
|
|
2476
|
-
},
|
|
2918
|
+
}, {
|
|
2919
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
2920
|
+
height: string;
|
|
2921
|
+
width: string;
|
|
2922
|
+
borderRadius: string;
|
|
2923
|
+
color: string;
|
|
2924
|
+
colorHover: string;
|
|
2925
|
+
railInsetHorizontalBottom: string;
|
|
2926
|
+
railInsetHorizontalTop: string;
|
|
2927
|
+
railInsetVerticalRight: string;
|
|
2928
|
+
railInsetVerticalLeft: string;
|
|
2929
|
+
railColor: string;
|
|
2930
|
+
}, any>;
|
|
2931
|
+
}>;
|
|
2477
2932
|
}>;
|
|
2478
2933
|
}>>>;
|
|
2479
2934
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins/use-theme').Theme<"Image", {
|
|
@@ -2502,7 +2957,20 @@ export declare const Comp: {
|
|
|
2502
2957
|
arrowOffsetVertical: string;
|
|
2503
2958
|
arrowHeight: string;
|
|
2504
2959
|
padding: string;
|
|
2505
|
-
},
|
|
2960
|
+
}, {
|
|
2961
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
2962
|
+
height: string;
|
|
2963
|
+
width: string;
|
|
2964
|
+
borderRadius: string;
|
|
2965
|
+
color: string;
|
|
2966
|
+
colorHover: string;
|
|
2967
|
+
railInsetHorizontalBottom: string;
|
|
2968
|
+
railInsetHorizontalTop: string;
|
|
2969
|
+
railInsetVerticalRight: string;
|
|
2970
|
+
railInsetVerticalLeft: string;
|
|
2971
|
+
railColor: string;
|
|
2972
|
+
}, any>;
|
|
2973
|
+
}>;
|
|
2506
2974
|
}>;
|
|
2507
2975
|
}>>>;
|
|
2508
2976
|
alt: StringConstructor;
|
|
@@ -2525,24 +2993,24 @@ export declare const Comp: {
|
|
|
2525
2993
|
onLoad: import('vue').PropType<(e: Event) => void>;
|
|
2526
2994
|
}>> & Readonly<{}>, {
|
|
2527
2995
|
click: () => void;
|
|
2996
|
+
showPreview: () => void;
|
|
2528
2997
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
2529
2998
|
groupId: string | undefined;
|
|
2530
2999
|
previewInstRef: import('vue').Ref<{
|
|
2531
3000
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
2532
|
-
|
|
2533
|
-
toggleShow: () => void;
|
|
2534
|
-
} | null, import('naive-ui/es/image/src/ImagePreview').ImagePreviewInst | {
|
|
3001
|
+
} | null, import('naive-ui').ImagePreviewInst | {
|
|
2535
3002
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
2536
|
-
setPreviewSrc: (src?: string) => void;
|
|
2537
|
-
toggleShow: () => void;
|
|
2538
3003
|
} | null>;
|
|
2539
3004
|
imageRef: import('vue').Ref<HTMLImageElement | null, HTMLImageElement | null>;
|
|
3005
|
+
mergedPreviewSrc: import('vue').ComputedRef<string | undefined>;
|
|
2540
3006
|
showError: import('vue').Ref<boolean, boolean>;
|
|
2541
3007
|
shouldStartLoading: import('vue').Ref<boolean, boolean>;
|
|
2542
3008
|
loaded: import('vue').Ref<boolean, boolean>;
|
|
2543
|
-
mergedOnClick: (e:
|
|
3009
|
+
mergedOnClick: (e: PointerEvent) => void;
|
|
3010
|
+
onPreviewClose: () => void;
|
|
2544
3011
|
mergedOnError: (e: Event) => void;
|
|
2545
3012
|
mergedOnLoad: (e: Event) => void;
|
|
3013
|
+
previewShow: import('vue').Ref<boolean, boolean>;
|
|
2546
3014
|
}, {}, {}, {}, {
|
|
2547
3015
|
objectFit: "fill" | "none" | "contain" | "cover" | "scale-down";
|
|
2548
3016
|
lazy: boolean;
|
|
@@ -2641,7 +3109,20 @@ export declare const Comp: {
|
|
|
2641
3109
|
arrowOffsetVertical: string;
|
|
2642
3110
|
arrowHeight: string;
|
|
2643
3111
|
padding: string;
|
|
2644
|
-
},
|
|
3112
|
+
}, {
|
|
3113
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
3114
|
+
height: string;
|
|
3115
|
+
width: string;
|
|
3116
|
+
borderRadius: string;
|
|
3117
|
+
color: string;
|
|
3118
|
+
colorHover: string;
|
|
3119
|
+
railInsetHorizontalBottom: string;
|
|
3120
|
+
railInsetHorizontalTop: string;
|
|
3121
|
+
railInsetVerticalRight: string;
|
|
3122
|
+
railInsetVerticalLeft: string;
|
|
3123
|
+
railColor: string;
|
|
3124
|
+
}, any>;
|
|
3125
|
+
}>;
|
|
2645
3126
|
}>;
|
|
2646
3127
|
}>>;
|
|
2647
3128
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins/use-theme').Theme<"Image", {
|
|
@@ -2670,7 +3151,20 @@ export declare const Comp: {
|
|
|
2670
3151
|
arrowOffsetVertical: string;
|
|
2671
3152
|
arrowHeight: string;
|
|
2672
3153
|
padding: string;
|
|
2673
|
-
},
|
|
3154
|
+
}, {
|
|
3155
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
3156
|
+
height: string;
|
|
3157
|
+
width: string;
|
|
3158
|
+
borderRadius: string;
|
|
3159
|
+
color: string;
|
|
3160
|
+
colorHover: string;
|
|
3161
|
+
railInsetHorizontalBottom: string;
|
|
3162
|
+
railInsetHorizontalTop: string;
|
|
3163
|
+
railInsetVerticalRight: string;
|
|
3164
|
+
railInsetVerticalLeft: string;
|
|
3165
|
+
railColor: string;
|
|
3166
|
+
}, any>;
|
|
3167
|
+
}>;
|
|
2674
3168
|
}>;
|
|
2675
3169
|
}>>>;
|
|
2676
3170
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins/use-theme').Theme<"Image", {
|
|
@@ -2699,7 +3193,20 @@ export declare const Comp: {
|
|
|
2699
3193
|
arrowOffsetVertical: string;
|
|
2700
3194
|
arrowHeight: string;
|
|
2701
3195
|
padding: string;
|
|
2702
|
-
},
|
|
3196
|
+
}, {
|
|
3197
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
3198
|
+
height: string;
|
|
3199
|
+
width: string;
|
|
3200
|
+
borderRadius: string;
|
|
3201
|
+
color: string;
|
|
3202
|
+
colorHover: string;
|
|
3203
|
+
railInsetHorizontalBottom: string;
|
|
3204
|
+
railInsetHorizontalTop: string;
|
|
3205
|
+
railInsetVerticalRight: string;
|
|
3206
|
+
railInsetVerticalLeft: string;
|
|
3207
|
+
railColor: string;
|
|
3208
|
+
}, any>;
|
|
3209
|
+
}>;
|
|
2703
3210
|
}>;
|
|
2704
3211
|
}>>>;
|
|
2705
3212
|
alt: StringConstructor;
|
|
@@ -2722,24 +3229,24 @@ export declare const Comp: {
|
|
|
2722
3229
|
onLoad: import('vue').PropType<(e: Event) => void>;
|
|
2723
3230
|
}>> & Readonly<{}>, {
|
|
2724
3231
|
click: () => void;
|
|
3232
|
+
showPreview: () => void;
|
|
2725
3233
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
2726
3234
|
groupId: string | undefined;
|
|
2727
3235
|
previewInstRef: import('vue').Ref<{
|
|
2728
3236
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
2729
|
-
|
|
2730
|
-
toggleShow: () => void;
|
|
2731
|
-
} | null, import('naive-ui/es/image/src/ImagePreview').ImagePreviewInst | {
|
|
3237
|
+
} | null, import('naive-ui').ImagePreviewInst | {
|
|
2732
3238
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
2733
|
-
setPreviewSrc: (src?: string) => void;
|
|
2734
|
-
toggleShow: () => void;
|
|
2735
3239
|
} | null>;
|
|
2736
3240
|
imageRef: import('vue').Ref<HTMLImageElement | null, HTMLImageElement | null>;
|
|
3241
|
+
mergedPreviewSrc: import('vue').ComputedRef<string | undefined>;
|
|
2737
3242
|
showError: import('vue').Ref<boolean, boolean>;
|
|
2738
3243
|
shouldStartLoading: import('vue').Ref<boolean, boolean>;
|
|
2739
3244
|
loaded: import('vue').Ref<boolean, boolean>;
|
|
2740
|
-
mergedOnClick: (e:
|
|
3245
|
+
mergedOnClick: (e: PointerEvent) => void;
|
|
3246
|
+
onPreviewClose: () => void;
|
|
2741
3247
|
mergedOnError: (e: Event) => void;
|
|
2742
3248
|
mergedOnLoad: (e: Event) => void;
|
|
3249
|
+
previewShow: import('vue').Ref<boolean, boolean>;
|
|
2743
3250
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
2744
3251
|
objectFit: "fill" | "none" | "contain" | "cover" | "scale-down";
|
|
2745
3252
|
lazy: boolean;
|
|
@@ -2788,7 +3295,20 @@ export declare const Comp: {
|
|
|
2788
3295
|
arrowOffsetVertical: string;
|
|
2789
3296
|
arrowHeight: string;
|
|
2790
3297
|
padding: string;
|
|
2791
|
-
},
|
|
3298
|
+
}, {
|
|
3299
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
3300
|
+
height: string;
|
|
3301
|
+
width: string;
|
|
3302
|
+
borderRadius: string;
|
|
3303
|
+
color: string;
|
|
3304
|
+
colorHover: string;
|
|
3305
|
+
railInsetHorizontalBottom: string;
|
|
3306
|
+
railInsetHorizontalTop: string;
|
|
3307
|
+
railInsetVerticalRight: string;
|
|
3308
|
+
railInsetVerticalLeft: string;
|
|
3309
|
+
railColor: string;
|
|
3310
|
+
}, any>;
|
|
3311
|
+
}>;
|
|
2792
3312
|
}>;
|
|
2793
3313
|
}>>;
|
|
2794
3314
|
themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins/use-theme').Theme<"Image", {
|
|
@@ -2817,7 +3337,20 @@ export declare const Comp: {
|
|
|
2817
3337
|
arrowOffsetVertical: string;
|
|
2818
3338
|
arrowHeight: string;
|
|
2819
3339
|
padding: string;
|
|
2820
|
-
},
|
|
3340
|
+
}, {
|
|
3341
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
3342
|
+
height: string;
|
|
3343
|
+
width: string;
|
|
3344
|
+
borderRadius: string;
|
|
3345
|
+
color: string;
|
|
3346
|
+
colorHover: string;
|
|
3347
|
+
railInsetHorizontalBottom: string;
|
|
3348
|
+
railInsetHorizontalTop: string;
|
|
3349
|
+
railInsetVerticalRight: string;
|
|
3350
|
+
railInsetVerticalLeft: string;
|
|
3351
|
+
railColor: string;
|
|
3352
|
+
}, any>;
|
|
3353
|
+
}>;
|
|
2821
3354
|
}>;
|
|
2822
3355
|
}>>>;
|
|
2823
3356
|
builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins/use-theme').Theme<"Image", {
|
|
@@ -2846,7 +3379,20 @@ export declare const Comp: {
|
|
|
2846
3379
|
arrowOffsetVertical: string;
|
|
2847
3380
|
arrowHeight: string;
|
|
2848
3381
|
padding: string;
|
|
2849
|
-
},
|
|
3382
|
+
}, {
|
|
3383
|
+
Scrollbar: import('naive-ui/es/_mixins/use-theme').Theme<"Scrollbar", {
|
|
3384
|
+
height: string;
|
|
3385
|
+
width: string;
|
|
3386
|
+
borderRadius: string;
|
|
3387
|
+
color: string;
|
|
3388
|
+
colorHover: string;
|
|
3389
|
+
railInsetHorizontalBottom: string;
|
|
3390
|
+
railInsetHorizontalTop: string;
|
|
3391
|
+
railInsetVerticalRight: string;
|
|
3392
|
+
railInsetVerticalLeft: string;
|
|
3393
|
+
railColor: string;
|
|
3394
|
+
}, any>;
|
|
3395
|
+
}>;
|
|
2850
3396
|
}>;
|
|
2851
3397
|
}>>>;
|
|
2852
3398
|
alt: StringConstructor;
|
|
@@ -2869,24 +3415,24 @@ export declare const Comp: {
|
|
|
2869
3415
|
onLoad: import('vue').PropType<(e: Event) => void>;
|
|
2870
3416
|
}>> & Readonly<{}>, {
|
|
2871
3417
|
click: () => void;
|
|
3418
|
+
showPreview: () => void;
|
|
2872
3419
|
mergedClsPrefix: import('vue').Ref<string, string>;
|
|
2873
3420
|
groupId: string | undefined;
|
|
2874
3421
|
previewInstRef: import('vue').Ref<{
|
|
2875
3422
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
2876
|
-
|
|
2877
|
-
toggleShow: () => void;
|
|
2878
|
-
} | null, import('naive-ui/es/image/src/ImagePreview').ImagePreviewInst | {
|
|
3423
|
+
} | null, import('naive-ui').ImagePreviewInst | {
|
|
2879
3424
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
2880
|
-
setPreviewSrc: (src?: string) => void;
|
|
2881
|
-
toggleShow: () => void;
|
|
2882
3425
|
} | null>;
|
|
2883
3426
|
imageRef: import('vue').Ref<HTMLImageElement | null, HTMLImageElement | null>;
|
|
3427
|
+
mergedPreviewSrc: import('vue').ComputedRef<string | undefined>;
|
|
2884
3428
|
showError: import('vue').Ref<boolean, boolean>;
|
|
2885
3429
|
shouldStartLoading: import('vue').Ref<boolean, boolean>;
|
|
2886
3430
|
loaded: import('vue').Ref<boolean, boolean>;
|
|
2887
|
-
mergedOnClick: (e:
|
|
3431
|
+
mergedOnClick: (e: PointerEvent) => void;
|
|
3432
|
+
onPreviewClose: () => void;
|
|
2888
3433
|
mergedOnError: (e: Event) => void;
|
|
2889
3434
|
mergedOnLoad: (e: Event) => void;
|
|
3435
|
+
previewShow: import('vue').Ref<boolean, boolean>;
|
|
2890
3436
|
}, {}, {}, {}, {
|
|
2891
3437
|
objectFit: "fill" | "none" | "contain" | "cover" | "scale-down";
|
|
2892
3438
|
lazy: boolean;
|