@skyux/datetime 11.0.0-beta.0 → 11.0.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/documentation.json +1435 -1478
- package/esm2022/lib/modules/date-range-picker/date-range-picker.component.mjs +5 -15
- package/esm2022/lib/modules/datepicker/datepicker-input.directive.mjs +2 -2
- package/fesm2022/skyux-datetime.mjs +5 -15
- package/fesm2022/skyux-datetime.mjs.map +1 -1
- package/lib/modules/date-range-picker/date-range-picker.component.d.ts +1 -7
- package/package.json +9 -9
@@ -55,10 +55,6 @@ export declare class SkyDateRangePickerComponent implements AfterViewInit, Contr
|
|
55
55
|
* The text to display as the date range picker's label.
|
56
56
|
*/
|
57
57
|
labelText: string | undefined;
|
58
|
-
/**
|
59
|
-
* Whether the date range picker requires a value.
|
60
|
-
*/
|
61
|
-
required: boolean;
|
62
58
|
/**
|
63
59
|
* Whether the date range picker is stacked on another form component. When specified, the appropriate
|
64
60
|
* vertical spacing is automatically added to the date range picker.
|
@@ -95,11 +91,9 @@ export declare class SkyDateRangePickerComponent implements AfterViewInit, Contr
|
|
95
91
|
setDisabledState(isDisabled: boolean): void;
|
96
92
|
validate(control: AbstractControl): ValidationErrors | null;
|
97
93
|
writeValue(value: Partial<SkyDateRangeCalculation> | undefined): void;
|
98
|
-
protected isRequired(): boolean;
|
99
94
|
protected onBlur(): void;
|
100
95
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyDateRangePickerComponent, never>;
|
101
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SkyDateRangePickerComponent, "sky-date-range-picker", never, { "calculatorIds": { "alias": "calculatorIds"; "required": false; }; "dateFormat": { "alias": "dateFormat"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "helpPopoverContent": { "alias": "helpPopoverContent"; "required": false; }; "helpPopoverTitle": { "alias": "helpPopoverTitle"; "required": false; }; "hintText": { "alias": "hintText"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelText": { "alias": "labelText"; "required": false; }; "
|
96
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkyDateRangePickerComponent, "sky-date-range-picker", never, { "calculatorIds": { "alias": "calculatorIds"; "required": false; }; "dateFormat": { "alias": "dateFormat"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "helpPopoverContent": { "alias": "helpPopoverContent"; "required": false; }; "helpPopoverTitle": { "alias": "helpPopoverTitle"; "required": false; }; "hintText": { "alias": "hintText"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelText": { "alias": "labelText"; "required": false; }; "stacked": { "alias": "stacked"; "required": false; }; "helpKey": { "alias": "helpKey"; "required": false; }; }, {}, never, ["sky-form-error"], true, never>;
|
102
97
|
static ngAcceptInputType_disabled: unknown;
|
103
|
-
static ngAcceptInputType_required: unknown;
|
104
98
|
static ngAcceptInputType_stacked: unknown;
|
105
99
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@skyux/datetime",
|
3
|
-
"version": "11.0.0
|
3
|
+
"version": "11.0.0",
|
4
4
|
"author": "Blackbaud, Inc.",
|
5
5
|
"keywords": [
|
6
6
|
"blackbaud",
|
@@ -41,14 +41,14 @@
|
|
41
41
|
"@angular/core": "^18.2.3",
|
42
42
|
"@angular/forms": "^18.2.3",
|
43
43
|
"@angular/platform-browser": "^18.2.3",
|
44
|
-
"@skyux-sdk/testing": "11.0.0
|
45
|
-
"@skyux/core": "11.0.0
|
46
|
-
"@skyux/forms": "11.0.0
|
47
|
-
"@skyux/i18n": "11.0.0
|
48
|
-
"@skyux/icon": "11.0.0
|
49
|
-
"@skyux/indicators": "11.0.0
|
50
|
-
"@skyux/popovers": "11.0.0
|
51
|
-
"@skyux/theme": "11.0.0
|
44
|
+
"@skyux-sdk/testing": "11.0.0",
|
45
|
+
"@skyux/core": "11.0.0",
|
46
|
+
"@skyux/forms": "11.0.0",
|
47
|
+
"@skyux/i18n": "11.0.0",
|
48
|
+
"@skyux/icon": "11.0.0",
|
49
|
+
"@skyux/indicators": "11.0.0",
|
50
|
+
"@skyux/popovers": "11.0.0",
|
51
|
+
"@skyux/theme": "11.0.0",
|
52
52
|
"moment": "^2.30.1"
|
53
53
|
},
|
54
54
|
"dependencies": {
|