kwant-ui 3.28.10 → 3.28.11
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/dist/components/Calendar/CalendarUtils.d.ts +3 -1
- package/dist/index.es.js +88 -88
- package/dist/index.js +88 -88
- package/dist/package.json +2 -1
- package/package.json +2 -1
|
@@ -16,6 +16,7 @@ export declare const CALENDAR_CONSTANTS: {
|
|
|
16
16
|
LAST_4_WEEKS: DateObject[];
|
|
17
17
|
LAST_30_DAYS: DateObject[];
|
|
18
18
|
THIS_MONTH: DateObject[];
|
|
19
|
+
PAST_MONTH: DateObject[];
|
|
19
20
|
CUSTOM_RANGE: DateObject[];
|
|
20
21
|
};
|
|
21
22
|
export declare const getSidebarOptions: (projectDuration?: ICalendar.ProjectDuration) => {
|
|
@@ -23,4 +24,5 @@ export declare const getSidebarOptions: (projectDuration?: ICalendar.ProjectDura
|
|
|
23
24
|
value: () => DateObject[];
|
|
24
25
|
}[];
|
|
25
26
|
declare const getDateOffset: (valueArr: Value, domain: RangeDomain) => DateObject[];
|
|
26
|
-
|
|
27
|
+
declare const isNotInCurrentMonth: (date: string | DateObject) => boolean;
|
|
28
|
+
export { fullMonthsText, regexInputValidate, weeks, getDateOffset, isNotInCurrentMonth };
|