qy-ui-for-ls 0.1.8 → 0.1.9

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" | "refresh" | "reset")[]>;
41
+ default: boolean;
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" | "refresh" | "reset")[]>;
1071
+ default: boolean;
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" | "refresh" | "reset")[]>;
2089
+ default: boolean;
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,7 +3081,6 @@ 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;
3085
3084
  statusBar?(_: {}): any;
3086
3085
  default?(_: {}): any;
3087
3086
  append?(_: {}): any;
@@ -11,19 +11,28 @@ interface ProTableProps {
11
11
  search: (params: any) => void;
12
12
  seniorSearch: (params: any) => void;
13
13
  reset: (params: any) => void;
14
+ getTableList: (params: any) => void;
15
+ toolButton?: ('refresh' | 'sort' | 'reset')[] | boolean;
14
16
  }
15
- 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>, {
16
21
  columns: () => never[];
17
22
  searchParam: () => {};
23
+ toolButton: boolean;
18
24
  }>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ProTableProps>, {
19
25
  columns: () => never[];
20
26
  searchParam: () => {};
27
+ toolButton: boolean;
21
28
  }>>> & Readonly<{}>, {
22
29
  columns: ColumnProps[];
23
30
  searchParam: {
24
31
  [key: string]: any;
25
32
  };
33
+ toolButton: ("refresh" | "sort" | "reset")[] | boolean;
26
34
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
35
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
27
36
  export default _default;
28
37
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
29
38
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -42,3 +51,8 @@ type __VLS_WithDefaults<P, D> = {
42
51
  type __VLS_Prettify<T> = {
43
52
  [K in keyof T]: T[K];
44
53
  } & {};
54
+ type __VLS_WithTemplateSlots<T, S> = T & {
55
+ new (): {
56
+ $slots: S;
57
+ };
58
+ };
@@ -32,7 +32,6 @@ 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;
36
35
  statusBar?(_: {}): any;
37
36
  default?(_: {}): any;
38
37
  append?(_: {}): any;
@@ -1010,12 +1009,12 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<__VLS_WithDefaul
1010
1009
  columns: ColumnProps[];
1011
1010
  showHeader: boolean;
1012
1011
  searchCol: number | Record<BreakPoint, number>;
1012
+ toolButton: ("refresh" | "sort" | "reset")[] | boolean;
1013
1013
  border: boolean;
1014
1014
  rowKey: string;
1015
1015
  requestAuto: boolean;
1016
1016
  pagination: boolean;
1017
1017
  initParam: any;
1018
- toolButton: ("refresh" | "sort" | "reset")[] | boolean;
1019
1018
  showSearch: boolean;
1020
1019
  showTable: boolean;
1021
1020
  showHeadersearch: boolean;