@ironsource/shared-ui 2.1.6-rc.44 → 2.1.6-rc.45
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/MultipleDataGrid.vue_vue_type_style_index_0_scoped_a089480a_lang.css +1 -0
- package/components/table/common/Table.types.d.ts +7 -0
- package/components/table/v4/MultipleDataGrid.vue.d.ts +137 -0
- package/components/table/v4/MultipleDataGrid.vue.js +7 -0
- package/components/table/v4/MultipleDataGrid.vue2.js +120 -0
- package/components/table/v4/index.d.ts +441 -3
- package/components/table/v4/index.js +13 -6
- package/index.d.ts +876 -1
- package/package.json +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import DataGrid from './DataGrid.vue';
|
|
2
2
|
import DataGridMenu from './DataGridMenu.vue';
|
|
3
3
|
import DataGridRowsCounter from './DataGridRowsCounter.vue';
|
|
4
|
+
import MultipleDataGrid from './MultipleDataGrid.vue';
|
|
4
5
|
declare const DataGridTypes: () => (({
|
|
5
6
|
new (...args: any[]): {
|
|
6
7
|
$: import("vue").ComponentInternalInstance;
|
|
@@ -723,6 +724,443 @@ declare const DataGridTypes: () => (({
|
|
|
723
724
|
displayingText: string;
|
|
724
725
|
outOfText: string;
|
|
725
726
|
totalText: string;
|
|
726
|
-
}>
|
|
727
|
-
|
|
728
|
-
|
|
727
|
+
}> | ({
|
|
728
|
+
new (...args: any[]): {
|
|
729
|
+
$: import("vue").ComponentInternalInstance;
|
|
730
|
+
$data: {};
|
|
731
|
+
$props: Partial<{
|
|
732
|
+
search: string;
|
|
733
|
+
testId: string;
|
|
734
|
+
isLoading: boolean;
|
|
735
|
+
searchPlaceholder: string;
|
|
736
|
+
count: number;
|
|
737
|
+
isSticky: boolean;
|
|
738
|
+
emptyStateTitle: string;
|
|
739
|
+
emptyStateSubtitle: string;
|
|
740
|
+
loadingRowCount: number;
|
|
741
|
+
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
742
|
+
showSearch: boolean;
|
|
743
|
+
zIndexBase: number;
|
|
744
|
+
totalCount: number;
|
|
745
|
+
displayingText: string;
|
|
746
|
+
outOfText: string;
|
|
747
|
+
totalText: string;
|
|
748
|
+
tablesSettings: import("../common/Table.types").TableSettings[];
|
|
749
|
+
loadingAndEmptyStatesColumns: import("../common/Table.types").Column[];
|
|
750
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
751
|
+
search: {
|
|
752
|
+
type: import("vue").PropType<string>;
|
|
753
|
+
default: any;
|
|
754
|
+
};
|
|
755
|
+
testId: {
|
|
756
|
+
type: import("vue").PropType<string>;
|
|
757
|
+
default: string;
|
|
758
|
+
};
|
|
759
|
+
isLoading: {
|
|
760
|
+
type: import("vue").PropType<boolean>;
|
|
761
|
+
default: boolean;
|
|
762
|
+
};
|
|
763
|
+
searchPlaceholder: {
|
|
764
|
+
type: import("vue").PropType<string>;
|
|
765
|
+
default: string;
|
|
766
|
+
};
|
|
767
|
+
count: {
|
|
768
|
+
type: import("vue").PropType<number>;
|
|
769
|
+
default: number;
|
|
770
|
+
};
|
|
771
|
+
isSticky: {
|
|
772
|
+
type: import("vue").PropType<boolean>;
|
|
773
|
+
default: boolean;
|
|
774
|
+
};
|
|
775
|
+
emptyStateTitle: {
|
|
776
|
+
type: import("vue").PropType<string>;
|
|
777
|
+
default: string;
|
|
778
|
+
};
|
|
779
|
+
emptyStateSubtitle: {
|
|
780
|
+
type: import("vue").PropType<string>;
|
|
781
|
+
default: string;
|
|
782
|
+
};
|
|
783
|
+
loadingRowCount: {
|
|
784
|
+
type: import("vue").PropType<number>;
|
|
785
|
+
default: number;
|
|
786
|
+
};
|
|
787
|
+
emptyStateVariant: {
|
|
788
|
+
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
789
|
+
default: any;
|
|
790
|
+
};
|
|
791
|
+
showSearch: {
|
|
792
|
+
type: import("vue").PropType<boolean>;
|
|
793
|
+
default: boolean;
|
|
794
|
+
};
|
|
795
|
+
zIndexBase: {
|
|
796
|
+
type: import("vue").PropType<number>;
|
|
797
|
+
default: number;
|
|
798
|
+
};
|
|
799
|
+
totalCount: {
|
|
800
|
+
type: import("vue").PropType<number>;
|
|
801
|
+
default: number;
|
|
802
|
+
};
|
|
803
|
+
displayingText: {
|
|
804
|
+
type: import("vue").PropType<string>;
|
|
805
|
+
default: string;
|
|
806
|
+
};
|
|
807
|
+
outOfText: {
|
|
808
|
+
type: import("vue").PropType<string>;
|
|
809
|
+
default: string;
|
|
810
|
+
};
|
|
811
|
+
totalText: {
|
|
812
|
+
type: import("vue").PropType<string>;
|
|
813
|
+
default: string;
|
|
814
|
+
};
|
|
815
|
+
tablesSettings: {
|
|
816
|
+
type: import("vue").PropType<import("../common/Table.types").TableSettings[]>;
|
|
817
|
+
required: true;
|
|
818
|
+
default: () => any[];
|
|
819
|
+
};
|
|
820
|
+
loadingAndEmptyStatesColumns: {
|
|
821
|
+
type: import("vue").PropType<import("../common/Table.types").Column[]>;
|
|
822
|
+
required: true;
|
|
823
|
+
default: () => any[];
|
|
824
|
+
};
|
|
825
|
+
}>> & {
|
|
826
|
+
onOnScroll?: (scrollTop: number) => any;
|
|
827
|
+
"onUpdate:search"?: (query: string) => any;
|
|
828
|
+
onOnClearSearch?: () => any;
|
|
829
|
+
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
830
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "searchPlaceholder" | "count" | "isSticky" | "emptyStateTitle" | "emptyStateSubtitle" | "loadingRowCount" | "emptyStateVariant" | "showSearch" | "zIndexBase" | "totalCount" | "displayingText" | "outOfText" | "totalText" | "tablesSettings" | "loadingAndEmptyStatesColumns">;
|
|
831
|
+
$attrs: {
|
|
832
|
+
[x: string]: unknown;
|
|
833
|
+
};
|
|
834
|
+
$refs: {
|
|
835
|
+
[x: string]: unknown;
|
|
836
|
+
};
|
|
837
|
+
$slots: Readonly<{
|
|
838
|
+
[name: string]: import("vue").Slot;
|
|
839
|
+
}>;
|
|
840
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
841
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
842
|
+
$emit: ((event: "onScroll", scrollTop: number) => void) & ((event: "update:search", query: string) => void) & ((event: "onClearSearch") => void) & ((event: "clickRow", rowIndex: number, tableIndex: number) => void);
|
|
843
|
+
$el: any;
|
|
844
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
845
|
+
search: {
|
|
846
|
+
type: import("vue").PropType<string>;
|
|
847
|
+
default: any;
|
|
848
|
+
};
|
|
849
|
+
testId: {
|
|
850
|
+
type: import("vue").PropType<string>;
|
|
851
|
+
default: string;
|
|
852
|
+
};
|
|
853
|
+
isLoading: {
|
|
854
|
+
type: import("vue").PropType<boolean>;
|
|
855
|
+
default: boolean;
|
|
856
|
+
};
|
|
857
|
+
searchPlaceholder: {
|
|
858
|
+
type: import("vue").PropType<string>;
|
|
859
|
+
default: string;
|
|
860
|
+
};
|
|
861
|
+
count: {
|
|
862
|
+
type: import("vue").PropType<number>;
|
|
863
|
+
default: number;
|
|
864
|
+
};
|
|
865
|
+
isSticky: {
|
|
866
|
+
type: import("vue").PropType<boolean>;
|
|
867
|
+
default: boolean;
|
|
868
|
+
};
|
|
869
|
+
emptyStateTitle: {
|
|
870
|
+
type: import("vue").PropType<string>;
|
|
871
|
+
default: string;
|
|
872
|
+
};
|
|
873
|
+
emptyStateSubtitle: {
|
|
874
|
+
type: import("vue").PropType<string>;
|
|
875
|
+
default: string;
|
|
876
|
+
};
|
|
877
|
+
loadingRowCount: {
|
|
878
|
+
type: import("vue").PropType<number>;
|
|
879
|
+
default: number;
|
|
880
|
+
};
|
|
881
|
+
emptyStateVariant: {
|
|
882
|
+
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
883
|
+
default: any;
|
|
884
|
+
};
|
|
885
|
+
showSearch: {
|
|
886
|
+
type: import("vue").PropType<boolean>;
|
|
887
|
+
default: boolean;
|
|
888
|
+
};
|
|
889
|
+
zIndexBase: {
|
|
890
|
+
type: import("vue").PropType<number>;
|
|
891
|
+
default: number;
|
|
892
|
+
};
|
|
893
|
+
totalCount: {
|
|
894
|
+
type: import("vue").PropType<number>;
|
|
895
|
+
default: number;
|
|
896
|
+
};
|
|
897
|
+
displayingText: {
|
|
898
|
+
type: import("vue").PropType<string>;
|
|
899
|
+
default: string;
|
|
900
|
+
};
|
|
901
|
+
outOfText: {
|
|
902
|
+
type: import("vue").PropType<string>;
|
|
903
|
+
default: string;
|
|
904
|
+
};
|
|
905
|
+
totalText: {
|
|
906
|
+
type: import("vue").PropType<string>;
|
|
907
|
+
default: string;
|
|
908
|
+
};
|
|
909
|
+
tablesSettings: {
|
|
910
|
+
type: import("vue").PropType<import("../common/Table.types").TableSettings[]>;
|
|
911
|
+
required: true;
|
|
912
|
+
default: () => any[];
|
|
913
|
+
};
|
|
914
|
+
loadingAndEmptyStatesColumns: {
|
|
915
|
+
type: import("vue").PropType<import("../common/Table.types").Column[]>;
|
|
916
|
+
required: true;
|
|
917
|
+
default: () => any[];
|
|
918
|
+
};
|
|
919
|
+
}>> & {
|
|
920
|
+
onOnScroll?: (scrollTop: number) => any;
|
|
921
|
+
"onUpdate:search"?: (query: string) => any;
|
|
922
|
+
onOnClearSearch?: () => any;
|
|
923
|
+
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
924
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
925
|
+
"update:search": (query: string) => void;
|
|
926
|
+
onScroll: (scrollTop: number) => void;
|
|
927
|
+
onClearSearch: () => void;
|
|
928
|
+
clickRow: (rowIndex: number, tableIndex: number) => void;
|
|
929
|
+
}, string, {
|
|
930
|
+
search: string;
|
|
931
|
+
testId: string;
|
|
932
|
+
isLoading: boolean;
|
|
933
|
+
searchPlaceholder: string;
|
|
934
|
+
count: number;
|
|
935
|
+
isSticky: boolean;
|
|
936
|
+
emptyStateTitle: string;
|
|
937
|
+
emptyStateSubtitle: string;
|
|
938
|
+
loadingRowCount: number;
|
|
939
|
+
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
940
|
+
showSearch: boolean;
|
|
941
|
+
zIndexBase: number;
|
|
942
|
+
totalCount: number;
|
|
943
|
+
displayingText: string;
|
|
944
|
+
outOfText: string;
|
|
945
|
+
totalText: string;
|
|
946
|
+
tablesSettings: import("../common/Table.types").TableSettings[];
|
|
947
|
+
loadingAndEmptyStatesColumns: import("../common/Table.types").Column[];
|
|
948
|
+
}, {}, string> & {
|
|
949
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
950
|
+
created?: (() => void) | (() => void)[];
|
|
951
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
952
|
+
mounted?: (() => void) | (() => void)[];
|
|
953
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
954
|
+
updated?: (() => void) | (() => void)[];
|
|
955
|
+
activated?: (() => void) | (() => void)[];
|
|
956
|
+
deactivated?: (() => void) | (() => void)[];
|
|
957
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
958
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
959
|
+
destroyed?: (() => void) | (() => void)[];
|
|
960
|
+
unmounted?: (() => void) | (() => void)[];
|
|
961
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
962
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
963
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
|
|
964
|
+
};
|
|
965
|
+
$forceUpdate: () => void;
|
|
966
|
+
$nextTick: typeof import("vue").nextTick;
|
|
967
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
968
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
969
|
+
search: {
|
|
970
|
+
type: import("vue").PropType<string>;
|
|
971
|
+
default: any;
|
|
972
|
+
};
|
|
973
|
+
testId: {
|
|
974
|
+
type: import("vue").PropType<string>;
|
|
975
|
+
default: string;
|
|
976
|
+
};
|
|
977
|
+
isLoading: {
|
|
978
|
+
type: import("vue").PropType<boolean>;
|
|
979
|
+
default: boolean;
|
|
980
|
+
};
|
|
981
|
+
searchPlaceholder: {
|
|
982
|
+
type: import("vue").PropType<string>;
|
|
983
|
+
default: string;
|
|
984
|
+
};
|
|
985
|
+
count: {
|
|
986
|
+
type: import("vue").PropType<number>;
|
|
987
|
+
default: number;
|
|
988
|
+
};
|
|
989
|
+
isSticky: {
|
|
990
|
+
type: import("vue").PropType<boolean>;
|
|
991
|
+
default: boolean;
|
|
992
|
+
};
|
|
993
|
+
emptyStateTitle: {
|
|
994
|
+
type: import("vue").PropType<string>;
|
|
995
|
+
default: string;
|
|
996
|
+
};
|
|
997
|
+
emptyStateSubtitle: {
|
|
998
|
+
type: import("vue").PropType<string>;
|
|
999
|
+
default: string;
|
|
1000
|
+
};
|
|
1001
|
+
loadingRowCount: {
|
|
1002
|
+
type: import("vue").PropType<number>;
|
|
1003
|
+
default: number;
|
|
1004
|
+
};
|
|
1005
|
+
emptyStateVariant: {
|
|
1006
|
+
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
1007
|
+
default: any;
|
|
1008
|
+
};
|
|
1009
|
+
showSearch: {
|
|
1010
|
+
type: import("vue").PropType<boolean>;
|
|
1011
|
+
default: boolean;
|
|
1012
|
+
};
|
|
1013
|
+
zIndexBase: {
|
|
1014
|
+
type: import("vue").PropType<number>;
|
|
1015
|
+
default: number;
|
|
1016
|
+
};
|
|
1017
|
+
totalCount: {
|
|
1018
|
+
type: import("vue").PropType<number>;
|
|
1019
|
+
default: number;
|
|
1020
|
+
};
|
|
1021
|
+
displayingText: {
|
|
1022
|
+
type: import("vue").PropType<string>;
|
|
1023
|
+
default: string;
|
|
1024
|
+
};
|
|
1025
|
+
outOfText: {
|
|
1026
|
+
type: import("vue").PropType<string>;
|
|
1027
|
+
default: string;
|
|
1028
|
+
};
|
|
1029
|
+
totalText: {
|
|
1030
|
+
type: import("vue").PropType<string>;
|
|
1031
|
+
default: string;
|
|
1032
|
+
};
|
|
1033
|
+
tablesSettings: {
|
|
1034
|
+
type: import("vue").PropType<import("../common/Table.types").TableSettings[]>;
|
|
1035
|
+
required: true;
|
|
1036
|
+
default: () => any[];
|
|
1037
|
+
};
|
|
1038
|
+
loadingAndEmptyStatesColumns: {
|
|
1039
|
+
type: import("vue").PropType<import("../common/Table.types").Column[]>;
|
|
1040
|
+
required: true;
|
|
1041
|
+
default: () => any[];
|
|
1042
|
+
};
|
|
1043
|
+
}>> & {
|
|
1044
|
+
onOnScroll?: (scrollTop: number) => any;
|
|
1045
|
+
"onUpdate:search"?: (query: string) => any;
|
|
1046
|
+
onOnClearSearch?: () => any;
|
|
1047
|
+
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
1048
|
+
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
1049
|
+
__isFragment?: never;
|
|
1050
|
+
__isTeleport?: never;
|
|
1051
|
+
__isSuspense?: never;
|
|
1052
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1053
|
+
search: {
|
|
1054
|
+
type: import("vue").PropType<string>;
|
|
1055
|
+
default: any;
|
|
1056
|
+
};
|
|
1057
|
+
testId: {
|
|
1058
|
+
type: import("vue").PropType<string>;
|
|
1059
|
+
default: string;
|
|
1060
|
+
};
|
|
1061
|
+
isLoading: {
|
|
1062
|
+
type: import("vue").PropType<boolean>;
|
|
1063
|
+
default: boolean;
|
|
1064
|
+
};
|
|
1065
|
+
searchPlaceholder: {
|
|
1066
|
+
type: import("vue").PropType<string>;
|
|
1067
|
+
default: string;
|
|
1068
|
+
};
|
|
1069
|
+
count: {
|
|
1070
|
+
type: import("vue").PropType<number>;
|
|
1071
|
+
default: number;
|
|
1072
|
+
};
|
|
1073
|
+
isSticky: {
|
|
1074
|
+
type: import("vue").PropType<boolean>;
|
|
1075
|
+
default: boolean;
|
|
1076
|
+
};
|
|
1077
|
+
emptyStateTitle: {
|
|
1078
|
+
type: import("vue").PropType<string>;
|
|
1079
|
+
default: string;
|
|
1080
|
+
};
|
|
1081
|
+
emptyStateSubtitle: {
|
|
1082
|
+
type: import("vue").PropType<string>;
|
|
1083
|
+
default: string;
|
|
1084
|
+
};
|
|
1085
|
+
loadingRowCount: {
|
|
1086
|
+
type: import("vue").PropType<number>;
|
|
1087
|
+
default: number;
|
|
1088
|
+
};
|
|
1089
|
+
emptyStateVariant: {
|
|
1090
|
+
type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
|
|
1091
|
+
default: any;
|
|
1092
|
+
};
|
|
1093
|
+
showSearch: {
|
|
1094
|
+
type: import("vue").PropType<boolean>;
|
|
1095
|
+
default: boolean;
|
|
1096
|
+
};
|
|
1097
|
+
zIndexBase: {
|
|
1098
|
+
type: import("vue").PropType<number>;
|
|
1099
|
+
default: number;
|
|
1100
|
+
};
|
|
1101
|
+
totalCount: {
|
|
1102
|
+
type: import("vue").PropType<number>;
|
|
1103
|
+
default: number;
|
|
1104
|
+
};
|
|
1105
|
+
displayingText: {
|
|
1106
|
+
type: import("vue").PropType<string>;
|
|
1107
|
+
default: string;
|
|
1108
|
+
};
|
|
1109
|
+
outOfText: {
|
|
1110
|
+
type: import("vue").PropType<string>;
|
|
1111
|
+
default: string;
|
|
1112
|
+
};
|
|
1113
|
+
totalText: {
|
|
1114
|
+
type: import("vue").PropType<string>;
|
|
1115
|
+
default: string;
|
|
1116
|
+
};
|
|
1117
|
+
tablesSettings: {
|
|
1118
|
+
type: import("vue").PropType<import("../common/Table.types").TableSettings[]>;
|
|
1119
|
+
required: true;
|
|
1120
|
+
default: () => any[];
|
|
1121
|
+
};
|
|
1122
|
+
loadingAndEmptyStatesColumns: {
|
|
1123
|
+
type: import("vue").PropType<import("../common/Table.types").Column[]>;
|
|
1124
|
+
required: true;
|
|
1125
|
+
default: () => any[];
|
|
1126
|
+
};
|
|
1127
|
+
}>> & {
|
|
1128
|
+
onOnScroll?: (scrollTop: number) => any;
|
|
1129
|
+
"onUpdate:search"?: (query: string) => any;
|
|
1130
|
+
onOnClearSearch?: () => any;
|
|
1131
|
+
onClickRow?: (rowIndex: number, tableIndex: number) => any;
|
|
1132
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1133
|
+
"update:search": (query: string) => void;
|
|
1134
|
+
onScroll: (scrollTop: number) => void;
|
|
1135
|
+
onClearSearch: () => void;
|
|
1136
|
+
clickRow: (rowIndex: number, tableIndex: number) => void;
|
|
1137
|
+
}, string, {
|
|
1138
|
+
search: string;
|
|
1139
|
+
testId: string;
|
|
1140
|
+
isLoading: boolean;
|
|
1141
|
+
searchPlaceholder: string;
|
|
1142
|
+
count: number;
|
|
1143
|
+
isSticky: boolean;
|
|
1144
|
+
emptyStateTitle: string;
|
|
1145
|
+
emptyStateSubtitle: string;
|
|
1146
|
+
loadingRowCount: number;
|
|
1147
|
+
emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
|
|
1148
|
+
showSearch: boolean;
|
|
1149
|
+
zIndexBase: number;
|
|
1150
|
+
totalCount: number;
|
|
1151
|
+
displayingText: string;
|
|
1152
|
+
outOfText: string;
|
|
1153
|
+
totalText: string;
|
|
1154
|
+
tablesSettings: import("../common/Table.types").TableSettings[];
|
|
1155
|
+
loadingAndEmptyStatesColumns: import("../common/Table.types").Column[];
|
|
1156
|
+
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1157
|
+
$slots: Partial<Record<string, (_: {
|
|
1158
|
+
cell: any;
|
|
1159
|
+
isLoading: any;
|
|
1160
|
+
cellIndex: any;
|
|
1161
|
+
row: any;
|
|
1162
|
+
rowIndex: any;
|
|
1163
|
+
}) => any>>;
|
|
1164
|
+
})))[];
|
|
1165
|
+
export type { Column, Sort, MenuItem, TableSettings, } from '../common/Table.types';
|
|
1166
|
+
export { DataGrid, DataGridMenu, DataGridRowsCounter, DataGridTypes, MultipleDataGrid, };
|
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
import r from "./DataGrid.vue.js";
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
|
|
2
|
+
import t from "./DataGridMenu.vue.js";
|
|
3
|
+
import o from "./DataGridRowsCounter.vue.js";
|
|
4
|
+
import a from "./MultipleDataGrid.vue.js";
|
|
5
|
+
const e = () => [
|
|
6
|
+
r,
|
|
7
|
+
t,
|
|
8
|
+
o,
|
|
9
|
+
a
|
|
10
|
+
];
|
|
5
11
|
export {
|
|
6
12
|
r as DataGrid,
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
13
|
+
t as DataGridMenu,
|
|
14
|
+
o as DataGridRowsCounter,
|
|
15
|
+
e as DataGridTypes,
|
|
16
|
+
a as MultipleDataGrid
|
|
10
17
|
};
|