@fly-vue/lcdp-iview 1.7.4 → 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.
- 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/designer/prop-value-editor/var-input/index.vue.d.ts +6 -0
- package/@types/module/components/components/IvTableGrid/index.vue.d.ts +1 -1
- 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/for-renderer/inline-renderer/index.vue.d.ts +27 -0
- package/@types/module/components/index.d.ts +6 -2
- package/@types/module/index.d.ts +1 -0
- package/@types/module/schema-extend/components/divider.d.ts +22 -0
- package/@types/module/schema-extend/components/form.d.ts +52 -7
- package/@types/module/schema-extend/components/iam-org-tree.d.ts +10 -0
- package/@types/module/schema-extend/components/others.d.ts +7 -0
- package/@types/module/schema-extend/components/tag-select.d.ts +5 -0
- package/bingo-builder-manifest.json +15 -13
- 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.d27861ef.css → lcdp-iview-attrcomponent.5b64e92e.css} +1 -1
- 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 +9 -9
- 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.06643826720987dcd185.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 -13
- package/modules/fly_vue_lcdp_iview/assets/css/lcdp-iview-component.1e9d6064.css +0 -1
- package/modules/fly_vue_lcdp_iview/chunk-732b533d.06643826720987dcd185.js +0 -1
- package/modules/fly_vue_lcdp_iview/lcdp-iview-attrcomponent.06643826720987dcd185.js +0 -1
- package/modules/fly_vue_lcdp_iview/lcdp-iview-basecomponent.06643826720987dcd185.js +0 -1
- package/modules/fly_vue_lcdp_iview/lcdp-renderer-components.06643826720987dcd185.js +0 -1
- /package/modules/fly_vue_lcdp_iview/{lcdp-designer-components.06643826720987dcd185.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;
|
@@ -373,7 +373,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
373
373
|
};
|
374
374
|
}>>, {
|
375
375
|
draggable: boolean;
|
376
|
-
loading: boolean;
|
377
376
|
border: boolean;
|
378
377
|
contextMenu: boolean;
|
379
378
|
visibleHeaderOp: boolean;
|
@@ -390,6 +389,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
390
389
|
highlightRow: boolean;
|
391
390
|
rowClassName: Function;
|
392
391
|
disabledHover: boolean;
|
392
|
+
loading: boolean;
|
393
393
|
tooltipTheme: string;
|
394
394
|
tooltipMaxWidth: number;
|
395
395
|
rowKey: string | boolean;
|
@@ -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,7 +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
|
-
|
7
|
+
InputSearchTypeAttrEdit: () => Promise<typeof import("*.vue")>;
|
8
|
+
DataDictionaryDisabledAttrEdit: () => Promise<typeof import("*.vue")>;
|
8
9
|
TableFiltersEditor: () => Promise<typeof import("./attribute/prop-value-editor/filters-editor/index.vue")>;
|
9
10
|
SimpleJsonEditor: () => Promise<typeof import("./attribute/prop-value-editor/json-editor.vue")>;
|
10
11
|
ObjectEditor: () => Promise<typeof import("./attribute/prop-value-editor/object-editor.vue")>;
|
@@ -495,7 +496,6 @@ declare const _default: {
|
|
495
496
|
};
|
496
497
|
}>>, {
|
497
498
|
draggable: boolean;
|
498
|
-
loading: boolean;
|
499
499
|
border: boolean;
|
500
500
|
contextMenu: boolean;
|
501
501
|
visibleHeaderOp: boolean;
|
@@ -512,6 +512,7 @@ declare const _default: {
|
|
512
512
|
highlightRow: boolean;
|
513
513
|
rowClassName: Function;
|
514
514
|
disabledHover: boolean;
|
515
|
+
loading: boolean;
|
515
516
|
tooltipTheme: string;
|
516
517
|
tooltipMaxWidth: number;
|
517
518
|
rowKey: string | boolean;
|
@@ -533,6 +534,9 @@ declare const _default: {
|
|
533
534
|
IvRegion: () => Promise<typeof import("*.vue")>;
|
534
535
|
IvEntityForm: () => Promise<any>;
|
535
536
|
IvEntityFormItem: () => Promise<any>;
|
537
|
+
IvEntityList: () => Promise<any>;
|
538
|
+
IvEntityListItem: () => Promise<any>;
|
539
|
+
IvSplit: () => Promise<typeof import("*.vue")>;
|
536
540
|
IvContainer: () => Promise<any>;
|
537
541
|
IvDiv: () => Promise<any>;
|
538
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;
|
@@ -325,7 +325,19 @@ declare const _default: {
|
|
325
325
|
mock: ({ node, service }: {
|
326
326
|
node: any;
|
327
327
|
service: any;
|
328
|
-
}) => {
|
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
|
+
};
|
329
341
|
};
|
330
342
|
timePickerOptions: {
|
331
343
|
turnOn({ node }: {
|
@@ -363,6 +375,12 @@ declare const _default: {
|
|
363
375
|
node: any;
|
364
376
|
}): boolean;
|
365
377
|
};
|
378
|
+
value: {
|
379
|
+
mock: ({ node, service }: {
|
380
|
+
node: any;
|
381
|
+
service: any;
|
382
|
+
}) => any;
|
383
|
+
};
|
366
384
|
};
|
367
385
|
};
|
368
386
|
'Extendable.FormItemRadio': {
|
@@ -427,6 +445,12 @@ declare const _default: {
|
|
427
445
|
node: any;
|
428
446
|
}): boolean;
|
429
447
|
};
|
448
|
+
dataDictionaryDisabled: {
|
449
|
+
turnOn({ service, node }: {
|
450
|
+
service: any;
|
451
|
+
node: any;
|
452
|
+
}): boolean;
|
453
|
+
};
|
430
454
|
};
|
431
455
|
};
|
432
456
|
'Extendable.FormItemInput': {
|
@@ -486,6 +510,16 @@ declare const _default: {
|
|
486
510
|
node: any;
|
487
511
|
}): boolean;
|
488
512
|
};
|
513
|
+
enterButton: {
|
514
|
+
turnOn({ node }: {
|
515
|
+
node: any;
|
516
|
+
}): boolean;
|
517
|
+
};
|
518
|
+
search: {
|
519
|
+
turnOn({ node }: {
|
520
|
+
node: any;
|
521
|
+
}): boolean;
|
522
|
+
};
|
489
523
|
};
|
490
524
|
};
|
491
525
|
'Extendable.FormItemInputNumber': {
|
@@ -520,16 +554,27 @@ declare const _default: {
|
|
520
554
|
node: any;
|
521
555
|
}): boolean;
|
522
556
|
};
|
557
|
+
filterMethod: {
|
558
|
+
mock: ({ node, service }: {
|
559
|
+
node: any;
|
560
|
+
service: any;
|
561
|
+
}) => Function;
|
562
|
+
};
|
523
563
|
};
|
524
564
|
};
|
525
565
|
ValidateRules: {
|
526
566
|
properties: {
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
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
|
+
};
|
533
578
|
};
|
534
579
|
min: {
|
535
580
|
turnOn({ model }: {
|
@@ -1,21 +1,22 @@
|
|
1
1
|
{
|
2
|
-
"date": "
|
2
|
+
"date": "20230508110534",
|
3
3
|
"distModuleDir": "modules/fly_vue_lcdp_iview",
|
4
4
|
"distModuleDirName": "modules",
|
5
5
|
"dll": true,
|
6
6
|
"moduleDependencieVer": {
|
7
|
-
"@fly-vue/components": "1.7.
|
8
|
-
"@fly-vue/core": "1.7.
|
7
|
+
"@fly-vue/components": "1.7.5",
|
8
|
+
"@fly-vue/core": "1.7.5",
|
9
9
|
"@fly-vue/fuse-ui-codemirror": "1.7.0-snapshot",
|
10
|
-
"@fly-vue/iview-pro": "1.7.
|
11
|
-
"@fly-vue/lcdp-
|
12
|
-
"@fly-vue/lcdp-designer
|
13
|
-
"@fly-vue/lcdp-
|
14
|
-
"@fly-vue/lcdp-
|
15
|
-
"@fly-vue/lcdp-
|
10
|
+
"@fly-vue/iview-pro": "1.7.5",
|
11
|
+
"@fly-vue/lcdp-api": "1.7.0-snapshot",
|
12
|
+
"@fly-vue/lcdp-designer": "1.7.5",
|
13
|
+
"@fly-vue/lcdp-designer-extra": "1.7.5",
|
14
|
+
"@fly-vue/lcdp-engine": "1.7.5",
|
15
|
+
"@fly-vue/lcdp-micro": "1.7.5",
|
16
|
+
"@fly-vue/lcdp-orch": "1.7.5",
|
16
17
|
"@fly-vue/loader": "1.7.0-snapshot",
|
17
|
-
"@fly-vue/ufs": "1.7.
|
18
|
-
"@fly-vue/use": "1.7.
|
18
|
+
"@fly-vue/ufs": "1.7.5",
|
19
|
+
"@fly-vue/use": "1.7.5"
|
19
20
|
},
|
20
21
|
"moduleDependencies": [
|
21
22
|
"@fly-vue/core",
|
@@ -27,12 +28,13 @@
|
|
27
28
|
"@fly-vue/use",
|
28
29
|
"@fly-vue/fuse-ui-codemirror",
|
29
30
|
"@fly-vue/lcdp-orch",
|
30
|
-
"@fly-vue/lcdp-designer-extra",
|
31
31
|
"@fly-vue/loader",
|
32
|
+
"@fly-vue/lcdp-api",
|
33
|
+
"@fly-vue/lcdp-designer-extra",
|
32
34
|
"@fly-vue/lcdp-micro"
|
33
35
|
],
|
34
36
|
"name": "@fly-vue/lcdp-iview",
|
35
37
|
"npmPacks": [
|
36
38
|
],
|
37
|
-
"version": "1.7.
|
39
|
+
"version": "1.7.5"
|
38
40
|
}
|