cnhis-design-vue 3.3.3-beta.65 → 3.3.3-beta.67

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. package/README.md +87 -87
  2. package/es/components/button-print/src/components/NewPrintComponent.vue2.js +7 -1
  3. package/es/components/button-print/src/components/OldPrintComponent.vue2.js +7 -1
  4. package/es/components/button-print/src/utils/print.d.ts +3 -3
  5. package/es/components/button-print/src/utils/print.js +11 -0
  6. package/es/components/classification/index.d.ts +506 -4
  7. package/es/components/classification/src/components/search-filter/index.vue.d.ts +506 -4
  8. package/es/components/classification/src/components/set-classification/index.vue.d.ts +506 -4
  9. package/es/components/classification/src/components/table-modal/index.vue.d.ts +0 -3
  10. package/es/components/classification/src/index.vue.d.ts +509 -4
  11. package/es/components/fabric-chart/src/hooks/temperature/useLeft.js +3 -2
  12. package/es/components/fabric-chart/src/hooks/temperature/useTemperatureChart.js +3 -2
  13. package/es/components/field-set/src/FieldColor.vue.d.ts +4 -4
  14. package/es/components/field-set/src/FieldFilter.vue.d.ts +4 -4
  15. package/es/components/field-set/src/FieldSet.vue.d.ts +5 -5
  16. package/es/components/field-set/src/components/table-row.vue.d.ts +4 -4
  17. package/es/components/form-config/index.d.ts +12 -12
  18. package/es/components/form-config/src/FormConfig.vue.d.ts +12 -12
  19. package/es/components/form-config/src/components/FormConfigEdit.vue.d.ts +8 -8
  20. package/es/components/form-config/src/components/FormConfigEventSetting.vue.d.ts +2 -2
  21. package/es/components/iho-chat/index.d.ts +1 -1
  22. package/es/components/iho-chat/src/Index.vue.d.ts +1 -1
  23. package/es/components/iho-chat/src/components/ChatMain.vue2.js +1 -1
  24. package/es/components/iho-chat/src/components/PersonProfile.vue2.js +1 -1
  25. package/es/components/iho-chat/src/components/Video.vue.d.ts +1 -1
  26. package/es/components/shortcut-setter/index.d.ts +2 -2
  27. package/es/components/shortcut-setter/src/ShortcutSetter.vue.d.ts +2 -2
  28. package/es/components/table-filter/src/components/classify-filter/ValueCfg.vue.d.ts +489 -0
  29. package/es/components/table-filter/src/components/classify-filter/ValueCfg.vue2.js +8 -2
  30. package/es/components/table-filter/src/components/classify-filter/components/Base/DateOption.vue.d.ts +226 -0
  31. package/es/components/table-filter/src/components/classify-filter/components/Base/DateOption.vue.js +6 -0
  32. package/es/components/table-filter/src/components/classify-filter/components/Base/DateOption.vue2.js +156 -0
  33. package/es/components/table-filter/src/components/classify-filter/components/Date.vue.d.ts +238 -0
  34. package/es/components/table-filter/src/components/classify-filter/components/Date.vue2.js +43 -4
  35. package/es/components/table-filter/src/components/classify-filter/components/DateRange.vue.d.ts +238 -0
  36. package/es/components/table-filter/src/components/classify-filter/components/DateRange.vue2.js +45 -4
  37. package/es/components/table-filter/src/components/classify-filter/components/index.d.ts +476 -0
  38. package/es/components/table-filter/src/components/classify-filter/helpers/options.d.ts +5 -1
  39. package/es/components/table-filter/src/components/classify-filter/helpers/options.js +123 -2
  40. package/es/components/table-filter/src/components/classify-filter/index.vue.d.ts +506 -4
  41. package/es/components/table-filter/src/components/classify-filter/index.vue2.js +11 -5
  42. package/es/components/table-filter/src/components/render-widget/components/DateInner.vue.d.ts +1 -1
  43. package/es/components/table-filter/src/components/render-widget/components/DateOut.vue.d.ts +1 -1
  44. package/es/components/table-filter/src/components/render-widget/components/DateRangeInner.vue.d.ts +1 -1
  45. package/es/components/table-filter/src/components/render-widget/components/index.d.ts +3 -3
  46. package/es/components/table-filter/src/components/render-widget/widgetCfgMaps.d.ts +3 -3
  47. package/es/components/table-filter/src/types/enums.d.ts +12 -0
  48. package/es/components/table-filter/src/types/enums.js +13 -1
  49. package/es/env.d.ts +25 -25
  50. package/es/shared/package.json.js +1 -1
  51. package/package.json +2 -2
