@fly-vue/lcdp-iview 1.8.10 → 1.8.11-1
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/designer/prop-value-editor/var-input/index.vue.d.ts +2 -2
- package/@types/module/components/attribute/prop-value-editor/json-editor.vue.d.ts +4 -4
- package/@types/module/components/components/IvTableGrid/index.vue.d.ts +8 -8
- package/@types/module/components/components/IvTableGrid/table-props.d.ts +3 -3
- package/@types/module/components/components/base/IvText/index.vue.d.ts +2 -2
- package/@types/module/components/components/iam/mixins/build-query-methods.d.ts +13 -13
- package/@types/module/components/for-renderer/event-container/use-form.d.ts +2 -1
- package/@types/module/components/for-renderer/layout/iv-trigger-container.vue.d.ts +1 -1
- package/@types/module/components/index.d.ts +1 -1
- package/bingo-builder-manifest.json +13 -13
- package/index.js +2 -2
- package/modules/fly_vue_lcdp_iview/chunk-732b533d.bdf1b81b7dfd51d6107a.js +1 -0
- package/modules/fly_vue_lcdp_iview/dll.js +3 -3
- package/modules/fly_vue_lcdp_iview/lcdp-designer-components.bdf1b81b7dfd51d6107a.js +1 -0
- package/modules/fly_vue_lcdp_iview/lcdp-iview-component.bdf1b81b7dfd51d6107a.js +1 -0
- package/modules/fly_vue_lcdp_iview/{lcdp-renderer-components.dea90c4bd583596a1951.js → lcdp-renderer-components.bdf1b81b7dfd51d6107a.js} +1 -1
- package/modules/fly_vue_lcdp_iview/vendors~lcdp-renderer-components.bdf1b81b7dfd51d6107a.js +15 -0
- package/package.json +15 -15
- package/modules/fly_vue_lcdp_iview/chunk-732b533d.dea90c4bd583596a1951.js +0 -1
- package/modules/fly_vue_lcdp_iview/lcdp-designer-components.dea90c4bd583596a1951.js +0 -1
- package/modules/fly_vue_lcdp_iview/lcdp-iview-component.dea90c4bd583596a1951.js +0 -1
- package/modules/fly_vue_lcdp_iview/vendors~lcdp-renderer-components.dea90c4bd583596a1951.js +0 -15
- /package/modules/fly_vue_lcdp_iview/{lcdp-iview-attrcomponent.dea90c4bd583596a1951.js → lcdp-iview-attrcomponent.bdf1b81b7dfd51d6107a.js} +0 -0
- /package/modules/fly_vue_lcdp_iview/{lcdp-iview-basecomponent.dea90c4bd583596a1951.js → lcdp-iview-basecomponent.bdf1b81b7dfd51d6107a.js} +0 -0
- /package/modules/fly_vue_lcdp_iview/{lcdp-iview-component-ice.dea90c4bd583596a1951.js → lcdp-iview-component-ice.bdf1b81b7dfd51d6107a.js} +0 -0
- /package/modules/fly_vue_lcdp_iview/{lcdp-iview-component-region.dea90c4bd583596a1951.js → lcdp-iview-component-region.bdf1b81b7dfd51d6107a.js} +0 -0
- /package/modules/fly_vue_lcdp_iview/{vendors~lcdp-iview-attrcomponent~lcdp-iview-basecomponent.dea90c4bd583596a1951.js → vendors~lcdp-iview-attrcomponent~lcdp-iview-basecomponent.bdf1b81b7dfd51d6107a.js} +0 -0
- /package/modules/fly_vue_lcdp_iview/{vendors~lcdp-iview-component-ice.dea90c4bd583596a1951.js → vendors~lcdp-iview-component-ice.bdf1b81b7dfd51d6107a.js} +0 -0
- /package/modules/fly_vue_lcdp_iview/{vendors~lcdp-iview-component.dea90c4bd583596a1951.js → vendors~lcdp-iview-component.bdf1b81b7dfd51d6107a.js} +0 -0
package/@types/module/components/attribute/designer/prop-value-editor/var-input/index.vue.d.ts
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
import { PropType } from 'vue';
|
2
2
|
declare const _default: import("vue").DefineComponent<{
|
3
3
|
value: {
|
4
|
-
type: (BooleanConstructor |
|
4
|
+
type: (BooleanConstructor | StringConstructor | ObjectConstructor | NumberConstructor | ArrayConstructor)[];
|
5
5
|
};
|
6
6
|
showBindInput: {
|
7
7
|
type: BooleanConstructor;
|
@@ -37,7 +37,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
37
37
|
isValueExpr(value: any): any;
|
38
38
|
}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
39
39
|
value: {
|
40
|
-
type: (BooleanConstructor |
|
40
|
+
type: (BooleanConstructor | StringConstructor | ObjectConstructor | NumberConstructor | ArrayConstructor)[];
|
41
41
|
};
|
42
42
|
showBindInput: {
|
43
43
|
type: BooleanConstructor;
|
@@ -1,9 +1,9 @@
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{
|
2
2
|
value: {
|
3
|
-
type: (
|
3
|
+
type: (StringConstructor | ObjectConstructor | NumberConstructor | ArrayConstructor)[];
|
4
4
|
};
|
5
5
|
rows: {
|
6
|
-
type: (
|
6
|
+
type: (StringConstructor | NumberConstructor)[];
|
7
7
|
default: number;
|
8
8
|
};
|
9
9
|
propSchema: {
|
@@ -33,10 +33,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
33
33
|
hasError: import("vue").Ref<boolean>;
|
34
34
|
}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
35
35
|
value: {
|
36
|
-
type: (
|
36
|
+
type: (StringConstructor | ObjectConstructor | NumberConstructor | ArrayConstructor)[];
|
37
37
|
};
|
38
38
|
rows: {
|
39
|
-
type: (
|
39
|
+
type: (StringConstructor | NumberConstructor)[];
|
40
40
|
default: number;
|
41
41
|
};
|
42
42
|
propSchema: {
|
@@ -75,13 +75,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
75
75
|
validator(value: any): boolean;
|
76
76
|
};
|
77
77
|
width: {
|
78
|
-
type: (
|
78
|
+
type: (StringConstructor | NumberConstructor)[];
|
79
79
|
};
|
80
80
|
height: {
|
81
|
-
type: (
|
81
|
+
type: (StringConstructor | NumberConstructor)[];
|
82
82
|
};
|
83
83
|
maxHeight: {
|
84
|
-
type: (
|
84
|
+
type: (StringConstructor | NumberConstructor)[];
|
85
85
|
};
|
86
86
|
stripe: {
|
87
87
|
type: BooleanConstructor;
|
@@ -176,7 +176,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
176
176
|
default: string;
|
177
177
|
};
|
178
178
|
padding: {
|
179
|
-
type: (
|
179
|
+
type: (StringConstructor | NumberConstructor)[];
|
180
180
|
default: number;
|
181
181
|
};
|
182
182
|
}, {
|
@@ -308,13 +308,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
308
308
|
validator(value: any): boolean;
|
309
309
|
};
|
310
310
|
width: {
|
311
|
-
type: (
|
311
|
+
type: (StringConstructor | NumberConstructor)[];
|
312
312
|
};
|
313
313
|
height: {
|
314
|
-
type: (
|
314
|
+
type: (StringConstructor | NumberConstructor)[];
|
315
315
|
};
|
316
316
|
maxHeight: {
|
317
|
-
type: (
|
317
|
+
type: (StringConstructor | NumberConstructor)[];
|
318
318
|
};
|
319
319
|
stripe: {
|
320
320
|
type: BooleanConstructor;
|
@@ -409,7 +409,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
409
409
|
default: string;
|
410
410
|
};
|
411
411
|
padding: {
|
412
|
-
type: (
|
412
|
+
type: (StringConstructor | NumberConstructor)[];
|
413
413
|
default: number;
|
414
414
|
};
|
415
415
|
}>>, {
|
@@ -3,13 +3,13 @@ declare const _default: {
|
|
3
3
|
validator(value: any): boolean;
|
4
4
|
};
|
5
5
|
width: {
|
6
|
-
type: (
|
6
|
+
type: (StringConstructor | NumberConstructor)[];
|
7
7
|
};
|
8
8
|
height: {
|
9
|
-
type: (
|
9
|
+
type: (StringConstructor | NumberConstructor)[];
|
10
10
|
};
|
11
11
|
maxHeight: {
|
12
|
-
type: (
|
12
|
+
type: (StringConstructor | NumberConstructor)[];
|
13
13
|
};
|
14
14
|
stripe: {
|
15
15
|
type: BooleanConstructor;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{
|
2
2
|
text: {
|
3
|
-
type: (
|
3
|
+
type: (StringConstructor | NumberConstructor)[];
|
4
4
|
};
|
5
5
|
showTitle: {
|
6
6
|
type: BooleanConstructor;
|
@@ -28,7 +28,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
28
28
|
};
|
29
29
|
}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
30
30
|
text: {
|
31
|
-
type: (
|
31
|
+
type: (StringConstructor | NumberConstructor)[];
|
32
32
|
};
|
33
33
|
showTitle: {
|
34
34
|
type: BooleanConstructor;
|
@@ -21,19 +21,6 @@ declare const _default: {
|
|
21
21
|
};
|
22
22
|
methods: {
|
23
23
|
buildQueryMethods(globalQueryOptions?: any, globalConfig?: any): {
|
24
|
-
queryRootOrg: () => any;
|
25
|
-
queryOrgByParent: (parentId: any) => any;
|
26
|
-
queryOrgByKeyword: (keyword: any, orgIds: any) => Promise<unknown>;
|
27
|
-
queryOrgByIds: (orgIds: any) => any;
|
28
|
-
queryUserByKeyword: (keyword: any, userIds: any) => Promise<unknown>;
|
29
|
-
queryUserByIds: (userIds: any) => any;
|
30
|
-
pageQueryUserByOrg: (orgIds: any, userIds: any, pageParams: any) => Promise<unknown>;
|
31
|
-
pageQueryUserByKeyword: (queryKeyword: any, userIds: any, pageParams: any) => Promise<unknown>;
|
32
|
-
getOrgIdField: () => any;
|
33
|
-
getOrgParentField: () => any;
|
34
|
-
userOptions: any;
|
35
|
-
orgOptions: any;
|
36
|
-
} | {
|
37
24
|
queryExternalOrg: () => any;
|
38
25
|
queryRootOrg: () => any;
|
39
26
|
queryRootOrgByUrl: (url: any, rebuildOptions?: boolean, filters?: string) => Promise<{
|
@@ -53,6 +40,19 @@ declare const _default: {
|
|
53
40
|
getOrgParentField: () => any;
|
54
41
|
userOptions: any;
|
55
42
|
orgOptions: any;
|
43
|
+
} | {
|
44
|
+
queryRootOrg: () => any;
|
45
|
+
queryOrgByParent: (parentId: any) => any;
|
46
|
+
queryOrgByKeyword: (keyword: any, orgIds: any) => Promise<unknown>;
|
47
|
+
queryOrgByIds: (orgIds: any) => any;
|
48
|
+
queryUserByKeyword: (keyword: any, userIds: any) => Promise<unknown>;
|
49
|
+
queryUserByIds: (userIds: any) => any;
|
50
|
+
pageQueryUserByOrg: (orgIds: any, userIds: any, pageParams: any) => Promise<unknown>;
|
51
|
+
pageQueryUserByKeyword: (queryKeyword: any, userIds: any, pageParams: any) => Promise<unknown>;
|
52
|
+
getOrgIdField: () => any;
|
53
|
+
getOrgParentField: () => any;
|
54
|
+
userOptions: any;
|
55
|
+
orgOptions: any;
|
56
56
|
};
|
57
57
|
validateProps(queryMethods: any): void;
|
58
58
|
};
|
@@ -1,9 +1,10 @@
|
|
1
1
|
import { LcdpRenderContext } from '@fly-vue/lcdp-engine';
|
2
2
|
import { FormEventContainerContext } from './form-context';
|
3
3
|
export declare function useForm(renderContext: LcdpRenderContext, formDataKey: string, ctx: FormEventContainerContext): {
|
4
|
-
initForm: (
|
4
|
+
initForm: ($args: {
|
5
5
|
beforeInit: any;
|
6
6
|
afterInit: any;
|
7
|
+
contextKey?: string;
|
7
8
|
}) => Promise<void>;
|
8
9
|
validateForm: () => Promise<boolean>;
|
9
10
|
watchFormData: () => void;
|
@@ -1,23 +1,23 @@
|
|
1
1
|
{
|
2
|
-
"date": "
|
2
|
+
"date": "20250328112410",
|
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.
|
8
|
-
"@fly-vue/core": "1.8.
|
7
|
+
"@fly-vue/components": "1.8.11-1",
|
8
|
+
"@fly-vue/core": "1.8.11-1",
|
9
9
|
"@fly-vue/fuse-ui-codemirror": "1.8.0-snapshot",
|
10
|
-
"@fly-vue/iview-pro": "1.8.
|
10
|
+
"@fly-vue/iview-pro": "1.8.11-1",
|
11
11
|
"@fly-vue/lcdp-api": "1.8.0-snapshot",
|
12
|
-
"@fly-vue/lcdp-designer": "1.8.
|
13
|
-
"@fly-vue/lcdp-designer-extra": "1.8.
|
14
|
-
"@fly-vue/lcdp-engine": "1.8.
|
15
|
-
"@fly-vue/lcdp-micro": "1.8.
|
16
|
-
"@fly-vue/lcdp-orch": "1.8.
|
17
|
-
"@fly-vue/lcdp-schema": "1.8.
|
12
|
+
"@fly-vue/lcdp-designer": "1.8.11-1",
|
13
|
+
"@fly-vue/lcdp-designer-extra": "1.8.11-1",
|
14
|
+
"@fly-vue/lcdp-engine": "1.8.11-1",
|
15
|
+
"@fly-vue/lcdp-micro": "1.8.11-1",
|
16
|
+
"@fly-vue/lcdp-orch": "1.8.11-1",
|
17
|
+
"@fly-vue/lcdp-schema": "1.8.11-1",
|
18
18
|
"@fly-vue/loader": "1.8.0-snapshot",
|
19
|
-
"@fly-vue/ufs": "1.8.
|
20
|
-
"@fly-vue/use": "1.8.
|
19
|
+
"@fly-vue/ufs": "1.8.11-1",
|
20
|
+
"@fly-vue/use": "1.8.11-1",
|
21
21
|
"view-design": "4.7.0"
|
22
22
|
},
|
23
23
|
"moduleDependencies": [
|
@@ -40,5 +40,5 @@
|
|
40
40
|
"name": "@fly-vue/lcdp-iview",
|
41
41
|
"npmPacks": [
|
42
42
|
],
|
43
|
-
"version": "1.8.
|
43
|
+
"version": "1.8.11-1"
|
44
44
|
}
|