@sumaris-net/ngx-components 1.15.0 → 1.15.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/bundles/sumaris-net.ngx-components.umd.js +34 -15
- package/bundles/sumaris-net.ngx-components.umd.js.map +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js +2 -2
- package/bundles/sumaris-net.ngx-components.umd.min.js.map +1 -1
- package/doc/changelog.md +3 -0
- package/esm2015/src/app/shared/material/datetime/material.date.js +22 -10
- package/esm2015/src/app/shared/material/datetime/testing/mat-date.test.js +12 -5
- package/fesm2015/sumaris-net.ngx-components.js +32 -13
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
- package/src/app/shared/material/datetime/material.date.d.ts +1 -0
- package/src/app/shared/material/datetime/testing/mat-date.test.d.ts +1 -0
- package/sumaris-net.ngx-components.metadata.json +1 -1
package/package.json
CHANGED
|
@@ -40,6 +40,7 @@ export declare class MatDate implements OnInit, OnDestroy, ControlValueAccessor,
|
|
|
40
40
|
autofocus: boolean;
|
|
41
41
|
startDate: Moment | null;
|
|
42
42
|
clearable: boolean;
|
|
43
|
+
timezone: string;
|
|
43
44
|
set readonly(value: boolean);
|
|
44
45
|
get readonly(): boolean;
|
|
45
46
|
set tabindex(value: number);
|
|
@@ -12,6 +12,7 @@ export declare class DateTestPage implements OnInit {
|
|
|
12
12
|
memoryHide: boolean;
|
|
13
13
|
memoryMobile: boolean;
|
|
14
14
|
memoryTimer: Timer;
|
|
15
|
+
timezone: string;
|
|
15
16
|
form: FormGroup;
|
|
16
17
|
constructor(platform: Platform, formBuilder: FormBuilder, cd: ChangeDetectorRef);
|
|
17
18
|
ngOnInit(): void;
|