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
@@ -626,6 +626,7 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
626
626
  class: string;
627
627
  };
628
628
  specialDateRange: string[];
629
+ specialCustomDateRange: string[];
629
630
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
630
631
  actionList_prop: {
631
632
  type: import("vue").PropType<import("..").IClassifyListType>;
@@ -1017,6 +1018,12 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
1017
1018
  label: string;
1018
1019
  value: string;
1019
1020
  }[];
1021
+ widgetRangeOptions: {
1022
+ label: string;
1023
+ value: string;
1024
+ }[];
1025
+ startDateNum: import("vue").Ref<any>;
1026
+ endDateNum: import("vue").Ref<any>;
1020
1027
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
1021
1028
  filterType: {
1022
1029
  type: StringConstructor;
@@ -1049,135 +1056,7 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
1049
1056
  emit: (event: "update:modelValue" | "update:presetVal", ...args: any[]) => void;
1050
1057
  valueCp: import("vue").WritableComputedRef<any>;
1051
1058
  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
- }>>;
1059
+ handleChange: (val: any, type: "start" | "end") => void;
1181
1060
  NSelect: any;
1182
1061
  NInputNumber: any;
1183
1062
  }, 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<{
@@ -1972,6 +1851,12 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
1972
1851
  label: string;
1973
1852
  value: string;
1974
1853
  }[];
1854
+ widgetRangeOptions: {
1855
+ label: string;
1856
+ value: string;
1857
+ }[];
1858
+ startDateNum: import("vue").Ref<any>;
1859
+ endDateNum: import("vue").Ref<any>;
1975
1860
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
1976
1861
  filterType: {
1977
1862
  type: StringConstructor;
@@ -2004,135 +1889,7 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
2004
1889
  emit: (event: "update:modelValue" | "update:presetVal", ...args: any[]) => void;
2005
1890
  valueCp: import("vue").WritableComputedRef<any>;
2006
1891
  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
- }>>;
1892
+ handleChange: (val: any, type: "start" | "end") => void;
2136
1893
  NSelect: any;
2137
1894
  NInputNumber: any;
