cnhis-design-vue 3.3.3-release.13 → 3.3.3-release.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/button-print/src/components/NewPrintComponent.vue2.js +25 -4
- package/es/components/button-print/src/components/OldPrintComponent.vue2.js +22 -4
- 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/calendar/src/Calendar.vue2.js +15 -5
- package/es/components/classification/index.d.ts +500 -5
- package/es/components/classification/src/components/search-filter/index.vue.d.ts +500 -5
- package/es/components/classification/src/components/set-classification/index.vue.d.ts +500 -5
- package/es/components/classification/src/index.vue.d.ts +500 -5
- package/es/components/fabric-chart/src/hooks/temperature/useLeft.js +3 -2
- package/es/components/fabric-chart/src/hooks/temperature/useOther.d.ts +1 -1
- package/es/components/fabric-chart/src/hooks/temperature/useOther.js +58 -15
- package/es/components/fabric-chart/src/hooks/temperature/useTemperatureChart.js +4 -3
- package/es/components/form-render/src/components/renderer/date.d.ts +3 -1
- package/es/components/form-render/src/components/renderer/date.js +12 -10
- package/es/components/form-render/src/components/renderer/radio_checkbox.js +7 -2
- package/es/components/form-render/style/index.css +1 -1
- 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/MultipleVideo.vue2.js +0 -2
- package/es/components/iho-chat/src/components/Video.vue.d.ts +1 -1
- package/es/components/iho-chat/src/hooks/useVideo.js +12 -14
- package/es/components/index.css +1 -1
- package/es/components/index.js +1 -1
- package/es/components/keyboard/index.d.ts +1 -0
- package/es/components/keyboard/src/Keyboard.vue.d.ts +1 -0
- package/es/components/keyboard/src/components/NumberPanel.vue.d.ts +1 -0
- package/es/components/keyboard/src/components/NumberPanel.vue2.js +23 -10
- package/es/components/select-person/src/SelectPerson.vue2.js +8 -1
- package/es/components/table-filter/index.js +1 -1
- package/es/components/table-filter/src/components/classify-filter/ValueCfg.vue.d.ts +490 -1
- 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 +239 -1
- package/es/components/table-filter/src/components/classify-filter/components/DateRange.vue2.js +51 -8
- package/es/components/table-filter/src/components/classify-filter/components/index.d.ts +477 -1
- 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 +49 -2
- package/es/components/table-filter/src/components/classify-filter/index.vue.d.ts +500 -5
- package/es/components/table-filter/src/components/classify-filter/index.vue2.js +13 -6
- 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/helpers/presetValToTimestamp.d.ts +1 -0
- package/es/components/table-filter/src/components/render-widget/helpers/presetValToTimestamp.js +23 -2
- package/es/components/table-filter/src/components/render-widget/widgetCfgMaps.d.ts +3 -3
- package/es/components/table-filter/src/hooks/useAdvanced.js +5 -4
- package/es/components/table-filter/src/types/enums.d.ts +4 -0
- package/es/components/table-filter/src/types/enums.js +5 -1
- package/es/shared/hooks/useDateTime.js +1 -1
- package/es/shared/package.json.js +2 -2
- package/package.json +4 -4
@@ -382,6 +382,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
382
382
|
menuProps: {
|
383
383
|
class: string;
|
384
384
|
};
|
385
|
+
specialDateRange: string[];
|
385
386
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
386
387
|
actionList_prop: {
|
387
388
|
type: import("vue").PropType<IClassifyListType>;
|
@@ -456,6 +457,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
456
457
|
getParamCfg: (key: string) => any;
|
457
458
|
initFilterConditions: (tableId: string, rawConditions: import("../../../../../components/table-filter/src/types").ISearchConfigType) => Promise<void>;
|
458
459
|
getRawFilterConditions: () => any[];
|
460
|
+
dateTypeList: string[];
|
461
|
+
getOptions: (key: string) => {
|
462
|
+
label: string;
|
463
|
+
value: string;
|
464
|
+
}[];
|
459
465
|
handleEditDisplayCategory: (item: import("../../../../../components/table-filter/src/types").ICategoryItemType) => void;
|
460
466
|
handleDisplayCategoryAddState: () => void;
|
461
467
|
findConditionByDisplayCategory: (sid: string) => unknown;
|
@@ -476,6 +482,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
476
482
|
AddCircleSharp: 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<{}>>, {}>;
|
477
483
|
CloseOutline: 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<{}>>, {}>;
|
478
484
|
ValueCfg: import("vue").DefineComponent<{
|
485
|
+
item: {
|
486
|
+
type: ObjectConstructor;
|
487
|
+
default: null;
|
488
|
+
};
|
479
489
|
paramCfg: {
|
480
490
|
type: ObjectConstructor;
|
481
491
|
default: null;
|
@@ -497,6 +507,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
497
507
|
};
|
498
508
|
}, {
|
499
509
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
510
|
+
item: {
|
511
|
+
type: ObjectConstructor;
|
512
|
+
default: null;
|
513
|
+
};
|
500
514
|
paramCfg: {
|
501
515
|
type: ObjectConstructor;
|
502
516
|
default: null;
|
@@ -532,6 +546,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
532
546
|
componentCfg: {
|
533
547
|
type: ObjectConstructor;
|
534
548
|
};
|
549
|
+
item: {
|
550
|
+
type: ObjectConstructor;
|
551
|
+
required: true;
|
552
|
+
};
|
535
553
|
paramCfg: {
|
536
554
|
type: ObjectConstructor;
|
537
555
|
default: null;
|
@@ -553,6 +571,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
553
571
|
componentCfg: {
|
554
572
|
type: ObjectConstructor;
|
555
573
|
};
|
574
|
+
item: {
|
575
|
+
type: ObjectConstructor;
|
576
|
+
required: true;
|
577
|
+
};
|
556
578
|
paramCfg: {
|
557
579
|
type: ObjectConstructor;
|
558
580
|
default: null;
|
@@ -575,6 +597,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
575
597
|
"onUpdate:customDate"?: ((...args: any[]) => any) | undefined;
|
576
598
|
}>>;
|
577
599
|
emit: (event: "update:modelValue" | "update:presetVal" | "update:customDate", ...args: any[]) => void;
|
600
|
+
filterType: import("vue").ComputedRef<"1" | "2" | "3">;
|
578
601
|
valueCp: import("vue").WritableComputedRef<any>;
|
579
602
|
presetValCp: import("vue").WritableComputedRef<string>;
|
580
603
|
dateType: any;
|
@@ -721,6 +744,231 @@ declare const _default: import("vue").DefineComponent<{
|
|
721
744
|
holidays: Date[];
|
722
745
|
}>>;
|
723
746
|
NSelect: any;
|
747
|
+
DateOption: import("vue").DefineComponent<{
|
748
|
+
filterType: {
|
749
|
+
type: StringConstructor;
|
750
|
+
required: true;
|
751
|
+
};
|
752
|
+
modelValue: {
|
753
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
754
|
+
default: null;
|
755
|
+
};
|
756
|
+
presetVal: {
|
757
|
+
type: StringConstructor;
|
758
|
+
default: null;
|
759
|
+
};
|
760
|
+
dateType: {
|
761
|
+
type: StringConstructor;
|
762
|
+
};
|
763
|
+
isDateDisabled: {
|
764
|
+
type: FunctionConstructor;
|
765
|
+
};
|
766
|
+
timeDisabled: {
|
767
|
+
type: FunctionConstructor;
|
768
|
+
};
|
769
|
+
valueFormat: {
|
770
|
+
type: StringConstructor;
|
771
|
+
};
|
772
|
+
}, {
|
773
|
+
widgetOptions: {
|
774
|
+
label: string;
|
775
|
+
value: string;
|
776
|
+
}[];
|
777
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
778
|
+
filterType: {
|
779
|
+
type: StringConstructor;
|
780
|
+
required: true;
|
781
|
+
};
|
782
|
+
modelValue: {
|
783
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
784
|
+
default: null;
|
785
|
+
};
|
786
|
+
presetVal: {
|
787
|
+
type: StringConstructor;
|
788
|
+
default: null;
|
789
|
+
};
|
790
|
+
dateType: {
|
791
|
+
type: StringConstructor;
|
792
|
+
};
|
793
|
+
isDateDisabled: {
|
794
|
+
type: FunctionConstructor;
|
795
|
+
};
|
796
|
+
timeDisabled: {
|
797
|
+
type: FunctionConstructor;
|
798
|
+
};
|
799
|
+
valueFormat: {
|
800
|
+
type: StringConstructor;
|
801
|
+
};
|
802
|
+
}>> & {
|
803
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
804
|
+
"onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
|
805
|
+
}>>;
|
806
|
+
emit: (event: "update:modelValue" | "update:presetVal", ...args: any[]) => void;
|
807
|
+
valueCp: import("vue").WritableComputedRef<any>;
|
808
|
+
presetValCp: import("vue").WritableComputedRef<string>;
|
809
|
+
CDatePicker: import("../../../../../shared/types").SFCWithInstall<import("vue").DefineComponent<{
|
810
|
+
updateUnchangedValue: {
|
811
|
+
type: BooleanConstructor;
|
812
|
+
};
|
813
|
+
onConfirm: {
|
814
|
+
type: FunctionConstructor;
|
815
|
+
};
|
816
|
+
formattedValue: {
|
817
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
818
|
+
};
|
819
|
+
placeholder: {
|
820
|
+
type: StringConstructor;
|
821
|
+
};
|
822
|
+
allowedInvalidValue: {
|
823
|
+
type: StringConstructor;
|
824
|
+
};
|
825
|
+
to: {
|
826
|
+
type: import("vue").PropType<string | false | HTMLElement>;
|
827
|
+
default: string;
|
828
|
+
};
|
829
|
+
holidays: {
|
830
|
+
type: import("vue").PropType<Date[]>;
|
831
|
+
default: () => never[];
|
832
|
+
};
|
833
|
+
type: {
|
834
|
+
type: StringConstructor;
|
835
|
+
default: string;
|
836
|
+
};
|
837
|
+
isDateDisabled: {
|
838
|
+
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
839
|
+
};
|
840
|
+
}, {
|
841
|
+
attrs: {
|
842
|
+
[x: string]: unknown;
|
843
|
+
};
|
844
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
845
|
+
updateUnchangedValue: {
|
846
|
+
type: BooleanConstructor;
|
847
|
+
};
|
848
|
+
onConfirm: {
|
849
|
+
type: FunctionConstructor;
|
850
|
+
};
|
851
|
+
formattedValue: {
|
852
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
853
|
+
};
|
854
|
+
placeholder: {
|
855
|
+
type: StringConstructor;
|
856
|
+
};
|
857
|
+
allowedInvalidValue: {
|
858
|
+
type: StringConstructor;
|
859
|
+
};
|
860
|
+
to: {
|
861
|
+
type: import("vue").PropType<string | false | HTMLElement>;
|
862
|
+
default: string;
|
863
|
+
};
|
864
|
+
holidays: {
|
865
|
+
type: import("vue").PropType<Date[]>;
|
866
|
+
default: () => never[];
|
867
|
+
};
|
868
|
+
type: {
|
869
|
+
type: StringConstructor;
|
870
|
+
default: string;
|
871
|
+
};
|
872
|
+
isDateDisabled: {
|
873
|
+
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
874
|
+
};
|
875
|
+
}>> & {
|
876
|
+
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
877
|
+
}>>;
|
878
|
+
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
879
|
+
datePickerRef: import("vue").Ref<import("../../../../../shared/types").AnyObject | null>;
|
880
|
+
panelInstRef: import("vue").Ref<null>;
|
881
|
+
placeholderRef: import("vue").Ref<any>;
|
882
|
+
oldValue: string;
|
883
|
+
currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
|
884
|
+
isDateTime: import("vue").ComputedRef<boolean>;
|
885
|
+
formatRef: import("vue").ComputedRef<string>;
|
886
|
+
panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
|
887
|
+
_isDateDisabled: import("vue").ComputedRef<(current: number, ...arg: any[]) => boolean>;
|
888
|
+
focus: () => any;
|
889
|
+
blur: () => any;
|
890
|
+
handleConfirm: (target: HTMLInputElement) => void;
|
891
|
+
onUpdateShow: (show: boolean) => Promise<void>;
|
892
|
+
watchers: import("../../../../../shared/types").AnyFn[];
|
893
|
+
stopWatcher: () => void;
|
894
|
+
setHoliday: (show: boolean) => Promise<void>;
|
895
|
+
onConfirm: (...args: any[]) => Promise<void>;
|
896
|
+
isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
|
897
|
+
setShortcutValue: (type: "month" | "week") => Promise<void>;
|
898
|
+
NDatePicker: any;
|
899
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:formatted-value"[], "update:formatted-value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
900
|
+
updateUnchangedValue: {
|
901
|
+
type: BooleanConstructor;
|
902
|
+
};
|
903
|
+
onConfirm: {
|
904
|
+
type: FunctionConstructor;
|
905
|
+
};
|
906
|
+
formattedValue: {
|
907
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
908
|
+
};
|
909
|
+
placeholder: {
|
910
|
+
type: StringConstructor;
|
911
|
+
};
|
912
|
+
allowedInvalidValue: {
|
913
|
+
type: StringConstructor;
|
914
|
+
};
|
915
|
+
to: {
|
916
|
+
type: import("vue").PropType<string | false | HTMLElement>;
|
917
|
+
default: string;
|
918
|
+
};
|
919
|
+
holidays: {
|
920
|
+
type: import("vue").PropType<Date[]>;
|
921
|
+
default: () => never[];
|
922
|
+
};
|
923
|
+
type: {
|
924
|
+
type: StringConstructor;
|
925
|
+
default: string;
|
926
|
+
};
|
927
|
+
isDateDisabled: {
|
928
|
+
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
929
|
+
};
|
930
|
+
}>> & {
|
931
|
+
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
932
|
+
}, {
|
933
|
+
type: string;
|
934
|
+
updateUnchangedValue: boolean;
|
935
|
+
to: string | false | HTMLElement;
|
936
|
+
holidays: Date[];
|
937
|
+
}>>;
|
938
|
+
NSelect: any;
|
939
|
+
NInputNumber: any;
|
940
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "update:presetVal")[], "update:modelValue" | "update:presetVal", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
941
|
+
filterType: {
|
942
|
+
type: StringConstructor;
|
943
|
+
required: true;
|
944
|
+
};
|
945
|
+
modelValue: {
|
946
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
947
|
+
default: null;
|
948
|
+
};
|
949
|
+
presetVal: {
|
950
|
+
type: StringConstructor;
|
951
|
+
default: null;
|
952
|
+
};
|
953
|
+
dateType: {
|
954
|
+
type: StringConstructor;
|
955
|
+
};
|
956
|
+
isDateDisabled: {
|
957
|
+
type: FunctionConstructor;
|
958
|
+
};
|
959
|
+
timeDisabled: {
|
960
|
+
type: FunctionConstructor;
|
961
|
+
};
|
962
|
+
valueFormat: {
|
963
|
+
type: StringConstructor;
|
964
|
+
};
|
965
|
+
}>> & {
|
966
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
967
|
+
"onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
|
968
|
+
}, {
|
969
|
+
modelValue: string | number | unknown[];
|
970
|
+
presetVal: string;
|
971
|
+
}>;
|
724
972
|
WidgetValEnums: {
|
725
973
|
CUSTOM: string;
|
726
974
|
FIRST_VAL: string;
|
@@ -756,6 +1004,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
756
1004
|
componentCfg: {
|
757
1005
|
type: ObjectConstructor;
|
758
1006
|
};
|
1007
|
+
item: {
|
1008
|
+
type: ObjectConstructor;
|
1009
|
+
required: true;
|
1010
|
+
};
|
759
1011
|
paramCfg: {
|
760
1012
|
type: ObjectConstructor;
|
761
1013
|
default: null;
|
@@ -1233,6 +1485,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
1233
1485
|
paramCfg: Record<string, any>;
|
1234
1486
|
}>;
|
1235
1487
|
DateRange: import("vue").DefineComponent<{
|
1488
|
+
item: {
|
1489
|
+
type: ObjectConstructor;
|
1490
|
+
required: true;
|
1491
|
+
};
|
1236
1492
|
paramCfg: {
|
1237
1493
|
type: ObjectConstructor;
|
1238
1494
|
default: null;
|
@@ -1251,6 +1507,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
1251
1507
|
};
|
1252
1508
|
}, {
|
1253
1509
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
1510
|
+
item: {
|
1511
|
+
type: ObjectConstructor;
|
1512
|
+
required: true;
|
1513
|
+
};
|
1254
1514
|
paramCfg: {
|
1255
1515
|
type: ObjectConstructor;
|
1256
1516
|
default: null;
|
@@ -1275,6 +1535,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1275
1535
|
emit: (event: "update:modelValue" | "update:presetVal" | "update:customDate", ...args: any[]) => void;
|
1276
1536
|
startDate: import("vue").Ref<any>;
|
1277
1537
|
endDate: import("vue").Ref<any>;
|
1538
|
+
filterType: import("vue").ComputedRef<"1" | "2" | "3">;
|
1278
1539
|
valueFormat: import("vue").ComputedRef<string>;
|
1279
1540
|
dateFormat: import("vue").ComputedRef<string>;
|
1280
1541
|
compType: import("vue").ComputedRef<any>;
|
@@ -1293,7 +1554,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1293
1554
|
value: string;
|
1294
1555
|
}[]>;
|
1295
1556
|
presetValCp: import("vue").WritableComputedRef<string>;
|
1296
|
-
|
1557
|
+
valueDateCp: import("vue").WritableComputedRef<unknown>;
|
1297
1558
|
handleChange: (val: any, type: "start" | "end") => void;
|
1298
1559
|
isStartDateDisabled: (ts: number) => boolean;
|
1299
1560
|
timeStartDisabled: (ts: number) => {
|
@@ -1438,6 +1699,231 @@ declare const _default: import("vue").DefineComponent<{
|
|
1438
1699
|
to: string | false | HTMLElement;
|
1439
1700
|
holidays: Date[];
|
1440
1701
|
}>>;
|
1702
|
+
DateOption: import("vue").DefineComponent<{
|
1703
|
+
filterType: {
|
1704
|
+
type: StringConstructor;
|
1705
|
+
required: true;
|
1706
|
+
};
|
1707
|
+
modelValue: {
|
1708
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
1709
|
+
default: null;
|
1710
|
+
};
|
1711
|
+
presetVal: {
|
1712
|
+
type: StringConstructor;
|
1713
|
+
default: null;
|
1714
|
+
};
|
1715
|
+
dateType: {
|
1716
|
+
type: StringConstructor;
|
1717
|
+
};
|
1718
|
+
isDateDisabled: {
|
1719
|
+
type: FunctionConstructor;
|
1720
|
+
};
|
1721
|
+
timeDisabled: {
|
1722
|
+
type: FunctionConstructor;
|
1723
|
+
};
|
1724
|
+
valueFormat: {
|
1725
|
+
type: StringConstructor;
|
1726
|
+
};
|
1727
|
+
}, {
|
1728
|
+
widgetOptions: {
|
1729
|
+
label: string;
|
1730
|
+
value: string;
|
1731
|
+
}[];
|
1732
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
1733
|
+
filterType: {
|
1734
|
+
type: StringConstructor;
|
1735
|
+
required: true;
|
1736
|
+
};
|
1737
|
+
modelValue: {
|
1738
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
1739
|
+
default: null;
|
1740
|
+
};
|
1741
|
+
presetVal: {
|
1742
|
+
type: StringConstructor;
|
1743
|
+
default: null;
|
1744
|
+
};
|
1745
|
+
dateType: {
|
1746
|
+
type: StringConstructor;
|
1747
|
+
};
|
1748
|
+
isDateDisabled: {
|
1749
|
+
type: FunctionConstructor;
|
1750
|
+
};
|
1751
|
+
timeDisabled: {
|
1752
|
+
type: FunctionConstructor;
|
1753
|
+
};
|
1754
|
+
valueFormat: {
|
1755
|
+
type: StringConstructor;
|
1756
|
+
};
|
1757
|
+
}>> & {
|
1758
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
1759
|
+
"onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
|
1760
|
+
}>>;
|
1761
|
+
emit: (event: "update:modelValue" | "update:presetVal", ...args: any[]) => void;
|
1762
|
+
valueCp: import("vue").WritableComputedRef<any>;
|
1763
|
+
presetValCp: import("vue").WritableComputedRef<string>;
|
1764
|
+
CDatePicker: import("../../../../../shared/types").SFCWithInstall<import("vue").DefineComponent<{
|
1765
|
+
updateUnchangedValue: {
|
1766
|
+
type: BooleanConstructor;
|
1767
|
+
};
|
1768
|
+
onConfirm: {
|
1769
|
+
type: FunctionConstructor;
|
1770
|
+
};
|
1771
|
+
formattedValue: {
|
1772
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
1773
|
+
};
|
1774
|
+
placeholder: {
|
1775
|
+
type: StringConstructor;
|
1776
|
+
};
|
1777
|
+
allowedInvalidValue: {
|
1778
|
+
type: StringConstructor;
|
1779
|
+
};
|
1780
|
+
to: {
|
1781
|
+
type: import("vue").PropType<string | false | HTMLElement>;
|
1782
|
+
default: string;
|
1783
|
+
};
|
1784
|
+
holidays: {
|
1785
|
+
type: import("vue").PropType<Date[]>;
|
1786
|
+
default: () => never[];
|
1787
|
+
};
|
1788
|
+
type: {
|
1789
|
+
type: StringConstructor;
|
1790
|
+
default: string;
|
1791
|
+
};
|
1792
|
+
isDateDisabled: {
|
1793
|
+
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
1794
|
+
};
|
1795
|
+
}, {
|
1796
|
+
attrs: {
|
1797
|
+
[x: string]: unknown;
|
1798
|
+
};
|
1799
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
1800
|
+
updateUnchangedValue: {
|
1801
|
+
type: BooleanConstructor;
|
1802
|
+
};
|
1803
|
+
onConfirm: {
|
1804
|
+
type: FunctionConstructor;
|
1805
|
+
};
|
1806
|
+
formattedValue: {
|
1807
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
1808
|
+
};
|
1809
|
+
placeholder: {
|
1810
|
+
type: StringConstructor;
|
1811
|
+
};
|
1812
|
+
allowedInvalidValue: {
|
1813
|
+
type: StringConstructor;
|
1814
|
+
};
|
1815
|
+
to: {
|
1816
|
+
type: import("vue").PropType<string | false | HTMLElement>;
|
1817
|
+
default: string;
|
1818
|
+
};
|
1819
|
+
holidays: {
|
1820
|
+
type: import("vue").PropType<Date[]>;
|
1821
|
+
default: () => never[];
|
1822
|
+
};
|
1823
|
+
type: {
|
1824
|
+
type: StringConstructor;
|
1825
|
+
default: string;
|
1826
|
+
};
|
1827
|
+
isDateDisabled: {
|
1828
|
+
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
1829
|
+
};
|
1830
|
+
}>> & {
|
1831
|
+
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
1832
|
+
}>>;
|
1833
|
+
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
1834
|
+
datePickerRef: import("vue").Ref<import("../../../../../shared/types").AnyObject | null>;
|
1835
|
+
panelInstRef: import("vue").Ref<null>;
|
1836
|
+
placeholderRef: import("vue").Ref<any>;
|
1837
|
+
oldValue: string;
|
1838
|
+
currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
|
1839
|
+
isDateTime: import("vue").ComputedRef<boolean>;
|
1840
|
+
formatRef: import("vue").ComputedRef<string>;
|
1841
|
+
panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
|
1842
|
+
_isDateDisabled: import("vue").ComputedRef<(current: number, ...arg: any[]) => boolean>;
|
1843
|
+
focus: () => any;
|
1844
|
+
blur: () => any;
|
1845
|
+
handleConfirm: (target: HTMLInputElement) => void;
|
1846
|
+
onUpdateShow: (show: boolean) => Promise<void>;
|
1847
|
+
watchers: import("../../../../../shared/types").AnyFn[];
|
1848
|
+
stopWatcher: () => void;
|
1849
|
+
setHoliday: (show: boolean) => Promise<void>;
|
1850
|
+
onConfirm: (...args: any[]) => Promise<void>;
|
1851
|
+
isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
|
1852
|
+
setShortcutValue: (type: "month" | "week") => Promise<void>;
|
1853
|
+
NDatePicker: any;
|
1854
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:formatted-value"[], "update:formatted-value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
1855
|
+
updateUnchangedValue: {
|
1856
|
+
type: BooleanConstructor;
|
1857
|
+
};
|
1858
|
+
onConfirm: {
|
1859
|
+
type: FunctionConstructor;
|
1860
|
+
};
|
1861
|
+
formattedValue: {
|
1862
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
1863
|
+
};
|
1864
|
+
placeholder: {
|
1865
|
+
type: StringConstructor;
|
1866
|
+
};
|
1867
|
+
allowedInvalidValue: {
|
1868
|
+
type: StringConstructor;
|
1869
|
+
};
|
1870
|
+
to: {
|
1871
|
+
type: import("vue").PropType<string | false | HTMLElement>;
|
1872
|
+
default: string;
|
1873
|
+
};
|
1874
|
+
holidays: {
|
1875
|
+
type: import("vue").PropType<Date[]>;
|
1876
|
+
default: () => never[];
|
1877
|
+
};
|
1878
|
+
type: {
|
1879
|
+
type: StringConstructor;
|
1880
|
+
default: string;
|
1881
|
+
};
|
1882
|
+
isDateDisabled: {
|
1883
|
+
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
1884
|
+
};
|
1885
|
+
}>> & {
|
1886
|
+
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
1887
|
+
}, {
|
1888
|
+
type: string;
|
1889
|
+
updateUnchangedValue: boolean;
|
1890
|
+
to: string | false | HTMLElement;
|
1891
|
+
holidays: Date[];
|
1892
|
+
}>>;
|
1893
|
+
NSelect: any;
|
1894
|
+
NInputNumber: any;
|
1895
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "update:presetVal")[], "update:modelValue" | "update:presetVal", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
1896
|
+
filterType: {
|
1897
|
+
type: StringConstructor;
|
1898
|
+
required: true;
|
1899
|
+
};
|
1900
|
+
modelValue: {
|
1901
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
1902
|
+
default: null;
|
1903
|
+
};
|
1904
|
+
presetVal: {
|
1905
|
+
type: StringConstructor;
|
1906
|
+
default: null;
|
1907
|
+
};
|
1908
|
+
dateType: {
|
1909
|
+
type: StringConstructor;
|
1910
|
+
};
|
1911
|
+
isDateDisabled: {
|
1912
|
+
type: FunctionConstructor;
|
1913
|
+
};
|
1914
|
+
timeDisabled: {
|
1915
|
+
type: FunctionConstructor;
|
1916
|
+
};
|
1917
|
+
valueFormat: {
|
1918
|
+
type: StringConstructor;
|
1919
|
+
};
|
1920
|
+
}>> & {
|
1921
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
1922
|
+
"onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
|
1923
|
+
}, {
|
1924
|
+
modelValue: string | number | unknown[];
|
1925
|
+
presetVal: string;
|
1926
|
+
}>;
|
1441
1927
|
WidgetValEnums: {
|
1442
1928
|
CUSTOM: string;
|
1443
1929
|
FIRST_VAL: string;
|
@@ -1470,6 +1956,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
1470
1956
|
LAST_YEAR: string;
|
1471
1957
|
};
|
1472
1958
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "update:presetVal" | "update:customDate")[], "update:modelValue" | "update:presetVal" | "update:customDate", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
1959
|
+
item: {
|
1960
|
+
type: ObjectConstructor;
|
1961
|
+
required: true;
|
1962
|
+
};
|
1473
1963
|
paramCfg: {
|
1474
1964
|
type: ObjectConstructor;
|
1475
1965
|
default: null;
|
@@ -1622,6 +2112,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
1622
2112
|
SELECTTREEDYNAMIC: string;
|
1623
2113
|
};
|
1624
2114
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "update:isAccurate" | "update:presetVal" | "update:customDate")[], "update:modelValue" | "update:isAccurate" | "update:presetVal" | "update:customDate", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
2115
|
+
item: {
|
2116
|
+
type: ObjectConstructor;
|
2117
|
+
default: null;
|
2118
|
+
};
|
1625
2119
|
paramCfg: {
|
1626
2120
|
type: ObjectConstructor;
|
1627
2121
|
default: null;
|
@@ -1648,6 +2142,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1648
2142
|
"onUpdate:customDate"?: ((...args: any[]) => any) | undefined;
|
1649
2143
|
}, {
|
1650
2144
|
modelValue: string | number | unknown[];
|
2145
|
+
item: Record<string, any>;
|
1651
2146
|
paramCfg: Record<string, any>;
|
1652
2147
|
presetVal: string;
|
1653
2148
|
isAccurate: boolean;
|
@@ -1656,11 +2151,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
1656
2151
|
ConditionEnums: {
|
1657
2152
|
NULL: string;
|
1658
2153
|
EQUAL: string;
|
2154
|
+
IN_THE_PAST: string;
|
2155
|
+
IN_THE_FUTURE: string;
|
2156
|
+
IN_THE_PAST_DI: string;
|
2157
|
+
IN_THE_FUTURE_DI: string;
|
1659
2158
|
};
|
1660
|
-
conditionOptions: {
|
1661
|
-
label: string;
|
1662
|
-
value: string;
|
1663
|
-
}[];
|
1664
2159
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("cancelSaveAdd" | "saveAdd")[], "cancelSaveAdd" | "saveAdd", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
1665
2160
|
actionList_prop: {
|
1666
2161
|
type: import("vue").PropType<IClassifyListType>;
|