@skyux/datetime 11.0.0-alpha.4 → 11.0.0-alpha.6
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 +1839 -1930
- package/esm2022/lib/modules/date-range-picker/date-range.service.mjs +10 -46
- package/fesm2022/skyux-datetime.mjs +11 -44
- package/fesm2022/skyux-datetime.mjs.map +1 -1
- package/lib/modules/date-range-picker/date-range.service.d.ts +2 -6
- package/package.json +9 -9
@@ -1,5 +1,3 @@
|
|
1
|
-
import { OnDestroy } from '@angular/core';
|
2
|
-
import { SkyLibResourcesService } from '@skyux/i18n';
|
3
1
|
import { SkyDateRangeCalculator } from './types/date-range-calculator';
|
4
2
|
import { SkyDateRangeCalculatorConfig } from './types/date-range-calculator-config';
|
5
3
|
import { SkyDateRangeCalculatorId } from './types/date-range-calculator-id';
|
@@ -7,12 +5,10 @@ import * as i0 from "@angular/core";
|
|
7
5
|
/**
|
8
6
|
* Creates and manages `SkyDateRangeCalculator` instances.
|
9
7
|
*/
|
10
|
-
export declare class SkyDateRangeService
|
8
|
+
export declare class SkyDateRangeService {
|
11
9
|
#private;
|
12
10
|
get calculators(): SkyDateRangeCalculator[];
|
13
|
-
|
14
|
-
constructor(resourcesService: SkyLibResourcesService);
|
15
|
-
ngOnDestroy(): void;
|
11
|
+
constructor();
|
16
12
|
/**
|
17
13
|
* Creates a custom date range calculator.
|
18
14
|
* @param config The calculator config.
|
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.6",
|
4
4
|
"author": "Blackbaud, Inc.",
|
5
5
|
"keywords": [
|
6
6
|
"blackbaud",
|
@@ -41,17 +41,17 @@
|
|
41
41
|
"@angular/core": "^18.1.1",
|
42
42
|
"@angular/forms": "^18.1.1",
|
43
43
|
"@angular/platform-browser": "^18.1.1",
|
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/indicators": "11.0.0-alpha.
|
49
|
-
"@skyux/popovers": "11.0.0-alpha.
|
50
|
-
"@skyux/theme": "11.0.0-alpha.
|
44
|
+
"@skyux-sdk/testing": "11.0.0-alpha.6",
|
45
|
+
"@skyux/core": "11.0.0-alpha.6",
|
46
|
+
"@skyux/forms": "11.0.0-alpha.6",
|
47
|
+
"@skyux/i18n": "11.0.0-alpha.6",
|
48
|
+
"@skyux/indicators": "11.0.0-alpha.6",
|
49
|
+
"@skyux/popovers": "11.0.0-alpha.6",
|
50
|
+
"@skyux/theme": "11.0.0-alpha.6",
|
51
51
|
"moment": "^2.30.1"
|
52
52
|
},
|
53
53
|
"dependencies": {
|
54
|
-
"@skyux/icon": "11.0.0-alpha.
|
54
|
+
"@skyux/icon": "11.0.0-alpha.6",
|
55
55
|
"tslib": "^2.6.3"
|
56
56
|
},
|
57
57
|
"module": "fesm2022/skyux-datetime.mjs",
|