@dazhicheng/ui 1.5.109 → 1.5.111
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/dataTypeContext.d.ts +1 -1
- package/dist/components/tt-button/index.d.ts +259 -1204
- package/dist/components/tt-button/index.vue.d.ts +148 -688
- package/dist/components/tt-drawer/index.d.ts +457 -2389
- package/dist/components/tt-drawer/src/RenderDrawer.vue.d.ts +290 -1394
- package/dist/components/tt-drawer/src/utils/drawer-api.d.ts +1 -1
- package/dist/components/tt-form/src/hooks/useSelectCollapse.d.ts +14 -0
- package/dist/components/tt-form-item-error-tooltip/index.d.ts +198 -1170
- package/dist/components/tt-form-item-error-tooltip/index.vue.d.ts +99 -585
- package/dist/components/tt-image/index.d.ts +8 -8
- package/dist/components/tt-image/src/components/ImageViewer.d.ts +4 -4
- package/dist/components/tt-image/tt-image.d.ts +12 -12
- package/dist/components/tt-modal/index.d.ts +30 -30
- package/dist/components/tt-modal/src/RenderModal.vue.d.ts +12 -12
- package/dist/components/tt-modal/src/hooks/useModalRender.d.ts +5 -5
- package/dist/components/tt-panel-select/src/components/PanelLeft.vue.d.ts +17 -0
- package/dist/components/tt-panel-select/src/components/PanelMiddle.vue.d.ts +162 -0
- package/dist/components/tt-panel-select/src/components/PanelRight.vue.d.ts +15 -0
- package/dist/components/tt-panel-select/src/components/panel.types.d.ts +12 -0
- package/dist/components/tt-panel-select/src/hooks/usePanelSelectData.d.ts +28 -0
- package/dist/components/tt-panel-select/src/hooks/usePanelSelectData.shared.d.ts +1 -0
- package/dist/components/tt-panel-select/src/hooks/usePanelSelectSelection.d.ts +21 -0
- package/dist/components/tt-panel-select/src/props.d.ts +41 -0
- package/dist/components/tt-table/index.d.ts +52 -322
- package/dist/components/tt-table/src/Table.vue.d.ts +104 -644
- package/dist/components/tt-table/src/components/TableColumnModal.vue.d.ts +1 -1
- package/dist/components/tt-table/src/components/TableToobalTools.vue.d.ts +199 -1171
- package/dist/components/tt-table/src/hooks/useLeftRightSlot.d.ts +104 -644
- package/dist/components/tt-upload/index.d.ts +47 -47
- package/dist/components/tt-upload/src/TtUpload.d.ts +47 -47
- package/dist/components/tt-upload/src/typing.d.ts +24 -24
- package/dist/hooks/useFormSchemasLink.d.ts +3 -18
- package/dist/index.d.ts +1 -0
- package/dist/index.js +9874 -9098
- package/dist/style.css +1 -1
- package/package.json +12 -12
|
@@ -486,41 +486,30 @@ export declare const TtTable: import('../../../../utils/src').SFCWithInstall<{
|
|
|
486
486
|
leftSlotScrollbarRef: ({
|
|
487
487
|
$: import('vue').ComponentInternalInstance;
|
|
488
488
|
$data: {};
|
|
489
|
-
$props:
|
|
490
|
-
|
|
491
|
-
height
|
|
492
|
-
maxHeight
|
|
493
|
-
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
494
|
-
minSize: number;
|
|
495
|
-
distance: number;
|
|
496
|
-
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
497
|
-
wrapClass: string | string[];
|
|
498
|
-
viewClass: string | string[];
|
|
499
|
-
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
500
|
-
}> & Omit<{
|
|
501
|
-
readonly height: number | string;
|
|
502
|
-
readonly tag: keyof HTMLElementTagNameMap | (string & {});
|
|
503
|
-
readonly maxHeight: number | string;
|
|
504
|
-
readonly distance: number;
|
|
505
|
-
readonly wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
506
|
-
readonly wrapClass: string | string[];
|
|
507
|
-
readonly viewClass: string | string[];
|
|
508
|
-
readonly viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
509
|
-
readonly minSize: number;
|
|
510
|
-
readonly id?: string | undefined;
|
|
511
|
-
readonly ariaLabel?: string | undefined;
|
|
512
|
-
readonly role?: string | undefined;
|
|
513
|
-
readonly tabindex?: number | string | undefined;
|
|
489
|
+
$props: {
|
|
490
|
+
readonly distance?: number | undefined;
|
|
491
|
+
readonly height?: number | string | undefined;
|
|
492
|
+
readonly maxHeight?: number | string | undefined;
|
|
514
493
|
readonly native?: boolean | undefined;
|
|
494
|
+
readonly wrapStyle?: import('vue').StyleValue;
|
|
495
|
+
readonly wrapClass?: string | string[] | undefined;
|
|
496
|
+
readonly viewClass?: string | string[] | undefined;
|
|
497
|
+
readonly viewStyle?: import('vue').StyleValue;
|
|
515
498
|
readonly noresize?: boolean | undefined;
|
|
499
|
+
readonly tag?: (keyof HTMLElementTagNameMap | (string & {})) | undefined;
|
|
516
500
|
readonly always?: boolean | undefined;
|
|
501
|
+
readonly minSize?: number | undefined;
|
|
502
|
+
readonly tabindex?: number | string | undefined;
|
|
503
|
+
readonly id?: string | undefined;
|
|
504
|
+
readonly role?: string | undefined;
|
|
505
|
+
readonly ariaLabel?: string | undefined;
|
|
517
506
|
readonly ariaOrientation?: "horizontal" | "vertical" | "undefined" | undefined;
|
|
518
|
-
onScroll?: ((args_0: {
|
|
507
|
+
readonly onScroll?: ((args_0: {
|
|
519
508
|
scrollTop: number;
|
|
520
509
|
scrollLeft: number;
|
|
521
510
|
}) => any) | undefined | undefined;
|
|
522
|
-
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
|
|
523
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps
|
|
511
|
+
readonly "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
|
|
512
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
524
513
|
$attrs: {
|
|
525
514
|
[x: string]: unknown;
|
|
526
515
|
};
|
|
@@ -538,76 +527,14 @@ export declare const TtTable: import('../../../../utils/src').SFCWithInstall<{
|
|
|
538
527
|
scrollLeft: number;
|
|
539
528
|
}) => void) & ((event: "end-reached", direction: import('element-plus').ScrollbarDirection) => void);
|
|
540
529
|
$el: any;
|
|
541
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('
|
|
542
|
-
id: {
|
|
543
|
-
type: import('vue').PropType<string>;
|
|
544
|
-
};
|
|
545
|
-
ariaLabel: {
|
|
546
|
-
type: import('vue').PropType<string>;
|
|
547
|
-
};
|
|
548
|
-
role: {
|
|
549
|
-
type: import('vue').PropType<string>;
|
|
550
|
-
};
|
|
551
|
-
height: {
|
|
552
|
-
type: import('vue').PropType<string | number>;
|
|
553
|
-
default: string;
|
|
554
|
-
};
|
|
555
|
-
tabindex: {
|
|
556
|
-
type: import('vue').PropType<string | number>;
|
|
557
|
-
default: undefined;
|
|
558
|
-
};
|
|
559
|
-
tag: {
|
|
560
|
-
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
561
|
-
default: string;
|
|
562
|
-
};
|
|
563
|
-
maxHeight: {
|
|
564
|
-
type: import('vue').PropType<string | number>;
|
|
565
|
-
default: string;
|
|
566
|
-
};
|
|
567
|
-
distance: {
|
|
568
|
-
type: import('vue').PropType<number>;
|
|
569
|
-
default: number;
|
|
570
|
-
};
|
|
571
|
-
native: {
|
|
572
|
-
type: import('vue').PropType<boolean>;
|
|
573
|
-
};
|
|
574
|
-
wrapStyle: {
|
|
575
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
576
|
-
default: string;
|
|
577
|
-
};
|
|
578
|
-
wrapClass: {
|
|
579
|
-
type: import('vue').PropType<string | string[]>;
|
|
580
|
-
default: string;
|
|
581
|
-
};
|
|
582
|
-
viewClass: {
|
|
583
|
-
type: import('vue').PropType<string | string[]>;
|
|
584
|
-
default: string;
|
|
585
|
-
};
|
|
586
|
-
viewStyle: {
|
|
587
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
588
|
-
default: string;
|
|
589
|
-
};
|
|
590
|
-
noresize: {
|
|
591
|
-
type: import('vue').PropType<boolean>;
|
|
592
|
-
};
|
|
593
|
-
always: {
|
|
594
|
-
type: import('vue').PropType<boolean>;
|
|
595
|
-
};
|
|
596
|
-
minSize: {
|
|
597
|
-
type: import('vue').PropType<number>;
|
|
598
|
-
default: number;
|
|
599
|
-
};
|
|
600
|
-
ariaOrientation: {
|
|
601
|
-
type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
|
|
602
|
-
};
|
|
603
|
-
}>> & {
|
|
530
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').ScrollbarProps> & Readonly<{
|
|
604
531
|
onScroll?: ((args_0: {
|
|
605
532
|
scrollTop: number;
|
|
606
533
|
scrollLeft: number;
|
|
607
534
|
}) => any) | undefined;
|
|
608
535
|
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
|
|
609
|
-
}
|
|
610
|
-
wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
|
|
536
|
+
}>, {
|
|
537
|
+
wrapRef: import('vue').Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
611
538
|
update: () => void;
|
|
612
539
|
scrollTo: {
|
|
613
540
|
(xCord: number, yCord?: number): void;
|
|
@@ -616,7 +543,7 @@ export declare const TtTable: import('../../../../utils/src').SFCWithInstall<{
|
|
|
616
543
|
setScrollTop: (value: number) => void;
|
|
617
544
|
setScrollLeft: (value: number) => void;
|
|
618
545
|
handleScroll: () => void;
|
|
619
|
-
},
|
|
546
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
620
547
|
scroll: (args_0: {
|
|
621
548
|
scrollTop: number;
|
|
622
549
|
scrollLeft: number;
|
|
@@ -627,12 +554,12 @@ export declare const TtTable: import('../../../../utils/src').SFCWithInstall<{
|
|
|
627
554
|
height: number | string;
|
|
628
555
|
maxHeight: number | string;
|
|
629
556
|
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
630
|
-
minSize: number;
|
|
631
557
|
distance: number;
|
|
632
558
|
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
633
559
|
wrapClass: string | string[];
|
|
634
560
|
viewClass: string | string[];
|
|
635
561
|
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
562
|
+
minSize: number;
|
|
636
563
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
637
564
|
beforeCreate?: (() => void) | (() => void)[];
|
|
638
565
|
created?: (() => void) | (() => void)[];
|
|
@@ -658,82 +585,20 @@ export declare const TtTable: import('../../../../utils/src').SFCWithInstall<{
|
|
|
658
585
|
height: number | string;
|
|
659
586
|
maxHeight: number | string;
|
|
660
587
|
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
661
|
-
minSize: number;
|
|
662
588
|
distance: number;
|
|
663
589
|
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
664
590
|
wrapClass: string | string[];
|
|
665
591
|
viewClass: string | string[];
|
|
666
592
|
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
type: import('vue').PropType<string>;
|
|
670
|
-
};
|
|
671
|
-
ariaLabel: {
|
|
672
|
-
type: import('vue').PropType<string>;
|
|
673
|
-
};
|
|
674
|
-
role: {
|
|
675
|
-
type: import('vue').PropType<string>;
|
|
676
|
-
};
|
|
677
|
-
height: {
|
|
678
|
-
type: import('vue').PropType<string | number>;
|
|
679
|
-
default: string;
|
|
680
|
-
};
|
|
681
|
-
tabindex: {
|
|
682
|
-
type: import('vue').PropType<string | number>;
|
|
683
|
-
default: undefined;
|
|
684
|
-
};
|
|
685
|
-
tag: {
|
|
686
|
-
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
687
|
-
default: string;
|
|
688
|
-
};
|
|
689
|
-
maxHeight: {
|
|
690
|
-
type: import('vue').PropType<string | number>;
|
|
691
|
-
default: string;
|
|
692
|
-
};
|
|
693
|
-
distance: {
|
|
694
|
-
type: import('vue').PropType<number>;
|
|
695
|
-
default: number;
|
|
696
|
-
};
|
|
697
|
-
native: {
|
|
698
|
-
type: import('vue').PropType<boolean>;
|
|
699
|
-
};
|
|
700
|
-
wrapStyle: {
|
|
701
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
702
|
-
default: string;
|
|
703
|
-
};
|
|
704
|
-
wrapClass: {
|
|
705
|
-
type: import('vue').PropType<string | string[]>;
|
|
706
|
-
default: string;
|
|
707
|
-
};
|
|
708
|
-
viewClass: {
|
|
709
|
-
type: import('vue').PropType<string | string[]>;
|
|
710
|
-
default: string;
|
|
711
|
-
};
|
|
712
|
-
viewStyle: {
|
|
713
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
714
|
-
default: string;
|
|
715
|
-
};
|
|
716
|
-
noresize: {
|
|
717
|
-
type: import('vue').PropType<boolean>;
|
|
718
|
-
};
|
|
719
|
-
always: {
|
|
720
|
-
type: import('vue').PropType<boolean>;
|
|
721
|
-
};
|
|
722
|
-
minSize: {
|
|
723
|
-
type: import('vue').PropType<number>;
|
|
724
|
-
default: number;
|
|
725
|
-
};
|
|
726
|
-
ariaOrientation: {
|
|
727
|
-
type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
|
|
728
|
-
};
|
|
729
|
-
}>> & {
|
|
593
|
+
minSize: number;
|
|
594
|
+
}> & Omit<Readonly<import('element-plus').ScrollbarProps> & Readonly<{
|
|
730
595
|
onScroll?: ((args_0: {
|
|
731
596
|
scrollTop: number;
|
|
732
597
|
scrollLeft: number;
|
|
733
598
|
}) => any) | undefined;
|
|
734
599
|
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
|
|
735
|
-
}
|
|
736
|
-
wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
|
|
600
|
+
}>, "height" | "tabindex" | "tag" | "handleScroll" | "maxHeight" | "scrollTo" | "update" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & import('vue').ShallowUnwrapRef<{
|
|
601
|
+
wrapRef: import('vue').Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
737
602
|
update: () => void;
|
|
738
603
|
scrollTo: {
|
|
739
604
|
(xCord: number, yCord?: number): void;
|
|
@@ -750,41 +615,30 @@ export declare const TtTable: import('../../../../utils/src').SFCWithInstall<{
|
|
|
750
615
|
rightSlotScrollbarRef: ({
|
|
751
616
|
$: import('vue').ComponentInternalInstance;
|
|
752
617
|
$data: {};
|
|
753
|
-
$props:
|
|
754
|
-
|
|
755
|
-
height
|
|
756
|
-
maxHeight
|
|
757
|
-
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
758
|
-
minSize: number;
|
|
759
|
-
distance: number;
|
|
760
|
-
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
761
|
-
wrapClass: string | string[];
|
|
762
|
-
viewClass: string | string[];
|
|
763
|
-
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
764
|
-
}> & Omit<{
|
|
765
|
-
readonly height: number | string;
|
|
766
|
-
readonly tag: keyof HTMLElementTagNameMap | (string & {});
|
|
767
|
-
readonly maxHeight: number | string;
|
|
768
|
-
readonly distance: number;
|
|
769
|
-
readonly wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
770
|
-
readonly wrapClass: string | string[];
|
|
771
|
-
readonly viewClass: string | string[];
|
|
772
|
-
readonly viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
773
|
-
readonly minSize: number;
|
|
774
|
-
readonly id?: string | undefined;
|
|
775
|
-
readonly ariaLabel?: string | undefined;
|
|
776
|
-
readonly role?: string | undefined;
|
|
777
|
-
readonly tabindex?: number | string | undefined;
|
|
618
|
+
$props: {
|
|
619
|
+
readonly distance?: number | undefined;
|
|
620
|
+
readonly height?: number | string | undefined;
|
|
621
|
+
readonly maxHeight?: number | string | undefined;
|
|
778
622
|
readonly native?: boolean | undefined;
|
|
623
|
+
readonly wrapStyle?: import('vue').StyleValue;
|
|
624
|
+
readonly wrapClass?: string | string[] | undefined;
|
|
625
|
+
readonly viewClass?: string | string[] | undefined;
|
|
626
|
+
readonly viewStyle?: import('vue').StyleValue;
|
|
779
627
|
readonly noresize?: boolean | undefined;
|
|
628
|
+
readonly tag?: (keyof HTMLElementTagNameMap | (string & {})) | undefined;
|
|
780
629
|
readonly always?: boolean | undefined;
|
|
630
|
+
readonly minSize?: number | undefined;
|
|
631
|
+
readonly tabindex?: number | string | undefined;
|
|
632
|
+
readonly id?: string | undefined;
|
|
633
|
+
readonly role?: string | undefined;
|
|
634
|
+
readonly ariaLabel?: string | undefined;
|
|
781
635
|
readonly ariaOrientation?: "horizontal" | "vertical" | "undefined" | undefined;
|
|
782
|
-
onScroll?: ((args_0: {
|
|
636
|
+
readonly onScroll?: ((args_0: {
|
|
783
637
|
scrollTop: number;
|
|
784
638
|
scrollLeft: number;
|
|
785
639
|
}) => any) | undefined | undefined;
|
|
786
|
-
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
|
|
787
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps
|
|
640
|
+
readonly "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
|
|
641
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
788
642
|
$attrs: {
|
|
789
643
|
[x: string]: unknown;
|
|
790
644
|
};
|
|
@@ -802,76 +656,14 @@ export declare const TtTable: import('../../../../utils/src').SFCWithInstall<{
|
|
|
802
656
|
scrollLeft: number;
|
|
803
657
|
}) => void) & ((event: "end-reached", direction: import('element-plus').ScrollbarDirection) => void);
|
|
804
658
|
$el: any;
|
|
805
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('
|
|
806
|
-
id: {
|
|
807
|
-
type: import('vue').PropType<string>;
|
|
808
|
-
};
|
|
809
|
-
ariaLabel: {
|
|
810
|
-
type: import('vue').PropType<string>;
|
|
811
|
-
};
|
|
812
|
-
role: {
|
|
813
|
-
type: import('vue').PropType<string>;
|
|
814
|
-
};
|
|
815
|
-
height: {
|
|
816
|
-
type: import('vue').PropType<string | number>;
|
|
817
|
-
default: string;
|
|
818
|
-
};
|
|
819
|
-
tabindex: {
|
|
820
|
-
type: import('vue').PropType<string | number>;
|
|
821
|
-
default: undefined;
|
|
822
|
-
};
|
|
823
|
-
tag: {
|
|
824
|
-
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
825
|
-
default: string;
|
|
826
|
-
};
|
|
827
|
-
maxHeight: {
|
|
828
|
-
type: import('vue').PropType<string | number>;
|
|
829
|
-
default: string;
|
|
830
|
-
};
|
|
831
|
-
distance: {
|
|
832
|
-
type: import('vue').PropType<number>;
|
|
833
|
-
default: number;
|
|
834
|
-
};
|
|
835
|
-
native: {
|
|
836
|
-
type: import('vue').PropType<boolean>;
|
|
837
|
-
};
|
|
838
|
-
wrapStyle: {
|
|
839
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
840
|
-
default: string;
|
|
841
|
-
};
|
|
842
|
-
wrapClass: {
|
|
843
|
-
type: import('vue').PropType<string | string[]>;
|
|
844
|
-
default: string;
|
|
845
|
-
};
|
|
846
|
-
viewClass: {
|
|
847
|
-
type: import('vue').PropType<string | string[]>;
|
|
848
|
-
default: string;
|
|
849
|
-
};
|
|
850
|
-
viewStyle: {
|
|
851
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
852
|
-
default: string;
|
|
853
|
-
};
|
|
854
|
-
noresize: {
|
|
855
|
-
type: import('vue').PropType<boolean>;
|
|
856
|
-
};
|
|
857
|
-
always: {
|
|
858
|
-
type: import('vue').PropType<boolean>;
|
|
859
|
-
};
|
|
860
|
-
minSize: {
|
|
861
|
-
type: import('vue').PropType<number>;
|
|
862
|
-
default: number;
|
|
863
|
-
};
|
|
864
|
-
ariaOrientation: {
|
|
865
|
-
type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
|
|
866
|
-
};
|
|
867
|
-
}>> & {
|
|
659
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').ScrollbarProps> & Readonly<{
|
|
868
660
|
onScroll?: ((args_0: {
|
|
869
661
|
scrollTop: number;
|
|
870
662
|
scrollLeft: number;
|
|
871
663
|
}) => any) | undefined;
|
|
872
664
|
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
|
|
873
|
-
}
|
|
874
|
-
wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
|
|
665
|
+
}>, {
|
|
666
|
+
wrapRef: import('vue').Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
875
667
|
update: () => void;
|
|
876
668
|
scrollTo: {
|
|
877
669
|
(xCord: number, yCord?: number): void;
|
|
@@ -880,7 +672,7 @@ export declare const TtTable: import('../../../../utils/src').SFCWithInstall<{
|
|
|
880
672
|
setScrollTop: (value: number) => void;
|
|
881
673
|
setScrollLeft: (value: number) => void;
|
|
882
674
|
handleScroll: () => void;
|
|
883
|
-
},
|
|
675
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
884
676
|
scroll: (args_0: {
|
|
885
677
|
scrollTop: number;
|
|
886
678
|
scrollLeft: number;
|
|
@@ -891,12 +683,12 @@ export declare const TtTable: import('../../../../utils/src').SFCWithInstall<{
|
|
|
891
683
|
height: number | string;
|
|
892
684
|
maxHeight: number | string;
|
|
893
685
|
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
894
|
-
minSize: number;
|
|
895
686
|
distance: number;
|
|
896
687
|
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
897
688
|
wrapClass: string | string[];
|
|
898
689
|
viewClass: string | string[];
|
|
899
690
|
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
691
|
+
minSize: number;
|
|
900
692
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
901
693
|
beforeCreate?: (() => void) | (() => void)[];
|
|
902
694
|
created?: (() => void) | (() => void)[];
|
|
@@ -922,82 +714,20 @@ export declare const TtTable: import('../../../../utils/src').SFCWithInstall<{
|
|
|
922
714
|
height: number | string;
|
|
923
715
|
maxHeight: number | string;
|
|
924
716
|
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
925
|
-
minSize: number;
|
|
926
717
|
distance: number;
|
|
927
718
|
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
928
719
|
wrapClass: string | string[];
|
|
929
720
|
viewClass: string | string[];
|
|
930
721
|
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
type: import('vue').PropType<string>;
|
|
934
|
-
};
|
|
935
|
-
ariaLabel: {
|
|
936
|
-
type: import('vue').PropType<string>;
|
|
937
|
-
};
|
|
938
|
-
role: {
|
|
939
|
-
type: import('vue').PropType<string>;
|
|
940
|
-
};
|
|
941
|
-
height: {
|
|
942
|
-
type: import('vue').PropType<string | number>;
|
|
943
|
-
default: string;
|
|
944
|
-
};
|
|
945
|
-
tabindex: {
|
|
946
|
-
type: import('vue').PropType<string | number>;
|
|
947
|
-
default: undefined;
|
|
948
|
-
};
|
|
949
|
-
tag: {
|
|
950
|
-
type: import('vue').PropType<keyof HTMLElementTagNameMap | (string & {})>;
|
|
951
|
-
default: string;
|
|
952
|
-
};
|
|
953
|
-
maxHeight: {
|
|
954
|
-
type: import('vue').PropType<string | number>;
|
|
955
|
-
default: string;
|
|
956
|
-
};
|
|
957
|
-
distance: {
|
|
958
|
-
type: import('vue').PropType<number>;
|
|
959
|
-
default: number;
|
|
960
|
-
};
|
|
961
|
-
native: {
|
|
962
|
-
type: import('vue').PropType<boolean>;
|
|
963
|
-
};
|
|
964
|
-
wrapStyle: {
|
|
965
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
966
|
-
default: string;
|
|
967
|
-
};
|
|
968
|
-
wrapClass: {
|
|
969
|
-
type: import('vue').PropType<string | string[]>;
|
|
970
|
-
default: string;
|
|
971
|
-
};
|
|
972
|
-
viewClass: {
|
|
973
|
-
type: import('vue').PropType<string | string[]>;
|
|
974
|
-
default: string;
|
|
975
|
-
};
|
|
976
|
-
viewStyle: {
|
|
977
|
-
type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
978
|
-
default: string;
|
|
979
|
-
};
|
|
980
|
-
noresize: {
|
|
981
|
-
type: import('vue').PropType<boolean>;
|
|
982
|
-
};
|
|
983
|
-
always: {
|
|
984
|
-
type: import('vue').PropType<boolean>;
|
|
985
|
-
};
|
|
986
|
-
minSize: {
|
|
987
|
-
type: import('vue').PropType<number>;
|
|
988
|
-
default: number;
|
|
989
|
-
};
|
|
990
|
-
ariaOrientation: {
|
|
991
|
-
type: import('vue').PropType<"undefined" | "horizontal" | "vertical">;
|
|
992
|
-
};
|
|
993
|
-
}>> & {
|
|
722
|
+
minSize: number;
|
|
723
|
+
}> & Omit<Readonly<import('element-plus').ScrollbarProps> & Readonly<{
|
|
994
724
|
onScroll?: ((args_0: {
|
|
995
725
|
scrollTop: number;
|
|
996
726
|
scrollLeft: number;
|
|
997
727
|
}) => any) | undefined;
|
|
998
728
|
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
|
|
999
|
-
}
|
|
1000
|
-
wrapRef: import('vue').Ref<HTMLDivElement | undefined>;
|
|
729
|
+
}>, "height" | "tabindex" | "tag" | "handleScroll" | "maxHeight" | "scrollTo" | "update" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & import('vue').ShallowUnwrapRef<{
|
|
730
|
+
wrapRef: import('vue').Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
1001
731
|
update: () => void;
|
|
1002
732
|
scrollTo: {
|
|
1003
733
|
(xCord: number, yCord?: number): void;
|