@skyux/datetime 7.0.0 → 7.1.1
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/documentation.json +5 -5
- package/esm2020/lib/modules/datepicker/datepicker-input.directive.mjs +2 -2
- package/esm2020/lib/modules/datepicker/datepicker.service.mjs +1 -1
- package/fesm2015/skyux-datetime.mjs +1 -1
- package/fesm2015/skyux-datetime.mjs.map +1 -1
- package/fesm2020/skyux-datetime.mjs +1 -1
- package/fesm2020/skyux-datetime.mjs.map +1 -1
- package/lib/modules/datepicker/datepicker-input.directive.d.ts +1 -1
- package/lib/modules/datepicker/datepicker.service.d.ts +1 -1
- package/package.json +8 -8
@@ -28,7 +28,7 @@ export declare class SkyDatepickerInputDirective implements OnInit, OnDestroy, A
|
|
28
28
|
get maxDate(): Date | undefined;
|
29
29
|
/**
|
30
30
|
* Specifies the earliest date that is available in the calendar. Place this attribute on
|
31
|
-
* the `input` element to override the default in `SkyDatepickerConfigService`.
|
31
|
+
* the `input` element to override the default in `SkyDatepickerConfigService`. To avoid validation errors, the time associated with the minimum date must be 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.
|
32
32
|
*/
|
33
33
|
set minDate(value: Date | undefined);
|
34
34
|
get minDate(): Date | undefined;
|
@@ -9,7 +9,7 @@ export declare class SkyDatepickerService {
|
|
9
9
|
* Specifies if a key date popover is currently displayed.
|
10
10
|
* Useful for communicating across all daypicker siblings when a popover is displayed.
|
11
11
|
*/
|
12
|
-
keyDatePopoverStream: Subject<SkyDatepickerDate>;
|
12
|
+
keyDatePopoverStream: Subject<SkyDatepickerDate | undefined>;
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyDatepickerService, never>;
|
14
14
|
static ɵprov: i0.ɵɵInjectableDeclaration<SkyDatepickerService>;
|
15
15
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@skyux/datetime",
|
3
|
-
"version": "7.
|
3
|
+
"version": "7.1.1",
|
4
4
|
"author": "Blackbaud, Inc.",
|
5
5
|
"keywords": [
|
6
6
|
"blackbaud",
|
@@ -44,13 +44,13 @@
|
|
44
44
|
"@angular/core": "^14.2.11",
|
45
45
|
"@angular/forms": "^14.2.11",
|
46
46
|
"@angular/platform-browser": "^14.2.11",
|
47
|
-
"@skyux-sdk/testing": "7.
|
48
|
-
"@skyux/core": "7.
|
49
|
-
"@skyux/forms": "7.
|
50
|
-
"@skyux/i18n": "7.
|
51
|
-
"@skyux/indicators": "7.
|
52
|
-
"@skyux/popovers": "7.
|
53
|
-
"@skyux/theme": "7.
|
47
|
+
"@skyux-sdk/testing": "7.1.1",
|
48
|
+
"@skyux/core": "7.1.1",
|
49
|
+
"@skyux/forms": "7.1.1",
|
50
|
+
"@skyux/i18n": "7.1.1",
|
51
|
+
"@skyux/indicators": "7.1.1",
|
52
|
+
"@skyux/popovers": "7.1.1",
|
53
|
+
"@skyux/theme": "7.1.1",
|
54
54
|
"moment": "^2.29.4"
|
55
55
|
},
|
56
56
|
"dependencies": {
|