qy-ui-for-ls 0.1.1 → 0.1.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.
Files changed (61) hide show
  1. package/dist/client/main.d.ts +1 -0
  2. package/dist/components/button/index.d.ts +127 -0
  3. package/dist/components/button/src/index.vue.d.ts +75 -0
  4. package/dist/components/card/index.d.ts +95 -0
  5. package/dist/components/card/src/index.vue.d.ts +59 -0
  6. package/dist/components/descriptions/index.d.ts +158 -0
  7. package/dist/components/descriptions/src/index.vue.d.ts +94 -0
  8. package/dist/components/descriptions/src/renderTooltip.vue.d.ts +9 -0
  9. package/dist/components/detail/index.d.ts +193 -0
  10. package/dist/components/detail/src/Enum.d.ts +12 -0
  11. package/dist/components/dia/index.d.ts +44 -0
  12. package/dist/components/dia/src/index.vue.d.ts +28 -0
  13. package/dist/components/editor/index.d.ts +186 -0
  14. package/dist/components/editor/src/index.vue.d.ts +72 -0
  15. package/dist/components/editor/src/mentionModal.vue.d.ts +9 -0
  16. package/dist/components/form/index.d.ts +190 -0
  17. package/dist/components/form/src/formItem.vue.d.ts +27 -0
  18. package/dist/components/form/src/index.vue.d.ts +108 -0
  19. package/dist/components/pagination/index.d.ts +40 -0
  20. package/dist/components/pagination/src/index.vue.d.ts +38 -0
  21. package/dist/components/player/index.d.ts +2 -0
  22. package/dist/components/svg-icon/index.d.ts +54 -0
  23. package/dist/components/svg-icon/src/index.vue.d.ts +27 -0
  24. package/dist/components/table-plus/index.d.ts +3088 -0
  25. package/dist/components/table-plus/src/Grid/interface/index.d.ts +5 -0
  26. package/dist/components/table-plus/src/SearchForm/SearchFormItem.vue.d.ts +29 -0
  27. package/dist/components/table-plus/src/SearchForm/index.vue.d.ts +44 -0
  28. package/dist/components/table-plus/src/components/ColSetting.vue.d.ts +20 -0
  29. package/dist/components/table-plus/src/components/Pagination.vue.d.ts +57 -0
  30. package/dist/components/table-plus/src/components/TableColumn.vue.d.ts +18 -0
  31. package/dist/components/table-plus/src/components/Tabs.vue.d.ts +41 -0
  32. package/dist/components/table-plus/src/components/Tree.vue.d.ts +175 -0
  33. package/dist/components/table-plus/src/hooks/useApi.d.ts +10 -0
  34. package/dist/components/table-plus/src/hooks/useDownload.d.ts +9 -0
  35. package/dist/components/table-plus/src/hooks/useHandleData.d.ts +11 -0
  36. package/dist/components/table-plus/src/hooks/useSelection.d.ts +17 -0
  37. package/dist/components/table-plus/src/hooks/useTable.d.ts +47 -0
  38. package/dist/components/table-plus/src/index.vue.d.ts +1049 -0
  39. package/dist/components/table-plus/src/interface/index.d.ts +113 -0
  40. package/dist/components/table-plus/src/interface/tabs.d.ts +9 -0
  41. package/dist/components/table-plus/src/utils/index.d.ts +37 -0
  42. package/dist/components/title/index.d.ts +85 -0
  43. package/dist/components/title/src/index.vue.d.ts +51 -0
  44. package/dist/components/tree/index.d.ts +152 -0
  45. package/dist/components/tree/src/index.vue.d.ts +91 -0
  46. package/dist/components/upload/index.d.ts +223 -0
  47. package/dist/components/upload/src/index.vue.d.ts +78 -0
  48. package/dist/components/uploadImg/index.d.ts +284 -0
  49. package/dist/components/uploadImg/src/index.vue.d.ts +103 -0
  50. package/dist/components/user-select/index.d.ts +102 -0
  51. package/dist/components/user-select/src/index.vue.d.ts +50 -0
  52. package/dist/components/withInstall.d.ts +5 -0
  53. package/dist/index.d.ts +20 -0
  54. package/dist/plugins/SvgBuilder/index.d.ts +4 -0
  55. package/dist/plugins/index.d.ts +7 -0
  56. package/dist/qy-ui-for-ls.es.js +83811 -0
  57. package/dist/qy-ui-for-ls.es2.js +45 -0
  58. package/dist/style.css +1 -0
  59. package/dist/utils/styles.d.ts +1 -0
  60. package/dist/vite.svg +1 -0
  61. package/package.json +1 -1
