@netgrif/components 6.3.1 → 6.3.2
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/data-fields/date-field/date-field.component.mjs +21 -13
- package/esm2020/lib/data-fields/date-time-field/date-time-field.component.mjs +21 -13
- package/esm2020/lib/data-fields/user-field/user-field.component.mjs +3 -3
- package/fesm2015/netgrif-components.mjs +267 -255
- package/fesm2015/netgrif-components.mjs.map +1 -1
- package/fesm2020/netgrif-components.mjs +267 -255
- package/fesm2020/netgrif-components.mjs.map +1 -1
- package/lib/data-fields/date-field/date-field.component.d.ts +7 -3
- package/lib/data-fields/date-time-field/date-time-field.component.d.ts +7 -3
- package/package.json +2 -2
|
@@ -1,8 +1,12 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { DateAdapter } from '@angular/material/core';
|
|
2
|
+
import { AbstractDateFieldComponent, LanguageService } from '@netgrif/components-core';
|
|
2
3
|
import { TranslateService } from '@ngx-translate/core';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class DateFieldComponent extends AbstractDateFieldComponent {
|
|
5
|
-
|
|
6
|
-
|
|
6
|
+
protected _adapter: DateAdapter<any>;
|
|
7
|
+
protected _locale: string;
|
|
8
|
+
protected _languageService: LanguageService;
|
|
9
|
+
constructor(translate: TranslateService, _adapter: DateAdapter<any>, _locale: string, _languageService: LanguageService, informAboutInvalidData: boolean | null);
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DateFieldComponent, [null, null, null, null, { optional: true; }]>;
|
|
7
11
|
static ɵcmp: i0.ɵɵComponentDeclaration<DateFieldComponent, "nc-date-field", never, {}, {}, never, never>;
|
|
8
12
|
}
|
|
@@ -1,8 +1,12 @@
|
|
|
1
|
+
import { NgxMatDateAdapter } from '@angular-material-components/datetime-picker';
|
|
1
2
|
import { TranslateService } from '@ngx-translate/core';
|
|
2
|
-
import { AbstractDateTimeFieldComponent } from '@netgrif/components-core';
|
|
3
|
+
import { AbstractDateTimeFieldComponent, LanguageService } from '@netgrif/components-core';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class DateTimeFieldComponent extends AbstractDateTimeFieldComponent {
|
|
5
|
-
|
|
6
|
-
|
|
6
|
+
protected _adapter: NgxMatDateAdapter<any>;
|
|
7
|
+
protected _locale: string;
|
|
8
|
+
protected _languageService: LanguageService;
|
|
9
|
+
constructor(translate: TranslateService, _adapter: NgxMatDateAdapter<any>, _locale: string, _languageService: LanguageService, informAboutInvalidData: boolean | null);
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DateTimeFieldComponent, [null, null, null, null, { optional: true; }]>;
|
|
7
11
|
static ɵcmp: i0.ɵɵComponentDeclaration<DateTimeFieldComponent, "nc-date-time-field", never, {}, {}, never, never>;
|
|
8
12
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@netgrif/components",
|
|
3
|
-
"version": "6.3.
|
|
3
|
+
"version": "6.3.2",
|
|
4
4
|
"description": "Netgrif Application Engine frontend Angular components",
|
|
5
5
|
"homepage": "https://components.netgrif.com",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"nae frontend"
|
|
30
30
|
],
|
|
31
31
|
"peerDependencies": {
|
|
32
|
-
"@netgrif/components-core": "6.3.
|
|
32
|
+
"@netgrif/components-core": "6.3.2",
|
|
33
33
|
"@angular-material-components/datetime-picker": "~7.0.1",
|
|
34
34
|
"@angular-material-components/moment-adapter": "~7.0.0",
|
|
35
35
|
"@angular/animations": "~13.3.1",
|