qy-ui-for-ls 0.2.2 → 0.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -36,6 +36,10 @@ declare const QyTablePlus: ({
36
36
  xl: number;
37
37
  };
38
38
  };
39
+ toolButton: {
40
+ type: PropType<boolean | ("sort" | "reset" | "refresh")[]>;
41
+ default: any;
42
+ };
39
43
  border: {
40
44
  type: PropType<boolean>;
41
45
  default: boolean;
@@ -59,10 +63,6 @@ declare const QyTablePlus: ({
59
63
  type: PropType<any>;
60
64
  default: {};
61
65
  };
62
- toolButton: {
63
- type: PropType<boolean | ("sort" | "reset" | "refresh")[]>;
64
- default: boolean;
65
- };
66
66
  showSearch: {
67
67
  type: PropType<boolean>;
68
68
  default: boolean;
@@ -1017,12 +1017,12 @@ declare const QyTablePlus: ({
1017
1017
  columns: ColumnProps[];
1018
1018
  showHeader: boolean;
1019
1019
  searchCol: number | Record< BreakPoint, number>;
1020
+ toolButton: ("refresh" | "sort" | "reset")[] | boolean;
1020
1021
  border: boolean;
1021
1022
  rowKey: string;
1022
1023
  requestAuto: boolean;
1023
1024
  pagination: boolean;
1024
1025
  initParam: any;
1025
- toolButton: ("refresh" | "sort" | "reset")[] | boolean;
1026
1026
  showSearch: boolean;
1027
1027
  showTable: boolean;
1028
1028
  showHeadersearch: boolean;
@@ -1066,6 +1066,10 @@ declare const QyTablePlus: ({
1066
1066
  xl: number;
1067
1067
  };
1068
1068
  };
1069
+ toolButton: {
1070
+ type: PropType<boolean | ("sort" | "reset" | "refresh")[]>;
1071
+ default: any;
1072
+ };
1069
1073
  border: {
1070
1074
  type: PropType<boolean>;
1071
1075
  default: boolean;
@@ -1089,10 +1093,6 @@ declare const QyTablePlus: ({
1089
1093
  type: PropType<any>;
1090
1094
  default: {};
1091
1095
  };
1092
- toolButton: {
1093
- type: PropType<boolean | ("sort" | "reset" | "refresh")[]>;
1094
- default: boolean;
1095
- };
1096
1096
  showSearch: {
1097
1097
  type: PropType<boolean>;
1098
1098
  default: boolean;
@@ -2038,12 +2038,12 @@ declare const QyTablePlus: ({
2038
2038
  columns: ColumnProps[];
2039
2039
  showHeader: boolean;
2040
2040
  searchCol: number | Record< BreakPoint, number>;
2041
+ toolButton: ("refresh" | "sort" | "reset")[] | boolean;
2041
2042
  border: boolean;
2042
2043
  rowKey: string;
2043
2044
  requestAuto: boolean;
2044
2045
  pagination: boolean;
2045
2046
  initParam: any;
2046
- toolButton: ("refresh" | "sort" | "reset")[] | boolean;
2047
2047
  showSearch: boolean;
2048
2048
  showTable: boolean;
2049
2049
  showHeadersearch: boolean;
@@ -2084,6 +2084,10 @@ declare const QyTablePlus: ({
2084
2084
  xl: number;
2085
2085
  };
2086
2086
  };
2087
+ toolButton: {
2088
+ type: PropType<boolean | ("sort" | "reset" | "refresh")[]>;
2089
+ default: any;
2090
+ };
2087
2091
  border: {
2088
2092
  type: PropType<boolean>;
2089
2093
  default: boolean;
@@ -2107,10 +2111,6 @@ declare const QyTablePlus: ({
2107
2111
  type: PropType<any>;
2108
2112
  default: {};
2109
2113
  };
2110
- toolButton: {
2111
- type: PropType<boolean | ("sort" | "reset" | "refresh")[]>;
2112
- default: boolean;
2113
- };
2114
2114
  showSearch: {
2115
2115
  type: PropType<boolean>;
2116
2116
  default: boolean;
@@ -3065,12 +3065,12 @@ declare const QyTablePlus: ({
3065
3065
  columns: ColumnProps[];
3066
3066
  showHeader: boolean;
3067
3067
  searchCol: number | Record< BreakPoint, number>;
3068
+ toolButton: ("refresh" | "sort" | "reset")[] | boolean;
3068
3069
  border: boolean;
3069
3070
  rowKey: string;
3070
3071
  requestAuto: boolean;
3071
3072
  pagination: boolean;
3072
3073
  initParam: any;
3073
- toolButton: ("refresh" | "sort" | "reset")[] | boolean;
3074
3074
  showSearch: boolean;
3075
3075
  showTable: boolean;
3076
3076
  showHeadersearch: boolean;
@@ -3081,6 +3081,7 @@ declare const QyTablePlus: ({
3081
3081
  hideBorder: boolean;
3082
3082
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
3083
3083
  $slots: Partial<Record<"expand", (_: any) => any>> & Partial<Record<string, (_: any) => any>> & {
3084
+ tableHandle?(_: {}): any;
3084
3085
  statusBar?(_: {}): any;
3085
3086
  default?(_: {}): any;
3086
3087
  append?(_: {}): any;
@@ -10,8 +10,14 @@ interface ProTableProps {
10
10
  searchCol: number | Record<BreakPoint, number>;
11
11
  search: (params: any) => void;
12
12
  reset: (params: any) => void;
13
+ seniorSearch: (params: any) => void;
14
+ getTableList: (params: any) => void;
15
+ toolButton?: ('refresh' | 'sort' | 'reset')[] | boolean;
13
16
  }
14
- declare const _default: DefineComponent<ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ProTableProps>, {
17
+ declare function __VLS_template(): {
18
+ tableHandle?(_: {}): any;
19
+ };
20
+ declare const __VLS_component: DefineComponent<ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ProTableProps>, {
15
21
  columns: () => never[];
16
22
  searchParam: () => {};
17
23
  }>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ProTableProps>, {
@@ -23,6 +29,7 @@ declare const _default: DefineComponent<ExtractPropTypes<__VLS_WithDefaults<__VL
23
29
  [key: string]: any;
24
30
  };
25
31
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
32
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
26
33
  export default _default;
27
34
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
28
35
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -41,3 +48,8 @@ type __VLS_WithDefaults<P, D> = {
41
48
  type __VLS_Prettify<T> = {
42
49
  [K in keyof T]: T[K];
43
50
  } & {};
51
+ type __VLS_WithTemplateSlots<T, S> = T & {
52
+ new (): {
53
+ $slots: S;
54
+ };
55
+ };
@@ -32,6 +32,7 @@ export interface ProTableProps {
32
32
  hideBorder?: boolean;
33
33
  }
34
34
  declare function __VLS_template(): Partial<Record<"expand", (_: any) => any>> & Partial<Record<string, (_: any) => any>> & {
35
+ tableHandle?(_: {}): any;
35
36
  statusBar?(_: {}): any;
36
37
  default?(_: {}): any;
37
38
  append?(_: {}): any;
@@ -45,7 +46,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<__VLS_WithDefaul
45
46
  pagination: boolean;
46
47
  initParam: {};
47
48
  border: boolean;
48
- toolButton: boolean;
49
+ toolButton: any;
49
50
  rowKey: string;
50
51
  searchCol: () => {
51
52
  xs: number;
@@ -978,7 +979,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<__VLS_WithDefaul
978
979
  pagination: boolean;
979
980
  initParam: {};
980
981
  border: boolean;
981
- toolButton: boolean;
982
+ toolButton: any;
982
983
  rowKey: string;
983
984
  searchCol: () => {
984
985
  xs: number;
@@ -1009,12 +1010,12 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<__VLS_WithDefaul
1009
1010
  columns: ColumnProps[];
1010
1011
  showHeader: boolean;
1011
1012
  searchCol: number | Record<BreakPoint, number>;
1013
+ toolButton: ("refresh" | "sort" | "reset")[] | boolean;
1012
1014
  border: boolean;
1013
1015
  rowKey: string;
1014
1016
  requestAuto: boolean;
1015
1017
  pagination: boolean;
1016
1018
  initParam: any;
1017
- toolButton: ("refresh" | "sort" | "reset")[] | boolean;
1018
1019
  showSearch: boolean;
1019
1020
  showTable: boolean;
1020
1021
  showHeadersearch: boolean;