@skyux/datetime 10.11.0 → 10.12.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 +1410 -1361
- package/esm2022/lib/modules/date-range-picker/date-range-picker.component.mjs +15 -3
- package/fesm2022/skyux-datetime.mjs +14 -2
- package/fesm2022/skyux-datetime.mjs.map +1 -1
- package/lib/modules/date-range-picker/date-range-picker.component.d.ts +8 -1
- package/package.json +8 -8
@@ -76,6 +76,12 @@ export declare class SkyDateRangePickerComponent implements OnInit, OnChanges, O
|
|
76
76
|
* @preview
|
77
77
|
*/
|
78
78
|
helpPopoverTitle: string | undefined;
|
79
|
+
/**
|
80
|
+
* Whether the date range picker is stacked on another form component. When specified, the appropriate
|
81
|
+
* vertical spacing is automatically added to the date range picker.
|
82
|
+
* @preview
|
83
|
+
*/
|
84
|
+
stacked: boolean;
|
79
85
|
display: string | undefined;
|
80
86
|
selectedCalculator: SkyDateRangeCalculator | undefined;
|
81
87
|
readonly dateRangePickerId: string;
|
@@ -97,5 +103,6 @@ export declare class SkyDateRangePickerComponent implements OnInit, OnChanges, O
|
|
97
103
|
registerOnTouched(fn: () => SkyDateRangeCalculation): void;
|
98
104
|
setDisabledState(disabled: boolean): void;
|
99
105
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyDateRangePickerComponent, [null, null, null, null, null, { optional: true; }]>;
|
100
|
-
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; }; "label": { "alias": "label"; "required": false; }; "hintText": { "alias": "hintText"; "required": false; }; "startDateRequired": { "alias": "startDateRequired"; "required": false; }; "endDateRequired": { "alias": "endDateRequired"; "required": false; }; "helpPopoverContent": { "alias": "helpPopoverContent"; "required": false; }; "helpPopoverTitle": { "alias": "helpPopoverTitle"; "required": false; }; }, {}, never, never, false, never>;
|
106
|
+
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; }; "label": { "alias": "label"; "required": false; }; "hintText": { "alias": "hintText"; "required": false; }; "startDateRequired": { "alias": "startDateRequired"; "required": false; }; "endDateRequired": { "alias": "endDateRequired"; "required": false; }; "helpPopoverContent": { "alias": "helpPopoverContent"; "required": false; }; "helpPopoverTitle": { "alias": "helpPopoverTitle"; "required": false; }; "stacked": { "alias": "stacked"; "required": false; }; }, {}, never, never, false, never>;
|
107
|
+
static ngAcceptInputType_stacked: unknown;
|
101
108
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@skyux/datetime",
|
3
|
-
"version": "10.
|
3
|
+
"version": "10.12.0",
|
4
4
|
"author": "Blackbaud, Inc.",
|
5
5
|
"keywords": [
|
6
6
|
"blackbaud",
|
@@ -41,13 +41,13 @@
|
|
41
41
|
"@angular/core": "^17.3.4",
|
42
42
|
"@angular/forms": "^17.3.4",
|
43
43
|
"@angular/platform-browser": "^17.3.4",
|
44
|
-
"@skyux-sdk/testing": "10.
|
45
|
-
"@skyux/core": "10.
|
46
|
-
"@skyux/forms": "10.
|
47
|
-
"@skyux/i18n": "10.
|
48
|
-
"@skyux/indicators": "10.
|
49
|
-
"@skyux/popovers": "10.
|
50
|
-
"@skyux/theme": "10.
|
44
|
+
"@skyux-sdk/testing": "10.12.0",
|
45
|
+
"@skyux/core": "10.12.0",
|
46
|
+
"@skyux/forms": "10.12.0",
|
47
|
+
"@skyux/i18n": "10.12.0",
|
48
|
+
"@skyux/indicators": "10.12.0",
|
49
|
+
"@skyux/popovers": "10.12.0",
|
50
|
+
"@skyux/theme": "10.12.0",
|
51
51
|
"moment": "^2.30.1"
|
52
52
|
},
|
53
53
|
"dependencies": {
|