@skyux/datetime 7.0.0-beta.1 → 7.0.0-beta.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/documentation.json +566 -640
- package/esm2020/lib/modules/datepicker/datepicker-input-fuzzy.directive.mjs +2 -15
- package/fesm2015/skyux-datetime.mjs +1 -14
- package/fesm2015/skyux-datetime.mjs.map +1 -1
- package/fesm2020/skyux-datetime.mjs +1 -14
- package/fesm2020/skyux-datetime.mjs.map +1 -1
- package/lib/modules/datepicker/datepicker-input-fuzzy.directive.d.ts +1 -10
- package/package.json +9 -9
@@ -2317,17 +2317,6 @@ class SkyFuzzyDatepickerInputDirective {
|
|
2317
2317
|
get minDate() {
|
2318
2318
|
return this._minDate;
|
2319
2319
|
}
|
2320
|
-
/**
|
2321
|
-
* Creates the fuzzy datepicker input and calendar to let users specify dates that are
|
2322
|
-
* not complete. For example, if users know the year but not the month or day, they can
|
2323
|
-
* enter just the year. Place this directive on an `input` element, and wrap the `input`
|
2324
|
-
* in a `sky-datepicker` component. The value that users select is driven
|
2325
|
-
* through the `ngModel` attribute specified on the `input` element.
|
2326
|
-
* @required
|
2327
|
-
*/
|
2328
|
-
set skyFuzzyDatepickerInput(value) {
|
2329
|
-
// TODO: Remove this property in a future version of SKY UX.
|
2330
|
-
}
|
2331
2320
|
/**
|
2332
2321
|
* Specifies the starting day of the week in the calendar, where `0` sets the starting day
|
2333
2322
|
* to Sunday. Place this attribute on the `input` element to override the default
|
@@ -2607,7 +2596,7 @@ class SkyFuzzyDatepickerInputDirective {
|
|
2607
2596
|
}
|
2608
2597
|
}
|
2609
2598
|
SkyFuzzyDatepickerInputDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.0", ngImport: i0, type: SkyFuzzyDatepickerInputDirective, deps: [{ token: i0.ChangeDetectorRef }, { token: SkyDatepickerConfigService }, { token: i0.ElementRef }, { token: SkyFuzzyDateService }, { token: i3.SkyAppLocaleProvider }, { token: i0.Renderer2 }, { token: i3.SkyLibResourcesService }, { token: SkyDatepickerComponent, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
2610
|
-
SkyFuzzyDatepickerInputDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.0", type: SkyFuzzyDatepickerInputDirective, selector: "[skyFuzzyDatepickerInput]", inputs: { dateFormat: "dateFormat", disabled: "disabled", futureDisabled: "futureDisabled", maxDate: "maxDate", minDate: "minDate", skyDatepickerNoValidate: "skyDatepickerNoValidate",
|
2599
|
+
SkyFuzzyDatepickerInputDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.0", type: SkyFuzzyDatepickerInputDirective, selector: "[skyFuzzyDatepickerInput]", inputs: { dateFormat: "dateFormat", disabled: "disabled", futureDisabled: "futureDisabled", maxDate: "maxDate", minDate: "minDate", skyDatepickerNoValidate: "skyDatepickerNoValidate", startingDay: "startingDay", yearRequired: "yearRequired" }, host: { listeners: { "change": "onInputChange($event)", "blur": "onInputBlur()", "input": "onInput()" } }, providers: [
|
2611
2600
|
SKY_FUZZY_DATEPICKER_VALUE_ACCESSOR,
|
2612
2601
|
SKY_FUZZY_DATEPICKER_VALIDATOR,
|
2613
2602
|
], ngImport: i0 });
|
@@ -2634,8 +2623,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImpor
|
|
2634
2623
|
type: Input
|
2635
2624
|
}], skyDatepickerNoValidate: [{
|
2636
2625
|
type: Input
|
2637
|
-
}], skyFuzzyDatepickerInput: [{
|
2638
|
-
type: Input
|
2639
2626
|
}], startingDay: [{
|
2640
2627
|
type: Input
|
2641
2628
|
}], yearRequired: [{
|