@@ -0,0 +1,5 @@
1
+ export type BreakPoint = "xs" | "sm" | "md" | "lg" | "xl";
2
+ export type Responsive = {
3
+ span?: number;
4
+ offset?: number;
5
+ };
@@ -0,0 +1,29 @@
1
+ import { ColumnProps } from '../interface';
2
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, PropType } from 'vue';
3
+
4
+ interface SearchFormItem {
5
+ column: ColumnProps;
6
+ searchParam: {
7
+ [key: string]: any;
8
+ };
9
+ }
10
+ declare function __VLS_template(): {
11
+ default?(_: {}): any;
12
+ };
13
+ declare const __VLS_component: DefineComponent<ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SearchFormItem>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SearchFormItem>>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
14
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
15
+ export default _default;
16
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
17
+ type __VLS_TypePropsToRuntimeProps<T> = {
18
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
19
+ type: PropType<__VLS_NonUndefinedable<T[K]>>;
20
+ } : {
21
+ type: PropType<T[K]>;
22
+ required: true;
23
+ };
24
+ };
25
+ type __VLS_WithTemplateSlots<T, S> = T & {
26
+ new (): {
27
+ $slots: S;
28
+ };
29
+ };
@@ -0,0 +1,44 @@
1
+ import { ColumnProps } from '../interface';
2
+ import { BreakPoint } from '../Grid/interface';
3
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, PropType } from 'vue';
4
+
5
+ interface ProTableProps {
6
+ columns?: ColumnProps[];
7
+ searchParam?: {
8
+ [key: string]: any;
9
+ };
10
+ searchCol: number | Record<BreakPoint, number>;
11
+ search: (params: any) => void;
12
+ seniorSearch: (params: any) => void;
13
+ reset: (params: any) => void;
14
+ }
15
+ declare const _default: DefineComponent<ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ProTableProps>, {
16
+ columns: () => never[];
17
+ searchParam: () => {};
18
+ }>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ProTableProps>, {
19
+ columns: () => never[];
20
+ searchParam: () => {};
21
+ }>>> & Readonly<{}>, {
22
+ columns: ColumnProps[];
23
+ searchParam: {
24
+ [key: string]: any;
25
+ };
26
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
27
+ export default _default;
28
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
29
+ type __VLS_TypePropsToRuntimeProps<T> = {
30
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
31
+ type: PropType<__VLS_NonUndefinedable<T[K]>>;
32
+ } : {
33
+ type: PropType<T[K]>;
34
+ required: true;
35
+ };
36
+ };
37
+ type __VLS_WithDefaults<P, D> = {
38
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
39
+ default: D[K];
40
+ }> : P[K];
41
+ };
42
+ type __VLS_Prettify<T> = {
43
+ [K in keyof T]: T[K];
44
+ } & {};
@@ -0,0 +1,20 @@
1
+ import { ColumnProps } from '../interface';
2
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, PropType } from 'vue';
3
+
4
+ declare const _default: DefineComponent<ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
5
+ colSetting: ColumnProps[];
6
+ }>>, {
7
+ openColSetting: () => void;
8
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
9
+ colSetting: ColumnProps[];
10
+ }>>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
11
+ export default _default;
12
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
13
+ type __VLS_TypePropsToRuntimeProps<T> = {
14
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
15
+ type: PropType<__VLS_NonUndefinedable<T[K]>>;
16
+ } : {
17
+ type: PropType<T[K]>;
18
+ required: true;
19
+ };
20
+ };
@@ -0,0 +1,57 @@
1
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, PropType } from 'vue';
2
+ export interface PaginationProps {
3
+ align?: 'left' | 'center' | 'right';
4
+ forTable?: boolean;
5
+ pageSizes?: any;
6
+ pageSize: number;
7
+ currentPage?: number;
8
+ totol?: number;
9
+ }
10
+ declare const _default: DefineComponent<ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<PaginationProps>, {
11
+ align: string;
12
+ forTable: boolean;
13
+ pageSizes: number[];
14
+ pageSize: number;
15
+ currentPage: number;
16
+ totol: number;
17
+ }>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
18
+ change: (...args: any[]) => void;
19
+ "size-change": (...args: any[]) => void;
20
+ "current-change": (...args: any[]) => void;
21
+ }, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<PaginationProps>, {
22
+ align: string;
23
+ forTable: boolean;
24
+ pageSizes: number[];
25
+ pageSize: number;
26
+ currentPage: number;
27
+ totol: number;
28
+ }>>> & Readonly<{
29
+ onChange?: ((...args: any[]) => any) | undefined;
30
+ "onSize-change"?: ((...args: any[]) => any) | undefined;
31
+ "onCurrent-change"?: ((...args: any[]) => any) | undefined;
32
+ }>, {
33
+ align: "left" | "center" | "right";
34
+ forTable: boolean;
35
+ pageSizes: any;
36
+ pageSize: number;
37
+ currentPage: number;
38
+ totol: number;
39
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
40
+ export default _default;
41
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
42
+ type __VLS_TypePropsToRuntimeProps<T> = {
43
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
44
+ type: PropType<__VLS_NonUndefinedable<T[K]>>;
45
+ } : {
46
+ type: PropType<T[K]>;
47
+ required: true;
48
+ };
49
+ };
50
+ type __VLS_WithDefaults<P, D> = {
51
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
52
+ default: D[K];
53
+ }> : P[K];
54
+ };
55
+ type __VLS_Prettify<T> = {
56
+ [K in keyof T]: T[K];
57
+ } & {};
@@ -0,0 +1,18 @@
1
+ import { ColumnProps } from '../interface';
2
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, PropType } from 'vue';
3
+
4
+ declare const _default: DefineComponent<ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
5
+ column: ColumnProps;
6
+ }>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
7
+ column: ColumnProps;
8
+ }>>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
9
+ export default _default;
10
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
11
+ type __VLS_TypePropsToRuntimeProps<T> = {
12
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
13
+ type: PropType<__VLS_NonUndefinedable<T[K]>>;
14
+ } : {
15
+ type: PropType<T[K]>;
16
+ required: true;
17
+ };
18
+ };
@@ -0,0 +1,41 @@
1
+ import { OptionItem } from '../interface/tabs';
2
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, PropType } from 'vue';
3
+
4
+ interface OptionsProps {
5
+ tabs: OptionItem[];
6
+ active: any;
7
+ }
8
+ declare const _default: DefineComponent<ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<OptionsProps>, {
9
+ tabs: () => never[];
10
+ active: string;
11
+ }>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
12
+ change: (...args: any[]) => void;
13
+ "update:active": (...args: any[]) => void;
14
+ }, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<OptionsProps>, {
15
+ tabs: () => never[];
16
+ active: string;
17
+ }>>> & Readonly<{
18
+ onChange?: ((...args: any[]) => any) | undefined;
19
+ "onUpdate:active"?: ((...args: any[]) => any) | undefined;
20
+ }>, {
21
+ active: any;
22
+ tabs: OptionItem[];
23
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
24
+ export default _default;
25
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
26
+ type __VLS_TypePropsToRuntimeProps<T> = {
27
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
28
+ type: PropType<__VLS_NonUndefinedable<T[K]>>;
29
+ } : {
30
+ type: PropType<T[K]>;
31
+ required: true;
32
+ };
33
+ };
34
+ type __VLS_WithDefaults<P, D> = {
35
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
36
+ default: D[K];
37
+ }> : P[K];
38
+ };
39
+ type __VLS_Prettify<T> = {
40
+ [K in keyof T]: T[K];
41
+ } & {};
@@ -0,0 +1,175 @@
1
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare function __VLS_template(): {
3
+ default?(_: {
4
+ node: any;
5
+ data: any;
6
+ }): any;
7
+ };
8
+ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
9
+ /**
10
+ * 树结构属性配置。
11
+ *
12
+ * @default { label: 'name', children: 'children', value: 'id' }
13
+ */
14
+ props: {
15
+ type: ObjectConstructor;
16
+ default: () => {
17
+ label: string;
18
+ children: string;
19
+ value: string;
20
+ };
21
+ };
22
+ height: {
23
+ type: StringConstructor;
24
+ default: string;
25
+ };
26
+ indent: {
27
+ type: NumberConstructor;
28
+ default: number;
29
+ };
30
+ offsetY: {
31
+ type: StringConstructor;
32
+ default: string;
33
+ };
34
+ leafKey: {
35
+ type: StringConstructor;
36
+ default: string;
37
+ };
38
+ dashColor: {
39
+ type: StringConstructor;
40
+ default: string;
41
+ };
42
+ /**
43
+ * 输入框占位符。
44
+ *
45
+ * @default ''
46
+ */
47
+ placeholder: {
48
+ type: StringConstructor;
49
+ default: string;
50
+ };
51
+ /**
52
+ * 是否显示加载中状态。
53
+ *
54
+ * @default false
55
+ */
56
+ loading: {
57
+ type: BooleanConstructor;
58
+ default: boolean;
59
+ };
60
+ /**
61
+ * 查询函数,必须返回 Promise 类型数据。
62
+ */
63
+ query: {
64
+ type: FunctionConstructor;
65
+ required: true;
66
+ };
67
+ /**
68
+ * 是否显示折叠控制
69
+ */
70
+ showExpand: {
71
+ type: BooleanConstructor;
72
+ default: boolean;
73
+ };
74
+ /**
75
+ * 默认高亮
76
+ */
77
+ active: null;
78
+ }>, {
79
+ getTreeData: () => void;
80
+ clearCurrent: () => void;
81
+ setCurrent: (key?: any) => void;
82
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
83
+ search: (...args: any[]) => void;
84
+ nodeClick: (...args: any[]) => void;
85
+ }, string, PublicProps, Readonly< ExtractPropTypes<{
86
+ /**
87
+ * 树结构属性配置。
88
+ *
89
+ * @default { label: 'name', children: 'children', value: 'id' }
90
+ */
91
+ props: {
92
+ type: ObjectConstructor;
93
+ default: () => {
94
+ label: string;
95
+ children: string;
96
+ value: string;
97
+ };
98
+ };
99
+ height: {
100
+ type: StringConstructor;
101
+ default: string;
102
+ };
103
+ indent: {
104
+ type: NumberConstructor;
105
+ default: number;
106
+ };
107
+ offsetY: {
108
+ type: StringConstructor;
109
+ default: string;
110
+ };
111
+ leafKey: {
112
+ type: StringConstructor;
113
+ default: string;
114
+ };
115
+ dashColor: {
116
+ type: StringConstructor;
117
+ default: string;
118
+ };
119
+ /**
120
+ * 输入框占位符。
121
+ *
122
+ * @default ''
123
+ */
124
+ placeholder: {
125
+ type: StringConstructor;
126
+ default: string;
127
+ };
128
+ /**
129
+ * 是否显示加载中状态。
130
+ *
131
+ * @default false
132
+ */
133
+ loading: {
134
+ type: BooleanConstructor;
135
+ default: boolean;
136
+ };
137
+ /**
138
+ * 查询函数,必须返回 Promise 类型数据。
139
+ */
140
+ query: {
141
+ type: FunctionConstructor;
142
+ required: true;
143
+ };
144
+ /**
145
+ * 是否显示折叠控制
146
+ */
147
+ showExpand: {
148
+ type: BooleanConstructor;
149
+ default: boolean;
150
+ };
151
+ /**
152
+ * 默认高亮
153
+ */
154
+ active: null;
155
+ }>> & Readonly<{
156
+ onSearch?: ((...args: any[]) => any) | undefined;
157
+ onNodeClick?: ((...args: any[]) => any) | undefined;
158
+ }>, {
159
+ props: Record<string, any>;
160
+ loading: boolean;
161
+ height: string;
162
+ offsetY: string;
163
+ placeholder: string;
164
+ indent: number;
165
+ leafKey: string;
166
+ dashColor: string;
167
+ showExpand: boolean;
168
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
169
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
170
+ export default _default;
171
+ type __VLS_WithTemplateSlots<T, S> = T & {
172
+ new (): {
173
+ $slots: S;
174
+ };
175
+ };
@@ -0,0 +1,10 @@
1
+ export declare const useApiHandle: (apiPrefix: string) => {
2
+ pageList: (obj: Object) => any;
3
+ addObj: (obj: Object) => any;
4
+ getObj: (id: String) => any;
5
+ delObj: (ids: Object) => any;
6
+ putObj: (obj: Object) => any;
7
+ objConfig: (obj: Object) => any;
8
+ importObj: (obj: Object) => any;
9
+ exportObj: (obj: Object) => any;
10
+ };
@@ -0,0 +1,9 @@
1
+ /**
2
+ * @description 接收数据流生成 blob,创建链接,下载文件
3
+ * @param {Function} api 导出表格的api方法 (必传)
4
+ * @param {String} tempName 导出的文件名 (必传)
5
+ * @param {Object} params 导出的参数 (默认{})
6
+ * @param {Boolean} isNotify 是否有导出消息提示 (默认为 true)
7
+ * @param {String} fileType 导出的文件格式 (默认为.xlsx)
8
+ * */
9
+ export declare const useDownload: (api: (param: any) => Promise<any>, tempName: string, params?: any, isNotify?: boolean, fileType?: string) => Promise<void>;
@@ -0,0 +1,11 @@
1
+ import { HandleData } from '../interface';
2
+
3
+ /**
4
+ * @description 操作单条数据信息 (二次确认【删除、禁用、启用、重置密码】)
5
+ * @param {Function} api 操作数据接口的api方法 (必传)
6
+ * @param {Object} params 携带的操作数据参数 {id,params} (必传)
7
+ * @param {String} message 提示信息 (必传)
8
+ * @param {String} confirmType icon类型 (不必传,默认为 warning)
9
+ * @returns {Promise}
10
+ */
11
+ export declare const useHandleData: (api: (params: any) => Promise<any>, params: any | undefined, message: string, confirmType?: HandleData.MessageType) => Promise<unknown>;
@@ -0,0 +1,17 @@
1
+ import { Ref, ComputedRef } from 'vue';
2
+ /**
3
+ * @description 表格多选数据操作
4
+ * @param {String} rowKey 当表格可以多选时,所指定的 id
5
+ * */
6
+ export declare const useSelection: (rowKey?: string) => {
7
+ isSelected: Ref<boolean, boolean>;
8
+ selectedList: Ref<{
9
+ [key: string]: any;
10
+ }[], {
11
+ [key: string]: any;
12
+ }[]>;
13
+ selectedListIds: ComputedRef<string[]>;
14
+ selectionChange: (rowArr: {
15
+ [key: string]: any;
16
+ }[]) => void;
17
+ };
@@ -0,0 +1,47 @@
1
+ import { Ref } from 'vue';
2
+
3
+ /**
4
+ * @description table 页面操作方法封装
5
+ * @param {Function} api 获取表格数据 api 方法 (必传)
6
+ * @param {Object} initParam 获取数据初始化参数 (非必传,默认为{})
7
+ * @param {Boolean} isPageable 是否有分页 (非必传,默认为true)
8
+ * @param {Function} dataCallBack 对后台返回的数据进行处理的方法 (非必传)
9
+ * */
10
+ export declare const useTable: (api?: (params: any) => Promise<any>, initParam?: object, isPageable?: boolean, dataCallBack?: (data: any) => any, requestError?: (error: any) => void, loading?: Ref<boolean>, isOldApi?: boolean) => {
11
+ getTableList: () => Promise<void>;
12
+ search: () => void;
13
+ reset: () => void;
14
+ handleSizeChange: (val: number) => void;
15
+ handleCurrentChange: (val: number) => void;
16
+ updatedTotalParam: () => void;
17
+ tableData: Ref<any[], any[]>;
18
+ pageable: Ref<{
19
+ current: number;
20
+ size: number;
21
+ total: number;
22
+ }, {
23
+ current: number;
24
+ size: number;
25
+ total: number;
26
+ }>;
27
+ searchParam: Ref<{
28
+ [key: string]: any;
29
+ }, {
30
+ [key: string]: any;
31
+ }>;
32
+ searchInitParam: Ref<{
33
+ [key: string]: any;
34
+ }, {
35
+ [key: string]: any;
36
+ }>;
37
+ totalParam: Ref<{
38
+ [key: string]: any;
39
+ }, {
40
+ [key: string]: any;
41
+ }>;
42
+ icon?: Ref<{
43
+ [key: string]: any;
44
+ } | undefined, {
45
+ [key: string]: any;
46
+ } | undefined> | undefined;
47
+ };