@dereekb/date 10.0.19 → 10.0.21
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/index.esm.js +4 -0
- package/package.json +1 -1
- package/src/lib/date/date.cell.d.ts +4 -0
package/index.esm.js
CHANGED
|
@@ -4055,6 +4055,10 @@ var _dec$4, _dec2$4, _dec3$4, _dec4$3, _class$4, _descriptor$4, _dec5$3, _dec6$2
|
|
|
4055
4055
|
|
|
4056
4056
|
/**
|
|
4057
4057
|
* Index from 0 of which day this block represents.
|
|
4058
|
+
*
|
|
4059
|
+
* It is easiest to think of DateCellIndexes as days on a calendar. An index of 0 means the entire first day for that timezone.
|
|
4060
|
+
*
|
|
4061
|
+
* It is not the time from the startsAt time to the endsAt time for a period.
|
|
4058
4062
|
*/
|
|
4059
4063
|
|
|
4060
4064
|
/**
|
package/package.json
CHANGED
|
@@ -4,6 +4,10 @@ import { DateDurationSpan } from './date.duration';
|
|
|
4
4
|
import { type DateTimezoneUtcNormalFunctionInput, type DateTimezoneUtcNormalInstance } from './date.timezone';
|
|
5
5
|
/**
|
|
6
6
|
* Index from 0 of which day this block represents.
|
|
7
|
+
*
|
|
8
|
+
* It is easiest to think of DateCellIndexes as days on a calendar. An index of 0 means the entire first day for that timezone.
|
|
9
|
+
*
|
|
10
|
+
* It is not the time from the startsAt time to the endsAt time for a period.
|
|
7
11
|
*/
|
|
8
12
|
export type DateCellIndex = number;
|
|
9
13
|
/**
|