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