@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
@@ -56,15 +56,6 @@ export declare class SkyFuzzyDatepickerInputDirective implements OnInit, OnDestr
|
|
56
56
|
* @default false
|
57
57
|
*/
|
58
58
|
skyDatepickerNoValidate: boolean;
|
59
|
-
/**
|
60
|
-
* Creates the fuzzy datepicker input and calendar to let users specify dates that are
|
61
|
-
* not complete. For example, if users know the year but not the month or day, they can
|
62
|
-
* enter just the year. Place this directive on an `input` element, and wrap the `input`
|
63
|
-
* in a `sky-datepicker` component. The value that users select is driven
|
64
|
-
* through the `ngModel` attribute specified on the `input` element.
|
65
|
-
* @required
|
66
|
-
*/
|
67
|
-
set skyFuzzyDatepickerInput(value: SkyDatepickerComponent | undefined | '');
|
68
59
|
/**
|
69
60
|
* Specifies the starting day of the week in the calendar, where `0` sets the starting day
|
70
61
|
* to Sunday. Place this attribute on the `input` element to override the default
|
@@ -128,5 +119,5 @@ export declare class SkyFuzzyDatepickerInputDirective implements OnInit, OnDestr
|
|
128
119
|
*/
|
129
120
|
private updateValue;
|
130
121
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyFuzzyDatepickerInputDirective, [null, null, null, null, null, null, null, { optional: true; }]>;
|
131
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SkyFuzzyDatepickerInputDirective, "[skyFuzzyDatepickerInput]", never, { "dateFormat": "dateFormat"; "disabled": "disabled"; "futureDisabled": "futureDisabled"; "maxDate": "maxDate"; "minDate": "minDate"; "skyDatepickerNoValidate": "skyDatepickerNoValidate"; "
|
122
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SkyFuzzyDatepickerInputDirective, "[skyFuzzyDatepickerInput]", never, { "dateFormat": "dateFormat"; "disabled": "disabled"; "futureDisabled": "futureDisabled"; "maxDate": "maxDate"; "minDate": "minDate"; "skyDatepickerNoValidate": "skyDatepickerNoValidate"; "startingDay": "startingDay"; "yearRequired": "yearRequired"; }, {}, never, never, false>;
|
132
123
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@skyux/datetime",
|
3
|
-
"version": "7.0.0-beta.
|
3
|
+
"version": "7.0.0-beta.3",
|
4
4
|
"author": "Blackbaud, Inc.",
|
5
5
|
"keywords": [
|
6
6
|
"blackbaud",
|
@@ -44,16 +44,16 @@
|
|
44
44
|
"@angular/core": "^14.2.0",
|
45
45
|
"@angular/forms": "^14.2.0",
|
46
46
|
"@angular/platform-browser": "^14.2.0",
|
47
|
-
"@skyux-sdk/testing": "7.0.0-beta.
|
48
|
-
"@skyux/core": "7.0.0-beta.
|
49
|
-
"@skyux/forms": "7.0.0-beta.
|
50
|
-
"@skyux/i18n": "7.0.0-beta.
|
51
|
-
"@skyux/indicators": "7.0.0-beta.
|
52
|
-
"@skyux/popovers": "7.0.0-beta.
|
53
|
-
"@skyux/theme": "7.0.0-beta.
|
47
|
+
"@skyux-sdk/testing": "7.0.0-beta.3",
|
48
|
+
"@skyux/core": "7.0.0-beta.3",
|
49
|
+
"@skyux/forms": "7.0.0-beta.3",
|
50
|
+
"@skyux/i18n": "7.0.0-beta.3",
|
51
|
+
"@skyux/indicators": "7.0.0-beta.3",
|
52
|
+
"@skyux/popovers": "7.0.0-beta.3",
|
53
|
+
"@skyux/theme": "7.0.0-beta.3",
|
54
|
+
"moment": "^2.29.4"
|
54
55
|
},
|
55
56
|
"dependencies": {
|
56
|
-
"moment": "2.29.4",
|
57
57
|
"tslib": "^2.3.1"
|
58
58
|
},
|
59
59
|
"module": "fesm2015/skyux-datetime.mjs",
|