@skyux/datetime 12.0.0-alpha.9 → 12.0.0-beta.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/fesm2022/skyux-datetime-testing.mjs +2 -2
- package/fesm2022/skyux-datetime-testing.mjs.map +1 -1
- package/fesm2022/skyux-datetime.mjs +8 -9
- package/fesm2022/skyux-datetime.mjs.map +1 -1
- package/lib/modules/date-range-picker/types/date-range-relative-value.d.ts +0 -1
- package/package.json +23 -26
- package/testing/modules/date-range-picker/date-range-picker-harness.d.ts +1 -1
- package/documentation.json +0 -21665
@@ -3,7 +3,6 @@ import { SkyDateRange } from './date-range';
|
|
3
3
|
* Need to add the following to classes which contain static methods.
|
4
4
|
* See: https://github.com/ng-packagr/ng-packagr/issues/641
|
5
5
|
* @internal
|
6
|
-
* @dynamic
|
7
6
|
*/
|
8
7
|
export declare abstract class SkyDateRangeRelativeValue {
|
9
8
|
static get today(): SkyDateRange;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@skyux/datetime",
|
3
|
-
"version": "12.0.0-
|
3
|
+
"version": "12.0.0-beta.0",
|
4
4
|
"author": "Blackbaud, Inc.",
|
5
5
|
"keywords": [
|
6
6
|
"blackbaud",
|
@@ -15,36 +15,20 @@
|
|
15
15
|
"url": "https://github.com/blackbaud/skyux/issues"
|
16
16
|
},
|
17
17
|
"homepage": "https://github.com/blackbaud/skyux#readme",
|
18
|
-
"exports": {
|
19
|
-
"./package.json": {
|
20
|
-
"default": "./package.json"
|
21
|
-
},
|
22
|
-
".": {
|
23
|
-
"types": "./index.d.ts",
|
24
|
-
"default": "./fesm2022/skyux-datetime.mjs"
|
25
|
-
},
|
26
|
-
"./testing": {
|
27
|
-
"types": "./testing/index.d.ts",
|
28
|
-
"default": "./fesm2022/skyux-datetime-testing.mjs"
|
29
|
-
},
|
30
|
-
"./documentation.json": {
|
31
|
-
"default": "./documentation.json"
|
32
|
-
}
|
33
|
-
},
|
34
18
|
"peerDependencies": {
|
35
19
|
"@angular/cdk": "^19.2.2",
|
36
20
|
"@angular/common": "^19.2.1",
|
37
21
|
"@angular/core": "^19.2.1",
|
38
22
|
"@angular/forms": "^19.2.1",
|
39
23
|
"@angular/platform-browser": "^19.2.1",
|
40
|
-
"@skyux-sdk/testing": "12.0.0-
|
41
|
-
"@skyux/core": "12.0.0-
|
42
|
-
"@skyux/forms": "12.0.0-
|
43
|
-
"@skyux/i18n": "12.0.0-
|
44
|
-
"@skyux/icon": "12.0.0-
|
45
|
-
"@skyux/indicators": "12.0.0-
|
46
|
-
"@skyux/popovers": "12.0.0-
|
47
|
-
"@skyux/theme": "12.0.0-
|
24
|
+
"@skyux-sdk/testing": "12.0.0-beta.0",
|
25
|
+
"@skyux/core": "12.0.0-beta.0",
|
26
|
+
"@skyux/forms": "12.0.0-beta.0",
|
27
|
+
"@skyux/i18n": "12.0.0-beta.0",
|
28
|
+
"@skyux/icon": "12.0.0-beta.0",
|
29
|
+
"@skyux/indicators": "12.0.0-beta.0",
|
30
|
+
"@skyux/popovers": "12.0.0-beta.0",
|
31
|
+
"@skyux/theme": "12.0.0-beta.0",
|
48
32
|
"moment": "^2.30.1"
|
49
33
|
},
|
50
34
|
"dependencies": {
|
@@ -52,5 +36,18 @@
|
|
52
36
|
},
|
53
37
|
"module": "fesm2022/skyux-datetime.mjs",
|
54
38
|
"typings": "index.d.ts",
|
39
|
+
"exports": {
|
40
|
+
"./package.json": {
|
41
|
+
"default": "./package.json"
|
42
|
+
},
|
43
|
+
".": {
|
44
|
+
"types": "./index.d.ts",
|
45
|
+
"default": "./fesm2022/skyux-datetime.mjs"
|
46
|
+
},
|
47
|
+
"./testing": {
|
48
|
+
"types": "./testing/index.d.ts",
|
49
|
+
"default": "./fesm2022/skyux-datetime-testing.mjs"
|
50
|
+
}
|
51
|
+
},
|
55
52
|
"sideEffects": false
|
56
|
-
}
|
53
|
+
}
|
@@ -58,7 +58,7 @@ export declare class SkyDateRangePickerHarness extends SkyComponentHarness {
|
|
58
58
|
hasEndDateRequiredError(): Promise<boolean>;
|
59
59
|
/**
|
60
60
|
* Whether a custom error has fired.
|
61
|
-
* @
|
61
|
+
* @param errorName `errorName` property of the custom `sky-form-error`.
|
62
62
|
*/
|
63
63
|
hasError(errorName: string): Promise<boolean>;
|
64
64
|
/**
|