@@ -699,6 +699,11 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
699
699
  getParamCfg: (key: string) => any;
700
700
  initFilterConditions: (tableId: string, rawConditions: import("..").ISearchConfigType) => Promise<void>;
701
701
  getRawFilterConditions: () => any[];
702
+ dateTypeList: string[];
703
+ getOptions: (key: string) => {
704
+ label: string;
705
+ value: string;
706
+ }[];
702
707
  handleEditDisplayCategory: (item: import("..").ICategoryItemType) => void;
703
708
  handleDisplayCategoryAddState: () => void;
704
709
  findConditionByDisplayCategory: (sid: string) => unknown;
@@ -719,6 +724,10 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
719
724
  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
725
  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
726
  ValueCfg: import("vue").DefineComponent<{
727
+ item: {
728
+ type: ObjectConstructor;
729
+ default: null;
730
+ };
722
731
  paramCfg: {
723
732
  type: ObjectConstructor;
724
733
  default: null;
@@ -740,6 +749,10 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
740
749
  };
741
750
  }, {
742
751
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
752
+ item: {
753
+ type: ObjectConstructor;
754
+ default: null;
755
+ };
743
756
  paramCfg: {
744
757
  type: ObjectConstructor;
745
758
  default: null;
@@ -775,6 +788,10 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
775
788
  componentCfg: {
776
789
  type: ObjectConstructor;
777
790
  };
791
+ item: {
792
+ type: ObjectConstructor;
793
+ required: true;
794
+ };
778
795
  paramCfg: {
779
796
  type: ObjectConstructor;
780
797
  default: null;
@@ -796,6 +813,10 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
796
813
  componentCfg: {
797
814
  type: ObjectConstructor;
798
815
  };
816
+ item: {
817
+ type: ObjectConstructor;
818
+ required: true;
819
+ };
799
820
  paramCfg: {
800
821
  type: ObjectConstructor;
801
822
  default: null;
@@ -818,6 +839,7 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
818
839
  "onUpdate:customDate"?: ((...args: any[]) => any) | undefined;
819
840
  }>>;
820
841
  emit: (event: "update:modelValue" | "update:presetVal" | "update:customDate", ...args: any[]) => void;
842
+ filterType: import("vue").ComputedRef<"1" | "2" | "3">;
821
843
  valueCp: import("vue").WritableComputedRef<any>;
822
844
  presetValCp: import("vue").WritableComputedRef<string>;
823
845
  dateType: any;
@@ -964,6 +986,231 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
964
986
  holidays: Date[];
965
987
  }>>;
966
988
  NSelect: any;
989
+ DateOption: import("vue").DefineComponent<{
990
+ filterType: {
991
+ type: StringConstructor;
992
+ required: true;
993
+ };
994
+ modelValue: {
995
+ type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
996
+ default: null;
997
+ };
998
+ presetVal: {
999
+ type: StringConstructor;
1000
+ default: null;
1001
+ };
1002
+ dateType: {
1003
+ type: StringConstructor;
1004
+ };
1005
+ isDateDisabled: {
1006
+ type: FunctionConstructor;
1007
+ };
1008
+ timeDisabled: {
1009
+ type: FunctionConstructor;
1010
+ };
1011
+ valueFormat: {
1012
+ type: StringConstructor;
1013
+ };
1014
+ }, {
1015
+ widgetOptions: {
1016
+ label: string;
1017
+ value: string;
1018
+ }[];
1019
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
1020
+ filterType: {
1021
+ type: StringConstructor;
1022
+ required: true;
1023
+ };
1024
+ modelValue: {
1025
+ type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
1026
+ default: null;
1027
+ };
1028
+ presetVal: {
1029
+ type: StringConstructor;
1030
+ default: null;
1031
+ };
1032
+ dateType: {
1033
+ type: StringConstructor;
1034
+ };
1035
+ isDateDisabled: {
1036
+ type: FunctionConstructor;
1037
+ };
1038
+ timeDisabled: {
1039
+ type: FunctionConstructor;
1040
+ };
1041
+ valueFormat: {
1042
+ type: StringConstructor;
1043
+ };
1044
+ }>> & {
1045
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1046
+ "onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
1047
+ }>>;
1048
+ emit: (event: "update:modelValue" | "update:presetVal", ...args: any[]) => void;
1049
+ valueCp: import("vue").WritableComputedRef<any>;
1050
+ presetValCp: import("vue").WritableComputedRef<string>;
1051
+ CDatePicker: SFCWithInstall<import("vue").DefineComponent<{
1052
+ updateUnchangedValue: {
1053
+ type: BooleanConstructor;
1054
+ };
1055
+ onConfirm: {
1056
+ type: FunctionConstructor;
1057
+ };
1058
+ formattedValue: {
1059
+ type: import("vue").PropType<(string | [string, string]) | null | undefined>;
1060
+ };
1061
+ placeholder: {
1062
+ type: StringConstructor;
1063
+ };
1064
+ allowedInvalidValue: {
1065
+ type: StringConstructor;
1066
+ };
1067
+ to: {
1068
+ type: import("vue").PropType<string | false | HTMLElement>;
1069
+ default: string;
1070
+ };
1071
+ holidays: {
1072
+ type: import("vue").PropType<Date[]>;
1073
+ default: () => never[];
1074
+ };
1075
+ type: {
1076
+ type: StringConstructor;
1077
+ default: string;
1078
+ };
1079
+ isDateDisabled: {
1080
+ type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1081
+ };
1082
+ }, {
1083
+ attrs: {
1084
+ [x: string]: unknown;
1085
+ };
1086
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
1087
+ updateUnchangedValue: {
1088
+ type: BooleanConstructor;
1089
+ };
1090
+ onConfirm: {
1091
+ type: FunctionConstructor;
1092
+ };
1093
+ formattedValue: {
1094
+ type: import("vue").PropType<(string | [string, string]) | null | undefined>;
1095
+ };
1096
+ placeholder: {
1097
+ type: StringConstructor;
1098
+ };
1099
+ allowedInvalidValue: {
1100
+ type: StringConstructor;
1101
+ };
1102
+ to: {
1103
+ type: import("vue").PropType<string | false | HTMLElement>;
1104
+ default: string;
1105
+ };
1106
+ holidays: {
1107
+ type: import("vue").PropType<Date[]>;
1108
+ default: () => never[];
1109
+ };
1110
+ type: {
1111
+ type: StringConstructor;
1112
+ default: string;
1113
+ };
1114
+ isDateDisabled: {
1115
+ type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1116
+ };
1117
+ }>> & {
1118
+ "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
1119
+ }>>;
1120
+ emit: (event: "update:formatted-value", ...args: any[]) => void;
1121
+ datePickerRef: import("vue").Ref<import("../../shared/types").AnyObject | null>;
1122
+ panelInstRef: import("vue").Ref<null>;
1123
+ placeholderRef: import("vue").Ref<any>;
1124
+ oldValue: string;
1125
+ currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
1126
+ isDateTime: import("vue").ComputedRef<boolean>;
1127
+ formatRef: import("vue").ComputedRef<string>;
1128
+ panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
1129
+ _isDateDisabled: import("vue").ComputedRef<(current: number, ...arg: any[]) => boolean>;
1130
+ focus: () => any;
1131
+ blur: () => any;
1132
+ handleConfirm: (target: HTMLInputElement) => void;
1133
+ onUpdateShow: (show: boolean) => Promise<void>;
1134
+ watchers: import("../../shared/types").AnyFn[];
1135
+ stopWatcher: () => void;
1136
+ setHoliday: (show: boolean) => Promise<void>;
1137
+ onConfirm: (...args: any[]) => Promise<void>;
1138
+ isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
1139
+ setShortcutValue: (type: "month" | "week") => Promise<void>;
1140
+ NDatePicker: any;
1141
+ }, 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<{
1142
+ updateUnchangedValue: {
1143
+ type: BooleanConstructor;
1144
+ };
1145
+ onConfirm: {
1146
+ type: FunctionConstructor;
1147
+ };
1148
+ formattedValue: {
1149
+ type: import("vue").PropType<(string | [string, string]) | null | undefined>;
1150
+ };
1151
+ placeholder: {
1152
+ type: StringConstructor;
1153
+ };
1154
+ allowedInvalidValue: {
1155
+ type: StringConstructor;
1156
+ };
1157
+ to: {
1158
+ type: import("vue").PropType<string | false | HTMLElement>;
1159
+ default: string;
1160
+ };
1161
+ holidays: {
1162
+ type: import("vue").PropType<Date[]>;
1163
+ default: () => never[];
1164
+ };
1165
+ type: {
1166
+ type: StringConstructor;
1167
+ default: string;
1168
+ };
1169
+ isDateDisabled: {
1170
+ type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1171
+ };
1172
+ }>> & {
1173
+ "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
1174
+ }, {
1175
+ type: string;
1176
+ updateUnchangedValue: boolean;
1177
+ to: string | false | HTMLElement;
1178
+ holidays: Date[];
1179
+ }>>;
1180
+ NSelect: any;
1181
+ NInputNumber: any;
1182
+ }, 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<{
1183
+ filterType: {
1184
+ type: StringConstructor;
1185
+ required: true;
1186
+ };
1187
+ modelValue: {
1188
+ type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
1189
+ default: null;
1190
+ };
1191
+ presetVal: {
1192
+ type: StringConstructor;
1193
+ default: null;
1194
+ };
1195
+ dateType: {
1196
+ type: StringConstructor;
1197
+ };
1198
+ isDateDisabled: {
1199
+ type: FunctionConstructor;
1200
+ };
1201
+ timeDisabled: {
1202
+ type: FunctionConstructor;
1203
+ };
1204
+ valueFormat: {
1205
+ type: StringConstructor;
1206
+ };
1207
+ }>> & {
1208
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1209
+ "onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
1210
+ }, {
1211
+ modelValue: string | number | unknown[];
1212
+ presetVal: string;
1213
+ }>;
967
1214
  WidgetValEnums: {
968
1215
  CUSTOM: string;
969
1216
  FIRST_VAL: string;
@@ -999,6 +1246,10 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
999
1246
  componentCfg: {
1000
1247
  type: ObjectConstructor;
1001
1248
  };
1249
+ item: {
1250
+ type: ObjectConstructor;
1251
+ required: true;
1252
+ };
1002
1253
  paramCfg: {
1003
1254
  type: ObjectConstructor;
1004
1255
  default: null;
@@ -1476,6 +1727,10 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
1476
1727
  paramCfg: Record<string, any>;
1477
1728
  }>;
1478
1729
  DateRange: import("vue").DefineComponent<{
1730
+ item: {
1731
+ type: ObjectConstructor;
1732
+ required: true;
1733
+ };
1479
1734
  paramCfg: {
1480
1735
  type: ObjectConstructor;
1481
1736
  default: null;
@@ -1494,6 +1749,10 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
1494
1749
  };
1495
1750
  }, {
1496
1751
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
1752
+ item: {
1753
+ type: ObjectConstructor;
1754
+ required: true;
1755
+ };
1497
1756
  paramCfg: {
1498
1757
  type: ObjectConstructor;
1499
1758
  default: null;
@@ -1518,6 +1777,7 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
1518
1777
  emit: (event: "update:modelValue" | "update:presetVal" | "update:customDate", ...args: any[]) => void;
1519
1778
  startDate: import("vue").Ref<any>;
1520
1779
  endDate: import("vue").Ref<any>;
1780
+ filterType: import("vue").ComputedRef<"1" | "2" | "3">;
1521
1781
  valueFormat: import("vue").ComputedRef<string>;
1522
1782
  dateFormat: import("vue").ComputedRef<string>;
1523
1783
  compType: import("vue").ComputedRef<any>;
@@ -1681,6 +1941,231 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
1681
1941
  to: string | false | HTMLElement;
1682
1942
  holidays: Date[];
1683
1943
  }>>;
1944
+ DateOption: import("vue").DefineComponent<{
1945
+ filterType: {
1946
+ type: StringConstructor;
1947
+ required: true;
1948
+ };
1949
+ modelValue: {
1950
+ type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
1951
+ default: null;
1952
+ };
1953
+ presetVal: {
1954
+ type: StringConstructor;
1955
+ default: null;
1956
+ };
1957
+ dateType: {
1958
+ type: StringConstructor;
1959
+ };
1960
+ isDateDisabled: {
1961
+ type: FunctionConstructor;
1962
+ };
1963
+ timeDisabled: {
1964
+ type: FunctionConstructor;
1965
+ };
1966
+ valueFormat: {
1967
+ type: StringConstructor;
1968
+ };
1969
+ }, {
1970
+ widgetOptions: {
1971
+ label: string;
1972
+ value: string;
1973
+ }[];
1974
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
1975
+ filterType: {
1976
+ type: StringConstructor;
1977
+ required: true;
1978
+ };
1979
+ modelValue: {
1980
+ type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
1981
+ default: null;
1982
+ };
1983
+ presetVal: {
1984
+ type: StringConstructor;
1985
+ default: null;
1986
+ };
1987
+ dateType: {
1988
+ type: StringConstructor;
1989
+ };
1990
+ isDateDisabled: {
1991
+ type: FunctionConstructor;
1992
+ };
1993
+ timeDisabled: {
1994
+ type: FunctionConstructor;
1995
+ };
1996
+ valueFormat: {
1997
+ type: StringConstructor;
1998
+ };
1999
+ }>> & {
2000
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2001
+ "onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
2002
+ }>>;
2003
+ emit: (event: "update:modelValue" | "update:presetVal", ...args: any[]) => void;
2004
+ valueCp: import("vue").WritableComputedRef<any>;
2005
+ presetValCp: import("vue").WritableComputedRef<string>;
2006
+ CDatePicker: SFCWithInstall<import("vue").DefineComponent<{
2007
+ updateUnchangedValue: {
2008
+ type: BooleanConstructor;
2009
+ };
2010
+ onConfirm: {
2011
+ type: FunctionConstructor;
2012
+ };
2013
+ formattedValue: {
2014
+ type: import("vue").PropType<(string | [string, string]) | null | undefined>;
2015
+ };
2016
+ placeholder: {
2017
+ type: StringConstructor;
2018
+ };
2019
+ allowedInvalidValue: {
2020
+ type: StringConstructor;
2021
+ };
2022
+ to: {
2023
+ type: import("vue").PropType<string | false | HTMLElement>;
2024
+ default: string;
2025
+ };
2026
+ holidays: {
2027
+ type: import("vue").PropType<Date[]>;
2028
+ default: () => never[];
2029
+ };
2030
+ type: {
2031
+ type: StringConstructor;
2032
+ default: string;
2033
+ };
2034
+ isDateDisabled: {
2035
+ type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
2036
+ };
2037
+ }, {
2038
+ attrs: {
2039
+ [x: string]: unknown;
2040
+ };
2041
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
2042
+ updateUnchangedValue: {
2043
+ type: BooleanConstructor;
2044
+ };
2045
+ onConfirm: {
2046
+ type: FunctionConstructor;
2047
+ };
2048
+ formattedValue: {
2049
+ type: import("vue").PropType<(string | [string, string]) | null | undefined>;
2050
+ };
2051
+ placeholder: {
2052
+ type: StringConstructor;
2053
+ };
2054
+ allowedInvalidValue: {
2055
+ type: StringConstructor;
2056
+ };
2057
+ to: {
2058
+ type: import("vue").PropType<string | false | HTMLElement>;
2059
+ default: string;
2060
+ };
2061
+ holidays: {
2062
+ type: import("vue").PropType<Date[]>;
2063
+ default: () => never[];
2064
+ };
2065
+ type: {
2066
+ type: StringConstructor;
2067
+ default: string;
2068
+ };
2069
+ isDateDisabled: {
2070
+ type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
2071
+ };
2072
+ }>> & {
2073
+ "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
2074
+ }>>;
2075
+ emit: (event: "update:formatted-value", ...args: any[]) => void;
2076
+ datePickerRef: import("vue").Ref<import("../../shared/types").AnyObject | null>;
2077
+ panelInstRef: import("vue").Ref<null>;
2078
+ placeholderRef: import("vue").Ref<any>;
2079
+ oldValue: string;
2080
+ currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
2081
+ isDateTime: import("vue").ComputedRef<boolean>;
2082
+ formatRef: import("vue").ComputedRef<string>;
2083
+ panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
2084
+ _isDateDisabled: import("vue").ComputedRef<(current: number, ...arg: any[]) => boolean>;
2085
+ focus: () => any;
2086
+ blur: () => any;
2087
+ handleConfirm: (target: HTMLInputElement) => void;
2088
+ onUpdateShow: (show: boolean) => Promise<void>;
2089
+ watchers: import("../../shared/types").AnyFn[];
2090
+ stopWatcher: () => void;
2091
+ setHoliday: (show: boolean) => Promise<void>;
2092
+ onConfirm: (...args: any[]) => Promise<void>;
2093
+ isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
2094
+ setShortcutValue: (type: "month" | "week") => Promise<void>;
2095
+ NDatePicker: any;
2096
+ }, 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<{
2097
+ updateUnchangedValue: {
2098
+ type: BooleanConstructor;
2099
+ };
2100
+ onConfirm: {
2101
+ type: FunctionConstructor;
2102
+ };
2103
+ formattedValue: {
2104
+ type: import("vue").PropType<(string | [string, string]) | null | undefined>;
2105
+ };
2106
+ placeholder: {
2107
+ type: StringConstructor;
2108
+ };
2109
+ allowedInvalidValue: {
2110
+ type: StringConstructor;
2111
+ };
2112
+ to: {
2113
+ type: import("vue").PropType<string | false | HTMLElement>;
2114
+ default: string;
2115
+ };
2116
+ holidays: {
2117
+ type: import("vue").PropType<Date[]>;
2118
+ default: () => never[];
2119
+ };
2120
+ type: {
2121
+ type: StringConstructor;
2122
+ default: string;
2123
+ };
2124
+ isDateDisabled: {
2125
+ type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
2126
+ };
2127
+ }>> & {
2128
+ "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
2129
+ }, {
2130
+ type: string;
2131
+ updateUnchangedValue: boolean;
2132
+ to: string | false | HTMLElement;
2133
+ holidays: Date[];
2134
+ }>>;
2135
+ NSelect: any;
2136
+ NInputNumber: any;
2137
+ }, 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<{
2138
+ filterType: {
2139
+ type: StringConstructor;
2140
+ required: true;
2141
+ };
2142
+ modelValue: {
2143
+ type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
2144
+ default: null;
2145
+ };
2146
+ presetVal: {
2147
+ type: StringConstructor;
2148
+ default: null;
2149
+ };
2150
+ dateType: {
2151
+ type: StringConstructor;
2152
+ };
2153
+ isDateDisabled: {
2154
+ type: FunctionConstructor;
2155
+ };
2156
+ timeDisabled: {
2157
+ type: FunctionConstructor;
2158
+ };
2159
+ valueFormat: {
2160
+ type: StringConstructor;
2161
+ };
2162
+ }>> & {
2163
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2164
+ "onUpdate:presetVal"?: ((...args: any[]) => any) | undefined;
2165
+ }, {
2166
+ modelValue: string | number | unknown[];
2167
+ presetVal: string;
2168
+ }>;
1684
2169
  WidgetValEnums: {
1685
2170
  CUSTOM: string;
1686
2171
  FIRST_VAL: string;
@@ -1713,6 +2198,10 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
1713
2198
  LAST_YEAR: string;
1714
2199
  };
