cnhis-design-vue 3.3.3-beta.74 → 3.3.3-beta.76

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 (41) hide show
  1. package/es/components/classification/index.d.ts +16 -258
  2. package/es/components/classification/src/components/search-filter/index.vue.d.ts +16 -258
  3. package/es/components/classification/src/components/set-classification/index.vue.d.ts +16 -258
  4. package/es/components/classification/src/index.vue.d.ts +16 -258
  5. package/es/components/field-set/src/FieldColor.vue.d.ts +1 -1
  6. package/es/components/field-set/src/FieldFilter.vue.d.ts +1 -1
  7. package/es/components/field-set/src/FieldSet.vue.d.ts +1 -1
  8. package/es/components/field-set/src/components/table-row.vue.d.ts +1 -1
  9. package/es/components/field-set/src/constants/index.js +4 -4
  10. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/timeRendererPlugin/editTime.vue.d.ts +36 -4
  11. package/es/components/info-header/index.d.ts +9 -17
  12. package/es/components/info-header/src/InfoHeader.vue.d.ts +9 -17
  13. package/es/components/info-header/src/InfoHeader.vue2.js +2 -2
  14. package/es/components/info-header/src/components/infoDescription/DescriptionList.vue.d.ts +3 -2
  15. package/es/components/info-header/src/components/infoDescription/DescriptionList.vue2.js +1 -1
  16. package/es/components/info-header/src/components/infoDescription/index.vue.d.ts +9 -17
  17. package/es/components/info-header/src/constants/index.d.ts +1 -1
  18. package/es/components/shortcut-provider/src/hooks/useShortcuts.js +1 -1
  19. package/es/components/shortcut-provider/src/types/index.d.ts +1 -0
  20. package/es/components/shortcut-provider/src/utils/index.d.ts +1 -1
  21. package/es/components/shortcut-provider/src/utils/index.js +3 -1
  22. package/es/components/table-filter/src/components/classify-filter/ValueCfg.vue.d.ts +14 -258
  23. package/es/components/table-filter/src/components/classify-filter/components/Base/DateOption.vue.d.ts +7 -129
  24. package/es/components/table-filter/src/components/classify-filter/components/Base/DateOption.vue2.js +107 -13
  25. package/es/components/table-filter/src/components/classify-filter/components/Date.vue.d.ts +7 -129
  26. package/es/components/table-filter/src/components/classify-filter/components/DateRange.vue.d.ts +7 -129
  27. package/es/components/table-filter/src/components/classify-filter/components/DateRange.vue2.js +2 -8
  28. package/es/components/table-filter/src/components/classify-filter/components/index.d.ts +14 -258
  29. package/es/components/table-filter/src/components/classify-filter/helpers/options.js +30 -5
  30. package/es/components/table-filter/src/components/classify-filter/index.vue.d.ts +16 -258
  31. package/es/components/table-filter/src/components/classify-filter/index.vue2.js +3 -1
  32. package/es/components/table-filter/src/components/render-widget/helpers/presetValToTimestamp.js +16 -1
  33. package/es/components/table-filter/src/hooks/useAdvanced.js +1 -1
  34. package/es/components/table-filter/src/types/enums.d.ts +1 -0
  35. package/es/components/table-filter/src/types/enums.js +1 -0
  36. package/es/components/time-picker/index.d.ts +36 -4
  37. package/es/components/time-picker/src/TimePicker.vue.d.ts +36 -4
  38. package/es/components/time-picker/src/TimePicker.vue2.js +98 -13
  39. package/es/shared/hooks/useDateTime.d.ts +1 -1
  40. package/es/shared/package.json.js +1 -1
  41. package/package.json +2 -3
@@ -383,6 +383,7 @@ declare const _default: import("vue").DefineComponent<{
383
383
  class: string;
384
384
  };
385
385
  specialDateRange: string[];
