cnhis-design-vue 3.3.3-beta.65 → 3.3.3-beta.67
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/components/NewPrintComponent.vue2.js +7 -1
- package/es/components/button-print/src/components/OldPrintComponent.vue2.js +7 -1
- package/es/components/button-print/src/utils/print.d.ts +3 -3
- package/es/components/button-print/src/utils/print.js +11 -0
- package/es/components/classification/index.d.ts +506 -4
- package/es/components/classification/src/components/search-filter/index.vue.d.ts +506 -4
- package/es/components/classification/src/components/set-classification/index.vue.d.ts +506 -4
- package/es/components/classification/src/components/table-modal/index.vue.d.ts +0 -3
- package/es/components/classification/src/index.vue.d.ts +509 -4
- package/es/components/fabric-chart/src/hooks/temperature/useLeft.js +3 -2
- package/es/components/fabric-chart/src/hooks/temperature/useTemperatureChart.js +3 -2
- package/es/components/field-set/src/FieldColor.vue.d.ts +4 -4
- package/es/components/field-set/src/FieldFilter.vue.d.ts +4 -4
- package/es/components/field-set/src/FieldSet.vue.d.ts +5 -5
- package/es/components/field-set/src/components/table-row.vue.d.ts +4 -4
- package/es/components/form-config/index.d.ts +12 -12
- package/es/components/form-config/src/FormConfig.vue.d.ts +12 -12
- package/es/components/form-config/src/components/FormConfigEdit.vue.d.ts +8 -8
- package/es/components/form-config/src/components/FormConfigEventSetting.vue.d.ts +2 -2
- package/es/components/iho-chat/index.d.ts +1 -1
- package/es/components/iho-chat/src/Index.vue.d.ts +1 -1
- package/es/components/iho-chat/src/components/ChatMain.vue2.js +1 -1
- package/es/components/iho-chat/src/components/PersonProfile.vue2.js +1 -1
- package/es/components/iho-chat/src/components/Video.vue.d.ts +1 -1
- package/es/components/shortcut-setter/index.d.ts +2 -2
- package/es/components/shortcut-setter/src/ShortcutSetter.vue.d.ts +2 -2
- package/es/components/table-filter/src/components/classify-filter/ValueCfg.vue.d.ts +489 -0
- package/es/components/table-filter/src/components/classify-filter/ValueCfg.vue2.js +8 -2
- package/es/components/table-filter/src/components/classify-filter/components/Base/DateOption.vue.d.ts +226 -0
- package/es/components/table-filter/src/components/classify-filter/components/Base/DateOption.vue.js +6 -0
- package/es/components/table-filter/src/components/classify-filter/components/Base/DateOption.vue2.js +156 -0
- package/es/components/table-filter/src/components/classify-filter/components/Date.vue.d.ts +238 -0
- package/es/components/table-filter/src/components/classify-filter/components/Date.vue2.js +43 -4
- package/es/components/table-filter/src/components/classify-filter/components/DateRange.vue.d.ts +238 -0
- package/es/components/table-filter/src/components/classify-filter/components/DateRange.vue2.js +45 -4
- package/es/components/table-filter/src/components/classify-filter/components/index.d.ts +476 -0
- package/es/components/table-filter/src/components/classify-filter/helpers/options.d.ts +5 -1
- package/es/components/table-filter/src/components/classify-filter/helpers/options.js +123 -2
- package/es/components/table-filter/src/components/classify-filter/index.vue.d.ts +506 -4
- package/es/components/table-filter/src/components/classify-filter/index.vue2.js +11 -5
- package/es/components/table-filter/src/components/render-widget/components/DateInner.vue.d.ts +1 -1
- package/es/components/table-filter/src/components/render-widget/components/DateOut.vue.d.ts +1 -1
- package/es/components/table-filter/src/components/render-widget/components/DateRangeInner.vue.d.ts +1 -1
- package/es/components/table-filter/src/components/render-widget/components/index.d.ts +3 -3
- package/es/components/table-filter/src/components/render-widget/widgetCfgMaps.d.ts +3 -3
- package/es/components/table-filter/src/types/enums.d.ts +12 -0
- package/es/components/table-filter/src/types/enums.js +13 -1
- package/es/env.d.ts +25 -25
- package/es/shared/package.json.js +1 -1
- package/package.json +2 -2
@@ -539,12 +539,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
539
539
|
}>;
|
540
540
|
developMode: boolean;
|
541
541
|
draggable: boolean;
|
542
|
-
|
543
|
-
isFieldSet: boolean;
|
544
|
-
hideExpressionOption: AnyObject[];
|
542
|
+
isHighlightRow: boolean;
|
545
543
|
idx: number;
|
546
544
|
isHighlight: boolean;
|
547
|
-
|
545
|
+
isFieldSet: boolean;
|
546
|
+
fieldDescribeMode: "column" | "tooltip";
|
547
|
+
hideExpressionOption: AnyObject[];
|
548
548
|
}>;
|
549
549
|
EditDialog: import("vue").DefineComponent<{
|
550
550
|
visible: {
|
@@ -568,12 +568,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
568
568
|
}>;
|
569
569
|
developMode: boolean;
|
570
570
|
draggable: boolean;
|
571
|
-
|
572
|
-
isFieldSet: boolean;
|
573
|
-
hideExpressionOption: AnyObject[];
|
571
|
+
isHighlightRow: boolean;
|
574
572
|
idx: number;
|
575
573
|
isHighlight: boolean;
|
576
|
-
|
574
|
+
isFieldSet: boolean;
|
575
|
+
fieldDescribeMode: "column" | "tooltip";
|
576
|
+
hideExpressionOption: AnyObject[];
|
577
577
|
}>;
|
578
578
|
setStyle: typeof setStyle;
|
579
579
|
}, 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<{
|
@@ -759,12 +759,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
759
759
|
}>;
|
760
760
|
developMode: boolean;
|
761
761
|
draggable: boolean;
|
762
|
-
|
763
|
-
isFieldSet: boolean;
|
764
|
-
hideExpressionOption: AnyObject[];
|
762
|
+
isHighlightRow: boolean;
|
765
763
|
idx: number;
|
766
764
|
isHighlight: boolean;
|
767
|
-
|
765
|
+
isFieldSet: boolean;
|
766
|
+
fieldDescribeMode: "column" | "tooltip";
|
767
|
+
hideExpressionOption: AnyObject[];
|
768
768
|
}>;
|
769
769
|
isArray: {
|
770
770
|
(value?: any): value is any[];
|
@@ -904,9 +904,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
904
904
|
showSeq: boolean;
|
905
905
|
developMode: boolean;
|
906
906
|
footerFlag: boolean;
|
907
|
+
fieldDescribeMode: "column" | "tooltip";
|
907
908
|
customColumns: FieldSetColumnItem[];
|
908
909
|
showSortPriority: boolean;
|
909
910
|
showHeadFilter: boolean;
|
910
|
-
fieldDescribeMode: "column" | "tooltip";
|
911
911
|
}>;
|
912
912
|
export default _default;
|
@@ -384,11 +384,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
384
384
|
}>;
|
385
385
|
developMode: boolean;
|
386
386
|
draggable: boolean;
|
387
|
-
|
388
|
-
isFieldSet: boolean;
|
389
|
-
hideExpressionOption: AnyObject[];
|
387
|
+
isHighlightRow: boolean;
|
390
388
|
idx: number;
|
391
389
|
isHighlight: boolean;
|
392
|
-
|
390
|
+
isFieldSet: boolean;
|
391
|
+
fieldDescribeMode: "column" | "tooltip";
|
392
|
+
hideExpressionOption: AnyObject[];
|
393
393
|
}>;
|
394
394
|
export default _default;
|
@@ -283,14 +283,14 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
283
283
|
compareMap?: {
|
284
284
|
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
285
285
|
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
286
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
287
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
286
288
|
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
287
289
|
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
288
290
|
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
289
291
|
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
290
292
|
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
291
293
|
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
292
|
-
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
293
|
-
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
294
294
|
} | undefined;
|
295
295
|
isRestoreDefault?: boolean | undefined;
|
296
296
|
sqlExpression?: string | undefined;
|
@@ -1946,14 +1946,14 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
1946
1946
|
compareMap?: {
|
1947
1947
|
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
1948
1948
|
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
1949
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
1950
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
1949
1951
|
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
1950
1952
|
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
1951
1953
|
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
1952
1954
|
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
1953
1955
|
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
1954
1956
|
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
1955
|
-
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
1956
|
-
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
1957
1957
|
} | undefined;
|
1958
1958
|
}[] | undefined;
|
1959
1959
|
show_mode?: import("../../shared/types").LowCodeTypes.showModeType | undefined;
|
@@ -2225,14 +2225,14 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
2225
2225
|
compareMap?: {
|
2226
2226
|
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
2227
2227
|
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2228
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
2229
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2228
2230
|
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
2229
2231
|
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
2230
2232
|
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2231
2233
|
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2232
2234
|
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
2233
2235
|
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
2234
|
-
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2235
|
-
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
2236
2236
|
} | undefined;
|
2237
2237
|
}[] | undefined;
|
2238
2238
|
show_mode?: import("../../shared/types").LowCodeTypes.showModeType | undefined;
|
@@ -2494,14 +2494,14 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
2494
2494
|
compareMap?: {
|
2495
2495
|
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
2496
2496
|
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2497
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
2498
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2497
2499
|
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
2498
2500
|
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
2499
2501
|
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2500
2502
|
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2501
2503
|
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
2502
2504
|
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
2503
|
-
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2504
|
-
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
2505
2505
|
} | undefined;
|
2506
2506
|
}[] | undefined;
|
2507
2507
|
show_mode?: import("../../shared/types").LowCodeTypes.showModeType | undefined;
|
@@ -2771,14 +2771,14 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
2771
2771
|
compareMap?: {
|
2772
2772
|
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
2773
2773
|
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2774
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
2775
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2774
2776
|
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
2775
2777
|
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
2776
2778
|
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2777
2779
|
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2778
2780
|
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
2779
2781
|
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
2780
|
-
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2781
|
-
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
2782
2782
|
} | undefined;
|
2783
2783
|
}[] | undefined;
|
2784
2784
|
show_mode?: import("../../shared/types").LowCodeTypes.showModeType | undefined;
|
@@ -4058,14 +4058,14 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
|
|
4058
4058
|
compareMap?: {
|
4059
4059
|
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
4060
4060
|
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
4061
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
4062
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
4061
4063
|
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
4062
4064
|
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
4063
4065
|
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
4064
4066
|
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
4065
4067
|
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
4066
4068
|
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
4067
|
-
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
4068
|
-
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
4069
4069
|
} | undefined;
|
4070
4070
|
isRestoreDefault?: boolean | undefined;
|
4071
4071
|
sqlExpression?: string | undefined;
|
@@ -286,14 +286,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
286
286
|
compareMap?: {
|
287
287
|
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
288
288
|
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
289
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
290
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
289
291
|
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
290
292
|
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
291
293
|
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
292
294
|
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
293
295
|
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
294
296
|
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
295
|
-
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
296
|
-
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
297
297
|
} | undefined;
|
298
298
|
isRestoreDefault?: boolean | undefined;
|
299
299
|
sqlExpression?: string | undefined;
|
@@ -1949,14 +1949,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
1949
1949
|
compareMap?: {
|
1950
1950
|
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
1951
1951
|
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
1952
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
1953
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
1952
1954
|
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
1953
1955
|
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
1954
1956
|
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
1955
1957
|
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
1956
1958
|
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
1957
1959
|
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
1958
|
-
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
1959
|
-
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
1960
1960
|
} | undefined;
|
1961
1961
|
}[] | undefined;
|
1962
1962
|
show_mode?: LowCodeTypes.showModeType | undefined;
|
@@ -2228,14 +2228,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
2228
2228
|
compareMap?: {
|
2229
2229
|
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
2230
2230
|
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2231
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
2232
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2231
2233
|
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
2232
2234
|
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
2233
2235
|
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2234
2236
|
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2235
2237
|
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
2236
2238
|
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
2237
|
-
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2238
|
-
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
2239
2239
|
} | undefined;
|
2240
2240
|
}[] | undefined;
|
2241
2241
|
show_mode?: LowCodeTypes.showModeType | undefined;
|
@@ -2497,14 +2497,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
2497
2497
|
compareMap?: {
|
2498
2498
|
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
2499
2499
|
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2500
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
2501
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2500
2502
|
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
2501
2503
|
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
2502
2504
|
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2503
2505
|
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2504
2506
|
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
2505
2507
|
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
2506
|
-
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2507
|
-
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
2508
2508
|
} | undefined;
|
2509
2509
|
}[] | undefined;
|
2510
2510
|
show_mode?: LowCodeTypes.showModeType | undefined;
|
@@ -2774,14 +2774,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
2774
2774
|
compareMap?: {
|
2775
2775
|
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
2776
2776
|
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2777
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
2778
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2777
2779
|
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
2778
2780
|
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
2779
2781
|
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2780
2782
|
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2781
2783
|
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
2782
2784
|
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
2783
|
-
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
2784
|
-
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
2785
2785
|
} | undefined;
|
2786
2786
|
}[] | undefined;
|
2787
2787
|
show_mode?: LowCodeTypes.showModeType | undefined;
|
@@ -4061,14 +4061,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
4061
4061
|
compareMap?: {
|
4062
4062
|
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
4063
4063
|
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
4064
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
4065
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
4064
4066
|
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
4065
4067
|
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
4066
4068
|
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
4067
4069
|
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
4068
4070
|
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
4069
4071
|
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
4070
|
-
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
4071
|
-
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
4072
4072
|
} | undefined;
|
4073
4073
|
isRestoreDefault?: boolean | undefined;
|
4074
4074
|
sqlExpression?: string | undefined;
|
@@ -384,14 +384,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
384
384
|
compareMap?: {
|
385
385
|
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
386
386
|
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
387
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
388
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
387
389
|
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
388
390
|
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
389
391
|
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
390
392
|
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
391
393
|
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
392
394
|
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
393
|
-
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
394
|
-
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
395
395
|
} | undefined;
|
396
396
|
}[] | undefined;
|
397
397
|
show_mode?: import("../../../../shared/types").LowCodeTypes.showModeType | undefined;
|
@@ -663,14 +663,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
663
663
|
compareMap?: {
|
664
664
|
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
665
665
|
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
666
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
667
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
666
668
|
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
667
669
|
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
668
670
|
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
669
671
|
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
670
672
|
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
671
673
|
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
672
|
-
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
673
|
-
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
674
674
|
} | undefined;
|
675
675
|
}[] | undefined;
|
676
676
|
show_mode?: import("../../../../shared/types").LowCodeTypes.showModeType | undefined;
|
@@ -932,14 +932,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
932
932
|
compareMap?: {
|
933
933
|
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
934
934
|
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
935
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
936
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
935
937
|
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
936
938
|
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
937
939
|
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
938
940
|
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
939
941
|
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
940
942
|
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
941
|
-
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
942
|
-
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
943
943
|
} | undefined;
|
944
944
|
}[] | undefined;
|
945
945
|
show_mode?: import("../../../../shared/types").LowCodeTypes.showModeType | undefined;
|
@@ -1209,14 +1209,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
1209
1209
|
compareMap?: {
|
1210
1210
|
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
1211
1211
|
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
1212
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
1213
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
1212
1214
|
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
1213
1215
|
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
1214
1216
|
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
1215
1217
|
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
1216
1218
|
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
1217
1219
|
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
1218
|
-
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
1219
|
-
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
1220
1220
|
} | undefined;
|
1221
1221
|
}[] | undefined;
|
1222
1222
|
show_mode?: import("../../../../shared/types").LowCodeTypes.showModeType | undefined;
|
@@ -28,14 +28,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
28
28
|
compareMap?: {
|
29
29
|
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
30
30
|
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
31
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
32
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
31
33
|
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
32
34
|
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
33
35
|
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
34
36
|
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
35
37
|
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
36
38
|
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
37
|
-
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
38
|
-
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
39
39
|
} | undefined;
|
40
40
|
isRestoreDefault?: boolean | undefined;
|
41
41
|
sqlExpression?: string | undefined;
|
@@ -3649,7 +3649,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
3649
3649
|
};
|
3650
3650
|
isForward: boolean;
|
3651
3651
|
};
|
3652
|
-
trtc: import("trtc-sdk-v5").
|
3652
|
+
trtc: import("trtc-sdk-v5").TRTC;
|
3653
3653
|
timing: import("vue").Ref<string>;
|
3654
3654
|
voiceClose: import("vue").Ref<boolean>;
|
3655
3655
|
isAudio: import("vue").ComputedRef<boolean>;
|
@@ -3650,7 +3650,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
3650
3650
|
};
|
3651
3651
|
isForward: boolean;
|
3652
3652
|
};
|
3653
|
-
trtc: import("trtc-sdk-v5").
|
3653
|
+
trtc: import("trtc-sdk-v5").TRTC;
|
3654
3654
|
timing: import("vue").Ref<string>;
|
3655
3655
|
voiceClose: import("vue").Ref<boolean>;
|
3656
3656
|
isAudio: import("vue").ComputedRef<boolean>;
|
@@ -603,7 +603,7 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
603
603
|
}, {
|
604
604
|
default: withCtx(() => [!unref(isAudioOrVideoMessage)(item.content) ? (openBlock(), createElementBlock(Fragment, {
|
605
605
|
key: 0
|
606
|
-
}, [createCommentVNode(' <n-button\
|
606
|
+
}, [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), {
|
607
607
|
quaternary: "",
|
608
608
|
size: "tiny",
|
609
609
|
onClick: () => setReferenceMsg(item)
|
@@ -225,7 +225,7 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
225
225
|
round: "",
|
226
226
|
size: 100,
|
227
227
|
onClickCapture: _cache[0] || (_cache[0] = ($event) => showLargeAvatar.value = true)
|
228
|
-
}, null, 8, ["src"]), createCommentVNode(' <n-upload abstract accept="image/*" @change="onChange">\
|
228
|
+
}, 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", {
|
229
229
|
class: normalizeClass(["iho-chatRole", unref(isDoctorRole)(userDetail.roleInfo) ? "isDoctor" : ""])
|
230
230
|
}, toDisplayString(unref(getRoleName)(userDetail.roleInfo)), 3), [[vShow, unref(getRoleName)(userDetail.roleInfo)]])]), createElementVNode("p", null, toDisplayString(userDetail.orgName), 1)]), createVNode(unref(NButton), {
|
231
231
|
strong: "",
|
@@ -58,7 +58,7 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
58
58
|
};
|
59
59
|
isForward: boolean;
|
60
60
|
};
|
61
|
-
trtc: import("trtc-sdk-v5").
|
61
|
+
trtc: import("trtc-sdk-v5").TRTC;
|
62
62
|
timing: import("vue").Ref<string>;
|
63
63
|
voiceClose: import("vue").Ref<boolean>;
|
64
64
|
isAudio: import("vue").ComputedRef<boolean>;
|
@@ -174,14 +174,14 @@ declare const ShortcutSetter: SFCWithInstall<import("vue").DefineComponent<{
|
|
174
174
|
compareMap?: {
|
175
175
|
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
176
176
|
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
177
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
178
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
177
179
|
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
178
180
|
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
179
181
|
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
180
182
|
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
181
183
|
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
182
184
|
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
183
|
-
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
184
|
-
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
185
185
|
} | undefined;
|
186
186
|
}[] | undefined;
|
187
187
|
show_mode?: import("../../shared/types").LowCodeTypes.showModeType | undefined;
|
@@ -177,14 +177,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
177
177
|
compareMap?: {
|
178
178
|
NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
179
179
|
EQ?: ((v1: any, v2: any) => boolean) | undefined;
|
180
|
+
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
181
|
+
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
180
182
|
BIG?: ((v1: any, v2: any) => boolean) | undefined;
|
181
183
|
LESS?: ((v1: any, v2: any) => boolean) | undefined;
|
182
184
|
BIGEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
183
185
|
LESSEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
184
186
|
CL?: ((v1: any, v2: any) => boolean) | undefined;
|
185
187
|
NC?: ((v1: any, v2: any) => boolean) | undefined;
|
186
|
-
NEQ?: ((v1: any, v2: any) => boolean) | undefined;
|
187
|
-
NOT_NULL?: ((v1: any, v2: any) => boolean) | undefined;
|
188
188
|
} | undefined;
|
189
189
|
}[] | undefined;
|
190
190
|
show_mode?: import("../../../shared/types").LowCodeTypes.showModeType | undefined;
|