1715
2200
  }, 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<{
2201
+ item: {
2202
+ type: ObjectConstructor;
2203
+ required: true;
2204
+ };
1716
2205
  paramCfg: {
1717
2206
  type: ObjectConstructor;
1718
2207
  default: null;
@@ -1865,6 +2354,10 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
1865
2354
  SELECTTREEDYNAMIC: string;
1866
2355
  };
1867
2356
  }, 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<{
2357
+ item: {
2358
+ type: ObjectConstructor;
2359
+ default: null;
2360
+ };
1868
2361
  paramCfg: {
1869
2362
  type: ObjectConstructor;
1870
2363
  default: null;
@@ -1891,6 +2384,7 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
1891
2384
  "onUpdate:customDate"?: ((...args: any[]) => any) | undefined;
1892
2385
  }, {
1893
2386
  modelValue: string | number | unknown[];
2387
+ item: Record<string, any>;
1894
2388
  paramCfg: Record<string, any>;
1895
2389
  presetVal: string;
1896
2390
  isAccurate: boolean;
@@ -1899,11 +2393,19 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
1899
2393
  ConditionEnums: {
1900
2394
  NULL: string;
1901
2395
  EQUAL: string;
2396
+ NOT_NULL: string;
2397
+ NEQ: string;
2398
+ BIG: string;
2399
+ LESS: string;
2400
+ BIGEQ: string;
2401
+ LESSEQ: string;
2402
+ L_: string;
2403
+ N_: string;
2404
+ IN_THE_PAST: string;
2405
+ IN_THE_FUTURE: string;
2406
+ IN_THE_PAST_DI: string;
2407
+ IN_THE_FUTURE_DI: string;
1902
2408
  };
1903
- conditionOptions: {
1904
- label: string;
1905
- value: string;
1906
- }[];
1907
2409
  }, 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
2410
  actionList_prop: {
1909
2411
  type: import("vue").PropType<import("..").IClassifyListType>;