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
@@ -625,6 +625,7 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
625
625
|
menuProps: {
|
626
626
|
class: string;
|
627
627
|
};
|
628
|
+
specialDateRange: string[];
|
628
629
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
629
630
|
actionList_prop: {
|
630
631
|
type: import("vue").PropType<import("..").IClassifyListType>;
|
@@ -699,6 +700,11 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
699
700
|
getParamCfg: (key: string) => any;
|
700
701
|
initFilterConditions: (tableId: string, rawConditions: import("..").ISearchConfigType) => Promise<void>;
|
701
702
|
getRawFilterConditions: () => any[];
|
703
|
+
dateTypeList: string[];
|
704
|
+
getOptions: (key: string) => {
|
705
|
+
label: string;
|
706
|
+
value: string;
|
707
|
+
}[];
|
702
708
|
handleEditDisplayCategory: (item: import("..").ICategoryItemType) => void;
|
703
709
|
handleDisplayCategoryAddState: () => void;
|
704
710
|
findConditionByDisplayCategory: (sid: string) => unknown;
|
@@ -719,6 +725,10 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
719
725
|
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<{}>>, {}>;
|
720
726
|
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<{}>>, {}>;
|
721
727
|
ValueCfg: import("vue").DefineComponent<{
|
728
|
+
item: {
|
729
|
+
type: ObjectConstructor;
|
730
|
+
default: null;
|
731
|
+
};
|
722
732
|
paramCfg: {
|
723
733
|
type: ObjectConstructor;
|
724
734
|
default: null;
|
@@ -740,6 +750,10 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
740
750
|
};
|
741
751
|
}, {
|
742
752
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
753
|
+
item: {
|
754
|
+
type: ObjectConstructor;
|
755
|
+
default: null;
|
756
|
+
};
|
743
757
|
paramCfg: {
|
744
758
|
type: ObjectConstructor;
|
745
759
|
default: null;
|
@@ -775,6 +789,10 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
775
789
|
componentCfg: {
|
776
790
|
type: ObjectConstructor;
|
777
791
|
};
|
792
|
+
item: {
|
793
|
+
type: ObjectConstructor;
|
794
|
+
required: true;
|
795
|
+
};
|
778
796
|
paramCfg: {
|
779
797
|
type: ObjectConstructor;
|
780
798
|
default: null;
|
@@ -796,6 +814,10 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
796
814
|
componentCfg: {
|
797
815
|
type: ObjectConstructor;
|
798
816
|
};
|
817
|
+
item: {
|
818
|
+
type: ObjectConstructor;
|
819
|
+
required: true;
|
820
|
+
};
|
799
821
|
paramCfg: {
|
800
822
|
type: ObjectConstructor;
|
801
823
|
default: null;
|
@@ -818,6 +840,7 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
818
840
|
"onUpdate:customDate"?: ((...args: any[]) => any) | undefined;
|
819
841
|
}>>;
|
820
842
|
emit: (event: "update:modelValue" | "update:presetVal" | "update:customDate", ...args: any[]) => void;
|
843
|
+
filterType: import("vue").ComputedRef<"1" | "2" | "3">;
|
821
844
|
valueCp: import("vue").WritableComputedRef<any>;
|
822
845
|
presetValCp: import("vue").WritableComputedRef<string>;
|
823
846
|
dateType: any;
|
@@ -964,6 +987,231 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
964
987
|
holidays: Date[];
|
965
988
|
}>>;
|
966
989
|
NSelect: any;
|
990
|
+
DateOption: import("vue").DefineComponent<{
|
991
|
+
filterType: {
|
992
|
+
type: StringConstructor;
|
993
|
+
required: true;
|
994
|
+
};
|
995
|
+
modelValue: {
|
996
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
997
|
+
default: null;
|
998
|
+
};
|
999
|
+
presetVal: {
|
1000
|
+
type: StringConstructor;
|
1001
|
+
default: null;
|
1002
|
+
};
|
1003
|
+
dateType: {
|
1004
|
+
type: StringConstructor;
|
1005
|
+
};
|
1006
|
+
isDateDisabled: {
|
1007
|
+
type: FunctionConstructor;
|
1008
|
+
};
|
1009
|
+
timeDisabled: {
|
1010
|
+
type: FunctionConstructor;
|
1011
|
+
};
|
1012
|
+
valueFormat: {
|
1013
|
+
type: StringConstructor;
|
1014
|
+
};
|
1015
|
+
}, {
|
1016
|
+
widgetOptions: {
|
1017
|
+
label: string;
|
1018
|
+
value: string;
|
1019
|
+
}[];
|
1020
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
1021
|
+
filterType: {
|
1022
|
+
type: StringConstructor;
|
1023
|
+
required: true;
|
1024
|
+
};
|
1025
|
+
modelValue: {
|
1026
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
1027
|
+
default: null;
|
1028
|
+
};
|
1029
|
+
presetVal: {
|
1030
|
+
type: StringConstructor;
|
1031
|
+
default: null;
|
1032
|
+
};
|
1033
|
+
dateType: {
|
1034
|
+
type: StringConstructor;
|
1035
|
+
};
|
1036
|
+
isDateDisabled: {
|
1037
|
+
type: FunctionConstructor;
|
1038
|
+
};
|
1039
|
+
timeDisabled: {
|
1040
|
+
type: FunctionConstructor;
|
1041
|
+
};
|
1042
|
+
valueFormat: {
|
1043
|
+
type: StringConstructor;
|
1044
|
+
};
|
1045
|
+
}>> & {
|
1046
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
1047
|
+
"onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
|
1048
|
+
}>>;
|
1049
|
+
emit: (event: "update:modelValue" | "update:presetVal", ...args: any[]) => void;
|
1050
|
+
valueCp: import("vue").WritableComputedRef<any>;
|
1051
|
+
presetValCp: import("vue").WritableComputedRef<string>;
|
1052
|
+
CDatePicker: SFCWithInstall<import("vue").DefineComponent<{
|
1053
|
+
updateUnchangedValue: {
|
1054
|
+
type: BooleanConstructor;
|
1055
|
+
};
|
1056
|
+
onConfirm: {
|
1057
|
+
type: FunctionConstructor;
|
1058
|
+
};
|
1059
|
+
formattedValue: {
|
1060
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
1061
|
+
};
|
1062
|
+
placeholder: {
|
1063
|
+
type: StringConstructor;
|
1064
|
+
};
|
1065
|
+
allowedInvalidValue: {
|
1066
|
+
type: StringConstructor;
|
1067
|
+
};
|
1068
|
+
to: {
|
1069
|
+
type: import("vue").PropType<string | false | HTMLElement>;
|
1070
|
+
default: string;
|
1071
|
+
};
|
1072
|
+
holidays: {
|
1073
|
+
type: import("vue").PropType<Date[]>;
|
1074
|
+
default: () => never[];
|
1075
|
+
};
|
1076
|
+
type: {
|
1077
|
+
type: StringConstructor;
|
1078
|
+
default: string;
|
1079
|
+
};
|
1080
|
+
isDateDisabled: {
|
1081
|
+
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
1082
|
+
};
|
1083
|
+
}, {
|
1084
|
+
attrs: {
|
1085
|
+
[x: string]: unknown;
|
1086
|
+
};
|
1087
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
1088
|
+
updateUnchangedValue: {
|
1089
|
+
type: BooleanConstructor;
|
1090
|
+
};
|
1091
|
+
onConfirm: {
|
1092
|
+
type: FunctionConstructor;
|
1093
|
+
};
|
1094
|
+
formattedValue: {
|
1095
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
1096
|
+
};
|
1097
|
+
placeholder: {
|
1098
|
+
type: StringConstructor;
|
1099
|
+
};
|
1100
|
+
allowedInvalidValue: {
|
1101
|
+
type: StringConstructor;
|
1102
|
+
};
|
1103
|
+
to: {
|
1104
|
+
type: import("vue").PropType<string | false | HTMLElement>;
|
1105
|
+
default: string;
|
1106
|
+
};
|
1107
|
+
holidays: {
|
1108
|
+
type: import("vue").PropType<Date[]>;
|
1109
|
+
default: () => never[];
|
1110
|
+
};
|
1111
|
+
type: {
|
1112
|
+
type: StringConstructor;
|
1113
|
+
default: string;
|
1114
|
+
};
|
1115
|
+
isDateDisabled: {
|
1116
|
+
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
1117
|
+
};
|
1118
|
+
}>> & {
|
1119
|
+
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
1120
|
+
}>>;
|
1121
|
+
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
1122
|
+
datePickerRef: import("vue").Ref<import("../../shared/types").AnyObject | null>;
|
1123
|
+
panelInstRef: import("vue").Ref<null>;
|
1124
|
+
placeholderRef: import("vue").Ref<any>;
|
1125
|
+
oldValue: string;
|
1126
|
+
currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
|
1127
|
+
isDateTime: import("vue").ComputedRef<boolean>;
|
1128
|
+
formatRef: import("vue").ComputedRef<string>;
|
1129
|
+
panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
|
1130
|
+
_isDateDisabled: import("vue").ComputedRef<(current: number, ...arg: any[]) => boolean>;
|
1131
|
+
focus: () => any;
|
1132
|
+
blur: () => any;
|
1133
|
+
handleConfirm: (target: HTMLInputElement) => void;
|
1134
|
+
onUpdateShow: (show: boolean) => Promise<void>;
|
1135
|
+
watchers: import("../../shared/types").AnyFn[];
|
1136
|
+
stopWatcher: () => void;
|
1137
|
+
setHoliday: (show: boolean) => Promise<void>;
|
1138
|
+
onConfirm: (...args: any[]) => Promise<void>;
|
1139
|
+
isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
|
1140
|
+
setShortcutValue: (type: "month" | "week") => Promise<void>;
|
1141
|
+
NDatePicker: any;
|
1142
|
+
}, 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<{
|
1143
|
+
updateUnchangedValue: {
|
1144
|
+
type: BooleanConstructor;
|
1145
|
+
};
|
1146
|
+
onConfirm: {
|
1147
|
+
type: FunctionConstructor;
|
1148
|
+
};
|
1149
|
+
formattedValue: {
|
1150
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
1151
|
+
};
|
1152
|
+
placeholder: {
|
1153
|
+
type: StringConstructor;
|
1154
|
+
};
|
1155
|
+
allowedInvalidValue: {
|
1156
|
+
type: StringConstructor;
|
1157
|
+
};
|
1158
|
+
to: {
|
1159
|
+
type: import("vue").PropType<string | false | HTMLElement>;
|
1160
|
+
default: string;
|
1161
|
+
};
|
1162
|
+
holidays: {
|
1163
|
+
type: import("vue").PropType<Date[]>;
|
1164
|
+
default: () => never[];
|
1165
|
+
};
|
1166
|
+
type: {
|
1167
|
+
type: StringConstructor;
|
1168
|
+
default: string;
|
1169
|
+
};
|
1170
|
+
isDateDisabled: {
|
1171
|
+
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
1172
|
+
};
|
1173
|
+
}>> & {
|
1174
|
+
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
1175
|
+
}, {
|
1176
|
+
type: string;
|
1177
|
+
updateUnchangedValue: boolean;
|
1178
|
+
to: string | false | HTMLElement;
|
1179
|
+
holidays: Date[];
|
1180
|
+
}>>;
|
1181
|
+
NSelect: any;
|
1182
|
+
NInputNumber: any;
|
1183
|
+
}, 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<{
|
1184
|
+
filterType: {
|
1185
|
+
type: StringConstructor;
|
1186
|
+
required: true;
|
1187
|
+
};
|
1188
|
+
modelValue: {
|
1189
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
1190
|
+
default: null;
|
1191
|
+
};
|
1192
|
+
presetVal: {
|
1193
|
+
type: StringConstructor;
|
1194
|
+
default: null;
|
1195
|
+
};
|
1196
|
+
dateType: {
|
1197
|
+
type: StringConstructor;
|
1198
|
+
};
|
1199
|
+
isDateDisabled: {
|
1200
|
+
type: FunctionConstructor;
|
1201
|
+
};
|
1202
|
+
timeDisabled: {
|
1203
|
+
type: FunctionConstructor;
|
1204
|
+
};
|
1205
|
+
valueFormat: {
|
1206
|
+
type: StringConstructor;
|
1207
|
+
};
|
1208
|
+
}>> & {
|
1209
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
1210
|
+
"onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
|
1211
|
+
}, {
|
1212
|
+
modelValue: string | number | unknown[];
|
1213
|
+
presetVal: string;
|
1214
|
+
}>;
|
967
1215
|
WidgetValEnums: {
|
968
1216
|
CUSTOM: string;
|
969
1217
|
FIRST_VAL: string;
|
@@ -999,6 +1247,10 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
999
1247
|
componentCfg: {
|
1000
1248
|
type: ObjectConstructor;
|
1001
1249
|
};
|
1250
|
+
item: {
|
1251
|
+
type: ObjectConstructor;
|
1252
|
+
required: true;
|
1253
|
+
};
|
1002
1254
|
paramCfg: {
|
1003
1255
|
type: ObjectConstructor;
|
1004
1256
|
default: null;
|
@@ -1476,6 +1728,10 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
1476
1728
|
paramCfg: Record<string, any>;
|
1477
1729
|
}>;
|
1478
1730
|
DateRange: import("vue").DefineComponent<{
|
1731
|
+
item: {
|
1732
|
+
type: ObjectConstructor;
|
1733
|
+
required: true;
|
1734
|
+
};
|
1479
1735
|
paramCfg: {
|
1480
1736
|
type: ObjectConstructor;
|
1481
1737
|
default: null;
|
@@ -1494,6 +1750,10 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
1494
1750
|
};
|
1495
1751
|
}, {
|
1496
1752
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
1753
|
+
item: {
|
1754
|
+
type: ObjectConstructor;
|
1755
|
+
required: true;
|
1756
|
+
};
|
1497
1757
|
paramCfg: {
|
1498
1758
|
type: ObjectConstructor;
|
1499
1759
|
default: null;
|
@@ -1518,6 +1778,7 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
1518
1778
|
emit: (event: "update:modelValue" | "update:presetVal" | "update:customDate", ...args: any[]) => void;
|
1519
1779
|
startDate: import("vue").Ref<any>;
|
1520
1780
|
endDate: import("vue").Ref<any>;
|
1781
|
+
filterType: import("vue").ComputedRef<"1" | "2" | "3">;
|
1521
1782
|
valueFormat: import("vue").ComputedRef<string>;
|
1522
1783
|
dateFormat: import("vue").ComputedRef<string>;
|
1523
1784
|
compType: import("vue").ComputedRef<any>;
|
@@ -1536,7 +1797,7 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
1536
1797
|
value: string;
|
1537
1798
|
}[]>;
|
1538
1799
|
presetValCp: import("vue").WritableComputedRef<string>;
|
1539
|
-
|
1800
|
+
valueDateCp: import("vue").WritableComputedRef<unknown>;
|
1540
1801
|
handleChange: (val: any, type: "start" | "end") => void;
|
1541
1802
|
isStartDateDisabled: (ts: number) => boolean;
|
1542
1803
|
timeStartDisabled: (ts: number) => {
|
@@ -1681,6 +1942,231 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
1681
1942
|
to: string | false | HTMLElement;
|
1682
1943
|
holidays: Date[];
|
1683
1944
|
}>>;
|
1945
|
+
DateOption: import("vue").DefineComponent<{
|
1946
|
+
filterType: {
|
1947
|
+
type: StringConstructor;
|
1948
|
+
required: true;
|
1949
|
+
};
|
1950
|
+
modelValue: {
|
1951
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
1952
|
+
default: null;
|
1953
|
+
};
|
1954
|
+
presetVal: {
|
1955
|
+
type: StringConstructor;
|
1956
|
+
default: null;
|
1957
|
+
};
|
1958
|
+
dateType: {
|
1959
|
+
type: StringConstructor;
|
1960
|
+
};
|
1961
|
+
isDateDisabled: {
|
1962
|
+
type: FunctionConstructor;
|
1963
|
+
};
|
1964
|
+
timeDisabled: {
|
1965
|
+
type: FunctionConstructor;
|
1966
|
+
};
|
1967
|
+
valueFormat: {
|
1968
|
+
type: StringConstructor;
|
1969
|
+
};
|
1970
|
+
}, {
|
1971
|
+
widgetOptions: {
|
1972
|
+
label: string;
|
1973
|
+
value: string;
|
1974
|
+
}[];
|
1975
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
1976
|
+
filterType: {
|
1977
|
+
type: StringConstructor;
|
1978
|
+
required: true;
|
1979
|
+
};
|
1980
|
+
modelValue: {
|
1981
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
1982
|
+
default: null;
|
1983
|
+
};
|
1984
|
+
presetVal: {
|
1985
|
+
type: StringConstructor;
|
1986
|
+
default: null;
|
1987
|
+
};
|
1988
|
+
dateType: {
|
1989
|
+
type: StringConstructor;
|
1990
|
+
};
|
1991
|
+
isDateDisabled: {
|
1992
|
+
type: FunctionConstructor;
|
1993
|
+
};
|
1994
|
+
timeDisabled: {
|
1995
|
+
type: FunctionConstructor;
|
1996
|
+
};
|
1997
|
+
valueFormat: {
|
1998
|
+
type: StringConstructor;
|
1999
|
+
};
|
2000
|
+
}>> & {
|
2001
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
2002
|
+
"onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
|
2003
|
+
}>>;
|
2004
|
+
emit: (event: "update:modelValue" | "update:presetVal", ...args: any[]) => void;
|
2005
|
+
valueCp: import("vue").WritableComputedRef<any>;
|
2006
|
+
presetValCp: import("vue").WritableComputedRef<string>;
|
2007
|
+
CDatePicker: SFCWithInstall<import("vue").DefineComponent<{
|
2008
|
+
updateUnchangedValue: {
|
2009
|
+
type: BooleanConstructor;
|
2010
|
+
};
|
2011
|
+
onConfirm: {
|
2012
|
+
type: FunctionConstructor;
|
2013
|
+
};
|
2014
|
+
formattedValue: {
|
2015
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
2016
|
+
};
|
2017
|
+
placeholder: {
|
2018
|
+
type: StringConstructor;
|
2019
|
+
};
|
2020
|
+
allowedInvalidValue: {
|
2021
|
+
type: StringConstructor;
|
2022
|
+
};
|
2023
|
+
to: {
|
2024
|
+
type: import("vue").PropType<string | false | HTMLElement>;
|
2025
|
+
default: string;
|
2026
|
+
};
|
2027
|
+
holidays: {
|
2028
|
+
type: import("vue").PropType<Date[]>;
|
2029
|
+
default: () => never[];
|
2030
|
+
};
|
2031
|
+
type: {
|
2032
|
+
type: StringConstructor;
|
2033
|
+
default: string;
|
2034
|
+
};
|
2035
|
+
isDateDisabled: {
|
2036
|
+
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
2037
|
+
};
|
2038
|
+
}, {
|
2039
|
+
attrs: {
|
2040
|
+
[x: string]: unknown;
|
2041
|
+
};
|
2042
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
2043
|
+
updateUnchangedValue: {
|
2044
|
+
type: BooleanConstructor;
|
2045
|
+
};
|
2046
|
+
onConfirm: {
|
2047
|
+
type: FunctionConstructor;
|
2048
|
+
};
|
2049
|
+
formattedValue: {
|
2050
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
2051
|
+
};
|
2052
|
+
placeholder: {
|
2053
|
+
type: StringConstructor;
|
2054
|
+
};
|
2055
|
+
allowedInvalidValue: {
|
2056
|
+
type: StringConstructor;
|
2057
|
+
};
|
2058
|
+
to: {
|
2059
|
+
type: import("vue").PropType<string | false | HTMLElement>;
|
2060
|
+
default: string;
|
2061
|
+
};
|
2062
|
+
holidays: {
|
2063
|
+
type: import("vue").PropType<Date[]>;
|
2064
|
+
default: () => never[];
|
2065
|
+
};
|
2066
|
+
type: {
|
2067
|
+
type: StringConstructor;
|
2068
|
+
default: string;
|
2069
|
+
};
|
2070
|
+
isDateDisabled: {
|
2071
|
+
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
2072
|
+
};
|
2073
|
+
}>> & {
|
2074
|
+
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
2075
|
+
}>>;
|
2076
|
+
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
2077
|
+
datePickerRef: import("vue").Ref<import("../../shared/types").AnyObject | null>;
|
2078
|
+
panelInstRef: import("vue").Ref<null>;
|
2079
|
+
placeholderRef: import("vue").Ref<any>;
|
2080
|
+
oldValue: string;
|
2081
|
+
currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
|
2082
|
+
isDateTime: import("vue").ComputedRef<boolean>;
|
2083
|
+
formatRef: import("vue").ComputedRef<string>;
|
2084
|
+
panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
|
2085
|
+
_isDateDisabled: import("vue").ComputedRef<(current: number, ...arg: any[]) => boolean>;
|
2086
|
+
focus: () => any;
|
2087
|
+
blur: () => any;
|
2088
|
+
handleConfirm: (target: HTMLInputElement) => void;
|
2089
|
+
onUpdateShow: (show: boolean) => Promise<void>;
|
2090
|
+
watchers: import("../../shared/types").AnyFn[];
|
2091
|
+
stopWatcher: () => void;
|
2092
|
+
setHoliday: (show: boolean) => Promise<void>;
|
2093
|
+
onConfirm: (...args: any[]) => Promise<void>;
|
2094
|
+
isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
|
2095
|
+
setShortcutValue: (type: "month" | "week") => Promise<void>;
|
2096
|
+
NDatePicker: any;
|
2097
|
+
}, 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<{
|
2098
|
+
updateUnchangedValue: {
|
2099
|
+
type: BooleanConstructor;
|
2100
|
+
};
|
2101
|
+
onConfirm: {
|
2102
|
+
type: FunctionConstructor;
|
2103
|
+
};
|
2104
|
+
formattedValue: {
|
2105
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
2106
|
+
};
|
2107
|
+
placeholder: {
|
2108
|
+
type: StringConstructor;
|
2109
|
+
};
|
2110
|
+
allowedInvalidValue: {
|
2111
|
+
type: StringConstructor;
|
2112
|
+
};
|
2113
|
+
to: {
|
2114
|
+
type: import("vue").PropType<string | false | HTMLElement>;
|
2115
|
+
default: string;
|
2116
|
+
};
|
2117
|
+
holidays: {
|
2118
|
+
type: import("vue").PropType<Date[]>;
|
2119
|
+
default: () => never[];
|
2120
|
+
};
|
2121
|
+
type: {
|
2122
|
+
type: StringConstructor;
|
2123
|
+
default: string;
|
2124
|
+
};
|
2125
|
+
isDateDisabled: {
|
2126
|
+
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
2127
|
+
};
|
2128
|
+
}>> & {
|
2129
|
+
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
2130
|
+
}, {
|
2131
|
+
type: string;
|
2132
|
+
updateUnchangedValue: boolean;
|
2133
|
+
to: string | false | HTMLElement;
|
2134
|
+
holidays: Date[];
|
2135
|
+
}>>;
|
2136
|
+
NSelect: any;
|
2137
|
+
NInputNumber: any;
|
2138
|
+
}, 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<{
|
2139
|
+
filterType: {
|
2140
|
+
type: StringConstructor;
|
2141
|
+
required: true;
|
2142
|
+
};
|
2143
|
+
modelValue: {
|
2144
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
2145
|
+
default: null;
|
2146
|
+
};
|
2147
|
+
presetVal: {
|
2148
|
+
type: StringConstructor;
|
2149
|
+
default: null;
|
2150
|
+
};
|
2151
|
+
dateType: {
|
2152
|
+
type: StringConstructor;
|
2153
|
+
};
|
2154
|
+
isDateDisabled: {
|
2155
|
+
type: FunctionConstructor;
|
2156
|
+
};
|
2157
|
+
timeDisabled: {
|
2158
|
+
type: FunctionConstructor;
|
2159
|
+
};
|
2160
|
+
valueFormat: {
|
2161
|
+
type: StringConstructor;
|
2162
|
+
};
|
2163
|
+
}>> & {
|
2164
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
2165
|
+
"onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
|
2166
|
+
}, {
|
2167
|
+
modelValue: string | number | unknown[];
|
2168
|
+
presetVal: string;
|
2169
|
+
}>;
|
1684
2170
|
WidgetValEnums: {
|
1685
2171
|
CUSTOM: string;
|
1686
2172
|
FIRST_VAL: string;
|
@@ -1713,6 +2199,10 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
1713
2199
|
LAST_YEAR: string;
|
1714
2200
|
};
|
1715
2201
|
}, 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<{
|
2202
|
+
item: {
|
2203
|
+
type: ObjectConstructor;
|
2204
|
+
required: true;
|
2205
|
+
};
|
1716
2206
|
paramCfg: {
|
1717
2207
|
type: ObjectConstructor;
|
1718
2208
|
default: null;
|
@@ -1865,6 +2355,10 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
1865
2355
|
SELECTTREEDYNAMIC: string;
|
1866
2356
|
};
|
1867
2357
|
}, 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<{
|
2358
|
+
item: {
|
2359
|
+
type: ObjectConstructor;
|
2360
|
+
default: null;
|
2361
|
+
};
|
1868
2362
|
paramCfg: {
|
1869
2363
|
type: ObjectConstructor;
|
1870
2364
|
default: null;
|
@@ -1891,6 +2385,7 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
1891
2385
|
"onUpdate:customDate"?: ((...args: any[]) => any) | undefined;
|
1892
2386
|
}, {
|
1893
2387
|
modelValue: string | number | unknown[];
|
2388
|
+
item: Record<string, any>;
|
1894
2389
|
paramCfg: Record<string, any>;
|
1895
2390
|
presetVal: string;
|
1896
2391
|
isAccurate: boolean;
|
@@ -1899,11 +2394,11 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
|
|
1899
2394
|
ConditionEnums: {
|
1900
2395
|
NULL: string;
|
1901
2396
|
EQUAL: string;
|
2397
|
+
IN_THE_PAST: string;
|
2398
|
+
IN_THE_FUTURE: string;
|
2399
|
+
IN_THE_PAST_DI: string;
|
2400
|
+
IN_THE_FUTURE_DI: string;
|
1902
2401
|
};
|
1903
|
-
conditionOptions: {
|
1904
|
-
label: string;
|
1905
|
-
value: string;
|
1906
|
-
}[];
|
1907
2402
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("cancelSaveAdd" | "saveAdd")[], "cancelSaveAdd" | "saveAdd", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
1908
2403
|
actionList_prop: {
|
1909
2404
|
type: import("vue").PropType<import("..").IClassifyListType>;
|