@fly-vue/lcdp-iview 1.7.3 → 1.7.5
Sign up to get free protection for your applications and to get access to all the features.
- package/@types/module/action-nodes/impl/data-source-data-reload.d.ts +5 -2
- package/@types/module/action-nodes/service-type-transport.d.ts +7 -0
- package/@types/module/components/attribute/base-attr-components.d.ts +0 -3
- package/@types/module/components/attribute/designer/prop-value-editor/var-input/index.vue.d.ts +6 -0
- package/@types/module/components/attribute/prop-value-editor/index.d.ts +1 -0
- package/@types/module/components/components/IvTableGrid/index.vue.d.ts +5 -3
- package/@types/module/components/components/base/IvText/index.vue.d.ts +3 -3
- package/@types/module/components/components/iam/lib/query-methods-builder.d.ts +1 -0
- package/@types/module/components/components/iam/mixins/build-query-methods.d.ts +1 -0
- package/@types/module/components/components/iview.d.ts +1 -0
- package/@types/module/components/for-renderer/inline-renderer/index.vue.d.ts +27 -0
- package/@types/module/components/index.d.ts +16 -3
- package/@types/module/index.d.ts +1 -0
- package/@types/module/schema-extend/components/cascader.d.ts +6 -0
- package/@types/module/schema-extend/components/color-picker.d.ts +4 -0
- package/@types/module/schema-extend/components/divider.d.ts +22 -0
- package/@types/module/schema-extend/components/drawer.d.ts +15 -0
- package/@types/module/schema-extend/components/ellipsis.d.ts +4 -4
- package/@types/module/schema-extend/components/form.d.ts +91 -9
- package/@types/module/schema-extend/components/globalfooter.d.ts +6 -0
- package/@types/module/schema-extend/components/iam-org-tree.d.ts +10 -0
- package/@types/module/schema-extend/components/imagePreview.d.ts +6 -0
- package/@types/module/schema-extend/components/iv-table.d.ts +0 -1
- package/@types/module/schema-extend/components/layout.d.ts +7 -0
- package/@types/module/schema-extend/components/others.d.ts +43 -0
- package/@types/module/schema-extend/components/scrollspy.d.ts +3 -3
- package/@types/module/schema-extend/components/tag-select.d.ts +11 -0
- package/@types/module/schema-extend/components/transfer.d.ts +6 -0
- package/@types/module/schema-extend/components/tree.d.ts +6 -0
- package/bingo-builder-manifest.json +18 -12
- package/index.js +4 -4
- package/modules/fly_vue_lcdp_iview/assets/css/app.css +2 -2
- package/modules/fly_vue_lcdp_iview/assets/css/lcdp-iview-attrcomponent.5b64e92e.css +1 -0
- package/modules/fly_vue_lcdp_iview/assets/css/lcdp-iview-component.28c2f15b.css +1 -0
- package/modules/fly_vue_lcdp_iview/chunk-732b533d.e6ed3307f2094e1adbff.js +1 -0
- package/modules/fly_vue_lcdp_iview/dll.js +10 -10
- package/modules/fly_vue_lcdp_iview/lcdp-iview-attrcomponent.e6ed3307f2094e1adbff.js +1 -0
- package/modules/fly_vue_lcdp_iview/lcdp-iview-basecomponent.e6ed3307f2094e1adbff.js +1 -0
- package/modules/fly_vue_lcdp_iview/{lcdp-iview-component.80f9d81a9469d8a73b41.js → lcdp-iview-component.e6ed3307f2094e1adbff.js} +2 -2
- package/modules/fly_vue_lcdp_iview/lcdp-renderer-components.e6ed3307f2094e1adbff.js +1 -0
- package/package.json +14 -11
- package/modules/fly_vue_lcdp_iview/assets/css/lcdp-iview-attrcomponent.3d277742.css +0 -1
- package/modules/fly_vue_lcdp_iview/assets/css/lcdp-iview-component.1e9d6064.css +0 -1
- package/modules/fly_vue_lcdp_iview/chunk-732b533d.80f9d81a9469d8a73b41.js +0 -1
- package/modules/fly_vue_lcdp_iview/lcdp-iview-attrcomponent.80f9d81a9469d8a73b41.js +0 -1
- package/modules/fly_vue_lcdp_iview/lcdp-iview-basecomponent.80f9d81a9469d8a73b41.js +0 -1
- package/modules/fly_vue_lcdp_iview/lcdp-renderer-components.80f9d81a9469d8a73b41.js +0 -1
- /package/modules/fly_vue_lcdp_iview/{lcdp-designer-components.80f9d81a9469d8a73b41.js → lcdp-designer-components.e6ed3307f2094e1adbff.js} +0 -0
@@ -1,6 +1,9 @@
|
|
1
1
|
import { ActionContext, ActionResult } from 'maple-client-orchestration-runtime';
|
2
|
-
declare const
|
2
|
+
export declare const dataSourceDataReload: {
|
3
|
+
id: string;
|
4
|
+
func: (actionContext: ActionContext) => Promise<ActionResult>;
|
5
|
+
};
|
6
|
+
export declare const dataSourcesDataReload: {
|
3
7
|
id: string;
|
4
8
|
func: (actionContext: ActionContext) => Promise<ActionResult>;
|
5
9
|
};
|
6
|
-
export default _default;
|
@@ -0,0 +1,7 @@
|
|
1
|
+
import { AxiosRequestConfig } from 'axios';
|
2
|
+
export declare type ServiceTypeTransport = (config: AxiosRequestConfig) => {
|
3
|
+
data: any;
|
4
|
+
error: boolean;
|
5
|
+
};
|
6
|
+
export declare function registerServiceTypeTransport(serviceType: string, transport: ServiceTypeTransport): void;
|
7
|
+
export declare function getServiceTypeTransport(serviceType: string): ServiceTypeTransport;
|
package/@types/module/components/attribute/designer/prop-value-editor/var-input/index.vue.d.ts
CHANGED
@@ -23,6 +23,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
23
23
|
beforeShowVarBindModal: {
|
24
24
|
type: PropType<(params: any) => void>;
|
25
25
|
};
|
26
|
+
service: {
|
27
|
+
type: PropType<import("@fly-vue/lcdp-designer/@types/ui-designer/common/services").Service>;
|
28
|
+
};
|
26
29
|
}, {
|
27
30
|
slots: import("vue/types/v3-setup-context").Slots;
|
28
31
|
innerValue: import("vue").Ref<string>;
|
@@ -52,6 +55,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
52
55
|
beforeShowVarBindModal: {
|
53
56
|
type: PropType<(params: any) => void>;
|
54
57
|
};
|
58
|
+
service: {
|
59
|
+
type: PropType<import("@fly-vue/lcdp-designer/@types/ui-designer/common/services").Service>;
|
60
|
+
};
|
55
61
|
}>>, {
|
56
62
|
showBindInput: boolean;
|
57
63
|
showBindBtn: boolean;
|
@@ -7,5 +7,6 @@ declare const _default: {
|
|
7
7
|
NameValuesEditor: () => Promise<typeof import("./name-values-editor.vue")>;
|
8
8
|
ExportCandidateFieldsEditor: () => Promise<typeof import("./export-candidate-fields-editor/index.vue")>;
|
9
9
|
MapEditor: () => Promise<typeof import("*.vue")>;
|
10
|
+
ServicePathSelector: () => Promise<typeof import("*.vue")>;
|
10
11
|
};
|
11
12
|
export default _default;
|
@@ -197,13 +197,15 @@ declare const _default: import("vue").DefineComponent<{
|
|
197
197
|
tableFullscreen: import("vue").Ref<boolean>;
|
198
198
|
handleFullscreen: () => void;
|
199
199
|
handleResetColumn: (cols: any) => void;
|
200
|
-
onPageChange: (_page: any) => void;
|
201
|
-
onPageSizeChange: (_pageSize: any) => void;
|
202
200
|
addRow: (params: any, isFirst: boolean) => void;
|
203
201
|
deleteRow: (num: number | number[], callback: any) => any;
|
204
202
|
getSelectData: (id: any) => any;
|
205
203
|
gridTable: import("vue").Ref<any>;
|
206
204
|
onContextmenu: (row: any, event: any, position: any) => void;
|
205
|
+
handlePagePrev: (val: any) => void;
|
206
|
+
handlePageNext: (val: any) => void;
|
207
|
+
handlePageSizeChange: (val: any) => void;
|
208
|
+
handlePageChange: (val: any) => void;
|
207
209
|
}, {}, {}, {
|
208
210
|
/**
|
209
211
|
* 多选时,单选是否选中
|
@@ -371,7 +373,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
371
373
|
};
|
372
374
|
}>>, {
|
373
375
|
draggable: boolean;
|
374
|
-
loading: boolean;
|
375
376
|
border: boolean;
|
376
377
|
contextMenu: boolean;
|
377
378
|
visibleHeaderOp: boolean;
|
@@ -388,6 +389,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
388
389
|
highlightRow: boolean;
|
389
390
|
rowClassName: Function;
|
390
391
|
disabledHover: boolean;
|
392
|
+
loading: boolean;
|
391
393
|
tooltipTheme: string;
|
392
394
|
tooltipMaxWidth: number;
|
393
395
|
rowKey: string | boolean;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{
|
2
2
|
text: {
|
3
|
-
type:
|
3
|
+
type: StringConstructor;
|
4
4
|
};
|
5
5
|
showTitle: {
|
6
6
|
type: BooleanConstructor;
|
@@ -19,14 +19,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
19
19
|
'word-break': string;
|
20
20
|
} | {
|
21
21
|
display: string;
|
22
|
+
'word-break': string;
|
22
23
|
'-webkit-box-orient'?: undefined;
|
23
24
|
overflow?: undefined;
|
24
25
|
'-webkit-line-clamp'?: undefined;
|
25
|
-
'word-break'?: undefined;
|
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:
|
29
|
+
type: StringConstructor;
|
30
30
|
};
|
31
31
|
showTitle: {
|
32
32
|
type: BooleanConstructor;
|
@@ -1,6 +1,7 @@
|
|
1
1
|
declare function build(userApiUrl: any, orgApiUrl: any, userSelectOptions?: any, orgSelectOptions?: any, globalQueryOptions?: any, globalConfig?: any): {
|
2
2
|
queryExternalOrg: () => any;
|
3
3
|
queryRootOrg: () => any;
|
4
|
+
queryRootOrgByUrl: (url: any) => any;
|
4
5
|
queryOrgByParent: (parentId: any) => any;
|
5
6
|
queryOrgByKeyword: (keyword: any, orgIds: any) => Promise<unknown>;
|
6
7
|
queryOrgByIds: (orgIds: any) => any;
|
@@ -30,6 +30,7 @@ declare const _default: {
|
|
30
30
|
} | {
|
31
31
|
queryExternalOrg: () => any;
|
32
32
|
queryRootOrg: () => any;
|
33
|
+
queryRootOrgByUrl: (url: any) => any;
|
33
34
|
queryOrgByParent: (parentId: any) => any;
|
34
35
|
queryOrgByKeyword: (keyword: any, orgIds: any) => Promise<unknown>;
|
35
36
|
queryOrgByIds: (orgIds: any) => any;
|
@@ -1,5 +1,9 @@
|
|
1
|
+
import { PropType } from 'vue';
|
1
2
|
import { LcdpRendererConfig } from '@fly-vue/lcdp-engine';
|
2
3
|
declare const _default: import("vue").DefineComponent<{
|
4
|
+
customUri: {
|
5
|
+
type: StringConstructor;
|
6
|
+
};
|
3
7
|
uri: {
|
4
8
|
type: StringConstructor;
|
5
9
|
required: true;
|
@@ -15,12 +19,25 @@ declare const _default: import("vue").DefineComponent<{
|
|
15
19
|
type: BooleanConstructor;
|
16
20
|
default: boolean;
|
17
21
|
};
|
22
|
+
noCache: {
|
23
|
+
type: BooleanConstructor;
|
24
|
+
default: boolean;
|
25
|
+
};
|
26
|
+
/** 渲染完成后执行,也就是vue的onMounted事件回调 */
|
27
|
+
onRendered: {
|
28
|
+
type: PropType<(context: any) => any>;
|
29
|
+
required: false;
|
30
|
+
};
|
18
31
|
}, {
|
19
32
|
preprocessed: import("vue").Ref<boolean>;
|
20
33
|
payload: any;
|
21
34
|
rendererConfig: LcdpRendererConfig;
|
22
35
|
handleOnOutput: (data: any) => void;
|
36
|
+
pageKey: string;
|
23
37
|
}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
38
|
+
customUri: {
|
39
|
+
type: StringConstructor;
|
40
|
+
};
|
24
41
|
uri: {
|
25
42
|
type: StringConstructor;
|
26
43
|
required: true;
|
@@ -36,8 +53,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
36
53
|
type: BooleanConstructor;
|
37
54
|
default: boolean;
|
38
55
|
};
|
56
|
+
noCache: {
|
57
|
+
type: BooleanConstructor;
|
58
|
+
default: boolean;
|
59
|
+
};
|
60
|
+
/** 渲染完成后执行,也就是vue的onMounted事件回调 */
|
61
|
+
onRendered: {
|
62
|
+
type: PropType<(context: any) => any>;
|
63
|
+
required: false;
|
64
|
+
};
|
39
65
|
}>>, {
|
40
66
|
forceHideHeader: boolean;
|
41
67
|
forceHideFooter: boolean;
|
68
|
+
noCache: boolean;
|
42
69
|
}>;
|
43
70
|
export default _default;
|
@@ -4,6 +4,8 @@ declare const _default: {
|
|
4
4
|
DesignLcdpInlineRenderer: () => Promise<typeof import("./for-designer/LcdpInlineRenderer.vue")>;
|
5
5
|
LcdpInlineRenderer: () => Promise<typeof import("./for-renderer/inline-renderer/index.vue")>;
|
6
6
|
VarInput: () => Promise<typeof import("./attribute/designer/prop-value-editor/var-input/index.vue")>;
|
7
|
+
InputSearchTypeAttrEdit: () => Promise<typeof import("*.vue")>;
|
8
|
+
DataDictionaryDisabledAttrEdit: () => Promise<typeof import("*.vue")>;
|
7
9
|
TableFiltersEditor: () => Promise<typeof import("./attribute/prop-value-editor/filters-editor/index.vue")>;
|
8
10
|
SimpleJsonEditor: () => Promise<typeof import("./attribute/prop-value-editor/json-editor.vue")>;
|
9
11
|
ObjectEditor: () => Promise<typeof import("./attribute/prop-value-editor/object-editor.vue")>;
|
@@ -11,6 +13,7 @@ declare const _default: {
|
|
11
13
|
NameValuesEditor: () => Promise<typeof import("./attribute/prop-value-editor/name-values-editor.vue")>;
|
12
14
|
ExportCandidateFieldsEditor: () => Promise<typeof import("./attribute/prop-value-editor/export-candidate-fields-editor/index.vue")>;
|
13
15
|
MapEditor: () => Promise<typeof import("*.vue")>;
|
16
|
+
ServicePathSelector: () => Promise<typeof import("*.vue")>;
|
14
17
|
AutoCompleteAttrEdit: () => Promise<typeof import("*.vue")>;
|
15
18
|
ColSelectAttrEdit: () => Promise<typeof import("*.vue")>;
|
16
19
|
FlexAttrEdit: () => Promise<typeof import("*.vue")>;
|
@@ -42,6 +45,8 @@ declare const _default: {
|
|
42
45
|
MenuTreeAttrEdit: () => Promise<typeof import("*.vue")>;
|
43
46
|
FileTypeAttrEdit: () => Promise<typeof import("*.vue")>;
|
44
47
|
FileSizeAttrEdit: () => Promise<typeof import("*.vue")>;
|
48
|
+
IvFromRow: () => Promise<typeof import("*.vue")>;
|
49
|
+
IvFromCol: () => Promise<typeof import("*.vue")>;
|
45
50
|
IvFormItem: () => Promise<any>;
|
46
51
|
IvFormTimePicker: () => Promise<any>;
|
47
52
|
IvFormSwitch: () => Promise<any>;
|
@@ -101,6 +106,7 @@ declare const _default: {
|
|
101
106
|
IvCheckboxGroup: () => Promise<any>;
|
102
107
|
IvBackTop: () => Promise<any>;
|
103
108
|
Input: () => Promise<typeof import("*.vue")>;
|
109
|
+
Card: () => Promise<any>;
|
104
110
|
Tabs: () => Promise<typeof import("*.vue")>;
|
105
111
|
IvDrawer: () => Promise<any>;
|
106
112
|
Cascader: () => Promise<typeof import("*.vue")>;
|
@@ -307,13 +313,15 @@ declare const _default: {
|
|
307
313
|
tableFullscreen: import("vue").Ref<boolean>;
|
308
314
|
handleFullscreen: () => void;
|
309
315
|
handleResetColumn: (cols: any) => void;
|
310
|
-
onPageChange: (_page: any) => void;
|
311
|
-
onPageSizeChange: (_pageSize: any) => void;
|
312
316
|
addRow: (params: any, isFirst: boolean) => void;
|
313
317
|
deleteRow: (num: number | number[], callback: any) => any;
|
314
318
|
getSelectData: (id: any) => any;
|
315
319
|
gridTable: import("vue").Ref<any>;
|
316
320
|
onContextmenu: (row: any, event: any, position: any) => void;
|
321
|
+
handlePagePrev: (val: any) => void;
|
322
|
+
handlePageNext: (val: any) => void;
|
323
|
+
handlePageSizeChange: (val: any) => void;
|
324
|
+
handlePageChange: (val: any) => void;
|
317
325
|
}, {}, {}, {
|
318
326
|
onRowClick(selection: any, index: any): void;
|
319
327
|
}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
@@ -488,7 +496,6 @@ declare const _default: {
|
|
488
496
|
};
|
489
497
|
}>>, {
|
490
498
|
draggable: boolean;
|
491
|
-
loading: boolean;
|
492
499
|
border: boolean;
|
493
500
|
contextMenu: boolean;
|
494
501
|
visibleHeaderOp: boolean;
|
@@ -505,6 +512,7 @@ declare const _default: {
|
|
505
512
|
highlightRow: boolean;
|
506
513
|
rowClassName: Function;
|
507
514
|
disabledHover: boolean;
|
515
|
+
loading: boolean;
|
508
516
|
tooltipTheme: string;
|
509
517
|
tooltipMaxWidth: number;
|
510
518
|
rowKey: string | boolean;
|
@@ -524,6 +532,11 @@ declare const _default: {
|
|
524
532
|
IvScrollSpyItem: () => Promise<typeof import("*.vue")>;
|
525
533
|
IvImagePreview: () => Promise<typeof import("*.vue")>;
|
526
534
|
IvRegion: () => Promise<typeof import("*.vue")>;
|
535
|
+
IvEntityForm: () => Promise<any>;
|
536
|
+
IvEntityFormItem: () => Promise<any>;
|
537
|
+
IvEntityList: () => Promise<any>;
|
538
|
+
IvEntityListItem: () => Promise<any>;
|
539
|
+
IvSplit: () => Promise<typeof import("*.vue")>;
|
527
540
|
IvContainer: () => Promise<any>;
|
528
541
|
IvDiv: () => Promise<any>;
|
529
542
|
IvFlex: () => Promise<typeof import("*.vue")>;
|
package/@types/module/index.d.ts
CHANGED
@@ -8,3 +8,4 @@ export declare const AdaptivePageModule: IWebModule;
|
|
8
8
|
export { register as registerActionNodes } from './action-nodes/index';
|
9
9
|
export { default as StyleEditor } from './components/attribute/StyleAttrEdit.vue';
|
10
10
|
export { validateProcessor } from './validate-processor';
|
11
|
+
export { registerServiceTypeTransport } from './action-nodes/service-type-transport';
|
@@ -0,0 +1,22 @@
|
|
1
|
+
declare const _default: {
|
2
|
+
IvDivider: {
|
3
|
+
properties: {
|
4
|
+
text: {
|
5
|
+
turnOn({ node }: {
|
6
|
+
node: any;
|
7
|
+
}): boolean;
|
8
|
+
};
|
9
|
+
orientation: {
|
10
|
+
turnOn({ node }: {
|
11
|
+
node: any;
|
12
|
+
}): boolean;
|
13
|
+
};
|
14
|
+
plain: {
|
15
|
+
turnOn({ node }: {
|
16
|
+
node: any;
|
17
|
+
}): boolean;
|
18
|
+
};
|
19
|
+
};
|
20
|
+
};
|
21
|
+
};
|
22
|
+
export default _default;
|
@@ -5,6 +5,21 @@ declare const _default: {
|
|
5
5
|
$: any;
|
6
6
|
}): any;
|
7
7
|
properties: {
|
8
|
+
width: {
|
9
|
+
turnOn({ node }: {
|
10
|
+
node: any;
|
11
|
+
}): boolean;
|
12
|
+
};
|
13
|
+
height: {
|
14
|
+
turnOn({ node }: {
|
15
|
+
node: any;
|
16
|
+
}): boolean;
|
17
|
+
};
|
18
|
+
draggable: {
|
19
|
+
turnOn({ node }: {
|
20
|
+
node: any;
|
21
|
+
}): boolean;
|
22
|
+
};
|
8
23
|
maskClosable: {
|
9
24
|
turnOn({ node }: {
|
10
25
|
node: any;
|
@@ -24,22 +24,22 @@ declare const _default: {
|
|
24
24
|
theme: {
|
25
25
|
turnOn({ node }: {
|
26
26
|
node: any;
|
27
|
-
}):
|
27
|
+
}): boolean;
|
28
28
|
};
|
29
29
|
maxWidth: {
|
30
30
|
turnOn({ node }: {
|
31
31
|
node: any;
|
32
|
-
}):
|
32
|
+
}): boolean;
|
33
33
|
};
|
34
34
|
placement: {
|
35
35
|
turnOn({ node }: {
|
36
36
|
node: any;
|
37
|
-
}):
|
37
|
+
}): boolean;
|
38
38
|
};
|
39
39
|
transfer: {
|
40
40
|
turnOn({ node }: {
|
41
41
|
node: any;
|
42
|
-
}):
|
42
|
+
}): boolean;
|
43
43
|
};
|
44
44
|
};
|
45
45
|
};
|
@@ -2,11 +2,13 @@ declare const _default: {
|
|
2
2
|
IvForm: {
|
3
3
|
properties: {
|
4
4
|
labelWidth: {
|
5
|
-
mock: ({ node
|
5
|
+
mock: ({ node }: {
|
6
6
|
node: any;
|
7
|
-
service: any;
|
8
7
|
}) => any;
|
9
8
|
default: number;
|
9
|
+
turnOn({ node }: {
|
10
|
+
node: any;
|
11
|
+
}): boolean;
|
10
12
|
};
|
11
13
|
model: {
|
12
14
|
mock(): {};
|
@@ -319,6 +321,29 @@ declare const _default: {
|
|
319
321
|
node: any;
|
320
322
|
}): boolean;
|
321
323
|
};
|
324
|
+
options: {
|
325
|
+
mock: ({ node, service }: {
|
326
|
+
node: any;
|
327
|
+
service: any;
|
328
|
+
}) => {
|
329
|
+
disabledDate: Function;
|
330
|
+
shortcuts: any;
|
331
|
+
disableDate?: undefined;
|
332
|
+
} | {
|
333
|
+
disableDate: any;
|
334
|
+
shortcuts: any[];
|
335
|
+
disabledDate?: undefined;
|
336
|
+
};
|
337
|
+
default: {
|
338
|
+
disabledDate: string;
|
339
|
+
shortcuts: any[];
|
340
|
+
};
|
341
|
+
};
|
342
|
+
timePickerOptions: {
|
343
|
+
turnOn({ node }: {
|
344
|
+
node: any;
|
345
|
+
}): boolean;
|
346
|
+
};
|
322
347
|
};
|
323
348
|
};
|
324
349
|
'Extendable.FormItemTimePicker': {
|
@@ -339,11 +364,23 @@ declare const _default: {
|
|
339
364
|
}) => any;
|
340
365
|
default: any[];
|
341
366
|
};
|
367
|
+
keyNames: {
|
368
|
+
turnOn({ service, node }: {
|
369
|
+
service: any;
|
370
|
+
node: any;
|
371
|
+
}): boolean;
|
372
|
+
};
|
342
373
|
fullline: {
|
343
374
|
turnOn({ node }: {
|
344
375
|
node: any;
|
345
376
|
}): boolean;
|
346
377
|
};
|
378
|
+
value: {
|
379
|
+
mock: ({ node, service }: {
|
380
|
+
node: any;
|
381
|
+
service: any;
|
382
|
+
}) => any;
|
383
|
+
};
|
347
384
|
};
|
348
385
|
};
|
349
386
|
'Extendable.FormItemRadio': {
|
@@ -360,6 +397,12 @@ declare const _default: {
|
|
360
397
|
}) => any;
|
361
398
|
default: any[];
|
362
399
|
};
|
400
|
+
keyNames: {
|
401
|
+
turnOn({ service, node }: {
|
402
|
+
service: any;
|
403
|
+
node: any;
|
404
|
+
}): boolean;
|
405
|
+
};
|
363
406
|
border: {
|
364
407
|
turnOn({ node }: {
|
365
408
|
node: any;
|
@@ -381,6 +424,12 @@ declare const _default: {
|
|
381
424
|
}) => any;
|
382
425
|
default: any[];
|
383
426
|
};
|
427
|
+
keyNames: {
|
428
|
+
turnOn({ service, node }: {
|
429
|
+
service: any;
|
430
|
+
node: any;
|
431
|
+
}): boolean;
|
432
|
+
};
|
384
433
|
allowCreate: {
|
385
434
|
turnOn({ node }: {
|
386
435
|
node: any;
|
@@ -396,11 +445,17 @@ declare const _default: {
|
|
396
445
|
node: any;
|
397
446
|
}): boolean;
|
398
447
|
};
|
448
|
+
dataDictionaryDisabled: {
|
449
|
+
turnOn({ service, node }: {
|
450
|
+
service: any;
|
451
|
+
node: any;
|
452
|
+
}): boolean;
|
453
|
+
};
|
399
454
|
};
|
400
455
|
};
|
401
456
|
'Extendable.FormItemInput': {
|
402
457
|
properties: {
|
403
|
-
|
458
|
+
maxlength: {
|
404
459
|
turnOn({ node }: {
|
405
460
|
node: any;
|
406
461
|
}): boolean;
|
@@ -455,6 +510,16 @@ declare const _default: {
|
|
455
510
|
node: any;
|
456
511
|
}): boolean;
|
457
512
|
};
|
513
|
+
enterButton: {
|
514
|
+
turnOn({ node }: {
|
515
|
+
node: any;
|
516
|
+
}): boolean;
|
517
|
+
};
|
518
|
+
search: {
|
519
|
+
turnOn({ node }: {
|
520
|
+
node: any;
|
521
|
+
}): boolean;
|
522
|
+
};
|
458
523
|
};
|
459
524
|
};
|
460
525
|
'Extendable.FormItemInputNumber': {
|
@@ -483,16 +548,33 @@ declare const _default: {
|
|
483
548
|
}) => any;
|
484
549
|
default: any[];
|
485
550
|
};
|
551
|
+
keyNames: {
|
552
|
+
turnOn({ service, node }: {
|
553
|
+
service: any;
|
554
|
+
node: any;
|
555
|
+
}): boolean;
|
556
|
+
};
|
557
|
+
filterMethod: {
|
558
|
+
mock: ({ node, service }: {
|
559
|
+
node: any;
|
560
|
+
service: any;
|
561
|
+
}) => Function;
|
562
|
+
};
|
486
563
|
};
|
487
564
|
};
|
488
565
|
ValidateRules: {
|
489
566
|
properties: {
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
567
|
+
value: {
|
568
|
+
inputType: {
|
569
|
+
type: string;
|
570
|
+
on: {
|
571
|
+
'on-change': ({ node, model, service }: {
|
572
|
+
node: any;
|
573
|
+
model: any;
|
574
|
+
service: any;
|
575
|
+
}, val: any) => void;
|
576
|
+
};
|
577
|
+
};
|
496
578
|
};
|
497
579
|
min: {
|
498
580
|
turnOn({ model }: {
|