@fly-vue/lcdp-iview 1.6.6 → 1.7.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/components/iam/lib/query-methods-builder-old.d.ts +18 -0
- package/@types/module/components/components/iam/lib/query-methods-builder.d.ts +2 -1
- package/@types/module/components/components/iam/mixins/build-query-methods.d.ts +32 -1
- package/@types/module/components/components/iview.d.ts +0 -2
- package/@types/module/components/index.d.ts +23 -12
- package/@types/module/schema-extend/components/form.d.ts +0 -30
- package/@types/module/schema-extend/components/grid.d.ts +1 -1
- package/@types/module/schema-extend/components/imagePreview.d.ts +44 -0
- package/@types/module/schema-extend/components/iv-table.d.ts +3 -0
- package/@types/module/schema-extend/components/others.d.ts +15 -27
- package/@types/module/schema-extend/components/region.d.ts +18 -0
- package/@types/module/schema-extend/components/tag-select.d.ts +6 -0
- package/@types/module/schema-extend/components/upload.d.ts +20 -0
- package/bingo-builder-manifest.json +12 -12
- package/index.js +4 -4
- package/modules/fly_vue_lcdp_iview/assets/css/app.css +15 -1
- package/modules/fly_vue_lcdp_iview/assets/css/{lcdp-iview-attrcomponent.e7f782ee.css → lcdp-iview-attrcomponent.83ac36ed.css} +1 -1
- package/modules/fly_vue_lcdp_iview/assets/css/lcdp-iview-component.a6346e66.css +1 -0
- package/modules/fly_vue_lcdp_iview/assets/img/empty.96eaa57f.svg +1 -0
- package/modules/fly_vue_lcdp_iview/assets/svg/empty.svg +1 -0
- package/modules/fly_vue_lcdp_iview/chunk-732b533d.71714cacfaace98884d2.js +1 -0
- package/modules/fly_vue_lcdp_iview/dll.js +11 -9
- package/modules/fly_vue_lcdp_iview/{lcdp-designer-components.3f9274e5d39112919439.js → lcdp-designer-components.71714cacfaace98884d2.js} +0 -0
- package/modules/fly_vue_lcdp_iview/lcdp-iview-attrcomponent.71714cacfaace98884d2.js +1 -0
- package/modules/fly_vue_lcdp_iview/lcdp-iview-basecomponent.71714cacfaace98884d2.js +1 -0
- package/modules/fly_vue_lcdp_iview/lcdp-iview-component.71714cacfaace98884d2.js +16 -0
- package/modules/fly_vue_lcdp_iview/{lcdp-renderer-components.3f9274e5d39112919439.js → lcdp-renderer-components.71714cacfaace98884d2.js} +0 -0
- package/package.json +13 -11
- package/modules/fly_vue_lcdp_iview/assets/css/lcdp-iview-component.a1a342fc.css +0 -1
- package/modules/fly_vue_lcdp_iview/chunk-732b533d.3f9274e5d39112919439.js +0 -1
- package/modules/fly_vue_lcdp_iview/lcdp-iview-attrcomponent.3f9274e5d39112919439.js +0 -1
- package/modules/fly_vue_lcdp_iview/lcdp-iview-basecomponent.3f9274e5d39112919439.js +0 -1
- package/modules/fly_vue_lcdp_iview/lcdp-iview-component.3f9274e5d39112919439.js +0 -1
@@ -0,0 +1,18 @@
|
|
1
|
+
declare function build(userApiUrl: any, orgApiUrl: any, userSelectOptions?: any, orgSelectOptions?: any, globalQueryOptions?: any, globalConfig?: any): {
|
2
|
+
queryRootOrg: () => any;
|
3
|
+
queryOrgByParent: (parentId: any) => any;
|
4
|
+
queryOrgByKeyword: (keyword: any, orgIds: any) => Promise<unknown>;
|
5
|
+
queryOrgByIds: (orgIds: any) => any;
|
6
|
+
queryUserByKeyword: (keyword: any, userIds: any) => Promise<unknown>;
|
7
|
+
queryUserByIds: (userIds: any) => any;
|
8
|
+
pageQueryUserByOrg: (orgIds: any, userIds: any, pageParams: any) => Promise<unknown>;
|
9
|
+
pageQueryUserByKeyword: (queryKeyword: any, userIds: any, pageParams: any) => Promise<unknown>;
|
10
|
+
getOrgIdField: () => any;
|
11
|
+
getOrgParentField: () => any;
|
12
|
+
userOptions: any;
|
13
|
+
orgOptions: any;
|
14
|
+
};
|
15
|
+
declare const _default: {
|
16
|
+
build: typeof build;
|
17
|
+
};
|
18
|
+
export default _default;
|
@@ -1,4 +1,5 @@
|
|
1
1
|
declare function build(userApiUrl: any, orgApiUrl: any, userSelectOptions?: any, orgSelectOptions?: any, globalQueryOptions?: any, globalConfig?: any): {
|
2
|
+
queryExternalOrg: () => any;
|
2
3
|
queryRootOrg: () => any;
|
3
4
|
queryOrgByParent: (parentId: any) => any;
|
4
5
|
queryOrgByKeyword: (keyword: any, orgIds: any) => Promise<unknown>;
|
@@ -9,7 +10,7 @@ declare function build(userApiUrl: any, orgApiUrl: any, userSelectOptions?: any,
|
|
9
10
|
}>;
|
10
11
|
queryUserByKeyword: (keyword: any, userIds: any) => Promise<unknown>;
|
11
12
|
queryUserByIds: (userIds: any) => any;
|
12
|
-
pageQueryUserByOrg: (orgIds: any, userIds: any, pageParams: any) => Promise<unknown>;
|
13
|
+
pageQueryUserByOrg: (orgIds: any, userIds: any, pageParams: any, filters?: string) => Promise<unknown>;
|
13
14
|
pageQueryUserByKeyword: (queryKeyword: any, userIds: any, pageParams: any) => Promise<unknown>;
|
14
15
|
getOrgIdField: () => any;
|
15
16
|
getOrgParentField: () => any;
|
@@ -14,7 +14,38 @@ declare const _default: {
|
|
14
14
|
};
|
15
15
|
};
|
16
16
|
methods: {
|
17
|
-
buildQueryMethods(globalQueryOptions?: any, globalConfig?: any):
|
17
|
+
buildQueryMethods(globalQueryOptions?: any, globalConfig?: any): {
|
18
|
+
queryRootOrg: () => any;
|
19
|
+
queryOrgByParent: (parentId: any) => any;
|
20
|
+
queryOrgByKeyword: (keyword: any, orgIds: any) => Promise<unknown>;
|
21
|
+
queryOrgByIds: (orgIds: any) => any;
|
22
|
+
queryUserByKeyword: (keyword: any, userIds: any) => Promise<unknown>;
|
23
|
+
queryUserByIds: (userIds: any) => any;
|
24
|
+
pageQueryUserByOrg: (orgIds: any, userIds: any, pageParams: any) => Promise<unknown>;
|
25
|
+
pageQueryUserByKeyword: (queryKeyword: any, userIds: any, pageParams: any) => Promise<unknown>;
|
26
|
+
getOrgIdField: () => any;
|
27
|
+
getOrgParentField: () => any;
|
28
|
+
userOptions: any;
|
29
|
+
orgOptions: any;
|
30
|
+
} | {
|
31
|
+
queryExternalOrg: () => any;
|
32
|
+
queryRootOrg: () => any;
|
33
|
+
queryOrgByParent: (parentId: any) => any;
|
34
|
+
queryOrgByKeyword: (keyword: any, orgIds: any) => Promise<unknown>;
|
35
|
+
queryOrgByIds: (orgIds: any) => any;
|
36
|
+
queryOrgTotal: () => Promise<{
|
37
|
+
activeCount: number;
|
38
|
+
delCount: number;
|
39
|
+
}>;
|
40
|
+
queryUserByKeyword: (keyword: any, userIds: any) => Promise<unknown>;
|
41
|
+
queryUserByIds: (userIds: any) => any;
|
42
|
+
pageQueryUserByOrg: (orgIds: any, userIds: any, pageParams: any, filters?: string) => Promise<unknown>;
|
43
|
+
pageQueryUserByKeyword: (queryKeyword: any, userIds: any, pageParams: any) => Promise<unknown>;
|
44
|
+
getOrgIdField: () => any;
|
45
|
+
getOrgParentField: () => any;
|
46
|
+
userOptions: any;
|
47
|
+
orgOptions: any;
|
48
|
+
};
|
18
49
|
validateProps(queryMethods: any): void;
|
19
50
|
};
|
20
51
|
};
|
@@ -100,9 +100,13 @@ declare const _default: {
|
|
100
100
|
IvCheckboxGroup: () => Promise<any>;
|
101
101
|
IvBackTop: () => Promise<any>;
|
102
102
|
Input: () => Promise<typeof import("*.vue")>;
|
103
|
+
Tabs: () => Promise<typeof import("*.vue")>;
|
103
104
|
IvDrawer: () => Promise<any>;
|
104
105
|
IvCrud: () => Promise<typeof import("*.vue")>;
|
105
106
|
IvTableGrid: import("vue").DefineComponent<{
|
107
|
+
/**
|
108
|
+
* @description: // 基础组件
|
109
|
+
*/
|
106
110
|
pagerProps: {
|
107
111
|
type: import("vue").PropType<import("./components/IvTableGrid/pager-props").PagerProps>;
|
108
112
|
};
|
@@ -176,13 +180,13 @@ declare const _default: {
|
|
176
180
|
default: boolean;
|
177
181
|
};
|
178
182
|
border: {
|
179
|
-
/**
|
180
|
-
* @description: // 基础组件
|
181
|
-
*/
|
182
183
|
type: BooleanConstructor;
|
183
184
|
default: boolean;
|
184
185
|
};
|
185
186
|
showHeader: {
|
187
|
+
/**
|
188
|
+
* @description: // 基础组件
|
189
|
+
*/
|
186
190
|
type: BooleanConstructor;
|
187
191
|
default: boolean;
|
188
192
|
};
|
@@ -195,6 +199,9 @@ declare const _default: {
|
|
195
199
|
default(): string;
|
196
200
|
};
|
197
201
|
context: {
|
202
|
+
/**
|
203
|
+
* @description: // 基础组件
|
204
|
+
*/
|
198
205
|
type: ObjectConstructor;
|
199
206
|
};
|
200
207
|
noDataText: {
|
@@ -307,6 +314,9 @@ declare const _default: {
|
|
307
314
|
}, {}, {}, {
|
308
315
|
onRowClick(selection: any, index: any): void;
|
309
316
|
}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
317
|
+
/**
|
318
|
+
* @description: // 基础组件
|
319
|
+
*/
|
310
320
|
pagerProps: {
|
311
321
|
type: import("vue").PropType<import("./components/IvTableGrid/pager-props").PagerProps>;
|
312
322
|
};
|
@@ -380,13 +390,13 @@ declare const _default: {
|
|
380
390
|
default: boolean;
|
381
391
|
};
|
382
392
|
border: {
|
383
|
-
/**
|
384
|
-
* @description: // 基础组件
|
385
|
-
*/
|
386
393
|
type: BooleanConstructor;
|
387
394
|
default: boolean;
|
388
395
|
};
|
389
396
|
showHeader: {
|
397
|
+
/**
|
398
|
+
* @description: // 基础组件
|
399
|
+
*/
|
390
400
|
type: BooleanConstructor;
|
391
401
|
default: boolean;
|
392
402
|
};
|
@@ -399,6 +409,9 @@ declare const _default: {
|
|
399
409
|
default(): string;
|
400
410
|
};
|
401
411
|
context: {
|
412
|
+
/**
|
413
|
+
* @description: // 基础组件
|
414
|
+
*/
|
402
415
|
type: ObjectConstructor;
|
403
416
|
};
|
404
417
|
noDataText: {
|
@@ -504,13 +517,11 @@ declare const _default: {
|
|
504
517
|
IamOrgSelect: () => Promise<typeof import("*.vue")>;
|
505
518
|
IamOrgTree: () => Promise<typeof import("*.vue")>;
|
506
519
|
IamOrgEditTree: () => Promise<typeof import("*.vue")>;
|
507
|
-
IamStringArrayEditor: () => Promise<typeof import("*.vue")>;
|
508
|
-
IamPasswordEditor: () => Promise<typeof import("*.vue")>;
|
509
|
-
IamDoubleColumnsView: () => Promise<typeof import("*.vue")>;
|
510
|
-
IamClientSelect: () => Promise<typeof import("*.vue")>;
|
511
520
|
DynamicInput: () => Promise<typeof import("./components/lab-component/dynamic-input/index.vue")>;
|
512
521
|
IvScrollSpy: () => Promise<typeof import("*.vue")>;
|
513
522
|
IvScrollSpyItem: () => Promise<typeof import("*.vue")>;
|
523
|
+
IvImagePreview: () => Promise<typeof import("*.vue")>;
|
524
|
+
IvRegion: () => Promise<typeof import("*.vue")>;
|
514
525
|
IvContainer: () => Promise<any>;
|
515
526
|
IvDiv: () => Promise<any>;
|
516
527
|
IvFlex: () => Promise<typeof import("*.vue")>;
|
@@ -524,17 +535,17 @@ declare const _default: {
|
|
524
535
|
IvTitle: () => Promise<any>;
|
525
536
|
IvLiList: () => Promise<any>;
|
526
537
|
IvLi: () => Promise<typeof import("*.vue")>;
|
538
|
+
IvEmpty: () => Promise<any>;
|
527
539
|
IvLayoutContainer: () => Promise<typeof import("*.vue")>;
|
528
540
|
IvLayout: () => Promise<any>;
|
529
541
|
IvHeader: () => Promise<any>;
|
530
542
|
IvSider: () => Promise<any>;
|
531
543
|
IvContent: () => Promise<any>;
|
532
544
|
IvFooter: () => Promise<any>;
|
545
|
+
IvGrid: () => Promise<any>;
|
533
546
|
IvTableColumn: any;
|
534
547
|
IvTableGridColumn: any;
|
535
548
|
IvForm: any;
|
536
|
-
IamFormMemberSelect: any;
|
537
|
-
IamFormOrgSelect: any;
|
538
549
|
SingleLineText: {
|
539
550
|
functional: boolean;
|
540
551
|
props: string[];
|
@@ -168,36 +168,6 @@ declare const _default: {
|
|
168
168
|
node: any;
|
169
169
|
}): void;
|
170
170
|
};
|
171
|
-
IamFormMemberSelect: {
|
172
|
-
json: {
|
173
|
-
designer: {
|
174
|
-
movein: boolean;
|
175
|
-
};
|
176
|
-
};
|
177
|
-
moving({ service, toNode }: {
|
178
|
-
service: any;
|
179
|
-
toNode: any;
|
180
|
-
}): boolean;
|
181
|
-
removeing({ service, node }: {
|
182
|
-
service: any;
|
183
|
-
node: any;
|
184
|
-
}): void;
|
185
|
-
};
|
186
|
-
IamFormOrgSelect: {
|
187
|
-
json: {
|
188
|
-
designer: {
|
189
|
-
movein: boolean;
|
190
|
-
};
|
191
|
-
};
|
192
|
-
moving({ service, toNode }: {
|
193
|
-
service: any;
|
194
|
-
toNode: any;
|
195
|
-
}): boolean;
|
196
|
-
removeing({ service, node }: {
|
197
|
-
service: any;
|
198
|
-
node: any;
|
199
|
-
}): void;
|
200
|
-
};
|
201
171
|
'Extendable.FormItem': {
|
202
172
|
properties: {
|
203
173
|
rules: {
|
@@ -0,0 +1,44 @@
|
|
1
|
+
declare const _default: {
|
2
|
+
IvImagePreview: {
|
3
|
+
selector({ el, $ }: {
|
4
|
+
el: any;
|
5
|
+
$: any;
|
6
|
+
}): any;
|
7
|
+
properties: {
|
8
|
+
data: {
|
9
|
+
mock: ({ node, service }: {
|
10
|
+
node: any;
|
11
|
+
service: any;
|
12
|
+
}) => any;
|
13
|
+
default: {
|
14
|
+
url: string;
|
15
|
+
text: string;
|
16
|
+
}[];
|
17
|
+
};
|
18
|
+
};
|
19
|
+
events: {
|
20
|
+
'on-close': {
|
21
|
+
title: string;
|
22
|
+
group: string;
|
23
|
+
orderNo: number;
|
24
|
+
properties: {};
|
25
|
+
mock: ({ event, service, node }: {
|
26
|
+
event: any;
|
27
|
+
service: any;
|
28
|
+
node: any;
|
29
|
+
}) => void;
|
30
|
+
};
|
31
|
+
};
|
32
|
+
json({ service }: {
|
33
|
+
service: any;
|
34
|
+
}): {
|
35
|
+
designer: {
|
36
|
+
movein: boolean;
|
37
|
+
};
|
38
|
+
props: {
|
39
|
+
value: string;
|
40
|
+
};
|
41
|
+
};
|
42
|
+
};
|
43
|
+
};
|
44
|
+
export default _default;
|
@@ -25,33 +25,6 @@ declare const _default: {
|
|
25
25
|
};
|
26
26
|
};
|
27
27
|
};
|
28
|
-
IvUpload: {
|
29
|
-
properties: {
|
30
|
-
disabled: {
|
31
|
-
mock: boolean;
|
32
|
-
};
|
33
|
-
text: {
|
34
|
-
turnOn({ node }: {
|
35
|
-
node: any;
|
36
|
-
}): boolean;
|
37
|
-
};
|
38
|
-
buttonType: {
|
39
|
-
turnOn({ node }: {
|
40
|
-
node: any;
|
41
|
-
}): boolean;
|
42
|
-
};
|
43
|
-
dragText: {
|
44
|
-
turnOn({ node }: {
|
45
|
-
node: any;
|
46
|
-
}): boolean;
|
47
|
-
};
|
48
|
-
};
|
49
|
-
json: {
|
50
|
-
designer: {
|
51
|
-
movein: boolean;
|
52
|
-
};
|
53
|
-
};
|
54
|
-
};
|
55
28
|
IvTransfer: {
|
56
29
|
json: {
|
57
30
|
designer: {
|
@@ -134,10 +107,12 @@ declare const _default: {
|
|
134
107
|
dot: boolean;
|
135
108
|
icon: string;
|
136
109
|
to: string;
|
110
|
+
hidden?: undefined;
|
137
111
|
} | {
|
138
112
|
title: string;
|
139
113
|
name: string;
|
140
114
|
expand: boolean;
|
115
|
+
hidden: boolean;
|
141
116
|
icon: string;
|
142
117
|
to: string;
|
143
118
|
isBadge?: undefined;
|
@@ -158,6 +133,12 @@ declare const _default: {
|
|
158
133
|
children?: undefined;
|
159
134
|
})[];
|
160
135
|
};
|
136
|
+
openNames: {
|
137
|
+
mock: ({ node, service }: {
|
138
|
+
node: any;
|
139
|
+
service: any;
|
140
|
+
}) => any[];
|
141
|
+
};
|
161
142
|
accordion: {
|
162
143
|
turnOn({ node }: {
|
163
144
|
node: any;
|
@@ -274,5 +255,12 @@ declare const _default: {
|
|
274
255
|
};
|
275
256
|
};
|
276
257
|
};
|
258
|
+
IvEmpty: {
|
259
|
+
json: {
|
260
|
+
designer: {
|
261
|
+
movein: boolean;
|
262
|
+
};
|
263
|
+
};
|
264
|
+
};
|
277
265
|
};
|
278
266
|
export default _default;
|
@@ -0,0 +1,18 @@
|
|
1
|
+
declare const _default: {
|
2
|
+
IvRegion: {
|
3
|
+
json: {
|
4
|
+
designer: {
|
5
|
+
movein: boolean;
|
6
|
+
};
|
7
|
+
};
|
8
|
+
properties: {
|
9
|
+
value: {
|
10
|
+
mock: ({ node, service }: {
|
11
|
+
node: any;
|
12
|
+
service: any;
|
13
|
+
}) => string[];
|
14
|
+
};
|
15
|
+
};
|
16
|
+
};
|
17
|
+
};
|
18
|
+
export default _default;
|
@@ -7,6 +7,26 @@ declare const _default: {
|
|
7
7
|
beforeUpload: {
|
8
8
|
mock(): any;
|
9
9
|
};
|
10
|
+
text: {
|
11
|
+
turnOn({ node }: {
|
12
|
+
node: any;
|
13
|
+
}): boolean;
|
14
|
+
};
|
15
|
+
buttonType: {
|
16
|
+
turnOn({ node }: {
|
17
|
+
node: any;
|
18
|
+
}): boolean;
|
19
|
+
};
|
20
|
+
dragText: {
|
21
|
+
turnOn({ node }: {
|
22
|
+
node: any;
|
23
|
+
}): boolean;
|
24
|
+
};
|
25
|
+
};
|
26
|
+
json: {
|
27
|
+
designer: {
|
28
|
+
movein: boolean;
|
29
|
+
};
|
10
30
|
};
|
11
31
|
};
|
12
32
|
};
|
@@ -1,19 +1,19 @@
|
|
1
1
|
{
|
2
|
-
"date": "
|
2
|
+
"date": "20230203161500",
|
3
3
|
"distModuleDir": "modules/fly_vue_lcdp_iview",
|
4
4
|
"distModuleDirName": "modules",
|
5
5
|
"dll": true,
|
6
6
|
"moduleDependencieVer": {
|
7
|
-
"@fly-vue/components": "1.
|
8
|
-
"@fly-vue/core": "1.
|
9
|
-
"@fly-vue/fuse-ui-codemirror": "1.
|
10
|
-
"@fly-vue/iview-pro": "1.
|
11
|
-
"@fly-vue/lcdp-designer": "1.
|
12
|
-
"@fly-vue/lcdp-designer-extra": "1.
|
13
|
-
"@fly-vue/lcdp-engine": "1.
|
14
|
-
"@fly-vue/lcdp-orch": "1.
|
15
|
-
"@fly-vue/ufs": "1.
|
16
|
-
"@fly-vue/use": "1.
|
7
|
+
"@fly-vue/components": "1.7.2",
|
8
|
+
"@fly-vue/core": "1.7.2",
|
9
|
+
"@fly-vue/fuse-ui-codemirror": "1.7.0-snapshot",
|
10
|
+
"@fly-vue/iview-pro": "1.7.2",
|
11
|
+
"@fly-vue/lcdp-designer": "1.7.2",
|
12
|
+
"@fly-vue/lcdp-designer-extra": "1.7.2",
|
13
|
+
"@fly-vue/lcdp-engine": "1.7.2",
|
14
|
+
"@fly-vue/lcdp-orch": "1.7.2",
|
15
|
+
"@fly-vue/ufs": "1.7.2",
|
16
|
+
"@fly-vue/use": "1.7.2"
|
17
17
|
},
|
18
18
|
"moduleDependencies": [
|
19
19
|
"@fly-vue/core",
|
@@ -30,5 +30,5 @@
|
|
30
30
|
"name": "@fly-vue/lcdp-iview",
|
31
31
|
"npmPacks": [
|
32
32
|
],
|
33
|
-
"version": "1.
|
33
|
+
"version": "1.7.2"
|
34
34
|
}
|