2138
1895
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "update:presetVal")[], "update:modelValue" | "update:presetVal", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -2394,6 +2151,7 @@ declare const CClassification: SFCWithInstall<import("vue").DefineComponent<{
2394
2151
  ConditionEnums: {
2395
2152
  NULL: string;
2396
2153
  EQUAL: string;
2154
+ CUSTOM_RANGE: string;
2397
2155
  IN_THE_PAST: string;
2398
2156
  IN_THE_FUTURE: string;
2399
2157
  IN_THE_PAST_DI: string;
@@ -89,6 +89,7 @@ declare const _default: import("vue").DefineComponent<{
89
89
  class: string;
90
90
  };
91
91
  specialDateRange: string[];
92
+ specialCustomDateRange: string[];
92
93
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
93
94
  actionList_prop: {
94
95
  type: import("vue").PropType<import("../../../..").IClassifyListType>;
@@ -480,6 +481,12 @@ declare const _default: import("vue").DefineComponent<{
480
481
  label: string;
481
482
  value: string;
482
483
  }[];
484
+ widgetRangeOptions: {
485
+ label: string;
486
+ value: string;
487
+ }[];
488
+ startDateNum: import("vue").Ref<any>;
489
+ endDateNum: import("vue").Ref<any>;
483
490
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
484
491
  filterType: {
485
492
  type: StringConstructor;
@@ -512,135 +519,7 @@ declare const _default: import("vue").DefineComponent<{
512
519
  emit: (event: "update:modelValue" | "update:presetVal", ...args: any[]) => void;
513
520
  valueCp: import("vue").WritableComputedRef<any>;
514
521
  presetValCp: import("vue").WritableComputedRef<string>;
515
- CDatePicker: import("../../../../../shared/types").SFCWithInstall<import("vue").DefineComponent<{
516
- updateUnchangedValue: {
517
- type: BooleanConstructor;
518
- };
519
- onConfirm: {
520
- type: FunctionConstructor;
521
- };
522
- formattedValue: {
523
- type: import("vue").PropType<(string | [string, string]) | null | undefined>;
524
- };
525
- placeholder: {
526
- type: StringConstructor;
527
- };
528
- allowedInvalidValue: {
529
- type: StringConstructor;
530
- };
531
- to: {
532
- type: import("vue").PropType<string | false | HTMLElement>;
533
- default: string;
534
- };
535
- holidays: {
536
- type: import("vue").PropType<Date[]>;
537
- default: () => never[];
538
- };
539
- type: {
540
- type: StringConstructor;
541
- default: string;
542
- };
543
- isDateDisabled: {
544
- type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
545
- };
546
- }, {
547
- attrs: {
548
- [x: string]: unknown;
549
- };
550
- props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
551
- updateUnchangedValue: {
552
- type: BooleanConstructor;
553
- };
554
- onConfirm: {
555
- type: FunctionConstructor;
556
- };
557
- formattedValue: {
558
- type: import("vue").PropType<(string | [string, string]) | null | undefined>;
559
- };
560
- placeholder: {
561
- type: StringConstructor;
562
- };
563
- allowedInvalidValue: {
564
- type: StringConstructor;
565
- };
566
- to: {
567
- type: import("vue").PropType<string | false | HTMLElement>;
568
- default: string;
569
- };
570
- holidays: {
571
- type: import("vue").PropType<Date[]>;
572
- default: () => never[];
573
- };
574
- type: {
575
- type: StringConstructor;
576
- default: string;
577
- };
578
- isDateDisabled: {
579
- type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
580
- };
581
- }>> & {
582
- "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
583
- }>>;
584
- emit: (event: "update:formatted-value", ...args: any[]) => void;
585
- datePickerRef: import("vue").Ref<import("../../../../../shared/types").AnyObject | null>;
586
- panelInstRef: import("vue").Ref<null>;
587
- placeholderRef: import("vue").Ref<any>;
588
- oldValue: string;
589
- currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
590
- isDateTime: import("vue").ComputedRef<boolean>;
591
- formatRef: import("vue").ComputedRef<string>;
592
- panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
593
- _isDateDisabled: import("vue").ComputedRef<(current: number, ...arg: any[]) => boolean>;
594
- focus: () => any;
595
- blur: () => any;
596
- handleConfirm: (target: HTMLInputElement) => void;
597
- onUpdateShow: (show: boolean) => Promise<void>;
598
- watchers: import("../../../../../shared/types").AnyFn[];
599
- stopWatcher: () => void;
600
- setHoliday: (show: boolean) => Promise<void>;
601
- onConfirm: (...args: any[]) => Promise<void>;
602
- isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
603
- setShortcutValue: (type: "month" | "week") => Promise<void>;
604
- NDatePicker: any;
605
- }, 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<{
606
- updateUnchangedValue: {
607
- type: BooleanConstructor;
608
- };
609
- onConfirm: {
610
- type: FunctionConstructor;
611
- };
612
- formattedValue: {
613
- type: import("vue").PropType<(string | [string, string]) | null | undefined>;
614
- };
615
- placeholder: {
616
- type: StringConstructor;
617
- };
618
- allowedInvalidValue: {
619
- type: StringConstructor;
620
- };
621
- to: {
622
- type: import("vue").PropType<string | false | HTMLElement>;
623
- default: string;
624
- };
625
- holidays: {
626
- type: import("vue").PropType<Date[]>;
627
- default: () => never[];
628
- };
629
- type: {
630
- type: StringConstructor;
631
- default: string;
632
- };
633
- isDateDisabled: {
634
- type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
635
- };
636
- }>> & {
637
- "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
638
- }, {
639
- type: string;
640
- updateUnchangedValue: boolean;
641
- to: string | false | HTMLElement;
642
- holidays: Date[];
643
- }>>;
522
+ handleChange: (val: any, type: "start" | "end") => void;
644
523
  NSelect: any;
645
524
  NInputNumber: any;
646
525
  }, 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<{
@@ -1435,6 +1314,12 @@ declare const _default: import("vue").DefineComponent<{
1435
1314
  label: string;
1436
1315
  value: string;
1437
1316
  }[];
1317
+ widgetRangeOptions: {
1318
+ label: string;
1319
+ value: string;
1320
+ }[];
1321
+ startDateNum: import("vue").Ref<any>;
1322
+ endDateNum: import("vue").Ref<any>;
1438
1323
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
1439
1324
  filterType: {
1440
1325
  type: StringConstructor;
@@ -1467,135 +1352,7 @@ declare const _default: import("vue").DefineComponent<{
1467
1352
  emit: (event: "update:modelValue" | "update:presetVal", ...args: any[]) => void;
1468
1353
  valueCp: import("vue").WritableComputedRef<any>;
1469
1354
  presetValCp: import("vue").WritableComputedRef<string>;
1470
- CDatePicker: import("../../../../../shared/types").SFCWithInstall<import("vue").DefineComponent<{
1471
- updateUnchangedValue: {
1472
- type: BooleanConstructor;
1473
- };
1474
- onConfirm: {
1475
- type: FunctionConstructor;
1476
- };
1477
- formattedValue: {
1478
- type: import("vue").PropType<(string | [string, string]) | null | undefined>;
1479
- };
1480
- placeholder: {
1481
- type: StringConstructor;
1482
- };
1483
- allowedInvalidValue: {
1484
- type: StringConstructor;
1485
- };
1486
- to: {
1487
- type: import("vue").PropType<string | false | HTMLElement>;
1488
- default: string;
1489
- };
1490
- holidays: {
1491
- type: import("vue").PropType<Date[]>;
1492
- default: () => never[];
1493
- };
1494
- type: {
1495
- type: StringConstructor;
1496
- default: string;
1497
- };
1498
- isDateDisabled: {
1499
- type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1500
- };
1501
- }, {
1502
- attrs: {
1503
- [x: string]: unknown;
1504
- };
1505
- props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
1506
- updateUnchangedValue: {
1507
- type: BooleanConstructor;
1508
- };
1509
- onConfirm: {
1510
- type: FunctionConstructor;
1511
- };
1512
- formattedValue: {
1513
- type: import("vue").PropType<(string | [string, string]) | null | undefined>;
1514
- };
1515
- placeholder: {
1516
- type: StringConstructor;
1517
- };
1518
- allowedInvalidValue: {
1519
- type: StringConstructor;
1520
- };
1521
- to: {
1522
- type: import("vue").PropType<string | false | HTMLElement>;
1523
- default: string;
1524
- };
1525
- holidays: {
1526
- type: import("vue").PropType<Date[]>;
1527
- default: () => never[];
1528
- };
1529
- type: {
1530
- type: StringConstructor;
1531
- default: string;
1532
- };
1533
- isDateDisabled: {
1534
- type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1535
- };
1536
- }>> & {
1537
- "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
1538
- }>>;
1539
- emit: (event: "update:formatted-value", ...args: any[]) => void;
1540
- datePickerRef: import("vue").Ref<import("../../../../../shared/types").AnyObject | null>;
1541
- panelInstRef: import("vue").Ref<null>;
1542
- placeholderRef: import("vue").Ref<any>;
1543
- oldValue: string;
1544
- currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
1545
- isDateTime: import("vue").ComputedRef<boolean>;
1546
- formatRef: import("vue").ComputedRef<string>;
1547
- panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
1548
- _isDateDisabled: import("vue").ComputedRef<(current: number, ...arg: any[]) => boolean>;
1549
- focus: () => any;
1550
- blur: () => any;
1551
- handleConfirm: (target: HTMLInputElement) => void;
1552
- onUpdateShow: (show: boolean) => Promise<void>;
1553
- watchers: import("../../../../../shared/types").AnyFn[];
1554
- stopWatcher: () => void;
1555
- setHoliday: (show: boolean) => Promise<void>;
1556
- onConfirm: (...args: any[]) => Promise<void>;
1557
- isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
1558
- setShortcutValue: (type: "month" | "week") => Promise<void>;
1559
- NDatePicker: any;
1560
- }, 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<{
1561
- updateUnchangedValue: {
1562
- type: BooleanConstructor;
1563
- };
1564
- onConfirm: {
1565
- type: FunctionConstructor;
1566
- };
1567
- formattedValue: {
1568
- type: import("vue").PropType<(string | [string, string]) | null | undefined>;
1569
- };
1570
- placeholder: {
1571
- type: StringConstructor;
1572
- };
1573
- allowedInvalidValue: {
1574
- type: StringConstructor;
1575
- };
1576
- to: {
1577
- type: import("vue").PropType<string | false | HTMLElement>;
1578
- default: string;
1579
- };
1580
- holidays: {
1581
- type: import("vue").PropType<Date[]>;
1582
- default: () => never[];
1583
- };
1584
- type: {
1585
- type: StringConstructor;
1586
- default: string;
1587
- };
1588
- isDateDisabled: {
1589
- type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
1590
- };
1591
- }>> & {
1592
- "onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
1593
- }, {
1594
- type: string;
1595
- updateUnchangedValue: boolean;
1596
- to: string | false | HTMLElement;
1597
- holidays: Date[];
1598
- }>>;
1355
+ handleChange: (val: any, type: "start" | "end") => void;
1599
1356
  NSelect: any;
1600
1357
  NInputNumber: any;
1601
1358
  }, 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<{
@@ -1857,6 +1614,7 @@ declare const _default: import("vue").DefineComponent<{
1857
1614
  ConditionEnums: {
1858
1615
  NULL: string;
1859
1616
  EQUAL: string;
1617
+ CUSTOM_RANGE: string;
1860
1618
  IN_THE_PAST: string;
1861
1619
  IN_THE_FUTURE: string;
1862
1620
  IN_THE_PAST_DI: string;