@fly-vue/lcdp-iview 1.7.3 → 1.7.5

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.
Files changed (48) hide show
  1. package/@types/module/action-nodes/impl/data-source-data-reload.d.ts +5 -2
  2. package/@types/module/action-nodes/service-type-transport.d.ts +7 -0
  3. package/@types/module/components/attribute/base-attr-components.d.ts +0 -3
  4. package/@types/module/components/attribute/designer/prop-value-editor/var-input/index.vue.d.ts +6 -0
  5. package/@types/module/components/attribute/prop-value-editor/index.d.ts +1 -0
  6. package/@types/module/components/components/IvTableGrid/index.vue.d.ts +5 -3
  7. package/@types/module/components/components/base/IvText/index.vue.d.ts +3 -3
  8. package/@types/module/components/components/iam/lib/query-methods-builder.d.ts +1 -0
  9. package/@types/module/components/components/iam/mixins/build-query-methods.d.ts +1 -0
  10. package/@types/module/components/components/iview.d.ts +1 -0
  11. package/@types/module/components/for-renderer/inline-renderer/index.vue.d.ts +27 -0
  12. package/@types/module/components/index.d.ts +16 -3
  13. package/@types/module/index.d.ts +1 -0
  14. package/@types/module/schema-extend/components/cascader.d.ts +6 -0
  15. package/@types/module/schema-extend/components/color-picker.d.ts +4 -0
  16. package/@types/module/schema-extend/components/divider.d.ts +22 -0
  17. package/@types/module/schema-extend/components/drawer.d.ts +15 -0
  18. package/@types/module/schema-extend/components/ellipsis.d.ts +4 -4
  19. package/@types/module/schema-extend/components/form.d.ts +91 -9
  20. package/@types/module/schema-extend/components/globalfooter.d.ts +6 -0
  21. package/@types/module/schema-extend/components/iam-org-tree.d.ts +10 -0
  22. package/@types/module/schema-extend/components/imagePreview.d.ts +6 -0
  23. package/@types/module/schema-extend/components/iv-table.d.ts +0 -1
  24. package/@types/module/schema-extend/components/layout.d.ts +7 -0
  25. package/@types/module/schema-extend/components/others.d.ts +43 -0
  26. package/@types/module/schema-extend/components/scrollspy.d.ts +3 -3
  27. package/@types/module/schema-extend/components/tag-select.d.ts +11 -0
  28. package/@types/module/schema-extend/components/transfer.d.ts +6 -0
  29. package/@types/module/schema-extend/components/tree.d.ts +6 -0
  30. package/bingo-builder-manifest.json +18 -12
  31. package/index.js +4 -4
  32. package/modules/fly_vue_lcdp_iview/assets/css/app.css +2 -2
  33. package/modules/fly_vue_lcdp_iview/assets/css/lcdp-iview-attrcomponent.5b64e92e.css +1 -0
  34. package/modules/fly_vue_lcdp_iview/assets/css/lcdp-iview-component.28c2f15b.css +1 -0
  35. package/modules/fly_vue_lcdp_iview/chunk-732b533d.e6ed3307f2094e1adbff.js +1 -0
  36. package/modules/fly_vue_lcdp_iview/dll.js +10 -10
  37. package/modules/fly_vue_lcdp_iview/lcdp-iview-attrcomponent.e6ed3307f2094e1adbff.js +1 -0
  38. package/modules/fly_vue_lcdp_iview/lcdp-iview-basecomponent.e6ed3307f2094e1adbff.js +1 -0
  39. package/modules/fly_vue_lcdp_iview/{lcdp-iview-component.80f9d81a9469d8a73b41.js → lcdp-iview-component.e6ed3307f2094e1adbff.js} +2 -2
  40. package/modules/fly_vue_lcdp_iview/lcdp-renderer-components.e6ed3307f2094e1adbff.js +1 -0
  41. package/package.json +14 -11
  42. package/modules/fly_vue_lcdp_iview/assets/css/lcdp-iview-attrcomponent.3d277742.css +0 -1
  43. package/modules/fly_vue_lcdp_iview/assets/css/lcdp-iview-component.1e9d6064.css +0 -1
  44. package/modules/fly_vue_lcdp_iview/chunk-732b533d.80f9d81a9469d8a73b41.js +0 -1
  45. package/modules/fly_vue_lcdp_iview/lcdp-iview-attrcomponent.80f9d81a9469d8a73b41.js +0 -1
  46. package/modules/fly_vue_lcdp_iview/lcdp-iview-basecomponent.80f9d81a9469d8a73b41.js +0 -1
  47. package/modules/fly_vue_lcdp_iview/lcdp-renderer-components.80f9d81a9469d8a73b41.js +0 -1
  48. /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 _default: {
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;
@@ -4,9 +4,6 @@ declare const _default: {
4
4
  props: string[];
5
5
  render(createElement: any, context: any): any;
6
6
  };
7
- /**
8
- * @description: 数字类型输入框
9
- */
10
7
  /**
11
8
  * @description: 数字类型输入框
12
9
  */
@@ -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: (BooleanConstructor | NumberConstructor | StringConstructor | ObjectConstructor | ArrayConstructor)[];
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: (BooleanConstructor | NumberConstructor | StringConstructor | ObjectConstructor | ArrayConstructor)[];
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;
@@ -5,6 +5,7 @@ declare const _default: {
5
5
  IvTableColumn: any;
6
6
  IvTableGridColumn: any;
7
7
  IvForm: any;
8
+ IvEntityForm: any;
8
9
  IamFormMemberSelect: any;
9
10
  IamFormOrgSelect: any;
10
11
  };
@@ -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")>;
@@ -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';
@@ -28,6 +28,12 @@ declare const _default: {
28
28
  }[];
29
29
  })[];
