@skyux/datetime 7.1.1 → 7.1.3
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 +209 -209
- package/esm2020/lib/modules/date-pipe/date.pipe.mjs +11 -12
- package/esm2020/lib/modules/date-pipe/fuzzy-date.pipe.mjs +9 -5
- package/esm2020/testing/datepicker-fixture.mjs +13 -9
- package/esm2020/testing/timepicker-fixture.mjs +18 -14
- package/fesm2015/skyux-datetime-testing.mjs +28 -21
- package/fesm2015/skyux-datetime-testing.mjs.map +1 -1
- package/fesm2015/skyux-datetime.mjs +17 -15
- package/fesm2015/skyux-datetime.mjs.map +1 -1
- package/fesm2020/skyux-datetime-testing.mjs +28 -21
- package/fesm2020/skyux-datetime-testing.mjs.map +1 -1
- package/fesm2020/skyux-datetime.mjs +17 -15
- package/fesm2020/skyux-datetime.mjs.map +1 -1
- package/lib/modules/date-pipe/date.pipe.d.ts +0 -2
- package/lib/modules/date-pipe/fuzzy-date.pipe.d.ts +1 -1
- package/package.json +8 -8
- package/testing/datepicker-fixture.d.ts +1 -2
- package/testing/timepicker-fixture.d.ts +1 -4
@@ -12,7 +12,6 @@ import * as i0 from "@angular/core";
|
|
12
12
|
*/
|
13
13
|
export declare class SkyDatePipe implements OnDestroy, PipeTransform {
|
14
14
|
#private;
|
15
|
-
private localeProvider;
|
16
15
|
constructor(localeProvider: SkyAppLocaleProvider);
|
17
16
|
ngOnDestroy(): void;
|
18
17
|
/**
|
@@ -24,7 +23,6 @@ export declare class SkyDatePipe implements OnDestroy, PipeTransform {
|
|
24
23
|
* @param locale Specifies the locale code to use in the transform.
|
25
24
|
*/
|
26
25
|
transform(value: any, format?: string, locale?: string): string;
|
27
|
-
private updateFormattedValue;
|
28
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyDatePipe, never>;
|
29
27
|
static ɵpipe: i0.ɵɵPipeDeclaration<SkyDatePipe, "skyDate", false>;
|
30
28
|
}
|
@@ -12,7 +12,7 @@ import * as i0 from "@angular/core";
|
|
12
12
|
* ```
|
13
13
|
*/
|
14
14
|
export declare class SkyFuzzyDatePipe implements PipeTransform {
|
15
|
-
private
|
15
|
+
#private;
|
16
16
|
constructor(fuzzyDateService: SkyFuzzyDateService);
|
17
17
|
/**
|
18
18
|
* Transforms fuzzy date values using two or more date tokens that represent the day, month,
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@skyux/datetime",
|
3
|
-
"version": "7.1.
|
3
|
+
"version": "7.1.3",
|
4
4
|
"author": "Blackbaud, Inc.",
|
5
5
|
"keywords": [
|
6
6
|
"blackbaud",
|
@@ -44,13 +44,13 @@
|
|
44
44
|
"@angular/core": "^14.2.11",
|
45
45
|
"@angular/forms": "^14.2.11",
|
46
46
|
"@angular/platform-browser": "^14.2.11",
|
47
|
-
"@skyux-sdk/testing": "7.1.
|
48
|
-
"@skyux/core": "7.1.
|
49
|
-
"@skyux/forms": "7.1.
|
50
|
-
"@skyux/i18n": "7.1.
|
51
|
-
"@skyux/indicators": "7.1.
|
52
|
-
"@skyux/popovers": "7.1.
|
53
|
-
"@skyux/theme": "7.1.
|
47
|
+
"@skyux-sdk/testing": "7.1.3",
|
48
|
+
"@skyux/core": "7.1.3",
|
49
|
+
"@skyux/forms": "7.1.3",
|
50
|
+
"@skyux/i18n": "7.1.3",
|
51
|
+
"@skyux/indicators": "7.1.3",
|
52
|
+
"@skyux/popovers": "7.1.3",
|
53
|
+
"@skyux/theme": "7.1.3",
|
54
54
|
"moment": "^2.29.4"
|
55
55
|
},
|
56
56
|
"dependencies": {
|
@@ -4,7 +4,7 @@ import { ComponentFixture } from '@angular/core/testing';
|
|
4
4
|
* @internal
|
5
5
|
*/
|
6
6
|
export declare class SkyDatepickerFixture {
|
7
|
-
private
|
7
|
+
#private;
|
8
8
|
constructor(fixture: ComponentFixture<any>, skyTestId: string);
|
9
9
|
/**
|
10
10
|
* The datepicker's currently selected date.
|
@@ -23,5 +23,4 @@ export declare class SkyDatepickerFixture {
|
|
23
23
|
*/
|
24
24
|
clickDatepickerCalenderButtonEl(): void;
|
25
25
|
clickDayEl(dayIndex: number): void;
|
26
|
-
private getDatepickerInputEl;
|
27
26
|
}
|
@@ -4,9 +4,7 @@ import { ComponentFixture } from '@angular/core/testing';
|
|
4
4
|
* @internal
|
5
5
|
*/
|
6
6
|
export declare class SkyTimepickerFixture {
|
7
|
-
private
|
8
|
-
private skyTestId;
|
9
|
-
private debugEl;
|
7
|
+
#private;
|
10
8
|
constructor(fixture: ComponentFixture<any>, skyTestId: string);
|
11
9
|
/**
|
12
10
|
* The timepicker's currently selected time.
|
@@ -28,5 +26,4 @@ export declare class SkyTimepickerFixture {
|
|
28
26
|
* Flag indicating if timepicker input is valid.
|
29
27
|
*/
|
30
28
|
get isValid(): boolean;
|
31
|
-
private getTimepickerInputEl;
|
32
29
|
}
|