@fly-vue/lcdp-iview 1.6.1 → 1.6.2
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/@types/module/components/attribute/TableColAttrEdit.vue.d.ts +1 -1
- package/@types/module/components/{base-attr-components.d.ts → attribute/base-attr-components.d.ts} +29 -9
- package/@types/module/components/{designer → attribute/designer}/common/index.d.ts +0 -0
- package/@types/module/components/{designer → attribute/designer}/common/use-action-expression-context.d.ts +0 -0
- package/@types/module/components/{designer → attribute/designer}/common/use-expression-dialog.d.ts +0 -0
- package/@types/module/components/{designer → attribute/designer}/prop-value-editor/var-input/index.vue.d.ts +0 -0
- package/@types/module/components/attribute/prop-value-editor/json-editor.vue.d.ts +4 -4
- package/@types/module/components/{IvTableGrid → components/IvTableGrid}/cols.d.ts +0 -0
- package/@types/module/components/{IvTableGrid → components/IvTableGrid}/index.vue.d.ts +43 -17
- package/@types/module/components/{IvTableGrid → components/IvTableGrid}/pager-props.d.ts +0 -0
- package/@types/module/components/{IvTableGrid → components/IvTableGrid}/table-props.d.ts +3 -3
- package/@types/module/components/{IvTableGrid → components/IvTableGrid}/use-pager-events.d.ts +0 -0
- package/@types/module/components/{IvTableGrid → components/IvTableGrid}/use-table-events.d.ts +0 -0
- package/@types/module/components/{IvTableGrid → components/IvTableGrid}/utils.d.ts +0 -0
- package/@types/module/components/{IvWizard → components/IvWizard}/index.vue.d.ts +0 -0
- package/@types/module/components/{IvWizard → components/IvWizard}/step-pane.vue.d.ts +0 -0
- package/@types/module/components/{base → components/base}/IvHtml/index.vue.d.ts +0 -0
- package/@types/module/components/{base → components/base}/IvIframe/index.vue.d.ts +0 -0
- package/@types/module/components/{base → components/base}/IvText/index.vue.d.ts +0 -0
- package/@types/module/components/{design → components/design}/SlotContainer.vue.d.ts +0 -0
- package/@types/module/components/{iam → components/iam}/lib/modal.d.ts +0 -0
- package/@types/module/components/{iam → components/iam}/lib/query-methods-builder.d.ts +0 -0
- package/@types/module/components/{iam → components/iam}/lib/tree.d.ts +0 -0
- package/@types/module/components/{iam → components/iam}/mixins/build-query-methods.d.ts +0 -0
- package/@types/module/components/components/iview.d.ts +11 -0
- package/@types/module/components/{lab-component → components/lab-component}/dynamic-input/index.vue.d.ts +0 -0
- package/@types/module/components/index.d.ts +91 -95
- package/@types/module/components/utils.d.ts +6 -3
- package/@types/module/index.d.ts +1 -1
- package/@types/module/schema-extend/components/checkbox.d.ts +9 -0
- package/@types/module/schema-extend/components/collapse.d.ts +0 -1
- package/@types/module/schema-extend/components/form.d.ts +15 -0
- package/@types/module/schema-extend/components/ivlink.d.ts +22 -0
- package/@types/module/schema-extend/components/page.d.ts +5 -0
- package/bingo-builder-manifest.json +10 -16
- package/index.js +4 -4
- package/modules/fly_vue_lcdp_iview/assets/css/app.css +1 -1
- package/modules/fly_vue_lcdp_iview/assets/css/lcdp-iview-component.bf2b6361.css +1 -0
- package/modules/fly_vue_lcdp_iview/chunk-732b533d.cb89c1c08997457cb8f7.js +1 -0
- package/modules/fly_vue_lcdp_iview/dll.js +5 -5
- package/modules/fly_vue_lcdp_iview/lcdp-iview-attrcomponent.cb89c1c08997457cb8f7.js +1 -0
- package/modules/fly_vue_lcdp_iview/lcdp-iview-basecomponent.cb89c1c08997457cb8f7.js +1 -0
- package/modules/fly_vue_lcdp_iview/lcdp-iview-component.cb89c1c08997457cb8f7.js +1 -0
- package/package.json +7 -10
- package/@types/module/components/iview.d.ts +0 -11
- package/modules/fly_vue_lcdp_iview/assets/css/lcdp-iview-component.fd5dc24a.css +0 -1
- package/modules/fly_vue_lcdp_iview/chunk-732b533d.27dfd463dacf42d168ca.js +0 -1
- package/modules/fly_vue_lcdp_iview/lcdp-iview-attrcomponent.27dfd463dacf42d168ca.js +0 -1
- package/modules/fly_vue_lcdp_iview/lcdp-iview-basecomponent.27dfd463dacf42d168ca.js +0 -1
- package/modules/fly_vue_lcdp_iview/lcdp-iview-component.27dfd463dacf42d168ca.js +0 -1
|
@@ -46,7 +46,7 @@ declare const _default: {
|
|
|
46
46
|
};
|
|
47
47
|
props: {
|
|
48
48
|
value: {
|
|
49
|
-
type: (ObjectConstructor | ArrayConstructor |
|
|
49
|
+
type: (ObjectConstructor | ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
50
50
|
default: string;
|
|
51
51
|
};
|
|
52
52
|
service: {
|
package/@types/module/components/{base-attr-components.d.ts → attribute/base-attr-components.d.ts}
RENAMED
|
@@ -1,15 +1,35 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
|
-
SingleLineText:
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
2
|
+
SingleLineText: {
|
|
3
|
+
functional: boolean;
|
|
4
|
+
props: string[];
|
|
5
|
+
render(createElement: any, context: any): any;
|
|
6
|
+
};
|
|
7
|
+
Number: {
|
|
8
|
+
functional: boolean;
|
|
9
|
+
props: string[];
|
|
10
|
+
render(createElement: any, context: any): any;
|
|
11
|
+
};
|
|
12
|
+
Boolean: {
|
|
13
|
+
functional: boolean;
|
|
14
|
+
props: string[];
|
|
15
|
+
render(createElement: any, context: any): any;
|
|
16
|
+
};
|
|
17
|
+
SingleSelect: {
|
|
18
|
+
functional: boolean;
|
|
19
|
+
props: string[];
|
|
20
|
+
render(createElement: any, context: any): any;
|
|
21
|
+
};
|
|
22
|
+
TitleAttrEdit: {
|
|
23
|
+
functional: boolean;
|
|
24
|
+
props: string[];
|
|
25
|
+
render(createElement: any, context: any): any;
|
|
26
|
+
};
|
|
7
27
|
SimpleJsonEditor: import("vue").DefineComponent<{
|
|
8
28
|
value: {
|
|
9
|
-
type: (ObjectConstructor | ArrayConstructor |
|
|
29
|
+
type: (ObjectConstructor | ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
10
30
|
};
|
|
11
31
|
rows: {
|
|
12
|
-
type: (
|
|
32
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
13
33
|
default: number;
|
|
14
34
|
};
|
|
15
35
|
propSchema: {
|
|
@@ -32,10 +52,10 @@ declare const _default: {
|
|
|
32
52
|
hasError: import("vue").Ref<boolean>;
|
|
33
53
|
}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
34
54
|
value: {
|
|
35
|
-
type: (ObjectConstructor | ArrayConstructor |
|
|
55
|
+
type: (ObjectConstructor | ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
36
56
|
};
|
|
37
57
|
rows: {
|
|
38
|
-
type: (
|
|
58
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
39
59
|
default: number;
|
|
40
60
|
};
|
|
41
61
|
propSchema: {
|
|
File without changes
|
|
File without changes
|
package/@types/module/components/{designer → attribute/designer}/common/use-expression-dialog.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{
|
|
2
2
|
value: {
|
|
3
|
-
type: (ObjectConstructor | ArrayConstructor |
|
|
3
|
+
type: (ObjectConstructor | ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
4
4
|
};
|
|
5
5
|
rows: {
|
|
6
|
-
type: (
|
|
6
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
7
7
|
default: number;
|
|
8
8
|
};
|
|
9
9
|
propSchema: {
|
|
@@ -26,10 +26,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
26
26
|
hasError: import("vue").Ref<boolean>;
|
|
27
27
|
}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
28
28
|
value: {
|
|
29
|
-
type: (ObjectConstructor | ArrayConstructor |
|
|
29
|
+
type: (ObjectConstructor | ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
30
30
|
};
|
|
31
31
|
rows: {
|
|
32
|
-
type: (
|
|
32
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
33
33
|
default: number;
|
|
34
34
|
};
|
|
35
35
|
propSchema: {
|
|
File without changes
|
|
@@ -48,17 +48,22 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
48
48
|
visiblePage: {
|
|
49
49
|
type: BooleanConstructor;
|
|
50
50
|
};
|
|
51
|
+
/** 默认组件在渲染完后会自动加载一次数据源数据,关闭后组件渲染完将不会加载数据 */
|
|
52
|
+
loadOnMounted: {
|
|
53
|
+
type: BooleanConstructor;
|
|
54
|
+
default: boolean;
|
|
55
|
+
};
|
|
51
56
|
size: {
|
|
52
57
|
validator(value: any): boolean;
|
|
53
58
|
};
|
|
54
59
|
width: {
|
|
55
|
-
type: (
|
|
60
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
56
61
|
};
|
|
57
62
|
height: {
|
|
58
|
-
type: (
|
|
63
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
59
64
|
};
|
|
60
65
|
maxHeight: {
|
|
61
|
-
type: (
|
|
66
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
62
67
|
};
|
|
63
68
|
stripe: {
|
|
64
69
|
type: BooleanConstructor;
|
|
@@ -123,7 +128,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
123
128
|
type: FunctionConstructor;
|
|
124
129
|
};
|
|
125
130
|
sumText: {
|
|
126
|
-
type: StringConstructor;
|
|
131
|
+
type: StringConstructor; /** 默认组件在渲染完后会自动加载一次数据源数据,关闭后组件渲染完将不会加载数据 */
|
|
127
132
|
};
|
|
128
133
|
indentSize: {
|
|
129
134
|
type: NumberConstructor;
|
|
@@ -133,11 +138,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
133
138
|
type: FunctionConstructor;
|
|
134
139
|
};
|
|
135
140
|
updateShowChildren: {
|
|
136
|
-
type: BooleanConstructor;
|
|
137
|
-
* 计算全部 table column
|
|
138
|
-
*/
|
|
141
|
+
type: BooleanConstructor;
|
|
139
142
|
default: boolean;
|
|
140
|
-
};
|
|
143
|
+
}; /**
|
|
144
|
+
* page 配置
|
|
145
|
+
*/
|
|
141
146
|
contextMenu: {
|
|
142
147
|
type: BooleanConstructor;
|
|
143
148
|
default: boolean;
|
|
@@ -150,6 +155,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
150
155
|
type: StringConstructor;
|
|
151
156
|
default: string;
|
|
152
157
|
};
|
|
158
|
+
padding: {
|
|
159
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
160
|
+
default: number;
|
|
161
|
+
};
|
|
153
162
|
}, {
|
|
154
163
|
allTableColumn: import("vue").ComputedRef<any[]>;
|
|
155
164
|
tableColumns: import("vue").ComputedRef<any[]>;
|
|
@@ -171,7 +180,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
171
180
|
nextText: string;
|
|
172
181
|
disabled: boolean;
|
|
173
182
|
}>;
|
|
174
|
-
|
|
183
|
+
grdiStyle: import("vue").ComputedRef<{
|
|
184
|
+
padding: string | number;
|
|
185
|
+
}>;
|
|
186
|
+
tableData: import("vue").Ref<any[]>;
|
|
175
187
|
onSearch: (resetPage?: boolean) => void;
|
|
176
188
|
onSelectionChange: (_selection: any) => void;
|
|
177
189
|
selection: any;
|
|
@@ -180,6 +192,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
180
192
|
handleResetColumn: (cols: any) => void;
|
|
181
193
|
onPageChange: (_page: any) => void;
|
|
182
194
|
onPageSizeChange: (_pageSize: any) => void;
|
|
195
|
+
addRow: (params: any, isFirst: boolean) => void;
|
|
196
|
+
deleteRow: (num: number | number[], callback: any) => any;
|
|
197
|
+
getSelectData: () => any;
|
|
183
198
|
}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
184
199
|
pagerProps: {
|
|
185
200
|
type: PropType<PagerProps>;
|
|
@@ -221,17 +236,22 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
221
236
|
visiblePage: {
|
|
222
237
|
type: BooleanConstructor;
|
|
223
238
|
};
|
|
239
|
+
/** 默认组件在渲染完后会自动加载一次数据源数据,关闭后组件渲染完将不会加载数据 */
|
|
240
|
+
loadOnMounted: {
|
|
241
|
+
type: BooleanConstructor;
|
|
242
|
+
default: boolean;
|
|
243
|
+
};
|
|
224
244
|
size: {
|
|
225
245
|
validator(value: any): boolean;
|
|
226
246
|
};
|
|
227
247
|
width: {
|
|
228
|
-
type: (
|
|
248
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
229
249
|
};
|
|
230
250
|
height: {
|
|
231
|
-
type: (
|
|
251
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
232
252
|
};
|
|
233
253
|
maxHeight: {
|
|
234
|
-
type: (
|
|
254
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
235
255
|
};
|
|
236
256
|
stripe: {
|
|
237
257
|
type: BooleanConstructor;
|
|
@@ -296,7 +316,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
296
316
|
type: FunctionConstructor;
|
|
297
317
|
};
|
|
298
318
|
sumText: {
|
|
299
|
-
type: StringConstructor;
|
|
319
|
+
type: StringConstructor; /** 默认组件在渲染完后会自动加载一次数据源数据,关闭后组件渲染完将不会加载数据 */
|
|
300
320
|
};
|
|
301
321
|
indentSize: {
|
|
302
322
|
type: NumberConstructor;
|
|
@@ -306,11 +326,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
306
326
|
type: FunctionConstructor;
|
|
307
327
|
};
|
|
308
328
|
updateShowChildren: {
|
|
309
|
-
type: BooleanConstructor;
|
|
310
|
-
* 计算全部 table column
|
|
311
|
-
*/
|
|
329
|
+
type: BooleanConstructor;
|
|
312
330
|
default: boolean;
|
|
313
|
-
};
|
|
331
|
+
}; /**
|
|
332
|
+
* page 配置
|
|
333
|
+
*/
|
|
314
334
|
contextMenu: {
|
|
315
335
|
type: BooleanConstructor;
|
|
316
336
|
default: boolean;
|
|
@@ -323,6 +343,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
323
343
|
type: StringConstructor;
|
|
324
344
|
default: string;
|
|
325
345
|
};
|
|
346
|
+
padding: {
|
|
347
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
348
|
+
default: number;
|
|
349
|
+
};
|
|
326
350
|
}>>, {
|
|
327
351
|
loading: boolean;
|
|
328
352
|
border: boolean;
|
|
@@ -333,6 +357,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
333
357
|
enableSelectionCol: boolean;
|
|
334
358
|
enableIndexCol: boolean;
|
|
335
359
|
visiblePage: boolean;
|
|
360
|
+
loadOnMounted: boolean;
|
|
336
361
|
stripe: boolean;
|
|
337
362
|
showHeader: boolean;
|
|
338
363
|
highlightRow: boolean;
|
|
@@ -347,5 +372,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
347
372
|
updateShowChildren: boolean;
|
|
348
373
|
showContextMenu: boolean;
|
|
349
374
|
fixedShadow: string;
|
|
375
|
+
padding: string | number;
|
|
350
376
|
}>;
|
|
351
377
|
export default _default;
|
|
File without changes
|
|
@@ -3,13 +3,13 @@ declare const _default: {
|
|
|
3
3
|
validator(value: any): boolean;
|
|
4
4
|
};
|
|
5
5
|
width: {
|
|
6
|
-
type: (
|
|
6
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
7
7
|
};
|
|
8
8
|
height: {
|
|
9
|
-
type: (
|
|
9
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
10
10
|
};
|
|
11
11
|
maxHeight: {
|
|
12
|
-
type: (
|
|
12
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
13
13
|
};
|
|
14
14
|
stripe: {
|
|
15
15
|
type: BooleanConstructor;
|
package/@types/module/components/{IvTableGrid → components/IvTableGrid}/use-pager-events.d.ts
RENAMED
|
File without changes
|
package/@types/module/components/{IvTableGrid → components/IvTableGrid}/use-table-events.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|