@pitcher/js-api 1.25.0-beta.1 → 1.25.0-beta.2

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.
@@ -1,5 +1,5 @@
1
- import { Ref } from 'vue';
2
- import { FormInst } from 'naive-ui';
1
+ import { ComputedRef, Ref } from 'vue';
2
+ import { FormInst, UploadFileInfo } from 'naive-ui';
3
3
  import { CanvasThemeStatus } from '../../../types/canvasTheme';
4
4
  import { SelectOptionActionUrl } from '../../../theme/theme.types';
5
5
  type __VLS_Props = {
@@ -315,5 +315,2261 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
315
315
  readonly showFeedback: boolean;
316
316
  readonly showLabel: boolean | undefined;
317
317
  }> | null;
318
+ uploadRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
319
+ readonly name: {
320
+ readonly type: StringConstructor;
321
+ readonly default: "file";
322
+ };
323
+ readonly accept: StringConstructor;
324
+ readonly action: StringConstructor;
325
+ readonly customRequest: import('vue').PropType<import('naive-ui/es/upload/src/interface').CustomRequest>;
326
+ readonly directory: BooleanConstructor;
327
+ readonly directoryDnd: {
328
+ readonly type: BooleanConstructor;
329
+ readonly default: undefined;
330
+ };
331
+ readonly method: {
332
+ readonly type: StringConstructor;
333
+ readonly default: "POST";
334
+ };
335
+ readonly multiple: BooleanConstructor;
336
+ readonly showFileList: {
337
+ readonly type: BooleanConstructor;
338
+ readonly default: true;
339
+ };
340
+ readonly data: import('vue').PropType<import('naive-ui/es/upload/src/interface').FuncOrRecordOrUndef<string | Blob>>;
341
+ readonly headers: import('vue').PropType<import('naive-ui/es/upload/src/interface').FuncOrRecordOrUndef>;
342
+ readonly withCredentials: BooleanConstructor;
343
+ readonly responseType: {
344
+ readonly type: import('vue').PropType<XMLHttpRequestResponseType>;
345
+ readonly default: "";
346
+ };
347
+ readonly disabled: {
348
+ readonly type: import('vue').PropType<boolean | undefined>;
349
+ readonly default: undefined;
350
+ };
351
+ readonly onChange: import('vue').PropType<import('naive-ui').UploadOnChange>;
352
+ readonly onRemove: import('vue').PropType<import('naive-ui').UploadOnRemove>;
353
+ readonly onFinish: import('vue').PropType<import('naive-ui').UploadOnFinish>;
354
+ readonly onError: import('vue').PropType<import('naive-ui/es/upload/src/interface').OnError>;
355
+ readonly onRetry: import('vue').PropType<import('naive-ui/es/upload/src/interface').OnRetry>;
356
+ readonly onBeforeUpload: import('vue').PropType<import('naive-ui/es/upload/src/interface').OnBeforeUpload>;
357
+ readonly isErrorState: import('vue').PropType<(xhr: XMLHttpRequest) => boolean>;
358
+ readonly onDownload: import('vue').PropType<import('naive-ui').UploadOnDownload>;
359
+ readonly defaultUpload: {
360
+ readonly type: BooleanConstructor;
361
+ readonly default: true;
362
+ };
363
+ readonly fileList: import('vue').PropType<UploadFileInfo[]>;
364
+ readonly 'onUpdate:fileList': import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/upload/src/interface').OnUpdateFileList>>;
365
+ readonly onUpdateFileList: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/upload/src/interface').OnUpdateFileList>>;
366
+ readonly fileListClass: StringConstructor;
367
+ readonly fileListStyle: import('vue').PropType<string | import('vue').CSSProperties>;
368
+ readonly defaultFileList: {
369
+ readonly type: import('vue').PropType<UploadFileInfo[]>;
370
+ readonly default: () => never[];
371
+ };
372
+ readonly showCancelButton: {
373
+ readonly type: BooleanConstructor;
374
+ readonly default: true;
375
+ };
376
+ readonly showRemoveButton: {
377
+ readonly type: BooleanConstructor;
378
+ readonly default: true;
379
+ };
380
+ readonly showDownloadButton: BooleanConstructor;
381
+ readonly showRetryButton: {
382
+ readonly type: BooleanConstructor;
383
+ readonly default: true;
384
+ };
385
+ readonly showPreviewButton: {
386
+ readonly type: BooleanConstructor;
387
+ readonly default: true;
388
+ };
389
+ readonly listType: {
390
+ readonly type: import('vue').PropType<import('naive-ui/es/upload/src/interface').ListType>;
391
+ readonly default: "text";
392
+ };
393
+ readonly onPreview: import('vue').PropType<import('naive-ui/es/upload/src/interface').OnPreview>;
394
+ readonly shouldUseThumbnailUrl: {
395
+ readonly type: import('vue').PropType<import('naive-ui/es/upload/src/interface').ShouldUseThumbnailUrl>;
396
+ readonly default: (file: import('naive-ui').UploadSettledFileInfo) => boolean;
397
+ };
398
+ readonly createThumbnailUrl: import('vue').PropType<import('naive-ui/es/upload/src/interface').CreateThumbnailUrl>;
399
+ readonly abstract: BooleanConstructor;
400
+ readonly max: NumberConstructor;
401
+ readonly showTrigger: {
402
+ readonly type: BooleanConstructor;
403
+ readonly default: true;
404
+ };
405
+ readonly imageGroupProps: import('vue').PropType<import('naive-ui').ImageGroupProps>;
406
+ readonly inputProps: import('vue').PropType<import('vue').InputHTMLAttributes>;
407
+ readonly triggerClass: StringConstructor;
408
+ readonly triggerStyle: import('vue').PropType<import('vue').CSSProperties | string>;
409
+ readonly renderIcon: import('vue').PropType<import('naive-ui/es/upload/src/interface').RenderIcon>;
410
+ readonly theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"Upload", {
411
+ fontSize: string;
412
+ lineHeight: string;
413
+ borderRadius: string;
414
+ draggerColor: string;
415
+ draggerBorder: string;
416
+ draggerBorderHover: string;
417
+ itemColorHover: string;
418
+ itemColorHoverError: string;
419
+ itemTextColor: string;
420
+ itemTextColorError: string;
421
+ itemTextColorSuccess: string;
422
+ itemIconColor: string;
423
+ itemDisabledOpacity: string;
424
+ itemBorderImageCardError: string;
425
+ itemBorderImageCard: string;
426
+ }, {
427
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
428
+ heightTiny: string;
429
+ heightSmall: string;
430
+ heightMedium: string;
431
+ heightLarge: string;
432
+ borderRadiusTiny: string;
433
+ borderRadiusSmall: string;
434
+ borderRadiusMedium: string;
435
+ borderRadiusLarge: string;
436
+ fontSizeTiny: string;
437
+ fontSizeSmall: string;
438
+ fontSizeMedium: string;
439
+ fontSizeLarge: string;
440
+ opacityDisabled: string;
441
+ colorOpacitySecondary: string;
442
+ colorOpacitySecondaryHover: string;
443
+ colorOpacitySecondaryPressed: string;
444
+ colorSecondary: string;
445
+ colorSecondaryHover: string;
446
+ colorSecondaryPressed: string;
447
+ colorTertiary: string;
448
+ colorTertiaryHover: string;
449
+ colorTertiaryPressed: string;
450
+ colorQuaternary: string;
451
+ colorQuaternaryHover: string;
452
+ colorQuaternaryPressed: string;
453
+ color: string;
454
+ colorHover: string;
455
+ colorPressed: string;
456
+ colorFocus: string;
457
+ colorDisabled: string;
458
+ textColor: string;
459
+ textColorTertiary: string;
460
+ textColorHover: string;
461
+ textColorPressed: string;
462
+ textColorFocus: string;
463
+ textColorDisabled: string;
464
+ textColorText: string;
465
+ textColorTextHover: string;
466
+ textColorTextPressed: string;
467
+ textColorTextFocus: string;
468
+ textColorTextDisabled: string;
469
+ textColorGhost: string;
470
+ textColorGhostHover: string;
471
+ textColorGhostPressed: string;
472
+ textColorGhostFocus: string;
473
+ textColorGhostDisabled: string;
474
+ border: string;
475
+ borderHover: string;
476
+ borderPressed: string;
477
+ borderFocus: string;
478
+ borderDisabled: string;
479
+ rippleColor: string;
480
+ colorPrimary: string;
481
+ colorHoverPrimary: string;
482
+ colorPressedPrimary: string;
483
+ colorFocusPrimary: string;
484
+ colorDisabledPrimary: string;
485
+ textColorPrimary: string;
486
+ textColorHoverPrimary: string;
487
+ textColorPressedPrimary: string;
488
+ textColorFocusPrimary: string;
489
+ textColorDisabledPrimary: string;
490
+ textColorTextPrimary: string;
491
+ textColorTextHoverPrimary: string;
492
+ textColorTextPressedPrimary: string;
493
+ textColorTextFocusPrimary: string;
494
+ textColorTextDisabledPrimary: string;
495
+ textColorGhostPrimary: string;
496
+ textColorGhostHoverPrimary: string;
497
+ textColorGhostPressedPrimary: string;
498
+ textColorGhostFocusPrimary: string;
499
+ textColorGhostDisabledPrimary: string;
500
+ borderPrimary: string;
501
+ borderHoverPrimary: string;
502
+ borderPressedPrimary: string;
503
+ borderFocusPrimary: string;
504
+ borderDisabledPrimary: string;
505
+ rippleColorPrimary: string;
506
+ colorInfo: string;
507
+ colorHoverInfo: string;
508
+ colorPressedInfo: string;
509
+ colorFocusInfo: string;
510
+ colorDisabledInfo: string;
511
+ textColorInfo: string;
512
+ textColorHoverInfo: string;
513
+ textColorPressedInfo: string;
514
+ textColorFocusInfo: string;
515
+ textColorDisabledInfo: string;
516
+ textColorTextInfo: string;
517
+ textColorTextHoverInfo: string;
518
+ textColorTextPressedInfo: string;
519
+ textColorTextFocusInfo: string;
520
+ textColorTextDisabledInfo: string;
521
+ textColorGhostInfo: string;
522
+ textColorGhostHoverInfo: string;
523
+ textColorGhostPressedInfo: string;
524
+ textColorGhostFocusInfo: string;
525
+ textColorGhostDisabledInfo: string;
526
+ borderInfo: string;
527
+ borderHoverInfo: string;
528
+ borderPressedInfo: string;
529
+ borderFocusInfo: string;
530
+ borderDisabledInfo: string;
531
+ rippleColorInfo: string;
532
+ colorSuccess: string;
533
+ colorHoverSuccess: string;
534
+ colorPressedSuccess: string;
535
+ colorFocusSuccess: string;
536
+ colorDisabledSuccess: string;
537
+ textColorSuccess: string;
538
+ textColorHoverSuccess: string;
539
+ textColorPressedSuccess: string;
540
+ textColorFocusSuccess: string;
541
+ textColorDisabledSuccess: string;
542
+ textColorTextSuccess: string;
543
+ textColorTextHoverSuccess: string;
544
+ textColorTextPressedSuccess: string;
545
+ textColorTextFocusSuccess: string;
546
+ textColorTextDisabledSuccess: string;
547
+ textColorGhostSuccess: string;
548
+ textColorGhostHoverSuccess: string;
549
+ textColorGhostPressedSuccess: string;
550
+ textColorGhostFocusSuccess: string;
551
+ textColorGhostDisabledSuccess: string;
552
+ borderSuccess: string;
553
+ borderHoverSuccess: string;
554
+ borderPressedSuccess: string;
555
+ borderFocusSuccess: string;
556
+ borderDisabledSuccess: string;
557
+ rippleColorSuccess: string;
558
+ colorWarning: string;
559
+ colorHoverWarning: string;
560
+ colorPressedWarning: string;
561
+ colorFocusWarning: string;
562
+ colorDisabledWarning: string;
563
+ textColorWarning: string;
564
+ textColorHoverWarning: string;
565
+ textColorPressedWarning: string;
566
+ textColorFocusWarning: string;
567
+ textColorDisabledWarning: string;
568
+ textColorTextWarning: string;
569
+ textColorTextHoverWarning: string;
570
+ textColorTextPressedWarning: string;
571
+ textColorTextFocusWarning: string;
572
+ textColorTextDisabledWarning: string;
573
+ textColorGhostWarning: string;
574
+ textColorGhostHoverWarning: string;
575
+ textColorGhostPressedWarning: string;
576
+ textColorGhostFocusWarning: string;
577
+ textColorGhostDisabledWarning: string;
578
+ borderWarning: string;
579
+ borderHoverWarning: string;
580
+ borderPressedWarning: string;
581
+ borderFocusWarning: string;
582
+ borderDisabledWarning: string;
583
+ rippleColorWarning: string;
584
+ colorError: string;
585
+ colorHoverError: string;
586
+ colorPressedError: string;
587
+ colorFocusError: string;
588
+ colorDisabledError: string;
589
+ textColorError: string;
590
+ textColorHoverError: string;
591
+ textColorPressedError: string;
592
+ textColorFocusError: string;
593
+ textColorDisabledError: string;
594
+ textColorTextError: string;
595
+ textColorTextHoverError: string;
596
+ textColorTextPressedError: string;
597
+ textColorTextFocusError: string;
598
+ textColorTextDisabledError: string;
599
+ textColorGhostError: string;
600
+ textColorGhostHoverError: string;
601
+ textColorGhostPressedError: string;
602
+ textColorGhostFocusError: string;
603
+ textColorGhostDisabledError: string;
604
+ borderError: string;
605
+ borderHoverError: string;
606
+ borderPressedError: string;
607
+ borderFocusError: string;
608
+ borderDisabledError: string;
609
+ rippleColorError: string;
610
+ waveOpacity: string;
611
+ fontWeight: string;
612
+ fontWeightStrong: string;
613
+ paddingTiny: string;
614
+ paddingSmall: string;
615
+ paddingMedium: string;
616
+ paddingLarge: string;
617
+ paddingRoundTiny: string;
618
+ paddingRoundSmall: string;
619
+ paddingRoundMedium: string;
620
+ paddingRoundLarge: string;
621
+ iconMarginTiny: string;
622
+ iconMarginSmall: string;
623
+ iconMarginMedium: string;
624
+ iconMarginLarge: string;
625
+ iconSizeTiny: string;
626
+ iconSizeSmall: string;
627
+ iconSizeMedium: string;
628
+ iconSizeLarge: string;
629
+ rippleDuration: string;
630
+ }, any>;
631
+ Progress: import('naive-ui/es/_mixins').Theme<"Progress", {
632
+ fontSize: string;
633
+ fontSizeCircle: string;
634
+ fontWeightCircle: string;
635
+ railColor: string;
636
+ railHeight: string;
637
+ iconSizeCircle: string;
638
+ iconSizeLine: string;
639
+ iconColor: string;
640
+ iconColorInfo: string;
641
+ iconColorSuccess: string;
642
+ iconColorWarning: string;
643
+ iconColorError: string;
644
+ textColorCircle: string;
645
+ textColorLineInner: string;
646
+ textColorLineOuter: string;
647
+ fillColor: string;
648
+ fillColorInfo: string;
649
+ fillColorSuccess: string;
650
+ fillColorWarning: string;
651
+ fillColorError: string;
652
+ lineBgProcessing: string;
653
+ }, any>;
654
+ }>>;
655
+ readonly themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Upload", {
656
+ fontSize: string;
657
+ lineHeight: string;
658
+ borderRadius: string;
659
+ draggerColor: string;
660
+ draggerBorder: string;
661
+ draggerBorderHover: string;
662
+ itemColorHover: string;
663
+ itemColorHoverError: string;
664
+ itemTextColor: string;
665
+ itemTextColorError: string;
666
+ itemTextColorSuccess: string;
667
+ itemIconColor: string;
668
+ itemDisabledOpacity: string;
669
+ itemBorderImageCardError: string;
670
+ itemBorderImageCard: string;
671
+ }, {
672
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
673
+ heightTiny: string;
674
+ heightSmall: string;
675
+ heightMedium: string;
676
+ heightLarge: string;
677
+ borderRadiusTiny: string;
678
+ borderRadiusSmall: string;
679
+ borderRadiusMedium: string;
680
+ borderRadiusLarge: string;
681
+ fontSizeTiny: string;
682
+ fontSizeSmall: string;
683
+ fontSizeMedium: string;
684
+ fontSizeLarge: string;
685
+ opacityDisabled: string;
686
+ colorOpacitySecondary: string;
687
+ colorOpacitySecondaryHover: string;
688
+ colorOpacitySecondaryPressed: string;
689
+ colorSecondary: string;
690
+ colorSecondaryHover: string;
691
+ colorSecondaryPressed: string;
692
+ colorTertiary: string;
693
+ colorTertiaryHover: string;
694
+ colorTertiaryPressed: string;
695
+ colorQuaternary: string;
696
+ colorQuaternaryHover: string;
697
+ colorQuaternaryPressed: string;
698
+ color: string;
699
+ colorHover: string;
700
+ colorPressed: string;
701
+ colorFocus: string;
702
+ colorDisabled: string;
703
+ textColor: string;
704
+ textColorTertiary: string;
705
+ textColorHover: string;
706
+ textColorPressed: string;
707
+ textColorFocus: string;
708
+ textColorDisabled: string;
709
+ textColorText: string;
710
+ textColorTextHover: string;
711
+ textColorTextPressed: string;
712
+ textColorTextFocus: string;
713
+ textColorTextDisabled: string;
714
+ textColorGhost: string;
715
+ textColorGhostHover: string;
716
+ textColorGhostPressed: string;
717
+ textColorGhostFocus: string;
718
+ textColorGhostDisabled: string;
719
+ border: string;
720
+ borderHover: string;
721
+ borderPressed: string;
722
+ borderFocus: string;
723
+ borderDisabled: string;
724
+ rippleColor: string;
725
+ colorPrimary: string;
726
+ colorHoverPrimary: string;
727
+ colorPressedPrimary: string;
728
+ colorFocusPrimary: string;
729
+ colorDisabledPrimary: string;
730
+ textColorPrimary: string;
731
+ textColorHoverPrimary: string;
732
+ textColorPressedPrimary: string;
733
+ textColorFocusPrimary: string;
734
+ textColorDisabledPrimary: string;
735
+ textColorTextPrimary: string;
736
+ textColorTextHoverPrimary: string;
737
+ textColorTextPressedPrimary: string;
738
+ textColorTextFocusPrimary: string;
739
+ textColorTextDisabledPrimary: string;
740
+ textColorGhostPrimary: string;
741
+ textColorGhostHoverPrimary: string;
742
+ textColorGhostPressedPrimary: string;
743
+ textColorGhostFocusPrimary: string;
744
+ textColorGhostDisabledPrimary: string;
745
+ borderPrimary: string;
746
+ borderHoverPrimary: string;
747
+ borderPressedPrimary: string;
748
+ borderFocusPrimary: string;
749
+ borderDisabledPrimary: string;
750
+ rippleColorPrimary: string;
751
+ colorInfo: string;
752
+ colorHoverInfo: string;
753
+ colorPressedInfo: string;
754
+ colorFocusInfo: string;
755
+ colorDisabledInfo: string;
756
+ textColorInfo: string;
757
+ textColorHoverInfo: string;
758
+ textColorPressedInfo: string;
759
+ textColorFocusInfo: string;
760
+ textColorDisabledInfo: string;
761
+ textColorTextInfo: string;
762
+ textColorTextHoverInfo: string;
763
+ textColorTextPressedInfo: string;
764
+ textColorTextFocusInfo: string;
765
+ textColorTextDisabledInfo: string;
766
+ textColorGhostInfo: string;
767
+ textColorGhostHoverInfo: string;
768
+ textColorGhostPressedInfo: string;
769
+ textColorGhostFocusInfo: string;
770
+ textColorGhostDisabledInfo: string;
771
+ borderInfo: string;
772
+ borderHoverInfo: string;
773
+ borderPressedInfo: string;
774
+ borderFocusInfo: string;
775
+ borderDisabledInfo: string;
776
+ rippleColorInfo: string;
777
+ colorSuccess: string;
778
+ colorHoverSuccess: string;
779
+ colorPressedSuccess: string;
780
+ colorFocusSuccess: string;
781
+ colorDisabledSuccess: string;
782
+ textColorSuccess: string;
783
+ textColorHoverSuccess: string;
784
+ textColorPressedSuccess: string;
785
+ textColorFocusSuccess: string;
786
+ textColorDisabledSuccess: string;
787
+ textColorTextSuccess: string;
788
+ textColorTextHoverSuccess: string;
789
+ textColorTextPressedSuccess: string;
790
+ textColorTextFocusSuccess: string;
791
+ textColorTextDisabledSuccess: string;
792
+ textColorGhostSuccess: string;
793
+ textColorGhostHoverSuccess: string;
794
+ textColorGhostPressedSuccess: string;
795
+ textColorGhostFocusSuccess: string;
796
+ textColorGhostDisabledSuccess: string;
797
+ borderSuccess: string;
798
+ borderHoverSuccess: string;
799
+ borderPressedSuccess: string;
800
+ borderFocusSuccess: string;
801
+ borderDisabledSuccess: string;
802
+ rippleColorSuccess: string;
803
+ colorWarning: string;
804
+ colorHoverWarning: string;
805
+ colorPressedWarning: string;
806
+ colorFocusWarning: string;
807
+ colorDisabledWarning: string;
808
+ textColorWarning: string;
809
+ textColorHoverWarning: string;
810
+ textColorPressedWarning: string;
811
+ textColorFocusWarning: string;
812
+ textColorDisabledWarning: string;
813
+ textColorTextWarning: string;
814
+ textColorTextHoverWarning: string;
815
+ textColorTextPressedWarning: string;
816
+ textColorTextFocusWarning: string;
817
+ textColorTextDisabledWarning: string;
818
+ textColorGhostWarning: string;
819
+ textColorGhostHoverWarning: string;
820
+ textColorGhostPressedWarning: string;
821
+ textColorGhostFocusWarning: string;
822
+ textColorGhostDisabledWarning: string;
823
+ borderWarning: string;
824
+ borderHoverWarning: string;
825
+ borderPressedWarning: string;
826
+ borderFocusWarning: string;
827
+ borderDisabledWarning: string;
828
+ rippleColorWarning: string;
829
+ colorError: string;
830
+ colorHoverError: string;
831
+ colorPressedError: string;
832
+ colorFocusError: string;
833
+ colorDisabledError: string;
834
+ textColorError: string;
835
+ textColorHoverError: string;
836
+ textColorPressedError: string;
837
+ textColorFocusError: string;
838
+ textColorDisabledError: string;
839
+ textColorTextError: string;
840
+ textColorTextHoverError: string;
841
+ textColorTextPressedError: string;
842
+ textColorTextFocusError: string;
843
+ textColorTextDisabledError: string;
844
+ textColorGhostError: string;
845
+ textColorGhostHoverError: string;
846
+ textColorGhostPressedError: string;
847
+ textColorGhostFocusError: string;
848
+ textColorGhostDisabledError: string;
849
+ borderError: string;
850
+ borderHoverError: string;
851
+ borderPressedError: string;
852
+ borderFocusError: string;
853
+ borderDisabledError: string;
854
+ rippleColorError: string;
855
+ waveOpacity: string;
856
+ fontWeight: string;
857
+ fontWeightStrong: string;
858
+ paddingTiny: string;
859
+ paddingSmall: string;
860
+ paddingMedium: string;
861
+ paddingLarge: string;
862
+ paddingRoundTiny: string;
863
+ paddingRoundSmall: string;
864
+ paddingRoundMedium: string;
865
+ paddingRoundLarge: string;
866
+ iconMarginTiny: string;
867
+ iconMarginSmall: string;
868
+ iconMarginMedium: string;
869
+ iconMarginLarge: string;
870
+ iconSizeTiny: string;
871
+ iconSizeSmall: string;
872
+ iconSizeMedium: string;
873
+ iconSizeLarge: string;
874
+ rippleDuration: string;
875
+ }, any>;
876
+ Progress: import('naive-ui/es/_mixins').Theme<"Progress", {
877
+ fontSize: string;
878
+ fontSizeCircle: string;
879
+ fontWeightCircle: string;
880
+ railColor: string;
881
+ railHeight: string;
882
+ iconSizeCircle: string;
883
+ iconSizeLine: string;
884
+ iconColor: string;
885
+ iconColorInfo: string;
886
+ iconColorSuccess: string;
887
+ iconColorWarning: string;
888
+ iconColorError: string;
889
+ textColorCircle: string;
890
+ textColorLineInner: string;
891
+ textColorLineOuter: string;
892
+ fillColor: string;
893
+ fillColorInfo: string;
894
+ fillColorSuccess: string;
895
+ fillColorWarning: string;
896
+ fillColorError: string;
897
+ lineBgProcessing: string;
898
+ }, any>;
899
+ }>>>;
900
+ readonly builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Upload", {
901
+ fontSize: string;
902
+ lineHeight: string;
903
+ borderRadius: string;
904
+ draggerColor: string;
905
+ draggerBorder: string;
906
+ draggerBorderHover: string;
907
+ itemColorHover: string;
908
+ itemColorHoverError: string;
909
+ itemTextColor: string;
910
+ itemTextColorError: string;
911
+ itemTextColorSuccess: string;
912
+ itemIconColor: string;
913
+ itemDisabledOpacity: string;
914
+ itemBorderImageCardError: string;
915
+ itemBorderImageCard: string;
916
+ }, {
917
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
918
+ heightTiny: string;
919
+ heightSmall: string;
920
+ heightMedium: string;
921
+ heightLarge: string;
922
+ borderRadiusTiny: string;
923
+ borderRadiusSmall: string;
924
+ borderRadiusMedium: string;
925
+ borderRadiusLarge: string;
926
+ fontSizeTiny: string;
927
+ fontSizeSmall: string;
928
+ fontSizeMedium: string;
929
+ fontSizeLarge: string;
930
+ opacityDisabled: string;
931
+ colorOpacitySecondary: string;
932
+ colorOpacitySecondaryHover: string;
933
+ colorOpacitySecondaryPressed: string;
934
+ colorSecondary: string;
935
+ colorSecondaryHover: string;
936
+ colorSecondaryPressed: string;
937
+ colorTertiary: string;
938
+ colorTertiaryHover: string;
939
+ colorTertiaryPressed: string;
940
+ colorQuaternary: string;
941
+ colorQuaternaryHover: string;
942
+ colorQuaternaryPressed: string;
943
+ color: string;
944
+ colorHover: string;
945
+ colorPressed: string;
946
+ colorFocus: string;
947
+ colorDisabled: string;
948
+ textColor: string;
949
+ textColorTertiary: string;
950
+ textColorHover: string;
951
+ textColorPressed: string;
952
+ textColorFocus: string;
953
+ textColorDisabled: string;
954
+ textColorText: string;
955
+ textColorTextHover: string;
956
+ textColorTextPressed: string;
957
+ textColorTextFocus: string;
958
+ textColorTextDisabled: string;
959
+ textColorGhost: string;
960
+ textColorGhostHover: string;
961
+ textColorGhostPressed: string;
962
+ textColorGhostFocus: string;
963
+ textColorGhostDisabled: string;
964
+ border: string;
965
+ borderHover: string;
966
+ borderPressed: string;
967
+ borderFocus: string;
968
+ borderDisabled: string;
969
+ rippleColor: string;
970
+ colorPrimary: string;
971
+ colorHoverPrimary: string;
972
+ colorPressedPrimary: string;
973
+ colorFocusPrimary: string;
974
+ colorDisabledPrimary: string;
975
+ textColorPrimary: string;
976
+ textColorHoverPrimary: string;
977
+ textColorPressedPrimary: string;
978
+ textColorFocusPrimary: string;
979
+ textColorDisabledPrimary: string;
980
+ textColorTextPrimary: string;
981
+ textColorTextHoverPrimary: string;
982
+ textColorTextPressedPrimary: string;
983
+ textColorTextFocusPrimary: string;
984
+ textColorTextDisabledPrimary: string;
985
+ textColorGhostPrimary: string;
986
+ textColorGhostHoverPrimary: string;
987
+ textColorGhostPressedPrimary: string;
988
+ textColorGhostFocusPrimary: string;
989
+ textColorGhostDisabledPrimary: string;
990
+ borderPrimary: string;
991
+ borderHoverPrimary: string;
992
+ borderPressedPrimary: string;
993
+ borderFocusPrimary: string;
994
+ borderDisabledPrimary: string;
995
+ rippleColorPrimary: string;
996
+ colorInfo: string;
997
+ colorHoverInfo: string;
998
+ colorPressedInfo: string;
999
+ colorFocusInfo: string;
1000
+ colorDisabledInfo: string;
1001
+ textColorInfo: string;
1002
+ textColorHoverInfo: string;
1003
+ textColorPressedInfo: string;
1004
+ textColorFocusInfo: string;
1005
+ textColorDisabledInfo: string;
1006
+ textColorTextInfo: string;
1007
+ textColorTextHoverInfo: string;
1008
+ textColorTextPressedInfo: string;
1009
+ textColorTextFocusInfo: string;
1010
+ textColorTextDisabledInfo: string;
1011
+ textColorGhostInfo: string;
1012
+ textColorGhostHoverInfo: string;
1013
+ textColorGhostPressedInfo: string;
1014
+ textColorGhostFocusInfo: string;
1015
+ textColorGhostDisabledInfo: string;
1016
+ borderInfo: string;
1017
+ borderHoverInfo: string;
1018
+ borderPressedInfo: string;
1019
+ borderFocusInfo: string;
1020
+ borderDisabledInfo: string;
1021
+ rippleColorInfo: string;
1022
+ colorSuccess: string;
1023
+ colorHoverSuccess: string;
1024
+ colorPressedSuccess: string;
1025
+ colorFocusSuccess: string;
1026
+ colorDisabledSuccess: string;
1027
+ textColorSuccess: string;
1028
+ textColorHoverSuccess: string;
1029
+ textColorPressedSuccess: string;
1030
+ textColorFocusSuccess: string;
1031
+ textColorDisabledSuccess: string;
1032
+ textColorTextSuccess: string;
1033
+ textColorTextHoverSuccess: string;
1034
+ textColorTextPressedSuccess: string;
1035
+ textColorTextFocusSuccess: string;
1036
+ textColorTextDisabledSuccess: string;
1037
+ textColorGhostSuccess: string;
1038
+ textColorGhostHoverSuccess: string;
1039
+ textColorGhostPressedSuccess: string;
1040
+ textColorGhostFocusSuccess: string;
1041
+ textColorGhostDisabledSuccess: string;
1042
+ borderSuccess: string;
1043
+ borderHoverSuccess: string;
1044
+ borderPressedSuccess: string;
1045
+ borderFocusSuccess: string;
1046
+ borderDisabledSuccess: string;
1047
+ rippleColorSuccess: string;
1048
+ colorWarning: string;
1049
+ colorHoverWarning: string;
1050
+ colorPressedWarning: string;
1051
+ colorFocusWarning: string;
1052
+ colorDisabledWarning: string;
1053
+ textColorWarning: string;
1054
+ textColorHoverWarning: string;
1055
+ textColorPressedWarning: string;
1056
+ textColorFocusWarning: string;
1057
+ textColorDisabledWarning: string;
1058
+ textColorTextWarning: string;
1059
+ textColorTextHoverWarning: string;
1060
+ textColorTextPressedWarning: string;
1061
+ textColorTextFocusWarning: string;
1062
+ textColorTextDisabledWarning: string;
1063
+ textColorGhostWarning: string;
1064
+ textColorGhostHoverWarning: string;
1065
+ textColorGhostPressedWarning: string;
1066
+ textColorGhostFocusWarning: string;
1067
+ textColorGhostDisabledWarning: string;
1068
+ borderWarning: string;
1069
+ borderHoverWarning: string;
1070
+ borderPressedWarning: string;
1071
+ borderFocusWarning: string;
1072
+ borderDisabledWarning: string;
1073
+ rippleColorWarning: string;
1074
+ colorError: string;
1075
+ colorHoverError: string;
1076
+ colorPressedError: string;
1077
+ colorFocusError: string;
1078
+ colorDisabledError: string;
1079
+ textColorError: string;
1080
+ textColorHoverError: string;
1081
+ textColorPressedError: string;
1082
+ textColorFocusError: string;
1083
+ textColorDisabledError: string;
1084
+ textColorTextError: string;
1085
+ textColorTextHoverError: string;
1086
+ textColorTextPressedError: string;
1087
+ textColorTextFocusError: string;
1088
+ textColorTextDisabledError: string;
1089
+ textColorGhostError: string;
1090
+ textColorGhostHoverError: string;
1091
+ textColorGhostPressedError: string;
1092
+ textColorGhostFocusError: string;
1093
+ textColorGhostDisabledError: string;
1094
+ borderError: string;
1095
+ borderHoverError: string;
1096
+ borderPressedError: string;
1097
+ borderFocusError: string;
1098
+ borderDisabledError: string;
1099
+ rippleColorError: string;
1100
+ waveOpacity: string;
1101
+ fontWeight: string;
1102
+ fontWeightStrong: string;
1103
+ paddingTiny: string;
1104
+ paddingSmall: string;
1105
+ paddingMedium: string;
1106
+ paddingLarge: string;
1107
+ paddingRoundTiny: string;
1108
+ paddingRoundSmall: string;
1109
+ paddingRoundMedium: string;
1110
+ paddingRoundLarge: string;
1111
+ iconMarginTiny: string;
1112
+ iconMarginSmall: string;
1113
+ iconMarginMedium: string;
1114
+ iconMarginLarge: string;
1115
+ iconSizeTiny: string;
1116
+ iconSizeSmall: string;
1117
+ iconSizeMedium: string;
1118
+ iconSizeLarge: string;
1119
+ rippleDuration: string;
1120
+ }, any>;
1121
+ Progress: import('naive-ui/es/_mixins').Theme<"Progress", {
1122
+ fontSize: string;
1123
+ fontSizeCircle: string;
1124
+ fontWeightCircle: string;
1125
+ railColor: string;
1126
+ railHeight: string;
1127
+ iconSizeCircle: string;
1128
+ iconSizeLine: string;
1129
+ iconColor: string;
1130
+ iconColorInfo: string;
1131
+ iconColorSuccess: string;
1132
+ iconColorWarning: string;
1133
+ iconColorError: string;
1134
+ textColorCircle: string;
1135
+ textColorLineInner: string;
1136
+ textColorLineOuter: string;
1137
+ fillColor: string;
1138
+ fillColorInfo: string;
1139
+ fillColorSuccess: string;
1140
+ fillColorWarning: string;
1141
+ fillColorError: string;
1142
+ lineBgProcessing: string;
1143
+ }, any>;
1144
+ }>>>;
1145
+ }>> & Readonly<{}>, {
1146
+ openOpenFileDialog: () => void;
1147
+ submit: (fileId?: string) => void;
1148
+ clear: () => void;
1149
+ mergedClsPrefix: import('vue').Ref<string, string>;
1150
+ draggerInsideRef: {
1151
+ value: boolean;
1152
+ };
1153
+ inputElRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
1154
+ mergedTheme: import('vue').ComputedRef<{
1155
+ common: import('naive-ui').ThemeCommonVars;
1156
+ self: {
1157
+ fontSize: string;
1158
+ lineHeight: string;
1159
+ borderRadius: string;
1160
+ draggerColor: string;
1161
+ draggerBorder: string;
1162
+ draggerBorderHover: string;
1163
+ itemColorHover: string;
1164
+ itemColorHoverError: string;
1165
+ itemTextColor: string;
1166
+ itemTextColorError: string;
1167
+ itemTextColorSuccess: string;
1168
+ itemIconColor: string;
1169
+ itemDisabledOpacity: string;
1170
+ itemBorderImageCardError: string;
1171
+ itemBorderImageCard: string;
1172
+ };
1173
+ peers: {
1174
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
1175
+ heightTiny: string;
1176
+ heightSmall: string;
1177
+ heightMedium: string;
1178
+ heightLarge: string;
1179
+ borderRadiusTiny: string;
1180
+ borderRadiusSmall: string;
1181
+ borderRadiusMedium: string;
1182
+ borderRadiusLarge: string;
1183
+ fontSizeTiny: string;
1184
+ fontSizeSmall: string;
1185
+ fontSizeMedium: string;
1186
+ fontSizeLarge: string;
1187
+ opacityDisabled: string;
1188
+ colorOpacitySecondary: string;
1189
+ colorOpacitySecondaryHover: string;
1190
+ colorOpacitySecondaryPressed: string;
1191
+ colorSecondary: string;
1192
+ colorSecondaryHover: string;
1193
+ colorSecondaryPressed: string;
1194
+ colorTertiary: string;
1195
+ colorTertiaryHover: string;
1196
+ colorTertiaryPressed: string;
1197
+ colorQuaternary: string;
1198
+ colorQuaternaryHover: string;
1199
+ colorQuaternaryPressed: string;
1200
+ color: string;
1201
+ colorHover: string;
1202
+ colorPressed: string;
1203
+ colorFocus: string;
1204
+ colorDisabled: string;
1205
+ textColor: string;
1206
+ textColorTertiary: string;
1207
+ textColorHover: string;
1208
+ textColorPressed: string;
1209
+ textColorFocus: string;
1210
+ textColorDisabled: string;
1211
+ textColorText: string;
1212
+ textColorTextHover: string;
1213
+ textColorTextPressed: string;
1214
+ textColorTextFocus: string;
1215
+ textColorTextDisabled: string;
1216
+ textColorGhost: string;
1217
+ textColorGhostHover: string;
1218
+ textColorGhostPressed: string;
1219
+ textColorGhostFocus: string;
1220
+ textColorGhostDisabled: string;
1221
+ border: string;
1222
+ borderHover: string;
1223
+ borderPressed: string;
1224
+ borderFocus: string;
1225
+ borderDisabled: string;
1226
+ rippleColor: string;
1227
+ colorPrimary: string;
1228
+ colorHoverPrimary: string;
1229
+ colorPressedPrimary: string;
1230
+ colorFocusPrimary: string;
1231
+ colorDisabledPrimary: string;
1232
+ textColorPrimary: string;
1233
+ textColorHoverPrimary: string;
1234
+ textColorPressedPrimary: string;
1235
+ textColorFocusPrimary: string;
1236
+ textColorDisabledPrimary: string;
1237
+ textColorTextPrimary: string;
1238
+ textColorTextHoverPrimary: string;
1239
+ textColorTextPressedPrimary: string;
1240
+ textColorTextFocusPrimary: string;
1241
+ textColorTextDisabledPrimary: string;
1242
+ textColorGhostPrimary: string;
1243
+ textColorGhostHoverPrimary: string;
1244
+ textColorGhostPressedPrimary: string;
1245
+ textColorGhostFocusPrimary: string;
1246
+ textColorGhostDisabledPrimary: string;
1247
+ borderPrimary: string;
1248
+ borderHoverPrimary: string;
1249
+ borderPressedPrimary: string;
1250
+ borderFocusPrimary: string;
1251
+ borderDisabledPrimary: string;
1252
+ rippleColorPrimary: string;
1253
+ colorInfo: string;
1254
+ colorHoverInfo: string;
1255
+ colorPressedInfo: string;
1256
+ colorFocusInfo: string;
1257
+ colorDisabledInfo: string;
1258
+ textColorInfo: string;
1259
+ textColorHoverInfo: string;
1260
+ textColorPressedInfo: string;
1261
+ textColorFocusInfo: string;
1262
+ textColorDisabledInfo: string;
1263
+ textColorTextInfo: string;
1264
+ textColorTextHoverInfo: string;
1265
+ textColorTextPressedInfo: string;
1266
+ textColorTextFocusInfo: string;
1267
+ textColorTextDisabledInfo: string;
1268
+ textColorGhostInfo: string;
1269
+ textColorGhostHoverInfo: string;
1270
+ textColorGhostPressedInfo: string;
1271
+ textColorGhostFocusInfo: string;
1272
+ textColorGhostDisabledInfo: string;
1273
+ borderInfo: string;
1274
+ borderHoverInfo: string;
1275
+ borderPressedInfo: string;
1276
+ borderFocusInfo: string;
1277
+ borderDisabledInfo: string;
1278
+ rippleColorInfo: string;
1279
+ colorSuccess: string;
1280
+ colorHoverSuccess: string;
1281
+ colorPressedSuccess: string;
1282
+ colorFocusSuccess: string;
1283
+ colorDisabledSuccess: string;
1284
+ textColorSuccess: string;
1285
+ textColorHoverSuccess: string;
1286
+ textColorPressedSuccess: string;
1287
+ textColorFocusSuccess: string;
1288
+ textColorDisabledSuccess: string;
1289
+ textColorTextSuccess: string;
1290
+ textColorTextHoverSuccess: string;
1291
+ textColorTextPressedSuccess: string;
1292
+ textColorTextFocusSuccess: string;
1293
+ textColorTextDisabledSuccess: string;
1294
+ textColorGhostSuccess: string;
1295
+ textColorGhostHoverSuccess: string;
1296
+ textColorGhostPressedSuccess: string;
1297
+ textColorGhostFocusSuccess: string;
1298
+ textColorGhostDisabledSuccess: string;
1299
+ borderSuccess: string;
1300
+ borderHoverSuccess: string;
1301
+ borderPressedSuccess: string;
1302
+ borderFocusSuccess: string;
1303
+ borderDisabledSuccess: string;
1304
+ rippleColorSuccess: string;
1305
+ colorWarning: string;
1306
+ colorHoverWarning: string;
1307
+ colorPressedWarning: string;
1308
+ colorFocusWarning: string;
1309
+ colorDisabledWarning: string;
1310
+ textColorWarning: string;
1311
+ textColorHoverWarning: string;
1312
+ textColorPressedWarning: string;
1313
+ textColorFocusWarning: string;
1314
+ textColorDisabledWarning: string;
1315
+ textColorTextWarning: string;
1316
+ textColorTextHoverWarning: string;
1317
+ textColorTextPressedWarning: string;
1318
+ textColorTextFocusWarning: string;
1319
+ textColorTextDisabledWarning: string;
1320
+ textColorGhostWarning: string;
1321
+ textColorGhostHoverWarning: string;
1322
+ textColorGhostPressedWarning: string;
1323
+ textColorGhostFocusWarning: string;
1324
+ textColorGhostDisabledWarning: string;
1325
+ borderWarning: string;
1326
+ borderHoverWarning: string;
1327
+ borderPressedWarning: string;
1328
+ borderFocusWarning: string;
1329
+ borderDisabledWarning: string;
1330
+ rippleColorWarning: string;
1331
+ colorError: string;
1332
+ colorHoverError: string;
1333
+ colorPressedError: string;
1334
+ colorFocusError: string;
1335
+ colorDisabledError: string;
1336
+ textColorError: string;
1337
+ textColorHoverError: string;
1338
+ textColorPressedError: string;
1339
+ textColorFocusError: string;
1340
+ textColorDisabledError: string;
1341
+ textColorTextError: string;
1342
+ textColorTextHoverError: string;
1343
+ textColorTextPressedError: string;
1344
+ textColorTextFocusError: string;
1345
+ textColorTextDisabledError: string;
1346
+ textColorGhostError: string;
1347
+ textColorGhostHoverError: string;
1348
+ textColorGhostPressedError: string;
1349
+ textColorGhostFocusError: string;
1350
+ textColorGhostDisabledError: string;
1351
+ borderError: string;
1352
+ borderHoverError: string;
1353
+ borderPressedError: string;
1354
+ borderFocusError: string;
1355
+ borderDisabledError: string;
1356
+ rippleColorError: string;
1357
+ waveOpacity: string;
1358
+ fontWeight: string;
1359
+ fontWeightStrong: string;
1360
+ paddingTiny: string;
1361
+ paddingSmall: string;
1362
+ paddingMedium: string;
1363
+ paddingLarge: string;
1364
+ paddingRoundTiny: string;
1365
+ paddingRoundSmall: string;
1366
+ paddingRoundMedium: string;
1367
+ paddingRoundLarge: string;
1368
+ iconMarginTiny: string;
1369
+ iconMarginSmall: string;
1370
+ iconMarginMedium: string;
1371
+ iconMarginLarge: string;
1372
+ iconSizeTiny: string;
1373
+ iconSizeSmall: string;
1374
+ iconSizeMedium: string;
1375
+ iconSizeLarge: string;
1376
+ rippleDuration: string;
1377
+ }, any>;
1378
+ Progress: import('naive-ui/es/_mixins').Theme<"Progress", {
1379
+ fontSize: string;
1380
+ fontSizeCircle: string;
1381
+ fontWeightCircle: string;
1382
+ railColor: string;
1383
+ railHeight: string;
1384
+ iconSizeCircle: string;
1385
+ iconSizeLine: string;
1386
+ iconColor: string;
1387
+ iconColorInfo: string;
1388
+ iconColorSuccess: string;
1389
+ iconColorWarning: string;
1390
+ iconColorError: string;
1391
+ textColorCircle: string;
1392
+ textColorLineInner: string;
1393
+ textColorLineOuter: string;
1394
+ fillColor: string;
1395
+ fillColorInfo: string;
1396
+ fillColorSuccess: string;
1397
+ fillColorWarning: string;
1398
+ fillColorError: string;
1399
+ lineBgProcessing: string;
1400
+ }, any>;
1401
+ };
1402
+ peerOverrides: {
1403
+ Button?: {
1404
+ peers?: {
1405
+ [x: string]: any;
1406
+ } | undefined;
1407
+ } | undefined;
1408
+ Progress?: {
1409
+ peers?: {
1410
+ [x: string]: any;
1411
+ } | undefined;
1412
+ } | undefined;
1413
+ };
1414
+ }>;
1415
+ dragOver: import('vue').Ref<boolean, boolean>;
1416
+ mergedMultiple: import('vue').ComputedRef<boolean>;
1417
+ cssVars: import('vue').ComputedRef<any> | undefined;
1418
+ themeClass: import('vue').Ref<string, string> | undefined;
1419
+ onRender: (() => void) | undefined;
1420
+ handleFileInputChange: (e: Event) => void;
1421
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
1422
+ readonly method: string;
1423
+ readonly name: string;
1424
+ readonly abstract: boolean;
1425
+ readonly disabled: boolean | undefined;
1426
+ readonly multiple: boolean;
1427
+ readonly showTrigger: boolean;
1428
+ readonly listType: import('naive-ui/es/upload/src/interface').ListType;
1429
+ readonly showCancelButton: boolean;
1430
+ readonly showRemoveButton: boolean;
1431
+ readonly showDownloadButton: boolean;
1432
+ readonly showRetryButton: boolean;
1433
+ readonly showPreviewButton: boolean;
1434
+ readonly shouldUseThumbnailUrl: import('naive-ui/es/upload/src/interface').ShouldUseThumbnailUrl;
1435
+ readonly withCredentials: boolean;
1436
+ readonly responseType: XMLHttpRequestResponseType;
1437
+ readonly directory: boolean;
1438
+ readonly directoryDnd: boolean;
1439
+ readonly showFileList: boolean;
1440
+ readonly defaultUpload: boolean;
1441
+ readonly defaultFileList: UploadFileInfo[];
1442
+ }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
1443
+ P: {};
1444
+ B: {};
1445
+ D: {};
1446
+ C: {};
1447
+ M: {};
1448
+ Defaults: {};
1449
+ }, Readonly<import('vue').ExtractPropTypes<{
1450
+ readonly name: {
1451
+ readonly type: StringConstructor;
1452
+ readonly default: "file";
1453
+ };
1454
+ readonly accept: StringConstructor;
1455
+ readonly action: StringConstructor;
1456
+ readonly customRequest: import('vue').PropType<import('naive-ui/es/upload/src/interface').CustomRequest>;
1457
+ readonly directory: BooleanConstructor;
1458
+ readonly directoryDnd: {
1459
+ readonly type: BooleanConstructor;
1460
+ readonly default: undefined;
1461
+ };
1462
+ readonly method: {
1463
+ readonly type: StringConstructor;
1464
+ readonly default: "POST";
1465
+ };
1466
+ readonly multiple: BooleanConstructor;
1467
+ readonly showFileList: {
1468
+ readonly type: BooleanConstructor;
1469
+ readonly default: true;
1470
+ };
1471
+ readonly data: import('vue').PropType<import('naive-ui/es/upload/src/interface').FuncOrRecordOrUndef<string | Blob>>;
1472
+ readonly headers: import('vue').PropType<import('naive-ui/es/upload/src/interface').FuncOrRecordOrUndef>;
1473
+ readonly withCredentials: BooleanConstructor;
1474
+ readonly responseType: {
1475
+ readonly type: import('vue').PropType<XMLHttpRequestResponseType>;
1476
+ readonly default: "";
1477
+ };
1478
+ readonly disabled: {
1479
+ readonly type: import('vue').PropType<boolean | undefined>;
1480
+ readonly default: undefined;
1481
+ };
1482
+ readonly onChange: import('vue').PropType<import('naive-ui').UploadOnChange>;
1483
+ readonly onRemove: import('vue').PropType<import('naive-ui').UploadOnRemove>;
1484
+ readonly onFinish: import('vue').PropType<import('naive-ui').UploadOnFinish>;
1485
+ readonly onError: import('vue').PropType<import('naive-ui/es/upload/src/interface').OnError>;
1486
+ readonly onRetry: import('vue').PropType<import('naive-ui/es/upload/src/interface').OnRetry>;
1487
+ readonly onBeforeUpload: import('vue').PropType<import('naive-ui/es/upload/src/interface').OnBeforeUpload>;
1488
+ readonly isErrorState: import('vue').PropType<(xhr: XMLHttpRequest) => boolean>;
1489
+ readonly onDownload: import('vue').PropType<import('naive-ui').UploadOnDownload>;
1490
+ readonly defaultUpload: {
1491
+ readonly type: BooleanConstructor;
1492
+ readonly default: true;
1493
+ };
1494
+ readonly fileList: import('vue').PropType<UploadFileInfo[]>;
1495
+ readonly 'onUpdate:fileList': import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/upload/src/interface').OnUpdateFileList>>;
1496
+ readonly onUpdateFileList: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/upload/src/interface').OnUpdateFileList>>;
1497
+ readonly fileListClass: StringConstructor;
1498
+ readonly fileListStyle: import('vue').PropType<string | import('vue').CSSProperties>;
1499
+ readonly defaultFileList: {
1500
+ readonly type: import('vue').PropType<UploadFileInfo[]>;
1501
+ readonly default: () => never[];
1502
+ };
1503
+ readonly showCancelButton: {
1504
+ readonly type: BooleanConstructor;
1505
+ readonly default: true;
1506
+ };
1507
+ readonly showRemoveButton: {
1508
+ readonly type: BooleanConstructor;
1509
+ readonly default: true;
1510
+ };
1511
+ readonly showDownloadButton: BooleanConstructor;
1512
+ readonly showRetryButton: {
1513
+ readonly type: BooleanConstructor;
1514
+ readonly default: true;
1515
+ };
1516
+ readonly showPreviewButton: {
1517
+ readonly type: BooleanConstructor;
1518
+ readonly default: true;
1519
+ };
1520
+ readonly listType: {
1521
+ readonly type: import('vue').PropType<import('naive-ui/es/upload/src/interface').ListType>;
1522
+ readonly default: "text";
1523
+ };
1524
+ readonly onPreview: import('vue').PropType<import('naive-ui/es/upload/src/interface').OnPreview>;
1525
+ readonly shouldUseThumbnailUrl: {
1526
+ readonly type: import('vue').PropType<import('naive-ui/es/upload/src/interface').ShouldUseThumbnailUrl>;
1527
+ readonly default: (file: import('naive-ui').UploadSettledFileInfo) => boolean;
1528
+ };
1529
+ readonly createThumbnailUrl: import('vue').PropType<import('naive-ui/es/upload/src/interface').CreateThumbnailUrl>;
1530
+ readonly abstract: BooleanConstructor;
1531
+ readonly max: NumberConstructor;
1532
+ readonly showTrigger: {
1533
+ readonly type: BooleanConstructor;
1534
+ readonly default: true;
1535
+ };
1536
+ readonly imageGroupProps: import('vue').PropType<import('naive-ui').ImageGroupProps>;
1537
+ readonly inputProps: import('vue').PropType<import('vue').InputHTMLAttributes>;
1538
+ readonly triggerClass: StringConstructor;
1539
+ readonly triggerStyle: import('vue').PropType<import('vue').CSSProperties | string>;
1540
+ readonly renderIcon: import('vue').PropType<import('naive-ui/es/upload/src/interface').RenderIcon>;
1541
+ readonly theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"Upload", {
1542
+ fontSize: string;
1543
+ lineHeight: string;
1544
+ borderRadius: string;
1545
+ draggerColor: string;
1546
+ draggerBorder: string;
1547
+ draggerBorderHover: string;
1548
+ itemColorHover: string;
1549
+ itemColorHoverError: string;
1550
+ itemTextColor: string;
1551
+ itemTextColorError: string;
1552
+ itemTextColorSuccess: string;
1553
+ itemIconColor: string;
1554
+ itemDisabledOpacity: string;
1555
+ itemBorderImageCardError: string;
1556
+ itemBorderImageCard: string;
1557
+ }, {
1558
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
1559
+ heightTiny: string;
1560
+ heightSmall: string;
1561
+ heightMedium: string;
1562
+ heightLarge: string;
1563
+ borderRadiusTiny: string;
1564
+ borderRadiusSmall: string;
1565
+ borderRadiusMedium: string;
1566
+ borderRadiusLarge: string;
1567
+ fontSizeTiny: string;
1568
+ fontSizeSmall: string;
1569
+ fontSizeMedium: string;
1570
+ fontSizeLarge: string;
1571
+ opacityDisabled: string;
1572
+ colorOpacitySecondary: string;
1573
+ colorOpacitySecondaryHover: string;
1574
+ colorOpacitySecondaryPressed: string;
1575
+ colorSecondary: string;
1576
+ colorSecondaryHover: string;
1577
+ colorSecondaryPressed: string;
1578
+ colorTertiary: string;
1579
+ colorTertiaryHover: string;
1580
+ colorTertiaryPressed: string;
1581
+ colorQuaternary: string;
1582
+ colorQuaternaryHover: string;
1583
+ colorQuaternaryPressed: string;
1584
+ color: string;
1585
+ colorHover: string;
1586
+ colorPressed: string;
1587
+ colorFocus: string;
1588
+ colorDisabled: string;
1589
+ textColor: string;
1590
+ textColorTertiary: string;
1591
+ textColorHover: string;
1592
+ textColorPressed: string;
1593
+ textColorFocus: string;
1594
+ textColorDisabled: string;
1595
+ textColorText: string;
1596
+ textColorTextHover: string;
1597
+ textColorTextPressed: string;
1598
+ textColorTextFocus: string;
1599
+ textColorTextDisabled: string;
1600
+ textColorGhost: string;
1601
+ textColorGhostHover: string;
1602
+ textColorGhostPressed: string;
1603
+ textColorGhostFocus: string;
1604
+ textColorGhostDisabled: string;
1605
+ border: string;
1606
+ borderHover: string;
1607
+ borderPressed: string;
1608
+ borderFocus: string;
1609
+ borderDisabled: string;
1610
+ rippleColor: string;
1611
+ colorPrimary: string;
1612
+ colorHoverPrimary: string;
1613
+ colorPressedPrimary: string;
1614
+ colorFocusPrimary: string;
1615
+ colorDisabledPrimary: string;
1616
+ textColorPrimary: string;
1617
+ textColorHoverPrimary: string;
1618
+ textColorPressedPrimary: string;
1619
+ textColorFocusPrimary: string;
1620
+ textColorDisabledPrimary: string;
1621
+ textColorTextPrimary: string;
1622
+ textColorTextHoverPrimary: string;
1623
+ textColorTextPressedPrimary: string;
1624
+ textColorTextFocusPrimary: string;
1625
+ textColorTextDisabledPrimary: string;
1626
+ textColorGhostPrimary: string;
1627
+ textColorGhostHoverPrimary: string;
1628
+ textColorGhostPressedPrimary: string;
1629
+ textColorGhostFocusPrimary: string;
1630
+ textColorGhostDisabledPrimary: string;
1631
+ borderPrimary: string;
1632
+ borderHoverPrimary: string;
1633
+ borderPressedPrimary: string;
1634
+ borderFocusPrimary: string;
1635
+ borderDisabledPrimary: string;
1636
+ rippleColorPrimary: string;
1637
+ colorInfo: string;
1638
+ colorHoverInfo: string;
1639
+ colorPressedInfo: string;
1640
+ colorFocusInfo: string;
1641
+ colorDisabledInfo: string;
1642
+ textColorInfo: string;
1643
+ textColorHoverInfo: string;
1644
+ textColorPressedInfo: string;
1645
+ textColorFocusInfo: string;
1646
+ textColorDisabledInfo: string;
1647
+ textColorTextInfo: string;
1648
+ textColorTextHoverInfo: string;
1649
+ textColorTextPressedInfo: string;
1650
+ textColorTextFocusInfo: string;
1651
+ textColorTextDisabledInfo: string;
1652
+ textColorGhostInfo: string;
1653
+ textColorGhostHoverInfo: string;
1654
+ textColorGhostPressedInfo: string;
1655
+ textColorGhostFocusInfo: string;
1656
+ textColorGhostDisabledInfo: string;
1657
+ borderInfo: string;
1658
+ borderHoverInfo: string;
1659
+ borderPressedInfo: string;
1660
+ borderFocusInfo: string;
1661
+ borderDisabledInfo: string;
1662
+ rippleColorInfo: string;
1663
+ colorSuccess: string;
1664
+ colorHoverSuccess: string;
1665
+ colorPressedSuccess: string;
1666
+ colorFocusSuccess: string;
1667
+ colorDisabledSuccess: string;
1668
+ textColorSuccess: string;
1669
+ textColorHoverSuccess: string;
1670
+ textColorPressedSuccess: string;
1671
+ textColorFocusSuccess: string;
1672
+ textColorDisabledSuccess: string;
1673
+ textColorTextSuccess: string;
1674
+ textColorTextHoverSuccess: string;
1675
+ textColorTextPressedSuccess: string;
1676
+ textColorTextFocusSuccess: string;
1677
+ textColorTextDisabledSuccess: string;
1678
+ textColorGhostSuccess: string;
1679
+ textColorGhostHoverSuccess: string;
1680
+ textColorGhostPressedSuccess: string;
1681
+ textColorGhostFocusSuccess: string;
1682
+ textColorGhostDisabledSuccess: string;
1683
+ borderSuccess: string;
1684
+ borderHoverSuccess: string;
1685
+ borderPressedSuccess: string;
1686
+ borderFocusSuccess: string;
1687
+ borderDisabledSuccess: string;
1688
+ rippleColorSuccess: string;
1689
+ colorWarning: string;
1690
+ colorHoverWarning: string;
1691
+ colorPressedWarning: string;
1692
+ colorFocusWarning: string;
1693
+ colorDisabledWarning: string;
1694
+ textColorWarning: string;
1695
+ textColorHoverWarning: string;
1696
+ textColorPressedWarning: string;
1697
+ textColorFocusWarning: string;
1698
+ textColorDisabledWarning: string;
1699
+ textColorTextWarning: string;
1700
+ textColorTextHoverWarning: string;
1701
+ textColorTextPressedWarning: string;
1702
+ textColorTextFocusWarning: string;
1703
+ textColorTextDisabledWarning: string;
1704
+ textColorGhostWarning: string;
1705
+ textColorGhostHoverWarning: string;
1706
+ textColorGhostPressedWarning: string;
1707
+ textColorGhostFocusWarning: string;
1708
+ textColorGhostDisabledWarning: string;
1709
+ borderWarning: string;
1710
+ borderHoverWarning: string;
1711
+ borderPressedWarning: string;
1712
+ borderFocusWarning: string;
1713
+ borderDisabledWarning: string;
1714
+ rippleColorWarning: string;
1715
+ colorError: string;
1716
+ colorHoverError: string;
1717
+ colorPressedError: string;
1718
+ colorFocusError: string;
1719
+ colorDisabledError: string;
1720
+ textColorError: string;
1721
+ textColorHoverError: string;
1722
+ textColorPressedError: string;
1723
+ textColorFocusError: string;
1724
+ textColorDisabledError: string;
1725
+ textColorTextError: string;
1726
+ textColorTextHoverError: string;
1727
+ textColorTextPressedError: string;
1728
+ textColorTextFocusError: string;
1729
+ textColorTextDisabledError: string;
1730
+ textColorGhostError: string;
1731
+ textColorGhostHoverError: string;
1732
+ textColorGhostPressedError: string;
1733
+ textColorGhostFocusError: string;
1734
+ textColorGhostDisabledError: string;
1735
+ borderError: string;
1736
+ borderHoverError: string;
1737
+ borderPressedError: string;
1738
+ borderFocusError: string;
1739
+ borderDisabledError: string;
1740
+ rippleColorError: string;
1741
+ waveOpacity: string;
1742
+ fontWeight: string;
1743
+ fontWeightStrong: string;
1744
+ paddingTiny: string;
1745
+ paddingSmall: string;
1746
+ paddingMedium: string;
1747
+ paddingLarge: string;
1748
+ paddingRoundTiny: string;
1749
+ paddingRoundSmall: string;
1750
+ paddingRoundMedium: string;
1751
+ paddingRoundLarge: string;
1752
+ iconMarginTiny: string;
1753
+ iconMarginSmall: string;
1754
+ iconMarginMedium: string;
1755
+ iconMarginLarge: string;
1756
+ iconSizeTiny: string;
1757
+ iconSizeSmall: string;
1758
+ iconSizeMedium: string;
1759
+ iconSizeLarge: string;
1760
+ rippleDuration: string;
1761
+ }, any>;
1762
+ Progress: import('naive-ui/es/_mixins').Theme<"Progress", {
1763
+ fontSize: string;
1764
+ fontSizeCircle: string;
1765
+ fontWeightCircle: string;
1766
+ railColor: string;
1767
+ railHeight: string;
1768
+ iconSizeCircle: string;
1769
+ iconSizeLine: string;
1770
+ iconColor: string;
1771
+ iconColorInfo: string;
1772
+ iconColorSuccess: string;
1773
+ iconColorWarning: string;
1774
+ iconColorError: string;
1775
+ textColorCircle: string;
1776
+ textColorLineInner: string;
1777
+ textColorLineOuter: string;
1778
+ fillColor: string;
1779
+ fillColorInfo: string;
1780
+ fillColorSuccess: string;
1781
+ fillColorWarning: string;
1782
+ fillColorError: string;
1783
+ lineBgProcessing: string;
1784
+ }, any>;
1785
+ }>>;
1786
+ readonly themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Upload", {
1787
+ fontSize: string;
1788
+ lineHeight: string;
1789
+ borderRadius: string;
1790
+ draggerColor: string;
1791
+ draggerBorder: string;
1792
+ draggerBorderHover: string;
1793
+ itemColorHover: string;
1794
+ itemColorHoverError: string;
1795
+ itemTextColor: string;
1796
+ itemTextColorError: string;
1797
+ itemTextColorSuccess: string;
1798
+ itemIconColor: string;
1799
+ itemDisabledOpacity: string;
1800
+ itemBorderImageCardError: string;
1801
+ itemBorderImageCard: string;
1802
+ }, {
1803
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
1804
+ heightTiny: string;
1805
+ heightSmall: string;
1806
+ heightMedium: string;
1807
+ heightLarge: string;
1808
+ borderRadiusTiny: string;
1809
+ borderRadiusSmall: string;
1810
+ borderRadiusMedium: string;
1811
+ borderRadiusLarge: string;
1812
+ fontSizeTiny: string;
1813
+ fontSizeSmall: string;
1814
+ fontSizeMedium: string;
1815
+ fontSizeLarge: string;
1816
+ opacityDisabled: string;
1817
+ colorOpacitySecondary: string;
1818
+ colorOpacitySecondaryHover: string;
1819
+ colorOpacitySecondaryPressed: string;
1820
+ colorSecondary: string;
1821
+ colorSecondaryHover: string;
1822
+ colorSecondaryPressed: string;
1823
+ colorTertiary: string;
1824
+ colorTertiaryHover: string;
1825
+ colorTertiaryPressed: string;
1826
+ colorQuaternary: string;
1827
+ colorQuaternaryHover: string;
1828
+ colorQuaternaryPressed: string;
1829
+ color: string;
1830
+ colorHover: string;
1831
+ colorPressed: string;
1832
+ colorFocus: string;
1833
+ colorDisabled: string;
1834
+ textColor: string;
1835
+ textColorTertiary: string;
1836
+ textColorHover: string;
1837
+ textColorPressed: string;
1838
+ textColorFocus: string;
1839
+ textColorDisabled: string;
1840
+ textColorText: string;
1841
+ textColorTextHover: string;
1842
+ textColorTextPressed: string;
1843
+ textColorTextFocus: string;
1844
+ textColorTextDisabled: string;
1845
+ textColorGhost: string;
1846
+ textColorGhostHover: string;
1847
+ textColorGhostPressed: string;
1848
+ textColorGhostFocus: string;
1849
+ textColorGhostDisabled: string;
1850
+ border: string;
1851
+ borderHover: string;
1852
+ borderPressed: string;
1853
+ borderFocus: string;
1854
+ borderDisabled: string;
1855
+ rippleColor: string;
1856
+ colorPrimary: string;
1857
+ colorHoverPrimary: string;
1858
+ colorPressedPrimary: string;
1859
+ colorFocusPrimary: string;
1860
+ colorDisabledPrimary: string;
1861
+ textColorPrimary: string;
1862
+ textColorHoverPrimary: string;
1863
+ textColorPressedPrimary: string;
1864
+ textColorFocusPrimary: string;
1865
+ textColorDisabledPrimary: string;
1866
+ textColorTextPrimary: string;
1867
+ textColorTextHoverPrimary: string;
1868
+ textColorTextPressedPrimary: string;
1869
+ textColorTextFocusPrimary: string;
1870
+ textColorTextDisabledPrimary: string;
1871
+ textColorGhostPrimary: string;
1872
+ textColorGhostHoverPrimary: string;
1873
+ textColorGhostPressedPrimary: string;
1874
+ textColorGhostFocusPrimary: string;
1875
+ textColorGhostDisabledPrimary: string;
1876
+ borderPrimary: string;
1877
+ borderHoverPrimary: string;
1878
+ borderPressedPrimary: string;
1879
+ borderFocusPrimary: string;
1880
+ borderDisabledPrimary: string;
1881
+ rippleColorPrimary: string;
1882
+ colorInfo: string;
1883
+ colorHoverInfo: string;
1884
+ colorPressedInfo: string;
1885
+ colorFocusInfo: string;
1886
+ colorDisabledInfo: string;
1887
+ textColorInfo: string;
1888
+ textColorHoverInfo: string;
1889
+ textColorPressedInfo: string;
1890
+ textColorFocusInfo: string;
1891
+ textColorDisabledInfo: string;
1892
+ textColorTextInfo: string;
1893
+ textColorTextHoverInfo: string;
1894
+ textColorTextPressedInfo: string;
1895
+ textColorTextFocusInfo: string;
1896
+ textColorTextDisabledInfo: string;
1897
+ textColorGhostInfo: string;
1898
+ textColorGhostHoverInfo: string;
1899
+ textColorGhostPressedInfo: string;
1900
+ textColorGhostFocusInfo: string;
1901
+ textColorGhostDisabledInfo: string;
1902
+ borderInfo: string;
1903
+ borderHoverInfo: string;
1904
+ borderPressedInfo: string;
1905
+ borderFocusInfo: string;
1906
+ borderDisabledInfo: string;
1907
+ rippleColorInfo: string;
1908
+ colorSuccess: string;
1909
+ colorHoverSuccess: string;
1910
+ colorPressedSuccess: string;
1911
+ colorFocusSuccess: string;
1912
+ colorDisabledSuccess: string;
1913
+ textColorSuccess: string;
1914
+ textColorHoverSuccess: string;
1915
+ textColorPressedSuccess: string;
1916
+ textColorFocusSuccess: string;
1917
+ textColorDisabledSuccess: string;
1918
+ textColorTextSuccess: string;
1919
+ textColorTextHoverSuccess: string;
1920
+ textColorTextPressedSuccess: string;
1921
+ textColorTextFocusSuccess: string;
1922
+ textColorTextDisabledSuccess: string;
1923
+ textColorGhostSuccess: string;
1924
+ textColorGhostHoverSuccess: string;
1925
+ textColorGhostPressedSuccess: string;
1926
+ textColorGhostFocusSuccess: string;
1927
+ textColorGhostDisabledSuccess: string;
1928
+ borderSuccess: string;
1929
+ borderHoverSuccess: string;
1930
+ borderPressedSuccess: string;
1931
+ borderFocusSuccess: string;
1932
+ borderDisabledSuccess: string;
1933
+ rippleColorSuccess: string;
1934
+ colorWarning: string;
1935
+ colorHoverWarning: string;
1936
+ colorPressedWarning: string;
1937
+ colorFocusWarning: string;
1938
+ colorDisabledWarning: string;
1939
+ textColorWarning: string;
1940
+ textColorHoverWarning: string;
1941
+ textColorPressedWarning: string;
1942
+ textColorFocusWarning: string;
1943
+ textColorDisabledWarning: string;
1944
+ textColorTextWarning: string;
1945
+ textColorTextHoverWarning: string;
1946
+ textColorTextPressedWarning: string;
1947
+ textColorTextFocusWarning: string;
1948
+ textColorTextDisabledWarning: string;
1949
+ textColorGhostWarning: string;
1950
+ textColorGhostHoverWarning: string;
1951
+ textColorGhostPressedWarning: string;
1952
+ textColorGhostFocusWarning: string;
1953
+ textColorGhostDisabledWarning: string;
1954
+ borderWarning: string;
1955
+ borderHoverWarning: string;
1956
+ borderPressedWarning: string;
1957
+ borderFocusWarning: string;
1958
+ borderDisabledWarning: string;
1959
+ rippleColorWarning: string;
1960
+ colorError: string;
1961
+ colorHoverError: string;
1962
+ colorPressedError: string;
1963
+ colorFocusError: string;
1964
+ colorDisabledError: string;
1965
+ textColorError: string;
1966
+ textColorHoverError: string;
1967
+ textColorPressedError: string;
1968
+ textColorFocusError: string;
1969
+ textColorDisabledError: string;
1970
+ textColorTextError: string;
1971
+ textColorTextHoverError: string;
1972
+ textColorTextPressedError: string;
1973
+ textColorTextFocusError: string;
1974
+ textColorTextDisabledError: string;
1975
+ textColorGhostError: string;
1976
+ textColorGhostHoverError: string;
1977
+ textColorGhostPressedError: string;
1978
+ textColorGhostFocusError: string;
1979
+ textColorGhostDisabledError: string;
1980
+ borderError: string;
1981
+ borderHoverError: string;
1982
+ borderPressedError: string;
1983
+ borderFocusError: string;
1984
+ borderDisabledError: string;
1985
+ rippleColorError: string;
1986
+ waveOpacity: string;
1987
+ fontWeight: string;
1988
+ fontWeightStrong: string;
1989
+ paddingTiny: string;
1990
+ paddingSmall: string;
1991
+ paddingMedium: string;
1992
+ paddingLarge: string;
1993
+ paddingRoundTiny: string;
1994
+ paddingRoundSmall: string;
1995
+ paddingRoundMedium: string;
1996
+ paddingRoundLarge: string;
1997
+ iconMarginTiny: string;
1998
+ iconMarginSmall: string;
1999
+ iconMarginMedium: string;
2000
+ iconMarginLarge: string;
2001
+ iconSizeTiny: string;
2002
+ iconSizeSmall: string;
2003
+ iconSizeMedium: string;
2004
+ iconSizeLarge: string;
2005
+ rippleDuration: string;
2006
+ }, any>;
2007
+ Progress: import('naive-ui/es/_mixins').Theme<"Progress", {
2008
+ fontSize: string;
2009
+ fontSizeCircle: string;
2010
+ fontWeightCircle: string;
2011
+ railColor: string;
2012
+ railHeight: string;
2013
+ iconSizeCircle: string;
2014
+ iconSizeLine: string;
2015
+ iconColor: string;
2016
+ iconColorInfo: string;
2017
+ iconColorSuccess: string;
2018
+ iconColorWarning: string;
2019
+ iconColorError: string;
2020
+ textColorCircle: string;
2021
+ textColorLineInner: string;
2022
+ textColorLineOuter: string;
2023
+ fillColor: string;
2024
+ fillColorInfo: string;
2025
+ fillColorSuccess: string;
2026
+ fillColorWarning: string;
2027
+ fillColorError: string;
2028
+ lineBgProcessing: string;
2029
+ }, any>;
2030
+ }>>>;
2031
+ readonly builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Upload", {
2032
+ fontSize: string;
2033
+ lineHeight: string;
2034
+ borderRadius: string;
2035
+ draggerColor: string;
2036
+ draggerBorder: string;
2037
+ draggerBorderHover: string;
2038
+ itemColorHover: string;
2039
+ itemColorHoverError: string;
2040
+ itemTextColor: string;
2041
+ itemTextColorError: string;
2042
+ itemTextColorSuccess: string;
2043
+ itemIconColor: string;
2044
+ itemDisabledOpacity: string;
2045
+ itemBorderImageCardError: string;
2046
+ itemBorderImageCard: string;
2047
+ }, {
2048
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
2049
+ heightTiny: string;
2050
+ heightSmall: string;
2051
+ heightMedium: string;
2052
+ heightLarge: string;
2053
+ borderRadiusTiny: string;
2054
+ borderRadiusSmall: string;
2055
+ borderRadiusMedium: string;
2056
+ borderRadiusLarge: string;
2057
+ fontSizeTiny: string;
2058
+ fontSizeSmall: string;
2059
+ fontSizeMedium: string;
2060
+ fontSizeLarge: string;
2061
+ opacityDisabled: string;
2062
+ colorOpacitySecondary: string;
2063
+ colorOpacitySecondaryHover: string;
2064
+ colorOpacitySecondaryPressed: string;
2065
+ colorSecondary: string;
2066
+ colorSecondaryHover: string;
2067
+ colorSecondaryPressed: string;
2068
+ colorTertiary: string;
2069
+ colorTertiaryHover: string;
2070
+ colorTertiaryPressed: string;
2071
+ colorQuaternary: string;
2072
+ colorQuaternaryHover: string;
2073
+ colorQuaternaryPressed: string;
2074
+ color: string;
2075
+ colorHover: string;
2076
+ colorPressed: string;
2077
+ colorFocus: string;
2078
+ colorDisabled: string;
2079
+ textColor: string;
2080
+ textColorTertiary: string;
2081
+ textColorHover: string;
2082
+ textColorPressed: string;
2083
+ textColorFocus: string;
2084
+ textColorDisabled: string;
2085
+ textColorText: string;
2086
+ textColorTextHover: string;
2087
+ textColorTextPressed: string;
2088
+ textColorTextFocus: string;
2089
+ textColorTextDisabled: string;
2090
+ textColorGhost: string;
2091
+ textColorGhostHover: string;
2092
+ textColorGhostPressed: string;
2093
+ textColorGhostFocus: string;
2094
+ textColorGhostDisabled: string;
2095
+ border: string;
2096
+ borderHover: string;
2097
+ borderPressed: string;
2098
+ borderFocus: string;
2099
+ borderDisabled: string;
2100
+ rippleColor: string;
2101
+ colorPrimary: string;
2102
+ colorHoverPrimary: string;
2103
+ colorPressedPrimary: string;
2104
+ colorFocusPrimary: string;
2105
+ colorDisabledPrimary: string;
2106
+ textColorPrimary: string;
2107
+ textColorHoverPrimary: string;
2108
+ textColorPressedPrimary: string;
2109
+ textColorFocusPrimary: string;
2110
+ textColorDisabledPrimary: string;
2111
+ textColorTextPrimary: string;
2112
+ textColorTextHoverPrimary: string;
2113
+ textColorTextPressedPrimary: string;
2114
+ textColorTextFocusPrimary: string;
2115
+ textColorTextDisabledPrimary: string;
2116
+ textColorGhostPrimary: string;
2117
+ textColorGhostHoverPrimary: string;
2118
+ textColorGhostPressedPrimary: string;
2119
+ textColorGhostFocusPrimary: string;
2120
+ textColorGhostDisabledPrimary: string;
2121
+ borderPrimary: string;
2122
+ borderHoverPrimary: string;
2123
+ borderPressedPrimary: string;
2124
+ borderFocusPrimary: string;
2125
+ borderDisabledPrimary: string;
2126
+ rippleColorPrimary: string;
2127
+ colorInfo: string;
2128
+ colorHoverInfo: string;
2129
+ colorPressedInfo: string;
2130
+ colorFocusInfo: string;
2131
+ colorDisabledInfo: string;
2132
+ textColorInfo: string;
2133
+ textColorHoverInfo: string;
2134
+ textColorPressedInfo: string;
2135
+ textColorFocusInfo: string;
2136
+ textColorDisabledInfo: string;
2137
+ textColorTextInfo: string;
2138
+ textColorTextHoverInfo: string;
2139
+ textColorTextPressedInfo: string;
2140
+ textColorTextFocusInfo: string;
2141
+ textColorTextDisabledInfo: string;
2142
+ textColorGhostInfo: string;
2143
+ textColorGhostHoverInfo: string;
2144
+ textColorGhostPressedInfo: string;
2145
+ textColorGhostFocusInfo: string;
2146
+ textColorGhostDisabledInfo: string;
2147
+ borderInfo: string;
2148
+ borderHoverInfo: string;
2149
+ borderPressedInfo: string;
2150
+ borderFocusInfo: string;
2151
+ borderDisabledInfo: string;
2152
+ rippleColorInfo: string;
2153
+ colorSuccess: string;
2154
+ colorHoverSuccess: string;
2155
+ colorPressedSuccess: string;
2156
+ colorFocusSuccess: string;
2157
+ colorDisabledSuccess: string;
2158
+ textColorSuccess: string;
2159
+ textColorHoverSuccess: string;
2160
+ textColorPressedSuccess: string;
2161
+ textColorFocusSuccess: string;
2162
+ textColorDisabledSuccess: string;
2163
+ textColorTextSuccess: string;
2164
+ textColorTextHoverSuccess: string;
2165
+ textColorTextPressedSuccess: string;
2166
+ textColorTextFocusSuccess: string;
2167
+ textColorTextDisabledSuccess: string;
2168
+ textColorGhostSuccess: string;
2169
+ textColorGhostHoverSuccess: string;
2170
+ textColorGhostPressedSuccess: string;
2171
+ textColorGhostFocusSuccess: string;
2172
+ textColorGhostDisabledSuccess: string;
2173
+ borderSuccess: string;
2174
+ borderHoverSuccess: string;
2175
+ borderPressedSuccess: string;
2176
+ borderFocusSuccess: string;
2177
+ borderDisabledSuccess: string;
2178
+ rippleColorSuccess: string;
2179
+ colorWarning: string;
2180
+ colorHoverWarning: string;
2181
+ colorPressedWarning: string;
2182
+ colorFocusWarning: string;
2183
+ colorDisabledWarning: string;
2184
+ textColorWarning: string;
2185
+ textColorHoverWarning: string;
2186
+ textColorPressedWarning: string;
2187
+ textColorFocusWarning: string;
2188
+ textColorDisabledWarning: string;
2189
+ textColorTextWarning: string;
2190
+ textColorTextHoverWarning: string;
2191
+ textColorTextPressedWarning: string;
2192
+ textColorTextFocusWarning: string;
2193
+ textColorTextDisabledWarning: string;
2194
+ textColorGhostWarning: string;
2195
+ textColorGhostHoverWarning: string;
2196
+ textColorGhostPressedWarning: string;
2197
+ textColorGhostFocusWarning: string;
2198
+ textColorGhostDisabledWarning: string;
2199
+ borderWarning: string;
2200
+ borderHoverWarning: string;
2201
+ borderPressedWarning: string;
2202
+ borderFocusWarning: string;
2203
+ borderDisabledWarning: string;
2204
+ rippleColorWarning: string;
2205
+ colorError: string;
2206
+ colorHoverError: string;
2207
+ colorPressedError: string;
2208
+ colorFocusError: string;
2209
+ colorDisabledError: string;
2210
+ textColorError: string;
2211
+ textColorHoverError: string;
2212
+ textColorPressedError: string;
2213
+ textColorFocusError: string;
2214
+ textColorDisabledError: string;
2215
+ textColorTextError: string;
2216
+ textColorTextHoverError: string;
2217
+ textColorTextPressedError: string;
2218
+ textColorTextFocusError: string;
2219
+ textColorTextDisabledError: string;
2220
+ textColorGhostError: string;
2221
+ textColorGhostHoverError: string;
2222
+ textColorGhostPressedError: string;
2223
+ textColorGhostFocusError: string;
2224
+ textColorGhostDisabledError: string;
2225
+ borderError: string;
2226
+ borderHoverError: string;
2227
+ borderPressedError: string;
2228
+ borderFocusError: string;
2229
+ borderDisabledError: string;
2230
+ rippleColorError: string;
2231
+ waveOpacity: string;
2232
+ fontWeight: string;
2233
+ fontWeightStrong: string;
2234
+ paddingTiny: string;
2235
+ paddingSmall: string;
2236
+ paddingMedium: string;
2237
+ paddingLarge: string;
2238
+ paddingRoundTiny: string;
2239
+ paddingRoundSmall: string;
2240
+ paddingRoundMedium: string;
2241
+ paddingRoundLarge: string;
2242
+ iconMarginTiny: string;
2243
+ iconMarginSmall: string;
2244
+ iconMarginMedium: string;
2245
+ iconMarginLarge: string;
2246
+ iconSizeTiny: string;
2247
+ iconSizeSmall: string;
2248
+ iconSizeMedium: string;
2249
+ iconSizeLarge: string;
2250
+ rippleDuration: string;
2251
+ }, any>;
2252
+ Progress: import('naive-ui/es/_mixins').Theme<"Progress", {
2253
+ fontSize: string;
2254
+ fontSizeCircle: string;
2255
+ fontWeightCircle: string;
2256
+ railColor: string;
2257
+ railHeight: string;
2258
+ iconSizeCircle: string;
2259
+ iconSizeLine: string;
2260
+ iconColor: string;
2261
+ iconColorInfo: string;
2262
+ iconColorSuccess: string;
2263
+ iconColorWarning: string;
2264
+ iconColorError: string;
2265
+ textColorCircle: string;
2266
+ textColorLineInner: string;
2267
+ textColorLineOuter: string;
2268
+ fillColor: string;
2269
+ fillColorInfo: string;
2270
+ fillColorSuccess: string;
2271
+ fillColorWarning: string;
2272
+ fillColorError: string;
2273
+ lineBgProcessing: string;
2274
+ }, any>;
2275
+ }>>>;
2276
+ }>> & Readonly<{}>, {
2277
+ openOpenFileDialog: () => void;
2278
+ submit: (fileId?: string) => void;
2279
+ clear: () => void;
2280
+ mergedClsPrefix: import('vue').Ref<string, string>;
2281
+ draggerInsideRef: {
2282
+ value: boolean;
2283
+ };
2284
+ inputElRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
2285
+ mergedTheme: import('vue').ComputedRef<{
2286
+ common: import('naive-ui').ThemeCommonVars;
2287
+ self: {
2288
+ fontSize: string;
2289
+ lineHeight: string;
2290
+ borderRadius: string;
2291
+ draggerColor: string;
2292
+ draggerBorder: string;
2293
+ draggerBorderHover: string;
2294
+ itemColorHover: string;
2295
+ itemColorHoverError: string;
2296
+ itemTextColor: string;
2297
+ itemTextColorError: string;
2298
+ itemTextColorSuccess: string;
2299
+ itemIconColor: string;
2300
+ itemDisabledOpacity: string;
2301
+ itemBorderImageCardError: string;
2302
+ itemBorderImageCard: string;
2303
+ };
2304
+ peers: {
2305
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
2306
+ heightTiny: string;
2307
+ heightSmall: string;
2308
+ heightMedium: string;
2309
+ heightLarge: string;
2310
+ borderRadiusTiny: string;
2311
+ borderRadiusSmall: string;
2312
+ borderRadiusMedium: string;
2313
+ borderRadiusLarge: string;
2314
+ fontSizeTiny: string;
2315
+ fontSizeSmall: string;
2316
+ fontSizeMedium: string;
2317
+ fontSizeLarge: string;
2318
+ opacityDisabled: string;
2319
+ colorOpacitySecondary: string;
2320
+ colorOpacitySecondaryHover: string;
2321
+ colorOpacitySecondaryPressed: string;
2322
+ colorSecondary: string;
2323
+ colorSecondaryHover: string;
2324
+ colorSecondaryPressed: string;
2325
+ colorTertiary: string;
2326
+ colorTertiaryHover: string;
2327
+ colorTertiaryPressed: string;
2328
+ colorQuaternary: string;
2329
+ colorQuaternaryHover: string;
2330
+ colorQuaternaryPressed: string;
2331
+ color: string;
2332
+ colorHover: string;
2333
+ colorPressed: string;
2334
+ colorFocus: string;
2335
+ colorDisabled: string;
2336
+ textColor: string;
2337
+ textColorTertiary: string;
2338
+ textColorHover: string;
2339
+ textColorPressed: string;
2340
+ textColorFocus: string;
2341
+ textColorDisabled: string;
2342
+ textColorText: string;
2343
+ textColorTextHover: string;
2344
+ textColorTextPressed: string;
2345
+ textColorTextFocus: string;
2346
+ textColorTextDisabled: string;
2347
+ textColorGhost: string;
2348
+ textColorGhostHover: string;
2349
+ textColorGhostPressed: string;
2350
+ textColorGhostFocus: string;
2351
+ textColorGhostDisabled: string;
2352
+ border: string;
2353
+ borderHover: string;
2354
+ borderPressed: string;
2355
+ borderFocus: string;
2356
+ borderDisabled: string;
2357
+ rippleColor: string;
2358
+ colorPrimary: string;
2359
+ colorHoverPrimary: string;
2360
+ colorPressedPrimary: string;
2361
+ colorFocusPrimary: string;
2362
+ colorDisabledPrimary: string;
2363
+ textColorPrimary: string;
2364
+ textColorHoverPrimary: string;
2365
+ textColorPressedPrimary: string;
2366
+ textColorFocusPrimary: string;
2367
+ textColorDisabledPrimary: string;
2368
+ textColorTextPrimary: string;
2369
+ textColorTextHoverPrimary: string;
2370
+ textColorTextPressedPrimary: string;
2371
+ textColorTextFocusPrimary: string;
2372
+ textColorTextDisabledPrimary: string;
2373
+ textColorGhostPrimary: string;
2374
+ textColorGhostHoverPrimary: string;
2375
+ textColorGhostPressedPrimary: string;
2376
+ textColorGhostFocusPrimary: string;
2377
+ textColorGhostDisabledPrimary: string;
2378
+ borderPrimary: string;
2379
+ borderHoverPrimary: string;
2380
+ borderPressedPrimary: string;
2381
+ borderFocusPrimary: string;
2382
+ borderDisabledPrimary: string;
2383
+ rippleColorPrimary: string;
2384
+ colorInfo: string;
2385
+ colorHoverInfo: string;
2386
+ colorPressedInfo: string;
2387
+ colorFocusInfo: string;
2388
+ colorDisabledInfo: string;
2389
+ textColorInfo: string;
2390
+ textColorHoverInfo: string;
2391
+ textColorPressedInfo: string;
2392
+ textColorFocusInfo: string;
2393
+ textColorDisabledInfo: string;
2394
+ textColorTextInfo: string;
2395
+ textColorTextHoverInfo: string;
2396
+ textColorTextPressedInfo: string;
2397
+ textColorTextFocusInfo: string;
2398
+ textColorTextDisabledInfo: string;
2399
+ textColorGhostInfo: string;
2400
+ textColorGhostHoverInfo: string;
2401
+ textColorGhostPressedInfo: string;
2402
+ textColorGhostFocusInfo: string;
2403
+ textColorGhostDisabledInfo: string;
2404
+ borderInfo: string;
2405
+ borderHoverInfo: string;
2406
+ borderPressedInfo: string;
2407
+ borderFocusInfo: string;
2408
+ borderDisabledInfo: string;
2409
+ rippleColorInfo: string;
2410
+ colorSuccess: string;
2411
+ colorHoverSuccess: string;
2412
+ colorPressedSuccess: string;
2413
+ colorFocusSuccess: string;
2414
+ colorDisabledSuccess: string;
2415
+ textColorSuccess: string;
2416
+ textColorHoverSuccess: string;
2417
+ textColorPressedSuccess: string;
2418
+ textColorFocusSuccess: string;
2419
+ textColorDisabledSuccess: string;
2420
+ textColorTextSuccess: string;
2421
+ textColorTextHoverSuccess: string;
2422
+ textColorTextPressedSuccess: string;
2423
+ textColorTextFocusSuccess: string;
2424
+ textColorTextDisabledSuccess: string;
2425
+ textColorGhostSuccess: string;
2426
+ textColorGhostHoverSuccess: string;
2427
+ textColorGhostPressedSuccess: string;
2428
+ textColorGhostFocusSuccess: string;
2429
+ textColorGhostDisabledSuccess: string;
2430
+ borderSuccess: string;
2431
+ borderHoverSuccess: string;
2432
+ borderPressedSuccess: string;
2433
+ borderFocusSuccess: string;
2434
+ borderDisabledSuccess: string;
2435
+ rippleColorSuccess: string;
2436
+ colorWarning: string;
2437
+ colorHoverWarning: string;
2438
+ colorPressedWarning: string;
2439
+ colorFocusWarning: string;
2440
+ colorDisabledWarning: string;
2441
+ textColorWarning: string;
2442
+ textColorHoverWarning: string;
2443
+ textColorPressedWarning: string;
2444
+ textColorFocusWarning: string;
2445
+ textColorDisabledWarning: string;
2446
+ textColorTextWarning: string;
2447
+ textColorTextHoverWarning: string;
2448
+ textColorTextPressedWarning: string;
2449
+ textColorTextFocusWarning: string;
2450
+ textColorTextDisabledWarning: string;
2451
+ textColorGhostWarning: string;
2452
+ textColorGhostHoverWarning: string;
2453
+ textColorGhostPressedWarning: string;
2454
+ textColorGhostFocusWarning: string;
2455
+ textColorGhostDisabledWarning: string;
2456
+ borderWarning: string;
2457
+ borderHoverWarning: string;
2458
+ borderPressedWarning: string;
2459
+ borderFocusWarning: string;
2460
+ borderDisabledWarning: string;
2461
+ rippleColorWarning: string;
2462
+ colorError: string;
2463
+ colorHoverError: string;
2464
+ colorPressedError: string;
2465
+ colorFocusError: string;
2466
+ colorDisabledError: string;
2467
+ textColorError: string;
2468
+ textColorHoverError: string;
2469
+ textColorPressedError: string;
2470
+ textColorFocusError: string;
2471
+ textColorDisabledError: string;
2472
+ textColorTextError: string;
2473
+ textColorTextHoverError: string;
2474
+ textColorTextPressedError: string;
2475
+ textColorTextFocusError: string;
2476
+ textColorTextDisabledError: string;
2477
+ textColorGhostError: string;
2478
+ textColorGhostHoverError: string;
2479
+ textColorGhostPressedError: string;
2480
+ textColorGhostFocusError: string;
2481
+ textColorGhostDisabledError: string;
2482
+ borderError: string;
2483
+ borderHoverError: string;
2484
+ borderPressedError: string;
2485
+ borderFocusError: string;
2486
+ borderDisabledError: string;
2487
+ rippleColorError: string;
2488
+ waveOpacity: string;
2489
+ fontWeight: string;
2490
+ fontWeightStrong: string;
2491
+ paddingTiny: string;
2492
+ paddingSmall: string;
2493
+ paddingMedium: string;
2494
+ paddingLarge: string;
2495
+ paddingRoundTiny: string;
2496
+ paddingRoundSmall: string;
2497
+ paddingRoundMedium: string;
2498
+ paddingRoundLarge: string;
2499
+ iconMarginTiny: string;
2500
+ iconMarginSmall: string;
2501
+ iconMarginMedium: string;
2502
+ iconMarginLarge: string;
2503
+ iconSizeTiny: string;
2504
+ iconSizeSmall: string;
2505
+ iconSizeMedium: string;
2506
+ iconSizeLarge: string;
2507
+ rippleDuration: string;
2508
+ }, any>;
2509
+ Progress: import('naive-ui/es/_mixins').Theme<"Progress", {
2510
+ fontSize: string;
2511
+ fontSizeCircle: string;
2512
+ fontWeightCircle: string;
2513
+ railColor: string;
2514
+ railHeight: string;
2515
+ iconSizeCircle: string;
2516
+ iconSizeLine: string;
2517
+ iconColor: string;
2518
+ iconColorInfo: string;
2519
+ iconColorSuccess: string;
2520
+ iconColorWarning: string;
2521
+ iconColorError: string;
2522
+ textColorCircle: string;
2523
+ textColorLineInner: string;
2524
+ textColorLineOuter: string;
2525
+ fillColor: string;
2526
+ fillColorInfo: string;
2527
+ fillColorSuccess: string;
2528
+ fillColorWarning: string;
2529
+ fillColorError: string;
2530
+ lineBgProcessing: string;
2531
+ }, any>;
2532
+ };
2533
+ peerOverrides: {
2534
+ Button?: {
2535
+ peers?: {
2536
+ [x: string]: any;
2537
+ } | undefined;
2538
+ } | undefined;
2539
+ Progress?: {
2540
+ peers?: {
2541
+ [x: string]: any;
2542
+ } | undefined;
2543
+ } | undefined;
2544
+ };
2545
+ }>;
2546
+ dragOver: import('vue').Ref<boolean, boolean>;
2547
+ mergedMultiple: import('vue').ComputedRef<boolean>;
2548
+ cssVars: import('vue').ComputedRef<any> | undefined;
2549
+ themeClass: import('vue').Ref<string, string> | undefined;
2550
+ onRender: (() => void) | undefined;
2551
+ handleFileInputChange: (e: Event) => void;
2552
+ }, {}, {}, {}, {
2553
+ readonly method: string;
2554
+ readonly name: string;
2555
+ readonly abstract: boolean;
2556
+ readonly disabled: boolean | undefined;
2557
+ readonly multiple: boolean;
2558
+ readonly showTrigger: boolean;
2559
+ readonly listType: import('naive-ui/es/upload/src/interface').ListType;
2560
+ readonly showCancelButton: boolean;
2561
+ readonly showRemoveButton: boolean;
2562
+ readonly showDownloadButton: boolean;
2563
+ readonly showRetryButton: boolean;
2564
+ readonly showPreviewButton: boolean;
2565
+ readonly shouldUseThumbnailUrl: import('naive-ui/es/upload/src/interface').ShouldUseThumbnailUrl;
2566
+ readonly withCredentials: boolean;
2567
+ readonly responseType: XMLHttpRequestResponseType;
2568
+ readonly directory: boolean;
2569
+ readonly directoryDnd: boolean;
2570
+ readonly showFileList: boolean;
2571
+ readonly defaultUpload: boolean;
2572
+ readonly defaultFileList: UploadFileInfo[];
2573
+ }> | null;
318
2574
  }, HTMLDivElement>;
319
2575
  export default _default;