cnhis-design-vue 3.2.7-beta.13 → 3.2.7-beta.14
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/README.md +87 -87
- package/es/components/classification/index.d.ts +21 -6
- package/es/components/classification/src/components/search-filter/index.vue.d.ts +21 -6
- package/es/components/classification/src/components/set-classification/index.vue.d.ts +21 -6
- package/es/components/classification/src/index.vue.d.ts +21 -6
- package/es/components/field-set/src/FieldColor.vue.d.ts +2 -2
- package/es/components/field-set/src/FieldFilter.vue.d.ts +2 -2
- package/es/components/field-set/src/FieldSet.vue.d.ts +4 -4
- package/es/components/field-set/src/components/Row.vue.d.ts +2 -2
- package/es/components/select-label/src/LabelFormContent.vue2.js +1 -1
- package/es/components/table-filter/src/components/classify-filter/ValueCfg.vue.d.ts +21 -6
- package/es/components/table-filter/src/components/classify-filter/components/SelectDynamic.vue.d.ts +37 -20
- package/es/components/table-filter/src/components/classify-filter/components/SelectDynamic.vue2.js +1 -1
- package/es/components/table-filter/src/components/classify-filter/components/index.d.ts +21 -6
- package/es/components/table-filter/src/components/classify-filter/index.vue.d.ts +21 -6
- package/es/components/table-filter/src/components/render-widget/components/SelectDynamic.vue.d.ts +33 -18
- package/es/components/table-filter/src/components/render-widget/components/SelectDynamic.vue2.js +1 -1
- package/es/components/table-filter/src/components/render-widget/components/SelectDynamicOption/index.vue.d.ts +13 -0
- package/es/components/table-filter/src/components/render-widget/components/SelectDynamicOption/index.vue2.js +1 -1
- package/es/components/table-filter/src/components/render-widget/components/index.d.ts +17 -4
- package/es/components/table-filter/src/components/render-widget/widgetCfgMaps.d.ts +17 -4
- package/es/shared/assets/img/defaultCover/10review_successful.png.js +1 -1
- package/es/shared/assets/img/defaultCover/11review_fail.png.js +1 -1
- package/es/shared/assets/img/defaultCover/12no_setting.png.js +1 -1
- package/es/shared/assets/img/defaultCover/13no_menu_setting.png.js +1 -1
- package/es/shared/assets/img/defaultCover/14no_call_setting.png.js +1 -1
- package/es/shared/assets/img/defaultCover/15no_use_tag.png.js +1 -1
- package/es/shared/assets/img/defaultCover/16no_table_data.png.js +1 -1
- package/es/shared/assets/img/defaultCover/1location.png.js +1 -1
- package/es/shared/assets/img/defaultCover/2notfound.png.js +1 -1
- package/es/shared/assets/img/defaultCover/3loading.png.js +1 -1
- package/es/shared/assets/img/defaultCover/4no_permission.png.js +1 -1
- package/es/shared/assets/img/defaultCover/5no_data.png.js +1 -1
- package/es/shared/assets/img/defaultCover/6no_network.png.js +1 -1
- package/es/shared/assets/img/defaultCover/7no_doctor.png.js +1 -1
- package/es/shared/assets/img/defaultCover/8system_error.png.js +1 -1
- package/es/shared/assets/img/defaultCover/9system_upgrade.png.js +1 -1
- package/es/shared/assets/img/failure.png.js +1 -1
- package/es/shared/assets/img/no-permission.png.js +1 -1
- package/es/shared/assets/img/nodata.png.js +1 -1
- package/es/shared/assets/img/notfound.png.js +1 -1
- package/es/shared/assets/img/qr.png.js +1 -1
- package/es/shared/assets/img/success.png.js +1 -1
- package/es/shared/assets/img/table_style_2.png.js +1 -1
- package/es/shared/assets/img/video.png.js +1 -1
- package/es/shared/assets/img/video_default_cover.png.js +1 -1
- package/es/shared/assets/img/xb_big.png.js +1 -1
- package/es/shared/assets/img/xb_small.png.js +1 -1
- package/es/shared/package.json.js +1 -1
- package/package.json +2 -2
- package/es/components/bpmn-workflow/src/BpmnWorkflow.d.ts +0 -0
- package/es/components/bpmn-workflow/types/BpmnViewer.d.ts +0 -1
- package/es/components/bpmn-workflow/types/ModelingModule.d.ts +0 -1
- package/es/components/bpmn-workflow/types/MoveCanvasModule.d.ts +0 -1
- package/es/shared/components/VueDraggable/src/vuedraggable.d.ts +0 -86
- package/es/shared/utils/fabricjs/index.d.ts +0 -6823
- package/es/shared/utils/tapable/index.d.ts +0 -139
package/README.md
CHANGED
@@ -1,87 +1,87 @@
|
|
1
|
-
# 安装
|
2
|
-
|
3
|
-
```shell
|
4
|
-
npm i cnhis-design-vue@[版本号]
|
5
|
-
# or
|
6
|
-
yarn add cnhis-design-vue@[版本号] #推荐
|
7
|
-
```
|
8
|
-
|
9
|
-
## 1.全局引入
|
10
|
-
|
11
|
-
```typescript
|
12
|
-
// main.ts
|
13
|
-
import { createApp } from 'vue';
|
14
|
-
import App from './App.vue';
|
15
|
-
import 'cnhis-design-vue/es/packages/index.css';
|
16
|
-
import cui from 'cnhis-design-vue';
|
17
|
-
|
18
|
-
const app = createApp(App);
|
19
|
-
app.use(cui).mount('#app');
|
20
|
-
```
|
21
|
-
|
22
|
-
## 2. 按需引入
|
23
|
-
|
24
|
-
组件现在支持了自动按需引入, 但是样式文件需要额外的处理
|
25
|
-
|
26
|
-
### 2.1 样式处理方式1 (按需引入样式)
|
27
|
-
|
28
|
-
```shell
|
29
|
-
# 安装自动导入样式的插件
|
30
|
-
npm i -d vite-plugin-style-import
|
31
|
-
```
|
32
|
-
|
33
|
-
```typescript
|
34
|
-
// vite.config.ts
|
35
|
-
import { defineConfig } from 'vite';
|
36
|
-
import { createStyleImportPlugin } from 'vite-plugin-style-import';
|
37
|
-
|
38
|
-
export default defineConfig({
|
39
|
-
plugins: [
|
40
|
-
// ...otherPlugins
|
41
|
-
createStyleImportPlugin({
|
42
|
-
libs: [
|
43
|
-
{
|
44
|
-
libraryName: 'cnhis-design-vue',
|
45
|
-
esModule: true,
|
46
|
-
ensureStyleFile: true,
|
47
|
-
resolveStyle: name => {
|
48
|
-
return `cnhis-design-vue/es/components/${ name.slice(2) }/style/index.css`;
|
49
|
-
}
|
50
|
-
}
|
51
|
-
]
|
52
|
-
})
|
53
|
-
]
|
54
|
-
});
|
55
|
-
```
|
56
|
-
|
57
|
-
### 2.2 样式处理方式2 (全局引入样式)
|
58
|
-
|
59
|
-
```typescript
|
60
|
-
// main.ts
|
61
|
-
import 'cnhis-design-vue/es/components/index.css';
|
62
|
-
```
|
63
|
-
|
64
|
-
## 3.FAQ
|
65
|
-
|
66
|
-
### 3.1 项目打包后样式丢失
|
67
|
-
|
68
|
-
处理方法, 将 cnhis-design-vue 从 vendor 包中移除 (没有出现此问题则不需要)
|
69
|
-
|
70
|
-
```typescript
|
71
|
-
// vite.config.ts
|
72
|
-
import { defineConfig } from 'vite';
|
73
|
-
|
74
|
-
export default defineConfig({
|
75
|
-
build: {
|
76
|
-
rollupOptions: {
|
77
|
-
// ..otherOptions
|
78
|
-
output: {
|
79
|
-
dir: './dist',
|
80
|
-
manualChunks: {
|
81
|
-
'cnhis-vendor': ['cnhis-design-vue']
|
82
|
-
}
|
83
|
-
}
|
84
|
-
}
|
85
|
-
}
|
86
|
-
});
|
87
|
-
```
|
1
|
+
# 安装
|
2
|
+
|
3
|
+
```shell
|
4
|
+
npm i cnhis-design-vue@[版本号]
|
5
|
+
# or
|
6
|
+
yarn add cnhis-design-vue@[版本号] #推荐
|
7
|
+
```
|
8
|
+
|
9
|
+
## 1.全局引入
|
10
|
+
|
11
|
+
```typescript
|
12
|
+
// main.ts
|
13
|
+
import { createApp } from 'vue';
|
14
|
+
import App from './App.vue';
|
15
|
+
import 'cnhis-design-vue/es/packages/index.css';
|
16
|
+
import cui from 'cnhis-design-vue';
|
17
|
+
|
18
|
+
const app = createApp(App);
|
19
|
+
app.use(cui).mount('#app');
|
20
|
+
```
|
21
|
+
|
22
|
+
## 2. 按需引入
|
23
|
+
|
24
|
+
组件现在支持了自动按需引入, 但是样式文件需要额外的处理
|
25
|
+
|
26
|
+
### 2.1 样式处理方式1 (按需引入样式)
|
27
|
+
|
28
|
+
```shell
|
29
|
+
# 安装自动导入样式的插件
|
30
|
+
npm i -d vite-plugin-style-import
|
31
|
+
```
|
32
|
+
|
33
|
+
```typescript
|
34
|
+
// vite.config.ts
|
35
|
+
import { defineConfig } from 'vite';
|
36
|
+
import { createStyleImportPlugin } from 'vite-plugin-style-import';
|
37
|
+
|
38
|
+
export default defineConfig({
|
39
|
+
plugins: [
|
40
|
+
// ...otherPlugins
|
41
|
+
createStyleImportPlugin({
|
42
|
+
libs: [
|
43
|
+
{
|
44
|
+
libraryName: 'cnhis-design-vue',
|
45
|
+
esModule: true,
|
46
|
+
ensureStyleFile: true,
|
47
|
+
resolveStyle: name => {
|
48
|
+
return `cnhis-design-vue/es/components/${ name.slice(2) }/style/index.css`;
|
49
|
+
}
|
50
|
+
}
|
51
|
+
]
|
52
|
+
})
|
53
|
+
]
|
54
|
+
});
|
55
|
+
```
|
56
|
+
|
57
|
+
### 2.2 样式处理方式2 (全局引入样式)
|
58
|
+
|
59
|
+
```typescript
|
60
|
+
// main.ts
|
61
|
+
import 'cnhis-design-vue/es/components/index.css';
|
62
|
+
```
|
63
|
+
|
64
|
+
## 3.FAQ
|
65
|
+
|
66
|
+
### 3.1 项目打包后样式丢失
|
67
|
+
|
68
|
+
处理方法, 将 cnhis-design-vue 从 vendor 包中移除 (没有出现此问题则不需要)
|
69
|
+
|
70
|
+
```typescript
|
71
|
+
// vite.config.ts
|
72
|
+
import { defineConfig } from 'vite';
|
73
|
+
|
74
|
+
export default defineConfig({
|
75
|
+
build: {
|
76
|
+
rollupOptions: {
|
77
|
+
// ..otherOptions
|
78
|
+
output: {
|
79
|
+
dir: './dist',
|
80
|
+
manualChunks: {
|
81
|
+
'cnhis-vendor': ['cnhis-design-vue']
|
82
|
+
}
|
83
|
+
}
|
84
|
+
}
|
85
|
+
}
|
86
|
+
});
|
87
|
+
```
|
@@ -1114,7 +1114,7 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
1114
1114
|
default: null;
|
1115
1115
|
};
|
1116
1116
|
modelValue: {
|
1117
|
-
type: (
|
1117
|
+
type: import("vue").PropType<import("../../shared/types").AnyObject[]>;
|
1118
1118
|
default: null;
|
1119
1119
|
};
|
1120
1120
|
}, {
|
@@ -1125,7 +1125,7 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
1125
1125
|
default: null;
|
1126
1126
|
};
|
1127
1127
|
modelValue: {
|
1128
|
-
type: (
|
1128
|
+
type: import("vue").PropType<import("../../shared/types").AnyObject[]>;
|
1129
1129
|
default: null;
|
1130
1130
|
};
|
1131
1131
|
}>> & {
|
@@ -1133,6 +1133,7 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
1133
1133
|
}>>;
|
1134
1134
|
getDynamicSelectData: (params: any, filterApiConfig: any) => Promise<any>;
|
1135
1135
|
emit: (event: "update:modelValue", ...args: any[]) => void;
|
1136
|
+
selectDynamicRef: any;
|
1136
1137
|
isLoading: import("vue").Ref<boolean>;
|
1137
1138
|
filterApiConfig: import("../../shared/types").AnyObject;
|
1138
1139
|
classifyFilterList: import("vue").Ref<import("../../shared/types").AnyObject[]>;
|
@@ -1148,8 +1149,8 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
1148
1149
|
isMultiple: import("vue").ComputedRef<boolean>;
|
1149
1150
|
dynamicOptionInfos: import("vue").ComputedRef<any>;
|
1150
1151
|
isLastPage: import("vue").ComputedRef<boolean>;
|
1151
|
-
originList: import("vue").ComputedRef<any>;
|
1152
|
-
valueCp: import("vue").ComputedRef<any>;
|
1152
|
+
originList: import("vue").ComputedRef<any[]>;
|
1153
|
+
valueCp: import("vue").ComputedRef<string | any[]>;
|
1153
1154
|
isInitRequest: import("vue").ComputedRef<boolean>;
|
1154
1155
|
setOptionActive: (selectIds: string[]) => void;
|
1155
1156
|
handleUpdateSelect: (value: string[] | null) => void;
|
@@ -1165,8 +1166,13 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
1165
1166
|
[key: string]: any;
|
1166
1167
|
}>;
|
1167
1168
|
init: () => void;
|
1169
|
+
saveDynamicBaseList: (selectValue: any[] | null) => void;
|
1168
1170
|
NSelect: any;
|
1169
1171
|
SelectDynamicOption: import("vue").DefineComponent<{
|
1172
|
+
oldValue: {
|
1173
|
+
type: import("vue").PropType<import("../../shared/types").AnyObject[]>;
|
1174
|
+
default: () => never[];
|
1175
|
+
};
|
1170
1176
|
dynamicOptionInfo: {
|
1171
1177
|
type: import("vue").PropType<import("../../shared/types").AnyObject>;
|
1172
1178
|
default: () => {};
|
@@ -1202,6 +1208,10 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
1202
1208
|
}, {
|
1203
1209
|
selectMinWidth: number;
|
1204
1210
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
1211
|
+
oldValue: {
|
1212
|
+
type: import("vue").PropType<import("../../shared/types").AnyObject[]>;
|
1213
|
+
default: () => never[];
|
1214
|
+
};
|
1205
1215
|
dynamicOptionInfo: {
|
1206
1216
|
type: import("vue").PropType<import("../../shared/types").AnyObject>;
|
1207
1217
|
default: () => {};
|
@@ -1290,6 +1300,10 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
1290
1300
|
ArrowBack: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
1291
1301
|
ArrowForward: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
1292
1302
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("updateSelect" | "updatePage")[], "updateSelect" | "updatePage", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
1303
|
+
oldValue: {
|
1304
|
+
type: import("vue").PropType<import("../../shared/types").AnyObject[]>;
|
1305
|
+
default: () => never[];
|
1306
|
+
};
|
1293
1307
|
dynamicOptionInfo: {
|
1294
1308
|
type: import("vue").PropType<import("../../shared/types").AnyObject>;
|
1295
1309
|
default: () => {};
|
@@ -1328,6 +1342,7 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
1328
1342
|
}, {
|
1329
1343
|
isMultiple: boolean;
|
1330
1344
|
loading: boolean;
|
1345
|
+
oldValue: import("../../shared/types").AnyObject[];
|
1331
1346
|
dynamicOptionInfo: import("../../shared/types").AnyObject;
|
1332
1347
|
fieldTitleList: import("../../shared/types").AnyObject[];
|
1333
1348
|
optionList: import("../../shared/types").AnyObject[];
|
@@ -1341,13 +1356,13 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
1341
1356
|
default: null;
|
1342
1357
|
};
|
1343
1358
|
modelValue: {
|
1344
|
-
type: (
|
1359
|
+
type: import("vue").PropType<import("../../shared/types").AnyObject[]>;
|
1345
1360
|
default: null;
|
1346
1361
|
};
|
1347
1362
|
}>> & {
|
1348
1363
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
1349
1364
|
}, {
|
1350
|
-
modelValue:
|
1365
|
+
modelValue: import("../../shared/types").AnyObject[];
|
1351
1366
|
paramCfg: Record<string, any>;
|
1352
1367
|
}>;
|
1353
1368
|
InputNumberGroup: import("vue").DefineComponent<{
|
@@ -578,7 +578,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
578
578
|
default: null;
|
579
579
|
};
|
580
580
|
modelValue: {
|
581
|
-
type: (
|
581
|
+
type: import("vue").PropType<import("../../../../../shared/types").AnyObject[]>;
|
582
582
|
default: null;
|
583
583
|
};
|
584
584
|
}, {
|
@@ -589,7 +589,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
589
589
|
default: null;
|
590
590
|
};
|
591
591
|
modelValue: {
|
592
|
-
type: (
|
592
|
+
type: import("vue").PropType<import("../../../../../shared/types").AnyObject[]>;
|
593
593
|
default: null;
|
594
594
|
};
|
595
595
|
}>> & {
|
@@ -597,6 +597,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
597
597
|
}>>;
|
598
598
|
getDynamicSelectData: (params: any, filterApiConfig: any) => Promise<any>;
|
599
599
|
emit: (event: "update:modelValue", ...args: any[]) => void;
|
600
|
+
selectDynamicRef: any;
|
600
601
|
isLoading: import("vue").Ref<boolean>;
|
601
602
|
filterApiConfig: import("../../../../../shared/types").AnyObject;
|
602
603
|
classifyFilterList: import("vue").Ref<import("../../../../../shared/types").AnyObject[]>;
|
@@ -612,8 +613,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
612
613
|
isMultiple: import("vue").ComputedRef<boolean>;
|
613
614
|
dynamicOptionInfos: import("vue").ComputedRef<any>;
|
614
615
|
isLastPage: import("vue").ComputedRef<boolean>;
|
615
|
-
originList: import("vue").ComputedRef<any>;
|
616
|
-
valueCp: import("vue").ComputedRef<any>;
|
616
|
+
originList: import("vue").ComputedRef<any[]>;
|
617
|
+
valueCp: import("vue").ComputedRef<string | any[]>;
|
617
618
|
isInitRequest: import("vue").ComputedRef<boolean>;
|
618
619
|
setOptionActive: (selectIds: string[]) => void;
|
619
620
|
handleUpdateSelect: (value: string[] | null) => void;
|
@@ -629,8 +630,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
629
630
|
[key: string]: any;
|
630
631
|
}>;
|
631
632
|
init: () => void;
|
633
|
+
saveDynamicBaseList: (selectValue: any[] | null) => void;
|
632
634
|
NSelect: any;
|
633
635
|
SelectDynamicOption: import("vue").DefineComponent<{
|
636
|
+
oldValue: {
|
637
|
+
type: import("vue").PropType<import("../../../../../shared/types").AnyObject[]>;
|
638
|
+
default: () => never[];
|
639
|
+
};
|
634
640
|
dynamicOptionInfo: {
|
635
641
|
type: import("vue").PropType<import("../../../../../shared/types").AnyObject>;
|
636
642
|
default: () => {};
|
@@ -666,6 +672,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
666
672
|
}, {
|
667
673
|
selectMinWidth: number;
|
668
674
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
675
|
+
oldValue: {
|
676
|
+
type: import("vue").PropType<import("../../../../../shared/types").AnyObject[]>;
|
677
|
+
default: () => never[];
|
678
|
+
};
|
669
679
|
dynamicOptionInfo: {
|
670
680
|
type: import("vue").PropType<import("../../../../../shared/types").AnyObject>;
|
671
681
|
default: () => {};
|
@@ -754,6 +764,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
754
764
|
ArrowBack: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
755
765
|
ArrowForward: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
756
766
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("updateSelect" | "updatePage")[], "updateSelect" | "updatePage", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
767
|
+
oldValue: {
|
768
|
+
type: import("vue").PropType<import("../../../../../shared/types").AnyObject[]>;
|
769
|
+
default: () => never[];
|
770
|
+
};
|
757
771
|
dynamicOptionInfo: {
|
758
772
|
type: import("vue").PropType<import("../../../../../shared/types").AnyObject>;
|
759
773
|
default: () => {};
|
@@ -792,6 +806,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
792
806
|
}, {
|
793
807
|
isMultiple: boolean;
|
794
808
|
loading: boolean;
|
809
|
+
oldValue: import("../../../../../shared/types").AnyObject[];
|
795
810
|
dynamicOptionInfo: import("../../../../../shared/types").AnyObject;
|
796
811
|
fieldTitleList: import("../../../../../shared/types").AnyObject[];
|
797
812
|
optionList: import("../../../../../shared/types").AnyObject[];
|
@@ -805,13 +820,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
805
820
|
default: null;
|
806
821
|
};
|
807
822
|
modelValue: {
|
808
|
-
type: (
|
823
|
+
type: import("vue").PropType<import("../../../../../shared/types").AnyObject[]>;
|
809
824
|
default: null;
|
810
825
|
};
|
811
826
|
}>> & {
|
812
827
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
813
828
|
}, {
|
814
|
-
modelValue:
|
829
|
+
modelValue: import("../../../../../shared/types").AnyObject[];
|
815
830
|
paramCfg: Record<string, any>;
|
816
831
|
}>;
|
817
832
|
InputNumberGroup: import("vue").DefineComponent<{
|
@@ -872,7 +872,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
872
872
|
default: null;
|
873
873
|
};
|
874
874
|
modelValue: {
|
875
|
-
type: (
|
875
|
+
type: import("vue").PropType<import("../../../../../shared/types").AnyObject[]>;
|
876
876
|
default: null;
|
877
877
|
};
|
878
878
|
}, {
|
@@ -883,7 +883,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
883
883
|
default: null;
|
884
884
|
};
|
885
885
|
modelValue: {
|
886
|
-
type: (
|
886
|
+
type: import("vue").PropType<import("../../../../../shared/types").AnyObject[]>;
|
887
887
|
default: null;
|
888
888
|
};
|
889
889
|
}>> & {
|
@@ -891,6 +891,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
891
891
|
}>>;
|
892
892
|
getDynamicSelectData: (params: any, filterApiConfig: any) => Promise<any>;
|
893
893
|
emit: (event: "update:modelValue", ...args: any[]) => void;
|
894
|
+
selectDynamicRef: any;
|
894
895
|
isLoading: import("vue").Ref<boolean>;
|
895
896
|
filterApiConfig: import("../../../../../shared/types").AnyObject;
|
896
897
|
classifyFilterList: import("vue").Ref<import("../../../../../shared/types").AnyObject[]>;
|
@@ -906,8 +907,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
906
907
|
isMultiple: import("vue").ComputedRef<boolean>;
|
907
908
|
dynamicOptionInfos: import("vue").ComputedRef<any>;
|
908
909
|
isLastPage: import("vue").ComputedRef<boolean>;
|
909
|
-
originList: import("vue").ComputedRef<any>;
|
910
|
-
valueCp: import("vue").ComputedRef<any>;
|
910
|
+
originList: import("vue").ComputedRef<any[]>;
|
911
|
+
valueCp: import("vue").ComputedRef<string | any[]>;
|
911
912
|
isInitRequest: import("vue").ComputedRef<boolean>;
|
912
913
|
setOptionActive: (selectIds: string[]) => void;
|
913
914
|
handleUpdateSelect: (value: string[] | null) => void;
|
@@ -923,8 +924,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
923
924
|
[key: string]: any;
|
924
925
|
}>;
|
925
926
|
init: () => void;
|
927
|
+
saveDynamicBaseList: (selectValue: any[] | null) => void;
|
926
928
|
NSelect: any;
|
927
929
|
SelectDynamicOption: import("vue").DefineComponent<{
|
930
|
+
oldValue: {
|
931
|
+
type: import("vue").PropType<import("../../../../../shared/types").AnyObject[]>;
|
932
|
+
default: () => never[];
|
933
|
+
};
|
928
934
|
dynamicOptionInfo: {
|
929
935
|
type: import("vue").PropType<import("../../../../../shared/types").AnyObject>;
|
930
936
|
default: () => {};
|
@@ -960,6 +966,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
960
966
|
}, {
|
961
967
|
selectMinWidth: number;
|
962
968
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
969
|
+
oldValue: {
|
970
|
+
type: import("vue").PropType<import("../../../../../shared/types").AnyObject[]>;
|
971
|
+
default: () => never[];
|
972
|
+
};
|
963
973
|
dynamicOptionInfo: {
|
964
974
|
type: import("vue").PropType<import("../../../../../shared/types").AnyObject>;
|
965
975
|
default: () => {};
|
@@ -1048,6 +1058,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
1048
1058
|
ArrowBack: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
1049
1059
|
ArrowForward: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
1050
1060
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("updateSelect" | "updatePage")[], "updateSelect" | "updatePage", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
1061
|
+
oldValue: {
|
1062
|
+
type: import("vue").PropType<import("../../../../../shared/types").AnyObject[]>;
|
1063
|
+
default: () => never[];
|
1064
|
+
};
|
1051
1065
|
dynamicOptionInfo: {
|
1052
1066
|
type: import("vue").PropType<import("../../../../../shared/types").AnyObject>;
|
1053
1067
|
default: () => {};
|
@@ -1086,6 +1100,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1086
1100
|
}, {
|
1087
1101
|
isMultiple: boolean;
|
1088
1102
|
loading: boolean;
|
1103
|
+
oldValue: import("../../../../../shared/types").AnyObject[];
|
1089
1104
|
dynamicOptionInfo: import("../../../../../shared/types").AnyObject;
|
1090
1105
|
fieldTitleList: import("../../../../../shared/types").AnyObject[];
|
1091
1106
|
optionList: import("../../../../../shared/types").AnyObject[];
|
@@ -1099,13 +1114,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
1099
1114
|
default: null;
|
1100
1115
|
};
|
1101
1116
|
modelValue: {
|
1102
|
-
type: (
|
1117
|
+
type: import("vue").PropType<import("../../../../../shared/types").AnyObject[]>;
|
1103
1118
|
default: null;
|
1104
1119
|
};
|
1105
1120
|
}>> & {
|
1106
1121
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
1107
1122
|
}, {
|
1108
|
-
modelValue:
|
1123
|
+
modelValue: import("../../../../../shared/types").AnyObject[];
|
1109
1124
|
paramCfg: Record<string, any>;
|
1110
1125
|
}>;
|
1111
1126
|
InputNumberGroup: import("vue").DefineComponent<{
|
@@ -1116,7 +1116,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1116
1116
|
default: null;
|
1117
1117
|
};
|
1118
1118
|
modelValue: {
|
1119
|
-
type:
|
1119
|
+
type: PropType<AnyObject[]>;
|
1120
1120
|
default: null;
|
1121
1121
|
};
|
1122
1122
|
}, {
|
@@ -1127,7 +1127,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1127
1127
|
default: null;
|
1128
1128
|
};
|
1129
1129
|
modelValue: {
|
1130
|
-
type:
|
1130
|
+
type: PropType<AnyObject[]>;
|
1131
1131
|
default: null;
|
1132
1132
|
};
|
1133
1133
|
}>> & {
|
@@ -1135,6 +1135,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1135
1135
|
}>>;
|
1136
1136
|
getDynamicSelectData: (params: any, filterApiConfig: any) => Promise<any>;
|
1137
1137
|
emit: (event: "update:modelValue", ...args: any[]) => void;
|
1138
|
+
selectDynamicRef: any;
|
1138
1139
|
isLoading: import("vue").Ref<boolean>;
|
1139
1140
|
filterApiConfig: AnyObject;
|
1140
1141
|
classifyFilterList: import("vue").Ref<AnyObject[]>;
|
@@ -1150,8 +1151,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
1150
1151
|
isMultiple: import("vue").ComputedRef<boolean>;
|
1151
1152
|
dynamicOptionInfos: import("vue").ComputedRef<any>;
|
1152
1153
|
isLastPage: import("vue").ComputedRef<boolean>;
|
1153
|
-
originList: import("vue").ComputedRef<any>;
|
1154
|
-
valueCp: import("vue").ComputedRef<any>;
|
1154
|
+
originList: import("vue").ComputedRef<any[]>;
|
1155
|
+
valueCp: import("vue").ComputedRef<string | any[]>;
|
1155
1156
|
isInitRequest: import("vue").ComputedRef<boolean>;
|
1156
1157
|
setOptionActive: (selectIds: string[]) => void;
|
1157
1158
|
handleUpdateSelect: (value: string[] | null) => void;
|
@@ -1167,8 +1168,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
1167
1168
|
[key: string]: any;
|
1168
1169
|
}>;
|
1169
1170
|
init: () => void;
|
1171
|
+
saveDynamicBaseList: (selectValue: any[] | null) => void;
|
1170
1172
|
NSelect: any;
|
1171
1173
|
SelectDynamicOption: import("vue").DefineComponent<{
|
1174
|
+
oldValue: {
|
1175
|
+
type: PropType<AnyObject[]>;
|
1176
|
+
default: () => never[];
|
1177
|
+
};
|
1172
1178
|
dynamicOptionInfo: {
|
1173
1179
|
type: PropType<AnyObject>;
|
1174
1180
|
default: () => {};
|
@@ -1204,6 +1210,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
1204
1210
|
}, {
|
1205
1211
|
selectMinWidth: number;
|
1206
1212
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
1213
|
+
oldValue: {
|
1214
|
+
type: PropType<AnyObject[]>;
|
1215
|
+
default: () => never[];
|
1216
|
+
};
|
1207
1217
|
dynamicOptionInfo: {
|
1208
1218
|
type: PropType<AnyObject>;
|
1209
1219
|
default: () => {};
|
@@ -1292,6 +1302,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
1292
1302
|
ArrowBack: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
1293
1303
|
ArrowForward: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
1294
1304
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("updateSelect" | "updatePage")[], "updateSelect" | "updatePage", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
1305
|
+
oldValue: {
|
1306
|
+
type: PropType<AnyObject[]>;
|
1307
|
+
default: () => never[];
|
1308
|
+
};
|
1295
1309
|
dynamicOptionInfo: {
|
1296
1310
|
type: PropType<AnyObject>;
|
1297
1311
|
default: () => {};
|
@@ -1330,6 +1344,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1330
1344
|
}, {
|
1331
1345
|
isMultiple: boolean;
|
1332
1346
|
loading: boolean;
|
1347
|
+
oldValue: AnyObject[];
|
1333
1348
|
dynamicOptionInfo: AnyObject;
|
1334
1349
|
fieldTitleList: AnyObject[];
|
1335
1350
|
optionList: AnyObject[];
|
@@ -1343,13 +1358,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
1343
1358
|
default: null;
|
1344
1359
|
};
|
1345
1360
|
modelValue: {
|
1346
|
-
type:
|
1361
|
+
type: PropType<AnyObject[]>;
|
1347
1362
|
default: null;
|
1348
1363
|
};
|
1349
1364
|
}>> & {
|
1350
1365
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
1351
1366
|
}, {
|
1352
|
-
modelValue:
|
1367
|
+
modelValue: AnyObject[];
|
1353
1368
|
paramCfg: Record<string, any>;
|
1354
1369
|
}>;
|
1355
1370
|
InputNumberGroup: import("vue").DefineComponent<{
|
@@ -466,11 +466,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
466
466
|
hide: boolean;
|
467
467
|
}>;
|
468
468
|
draggable: boolean;
|
469
|
+
fieldDescribeMode: "column" | "tooltip";
|
470
|
+
isFieldSet: boolean;
|
469
471
|
idx: number;
|
470
472
|
isHighlight: boolean;
|
471
473
|
isHighlightRow: boolean;
|
472
|
-
isFieldSet: boolean;
|
473
|
-
fieldDescribeMode: "column" | "tooltip";
|
474
474
|
}>;
|
475
475
|
EditDialog: import("vue").DefineComponent<{
|
476
476
|
visible: {
|
@@ -488,11 +488,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
488
488
|
hide: boolean;
|
489
489
|
}>;
|
490
490
|
draggable: boolean;
|
491
|
+
fieldDescribeMode: "column" | "tooltip";
|
492
|
+
isFieldSet: boolean;
|
491
493
|
idx: number;
|
492
494
|
isHighlight: boolean;
|
493
495
|
isHighlightRow: boolean;
|
494
|
-
isFieldSet: boolean;
|
495
|
-
fieldDescribeMode: "column" | "tooltip";
|
496
496
|
}>;
|
497
497
|
setStyle: typeof setStyle;
|
498
498
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "save" | "reset")[], "close" | "save" | "reset", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
@@ -612,11 +612,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
612
612
|
hide: boolean;
|
613
613
|
}>;
|
614
614
|
draggable: boolean;
|
615
|
+
fieldDescribeMode: "column" | "tooltip";
|
616
|
+
isFieldSet: boolean;
|
615
617
|
idx: number;
|
616
618
|
isHighlight: boolean;
|
617
619
|
isHighlightRow: boolean;
|
618
|
-
isFieldSet: boolean;
|
619
|
-
fieldDescribeMode: "column" | "tooltip";
|
620
620
|
}>;
|
621
621
|
isArray: {
|
622
622
|
(value?: any): value is any[];
|
@@ -723,11 +723,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
723
723
|
}>[];
|
724
724
|
rowDraggable: boolean;
|
725
725
|
showSeq: boolean;
|
726
|
+
showSearch: boolean;
|
726
727
|
footerFlag: boolean;
|
727
|
-
fieldDescribeMode: "column" | "tooltip";
|
728
728
|
customColumns: FieldSetColumnItem[];
|
729
|
-
showSearch: boolean;
|
730
729
|
showSortPriority: boolean;
|
731
730
|
showHeadFilter: boolean;
|
731
|
+
fieldDescribeMode: "column" | "tooltip";
|
732
732
|
}>;
|
733
733
|
export default _default;
|
@@ -317,10 +317,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
317
317
|
hide: boolean;
|
318
318
|
}>;
|
319
319
|
draggable: boolean;
|
320
|
+
fieldDescribeMode: "column" | "tooltip";
|
321
|
+
isFieldSet: boolean;
|
320
322
|
idx: number;
|
321
323
|
isHighlight: boolean;
|
322
324
|
isHighlightRow: boolean;
|
323
|
-
isFieldSet: boolean;
|
324
|
-
fieldDescribeMode: "column" | "tooltip";
|
325
325
|
}>;
|
326
326
|
export default _default;
|