@fly-vue/lcdp-iview 1.7.0 → 1.7.3
Sign up to get free protection for your applications and to get access to all the features.
- package/@types/module/components/attribute/base-attr-components.d.ts +6 -0
- package/@types/module/components/attribute/prop-value-editor/export-candidate-fields-editor/create-selectdsfields-dialog.d.ts +7 -0
- package/@types/module/components/attribute/prop-value-editor/export-candidate-fields-editor/fields-editor.vue.d.ts +61 -0
- package/@types/module/components/attribute/prop-value-editor/export-candidate-fields-editor/index.vue.d.ts +56 -0
- package/@types/module/components/attribute/prop-value-editor/export-candidate-fields-editor/select-ds-fields.vue.d.ts +24 -0
- package/@types/module/components/attribute/prop-value-editor/index.d.ts +1 -0
- package/@types/module/components/attribute/prop-value-editor/json-editor.vue.d.ts +2 -2
- package/@types/module/components/components/IvTableGrid/index.vue.d.ts +1 -0
- package/@types/module/components/components/IvTableGrid/use-table-events.d.ts +1 -1
- package/@types/module/components/components/base/IvText/index.vue.d.ts +2 -2
- 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/index.d.ts +26 -11
- package/@types/module/schema-extend/components/carousel.d.ts +7 -0
- package/@types/module/schema-extend/components/cascader.d.ts +56 -0
- package/@types/module/schema-extend/components/form.d.ts +92 -0
- package/@types/module/schema-extend/components/grid.d.ts +10 -1
- package/@types/module/schema-extend/components/imagePreview.d.ts +44 -0
- package/@types/module/schema-extend/components/iv-table.d.ts +4 -0
- package/@types/module/schema-extend/components/iv-text.d.ts +12 -0
- package/@types/module/schema-extend/components/ivlink.d.ts +5 -0
- package/@types/module/schema-extend/components/others.d.ts +27 -1
- package/@types/module/schema-extend/components/page.d.ts +18 -0
- package/@types/module/schema-extend/components/region.d.ts +18 -0
- package/@types/module/schema-extend/components/scrollspy.d.ts +6 -0
- package/@types/module/schema-extend/components/tag-select.d.ts +10 -8
- package/@types/module/schema-extend/components/title.d.ts +7 -0
- package/@types/module/schema-extend/components/transfer.d.ts +18 -0
- package/@types/module/schema-extend/utils.d.ts +11 -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.3d277742.css} +1 -1
- package/modules/fly_vue_lcdp_iview/assets/css/lcdp-iview-component.1e9d6064.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.80f9d81a9469d8a73b41.js +1 -0
- package/modules/fly_vue_lcdp_iview/dll.js +11 -9
- package/modules/fly_vue_lcdp_iview/{lcdp-designer-components.1e4c5705803c543cc40c.js → lcdp-designer-components.80f9d81a9469d8a73b41.js} +0 -0
- package/modules/fly_vue_lcdp_iview/lcdp-iview-attrcomponent.80f9d81a9469d8a73b41.js +1 -0
- package/modules/fly_vue_lcdp_iview/lcdp-iview-basecomponent.80f9d81a9469d8a73b41.js +1 -0
- package/modules/fly_vue_lcdp_iview/lcdp-iview-component.80f9d81a9469d8a73b41.js +16 -0
- package/modules/fly_vue_lcdp_iview/{lcdp-renderer-components.1e4c5705803c543cc40c.js → lcdp-renderer-components.80f9d81a9469d8a73b41.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.1e4c5705803c543cc40c.js +0 -1
- package/modules/fly_vue_lcdp_iview/lcdp-iview-attrcomponent.1e4c5705803c543cc40c.js +0 -1
- package/modules/fly_vue_lcdp_iview/lcdp-iview-basecomponent.1e4c5705803c543cc40c.js +0 -1
- package/modules/fly_vue_lcdp_iview/lcdp-iview-component.1e4c5705803c543cc40c.js +0 -1
@@ -4,6 +4,9 @@ declare const _default: {
|
|
4
4
|
props: string[];
|
5
5
|
render(createElement: any, context: any): any;
|
6
6
|
};
|
7
|
+
/**
|
8
|
+
* @description: 数字类型输入框
|
9
|
+
*/
|
7
10
|
/**
|
8
11
|
* @description: 数字类型输入框
|
9
12
|
*/
|
@@ -12,6 +15,9 @@ declare const _default: {
|
|
12
15
|
props: string[];
|
13
16
|
render(createElement: any, context: any): any;
|
14
17
|
};
|
18
|
+
/**
|
19
|
+
* @description: 数字类型输入框
|
20
|
+
*/
|
15
21
|
/**
|
16
22
|
* @description: 布朗类型切换
|
17
23
|
*/
|
@@ -0,0 +1,61 @@
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
2
|
+
value: {
|
3
|
+
type: ArrayConstructor;
|
4
|
+
};
|
5
|
+
propSchema: {
|
6
|
+
type: ObjectConstructor;
|
7
|
+
};
|
8
|
+
model: {
|
9
|
+
type: ObjectConstructor;
|
10
|
+
required: boolean;
|
11
|
+
};
|
12
|
+
nodeModel: {
|
13
|
+
type: ObjectConstructor;
|
14
|
+
};
|
15
|
+
schemas: {
|
16
|
+
type: import("vue").PropType<import("@fly-vue/lcdp-engine").SchemaDefs>;
|
17
|
+
required: boolean;
|
18
|
+
};
|
19
|
+
service: {
|
20
|
+
type: import("vue").PropType<import("@fly-vue/lcdp-designer/@types/ui-designer/common/services").Service>;
|
21
|
+
required: boolean;
|
22
|
+
};
|
23
|
+
node: {
|
24
|
+
type: ObjectConstructor;
|
25
|
+
required: boolean;
|
26
|
+
};
|
27
|
+
}, {
|
28
|
+
innerValue: import("vue").Ref<any[]>;
|
29
|
+
VModelUidKey: string;
|
30
|
+
showSelectDsFieldsDialog: () => void;
|
31
|
+
handleAdd: () => void;
|
32
|
+
dataSource: import("vue").ComputedRef<any>;
|
33
|
+
removeField: (index: any) => void;
|
34
|
+
}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
35
|
+
value: {
|
36
|
+
type: ArrayConstructor;
|
37
|
+
};
|
38
|
+
propSchema: {
|
39
|
+
type: ObjectConstructor;
|
40
|
+
};
|
41
|
+
model: {
|
42
|
+
type: ObjectConstructor;
|
43
|
+
required: boolean;
|
44
|
+
};
|
45
|
+
nodeModel: {
|
46
|
+
type: ObjectConstructor;
|
47
|
+
};
|
48
|
+
schemas: {
|
49
|
+
type: import("vue").PropType<import("@fly-vue/lcdp-engine").SchemaDefs>;
|
50
|
+
required: boolean;
|
51
|
+
};
|
52
|
+
service: {
|
53
|
+
type: import("vue").PropType<import("@fly-vue/lcdp-designer/@types/ui-designer/common/services").Service>;
|
54
|
+
required: boolean;
|
55
|
+
};
|
56
|
+
node: {
|
57
|
+
type: ObjectConstructor;
|
58
|
+
required: boolean;
|
59
|
+
};
|
60
|
+
}>>, {}>;
|
61
|
+
export default _default;
|
@@ -0,0 +1,56 @@
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
2
|
+
value: {
|
3
|
+
type: ObjectConstructor;
|
4
|
+
};
|
5
|
+
propSchema: {
|
6
|
+
type: ObjectConstructor;
|
7
|
+
};
|
8
|
+
model: {
|
9
|
+
type: ObjectConstructor;
|
10
|
+
required: boolean;
|
11
|
+
};
|
12
|
+
nodeModel: {
|
13
|
+
type: ObjectConstructor;
|
14
|
+
};
|
15
|
+
schemas: {
|
16
|
+
type: import("vue").PropType<import("@fly-vue/lcdp-engine").SchemaDefs>;
|
17
|
+
required: boolean;
|
18
|
+
};
|
19
|
+
service: {
|
20
|
+
type: import("vue").PropType<import("@fly-vue/lcdp-designer/@types/ui-designer/common/services").Service>;
|
21
|
+
required: boolean;
|
22
|
+
};
|
23
|
+
node: {
|
24
|
+
type: ObjectConstructor;
|
25
|
+
required: boolean;
|
26
|
+
};
|
27
|
+
}, {
|
28
|
+
innerValue: any;
|
29
|
+
}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
30
|
+
value: {
|
31
|
+
type: ObjectConstructor;
|
32
|
+
};
|
33
|
+
propSchema: {
|
34
|
+
type: ObjectConstructor;
|
35
|
+
};
|
36
|
+
model: {
|
37
|
+
type: ObjectConstructor;
|
38
|
+
required: boolean;
|
39
|
+
};
|
40
|
+
nodeModel: {
|
41
|
+
type: ObjectConstructor;
|
42
|
+
};
|
43
|
+
schemas: {
|
44
|
+
type: import("vue").PropType<import("@fly-vue/lcdp-engine").SchemaDefs>;
|
45
|
+
required: boolean;
|
46
|
+
};
|
47
|
+
service: {
|
48
|
+
type: import("vue").PropType<import("@fly-vue/lcdp-designer/@types/ui-designer/common/services").Service>;
|
49
|
+
required: boolean;
|
50
|
+
};
|
51
|
+
node: {
|
52
|
+
type: ObjectConstructor;
|
53
|
+
required: boolean;
|
54
|
+
};
|
55
|
+
}>>, {}>;
|
56
|
+
export default _default;
|
@@ -0,0 +1,24 @@
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
2
|
+
dataSource: any;
|
3
|
+
initialSelected: any;
|
4
|
+
}, {
|
5
|
+
__sfc: boolean;
|
6
|
+
props: {
|
7
|
+
dataSource: any;
|
8
|
+
initialSelected: string[];
|
9
|
+
};
|
10
|
+
emit: (event: 'on-selected-changed', selectedFields: any) => void;
|
11
|
+
computeDsFields: () => any[];
|
12
|
+
dsFields: import("vue").Ref<any[]>;
|
13
|
+
selectedFields: import("vue").Ref<any[]>;
|
14
|
+
selectAllDsFields: import("vue").Ref<boolean>;
|
15
|
+
onSelectAllDsFields: (checked: any) => void;
|
16
|
+
onSelectField: (checked: any) => void;
|
17
|
+
}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, "on-selected-changed"[], string, Readonly<import("vue").ExtractPropTypes<{
|
18
|
+
dataSource: any;
|
19
|
+
initialSelected: any;
|
20
|
+
}>>, {
|
21
|
+
dataSource: any;
|
22
|
+
initialSelected: any;
|
23
|
+
}>;
|
24
|
+
export default _default;
|
@@ -5,6 +5,7 @@ declare const _default: {
|
|
5
5
|
ObjectEditor: () => Promise<typeof import("./object-editor.vue")>;
|
6
6
|
ArrayEditor: () => Promise<typeof import("./array-editor/index.vue")>;
|
7
7
|
NameValuesEditor: () => Promise<typeof import("./name-values-editor.vue")>;
|
8
|
+
ExportCandidateFieldsEditor: () => Promise<typeof import("./export-candidate-fields-editor/index.vue")>;
|
8
9
|
MapEditor: () => Promise<typeof import("*.vue")>;
|
9
10
|
};
|
10
11
|
export default _default;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{
|
2
2
|
value: {
|
3
|
-
type: (
|
3
|
+
type: (NumberConstructor | StringConstructor | ObjectConstructor | ArrayConstructor)[];
|
4
4
|
};
|
5
5
|
rows: {
|
6
6
|
type: (NumberConstructor | StringConstructor)[];
|
@@ -33,7 +33,7 @@ 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: (NumberConstructor | StringConstructor | ObjectConstructor | ArrayConstructor)[];
|
37
37
|
};
|
38
38
|
rows: {
|
39
39
|
type: (NumberConstructor | StringConstructor)[];
|
@@ -166,6 +166,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
166
166
|
default: number;
|
167
167
|
};
|
168
168
|
}, {
|
169
|
+
ivTableGridRef: import("vue").Ref<string>;
|
169
170
|
allTableColumn: import("vue").ComputedRef<any[]>;
|
170
171
|
tableColumns: import("vue").ComputedRef<any[]>;
|
171
172
|
filterTableColumn: import("vue").Ref<any[]>;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { TablePager } from './use-pager-events';
|
2
|
-
export declare function useTableEvents(props: any, pager: TablePager): {
|
2
|
+
export declare function useTableEvents(props: any, pager: TablePager, ivTableGridRef: any): {
|
3
3
|
selection: any;
|
4
4
|
onSelectionChange: (_selection: any) => void;
|
5
5
|
onSearch: (resetPage?: boolean, immediate?: boolean) => void;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{
|
2
2
|
text: {
|
3
|
-
type: StringConstructor;
|
3
|
+
type: (BooleanConstructor | NumberConstructor | StringConstructor | ObjectConstructor | ArrayConstructor)[];
|
4
4
|
};
|
5
5
|
showTitle: {
|
6
6
|
type: BooleanConstructor;
|
@@ -26,7 +26,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
26
26
|
};
|
27
27
|
}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
28
28
|
text: {
|
29
|
-
type: StringConstructor;
|
29
|
+
type: (BooleanConstructor | NumberConstructor | StringConstructor | ObjectConstructor | ArrayConstructor)[];
|
30
30
|
};
|
31
31
|
showTitle: {
|
32
32
|
type: BooleanConstructor;
|
@@ -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
|
};
|
@@ -9,6 +9,7 @@ declare const _default: {
|
|
9
9
|
ObjectEditor: () => Promise<typeof import("./attribute/prop-value-editor/object-editor.vue")>;
|
10
10
|
ArrayEditor: () => Promise<typeof import("./attribute/prop-value-editor/array-editor/index.vue")>;
|
11
11
|
NameValuesEditor: () => Promise<typeof import("./attribute/prop-value-editor/name-values-editor.vue")>;
|
12
|
+
ExportCandidateFieldsEditor: () => Promise<typeof import("./attribute/prop-value-editor/export-candidate-fields-editor/index.vue")>;
|
12
13
|
MapEditor: () => Promise<typeof import("*.vue")>;
|
13
14
|
AutoCompleteAttrEdit: () => Promise<typeof import("*.vue")>;
|
14
15
|
ColSelectAttrEdit: () => Promise<typeof import("*.vue")>;
|
@@ -100,9 +101,14 @@ declare const _default: {
|
|
100
101
|
IvCheckboxGroup: () => Promise<any>;
|
101
102
|
IvBackTop: () => Promise<any>;
|
102
103
|
Input: () => Promise<typeof import("*.vue")>;
|
104
|
+
Tabs: () => Promise<typeof import("*.vue")>;
|
103
105
|
IvDrawer: () => Promise<any>;
|
106
|
+
Cascader: () => Promise<typeof import("*.vue")>;
|
104
107
|
IvCrud: () => Promise<typeof import("*.vue")>;
|
105
108
|
IvTableGrid: import("vue").DefineComponent<{
|
109
|
+
/**
|
110
|
+
* @description: // 基础组件
|
111
|
+
*/
|
106
112
|
pagerProps: {
|
107
113
|
type: import("vue").PropType<import("./components/IvTableGrid/pager-props").PagerProps>;
|
108
114
|
};
|
@@ -176,13 +182,13 @@ declare const _default: {
|
|
176
182
|
default: boolean;
|
177
183
|
};
|
178
184
|
border: {
|
179
|
-
/**
|
180
|
-
* @description: // 基础组件
|
181
|
-
*/
|
182
185
|
type: BooleanConstructor;
|
183
186
|
default: boolean;
|
184
187
|
};
|
185
188
|
showHeader: {
|
189
|
+
/**
|
190
|
+
* @description: // 基础组件
|
191
|
+
*/
|
186
192
|
type: BooleanConstructor;
|
187
193
|
default: boolean;
|
188
194
|
};
|
@@ -195,6 +201,9 @@ declare const _default: {
|
|
195
201
|
default(): string;
|
196
202
|
};
|
197
203
|
context: {
|
204
|
+
/**
|
205
|
+
* @description: // 基础组件
|
206
|
+
*/
|
198
207
|
type: ObjectConstructor;
|
199
208
|
};
|
200
209
|
noDataText: {
|
@@ -267,6 +276,7 @@ declare const _default: {
|
|
267
276
|
default: number;
|
268
277
|
};
|
269
278
|
}, {
|
279
|
+
ivTableGridRef: import("vue").Ref<string>;
|
270
280
|
allTableColumn: import("vue").ComputedRef<any[]>;
|
271
281
|
tableColumns: import("vue").ComputedRef<any[]>;
|
272
282
|
filterTableColumn: import("vue").Ref<any[]>;
|
@@ -307,6 +317,9 @@ declare const _default: {
|
|
307
317
|
}, {}, {}, {
|
308
318
|
onRowClick(selection: any, index: any): void;
|
309
319
|
}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
320
|
+
/**
|
321
|
+
* @description: // 基础组件
|
322
|
+
*/
|
310
323
|
pagerProps: {
|
311
324
|
type: import("vue").PropType<import("./components/IvTableGrid/pager-props").PagerProps>;
|
312
325
|
};
|
@@ -380,13 +393,13 @@ declare const _default: {
|
|
380
393
|
default: boolean;
|
381
394
|
};
|
382
395
|
border: {
|
383
|
-
/**
|
384
|
-
* @description: // 基础组件
|
385
|
-
*/
|
386
396
|
type: BooleanConstructor;
|
387
397
|
default: boolean;
|
388
398
|
};
|
389
399
|
showHeader: {
|
400
|
+
/**
|
401
|
+
* @description: // 基础组件
|
402
|
+
*/
|
390
403
|
type: BooleanConstructor;
|
391
404
|
default: boolean;
|
392
405
|
};
|
@@ -399,6 +412,9 @@ declare const _default: {
|
|
399
412
|
default(): string;
|
400
413
|
};
|
401
414
|
context: {
|
415
|
+
/**
|
416
|
+
* @description: // 基础组件
|
417
|
+
*/
|
402
418
|
type: ObjectConstructor;
|
403
419
|
};
|
404
420
|
noDataText: {
|
@@ -503,14 +519,11 @@ declare const _default: {
|
|
503
519
|
IamMemberSelect: () => Promise<typeof import("*.vue")>;
|
504
520
|
IamOrgSelect: () => Promise<typeof import("*.vue")>;
|
505
521
|
IamOrgTree: () => Promise<typeof import("*.vue")>;
|
506
|
-
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
522
|
DynamicInput: () => Promise<typeof import("./components/lab-component/dynamic-input/index.vue")>;
|
512
523
|
IvScrollSpy: () => Promise<typeof import("*.vue")>;
|
513
524
|
IvScrollSpyItem: () => Promise<typeof import("*.vue")>;
|
525
|
+
IvImagePreview: () => Promise<typeof import("*.vue")>;
|
526
|
+
IvRegion: () => Promise<typeof import("*.vue")>;
|
514
527
|
IvContainer: () => Promise<any>;
|
515
528
|
IvDiv: () => Promise<any>;
|
516
529
|
IvFlex: () => Promise<typeof import("*.vue")>;
|
@@ -524,12 +537,14 @@ declare const _default: {
|
|
524
537
|
IvTitle: () => Promise<any>;
|
525
538
|
IvLiList: () => Promise<any>;
|
526
539
|
IvLi: () => Promise<typeof import("*.vue")>;
|
540
|
+
IvEmpty: () => Promise<any>;
|
527
541
|
IvLayoutContainer: () => Promise<typeof import("*.vue")>;
|
528
542
|
IvLayout: () => Promise<any>;
|
529
543
|
IvHeader: () => Promise<any>;
|
530
544
|
IvSider: () => Promise<any>;
|
531
545
|
IvContent: () => Promise<any>;
|
532
546
|
IvFooter: () => Promise<any>;
|
547
|
+
IvGrid: () => Promise<any>;
|
533
548
|
IvTableColumn: any;
|
534
549
|
IvTableGridColumn: any;
|
535
550
|
IvForm: any;
|
@@ -0,0 +1,56 @@
|
|
1
|
+
declare const _default: {
|
2
|
+
Cascader: {
|
3
|
+
properties: {
|
4
|
+
data: {
|
5
|
+
mock: ({ node, service }: {
|
6
|
+
node: any;
|
7
|
+
service: any;
|
8
|
+
}) => any[];
|
9
|
+
default: ({
|
10
|
+
value: string;
|
11
|
+
label: string;
|
12
|
+
loading: boolean;
|
13
|
+
children: {
|
14
|
+
value: string;
|
15
|
+
label: string;
|
16
|
+
}[];
|
17
|
+
} | {
|
18
|
+
value: string;
|
19
|
+
label: string;
|
20
|
+
loading: boolean;
|
21
|
+
children: {
|
22
|
+
value: string;
|
23
|
+
label: string;
|
24
|
+
children: {
|
25
|
+
value: string;
|
26
|
+
label: string;
|
27
|
+
}[];
|
28
|
+
}[];
|
29
|
+
})[];
|
30
|
+
};
|
31
|
+
value: {
|
32
|
+
mock: ({ node, service }: {
|
33
|
+
node: any;
|
34
|
+
service: any;
|
35
|
+
}) => any[];
|
36
|
+
};
|
37
|
+
loadData: {
|
38
|
+
mock: ({ node, service }: {
|
39
|
+
node: any;
|
40
|
+
service: any;
|
41
|
+
}) => Function;
|
42
|
+
};
|
43
|
+
notFoundText: {
|
44
|
+
turnOn({ model }: {
|
45
|
+
model: any;
|
46
|
+
}): boolean;
|
47
|
+
};
|
48
|
+
};
|
49
|
+
json: {
|
50
|
+
designer: {
|
51
|
+
movein: boolean;
|
52
|
+
};
|
53
|
+
};
|
54
|
+
};
|
55
|
+
};
|
56
|
+
export default _default;
|
@@ -1,6 +1,13 @@
|
|
1
1
|
declare const _default: {
|
2
2
|
IvForm: {
|
3
3
|
properties: {
|
4
|
+
labelWidth: {
|
5
|
+
mock: ({ node, service }: {
|
6
|
+
node: any;
|
7
|
+
service: any;
|
8
|
+
}) => any;
|
9
|
+
default: number;
|
10
|
+
};
|
4
11
|
model: {
|
5
12
|
mock(): {};
|
6
13
|
};
|
@@ -19,6 +26,14 @@ declare const _default: {
|
|
19
26
|
json: {};
|
20
27
|
};
|
21
28
|
IvFormItem: {
|
29
|
+
properties: {
|
30
|
+
labelWidth: {
|
31
|
+
mock: ({ node, service }: {
|
32
|
+
node: any;
|
33
|
+
service: any;
|
34
|
+
}) => any;
|
35
|
+
};
|
36
|
+
};
|
22
37
|
json: {
|
23
38
|
designer: {
|
24
39
|
movein: boolean;
|
@@ -34,6 +49,14 @@ declare const _default: {
|
|
34
49
|
}): void;
|
35
50
|
};
|
36
51
|
IvFormInput: {
|
52
|
+
properties: {
|
53
|
+
labelWidth: {
|
54
|
+
mock: ({ node, service }: {
|
55
|
+
node: any;
|
56
|
+
service: any;
|
57
|
+
}) => any;
|
58
|
+
};
|
59
|
+
};
|
37
60
|
json: {
|
38
61
|
designer: {
|
39
62
|
movein: boolean;
|
@@ -49,6 +72,14 @@ declare const _default: {
|
|
49
72
|
}): void;
|
50
73
|
};
|
51
74
|
IvFormSelect: {
|
75
|
+
properties: {
|
76
|
+
labelWidth: {
|
77
|
+
mock: ({ node, service }: {
|
78
|
+
node: any;
|
79
|
+
service: any;
|
80
|
+
}) => any;
|
81
|
+
};
|
82
|
+
};
|
52
83
|
json: {
|
53
84
|
designer: {
|
54
85
|
movein: boolean;
|
@@ -64,6 +95,14 @@ declare const _default: {
|
|
64
95
|
}): void;
|
65
96
|
};
|
66
97
|
IvFormCheckbox: {
|
98
|
+
properties: {
|
99
|
+
labelWidth: {
|
100
|
+
mock: ({ node, service }: {
|
101
|
+
node: any;
|
102
|
+
service: any;
|
103
|
+
}) => any;
|
104
|
+
};
|
105
|
+
};
|
67
106
|
json: {
|
68
107
|
designer: {
|
69
108
|
movein: boolean;
|
@@ -79,6 +118,14 @@ declare const _default: {
|
|
79
118
|
}): void;
|
80
119
|
};
|
81
120
|
IvFormDatePicker: {
|
121
|
+
properties: {
|
122
|
+
labelWidth: {
|
123
|
+
mock: ({ node, service }: {
|
124
|
+
node: any;
|
125
|
+
service: any;
|
126
|
+
}) => any;
|
127
|
+
};
|
128
|
+
};
|
82
129
|
json: {
|
83
130
|
designer: {
|
84
131
|
movein: boolean;
|
@@ -94,6 +141,14 @@ declare const _default: {
|
|
94
141
|
}): void;
|
95
142
|
};
|
96
143
|
IvFormInputNumber: {
|
144
|
+
properties: {
|
145
|
+
labelWidth: {
|
146
|
+
mock: ({ node, service }: {
|
147
|
+
node: any;
|
148
|
+
service: any;
|
149
|
+
}) => any;
|
150
|
+
};
|
151
|
+
};
|
97
152
|
json: {
|
98
153
|
designer: {
|
99
154
|
movein: boolean;
|
@@ -109,6 +164,14 @@ declare const _default: {
|
|
109
164
|
}): void;
|
110
165
|
};
|
111
166
|
IvFormRadio: {
|
167
|
+
properties: {
|
168
|
+
labelWidth: {
|
169
|
+
mock: ({ node, service }: {
|
170
|
+
node: any;
|
171
|
+
service: any;
|
172
|
+
}) => any;
|
173
|
+
};
|
174
|
+
};
|
112
175
|
json: {
|
113
176
|
designer: {
|
114
177
|
movein: boolean;
|
@@ -124,6 +187,14 @@ declare const _default: {
|
|
124
187
|
}): void;
|
125
188
|
};
|
126
189
|
IvFormRate: {
|
190
|
+
properties: {
|
191
|
+
labelWidth: {
|
192
|
+
mock: ({ node, service }: {
|
193
|
+
node: any;
|
194
|
+
service: any;
|
195
|
+
}) => any;
|
196
|
+
};
|
197
|
+
};
|
127
198
|
json: {
|
128
199
|
designer: {
|
129
200
|
movein: boolean;
|
@@ -139,6 +210,14 @@ declare const _default: {
|
|
139
210
|
}): void;
|
140
211
|
};
|
141
212
|
IvFormSwitch: {
|
213
|
+
properties: {
|
214
|
+
labelWidth: {
|
215
|
+
mock: ({ node, service }: {
|
216
|
+
node: any;
|
217
|
+
service: any;
|
218
|
+
}) => any;
|
219
|
+
};
|
220
|
+
};
|
142
221
|
json: {
|
143
222
|
designer: {
|
144
223
|
movein: boolean;
|
@@ -154,6 +233,14 @@ declare const _default: {
|
|
154
233
|
}): void;
|
155
234
|
};
|
156
235
|
IvFormTimePicker: {
|
236
|
+
properties: {
|
237
|
+
labelWidth: {
|
238
|
+
mock: ({ node, service }: {
|
239
|
+
node: any;
|
240
|
+
service: any;
|
241
|
+
}) => any;
|
242
|
+
};
|
243
|
+
};
|
157
244
|
json: {
|
158
245
|
designer: {
|
159
246
|
movein: boolean;
|
@@ -363,6 +450,11 @@ declare const _default: {
|
|
363
450
|
node: any;
|
364
451
|
}): boolean;
|
365
452
|
};
|
453
|
+
size: {
|
454
|
+
turnOn({ node }: {
|
455
|
+
node: any;
|
456
|
+
}): boolean;
|
457
|
+
};
|
366
458
|
};
|
367
459
|
};
|
368
460
|
'Extendable.FormItemInputNumber': {
|