@skyux/datetime 11.24.0 → 11.26.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 +3695 -2478
- package/esm2022/lib/modules/date-range-picker/date-range-picker.component.mjs +7 -7
- package/esm2022/testing/modules/date-range-picker/date-range-picker-harness.mjs +49 -3
- package/fesm2022/skyux-datetime-testing.mjs +48 -2
- package/fesm2022/skyux-datetime-testing.mjs.map +1 -1
- package/fesm2022/skyux-datetime.mjs +6 -6
- package/fesm2022/skyux-datetime.mjs.map +1 -1
- package/package.json +9 -9
- package/testing/modules/date-range-picker/date-range-picker-harness.d.ts +12 -0
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@skyux/datetime",
|
3
|
-
"version": "11.
|
3
|
+
"version": "11.26.0",
|
4
4
|
"author": "Blackbaud, Inc.",
|
5
5
|
"keywords": [
|
6
6
|
"blackbaud",
|
@@ -41,14 +41,14 @@
|
|
41
41
|
"@angular/core": "^18.2.8",
|
42
42
|
"@angular/forms": "^18.2.8",
|
43
43
|
"@angular/platform-browser": "^18.2.8",
|
44
|
-
"@skyux-sdk/testing": "11.
|
45
|
-
"@skyux/core": "11.
|
46
|
-
"@skyux/forms": "11.
|
47
|
-
"@skyux/i18n": "11.
|
48
|
-
"@skyux/icon": "11.
|
49
|
-
"@skyux/indicators": "11.
|
50
|
-
"@skyux/popovers": "11.
|
51
|
-
"@skyux/theme": "11.
|
44
|
+
"@skyux-sdk/testing": "11.26.0",
|
45
|
+
"@skyux/core": "11.26.0",
|
46
|
+
"@skyux/forms": "11.26.0",
|
47
|
+
"@skyux/i18n": "11.26.0",
|
48
|
+
"@skyux/icon": "11.26.0",
|
49
|
+
"@skyux/indicators": "11.26.0",
|
50
|
+
"@skyux/popovers": "11.26.0",
|
51
|
+
"@skyux/theme": "11.26.0",
|
52
52
|
"moment": "^2.30.1"
|
53
53
|
},
|
54
54
|
"dependencies": {
|
@@ -20,6 +20,10 @@ export declare class SkyDateRangePickerHarness extends SkyComponentHarness {
|
|
20
20
|
* Clicks the help inline button.
|
21
21
|
*/
|
22
22
|
clickHelpInline(): Promise<void>;
|
23
|
+
/**
|
24
|
+
* Gets the end date value.
|
25
|
+
*/
|
26
|
+
getEndDateValue(): Promise<string>;
|
23
27
|
/**
|
24
28
|
* Gets the help popover content.
|
25
29
|
*/
|
@@ -36,6 +40,14 @@ export declare class SkyDateRangePickerHarness extends SkyComponentHarness {
|
|
36
40
|
* Gets the label text.
|
37
41
|
*/
|
38
42
|
getLabelText(): Promise<string>;
|
43
|
+
/**
|
44
|
+
* Gets the selected calculator ID.
|
45
|
+
*/
|
46
|
+
getSelectedCalculator(): Promise<SkyDateRangeCalculatorId>;
|
47
|
+
/**
|
48
|
+
* Gets the start date value.
|
49
|
+
*/
|
50
|
+
getStartDateValue(): Promise<string>;
|
39
51
|
/**
|
40
52
|
* Whether date range picker end date before start date error is thrown.
|
41
53
|
*/
|