cnhis-design-vue 3.2.7-beta.12 → 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/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 +3 -3
- package/es/components/field-set/src/FieldFilter.vue.d.ts +3 -3
- package/es/components/field-set/src/FieldSet.vue.d.ts +5 -5
- package/es/components/field-set/src/components/Row.vue.d.ts +3 -3
- package/es/components/form-render/src/types/index.d.ts +1 -1
- package/es/components/form-render/src/utils/business.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/package.json.js +1 -1
- package/package.json +2 -2
@@ -1210,7 +1210,7 @@ declare const Select: import("vue").DefineComponent<{
|
|
1210
1210
|
}, {}>;
|
1211
1211
|
declare const SelectDynamic: import("vue").DefineComponent<{
|
1212
1212
|
value: {
|
1213
|
-
type: (
|
1213
|
+
type: import("vue").PropType<import("../../../../../../shared/types").AnyObject[]>;
|
1214
1214
|
};
|
1215
1215
|
componentCfg: {
|
1216
1216
|
type: ObjectConstructor;
|
@@ -1223,7 +1223,7 @@ declare const SelectDynamic: import("vue").DefineComponent<{
|
|
1223
1223
|
};
|
1224
1224
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
1225
1225
|
value: {
|
1226
|
-
type: (
|
1226
|
+
type: import("vue").PropType<import("../../../../../../shared/types").AnyObject[]>;
|
1227
1227
|
};
|
1228
1228
|
componentCfg: {
|
1229
1229
|
type: ObjectConstructor;
|
@@ -1253,7 +1253,7 @@ declare const SelectDynamic: import("vue").DefineComponent<{
|
|
1253
1253
|
dynamicOptionInfos: import("vue").ComputedRef<any>;
|
1254
1254
|
isShowWhole: import("vue").ComputedRef<any>;
|
1255
1255
|
isLastPage: import("vue").ComputedRef<boolean>;
|
1256
|
-
valueCp: import("vue").ComputedRef<string |
|
1256
|
+
valueCp: import("vue").ComputedRef<string | any[] | {
|
1257
1257
|
label: any;
|
1258
1258
|
value: any;
|
1259
1259
|
} | null>;
|
@@ -1274,6 +1274,10 @@ declare const SelectDynamic: import("vue").DefineComponent<{
|
|
1274
1274
|
init: () => void;
|
1275
1275
|
NSelect: any;
|
1276
1276
|
SelectDynamicOption: import("vue").DefineComponent<{
|
1277
|
+
oldValue: {
|
1278
|
+
type: import("vue").PropType<import("../../../../../../shared/types").AnyObject[]>;
|
1279
|
+
default: () => never[];
|
1280
|
+
};
|
1277
1281
|
dynamicOptionInfo: {
|
1278
1282
|
type: import("vue").PropType<import("../../../../../../shared/types").AnyObject>;
|
1279
1283
|
default: () => {};
|
@@ -1309,6 +1313,10 @@ declare const SelectDynamic: import("vue").DefineComponent<{
|
|
1309
1313
|
}, {
|
1310
1314
|
selectMinWidth: number;
|
1311
1315
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
1316
|
+
oldValue: {
|
1317
|
+
type: import("vue").PropType<import("../../../../../../shared/types").AnyObject[]>;
|
1318
|
+
default: () => never[];
|
1319
|
+
};
|
1312
1320
|
dynamicOptionInfo: {
|
1313
1321
|
type: import("vue").PropType<import("../../../../../../shared/types").AnyObject>;
|
1314
1322
|
default: () => {};
|
@@ -1397,6 +1405,10 @@ declare const SelectDynamic: import("vue").DefineComponent<{
|
|
1397
1405
|
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<{}>>, {}>;
|
1398
1406
|
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<{}>>, {}>;
|
1399
1407
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("updateSelect" | "updatePage")[], "updateSelect" | "updatePage", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
1408
|
+
oldValue: {
|
1409
|
+
type: import("vue").PropType<import("../../../../../../shared/types").AnyObject[]>;
|
1410
|
+
default: () => never[];
|
1411
|
+
};
|
1400
1412
|
dynamicOptionInfo: {
|
1401
1413
|
type: import("vue").PropType<import("../../../../../../shared/types").AnyObject>;
|
1402
1414
|
default: () => {};
|
@@ -1435,6 +1447,7 @@ declare const SelectDynamic: import("vue").DefineComponent<{
|
|
1435
1447
|
}, {
|
1436
1448
|
isMultiple: boolean;
|
1437
1449
|
loading: boolean;
|
1450
|
+
oldValue: import("../../../../../../shared/types").AnyObject[];
|
1438
1451
|
dynamicOptionInfo: import("../../../../../../shared/types").AnyObject;
|
1439
1452
|
fieldTitleList: import("../../../../../../shared/types").AnyObject[];
|
1440
1453
|
optionList: import("../../../../../../shared/types").AnyObject[];
|
@@ -1444,7 +1457,7 @@ declare const SelectDynamic: import("vue").DefineComponent<{
|
|
1444
1457
|
}>;
|
1445
1458
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:value"[], "update:value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
1446
1459
|
value: {
|
1447
|
-
type: (
|
1460
|
+
type: import("vue").PropType<import("../../../../../../shared/types").AnyObject[]>;
|
1448
1461
|
};
|
1449
1462
|
componentCfg: {
|
1450
1463
|
type: ObjectConstructor;
|
@@ -147,7 +147,7 @@ export declare const WidgetCfgMaps: Map<string, {
|
|
147
147
|
} | {
|
148
148
|
component: import("vue").DefineComponent<{
|
149
149
|
value: {
|
150
|
-
type: (
|
150
|
+
type: import("vue").PropType<import("../../../../../shared/types").AnyObject[]>;
|
151
151
|
};
|
152
152
|
componentCfg: {
|
153
153
|
type: ObjectConstructor;
|
@@ -160,7 +160,7 @@ export declare const WidgetCfgMaps: Map<string, {
|
|
160
160
|
};
|
161
161
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
162
162
|
value: {
|
163
|
-
type: (
|
163
|
+
type: import("vue").PropType<import("../../../../../shared/types").AnyObject[]>;
|
164
164
|
};
|
165
165
|
componentCfg: {
|
166
166
|
type: ObjectConstructor;
|
@@ -190,7 +190,7 @@ export declare const WidgetCfgMaps: Map<string, {
|
|
190
190
|
dynamicOptionInfos: import("vue").ComputedRef<any>;
|
191
191
|
isShowWhole: import("vue").ComputedRef<any>;
|
192
192
|
isLastPage: import("vue").ComputedRef<boolean>;
|
193
|
-
valueCp: import("vue").ComputedRef<string |
|
193
|
+
valueCp: import("vue").ComputedRef<string | any[] | {
|
194
194
|
label: any;
|
195
195
|
value: any;
|
196
196
|
} | null>;
|
@@ -211,6 +211,10 @@ export declare const WidgetCfgMaps: Map<string, {
|
|
211
211
|
init: () => void;
|
212
212
|
NSelect: any;
|
213
213
|
SelectDynamicOption: import("vue").DefineComponent<{
|
214
|
+
oldValue: {
|
215
|
+
type: import("vue").PropType<import("../../../../../shared/types").AnyObject[]>;
|
216
|
+
default: () => never[];
|
217
|
+
};
|
214
218
|
dynamicOptionInfo: {
|
215
219
|
type: import("vue").PropType<import("../../../../../shared/types").AnyObject>;
|
216
220
|
default: () => {};
|
@@ -246,6 +250,10 @@ export declare const WidgetCfgMaps: Map<string, {
|
|
246
250
|
}, {
|
247
251
|
selectMinWidth: number;
|
248
252
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
253
|
+
oldValue: {
|
254
|
+
type: import("vue").PropType<import("../../../../../shared/types").AnyObject[]>;
|
255
|
+
default: () => never[];
|
256
|
+
};
|
249
257
|
dynamicOptionInfo: {
|
250
258
|
type: import("vue").PropType<import("../../../../../shared/types").AnyObject>;
|
251
259
|
default: () => {};
|
@@ -334,6 +342,10 @@ export declare const WidgetCfgMaps: Map<string, {
|
|
334
342
|
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<{}>>, {}>;
|
335
343
|
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<{}>>, {}>;
|
336
344
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("updateSelect" | "updatePage")[], "updateSelect" | "updatePage", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
345
|
+
oldValue: {
|
346
|
+
type: import("vue").PropType<import("../../../../../shared/types").AnyObject[]>;
|
347
|
+
default: () => never[];
|
348
|
+
};
|
337
349
|
dynamicOptionInfo: {
|
338
350
|
type: import("vue").PropType<import("../../../../../shared/types").AnyObject>;
|
339
351
|
default: () => {};
|
@@ -372,6 +384,7 @@ export declare const WidgetCfgMaps: Map<string, {
|
|
372
384
|
}, {
|
373
385
|
isMultiple: boolean;
|
374
386
|
loading: boolean;
|
387
|
+
oldValue: import("../../../../../shared/types").AnyObject[];
|
375
388
|
dynamicOptionInfo: import("../../../../../shared/types").AnyObject;
|
376
389
|
fieldTitleList: import("../../../../../shared/types").AnyObject[];
|
377
390
|
optionList: import("../../../../../shared/types").AnyObject[];
|
@@ -381,7 +394,7 @@ export declare const WidgetCfgMaps: Map<string, {
|
|
381
394
|
}>;
|
382
395
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:value"[], "update:value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
383
396
|
value: {
|
384
|
-
type: (
|
397
|
+
type: import("vue").PropType<import("../../../../../shared/types").AnyObject[]>;
|
385
398
|
};
|
386
399
|
componentCfg: {
|
387
400
|
type: ObjectConstructor;
|
@@ -1 +1 @@
|
|
1
|
-
var e="@cnhis-design-vue/shared",i="3.2.7-beta.
|
1
|
+
var e="@cnhis-design-vue/shared",i="3.2.7-beta.14",s="index.ts",n={"naive-ui":"^2.30.0",vue:"^3.2.0"},a={"@vicons/ionicons5":"^0.12.0","lodash-es":"^4.17.21",moment:"^2.29.1","video.js":"^7.19.2","videojs-contrib-hls":"^5.15.0",viewerjs:"^1.10.5","xe-utils":"^3.5.4"},d={name:e,version:"3.2.7-beta.14",private:!0,main:"index.ts",peerDependencies:n,dependencies:a};export{d as default,a as dependencies,s as main,e as name,n as peerDependencies,i as version};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "cnhis-design-vue",
|
3
|
-
"version": "3.2.7-beta.
|
3
|
+
"version": "3.2.7-beta.14",
|
4
4
|
"license": "ISC",
|
5
5
|
"module": "./es/components/index.js",
|
6
6
|
"main": "./es/components/index.js",
|
@@ -72,5 +72,5 @@
|
|
72
72
|
"iOS 7",
|
73
73
|
"last 3 iOS versions"
|
74
74
|
],
|
75
|
-
"gitHead": "
|
75
|
+
"gitHead": "49bdf39a5fbcb8ad14a969e54f0016ea67c875e8"
|
76
76
|
}
|