@skyux/datetime 12.34.0 → 12.35.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.
|
@@ -1959,7 +1959,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
1959
1959
|
let nextId$1 = 0;
|
|
1960
1960
|
/**
|
|
1961
1961
|
* Creates the datepicker button and calendar.
|
|
1962
|
-
* You must wrap this component around an input with the `skyDatepickerInput`
|
|
1962
|
+
* You must wrap this component around an input with the `skyDatepickerInput`
|
|
1963
|
+
* or `skyFuzzyDatepickerInput` directive.
|
|
1963
1964
|
*/
|
|
1964
1965
|
class SkyDatepickerComponent {
|
|
1965
1966
|
set dateFormat(value) {
|
|
@@ -2368,6 +2369,10 @@ const SKY_DATEPICKER_VALIDATOR = {
|
|
|
2368
2369
|
useExisting: forwardRef(() => SkyDatepickerInputDirective),
|
|
2369
2370
|
multi: true,
|
|
2370
2371
|
};
|
|
2372
|
+
/**
|
|
2373
|
+
* Provides date input functionality for inputs and handles date parsing, formatting and
|
|
2374
|
+
* validation. It emits valid dates as `Date` objects and invalid dates as raw string values.
|
|
2375
|
+
*/
|
|
2371
2376
|
class SkyDatepickerInputDirective {
|
|
2372
2377
|
/**
|
|
2373
2378
|
* The date format for the input. Place this attribute on the `input` element
|