@cloudtower/eagle 0.33.18 → 0.33.19
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/cjs/coreX/DateRangePicker/Calendar.js +2 -2
- package/dist/cjs/coreX/DateRangePicker/utils.js +5 -0
- package/dist/cjs/stats1.html +1 -1
- package/dist/components.css +2227 -2223
- package/dist/esm/coreX/DateRangePicker/Calendar.js +2 -2
- package/dist/esm/coreX/DateRangePicker/utils.js +3 -0
- package/dist/esm/stats1.html +1 -1
- package/dist/linaria.merged.scss +2512 -2508
- package/dist/src/coreX/DateRangePicker/__tests__/utils.test.d.ts +1 -0
- package/dist/src/coreX/DateRangePicker/utils.d.ts +7 -0
- package/dist/style.css +1901 -1898
- package/package.json +4 -4
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Dayjs } from "dayjs";
|
|
2
|
+
/**
|
|
3
|
+
* @param date - the date of the month
|
|
4
|
+
* @param weekStartOnMonday - if true, the first day of the week is monday, otherwise it is sunday
|
|
5
|
+
* @returns the first day's Date of weeks
|
|
6
|
+
*/
|
|
7
|
+
export declare const getFirstDateOfMonth: (date: Dayjs, weekStartOnMonday?: boolean) => number;
|