@skyux/datetime 13.0.0 → 13.1.0
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.d.ts
CHANGED
|
@@ -854,7 +854,7 @@ declare class SkyDatepickerInputDirective implements OnInit, OnDestroy, AfterVie
|
|
|
854
854
|
get maxDate(): Date | undefined;
|
|
855
855
|
/**
|
|
856
856
|
* The earliest date that is available in the calendar. Place this attribute on
|
|
857
|
-
* the `input` element to override the default in `SkyDatepickerConfigService`. To avoid validation errors, the time associated with the minimum date
|
|
857
|
+
* the `input` element to override the default in `SkyDatepickerConfigService`. To avoid validation errors, the time associated with the minimum date is midnight. This is necessary because the datepicker automatically sets the time on the Date object for selected dates to midnight in the current user's time zone.
|
|
858
858
|
*/
|
|
859
859
|
set minDate(value: Date | undefined);
|
|
860
860
|
get minDate(): Date | undefined;
|
|
@@ -877,8 +877,8 @@ declare class SkyDatepickerInputDirective implements OnInit, OnDestroy, AfterVie
|
|
|
877
877
|
*/
|
|
878
878
|
skyDatepickerNoValidate: boolean | undefined;
|
|
879
879
|
/**
|
|
880
|
-
* The starting day of the week in the calendar
|
|
881
|
-
*
|
|
880
|
+
* The starting day of the week in the calendar. `0` sets the starting day to Sunday.
|
|
881
|
+
* Place this attribute on the `input` element to override the default
|
|
882
882
|
* in `SkyDatepickerConfigService`.
|
|
883
883
|
* @default 0
|
|
884
884
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/datetime",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.1.0",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -20,13 +20,13 @@
|
|
|
20
20
|
"@angular/common": "^20.3.0",
|
|
21
21
|
"@angular/core": "^20.3.0",
|
|
22
22
|
"@angular/forms": "^20.3.0",
|
|
23
|
-
"@skyux/core": "13.
|
|
24
|
-
"@skyux/forms": "13.
|
|
25
|
-
"@skyux/i18n": "13.
|
|
26
|
-
"@skyux/icon": "13.
|
|
27
|
-
"@skyux/indicators": "13.
|
|
28
|
-
"@skyux/popovers": "13.
|
|
29
|
-
"@skyux/theme": "13.
|
|
23
|
+
"@skyux/core": "13.1.0",
|
|
24
|
+
"@skyux/forms": "13.1.0",
|
|
25
|
+
"@skyux/i18n": "13.1.0",
|
|
26
|
+
"@skyux/icon": "13.1.0",
|
|
27
|
+
"@skyux/indicators": "13.1.0",
|
|
28
|
+
"@skyux/popovers": "13.1.0",
|
|
29
|
+
"@skyux/theme": "13.1.0",
|
|
30
30
|
"moment": "^2.30.1"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|