@skyux/datetime 7.0.0-beta.0 → 7.0.0-beta.1
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/esm2020/lib/modules/date-pipe/date-format-utility.mjs +3 -6
- package/esm2020/lib/modules/date-pipe/date.pipe.mjs +22 -15
- package/esm2020/lib/modules/date-pipe/fuzzy-date.pipe.mjs +2 -2
- package/fesm2015/skyux-datetime.mjs +25 -20
- package/fesm2015/skyux-datetime.mjs.map +1 -1
- package/fesm2020/skyux-datetime.mjs +24 -20
- package/fesm2020/skyux-datetime.mjs.map +1 -1
- package/lib/modules/date-pipe/date-format-utility.d.ts +1 -1
- package/lib/modules/date-pipe/date.pipe.d.ts +1 -7
- package/package.json +8 -8
@@ -11,14 +11,8 @@ import * as i0 from "@angular/core";
|
|
11
11
|
* ```
|
12
12
|
*/
|
13
13
|
export declare class SkyDatePipe implements OnDestroy, PipeTransform {
|
14
|
+
#private;
|
14
15
|
private localeProvider;
|
15
|
-
private defaultFormat;
|
16
|
-
private format;
|
17
|
-
private defaultLocale;
|
18
|
-
private locale;
|
19
|
-
private value;
|
20
|
-
private formattedValue;
|
21
|
-
private ngUnsubscribe;
|
22
16
|
constructor(localeProvider: SkyAppLocaleProvider);
|
23
17
|
ngOnDestroy(): void;
|
24
18
|
/**
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@skyux/datetime",
|
3
|
-
"version": "7.0.0-beta.
|
3
|
+
"version": "7.0.0-beta.1",
|
4
4
|
"author": "Blackbaud, Inc.",
|
5
5
|
"keywords": [
|
6
6
|
"blackbaud",
|
@@ -44,13 +44,13 @@
|
|
44
44
|
"@angular/core": "^14.2.0",
|
45
45
|
"@angular/forms": "^14.2.0",
|
46
46
|
"@angular/platform-browser": "^14.2.0",
|
47
|
-
"@skyux-sdk/testing": "7.0.0-beta.
|
48
|
-
"@skyux/core": "7.0.0-beta.
|
49
|
-
"@skyux/forms": "7.0.0-beta.
|
50
|
-
"@skyux/i18n": "7.0.0-beta.
|
51
|
-
"@skyux/indicators": "7.0.0-beta.
|
52
|
-
"@skyux/popovers": "7.0.0-beta.
|
53
|
-
"@skyux/theme": "7.0.0-beta.
|
47
|
+
"@skyux-sdk/testing": "7.0.0-beta.1",
|
48
|
+
"@skyux/core": "7.0.0-beta.1",
|
49
|
+
"@skyux/forms": "7.0.0-beta.1",
|
50
|
+
"@skyux/i18n": "7.0.0-beta.1",
|
51
|
+
"@skyux/indicators": "7.0.0-beta.1",
|
52
|
+
"@skyux/popovers": "7.0.0-beta.1",
|
53
|
+
"@skyux/theme": "7.0.0-beta.1"
|
54
54
|
},
|
55
55
|
"dependencies": {
|
56
56
|
"moment": "2.29.4",
|