@fly-vue/lcdp-iview 1.8.4 → 1.8.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/upload-file.d.ts +16 -0
- package/@types/module/components/components/IvTableGrid/index.vue.d.ts +4 -2
- package/@types/module/components/index.d.ts +5 -1
- package/@types/module/schema-extend/components/actions.d.ts +1 -7
- package/@types/module/schema-extend/components/auth.d.ts +17 -0
- package/@types/module/schema-extend/components/form.d.ts +1 -3
- package/@types/module/schema-extend/components/others.d.ts +8 -0
- package/bingo-builder-manifest.json +13 -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.902c4c95.css +1 -0
- package/modules/fly_vue_lcdp_iview/chunk-732b533d.6a8a4a6e170e4e42f66a.js +1 -0
- package/modules/fly_vue_lcdp_iview/dll.js +6 -6
- package/modules/fly_vue_lcdp_iview/lcdp-iview-attrcomponent.6a8a4a6e170e4e42f66a.js +1 -0
- package/modules/fly_vue_lcdp_iview/{lcdp-iview-component-ice.849c9d30ca40cf7bd4a1.js → lcdp-iview-component-ice.6a8a4a6e170e4e42f66a.js} +1 -1
- package/modules/fly_vue_lcdp_iview/lcdp-iview-component.6a8a4a6e170e4e42f66a.js +1 -0
- package/modules/fly_vue_lcdp_iview/{lcdp-renderer-components.849c9d30ca40cf7bd4a1.js → lcdp-renderer-components.6a8a4a6e170e4e42f66a.js} +1 -1
- package/modules/fly_vue_lcdp_iview/vendors~lcdp-iview-component.6a8a4a6e170e4e42f66a.js +1 -0
- package/modules/fly_vue_lcdp_iview/vendors~lcdp-renderer-components.6a8a4a6e170e4e42f66a.js +15 -0
- package/package.json +15 -15
- package/modules/fly_vue_lcdp_iview/assets/css/lcdp-iview-attrcomponent.7b650a7c.css +0 -1
- package/modules/fly_vue_lcdp_iview/chunk-732b533d.849c9d30ca40cf7bd4a1.js +0 -1
- package/modules/fly_vue_lcdp_iview/lcdp-iview-attrcomponent.849c9d30ca40cf7bd4a1.js +0 -1
- package/modules/fly_vue_lcdp_iview/lcdp-iview-component.849c9d30ca40cf7bd4a1.js +0 -1
- package/modules/fly_vue_lcdp_iview/vendors~lcdp-iview-component.849c9d30ca40cf7bd4a1.js +0 -1
- package/modules/fly_vue_lcdp_iview/vendors~lcdp-renderer-components.849c9d30ca40cf7bd4a1.js +0 -7
- /package/modules/fly_vue_lcdp_iview/{lcdp-designer-components.849c9d30ca40cf7bd4a1.js → lcdp-designer-components.6a8a4a6e170e4e42f66a.js} +0 -0
- /package/modules/fly_vue_lcdp_iview/{lcdp-iview-basecomponent.849c9d30ca40cf7bd4a1.js → lcdp-iview-basecomponent.6a8a4a6e170e4e42f66a.js} +0 -0
- /package/modules/fly_vue_lcdp_iview/{lcdp-iview-component-region.849c9d30ca40cf7bd4a1.js → lcdp-iview-component-region.6a8a4a6e170e4e42f66a.js} +0 -0
- /package/modules/fly_vue_lcdp_iview/{vendors~lcdp-iview-component-ice.849c9d30ca40cf7bd4a1.js → vendors~lcdp-iview-component-ice.6a8a4a6e170e4e42f66a.js} +0 -0
@@ -0,0 +1,16 @@
|
|
1
|
+
import { ActionContext, ActionResult } from 'maple-client-orchestration-runtime';
|
2
|
+
declare const _default: {
|
3
|
+
id: string;
|
4
|
+
func: (actionContext: ActionContext) => Promise<ActionResult>;
|
5
|
+
};
|
6
|
+
/**
|
7
|
+
* 调用上传组件
|
8
|
+
*/
|
9
|
+
export default _default;
|
10
|
+
/**
|
11
|
+
* 手动上传组件
|
12
|
+
*/
|
13
|
+
export declare const uploadFileSubmit: {
|
14
|
+
id: string;
|
15
|
+
func: (actionContext: ActionContext) => Promise<unknown>;
|
16
|
+
};
|
@@ -180,7 +180,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
180
180
|
selectedValue: any;
|
181
181
|
allTableColumn: import("vue").ComputedRef<any[]>;
|
182
182
|
tableColumns: import("vue").ComputedRef<any>;
|
183
|
-
filterTableColumn:
|
183
|
+
filterTableColumn: any;
|
184
|
+
filterColumnLoading: import("vue").Ref<boolean>;
|
184
185
|
pager: TablePager;
|
185
186
|
pagerPropsNew: import("vue").Ref<{
|
186
187
|
pageSize: number;
|
@@ -209,7 +210,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
209
210
|
handleFullscreen: () => void;
|
210
211
|
handleResetColumn: () => void;
|
211
212
|
handleFilterColumn: () => void;
|
212
|
-
handleVisibleChangeColumn: (visible: any) => void;
|
213
|
+
handleVisibleChangeColumn: (visible: any, e: any) => void;
|
214
|
+
filterTableColumnHeight: import("vue").Ref<string>;
|
213
215
|
addRow: (params: any, isFirst: boolean) => void;
|
214
216
|
deleteRow: (num: number | number[], callback: any) => any;
|
215
217
|
getSelectData: (id: any) => any;
|
@@ -40,6 +40,8 @@ declare const _default: {
|
|
40
40
|
MonacoAttrEdit: () => Promise<typeof import("*.vue")>;
|
41
41
|
OptionAttrEdit: () => Promise<typeof import("*.vue")>;
|
42
42
|
PagerAttrEdit: () => Promise<typeof import("*.vue")>;
|
43
|
+
AuthAttrEdit: () => Promise<typeof import("*.vue")>;
|
44
|
+
AuthSelectAttrEdit: () => Promise<typeof import("*.vue")>;
|
43
45
|
RadioGroupAttrEdit: () => Promise<typeof import("*.vue")>;
|
44
46
|
RulesAttrEdit: () => Promise<typeof import("*.vue")>;
|
45
47
|
RulesAttrEditSchema: () => Promise<typeof import("*.vue")>;
|
@@ -52,6 +54,8 @@ declare const _default: {
|
|
52
54
|
TextareaAttrEdit: () => Promise<typeof import("*.vue")>;
|
53
55
|
AttrSelectAttrEdit: () => Promise<typeof import("*.vue")>;
|
54
56
|
FormIdSelectAttrEdit: () => Promise<typeof import("*.vue")>;
|
57
|
+
ComPropMultiSelect: () => Promise<typeof import("*.vue")>;
|
58
|
+
FormIdMultiSelect: () => Promise<typeof import("*.vue")>;
|
55
59
|
TableIdSelectAttrEdit: () => Promise<typeof import("*.vue")>;
|
56
60
|
StepIdSelectAttrEdit: () => Promise<typeof import("*.vue")>;
|
57
61
|
ScheamPropertiesAttrEdit: () => Promise<typeof import("*.vue")>;
|
@@ -144,7 +148,7 @@ declare const _default: {
|
|
144
148
|
IvStep: () => Promise<typeof import("./components/iview/IvStep.js")>;
|
145
149
|
IvStepPane: () => Promise<typeof import("./components/IvWizard/step-pane.vue")>;
|
146
150
|
IvSwitch: () => Promise<typeof import("./components/iview/IvSwitch.js")>;
|
147
|
-
IvTable: () => Promise<typeof import("
|
151
|
+
IvTable: () => Promise<typeof import("*.vue")>;
|
148
152
|
IvTableFixed: () => Promise<typeof import("*.vue")>;
|
149
153
|
IvTag: () => Promise<typeof import("./components/iview/IvTag.js")>;
|
150
154
|
IvTagSelect: () => Promise<typeof import("*.vue")>;
|
@@ -0,0 +1,17 @@
|
|
1
|
+
declare const _default: {
|
2
|
+
AuthOption: {
|
3
|
+
properties: {
|
4
|
+
customPermission: {
|
5
|
+
inputType: {
|
6
|
+
type: string;
|
7
|
+
on: {
|
8
|
+
'on-change': ({ model }: {
|
9
|
+
model: any;
|
10
|
+
}, val: string[]) => void;
|
11
|
+
};
|
12
|
+
};
|
13
|
+
};
|
14
|
+
};
|
15
|
+
};
|
16
|
+
};
|
17
|
+
export default _default;
|
@@ -138,6 +138,8 @@ declare const _default: {
|
|
138
138
|
dot: boolean;
|
139
139
|
icon: string;
|
140
140
|
to: string;
|
141
|
+
_uniqueId: string;
|
142
|
+
nodeKey: number;
|
141
143
|
hidden?: undefined;
|
142
144
|
} | {
|
143
145
|
title: string;
|
@@ -146,9 +148,13 @@ declare const _default: {
|
|
146
148
|
hidden: boolean;
|
147
149
|
icon: string;
|
148
150
|
to: string;
|
151
|
+
_uniqueId: string;
|
152
|
+
nodeKey: number;
|
149
153
|
isBadge?: undefined;
|
150
154
|
dot?: undefined;
|
151
155
|
})[];
|
156
|
+
_uniqueId: string;
|
157
|
+
nodeKey: number;
|
152
158
|
text?: undefined;
|
153
159
|
type?: undefined;
|
154
160
|
} | {
|
@@ -161,6 +167,8 @@ declare const _default: {
|
|
161
167
|
expand: boolean;
|
162
168
|
icon: string;
|
163
169
|
to: string;
|
170
|
+
_uniqueId: string;
|
171
|
+
nodeKey: number;
|
164
172
|
children?: undefined;
|
165
173
|
})[];
|
166
174
|
};
|
@@ -1,23 +1,23 @@
|
|
1
1
|
{
|
2
|
-
"date": "
|
2
|
+
"date": "20240612112525",
|
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.5",
|
8
|
+
"@fly-vue/core": "1.8.5",
|
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.5",
|
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.5",
|
13
|
+
"@fly-vue/lcdp-designer-extra": "1.8.5",
|
14
|
+
"@fly-vue/lcdp-engine": "1.8.5",
|
15
|
+
"@fly-vue/lcdp-micro": "1.8.5",
|
16
|
+
"@fly-vue/lcdp-orch": "1.8.5",
|
17
|
+
"@fly-vue/lcdp-schema": "1.8.5",
|
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.5",
|
20
|
+
"@fly-vue/use": "1.8.5"
|
21
21
|
},
|
22
22
|
"moduleDependencies": [
|
23
23
|
"@fly-vue/core",
|
@@ -38,5 +38,5 @@
|
|
38
38
|
"name": "@fly-vue/lcdp-iview",
|
39
39
|
"npmPacks": [
|
40
40
|
],
|
41
|
-
"version": "1.8.
|
41
|
+
"version": "1.8.5"
|
42
42
|
}
|