cnhis-design-vue 3.3.3-beta.64 → 3.3.3-beta.66
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/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/index.vue.d.ts +509 -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/src/components/MultipleVideo.vue2.js +0 -2
- package/es/components/iho-chat/src/hooks/useVideo.js +12 -14
- 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/shared/package.json.js +1 -1
- package/package.json +3 -3
@@ -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;
|
@@ -299,8 +299,6 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
299
299
|
}, 5e3);
|
300
300
|
} catch (error) {
|
301
301
|
console.error("Error setting up multiple video call:", error);
|
302
|
-
$message.error("\u8BBE\u7F6E\u591A\u4EBA\u89C6\u9891\u901A\u8BDD\u5931\u8D25");
|
303
|
-
state.showMultipleVideo = false;
|
304
302
|
}
|
305
303
|
}
|
306
304
|
async function handleExit() {
|
@@ -134,7 +134,6 @@ function useVideo(config = {}) {
|
|
134
134
|
const videoElement = videoRefs.value.get(userId);
|
135
135
|
const user = findUser(userId);
|
136
136
|
console.log("tryRenderRemoteVideo called for user:", userId);
|
137
|
-
console.log("Video element:", videoElement);
|
138
137
|
console.log("User data:", user);
|
139
138
|
console.log("Is connected:", isConnect.value);
|
140
139
|
if (!videoElement) {
|
@@ -155,7 +154,6 @@ function useVideo(config = {}) {
|
|
155
154
|
console.log("Video already playing for user:", userId);
|
156
155
|
return;
|
157
156
|
}
|
158
|
-
console.log("Starting remote video for user:", userId, "with element:", videoElement);
|
159
157
|
await trtc.startRemoteVideo({
|
160
158
|
userId,
|
161
159
|
streamType: MAIN_STREAM_TYPE,
|
@@ -237,7 +235,6 @@ function useVideo(config = {}) {
|
|
237
235
|
const videoElement = videoRefs.value.get(user.id);
|
238
236
|
if (videoElement) {
|
239
237
|
const hasExistingVideo = videoElement.querySelector("video");
|
240
|
-
console.log(`User ${user.id}: hasVideo=${user.hasVideo}, hasElement=${!!videoElement}, hasExistingVideo=${!!hasExistingVideo}`);
|
241
238
|
if (user.hasVideo && !hasExistingVideo) {
|
242
239
|
console.log(`Attempting to render video for user: ${user.id}`);
|
243
240
|
tryRenderRemoteVideo(user.id);
|
@@ -351,12 +348,9 @@ function useVideo(config = {}) {
|
|
351
348
|
console.warn("Error stopping local video:", error);
|
352
349
|
}));
|
353
350
|
}
|
354
|
-
await
|
355
|
-
|
356
|
-
|
357
|
-
console.warn("Error exiting room:", error);
|
358
|
-
});
|
359
|
-
}
|
351
|
+
await trtc.exitRoom().catch((error) => {
|
352
|
+
console.warn("Error exiting room:", error);
|
353
|
+
});
|
360
354
|
cleanupAllResources();
|
361
355
|
console.log("Successfully exited TRTC room");
|
362
356
|
} catch (error) {
|
@@ -368,15 +362,20 @@ function useVideo(config = {}) {
|
|
368
362
|
await trtc.startLocalAudio({
|
369
363
|
mute: voiceClose.value
|
370
364
|
});
|
371
|
-
|
365
|
+
} catch (error) {
|
366
|
+
console.error("Error starting local audio:", error);
|
367
|
+
voiceClose.value = true;
|
368
|
+
}
|
369
|
+
if (!isAudio.value && selfVideoRef) {
|
370
|
+
try {
|
372
371
|
await trtc.startLocalVideo({
|
373
372
|
view: selfVideoRef,
|
374
373
|
mute: videocamClose.value
|
375
374
|
});
|
375
|
+
} catch (error) {
|
376
|
+
console.error("Error starting local video:", error);
|
377
|
+
videocamClose.value = true;
|
376
378
|
}
|
377
|
-
} catch (error) {
|
378
|
-
console.error("Error starting local media:", error);
|
379
|
-
throw error;
|
380
379
|
}
|
381
380
|
}
|
382
381
|
function installEventHandlers(handlers) {
|
@@ -432,7 +431,6 @@ function useVideo(config = {}) {
|
|
432
431
|
function setVideoRef(userId, el) {
|
433
432
|
if (el) {
|
434
433
|
videoRefs.value.set(userId, el);
|
435
|
-
console.log("Video ref set for user:", userId, "Element:", el);
|
436
434
|
if (isConnect.value) {
|
437
435
|
const user = findUser(userId);
|
438
436
|
console.log("User found:", user);
|
@@ -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;
|