ngx-datex 1.0.2 → 1.0.3
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/fesm2022/ngx-datex.mjs +17 -1
- package/fesm2022/ngx-datex.mjs.map +1 -1
- package/package.json +1 -1
- package/types/ngx-datex.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ngx-datex",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Modern Angular date range picker with Material Design featuring signals, control flow syntax, time picker, themes, and responsive design for Angular 21+",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/animations": "^21.1.1",
|
package/types/ngx-datex.d.ts
CHANGED
|
@@ -1626,6 +1626,7 @@ declare class NgxDatex implements OnInit, OnDestroy, ControlValueAccessor {
|
|
|
1626
1626
|
private oldStartDate;
|
|
1627
1627
|
private oldEndDate;
|
|
1628
1628
|
private previousRightTime;
|
|
1629
|
+
private _isApplying;
|
|
1629
1630
|
get currentStartDate(): Date;
|
|
1630
1631
|
set currentStartDate(value: Date);
|
|
1631
1632
|
get currentEndDate(): Date | null;
|