@wemake4u/form-player-se 1.0.6 → 1.0.7
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/directives/accordionpanel.directive.mjs +27 -0
- package/esm2022/lib/directives/repeat.directive.mjs +3 -11
- package/esm2022/lib/dynamic-fields/dynamic-fields.component.mjs +5 -4
- package/esm2022/lib/dynamic-form/dynamic-form.component.mjs +38 -11
- package/fesm2022/wemake4u-form-player-se.mjs +65 -22
- package/fesm2022/wemake4u-form-player-se.mjs.map +1 -1
- package/lib/directives/accordionpanel.directive.d.ts +7 -0
- package/lib/directives/repeat.directive.d.ts +0 -1
- package/lib/dynamic-form/dynamic-form.component.d.ts +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SirioAccordionPanelComponent } from 'ngx-sirio-lib';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AccordionPanelDirective {
|
|
4
|
+
constructor(panel: SirioAccordionPanelComponent);
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AccordionPanelDirective, [{ host: true; }]>;
|
|
6
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AccordionPanelDirective, "[accordionPanel]", never, {}, {}, never, never, true, never>;
|
|
7
|
+
}
|
|
@@ -6,7 +6,6 @@ export declare class RepeatDirective implements OnChanges {
|
|
|
6
6
|
repeat: any;
|
|
7
7
|
constructor(controlContainer: ControlContainer);
|
|
8
8
|
ngOnChanges(changes: SimpleChanges): void;
|
|
9
|
-
private resizeArray;
|
|
10
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<RepeatDirective, never>;
|
|
11
10
|
static ɵdir: i0.ɵɵDirectiveDeclaration<RepeatDirective, "[repeat]", never, { "repeat": { "alias": "repeat"; "required": false; }; }, {}, never, never, true, never>;
|
|
12
11
|
}
|
|
@@ -74,6 +74,8 @@ export declare class DynamicFormComponent implements OnChanges, OnDestroy {
|
|
|
74
74
|
private clearHandlers;
|
|
75
75
|
private buildForm;
|
|
76
76
|
private addControls;
|
|
77
|
+
private createFormArray;
|
|
78
|
+
private resizeFormArray;
|
|
77
79
|
private applyPath;
|
|
78
80
|
private getValidators;
|
|
79
81
|
private validateFn;
|