@xh/hoist 79.0.0-SNAPSHOT.1766017582086 → 79.0.0-SNAPSHOT.1766020485210
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/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
## 79.0.0-SNAPSHOT - unreleased
|
|
4
4
|
|
|
5
|
+
### 🎁 New Features
|
|
6
|
+
|
|
7
|
+
* Enhance `LocalDate` with `addWeekdays` and `subtractWeekdays` methods.
|
|
8
|
+
|
|
5
9
|
### 💥 Breaking Changes
|
|
6
10
|
|
|
7
11
|
* Renamed `GridModel.applyColumnStateChanges()` to `updateColumnState()` for clarity and better
|
|
@@ -66,6 +66,8 @@ export declare class LocalDate {
|
|
|
66
66
|
get isLocalDate(): boolean;
|
|
67
67
|
add(value: any, unit?: string): LocalDate;
|
|
68
68
|
subtract(value: any, unit?: string): LocalDate;
|
|
69
|
+
addWeekdays(value: any): LocalDate;
|
|
70
|
+
subtractWeekdays(value: any): LocalDate;
|
|
69
71
|
startOf(unit: any): LocalDate;
|
|
70
72
|
startOfMonth(): LocalDate;
|
|
71
73
|
startOfQuarter(): LocalDate;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xh/hoist",
|
|
3
|
-
"version": "79.0.0-SNAPSHOT.
|
|
3
|
+
"version": "79.0.0-SNAPSHOT.1766020485210",
|
|
4
4
|
"description": "Hoist add-on for building and deploying React Applications.",
|
|
5
5
|
"repository": "github:xh/hoist-react",
|
|
6
6
|
"homepage": "https://xh.io",
|