386
+ specialCustomDateRange: string[];
386
387
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
387
388
  actionList_prop: {
388
389
  type: import("vue").PropType<IClassifyListType>;
@@ -774,6 +775,12 @@ declare const _default: import("vue").DefineComponent<{
774
775
  label: string;
775
776
  value: string;
776
777
  }[];
778
+ widgetRangeOptions: {
779
+ label: string;
780
+ value: string;
781
+ }[];
782
+ startDateNum: import("vue").Ref<any>;
783
+ endDateNum: import("vue").Ref<any>;
777
784
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
778
785
  filterType: {
779
786
  type: StringConstructor;
@@ -806,135 +813,7 @@ declare const _default: import("vue").DefineComponent<{
806
813
  emit: (event: "update:modelValue" | "update:presetVal", ...args: any[]) => void;
807
814
  valueCp: import("vue").WritableComputedRef<any>;
808
815
  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
- }>>;
816
+ handleChange: (val: any, type: "start" | "end") => void;
938
817
  NSelect: any;
939
818
  NInputNumber: any;
940
819
  }, 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<{
@@ -1729,6 +1608,12 @@ declare const _default: import("vue").DefineComponent<{
1729
1608
  label: string;
1730
1609
  value: string;
1731
1610
  }[];
1611
+ widgetRangeOptions: {
1612
+ label: string;
1613
+ value: string;
1614
+ }[];
1615
+ startDateNum: import("vue").Ref<any>;
1616
+ endDateNum: import("vue").Ref<any>;
1732
1617
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
1733
1618
  filterType: {
1734
1619
  type: StringConstructor;
@@ -1761,135 +1646,7 @@ declare const _default: import("vue").DefineComponent<{
1761
1646
  emit: (event: "update:modelValue" | "update:presetVal", ...args: any[]) => void;
1762
1647
  valueCp: import("vue").WritableComputedRef<any>;
1763
1648
  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
- }>>;
1649
+ handleChange: (val: any, type: "start" | "end") => void;
1893
1650
  NSelect: any;
1894
1651
  NInputNumber: any;
1895
1652
  }, 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<{
@@ -2151,6 +1908,7 @@ declare const _default: import("vue").DefineComponent<{
2151
1908
  ConditionEnums: {
2152
1909
  NULL: string;
2153
1910
  EQUAL: string;
1911
+ CUSTOM_RANGE: string;
2154
1912
  IN_THE_PAST: string;
2155
1913
  IN_THE_FUTURE: string;
2156
1914
  IN_THE_PAST_DI: string;
@@ -628,6 +628,7 @@ declare const _default: import("vue").DefineComponent<{
628
628
  class: string;
629
629
  };
630
630
  specialDateRange: string[];
631
+ specialCustomDateRange: string[];
631
632
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
632
633
  actionList_prop: {
633
634
  type: PropType<IClassifyListType>;
@@ -1019,6 +1020,12 @@ declare const _default: import("vue").DefineComponent<{
1019
1020
  label: string;
1020
1021
  value: string;
1021
1022
  }[];
1023
+ widgetRangeOptions: {
1024
+ label: string;
1025
+ value: string;
1026
+ }[];
1027
+ startDateNum: import("vue").Ref<any>;
1028
+ endDateNum: import("vue").Ref<any>;
1022
1029
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
1023
1030
  filterType: {
1024
1031
  type: StringConstructor;
@@ -1051,135 +1058,7 @@ declare const _default: import("vue").DefineComponent<{
1051
1058
  emit: (event: "update:modelValue" | "update:presetVal", ...args: any[]) => void;
1052
1059
  valueCp: import("vue").WritableComputedRef<any>;
1053
1060
  presetValCp: import("vue").WritableComputedRef<string>;
1054
- CDatePicker: import("../../../shared/types").SFCWithInstall<import("vue").DefineComponent<{
1055
- updateUnchangedValue: {
1056
- type: BooleanConstructor;
1057
- };
1058
- onConfirm: {
1059
- type: FunctionConstructor;
1060
- };
1061
- formattedValue: {
1062
- type: PropType<(string | [string, string]) | null | undefined>;
1063
- };
1064
- placeholder: {
1065
- type: StringConstructor;
1066
- };
1067
- allowedInvalidValue: {
1068
- type: StringConstructor;
1069
- };
1070
- to: {
1071
- type: PropType<string | false | HTMLElement>;
1072
- default: string;
1073
- };
1074
- holidays: {
1075
- type: PropType<Date[]>;
1076
- default: () => never[];
1077
- };
1078
- type: {
1079
- type: StringConstructor;
1080
- default: string;
1081
- };
1082
- isDateDisabled: {
1083
- type: PropType<(current: number, ...arg: any[]) => boolean>;
1084
- };
1085
- }, {
1086
- attrs: {
1087
- [x: string]: unknown;
1088
- };
1089
- props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
1090
- updateUnchangedValue: {
1091
- type: BooleanConstructor;
1092
- };
1093
- onConfirm: {
1094
- type: FunctionConstructor;
1095
- };
1096
- formattedValue: {
1097
- type: PropType<(string | [string, string]) | null | undefined>;
1098
- };
1099
- placeholder: {
1100
- type: StringConstructor;
1101
- };
1102
- allowedInvalidValue: {
1103
- type: StringConstructor;
1104
- };
1105
- to: {
1106
- type: PropType<string | false | HTMLElement>;
1107
- default: string;
1108
- };
1109
- holidays: {
1110
- type: PropType<Date[]>;
1111
- default: () => never[];
1112
- };
1113
- type: {
1114
- type: StringConstructor;
1115
- default: string;
1116
- };
1117
- isDateDisabled: {
1118
- type: PropType<(current: number, ...arg: any[]) => boolean>;
1119
- };
1120
- }>> & {
1121
- "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
1122
- }>>;
1123
- emit: (event: "update:formatted-value", ...args: any[]) => void;
1124
- datePickerRef: import("vue").Ref<AnyObject | null>;
1125
- panelInstRef: import("vue").Ref<null>;
1126
- placeholderRef: import("vue").Ref<any>;
1127
- oldValue: string;
1128
- currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
1129
- isDateTime: import("vue").ComputedRef<boolean>;
1130
- formatRef: import("vue").ComputedRef<string>;
1131
- panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
1132
- _isDateDisabled: import("vue").ComputedRef<(current: number, ...arg: any[]) => boolean>;
1133
- focus: () => any;
1134
- blur: () => any;
1135
- handleConfirm: (target: HTMLInputElement) => void;
1136
- onUpdateShow: (show: boolean) => Promise<void>;
1137
- watchers: import("../../../shared/types").AnyFn[];
1138
- stopWatcher: () => void;
1139
- setHoliday: (show: boolean) => Promise<void>;
1140
- onConfirm: (...args: any[]) => Promise<void>;
1141
- isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
1142
- setShortcutValue: (type: "month" | "week") => Promise<void>;
1143
- NDatePicker: any;
1144
- }, 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<{
1145
- updateUnchangedValue: {
1146
- type: BooleanConstructor;
1147
- };
1148
- onConfirm: {
1149
- type: FunctionConstructor;
1150
- };
1151
- formattedValue: {
1152
- type: PropType<(string | [string, string]) | null | undefined>;
1153
- };
1154
- placeholder: {
1155
- type: StringConstructor;
1156
- };
1157
- allowedInvalidValue: {
1158
- type: StringConstructor;
1159
- };
1160
- to: {
1161
- type: PropType<string | false | HTMLElement>;
1162
- default: string;
1163
- };
1164
- holidays: {
1165
- type: PropType<Date[]>;
1166
- default: () => never[];
1167
- };
1168
- type: {
1169
- type: StringConstructor;
1170
- default: string;
1171
- };
1172
- isDateDisabled: {
1173
- type: PropType<(current: number, ...arg: any[]) => boolean>;
1174
- };
1175
- }>> & {
1176
- "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
1177
- }, {
1178
- type: string;
1179
- updateUnchangedValue: boolean;
1180
- to: string | false | HTMLElement;
1181
- holidays: Date[];
1182
- }>>;
1061
+ handleChange: (val: any, type: "start" | "end") => void;
1183
1062
  NSelect: any;
1184
1063
  NInputNumber: any;
1185
1064
  }, 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<{
@@ -1974,6 +1853,12 @@ declare const _default: import("vue").DefineComponent<{
1974
1853
  label: string;
1975
1854
  value: string;
1976
1855
  }[];
1856
+ widgetRangeOptions: {
1857
+ label: string;
1858
+ value: string;
1859
+ }[];
1860
+ startDateNum: import("vue").Ref<any>;
1861
+ endDateNum: import("vue").Ref<any>;
1977
1862
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
1978
1863
  filterType: {
1979
1864
  type: StringConstructor;
@@ -2006,135 +1891,7 @@ declare const _default: import("vue").DefineComponent<{
2006
1891
  emit: (event: "update:modelValue" | "update:presetVal", ...args: any[]) => void;
2007
1892
  valueCp: import("vue").WritableComputedRef<any>;
2008
1893
  presetValCp: import("vue").WritableComputedRef<string>;
2009
- CDatePicker: import("../../../shared/types").SFCWithInstall<import("vue").DefineComponent<{
2010
- updateUnchangedValue: {
2011
- type: BooleanConstructor;
2012
- };
2013
- onConfirm: {
2014
- type: FunctionConstructor;
2015
- };
2016
- formattedValue: {
2017
- type: PropType<(string | [string, string]) | null | undefined>;
2018
- };
2019
- placeholder: {
2020
- type: StringConstructor;
2021
- };
2022
- allowedInvalidValue: {
2023
- type: StringConstructor;
2024
- };
2025
- to: {
2026
- type: PropType<string | false | HTMLElement>;
2027
- default: string;
2028
- };
2029
- holidays: {
2030
- type: PropType<Date[]>;
2031
- default: () => never[];
2032
- };
2033
- type: {
2034
- type: StringConstructor;
2035
- default: string;
2036
- };
2037
- isDateDisabled: {
2038
- type: PropType<(current: number, ...arg: any[]) => boolean>;
2039
- };
2040
- }, {
2041
- attrs: {
2042
- [x: string]: unknown;
2043
- };
2044
- props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
2045
- updateUnchangedValue: {
2046
- type: BooleanConstructor;
2047
- };
2048
- onConfirm: {
2049
- type: FunctionConstructor;
2050
- };
2051
- formattedValue: {
2052
- type: PropType<(string | [string, string]) | null | undefined>;
2053
- };
2054
- placeholder: {
2055
- type: StringConstructor;
2056
- };
2057
- allowedInvalidValue: {
2058
- type: StringConstructor;
2059
- };
2060
- to: {
2061
- type: PropType<string | false | HTMLElement>;
2062
- default: string;
2063
- };
2064
- holidays: {
2065
- type: PropType<Date[]>;
2066
- default: () => never[];
2067
- };
2068
- type: {
2069
- type: StringConstructor;
2070
- default: string;
2071
- };
2072
- isDateDisabled: {
2073
- type: PropType<(current: number, ...arg: any[]) => boolean>;
2074
- };
2075
- }>> & {
2076
- "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
2077
- }>>;
2078
- emit: (event: "update:formatted-value", ...args: any[]) => void;
2079
- datePickerRef: import("vue").Ref<AnyObject | null>;
2080
- panelInstRef: import("vue").Ref<null>;
2081
- placeholderRef: import("vue").Ref<any>;
2082
- oldValue: string;
2083
- currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
2084
- isDateTime: import("vue").ComputedRef<boolean>;
2085
- formatRef: import("vue").ComputedRef<string>;
2086
- panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
2087
- _isDateDisabled: import("vue").ComputedRef<(current: number, ...arg: any[]) => boolean>;
2088
- focus: () => any;
2089
- blur: () => any;
2090
- handleConfirm: (target: HTMLInputElement) => void;
2091
- onUpdateShow: (show: boolean) => Promise<void>;
2092
- watchers: import("../../../shared/types").AnyFn[];
2093
- stopWatcher: () => void;
2094
- setHoliday: (show: boolean) => Promise<void>;
2095
- onConfirm: (...args: any[]) => Promise<void>;
2096
- isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
2097
- setShortcutValue: (type: "month" | "week") => Promise<void>;
2098
- NDatePicker: any;
2099
- }, 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<{
2100
- updateUnchangedValue: {
2101
- type: BooleanConstructor;
2102
- };
2103
- onConfirm: {
2104
- type: FunctionConstructor;
2105
- };
2106
- formattedValue: {
2107
- type: PropType<(string | [string, string]) | null | undefined>;
2108
- };
2109
- placeholder: {
2110
- type: StringConstructor;
2111
- };
2112
- allowedInvalidValue: {
2113
- type: StringConstructor;
2114
- };
2115
- to: {
2116
- type: PropType<string | false | HTMLElement>;
2117
- default: string;
2118
- };
2119
- holidays: {
2120
- type: PropType<Date[]>;
2121
- default: () => never[];
2122
- };
2123
- type: {
2124
- type: StringConstructor;
2125
- default: string;
2126
- };
2127
- isDateDisabled: {
2128
- type: PropType<(current: number, ...arg: any[]) => boolean>;
2129
- };
2130
- }>> & {
2131
- "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
2132
- }, {
2133
- type: string;
2134
- updateUnchangedValue: boolean;
2135
- to: string | false | HTMLElement;
2136
- holidays: Date[];
2137
- }>>;
1894
+ handleChange: (val: any, type: "start" | "end") => void;
2138
1895
  NSelect: any;
2139
1896
  NInputNumber: any;
2140
1897
  }, 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<{
@@ -2396,6 +2153,7 @@ declare const _default: import("vue").DefineComponent<{
2396
2153
  ConditionEnums: {
2397
2154
  NULL: string;
2398
2155
  EQUAL: string;
2156
+ CUSTOM_RANGE: string;
2399
2157
  IN_THE_PAST: string;
2400
2158
  IN_THE_FUTURE: string;
2401
2159
  IN_THE_PAST_DI: string;
@@ -539,9 +539,9 @@ declare const _default: import("vue").DefineComponent<{
539
539
  }>;
540
540
  developMode: boolean;
541
541
  draggable: boolean;
542
- isHighlightRow: boolean;
543
542
  idx: number;
544
543
  isHighlight: boolean;
544
+ isHighlightRow: boolean;
545
545
  isFieldSet: boolean;
546
546
  fieldDescribeMode: "column" | "tooltip";
547
547
  hideExpressionOption: AnyObject[];
@@ -568,9 +568,9 @@ declare const _default: import("vue").DefineComponent<{
568
568
  }>;
569
569
  developMode: boolean;
570
570
  draggable: boolean;
571
- isHighlightRow: boolean;
572
571
  idx: number;
573
572
  isHighlight: boolean;
573
+ isHighlightRow: boolean;
574
574
  isFieldSet: boolean;
575
575
  fieldDescribeMode: "column" | "tooltip";
576
576
  hideExpressionOption: AnyObject[];