cnhis-design-vue 3.4.0-beta.17 → 3.4.0-beta.20
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/button-print/src/utils/print.js +1 -0
- package/es/components/classification/index.d.ts +39 -0
- package/es/components/classification/src/components/search-filter/index.vue.d.ts +39 -0
- package/es/components/classification/src/components/set-classification/index.vue.d.ts +39 -0
- package/es/components/classification/src/index.vue.d.ts +39 -0
- package/es/components/date-picker/index.d.ts +13 -0
- package/es/components/date-picker/src/DatePicker.vue.d.ts +13 -0
- package/es/components/date-picker/src/DatePicker.vue2.js +8 -3
- package/es/components/field-set/src/FieldColor.vue.d.ts +26 -0
- package/es/components/field-set/src/components/condition.vue.d.ts +13 -0
- package/es/components/field-set/src/components/edit-dialog.vue.d.ts +26 -0
- package/es/components/field-set/src/components/edit-filter.vue.d.ts +13 -0
- package/es/components/iho-chat/index.d.ts +26 -0
- package/es/components/iho-chat/src/Index.vue.d.ts +26 -0
- package/es/components/iho-chat/src/components/ChatHeader.vue.d.ts +13 -0
- package/es/components/iho-chat/src/components/ChatMain.vue2.js +1 -1
- package/es/components/iho-chat/src/components/ChatRecord.vue.d.ts +13 -0
- package/es/components/iho-chat/src/components/PersonProfile.vue2.js +1 -1
- package/es/components/iho-chat/src/components/SiderList.vue.d.ts +13 -0
- package/es/components/iho-table/src/IhoTable.vue2.js +16 -12
- package/es/components/iho-table/src/plugins/filterDaterangeRenderPlugin/filter.vue.d.ts +13 -0
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/editDate.vue.d.ts +13 -0
- package/es/components/table-export-field/index.d.ts +3 -0
- package/es/components/table-export-field/src/components/SaveProjectModal.vue.d.ts +3 -0
- package/es/components/table-export-field/src/components/SaveProjectModal.vue2.js +66 -20
- package/es/components/table-export-field/src/index.vue.d.ts +3 -0
- package/es/components/table-filter/src/components/bi-filter/ValueCfg.vue.d.ts +13 -0
- package/es/components/table-filter/src/components/bi-filter/components/Date.vue.d.ts +13 -0
- package/es/components/table-filter/src/components/bi-filter/components/index.d.ts +13 -0
- package/es/components/table-filter/src/components/bi-filter/index.vue.d.ts +13 -0
- package/es/components/table-filter/src/components/classify-filter/ValueCfg.vue.d.ts +26 -0
- package/es/components/table-filter/src/components/classify-filter/components/Date.vue.d.ts +13 -0
- package/es/components/table-filter/src/components/classify-filter/components/DateRange.vue.d.ts +13 -0
- package/es/components/table-filter/src/components/classify-filter/components/index.d.ts +26 -0
- package/es/components/table-filter/src/components/classify-filter/index.vue.d.ts +26 -0
- package/es/components/table-filter/src/components/render-widget/components/DateInner.vue.d.ts +13 -0
- package/es/components/table-filter/src/components/render-widget/components/DateOut.vue.d.ts +13 -0
- package/es/components/table-filter/src/components/render-widget/components/DateRangeInner.vue.d.ts +13 -0
- package/es/components/table-filter/src/components/render-widget/components/DateRangeOut.vue.d.ts +13 -0
- package/es/components/table-filter/src/components/render-widget/components/index.d.ts +52 -0
- package/es/components/table-filter/src/components/render-widget/widgetCfgMaps.d.ts +52 -0
- package/es/env.d.ts +25 -25
- package/es/shared/package.json.js +1 -1
- package/es/shared/utils/ho-edge.d.ts +12 -0
- package/es/shared/utils/ho-edge.js +58 -0
- package/package.json +2 -2
@@ -27,6 +27,10 @@ declare const DatePicker: SFCWithInstall<import("vue").DefineComponent<import("v
|
|
27
27
|
type: StringConstructor;
|
28
28
|
default: string;
|
29
29
|
};
|
30
|
+
updateValueOnClose: {
|
31
|
+
type: BooleanConstructor;
|
32
|
+
default: boolean;
|
33
|
+
};
|
30
34
|
isDateDisabled: {
|
31
35
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
32
36
|
};
|
@@ -62,6 +66,10 @@ declare const DatePicker: SFCWithInstall<import("vue").DefineComponent<import("v
|
|
62
66
|
type: StringConstructor;
|
63
67
|
default: string;
|
64
68
|
};
|
69
|
+
updateValueOnClose: {
|
70
|
+
type: BooleanConstructor;
|
71
|
+
default: boolean;
|
72
|
+
};
|
65
73
|
isDateDisabled: {
|
66
74
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
67
75
|
};
|
@@ -117,6 +125,10 @@ declare const DatePicker: SFCWithInstall<import("vue").DefineComponent<import("v
|
|
117
125
|
type: StringConstructor;
|
118
126
|
default: string;
|
119
127
|
};
|
128
|
+
updateValueOnClose: {
|
129
|
+
type: BooleanConstructor;
|
130
|
+
default: boolean;
|
131
|
+
};
|
120
132
|
isDateDisabled: {
|
121
133
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
122
134
|
};
|
@@ -127,5 +139,6 @@ declare const DatePicker: SFCWithInstall<import("vue").DefineComponent<import("v
|
|
127
139
|
updateUnchangedValue: boolean;
|
128
140
|
to: string | false | HTMLElement;
|
129
141
|
holidays: Date[];
|
142
|
+
updateValueOnClose: boolean;
|
130
143
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
131
144
|
export default DatePicker;
|
@@ -29,6 +29,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
29
29
|
type: StringConstructor;
|
30
30
|
default: string;
|
31
31
|
};
|
32
|
+
updateValueOnClose: {
|
33
|
+
type: BooleanConstructor;
|
34
|
+
default: boolean;
|
35
|
+
};
|
32
36
|
isDateDisabled: {
|
33
37
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
34
38
|
};
|
@@ -64,6 +68,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
64
68
|
type: StringConstructor;
|
65
69
|
default: string;
|
66
70
|
};
|
71
|
+
updateValueOnClose: {
|
72
|
+
type: BooleanConstructor;
|
73
|
+
default: boolean;
|
74
|
+
};
|
67
75
|
isDateDisabled: {
|
68
76
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
69
77
|
};
|
@@ -119,6 +127,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
119
127
|
type: StringConstructor;
|
120
128
|
default: string;
|
121
129
|
};
|
130
|
+
updateValueOnClose: {
|
131
|
+
type: BooleanConstructor;
|
132
|
+
default: boolean;
|
133
|
+
};
|
122
134
|
isDateDisabled: {
|
123
135
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
124
136
|
};
|
@@ -129,5 +141,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
129
141
|
updateUnchangedValue: boolean;
|
130
142
|
to: string | false | HTMLElement;
|
131
143
|
holidays: Date[];
|
144
|
+
updateValueOnClose: boolean;
|
132
145
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
133
146
|
export default _default;
|
@@ -41,6 +41,10 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
41
41
|
type: String,
|
42
42
|
default: "date"
|
43
43
|
},
|
44
|
+
updateValueOnClose: {
|
45
|
+
type: Boolean,
|
46
|
+
default: false
|
47
|
+
},
|
44
48
|
isDateDisabled: {
|
45
49
|
type: Function
|
46
50
|
}
|
@@ -200,9 +204,9 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
200
204
|
(_e = props.onConfirm) == null ? void 0 : _e.call(props, ...args);
|
201
205
|
} else {
|
202
206
|
await nextTick();
|
203
|
-
target.focus();
|
207
|
+
!props.updateValueOnClose && target.focus();
|
204
208
|
handleConfirm(target);
|
205
|
-
target.blur();
|
209
|
+
!props.updateValueOnClose && target.blur();
|
206
210
|
(_f = props.onConfirm) == null ? void 0 : _f.call(props, Date.parse(target.value), target.value);
|
207
211
|
}
|
208
212
|
if (!(target == null ? void 0 : target.value) || !props.updateUnchangedValue || props.type.includes("range"))
|
@@ -259,6 +263,7 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
259
263
|
placeholder: placeholderRef.value,
|
260
264
|
to: __props.to,
|
261
265
|
type: __props.type,
|
266
|
+
"update-value-on-close": __props.updateValueOnClose,
|
262
267
|
"formatted-value": currentFormattedValue.value,
|
263
268
|
"onUpdate:formattedValue": _cache[0] || (_cache[0] = ($event) => currentFormattedValue.value = $event),
|
264
269
|
"is-date-disabled": _isDateDisabled.value
|
@@ -269,7 +274,7 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
269
274
|
name: k,
|
270
275
|
fn: withCtx(() => [renderSlot(_ctx.$slots, k)])
|
271
276
|
};
|
272
|
-
})]), 1032, ["placeholder", "to", "type", "formatted-value", "is-date-disabled"]);
|
277
|
+
})]), 1032, ["placeholder", "to", "type", "update-value-on-close", "formatted-value", "is-date-disabled"]);
|
273
278
|
};
|
274
279
|
}
|
275
280
|
});
|
@@ -862,6 +862,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
862
862
|
type: StringConstructor;
|
863
863
|
default: string;
|
864
864
|
};
|
865
|
+
updateValueOnClose: {
|
866
|
+
type: BooleanConstructor;
|
867
|
+
default: boolean;
|
868
|
+
};
|
865
869
|
isDateDisabled: {
|
866
870
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
867
871
|
};
|
@@ -897,6 +901,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
897
901
|
type: StringConstructor;
|
898
902
|
default: string;
|
899
903
|
};
|
904
|
+
updateValueOnClose: {
|
905
|
+
type: BooleanConstructor;
|
906
|
+
default: boolean;
|
907
|
+
};
|
900
908
|
isDateDisabled: {
|
901
909
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
902
910
|
};
|
@@ -952,6 +960,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
952
960
|
type: StringConstructor;
|
953
961
|
default: string;
|
954
962
|
};
|
963
|
+
updateValueOnClose: {
|
964
|
+
type: BooleanConstructor;
|
965
|
+
default: boolean;
|
966
|
+
};
|
955
967
|
isDateDisabled: {
|
956
968
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
957
969
|
};
|
@@ -962,6 +974,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
962
974
|
updateUnchangedValue: boolean;
|
963
975
|
to: string | false | HTMLElement;
|
964
976
|
holidays: Date[];
|
977
|
+
updateValueOnClose: boolean;
|
965
978
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
966
979
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
967
980
|
model: {
|
@@ -1213,6 +1226,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
1213
1226
|
type: StringConstructor;
|
1214
1227
|
default: string;
|
1215
1228
|
};
|
1229
|
+
updateValueOnClose: {
|
1230
|
+
type: BooleanConstructor;
|
1231
|
+
default: boolean;
|
1232
|
+
};
|
1216
1233
|
isDateDisabled: {
|
1217
1234
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
1218
1235
|
};
|
@@ -1248,6 +1265,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
1248
1265
|
type: StringConstructor;
|
1249
1266
|
default: string;
|
1250
1267
|
};
|
1268
|
+
updateValueOnClose: {
|
1269
|
+
type: BooleanConstructor;
|
1270
|
+
default: boolean;
|
1271
|
+
};
|
1251
1272
|
isDateDisabled: {
|
1252
1273
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
1253
1274
|
};
|
@@ -1303,6 +1324,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
1303
1324
|
type: StringConstructor;
|
1304
1325
|
default: string;
|
1305
1326
|
};
|
1327
|
+
updateValueOnClose: {
|
1328
|
+
type: BooleanConstructor;
|
1329
|
+
default: boolean;
|
1330
|
+
};
|
1306
1331
|
isDateDisabled: {
|
1307
1332
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
1308
1333
|
};
|
@@ -1313,6 +1338,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
1313
1338
|
updateUnchangedValue: boolean;
|
1314
1339
|
to: string | false | HTMLElement;
|
1315
1340
|
holidays: Date[];
|
1341
|
+
updateValueOnClose: boolean;
|
1316
1342
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
1317
1343
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
1318
1344
|
model: {
|
@@ -138,6 +138,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
138
138
|
type: StringConstructor;
|
139
139
|
default: string;
|
140
140
|
};
|
141
|
+
updateValueOnClose: {
|
142
|
+
type: BooleanConstructor;
|
143
|
+
default: boolean;
|
144
|
+
};
|
141
145
|
isDateDisabled: {
|
142
146
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
143
147
|
};
|
@@ -173,6 +177,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
173
177
|
type: StringConstructor;
|
174
178
|
default: string;
|
175
179
|
};
|
180
|
+
updateValueOnClose: {
|
181
|
+
type: BooleanConstructor;
|
182
|
+
default: boolean;
|
183
|
+
};
|
176
184
|
isDateDisabled: {
|
177
185
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
178
186
|
};
|
@@ -228,6 +236,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
228
236
|
type: StringConstructor;
|
229
237
|
default: string;
|
230
238
|
};
|
239
|
+
updateValueOnClose: {
|
240
|
+
type: BooleanConstructor;
|
241
|
+
default: boolean;
|
242
|
+
};
|
231
243
|
isDateDisabled: {
|
232
244
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
233
245
|
};
|
@@ -238,6 +250,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
238
250
|
updateUnchangedValue: boolean;
|
239
251
|
to: string | false | HTMLElement;
|
240
252
|
holidays: Date[];
|
253
|
+
updateValueOnClose: boolean;
|
241
254
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
242
255
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
243
256
|
model: {
|
@@ -302,6 +302,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
302
302
|
type: StringConstructor;
|
303
303
|
default: string;
|
304
304
|
};
|
305
|
+
updateValueOnClose: {
|
306
|
+
type: BooleanConstructor;
|
307
|
+
default: boolean;
|
308
|
+
};
|
305
309
|
isDateDisabled: {
|
306
310
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
307
311
|
};
|
@@ -337,6 +341,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
337
341
|
type: StringConstructor;
|
338
342
|
default: string;
|
339
343
|
};
|
344
|
+
updateValueOnClose: {
|
345
|
+
type: BooleanConstructor;
|
346
|
+
default: boolean;
|
347
|
+
};
|
340
348
|
isDateDisabled: {
|
341
349
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
342
350
|
};
|
@@ -392,6 +400,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
392
400
|
type: StringConstructor;
|
393
401
|
default: string;
|
394
402
|
};
|
403
|
+
updateValueOnClose: {
|
404
|
+
type: BooleanConstructor;
|
405
|
+
default: boolean;
|
406
|
+
};
|
395
407
|
isDateDisabled: {
|
396
408
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
397
409
|
};
|
@@ -402,6 +414,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
402
414
|
updateUnchangedValue: boolean;
|
403
415
|
to: string | false | HTMLElement;
|
404
416
|
holidays: Date[];
|
417
|
+
updateValueOnClose: boolean;
|
405
418
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
406
419
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
407
420
|
model: {
|
@@ -653,6 +666,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
653
666
|
type: StringConstructor;
|
654
667
|
default: string;
|
655
668
|
};
|
669
|
+
updateValueOnClose: {
|
670
|
+
type: BooleanConstructor;
|
671
|
+
default: boolean;
|
672
|
+
};
|
656
673
|
isDateDisabled: {
|
657
674
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
658
675
|
};
|
@@ -688,6 +705,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
688
705
|
type: StringConstructor;
|
689
706
|
default: string;
|
690
707
|
};
|
708
|
+
updateValueOnClose: {
|
709
|
+
type: BooleanConstructor;
|
710
|
+
default: boolean;
|
711
|
+
};
|
691
712
|
isDateDisabled: {
|
692
713
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
693
714
|
};
|
@@ -743,6 +764,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
743
764
|
type: StringConstructor;
|
744
765
|
default: string;
|
745
766
|
};
|
767
|
+
updateValueOnClose: {
|
768
|
+
type: BooleanConstructor;
|
769
|
+
default: boolean;
|
770
|
+
};
|
746
771
|
isDateDisabled: {
|
747
772
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
748
773
|
};
|
@@ -753,6 +778,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
753
778
|
updateUnchangedValue: boolean;
|
754
779
|
to: string | false | HTMLElement;
|
755
780
|
holidays: Date[];
|
781
|
+
updateValueOnClose: boolean;
|
756
782
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
757
783
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
758
784
|
model: {
|
@@ -236,6 +236,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
236
236
|
type: StringConstructor;
|
237
237
|
default: string;
|
238
238
|
};
|
239
|
+
updateValueOnClose: {
|
240
|
+
type: BooleanConstructor;
|
241
|
+
default: boolean;
|
242
|
+
};
|
239
243
|
isDateDisabled: {
|
240
244
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
241
245
|
};
|
@@ -271,6 +275,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
271
275
|
type: StringConstructor;
|
272
276
|
default: string;
|
273
277
|
};
|
278
|
+
updateValueOnClose: {
|
279
|
+
type: BooleanConstructor;
|
280
|
+
default: boolean;
|
281
|
+
};
|
274
282
|
isDateDisabled: {
|
275
283
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
276
284
|
};
|
@@ -326,6 +334,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
326
334
|
type: StringConstructor;
|
327
335
|
default: string;
|
328
336
|
};
|
337
|
+
updateValueOnClose: {
|
338
|
+
type: BooleanConstructor;
|
339
|
+
default: boolean;
|
340
|
+
};
|
329
341
|
isDateDisabled: {
|
330
342
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
331
343
|
};
|
@@ -336,6 +348,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
336
348
|
updateUnchangedValue: boolean;
|
337
349
|
to: string | false | HTMLElement;
|
338
350
|
holidays: Date[];
|
351
|
+
updateValueOnClose: boolean;
|
339
352
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
340
353
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
341
354
|
model: {
|
@@ -442,6 +442,10 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<import("vue"
|
|
442
442
|
type: StringConstructor;
|
443
443
|
default: string;
|
444
444
|
};
|
445
|
+
updateValueOnClose: {
|
446
|
+
type: BooleanConstructor;
|
447
|
+
default: boolean;
|
448
|
+
};
|
445
449
|
isDateDisabled: {
|
446
450
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
447
451
|
};
|
@@ -477,6 +481,10 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<import("vue"
|
|
477
481
|
type: StringConstructor;
|
478
482
|
default: string;
|
479
483
|
};
|
484
|
+
updateValueOnClose: {
|
485
|
+
type: BooleanConstructor;
|
486
|
+
default: boolean;
|
487
|
+
};
|
480
488
|
isDateDisabled: {
|
481
489
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
482
490
|
};
|
@@ -532,6 +540,10 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<import("vue"
|
|
532
540
|
type: StringConstructor;
|
533
541
|
default: string;
|
534
542
|
};
|
543
|
+
updateValueOnClose: {
|
544
|
+
type: BooleanConstructor;
|
545
|
+
default: boolean;
|
546
|
+
};
|
535
547
|
isDateDisabled: {
|
536
548
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
537
549
|
};
|
@@ -542,6 +554,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<import("vue"
|
|
542
554
|
updateUnchangedValue: boolean;
|
543
555
|
to: string | false | HTMLElement;
|
544
556
|
holidays: Date[];
|
557
|
+
updateValueOnClose: boolean;
|
545
558
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
546
559
|
readonly SearchOutline: 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<{}>>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
547
560
|
readonly userItemRender: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
@@ -1627,6 +1640,10 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<import("vue"
|
|
1627
1640
|
type: StringConstructor;
|
1628
1641
|
default: string;
|
1629
1642
|
};
|
1643
|
+
updateValueOnClose: {
|
1644
|
+
type: BooleanConstructor;
|
1645
|
+
default: boolean;
|
1646
|
+
};
|
1630
1647
|
isDateDisabled: {
|
1631
1648
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
1632
1649
|
};
|
@@ -1662,6 +1679,10 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<import("vue"
|
|
1662
1679
|
type: StringConstructor;
|
1663
1680
|
default: string;
|
1664
1681
|
};
|
1682
|
+
updateValueOnClose: {
|
1683
|
+
type: BooleanConstructor;
|
1684
|
+
default: boolean;
|
1685
|
+
};
|
1665
1686
|
isDateDisabled: {
|
1666
1687
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
1667
1688
|
};
|
@@ -1717,6 +1738,10 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<import("vue"
|
|
1717
1738
|
type: StringConstructor;
|
1718
1739
|
default: string;
|
1719
1740
|
};
|
1741
|
+
updateValueOnClose: {
|
1742
|
+
type: BooleanConstructor;
|
1743
|
+
default: boolean;
|
1744
|
+
};
|
1720
1745
|
isDateDisabled: {
|
1721
1746
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
1722
1747
|
};
|
@@ -1727,6 +1752,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<import("vue"
|
|
1727
1752
|
updateUnchangedValue: boolean;
|
1728
1753
|
to: string | false | HTMLElement;
|
1729
1754
|
holidays: Date[];
|
1755
|
+
updateValueOnClose: boolean;
|
1730
1756
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
1731
1757
|
readonly isArray: {
|
1732
1758
|
(value?: any): value is any[];
|
@@ -443,6 +443,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
443
443
|
type: StringConstructor;
|
444
444
|
default: string;
|
445
445
|
};
|
446
|
+
updateValueOnClose: {
|
447
|
+
type: BooleanConstructor;
|
448
|
+
default: boolean;
|
449
|
+
};
|
446
450
|
isDateDisabled: {
|
447
451
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
448
452
|
};
|
@@ -478,6 +482,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
478
482
|
type: StringConstructor;
|
479
483
|
default: string;
|
480
484
|
};
|
485
|
+
updateValueOnClose: {
|
486
|
+
type: BooleanConstructor;
|
487
|
+
default: boolean;
|
488
|
+
};
|
481
489
|
isDateDisabled: {
|
482
490
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
483
491
|
};
|
@@ -533,6 +541,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
533
541
|
type: StringConstructor;
|
534
542
|
default: string;
|
535
543
|
};
|
544
|
+
updateValueOnClose: {
|
545
|
+
type: BooleanConstructor;
|
546
|
+
default: boolean;
|
547
|
+
};
|
536
548
|
isDateDisabled: {
|
537
549
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
538
550
|
};
|
@@ -543,6 +555,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
543
555
|
updateUnchangedValue: boolean;
|
544
556
|
to: string | false | HTMLElement;
|
545
557
|
holidays: Date[];
|
558
|
+
updateValueOnClose: boolean;
|
546
559
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
547
560
|
readonly SearchOutline: 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<{}>>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
548
561
|
readonly userItemRender: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
@@ -1628,6 +1641,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
1628
1641
|
type: StringConstructor;
|
1629
1642
|
default: string;
|
1630
1643
|
};
|
1644
|
+
updateValueOnClose: {
|
1645
|
+
type: BooleanConstructor;
|
1646
|
+
default: boolean;
|
1647
|
+
};
|
1631
1648
|
isDateDisabled: {
|
1632
1649
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
1633
1650
|
};
|
@@ -1663,6 +1680,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
1663
1680
|
type: StringConstructor;
|
1664
1681
|
default: string;
|
1665
1682
|
};
|
1683
|
+
updateValueOnClose: {
|
1684
|
+
type: BooleanConstructor;
|
1685
|
+
default: boolean;
|
1686
|
+
};
|
1666
1687
|
isDateDisabled: {
|
1667
1688
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
1668
1689
|
};
|
@@ -1718,6 +1739,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
1718
1739
|
type: StringConstructor;
|
1719
1740
|
default: string;
|
1720
1741
|
};
|
1742
|
+
updateValueOnClose: {
|
1743
|
+
type: BooleanConstructor;
|
1744
|
+
default: boolean;
|
1745
|
+
};
|
1721
1746
|
isDateDisabled: {
|
1722
1747
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
1723
1748
|
};
|
@@ -1728,6 +1753,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
1728
1753
|
updateUnchangedValue: boolean;
|
1729
1754
|
to: string | false | HTMLElement;
|
1730
1755
|
holidays: Date[];
|
1756
|
+
updateValueOnClose: boolean;
|
1731
1757
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
1732
1758
|
readonly isArray: {
|
1733
1759
|
(value?: any): value is any[];
|
@@ -1011,6 +1011,10 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
1011
1011
|
type: StringConstructor;
|
1012
1012
|
default: string;
|
1013
1013
|
};
|
1014
|
+
updateValueOnClose: {
|
1015
|
+
type: BooleanConstructor;
|
1016
|
+
default: boolean;
|
1017
|
+
};
|
1014
1018
|
isDateDisabled: {
|
1015
1019
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
1016
1020
|
};
|
@@ -1046,6 +1050,10 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
1046
1050
|
type: StringConstructor;
|
1047
1051
|
default: string;
|
1048
1052
|
};
|
1053
|
+
updateValueOnClose: {
|
1054
|
+
type: BooleanConstructor;
|
1055
|
+
default: boolean;
|
1056
|
+
};
|
1049
1057
|
isDateDisabled: {
|
1050
1058
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
1051
1059
|
};
|
@@ -1101,6 +1109,10 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
1101
1109
|
type: StringConstructor;
|
1102
1110
|
default: string;
|
1103
1111
|
};
|
1112
|
+
updateValueOnClose: {
|
1113
|
+
type: BooleanConstructor;
|
1114
|
+
default: boolean;
|
1115
|
+
};
|
1104
1116
|
isDateDisabled: {
|
1105
1117
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
1106
1118
|
};
|
@@ -1111,6 +1123,7 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
1111
1123
|
updateUnchangedValue: boolean;
|
1112
1124
|
to: string | false | HTMLElement;
|
1113
1125
|
holidays: Date[];
|
1126
|
+
updateValueOnClose: boolean;
|
1114
1127
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
1115
1128
|
readonly isArray: {
|
1116
1129
|
(value?: any): value is any[];
|
@@ -601,7 +601,7 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
601
601
|
}, {
|
602
602
|
default: withCtx(() => [!unref(isAudioOrVideoMessage)(item.content) ? (openBlock(), createElementBlock(Fragment, {
|
603
603
|
key: 0
|
604
|
-
}, [createCommentVNode(' <n-button\
|
604
|
+
}, [createCommentVNode(' <n-button\n quaternary\n size="tiny"\n @click="(event: MouseEvent) => handleSelectLabel(event, item.id)"\n >\n <template #icon>\n <n-icon size="17" :component="HappyOutline" />\n </template>\n </n-button> '), createVNode(unref(NButton), {
|
605
605
|
quaternary: "",
|
606
606
|
size: "tiny",
|
607
607
|
onClick: () => setReferenceMsg(item)
|
@@ -128,6 +128,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
128
128
|
type: StringConstructor;
|
129
129
|
default: string;
|
130
130
|
};
|
131
|
+
updateValueOnClose: {
|
132
|
+
type: BooleanConstructor;
|
133
|
+
default: boolean;
|
134
|
+
};
|
131
135
|
isDateDisabled: {
|
132
136
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
133
137
|
};
|
@@ -163,6 +167,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
163
167
|
type: StringConstructor;
|
164
168
|
default: string;
|
165
169
|
};
|
170
|
+
updateValueOnClose: {
|
171
|
+
type: BooleanConstructor;
|
172
|
+
default: boolean;
|
173
|
+
};
|
166
174
|
isDateDisabled: {
|
167
175
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
168
176
|
};
|
@@ -218,6 +226,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
218
226
|
type: StringConstructor;
|
219
227
|
default: string;
|
220
228
|
};
|
229
|
+
updateValueOnClose: {
|
230
|
+
type: BooleanConstructor;
|
231
|
+
default: boolean;
|
232
|
+
};
|
221
233
|
isDateDisabled: {
|
222
234
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
223
235
|
};
|
@@ -228,6 +240,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
228
240
|
updateUnchangedValue: boolean;
|
229
241
|
to: string | false | HTMLElement;
|
230
242
|
holidays: Date[];
|
243
|
+
updateValueOnClose: boolean;
|
231
244
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
232
245
|
readonly isArray: {
|
233
246
|
(value?: any): value is any[];
|
@@ -170,7 +170,7 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
170
170
|
round: "",
|
171
171
|
size: 100,
|
172
172
|
onClickCapture: _cache[0] || (_cache[0] = ($event) => showLargeAvatar.value = true)
|
173
|
-
}, null, 8, ["src"]), createCommentVNode(' <n-upload abstract accept="image/*" @change="onChange">\
|
173
|
+
}, null, 8, ["src"]), createCommentVNode(' <n-upload abstract accept="image/*" @change="onChange">\n <n-upload-trigger #="{ handleClick }" abstract>\n <n-button\n circle\n secondary\n class="edit-avatar"\n v-show="userDetail.id === state.userInfo.id"\n @click="handleClick"\n >\n <template #icon>\n <n-icon size="16" color="#666666" :component="Camera" />\n </template>\n </n-button>\n </n-upload-trigger>\n </n-upload> '), createElementVNode("div", _hoisted_4, [createElementVNode("h4", null, [createElementVNode("label", _hoisted_5, toDisplayString(userDetail.name), 1), withDirectives(createElementVNode("label", {
|
174
174
|
class: normalizeClass(["iho-chatRole", unref(isDoctorRole)(userDetail.roleInfo) ? "isDoctor" : ""])
|
175
175
|
}, toDisplayString(unref(getRoleName)(userDetail.roleInfo)), 3), [[vShow, unref(getRoleName)(userDetail.roleInfo)]])]), createElementVNode("p", null, toDisplayString(userDetail.orgName), 1)]), createVNode(unref(NButton), {
|
176
176
|
strong: "",
|