@wemake4u/form-player-se 1.0.10 → 1.0.11
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/esm2022/lib/dynamic-fields/dynamic-fields.component.mjs +3 -3
- package/esm2022/lib/dynamic-form/dynamic-form.component.mjs +7 -4
- package/esm2022/lib/locale/locale-it.mjs +4 -1
- package/fesm2022/wemake4u-form-player-se.mjs +11 -5
- package/fesm2022/wemake4u-form-player-se.mjs.map +1 -1
- package/lib/dynamic-fields/dynamic-fields.component.d.ts +3 -0
- package/lib/dynamic-form/dynamic-form.component.d.ts +5 -1
- package/lib/locale/locale-it.d.ts +3 -0
- package/lib/utils/gridCells.d.ts +6 -0
- package/lib/utils/setFilter.d.ts +3 -0
- package/package.json +1 -1
|
@@ -53,6 +53,9 @@ export declare class DynamicFieldsComponent implements OnInit, AfterViewInit, ID
|
|
|
53
53
|
False: string;
|
|
54
54
|
Blank: string;
|
|
55
55
|
NotBlank: string;
|
|
56
|
+
Information: string;
|
|
57
|
+
OpenMenu: string;
|
|
58
|
+
CloseMenu: string;
|
|
56
59
|
};
|
|
57
60
|
constructor(sanitizer: SanitizeService, markdown: MarkdownService, mime: MimeService, programmability: ProgrammabilityService, events: EventService, weak: WeakService, register: RegisterService, metadata: MetadataService, grid: GridService, el: ElementRef);
|
|
58
61
|
ngOnInit(): void;
|
|
@@ -19,6 +19,7 @@ export declare class DynamicFormComponent implements OnChanges, OnDestroy {
|
|
|
19
19
|
showNav: boolean;
|
|
20
20
|
showNavButton: boolean;
|
|
21
21
|
showProgress: boolean;
|
|
22
|
+
showFormTitle: boolean;
|
|
22
23
|
progressStatus: boolean;
|
|
23
24
|
valueChange: EventEmitter<any>;
|
|
24
25
|
initialized: EventEmitter<FormGroup<any>>;
|
|
@@ -49,6 +50,9 @@ export declare class DynamicFormComponent implements OnChanges, OnDestroy {
|
|
|
49
50
|
False: string;
|
|
50
51
|
Blank: string;
|
|
51
52
|
NotBlank: string;
|
|
53
|
+
Information: string;
|
|
54
|
+
OpenMenu: string;
|
|
55
|
+
CloseMenu: string;
|
|
52
56
|
};
|
|
53
57
|
ngOnDestroy(): void;
|
|
54
58
|
private internalChange;
|
|
@@ -96,5 +100,5 @@ export declare class DynamicFormComponent implements OnChanges, OnDestroy {
|
|
|
96
100
|
private splitPath;
|
|
97
101
|
private hasValue;
|
|
98
102
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormComponent, never>;
|
|
99
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFormComponent, "app-dynamic-form", never, { "schema": { "alias": "schema"; "required": false; }; "formGroup": { "alias": "formGroup"; "required": false; }; "value": { "alias": "value"; "required": false; }; "showNav": { "alias": "showNav"; "required": false; }; "showNavButton": { "alias": "showNavButton"; "required": false; }; "showProgress": { "alias": "showProgress"; "required": false; }; "progressStatus": { "alias": "progressStatus"; "required": false; }; "activeNav": { "alias": "activeNav"; "required": false; }; }, { "valueChange": "valueChange"; "initialized": "initialized"; "onCommand": "onCommand"; "activeNavChange": "activeNavChange"; }, never, never, true, never>;
|
|
103
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFormComponent, "app-dynamic-form", never, { "schema": { "alias": "schema"; "required": false; }; "formGroup": { "alias": "formGroup"; "required": false; }; "value": { "alias": "value"; "required": false; }; "showNav": { "alias": "showNav"; "required": false; }; "showNavButton": { "alias": "showNavButton"; "required": false; }; "showProgress": { "alias": "showProgress"; "required": false; }; "showFormTitle": { "alias": "showFormTitle"; "required": false; }; "progressStatus": { "alias": "progressStatus"; "required": false; }; "activeNav": { "alias": "activeNav"; "required": false; }; }, { "valueChange": "valueChange"; "initialized": "initialized"; "onCommand": "onCommand"; "activeNavChange": "activeNavChange"; }, never, never, true, never>;
|
|
100
104
|
}
|
package/lib/utils/gridCells.d.ts
CHANGED
|
@@ -28,6 +28,9 @@ export declare class ObjectURLRendererComponent implements ICellRendererAngularC
|
|
|
28
28
|
False: string;
|
|
29
29
|
Blank: string;
|
|
30
30
|
NotBlank: string;
|
|
31
|
+
Information: string;
|
|
32
|
+
OpenMenu: string;
|
|
33
|
+
CloseMenu: string;
|
|
31
34
|
};
|
|
32
35
|
agInit(params: ICellRendererParams): void;
|
|
33
36
|
onClick(event: Event): void;
|
|
@@ -61,6 +64,9 @@ export declare class DeleteRowCellRenderer implements ICellRendererAngularComp {
|
|
|
61
64
|
False: string;
|
|
62
65
|
Blank: string;
|
|
63
66
|
NotBlank: string;
|
|
67
|
+
Information: string;
|
|
68
|
+
OpenMenu: string;
|
|
69
|
+
CloseMenu: string;
|
|
64
70
|
};
|
|
65
71
|
agInit(params: any): void;
|
|
66
72
|
onClick(event: Event): void;
|
package/lib/utils/setFilter.d.ts
CHANGED