qy-ui-for-ls 0.2.9 → 0.3.0

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 (26) hide show
  1. package/dist/components/checkbox-group/index.d.ts +126 -0
  2. package/dist/components/checkbox-group/src/index.vue.d.ts +66 -0
  3. package/dist/components/editor/index.d.ts +5 -5
  4. package/dist/components/editor/src/index.vue.d.ts +2 -2
  5. package/dist/components/form/index.d.ts +3 -3
  6. package/dist/components/form/src/index.vue.d.ts +1 -1
  7. package/dist/components/table-plus/index.d.ts +18 -16
  8. package/dist/components/table-plus/src/SearchForm/index_new.vue.d.ts +4 -0
  9. package/dist/components/table-plus/src/components/HeadCheck.vue.d.ts +20 -0
  10. package/dist/components/table-plus/src/components/HeadSelect.vue.d.ts +20 -0
  11. package/dist/components/table-plus/src/components/HeadSort.vue.d.ts +3 -0
  12. package/dist/components/table-plus/src/components/TableColumn.vue.d.ts +4 -0
  13. package/dist/components/table-plus/src/index.vue.d.ts +9 -7
  14. package/dist/components/table-plus/src/interface/index.d.ts +1 -0
  15. package/dist/components/upload/index.d.ts +15 -15
  16. package/dist/components/upload/src/index.vue.d.ts +1 -1
  17. package/dist/components/uploadImg/index.d.ts +15 -15
  18. package/dist/components/uploadImg/src/index.vue.d.ts +1 -1
  19. package/dist/components/user-select/index.d.ts +3 -3
  20. package/dist/components/user-select/src/index.vue.d.ts +1 -1
  21. package/dist/index.d.ts +2 -1
  22. package/dist/qy-ui-for-ls.es.js +17597 -17551
  23. package/dist/style.css +1 -1
  24. package/package.json +1 -1
  25. package/dist/components/table-plus/src/Grid/GridItem.vue.d.ts +0 -68
  26. package/dist/components/table-plus/src/Grid/index.vue.d.ts +0 -66