30
30
  };
31
+ keyNames: {
32
+ turnOn({ service, node }: {
33
+ service: any;
34
+ node: any;
35
+ }): boolean;
36
+ };
31
37
  value: {
32
38
  mock: ({ node, service }: {
33
39
  node: any;
@@ -2,6 +2,10 @@ declare const _default: {
2
2
  IvColorPicker: {
3
3
  properties: {
4
4
  colors: {
5
+ mock: ({ node, service }: {
6
+ node: any;
7
+ service: any;
8
+ }) => any;
5
9
  turnOn({ node }: {
6
10
  node: any;
7
11
  }): boolean;
@@ -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
- }): any;
27
+ }): boolean;
28
28
  };
29
29
  maxWidth: {
30
30
  turnOn({ node }: {
31
31
  node: any;
32
- }): any;
32
+ }): boolean;
33
33
  };
34
34
  placement: {
35
35
  turnOn({ node }: {
36
36
  node: any;
37
- }): any;
37
+ }): boolean;
38
38
  };
39
39
  transfer: {
40
40
  turnOn({ node }: {
41
41
  node: any;
42
- }): any;
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, service }: {
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
- showWordLimit: {
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
- label: {
491
- turnOn({ model, node, service }: {
492
- model: any;
493
- node: any;
494
- service: any;
495
- }): boolean;
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 }: {
@@ -11,6 +11,12 @@ declare const _default: {
11
11
  value: string;
12
12
  }[];
13
13
  };
14
+ keyNames: {
15
+ turnOn({ service, node }: {
16
+ service: any;
17
+ node: any;
18
+ }): boolean;
19
+ };
14
20
  };
15
21
  };
16
22
  };
@@ -0,0 +1,10 @@
1
+ declare const _default: {
2
+ IamOrgTree: {
3
+ properties: {
4
+ orgOptions: {
5
+ mock: () => {};
6
+ };
7
+ };
8
+ };
9
+ };
10
+ export default _default;
@@ -15,6 +15,12 @@ declare const _default: {
15
15
  text: string;
16
16
  }[];
17
17
  };
18
+ keyNames: {
19
+ turnOn({ service, node }: {
20
+ service: any;
21
+ node: any;
22
+ }): boolean;
23
+ };
18
24
  };
19
25
  events: {
20
26
  'on-close': {
@@ -168,7 +168,6 @@ declare const _default: {
168
168
  IvTableGridPager: {
169
169
  properties: {
170
170
  pageSizeOpts: {
171
- mock: any;
172
171
  turnOn({ model }: {
173
172
  model: any;
174
173
  }): any;
@@ -153,6 +153,13 @@ declare const _default: {
153
153
  };
154
154
  }[];
155
155
  };
156
+ properties: {
157
+ closable: {
158
+ turnOn({ model }: {
159
+ model: any;
160
+ }): boolean;
161
+ };
162
+ };
156
163
  };
157
164
  TabPane: {
158
165
  removeing({ service, node }: {