special-forms 1.0.1 → 1.1.0
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/.angular/cache/14.1.3/ng-packagr/content-v2/sha512/0f/5d/4e8fdfaa026b76a388545f18eec614210a0a9c380eaf0fdb454c56f605e2c6b46c66b88bef9113f9bc4521f472860463984614606b2be866123d0a825052 +1 -0
- package/.angular/cache/14.1.3/ng-packagr/content-v2/sha512/16/c3/534096c42a7bf78b4784f7588bb786086a1caf43aa10a3541b04a69a8ccf2b95af0e5febfc479a651ca4a84ac78e7b08f7f2e8e8bf0d616916cada66d305 +1 -0
- package/.angular/cache/14.1.3/ng-packagr/content-v2/sha512/29/bb/f15d4e8b0d33c1de4969216f0d8aee8b072848755e140b83746be03e9f941cda84a5e6c74c128aec4fb62b4c6c49bb0f911a99d40390bf73a3205d3dd17e +1 -0
- package/.angular/cache/14.1.3/ng-packagr/index-v5/09/8e/12e12ff81fc74249e744c65a0517fa1b481adc8330fff9f7cd8751aec608 +2 -1
- package/.angular/cache/14.1.3/ng-packagr/index-v5/74/b6/fa395f5b34ba0ef88964a666024b6c1bc05161fcfe410f167d6242757e90 +2 -1
- package/.angular/cache/14.1.3/ng-packagr/index-v5/9f/df/506a82e08d516c58b731cbaac17b2c19ca1a96f7e01510b011dd2bbbd161 +2 -1
- package/dist/special-forms/esm2020/lib/components/index.mjs +3 -4
- package/dist/special-forms/esm2020/lib/components/special-form/special-form.component.mjs +46 -28
- package/dist/special-forms/esm2020/lib/components/special-form/special-form.module.mjs +20 -15
- package/dist/special-forms/esm2020/public-api.mjs +1 -2
- package/dist/special-forms/fesm2015/special-forms.mjs +118 -161
- package/dist/special-forms/fesm2015/special-forms.mjs.map +1 -1
- package/dist/special-forms/fesm2020/special-forms.mjs +118 -161
- package/dist/special-forms/fesm2020/special-forms.mjs.map +1 -1
- package/dist/special-forms/lib/components/index.d.ts +2 -3
- package/dist/special-forms/lib/components/special-form/special-form.component.d.ts +10 -49
- package/dist/special-forms/lib/components/special-form/special-form.module.d.ts +12 -14
- package/dist/special-forms/public-api.d.ts +0 -1
- package/package.json +1 -1
- package/special-forms-1.1.0.tgz +0 -0
- package/dist/special-forms/esm2020/lib/components/special-form/special-form-array.module.mjs +0 -32
- package/dist/special-forms/esm2020/lib/core/directives/control-render.directive.mjs +0 -31
- package/dist/special-forms/esm2020/lib/core/directives/control-render.module.mjs +0 -18
- package/dist/special-forms/lib/components/special-form/special-form-array.module.d.ts +0 -11
- package/dist/special-forms/lib/core/directives/control-render.directive.d.ts +0 -13
- package/dist/special-forms/lib/core/directives/control-render.module.d.ts +0 -8
- package/special-forms-1.0.0.tgz +0 -0
- package/special-forms-1.0.1.tgz +0 -0
|
@@ -671,79 +671,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.3", ngImpor
|
|
|
671
671
|
}]
|
|
672
672
|
}] });
|
|
673
673
|
|
|
674
|
-
class FormControlsListPipe {
|
|
675
|
-
transform(controls) {
|
|
676
|
-
if (!controls)
|
|
677
|
-
return [];
|
|
678
|
-
return Object.values(controls)
|
|
679
|
-
.filter((control) => !control.hidden)
|
|
680
|
-
.map((control) => control);
|
|
681
|
-
}
|
|
682
|
-
}
|
|
683
|
-
FormControlsListPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: FormControlsListPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
684
|
-
FormControlsListPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.1.3", ngImport: i0, type: FormControlsListPipe, name: "controlsList" });
|
|
685
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: FormControlsListPipe, decorators: [{
|
|
686
|
-
type: Pipe,
|
|
687
|
-
args: [{ name: 'controlsList' }]
|
|
688
|
-
}] });
|
|
689
|
-
|
|
690
|
-
class FormControlsListPipeModule {
|
|
691
|
-
}
|
|
692
|
-
FormControlsListPipeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: FormControlsListPipeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
693
|
-
FormControlsListPipeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.1.3", ngImport: i0, type: FormControlsListPipeModule, declarations: [FormControlsListPipe], imports: [CommonModule], exports: [FormControlsListPipe] });
|
|
694
|
-
FormControlsListPipeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: FormControlsListPipeModule, imports: [CommonModule] });
|
|
695
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: FormControlsListPipeModule, decorators: [{
|
|
696
|
-
type: NgModule,
|
|
697
|
-
args: [{
|
|
698
|
-
declarations: [FormControlsListPipe],
|
|
699
|
-
imports: [CommonModule],
|
|
700
|
-
exports: [FormControlsListPipe],
|
|
701
|
-
}]
|
|
702
|
-
}] });
|
|
703
|
-
|
|
704
|
-
class FormControlsRenderDirective {
|
|
705
|
-
constructor(viewContainer) {
|
|
706
|
-
this.viewContainer = viewContainer;
|
|
707
|
-
this.componentsBuffer = {};
|
|
708
|
-
}
|
|
709
|
-
set controlSetter(control) {
|
|
710
|
-
this.viewContainer.clear();
|
|
711
|
-
const component = this.componentsBuffer[control.type];
|
|
712
|
-
if (component) {
|
|
713
|
-
const componentRef = this.viewContainer.createComponent(component);
|
|
714
|
-
componentRef.instance.control = control;
|
|
715
|
-
}
|
|
716
|
-
}
|
|
717
|
-
}
|
|
718
|
-
FormControlsRenderDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: FormControlsRenderDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
719
|
-
FormControlsRenderDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.3", type: FormControlsRenderDirective, selector: "[controlRender]", inputs: { componentsBuffer: ["components", "componentsBuffer"], controlSetter: ["control", "controlSetter"] }, ngImport: i0 });
|
|
720
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: FormControlsRenderDirective, decorators: [{
|
|
721
|
-
type: Directive,
|
|
722
|
-
args: [{
|
|
723
|
-
selector: `[controlRender]`,
|
|
724
|
-
}]
|
|
725
|
-
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { componentsBuffer: [{
|
|
726
|
-
type: Input,
|
|
727
|
-
args: ['components']
|
|
728
|
-
}], controlSetter: [{
|
|
729
|
-
type: Input,
|
|
730
|
-
args: ['control']
|
|
731
|
-
}] } });
|
|
732
|
-
|
|
733
|
-
class ControlsRenderDirectiveModule {
|
|
734
|
-
}
|
|
735
|
-
ControlsRenderDirectiveModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: ControlsRenderDirectiveModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
736
|
-
ControlsRenderDirectiveModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.1.3", ngImport: i0, type: ControlsRenderDirectiveModule, declarations: [FormControlsRenderDirective], imports: [CommonModule], exports: [FormControlsRenderDirective] });
|
|
737
|
-
ControlsRenderDirectiveModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: ControlsRenderDirectiveModule, imports: [CommonModule] });
|
|
738
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: ControlsRenderDirectiveModule, decorators: [{
|
|
739
|
-
type: NgModule,
|
|
740
|
-
args: [{
|
|
741
|
-
declarations: [FormControlsRenderDirective],
|
|
742
|
-
imports: [CommonModule],
|
|
743
|
-
exports: [FormControlsRenderDirective],
|
|
744
|
-
}]
|
|
745
|
-
}] });
|
|
746
|
-
|
|
747
674
|
class SpecialLabelComponent {
|
|
748
675
|
constructor() { }
|
|
749
676
|
ngOnInit() { }
|
|
@@ -765,28 +692,76 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.3", ngImpor
|
|
|
765
692
|
type: Input
|
|
766
693
|
}] } });
|
|
767
694
|
|
|
768
|
-
class
|
|
769
|
-
|
|
770
|
-
|
|
695
|
+
class SpecialLabelModule {
|
|
696
|
+
}
|
|
697
|
+
SpecialLabelModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: SpecialLabelModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
698
|
+
SpecialLabelModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.1.3", ngImport: i0, type: SpecialLabelModule, declarations: [SpecialLabelComponent], imports: [InputMaskModule,
|
|
699
|
+
CommonModule,
|
|
700
|
+
MatInputModule,
|
|
701
|
+
MatIconModule,
|
|
702
|
+
ReactiveFormsModule,
|
|
703
|
+
MatButtonModule,
|
|
704
|
+
TextByFunctionPipeModule,
|
|
705
|
+
ErrorMessagePipeModule], exports: [SpecialLabelComponent] });
|
|
706
|
+
SpecialLabelModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: SpecialLabelModule, imports: [InputMaskModule,
|
|
707
|
+
CommonModule,
|
|
708
|
+
MatInputModule,
|
|
709
|
+
MatIconModule,
|
|
710
|
+
ReactiveFormsModule,
|
|
711
|
+
MatButtonModule,
|
|
712
|
+
TextByFunctionPipeModule,
|
|
713
|
+
ErrorMessagePipeModule] });
|
|
714
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: SpecialLabelModule, decorators: [{
|
|
715
|
+
type: NgModule,
|
|
716
|
+
args: [{
|
|
717
|
+
declarations: [SpecialLabelComponent],
|
|
718
|
+
imports: [
|
|
719
|
+
InputMaskModule,
|
|
720
|
+
CommonModule,
|
|
721
|
+
MatInputModule,
|
|
722
|
+
MatIconModule,
|
|
723
|
+
ReactiveFormsModule,
|
|
724
|
+
MatButtonModule,
|
|
725
|
+
TextByFunctionPipeModule,
|
|
726
|
+
ErrorMessagePipeModule
|
|
727
|
+
],
|
|
728
|
+
exports: [SpecialLabelComponent],
|
|
729
|
+
}]
|
|
730
|
+
}] });
|
|
731
|
+
|
|
732
|
+
class FormControlsListPipe {
|
|
733
|
+
transform(controls) {
|
|
734
|
+
if (!controls)
|
|
735
|
+
return [];
|
|
736
|
+
return Object.values(controls)
|
|
737
|
+
.filter((control) => !control.hidden)
|
|
738
|
+
.map((control) => control);
|
|
771
739
|
}
|
|
740
|
+
}
|
|
741
|
+
FormControlsListPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: FormControlsListPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
742
|
+
FormControlsListPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.1.3", ngImport: i0, type: FormControlsListPipe, name: "controlsList" });
|
|
743
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: FormControlsListPipe, decorators: [{
|
|
744
|
+
type: Pipe,
|
|
745
|
+
args: [{ name: 'controlsList' }]
|
|
746
|
+
}] });
|
|
747
|
+
|
|
748
|
+
class SpecialFormComponent {
|
|
772
749
|
set control(form) {
|
|
773
750
|
this.form = form;
|
|
774
751
|
}
|
|
775
752
|
ngOnInit() { }
|
|
776
753
|
}
|
|
777
754
|
SpecialFormComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: SpecialFormComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
778
|
-
SpecialFormComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.3", type: SpecialFormComponent, selector: "sp-form", inputs: { form: ["control", "form"] }, ngImport: i0, template: "<div class=\"w-full box-border p-2\">\n <div\n *ngIf=\"form\"\n [class]=\"\n form.label\n ? 'w-full mt-2 p-3 border-slate-200 border border-solid box-border'\n : 'container'\n \"\n >\n <h1 *ngIf=\"!!form.label\" class=\"font-bold py-3\">{{ form.label }}</h1>\n <div class=\"w-full flex flex-wrap\">\n <ng-template\n *ngFor=\"let control of form.controls | controlsList\"\n controlRender\n [control]=\"control\"\n
|
|
755
|
+
SpecialFormComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.3", type: SpecialFormComponent, selector: "sp-form", inputs: { form: ["control", "form"] }, ngImport: i0, template: "<div class=\"w-full box-border p-2\">\n <div\n *ngIf=\"form\"\n [class]=\"\n form.label\n ? 'w-full mt-2 p-3 border-slate-200 border border-solid box-border'\n : 'container'\n \"\n >\n <h1 *ngIf=\"!!form.label\" class=\"font-bold py-3\">{{ form.label }}</h1>\n <div class=\"w-full flex flex-wrap\">\n <ng-template\n *ngFor=\"let control of form.controls | controlsList\"\n controlRender\n [control]=\"control\"\n ></ng-template>\n </div>\n </div>\n</div>\n", styles: [":host{display:contents}\n"], dependencies: [{ kind: "directive", type: i0.forwardRef(function () { return i3.NgForOf; }), selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i0.forwardRef(function () { return i3.NgIf; }), selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i0.forwardRef(function () { return FormControlsRenderDirective; }), selector: "[controlRender]", inputs: ["control"] }, { kind: "pipe", type: i0.forwardRef(function () { return FormControlsListPipe; }), name: "controlsList" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
779
756
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: SpecialFormComponent, decorators: [{
|
|
780
757
|
type: Component,
|
|
781
|
-
args: [{ selector: 'sp-form', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"w-full box-border p-2\">\n <div\n *ngIf=\"form\"\n [class]=\"\n form.label\n ? 'w-full mt-2 p-3 border-slate-200 border border-solid box-border'\n : 'container'\n \"\n >\n <h1 *ngIf=\"!!form.label\" class=\"font-bold py-3\">{{ form.label }}</h1>\n <div class=\"w-full flex flex-wrap\">\n <ng-template\n *ngFor=\"let control of form.controls | controlsList\"\n controlRender\n [control]=\"control\"\n
|
|
758
|
+
args: [{ selector: 'sp-form', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"w-full box-border p-2\">\n <div\n *ngIf=\"form\"\n [class]=\"\n form.label\n ? 'w-full mt-2 p-3 border-slate-200 border border-solid box-border'\n : 'container'\n \"\n >\n <h1 *ngIf=\"!!form.label\" class=\"font-bold py-3\">{{ form.label }}</h1>\n <div class=\"w-full flex flex-wrap\">\n <ng-template\n *ngFor=\"let control of form.controls | controlsList\"\n controlRender\n [control]=\"control\"\n ></ng-template>\n </div>\n </div>\n</div>\n", styles: [":host{display:contents}\n"] }]
|
|
782
759
|
}], propDecorators: { form: [{
|
|
783
760
|
type: Input,
|
|
784
761
|
args: ['control']
|
|
785
762
|
}] } });
|
|
786
763
|
class SpecialArrayComponent {
|
|
787
|
-
constructor() {
|
|
788
|
-
this.componentsBuffer = ComponentsBuffer;
|
|
789
|
-
}
|
|
764
|
+
constructor() { }
|
|
790
765
|
set control(formArray) {
|
|
791
766
|
this.formArray = formArray;
|
|
792
767
|
}
|
|
@@ -805,95 +780,72 @@ class SpecialArrayComponent {
|
|
|
805
780
|
}
|
|
806
781
|
}
|
|
807
782
|
SpecialArrayComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: SpecialArrayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
808
|
-
SpecialArrayComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.3", type: SpecialArrayComponent, selector: "sp-array", inputs: { formArray: ["control", "formArray"] }, ngImport: i0, template: "<div class=\"w-full box-border p-2\">\r\n <div\r\n *ngIf=\"formArray\"\r\n class=\"w-full mt-2 p-3 border-slate-200 border border-solid box-border\"\r\n >\r\n <h1 *ngIf=\"!!formArray.label\" class=\"font-bold py-3\">\r\n {{ formArray.label }}\r\n </h1>\r\n <div class=\"divide-y divide-solid\">\r\n <div\r\n *ngIf=\"formArray.form\"\r\n [ngClass]=\"{ 'md:grid-cols-15': settings.withActionButtons }\"\r\n class=\"grid gap-4 grid-cols-12\"\r\n >\r\n <ng-container *ngIf=\"!withFormHeader; else FORMHEADERREF\">\r\n <h2\r\n [class]=\"item.styleClasses\"\r\n *ngFor=\"let item of formArray.form.controls | controlsList\"\r\n >\r\n {{ item.label }}\r\n </h2>\r\n <div\r\n *ngIf=\"settings.withActionButtons\"\r\n class=\"\r\n col-start-7 col-end-13\r\n md:col-start-13 md:col-end-16\r\n pb-5\r\n my-auto\r\n ml-auto\r\n md:m-auto\r\n \"\r\n ></div>\r\n </ng-container>\r\n <ng-template #FORMHEADERREF>\r\n <ng-template\r\n *ngFor=\"let item of formArray.form.controls | controlsList\"\r\n controlRender\r\n [
|
|
783
|
+
SpecialArrayComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.1.3", type: SpecialArrayComponent, selector: "sp-array", inputs: { formArray: ["control", "formArray"] }, ngImport: i0, template: "<div class=\"w-full box-border p-2\">\r\n <div\r\n *ngIf=\"formArray\"\r\n class=\"w-full mt-2 p-3 border-slate-200 border border-solid box-border\"\r\n >\r\n <h1 *ngIf=\"!!formArray.label\" class=\"font-bold py-3\">\r\n {{ formArray.label }}\r\n </h1>\r\n <div class=\"divide-y divide-solid\">\r\n <div\r\n *ngIf=\"formArray.form\"\r\n [ngClass]=\"{ 'md:grid-cols-15': settings.withActionButtons }\"\r\n class=\"grid gap-4 grid-cols-12\"\r\n >\r\n <ng-container *ngIf=\"!withFormHeader; else FORMHEADERREF\">\r\n <h2\r\n [class]=\"item.styleClasses\"\r\n *ngFor=\"let item of formArray.form.controls | controlsList\"\r\n >\r\n {{ item.label }}\r\n </h2>\r\n <div\r\n *ngIf=\"settings.withActionButtons\"\r\n class=\"\r\n col-start-7 col-end-13\r\n md:col-start-13 md:col-end-16\r\n pb-5\r\n my-auto\r\n ml-auto\r\n md:m-auto\r\n \"\r\n ></div>\r\n </ng-container>\r\n <ng-template #FORMHEADERREF>\r\n <ng-template\r\n *ngFor=\"let item of formArray.form.controls | controlsList\"\r\n controlRender\r\n [control]=\"item\"\r\n ></ng-template>\r\n <div\r\n *ngIf=\"settings.withActionButtons\"\r\n class=\"\r\n col-start-7 col-end-13\r\n md:col-start-13 md:col-end-16\r\n pb-5\r\n my-auto\r\n ml-auto\r\n md:m-auto\r\n \"\r\n >\r\n <button\r\n mat-flat-button\r\n color=\"primary\"\r\n [disabled]=\"formArray.form.invalid\"\r\n (click)=\"addItem()\"\r\n >\r\n Add\r\n </button>\r\n </div>\r\n </ng-template>\r\n </div>\r\n <div\r\n class=\"w-full pt-5 grid gap-4 grid-cols-12 md:grid-cols-15\"\r\n *ngFor=\"let formGroup of formArray.controls; let i = index\"\r\n >\r\n <ng-template\r\n *ngFor=\"let item of formGroup.controls | controlsList\"\r\n controlRender\r\n [control]=\"item\"\r\n ></ng-template>\r\n <div\r\n class=\"\r\n col-start-7 col-end-13\r\n md:col-start-13 md:col-end-16\r\n pb-5\r\n my-auto\r\n ml-auto\r\n md:m-auto\r\n \"\r\n >\r\n <button mat-flat-button color=\"warn\" (click)=\"removeItem(i)\">\r\n Remove\r\n </button>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<!-- <table class=\"form-array-container__table\">\r\n <thead *ngIf=\"formArray.form\">\r\n <tr\r\n *ngIf=\"headerForm; else HEADERFORMREF\"\r\n class=\"form-array-container__table-header\"\r\n >\r\n <th\r\n class=\"header-cell\"\r\n *ngFor=\"let control of formArray.form | controlsList\"\r\n >\r\n {{ control.label | translate }}\r\n </th>\r\n <th *ngIf=\"!formArray.readOnly\"></th>\r\n </tr>\r\n <ng-template #HEADERFORMREF>\r\n <tr class=\"table-form-header\">\r\n <th\r\n class=\"header-cell\"\r\n [ngSwitch]=\"control.type\"\r\n *ngFor=\"let control of formArray.form | controlsList\"\r\n >\r\n <sp-form-control-selector\r\n [control]=\"control\"\r\n ></sp-form-control-selector>\r\n </th>\r\n <th class=\"header-cell\" *ngIf=\"!formArray.readOnly\">\r\n <ng-container *ngTemplateOutlet=\"ADDBUTTON\"></ng-container>\r\n </th>\r\n </tr>\r\n </ng-template>\r\n </thead> -->\r\n\r\n<!-- [ngStyle]=\"{'max-height':'calc(100vh - '+maxHeight+'px)' }\"> -->\r\n<!-- <tbody>\r\n <tr *ngFor=\"let formGroup of formArray.controls; let i = index\">\r\n <td [ngSwitch]=\"control.type\" *ngFor=\"let control of formGroup.controls | controlsList\">\r\n <sp-form-control-selector\r\n [control]=\"control\"\r\n ></sp-form-control-selector>\r\n </td>\r\n <td *ngIf=\"!formArray.readOnly\">\r\n <bmb-button\r\n [icon]=\"'delete_outline'\"\r\n [type]=\"'Raised'\"\r\n [size]=\"'XLarge'\"\r\n [bdrColor]=\"'error-500'\"\r\n [tColor]=\"'error-500'\"\r\n (onClick)=\"deleteItem(i)\"\r\n >\r\n </bmb-button>\r\n </td>\r\n </tr>\r\n </tbody> -->\r\n<!-- </table> -->\r\n\r\n<!-- <ng-template #TABLET>\r\n <div class=\"mt-1\">\r\n <ng-container *ngIf=\"headerFormEnable\">\r\n <div class=\"card-form-container\">\r\n <automatic-forms [form]=\"formArray.form\" [enableButtons]=\"false\">\r\n </automatic-forms>\r\n <ng-container *ngTemplateOutlet=\"ADDBUTTON\"></ng-container>\r\n </div>\r\n </ng-container>\r\n <ng-content select=\"[header]\"></ng-content>\r\n </div>\r\n <div class=\"accordion-container\">\r\n <mat-accordion>\r\n <mat-expansion-panel\r\n class=\"mat-elevation-z1\"\r\n *ngFor=\"let item of formArray.controls; let i = index\"\r\n >\r\n <mat-expansion-panel-header\r\n class=\"expanded-header\"\r\n collapsedHeight=\"3rem\"\r\n expandedHeight=\"3rem\"\r\n >\r\n <ng-container\r\n *ngTemplateOutlet=\"cardHeaderTemplate; context: { $implicit: item }\"\r\n >\r\n </ng-container>\r\n <mat-icon\r\n *ngIf=\"!formArray.readOnly\"\r\n class=\"mobile-delete\"\r\n (click)=\"deleteItem(i)\"\r\n color=\"warn\"\r\n >\r\n delete_outline\r\n </mat-icon>\r\n </mat-expansion-panel-header>\r\n <ng-container\r\n *ngTemplateOutlet=\"cardBodyTemplate; context: { $implicit: item }\"\r\n >\r\n </ng-container>\r\n </mat-expansion-panel>\r\n </mat-accordion>\r\n </div>\r\n</ng-template>\r\n\r\n<div class=\"text-error\" *ngIf=\"formArray.dirty && formArray.invalid\">\r\n {{ formArray.errors | errorMessage | translate }}\r\n</div>\r\n\r\n<ng-template #ADDBUTTON>\r\n <div class=\"add-item-btn\">\r\n <bmb-button\r\n [icon]=\"'add'\"\r\n [type]=\"'Raised'\"\r\n [bdrColor]=\"'aux-success'\"\r\n [size]=\"'XLarge'\"\r\n [tColor]=\"'aux-success'\"\r\n [disabled]=\"!formArray.form.valid || !formArray.form.dirty\"\r\n (onClick)=\"addItemAction()\"\r\n >\r\n </bmb-button>\r\n </div>\r\n</ng-template> -->\r\n", styles: [":host{display:contents}\n"], dependencies: [{ kind: "directive", type: i0.forwardRef(function () { return i3.NgClass; }), selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i0.forwardRef(function () { return i3.NgForOf; }), selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i0.forwardRef(function () { return i3.NgIf; }), selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i0.forwardRef(function () { return i7$1.MatButton; }), selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "directive", type: i0.forwardRef(function () { return FormControlsRenderDirective; }), selector: "[controlRender]", inputs: ["control"] }, { kind: "pipe", type: i0.forwardRef(function () { return FormControlsListPipe; }), name: "controlsList" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
809
784
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: SpecialArrayComponent, decorators: [{
|
|
810
785
|
type: Component,
|
|
811
|
-
args: [{ selector: 'sp-array', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"w-full box-border p-2\">\r\n <div\r\n *ngIf=\"formArray\"\r\n class=\"w-full mt-2 p-3 border-slate-200 border border-solid box-border\"\r\n >\r\n <h1 *ngIf=\"!!formArray.label\" class=\"font-bold py-3\">\r\n {{ formArray.label }}\r\n </h1>\r\n <div class=\"divide-y divide-solid\">\r\n <div\r\n *ngIf=\"formArray.form\"\r\n [ngClass]=\"{ 'md:grid-cols-15': settings.withActionButtons }\"\r\n class=\"grid gap-4 grid-cols-12\"\r\n >\r\n <ng-container *ngIf=\"!withFormHeader; else FORMHEADERREF\">\r\n <h2\r\n [class]=\"item.styleClasses\"\r\n *ngFor=\"let item of formArray.form.controls | controlsList\"\r\n >\r\n {{ item.label }}\r\n </h2>\r\n <div\r\n *ngIf=\"settings.withActionButtons\"\r\n class=\"\r\n col-start-7 col-end-13\r\n md:col-start-13 md:col-end-16\r\n pb-5\r\n my-auto\r\n ml-auto\r\n md:m-auto\r\n \"\r\n ></div>\r\n </ng-container>\r\n <ng-template #FORMHEADERREF>\r\n <ng-template\r\n *ngFor=\"let item of formArray.form.controls | controlsList\"\r\n controlRender\r\n [
|
|
786
|
+
args: [{ selector: 'sp-array', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"w-full box-border p-2\">\r\n <div\r\n *ngIf=\"formArray\"\r\n class=\"w-full mt-2 p-3 border-slate-200 border border-solid box-border\"\r\n >\r\n <h1 *ngIf=\"!!formArray.label\" class=\"font-bold py-3\">\r\n {{ formArray.label }}\r\n </h1>\r\n <div class=\"divide-y divide-solid\">\r\n <div\r\n *ngIf=\"formArray.form\"\r\n [ngClass]=\"{ 'md:grid-cols-15': settings.withActionButtons }\"\r\n class=\"grid gap-4 grid-cols-12\"\r\n >\r\n <ng-container *ngIf=\"!withFormHeader; else FORMHEADERREF\">\r\n <h2\r\n [class]=\"item.styleClasses\"\r\n *ngFor=\"let item of formArray.form.controls | controlsList\"\r\n >\r\n {{ item.label }}\r\n </h2>\r\n <div\r\n *ngIf=\"settings.withActionButtons\"\r\n class=\"\r\n col-start-7 col-end-13\r\n md:col-start-13 md:col-end-16\r\n pb-5\r\n my-auto\r\n ml-auto\r\n md:m-auto\r\n \"\r\n ></div>\r\n </ng-container>\r\n <ng-template #FORMHEADERREF>\r\n <ng-template\r\n *ngFor=\"let item of formArray.form.controls | controlsList\"\r\n controlRender\r\n [control]=\"item\"\r\n ></ng-template>\r\n <div\r\n *ngIf=\"settings.withActionButtons\"\r\n class=\"\r\n col-start-7 col-end-13\r\n md:col-start-13 md:col-end-16\r\n pb-5\r\n my-auto\r\n ml-auto\r\n md:m-auto\r\n \"\r\n >\r\n <button\r\n mat-flat-button\r\n color=\"primary\"\r\n [disabled]=\"formArray.form.invalid\"\r\n (click)=\"addItem()\"\r\n >\r\n Add\r\n </button>\r\n </div>\r\n </ng-template>\r\n </div>\r\n <div\r\n class=\"w-full pt-5 grid gap-4 grid-cols-12 md:grid-cols-15\"\r\n *ngFor=\"let formGroup of formArray.controls; let i = index\"\r\n >\r\n <ng-template\r\n *ngFor=\"let item of formGroup.controls | controlsList\"\r\n controlRender\r\n [control]=\"item\"\r\n ></ng-template>\r\n <div\r\n class=\"\r\n col-start-7 col-end-13\r\n md:col-start-13 md:col-end-16\r\n pb-5\r\n my-auto\r\n ml-auto\r\n md:m-auto\r\n \"\r\n >\r\n <button mat-flat-button color=\"warn\" (click)=\"removeItem(i)\">\r\n Remove\r\n </button>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<!-- <table class=\"form-array-container__table\">\r\n <thead *ngIf=\"formArray.form\">\r\n <tr\r\n *ngIf=\"headerForm; else HEADERFORMREF\"\r\n class=\"form-array-container__table-header\"\r\n >\r\n <th\r\n class=\"header-cell\"\r\n *ngFor=\"let control of formArray.form | controlsList\"\r\n >\r\n {{ control.label | translate }}\r\n </th>\r\n <th *ngIf=\"!formArray.readOnly\"></th>\r\n </tr>\r\n <ng-template #HEADERFORMREF>\r\n <tr class=\"table-form-header\">\r\n <th\r\n class=\"header-cell\"\r\n [ngSwitch]=\"control.type\"\r\n *ngFor=\"let control of formArray.form | controlsList\"\r\n >\r\n <sp-form-control-selector\r\n [control]=\"control\"\r\n ></sp-form-control-selector>\r\n </th>\r\n <th class=\"header-cell\" *ngIf=\"!formArray.readOnly\">\r\n <ng-container *ngTemplateOutlet=\"ADDBUTTON\"></ng-container>\r\n </th>\r\n </tr>\r\n </ng-template>\r\n </thead> -->\r\n\r\n<!-- [ngStyle]=\"{'max-height':'calc(100vh - '+maxHeight+'px)' }\"> -->\r\n<!-- <tbody>\r\n <tr *ngFor=\"let formGroup of formArray.controls; let i = index\">\r\n <td [ngSwitch]=\"control.type\" *ngFor=\"let control of formGroup.controls | controlsList\">\r\n <sp-form-control-selector\r\n [control]=\"control\"\r\n ></sp-form-control-selector>\r\n </td>\r\n <td *ngIf=\"!formArray.readOnly\">\r\n <bmb-button\r\n [icon]=\"'delete_outline'\"\r\n [type]=\"'Raised'\"\r\n [size]=\"'XLarge'\"\r\n [bdrColor]=\"'error-500'\"\r\n [tColor]=\"'error-500'\"\r\n (onClick)=\"deleteItem(i)\"\r\n >\r\n </bmb-button>\r\n </td>\r\n </tr>\r\n </tbody> -->\r\n<!-- </table> -->\r\n\r\n<!-- <ng-template #TABLET>\r\n <div class=\"mt-1\">\r\n <ng-container *ngIf=\"headerFormEnable\">\r\n <div class=\"card-form-container\">\r\n <automatic-forms [form]=\"formArray.form\" [enableButtons]=\"false\">\r\n </automatic-forms>\r\n <ng-container *ngTemplateOutlet=\"ADDBUTTON\"></ng-container>\r\n </div>\r\n </ng-container>\r\n <ng-content select=\"[header]\"></ng-content>\r\n </div>\r\n <div class=\"accordion-container\">\r\n <mat-accordion>\r\n <mat-expansion-panel\r\n class=\"mat-elevation-z1\"\r\n *ngFor=\"let item of formArray.controls; let i = index\"\r\n >\r\n <mat-expansion-panel-header\r\n class=\"expanded-header\"\r\n collapsedHeight=\"3rem\"\r\n expandedHeight=\"3rem\"\r\n >\r\n <ng-container\r\n *ngTemplateOutlet=\"cardHeaderTemplate; context: { $implicit: item }\"\r\n >\r\n </ng-container>\r\n <mat-icon\r\n *ngIf=\"!formArray.readOnly\"\r\n class=\"mobile-delete\"\r\n (click)=\"deleteItem(i)\"\r\n color=\"warn\"\r\n >\r\n delete_outline\r\n </mat-icon>\r\n </mat-expansion-panel-header>\r\n <ng-container\r\n *ngTemplateOutlet=\"cardBodyTemplate; context: { $implicit: item }\"\r\n >\r\n </ng-container>\r\n </mat-expansion-panel>\r\n </mat-accordion>\r\n </div>\r\n</ng-template>\r\n\r\n<div class=\"text-error\" *ngIf=\"formArray.dirty && formArray.invalid\">\r\n {{ formArray.errors | errorMessage | translate }}\r\n</div>\r\n\r\n<ng-template #ADDBUTTON>\r\n <div class=\"add-item-btn\">\r\n <bmb-button\r\n [icon]=\"'add'\"\r\n [type]=\"'Raised'\"\r\n [bdrColor]=\"'aux-success'\"\r\n [size]=\"'XLarge'\"\r\n [tColor]=\"'aux-success'\"\r\n [disabled]=\"!formArray.form.valid || !formArray.form.dirty\"\r\n (onClick)=\"addItemAction()\"\r\n >\r\n </bmb-button>\r\n </div>\r\n</ng-template> -->\r\n", styles: [":host{display:contents}\n"] }]
|
|
812
787
|
}], ctorParameters: function () { return []; }, propDecorators: { formArray: [{
|
|
813
788
|
type: Input,
|
|
814
789
|
args: ['control']
|
|
815
790
|
}] } });
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
791
|
+
class FormControlsRenderDirective {
|
|
792
|
+
constructor(viewContainer) {
|
|
793
|
+
this.viewContainer = viewContainer;
|
|
794
|
+
this.componentsBuffer = {
|
|
795
|
+
[EControlTypes$1.autocomplete]: SpecialAutocompleteComponent,
|
|
796
|
+
[EControlTypes$1.checkbox]: SpecialCheckboxComponent,
|
|
797
|
+
[EControlTypes$1.date]: SpecialDatepickerComponent,
|
|
798
|
+
[EControlTypes$1.dropdown]: SpecialDropdownComponent,
|
|
799
|
+
[EControlTypes$1.array]: SpecialArrayComponent,
|
|
800
|
+
[EControlTypes$1.input]: SpecialInputComponent,
|
|
801
|
+
[EControlTypes$1.multiple]: SpecialMultipleAutocompleteComponent,
|
|
802
|
+
[EControlTypes$1.textArea]: SpecialTextAreaComponent,
|
|
803
|
+
[EControlTypes$1.label]: SpecialLabelComponent,
|
|
804
|
+
[EControlTypes$1.upload]: SpecialUploadComponent,
|
|
805
|
+
[EControlTypes$1.form]: SpecialFormComponent,
|
|
806
|
+
};
|
|
807
|
+
}
|
|
808
|
+
set controlSetter(control) {
|
|
809
|
+
this.viewContainer.clear();
|
|
810
|
+
const component = this.componentsBuffer[control.type];
|
|
811
|
+
if (component) {
|
|
812
|
+
const componentRef = this.viewContainer.createComponent(component);
|
|
813
|
+
componentRef.instance.control = control;
|
|
814
|
+
}
|
|
815
|
+
}
|
|
831
816
|
}
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
ControlsRenderDirectiveModule], exports: [SpecialArrayComponent] });
|
|
837
|
-
SpecialArrayModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: SpecialArrayModule, imports: [CommonModule,
|
|
838
|
-
FormControlsListPipeModule,
|
|
839
|
-
MatButtonModule,
|
|
840
|
-
ControlsRenderDirectiveModule] });
|
|
841
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: SpecialArrayModule, decorators: [{
|
|
842
|
-
type: NgModule,
|
|
817
|
+
FormControlsRenderDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: FormControlsRenderDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
818
|
+
FormControlsRenderDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.3", type: FormControlsRenderDirective, selector: "[controlRender]", inputs: { controlSetter: ["control", "controlSetter"] }, ngImport: i0 });
|
|
819
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: FormControlsRenderDirective, decorators: [{
|
|
820
|
+
type: Directive,
|
|
843
821
|
args: [{
|
|
844
|
-
|
|
845
|
-
imports: [
|
|
846
|
-
CommonModule,
|
|
847
|
-
FormControlsListPipeModule,
|
|
848
|
-
MatButtonModule,
|
|
849
|
-
ControlsRenderDirectiveModule,
|
|
850
|
-
],
|
|
851
|
-
exports: [SpecialArrayComponent],
|
|
822
|
+
selector: `[controlRender]`,
|
|
852
823
|
}]
|
|
853
|
-
}] }
|
|
824
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { controlSetter: [{
|
|
825
|
+
type: Input,
|
|
826
|
+
args: ['control']
|
|
827
|
+
}] } });
|
|
854
828
|
|
|
855
|
-
class
|
|
829
|
+
class FormControlsListPipeModule {
|
|
856
830
|
}
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
MatIconModule,
|
|
862
|
-
ReactiveFormsModule,
|
|
863
|
-
MatButtonModule,
|
|
864
|
-
TextByFunctionPipeModule,
|
|
865
|
-
ErrorMessagePipeModule], exports: [SpecialLabelComponent] });
|
|
866
|
-
SpecialLabelModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: SpecialLabelModule, imports: [InputMaskModule,
|
|
867
|
-
CommonModule,
|
|
868
|
-
MatInputModule,
|
|
869
|
-
MatIconModule,
|
|
870
|
-
ReactiveFormsModule,
|
|
871
|
-
MatButtonModule,
|
|
872
|
-
TextByFunctionPipeModule,
|
|
873
|
-
ErrorMessagePipeModule] });
|
|
874
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: SpecialLabelModule, decorators: [{
|
|
831
|
+
FormControlsListPipeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: FormControlsListPipeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
832
|
+
FormControlsListPipeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.1.3", ngImport: i0, type: FormControlsListPipeModule, declarations: [FormControlsListPipe], imports: [CommonModule], exports: [FormControlsListPipe] });
|
|
833
|
+
FormControlsListPipeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: FormControlsListPipeModule, imports: [CommonModule] });
|
|
834
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: FormControlsListPipeModule, decorators: [{
|
|
875
835
|
type: NgModule,
|
|
876
836
|
args: [{
|
|
877
|
-
declarations: [
|
|
878
|
-
imports: [
|
|
879
|
-
|
|
880
|
-
CommonModule,
|
|
881
|
-
MatInputModule,
|
|
882
|
-
MatIconModule,
|
|
883
|
-
ReactiveFormsModule,
|
|
884
|
-
MatButtonModule,
|
|
885
|
-
TextByFunctionPipeModule,
|
|
886
|
-
ErrorMessagePipeModule
|
|
887
|
-
],
|
|
888
|
-
exports: [SpecialLabelComponent],
|
|
837
|
+
declarations: [FormControlsListPipe],
|
|
838
|
+
imports: [CommonModule],
|
|
839
|
+
exports: [FormControlsListPipe],
|
|
889
840
|
}]
|
|
890
841
|
}] });
|
|
891
842
|
|
|
892
843
|
class SpecialFormModule {
|
|
893
844
|
}
|
|
894
845
|
SpecialFormModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: SpecialFormModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
895
|
-
SpecialFormModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.1.3", ngImport: i0, type: SpecialFormModule, declarations: [
|
|
896
|
-
|
|
846
|
+
SpecialFormModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.1.3", ngImport: i0, type: SpecialFormModule, declarations: [SpecialArrayComponent,
|
|
847
|
+
FormControlsRenderDirective,
|
|
848
|
+
SpecialFormComponent], imports: [CommonModule,
|
|
897
849
|
FormControlsListPipeModule,
|
|
898
850
|
MatButtonModule,
|
|
899
851
|
SpecialDropdownModule,
|
|
@@ -904,10 +856,10 @@ SpecialFormModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", versi
|
|
|
904
856
|
SpecialMultipleAutocompleteModule,
|
|
905
857
|
SpecialCheckboxModule,
|
|
906
858
|
SpecialTextAreaModule,
|
|
907
|
-
SpecialUploadModule,
|
|
908
|
-
|
|
859
|
+
SpecialUploadModule], exports: [SpecialArrayComponent,
|
|
860
|
+
FormControlsRenderDirective,
|
|
861
|
+
SpecialFormComponent] });
|
|
909
862
|
SpecialFormModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: SpecialFormModule, imports: [CommonModule,
|
|
910
|
-
ControlsRenderDirectiveModule,
|
|
911
863
|
FormControlsListPipeModule,
|
|
912
864
|
MatButtonModule,
|
|
913
865
|
SpecialDropdownModule,
|
|
@@ -918,15 +870,17 @@ SpecialFormModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", versi
|
|
|
918
870
|
SpecialMultipleAutocompleteModule,
|
|
919
871
|
SpecialCheckboxModule,
|
|
920
872
|
SpecialTextAreaModule,
|
|
921
|
-
SpecialUploadModule
|
|
922
|
-
SpecialArrayModule] });
|
|
873
|
+
SpecialUploadModule] });
|
|
923
874
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.3", ngImport: i0, type: SpecialFormModule, decorators: [{
|
|
924
875
|
type: NgModule,
|
|
925
876
|
args: [{
|
|
926
|
-
declarations: [
|
|
877
|
+
declarations: [
|
|
878
|
+
SpecialArrayComponent,
|
|
879
|
+
FormControlsRenderDirective,
|
|
880
|
+
SpecialFormComponent,
|
|
881
|
+
],
|
|
927
882
|
imports: [
|
|
928
883
|
CommonModule,
|
|
929
|
-
ControlsRenderDirectiveModule,
|
|
930
884
|
FormControlsListPipeModule,
|
|
931
885
|
MatButtonModule,
|
|
932
886
|
SpecialDropdownModule,
|
|
@@ -938,9 +892,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.3", ngImpor
|
|
|
938
892
|
SpecialCheckboxModule,
|
|
939
893
|
SpecialTextAreaModule,
|
|
940
894
|
SpecialUploadModule,
|
|
941
|
-
SpecialArrayModule,
|
|
942
895
|
],
|
|
943
|
-
exports: [
|
|
896
|
+
exports: [
|
|
897
|
+
SpecialArrayComponent,
|
|
898
|
+
FormControlsRenderDirective,
|
|
899
|
+
SpecialFormComponent,
|
|
900
|
+
],
|
|
944
901
|
}]
|
|
945
902
|
}] });
|
|
946
903
|
|
|
@@ -1358,5 +1315,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.3", ngImpor
|
|
|
1358
1315
|
* Generated bundle index. Do not edit.
|
|
1359
1316
|
*/
|
|
1360
1317
|
|
|
1361
|
-
export { FormControlsRenderDirective, SpecialArrayComponent,
|
|
1318
|
+
export { FormControlsRenderDirective, SpecialArrayComponent, SpecialAutocompleteComponent, SpecialAutocompleteModule, SpecialCheckboxComponent, SpecialCheckboxModule, SpecialDatepickerComponent, SpecialDatepickerModule, SpecialDropdownComponent, SpecialDropdownModule, SpecialFormBuilderService, SpecialFormComponent, SpecialFormModule, SpecialInputComponent, SpecialInputModule, SpecialLabelComponent, SpecialLabelModule, SpecialMultipleAutocompleteComponent, SpecialMultipleAutocompleteModule, SpecialTextAreaComponent, SpecialTextAreaModule, SpecialUploadComponent, SpecialUploadModule };
|
|
1362
1319
|
//# sourceMappingURL=special-forms.mjs.map
|