@skyux/datetime 11.0.0-alpha.13 → 11.0.0-alpha.14
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 +1453 -1593
- package/esm2022/lib/modules/date-range-picker/date-range-picker.component.mjs +27 -37
- package/fesm2022/skyux-datetime.mjs +26 -36
- package/fesm2022/skyux-datetime.mjs.map +1 -1
- package/lib/modules/date-range-picker/date-range-picker.component.d.ts +4 -16
- package/package.json +9 -9
@@ -30,12 +30,6 @@ export declare class SkyDateRangePickerComponent implements AfterViewInit, Contr
|
|
30
30
|
* @default false
|
31
31
|
*/
|
32
32
|
set disabled(value: boolean);
|
33
|
-
/**
|
34
|
-
* Whether to require users to specify a end date.
|
35
|
-
* @deprecated Use the `required` directive or Angular's `Validators.required`
|
36
|
-
* on the form control to mark the date range picker as required.
|
37
|
-
*/
|
38
|
-
endDateRequired: boolean;
|
39
33
|
/**
|
40
34
|
* The content of the help popover. When specified along with `labelText`, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline)
|
41
35
|
* button is added to date range picker. The help inline button displays a [popover](https://developer.blackbaud.com/skyux/components/popover)
|
@@ -71,25 +65,21 @@ export declare class SkyDateRangePickerComponent implements AfterViewInit, Contr
|
|
71
65
|
* vertical spacing is automatically added to the date range picker.
|
72
66
|
*/
|
73
67
|
stacked: boolean;
|
74
|
-
/**
|
75
|
-
* Whether to require users to specify a start date.
|
76
|
-
* @deprecated Use the `required` directive or Angular's `Validators.required`
|
77
|
-
* on the form control to mark the date range picker as required.
|
78
|
-
*/
|
79
|
-
startDateRequired: boolean;
|
80
68
|
/**
|
81
69
|
* A help key that identifies the global help content to display. When specified, a [help inline](https://developer.blackbaud.com/skyux/components/help-inline)
|
82
70
|
* button is placed beside the date range picker label. Clicking the button invokes [global help](https://developer.blackbaud.com/skyux/learn/develop/global-help)
|
83
71
|
* as configured by the application.
|
84
72
|
*/
|
85
73
|
helpKey: string | undefined;
|
74
|
+
protected calculatorIdHasErrors: boolean;
|
86
75
|
protected calculators: SkyDateRangeCalculator[];
|
76
|
+
protected endDateHasErrors: boolean;
|
87
77
|
protected formGroup: FormGroup;
|
88
|
-
protected hasErrors: boolean;
|
89
78
|
protected hostControl: AbstractControl | null | undefined;
|
90
79
|
protected selectedCalculator: SkyDateRangeCalculator;
|
91
80
|
protected showEndDatePicker: boolean;
|
92
81
|
protected showStartDatePicker: boolean;
|
82
|
+
protected startDateHasErrors: boolean;
|
93
83
|
constructor();
|
94
84
|
ngAfterViewInit(): void;
|
95
85
|
/**
|
@@ -109,10 +99,8 @@ export declare class SkyDateRangePickerComponent implements AfterViewInit, Contr
|
|
109
99
|
protected isRequired(): boolean;
|
110
100
|
protected onBlur(): void;
|
111
101
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyDateRangePickerComponent, never>;
|
112
|
-
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; }; "
|
102
|
+
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; }; "required": { "alias": "required"; "required": false; }; "stacked": { "alias": "stacked"; "required": false; }; "helpKey": { "alias": "helpKey"; "required": false; }; }, {}, never, ["sky-form-error"], true, [{ directive: typeof i1.SkyFormFieldLabelTextRequiredDirective; inputs: { "labelText": "label || labelText"; }; outputs: {}; }]>;
|
113
103
|
static ngAcceptInputType_disabled: unknown;
|
114
|
-
static ngAcceptInputType_endDateRequired: unknown;
|
115
104
|
static ngAcceptInputType_required: unknown;
|
116
105
|
static ngAcceptInputType_stacked: unknown;
|
117
|
-
static ngAcceptInputType_startDateRequired: unknown;
|
118
106
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@skyux/datetime",
|
3
|
-
"version": "11.0.0-alpha.
|
3
|
+
"version": "11.0.0-alpha.14",
|
4
4
|
"author": "Blackbaud, Inc.",
|
5
5
|
"keywords": [
|
6
6
|
"blackbaud",
|
@@ -41,14 +41,14 @@
|
|
41
41
|
"@angular/core": "^18.1.2",
|
42
42
|
"@angular/forms": "^18.1.2",
|
43
43
|
"@angular/platform-browser": "^18.1.2",
|
44
|
-
"@skyux-sdk/testing": "11.0.0-alpha.
|
45
|
-
"@skyux/core": "11.0.0-alpha.
|
46
|
-
"@skyux/forms": "11.0.0-alpha.
|
47
|
-
"@skyux/i18n": "11.0.0-alpha.
|
48
|
-
"@skyux/icon": "11.0.0-alpha.
|
49
|
-
"@skyux/indicators": "11.0.0-alpha.
|
50
|
-
"@skyux/popovers": "11.0.0-alpha.
|
51
|
-
"@skyux/theme": "11.0.0-alpha.
|
44
|
+
"@skyux-sdk/testing": "11.0.0-alpha.14",
|
45
|
+
"@skyux/core": "11.0.0-alpha.14",
|
46
|
+
"@skyux/forms": "11.0.0-alpha.14",
|
47
|
+
"@skyux/i18n": "11.0.0-alpha.14",
|
48
|
+
"@skyux/icon": "11.0.0-alpha.14",
|
49
|
+
"@skyux/indicators": "11.0.0-alpha.14",
|
50
|
+
"@skyux/popovers": "11.0.0-alpha.14",
|
51
|
+
"@skyux/theme": "11.0.0-alpha.14",
|
52
52
|
"moment": "^2.30.1"
|
53
53
|
},
|
54
54
|
"dependencies": {
|