@@ -16,14 +16,14 @@ declare const QyUpload: ({
16
16
  type: PropType<any[]>;
17
17
  default: () => never[];
18
18
  };
19
- drag: {
20
- type: PropType<boolean>;
21
- default: boolean;
22
- };
23
19
  requestError: {
24
20
  type: PropType<(error?: any) => void>;
25
21
  default: undefined;
26
22
  };
23
+ drag: {
24
+ type: PropType<boolean>;
25
+ default: boolean;
26
+ };
27
27
  beforeUpload: {
28
28
  type: PropType<(file: any) => any>;
29
29
  required: true;
@@ -61,8 +61,8 @@ declare const QyUpload: ({
61
61
  dataCallback: (data: any) => any;
62
62
  disabled: boolean;
63
63
  fileList: any[];
64
- drag: boolean;
65
64
  requestError: (error?: any) => void;
65
+ drag: boolean;
66
66
  beforeUpload: (file: any) => any;
67
67
  onSuccess: (file: any, files: any) => void;
68
68
  accept: string[];
@@ -93,14 +93,14 @@ declare const QyUpload: ({
93
93
  type: PropType<any[]>;
94
94
  default: () => never[];
95
95
  };
96
- drag: {
97
- type: PropType<boolean>;
98
- default: boolean;
99
- };
100
96
  requestError: {
101
97
  type: PropType<(error?: any) => void>;
102
98
  default: undefined;
103
99
  };
100
+ drag: {
101
+ type: PropType<boolean>;
102
+ default: boolean;
103
+ };
104
104
  beforeUpload: {
105
105
  type: PropType<(file: any) => any>;
106
106
  required: true;
@@ -136,8 +136,8 @@ declare const QyUpload: ({
136
136
  dataCallback: (data: any) => any;
137
137
  disabled: boolean;
138
138
  fileList: any[];
139
- drag: boolean;
140
139
  requestError: (error?: any) => void;
140
+ drag: boolean;
141
141
  beforeUpload: (file: any) => any;
142
142
  onSuccess: (file: any, files: any) => void;
143
143
  accept: string[];
@@ -165,14 +165,14 @@ declare const QyUpload: ({
165
165
  type: PropType<any[]>;
166
166
  default: () => never[];
167
167
  };
168
- drag: {
169
- type: PropType<boolean>;
170
- default: boolean;
171
- };
172
168
  requestError: {
173
169
  type: PropType<(error?: any) => void>;
174
170
  default: undefined;
175
171
  };
172
+ drag: {
173
+ type: PropType<boolean>;
174
+ default: boolean;
175
+ };
176
176
  beforeUpload: {
177
177
  type: PropType<(file: any) => any>;
178
178
  required: true;
@@ -210,8 +210,8 @@ declare const QyUpload: ({
210
210
  dataCallback: (data: any) => any;
211
211
  disabled: boolean;
212
212
  fileList: any[];
213
- drag: boolean;
214
213
  requestError: (error?: any) => void;
214
+ drag: boolean;
215
215
  beforeUpload: (file: any) => any;
216
216
  onSuccess: (file: any, files: any) => void;
217
217
  accept: string[];
@@ -48,8 +48,8 @@ declare const _default: DefineComponent<ExtractPropTypes<__VLS_WithDefaults<__VL
48
48
  dataCallback: (data: any) => any;
49
49
  disabled: boolean;
50
50
  fileList: any[];
51
- drag: boolean;
52
51
  requestError: (error?: any) => void;
52
+ drag: boolean;
53
53
  beforeUpload: (file: any) => any;
54
54
  onSuccess: (file: any, files: any) => void;
55
55
  accept: string[];
@@ -16,6 +16,10 @@ declare const QyUploadImg: ({
16
16
  requestApi: {
17
17
  type: PropType<(options?: any) => Promise<any>>;
18
18
  };
19
+ multiple: {
20
+ type: PropType<boolean>;
21
+ default: boolean;
22
+ };
19
23
  fileList: {
20
24
  type: PropType<any[]>;
21
25
  default: () => never[];
@@ -24,10 +28,6 @@ declare const QyUploadImg: ({
24
28
  type: PropType<(error?: any) => void>;
25
29
  default: undefined;
26
30
  };
27
- multiple: {
28
- type: PropType<boolean>;
29
- default: boolean;
30
- };
31
31
  limit: {
32
32
  type: PropType<number>;
33
33
  default: number;
@@ -76,9 +76,9 @@ declare const QyUploadImg: ({
76
76
  dataCallback: (data: any) => any;
77
77
  disabled: boolean;
78
78
  title: string;
79
+ multiple: boolean;
79
80
  fileList: any[];
80
81
  requestError: (error?: any) => void;
81
- multiple: boolean;
82
82
  limit: number;
83
83
  beforeUpload: (file: any) => any;
84
84
  onSuccess: (file: any, files: any) => void;
@@ -112,6 +112,10 @@ declare const QyUploadImg: ({
112
112
  requestApi: {
113
113
  type: PropType<(options?: any) => Promise<any>>;
114
114
  };
115
+ multiple: {
116
+ type: PropType<boolean>;
117
+ default: boolean;
118
+ };
115
119
  fileList: {
116
120
  type: PropType<any[]>;
117
121
  default: () => never[];
@@ -120,10 +124,6 @@ declare const QyUploadImg: ({
120
124
  type: PropType<(error?: any) => void>;
121
125
  default: undefined;
122
126
  };
123
- multiple: {
124
- type: PropType<boolean>;
125
- default: boolean;
126
- };
127
127
  limit: {
128
128
  type: PropType<number>;
129
129
  default: number;
@@ -170,9 +170,9 @@ declare const QyUploadImg: ({
170
170
  dataCallback: (data: any) => any;
171
171
  disabled: boolean;
172
172
  title: string;
173
+ multiple: boolean;
173
174
  fileList: any[];
174
175
  requestError: (error?: any) => void;
175
- multiple: boolean;
176
176
  limit: number;
177
177
  beforeUpload: (file: any) => any;
178
178
  onSuccess: (file: any, files: any) => void;
@@ -203,6 +203,10 @@ declare const QyUploadImg: ({
203
203
  requestApi: {
204
204
  type: PropType<(options?: any) => Promise<any>>;
205
205
  };
206
+ multiple: {
207
+ type: PropType<boolean>;
208
+ default: boolean;
209
+ };
206
210
  fileList: {
207
211
  type: PropType<any[]>;
208
212
  default: () => never[];
@@ -211,10 +215,6 @@ declare const QyUploadImg: ({
211
215
  type: PropType<(error?: any) => void>;
212
216
  default: undefined;
213
217
  };
214
- multiple: {
215
- type: PropType<boolean>;
216
- default: boolean;
217
- };
218
218
  limit: {
219
219
  type: PropType<number>;
220
220
  default: number;
@@ -263,9 +263,9 @@ declare const QyUploadImg: ({
263
263
  dataCallback: (data: any) => any;
264
264
  disabled: boolean;
265
265
  title: string;
266
+ multiple: boolean;
266
267
  fileList: any[];
267
268
  requestError: (error?: any) => void;
268
- multiple: boolean;
269
269
  limit: number;
270
270
  beforeUpload: (file: any) => any;
271
271
  onSuccess: (file: any, files: any) => void;
@@ -63,9 +63,9 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<__VLS_WithDefaul
63
63
  dataCallback: (data: any) => any;
64
64
  disabled: boolean;
65
65
  title: string;
66
+ multiple: boolean;
66
67
  fileList: any[];
67
68
  requestError: (error?: any) => void;
68
- multiple: boolean;
69
69
  limit: number;
70
70
  beforeUpload: (file: any) => any;
71
71
  onSuccess: (file: any, files: any) => void;
@@ -27,8 +27,8 @@ declare const QyUserSelect: ({
27
27
  "update:modelValue": (...args: any[]) => void;
28
28
  "updata:treeData": (...args: any[]) => void;
29
29
  }, PublicProps, {
30
- defaultProps: Record<string, any>;
31
30
  modelValue: unknown[];
31
+ defaultProps: Record<string, any>;
32
32
  treeData: unknown[];
33
33
  }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
34
34
  P: {};
@@ -61,8 +61,8 @@ declare const QyUserSelect: ({
61
61
  getData: () => any;
62
62
  setChecked: (keys: any) => Promise<void>;
63
63
  }, {}, {}, {}, {
64
- defaultProps: Record<string, any>;
65
64
  modelValue: unknown[];
65
+ defaultProps: Record<string, any>;
66
66
  treeData: unknown[];
67
67
  }>;
68
68
  __isFragment?: never;
@@ -95,8 +95,8 @@ declare const QyUserSelect: ({
95
95
  "update:modelValue": (...args: any[]) => void;
96
96
  "updata:treeData": (...args: any[]) => void;
97
97
  }, string, {
98
- defaultProps: Record<string, any>;
99
98
  modelValue: unknown[];
99
+ defaultProps: Record<string, any>;
100
100
  treeData: unknown[];
101
101
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & Plugin) & Record<string, any>;
102
102
  export default QyUserSelect;
@@ -43,8 +43,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
43
43
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
44
44
  "onUpdata:treeData"?: ((...args: any[]) => any) | undefined;
45
45
  }>, {
46
- defaultProps: Record<string, any>;
47
46
  modelValue: unknown[];
47
+ defaultProps: Record<string, any>;
48
48
  treeData: unknown[];
49
49
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
50
50
  export default _default;
package/dist/index.d.ts CHANGED
@@ -11,8 +11,9 @@ import { default as QyUserSelect } from './components/user-select';
11
11
  import { default as QyPagination } from './components/pagination';
12
12
  import { default as QyTree } from './components/tree';
13
13
  import { default as QyPlayer } from './components/player';
14
+ import { default as QyCheckboxGroup } from './components/checkbox-group';
14
15
 
15
- export { QyButton, QyTablePlus, QySvgIcon, QyDescriptions, QyForm, QyDia, QyTitle, QyUpload, QyUserSelect, QyCard, QyPagination, QyTree, QyPlayer, };
16
+ export { QyButton, QyTablePlus, QySvgIcon, QyDescriptions, QyForm, QyDia, QyTitle, QyUpload, QyUserSelect, QyCard, QyPagination, QyTree, QyPlayer, QyCheckboxGroup, };
16
17
  declare const _default: {
17
18
  install: any;
18
19
  };