formly-form-viewer 0.0.1 → 0.0.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/app/formly-form-viewer/formly-form-viewer.component.d.ts +4 -3
- package/fesm2022/formly-form-viewer.mjs +29 -29
- package/fesm2022/formly-form-viewer.mjs.map +1 -1
- package/package.json +21 -23
- package/esm2022/app/formly-form-viewer/formly-form-viewer.component.mjs +0 -61
- package/esm2022/formly-form-viewer.mjs +0 -5
- package/esm2022/public-api.mjs +0 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { FormGroup } from '@angular/forms';
|
|
3
3
|
import { FormlyFieldConfig, FormlyFormOptions } from '@ngx-formly/core';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
@@ -7,9 +7,10 @@ export declare class FormlyViewerComponent implements OnInit {
|
|
|
7
7
|
fields: FormlyFieldConfig[];
|
|
8
8
|
model: any;
|
|
9
9
|
options: FormlyFormOptions;
|
|
10
|
-
customFieldClass
|
|
10
|
+
customFieldClass?: string;
|
|
11
|
+
submitForm: EventEmitter<any>;
|
|
11
12
|
ngOnInit(): void;
|
|
12
13
|
onSubmit(): void;
|
|
13
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormlyViewerComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormlyViewerComponent, "formly-form-viewer", never, { "form": { "alias": "form"; "required": false; }; "fields": { "alias": "fields"; "required": false; }; "model": { "alias": "model"; "required": false; }; "options": { "alias": "options"; "required": false; }; "customFieldClass": { "alias": "customFieldClass"; "required": false; }; }, {}, never, never, true, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormlyViewerComponent, "formly-form-viewer", never, { "form": { "alias": "form"; "required": false; }; "fields": { "alias": "fields"; "required": false; }; "model": { "alias": "model"; "required": false; }; "options": { "alias": "options"; "required": false; }; "customFieldClass": { "alias": "customFieldClass"; "required": false; }; }, { "submitForm": "submitForm"; }, never, never, true, never>;
|
|
15
16
|
}
|
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { EventEmitter, Output, Input, Component } from '@angular/core';
|
|
3
3
|
import * as i2 from '@angular/forms';
|
|
4
4
|
import { FormGroup, ReactiveFormsModule } from '@angular/forms';
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import {
|
|
8
|
-
import * as i4 from '@ionic/angular';
|
|
9
|
-
import { IonicModule } from '@ionic/angular';
|
|
5
|
+
import { FormlyForm } from '@ngx-formly/core';
|
|
6
|
+
import * as i3 from '@angular/material/button';
|
|
7
|
+
import { MatButtonModule } from '@angular/material/button';
|
|
10
8
|
import * as i1 from '@angular/common';
|
|
11
9
|
import { CommonModule } from '@angular/common';
|
|
12
10
|
|
|
@@ -15,39 +13,39 @@ class FormlyViewerComponent {
|
|
|
15
13
|
fields = [];
|
|
16
14
|
model = {};
|
|
17
15
|
options = {};
|
|
18
|
-
customFieldClass
|
|
16
|
+
customFieldClass;
|
|
17
|
+
submitForm = new EventEmitter();
|
|
19
18
|
ngOnInit() { }
|
|
20
19
|
onSubmit() {
|
|
21
20
|
if (this.form.valid) {
|
|
22
|
-
|
|
21
|
+
this.submitForm.emit(this.model);
|
|
23
22
|
}
|
|
24
23
|
}
|
|
25
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
26
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
27
|
-
<form [formGroup]="form" (ngSubmit)="onSubmit()">
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
<
|
|
32
|
-
</form>
|
|
33
|
-
`, isInline: true,
|
|
24
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: FormlyViewerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
25
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: FormlyViewerComponent, isStandalone: true, selector: "formly-form-viewer", inputs: { form: "form", fields: "fields", model: "model", options: "options", customFieldClass: "customFieldClass" }, outputs: { submitForm: "submitForm" }, ngImport: i0, template: `
|
|
26
|
+
<form [formGroup]="form" (ngSubmit)="onSubmit()">
|
|
27
|
+
<formly-form [form]="form" [fields]="fields" [model]="model" [options]="options"
|
|
28
|
+
[ngClass]="customFieldClass">
|
|
29
|
+
</formly-form>
|
|
30
|
+
<button mat-raised-button color="primary" type="submit">Enviar</button>
|
|
31
|
+
</form>
|
|
32
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "component", type: FormlyForm, selector: "formly-form", inputs: ["form", "model", "fields", "options"], outputs: ["modelChange"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i3.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", exportAs: ["matButton"] }] });
|
|
34
33
|
}
|
|
35
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
34
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: FormlyViewerComponent, decorators: [{
|
|
36
35
|
type: Component,
|
|
37
|
-
args: [{ selector: 'formly-form-viewer', standalone: true, template: `
|
|
38
|
-
<form [formGroup]="form" (ngSubmit)="onSubmit()">
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
<
|
|
43
|
-
</form>
|
|
36
|
+
args: [{ selector: 'formly-form-viewer', standalone: true, template: `
|
|
37
|
+
<form [formGroup]="form" (ngSubmit)="onSubmit()">
|
|
38
|
+
<formly-form [form]="form" [fields]="fields" [model]="model" [options]="options"
|
|
39
|
+
[ngClass]="customFieldClass">
|
|
40
|
+
</formly-form>
|
|
41
|
+
<button mat-raised-button color="primary" type="submit">Enviar</button>
|
|
42
|
+
</form>
|
|
44
43
|
`, imports: [
|
|
45
44
|
CommonModule,
|
|
46
45
|
ReactiveFormsModule,
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
], styles: [".default-formly-field{margin-bottom:15px;padding:10px}\n"] }]
|
|
46
|
+
FormlyForm,
|
|
47
|
+
MatButtonModule
|
|
48
|
+
] }]
|
|
51
49
|
}], propDecorators: { form: [{
|
|
52
50
|
type: Input
|
|
53
51
|
}], fields: [{
|
|
@@ -58,6 +56,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.3", ngImpor
|
|
|
58
56
|
type: Input
|
|
59
57
|
}], customFieldClass: [{
|
|
60
58
|
type: Input
|
|
59
|
+
}], submitForm: [{
|
|
60
|
+
type: Output
|
|
61
61
|
}] } });
|
|
62
62
|
|
|
63
63
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"formly-form-viewer.mjs","sources":["../../../src/app/formly-form-viewer/formly-form-viewer.component.ts","../../../src/formly-form-viewer.ts"],"sourcesContent":["import { Component, Input, OnInit } from '@angular/core';\
|
|
1
|
+
{"version":3,"file":"formly-form-viewer.mjs","sources":["../../../src/app/formly-form-viewer/formly-form-viewer.component.ts","../../../src/formly-form-viewer.ts"],"sourcesContent":["import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';\nimport { FormGroup, ReactiveFormsModule } from '@angular/forms';\nimport { FormlyFieldConfig, FormlyForm, FormlyFormOptions } from '@ngx-formly/core';\nimport { MatButtonModule } from '@angular/material/button';\nimport { CommonModule } from '@angular/common';\n\n@Component({\n selector: 'formly-form-viewer',\n standalone: true,\n template: `\n <form [formGroup]=\"form\" (ngSubmit)=\"onSubmit()\">\n <formly-form [form]=\"form\" [fields]=\"fields\" [model]=\"model\" [options]=\"options\"\n [ngClass]=\"customFieldClass\">\n </formly-form>\n <button mat-raised-button color=\"primary\" type=\"submit\">Enviar</button>\n </form>\n `,\n imports: [\n CommonModule,\n ReactiveFormsModule,\n FormlyForm,\n MatButtonModule\n ],\n styles: []\n})\nexport class FormlyViewerComponent implements OnInit {\n @Input() form: FormGroup = new FormGroup({});\n @Input() fields: FormlyFieldConfig[] = [];\n @Input() model: any = {};\n @Input() options: FormlyFormOptions = {};\n @Input() customFieldClass?: string;\n @Output() submitForm = new EventEmitter<any>();\n\n ngOnInit() {}\n\n onSubmit() {\n if (this.form.valid) {\n this.submitForm.emit(this.model);\n }\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;;;;;;MAyBa,qBAAqB,CAAA;AACvB,IAAA,IAAI,GAAc,IAAI,SAAS,CAAC,EAAE,CAAC;IACnC,MAAM,GAAwB,EAAE;IAChC,KAAK,GAAQ,EAAE;IACf,OAAO,GAAsB,EAAE;AAC/B,IAAA,gBAAgB;AACf,IAAA,UAAU,GAAG,IAAI,YAAY,EAAO;AAE9C,IAAA,QAAQ;IAER,QAAQ,GAAA;AACN,QAAA,IAAI,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE;YACnB,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC;;;wGAZzB,qBAAqB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAArB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,IAAA,EAAA,qBAAqB,EAhBtB,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,MAAA,EAAA,EAAA,IAAA,EAAA,MAAA,EAAA,MAAA,EAAA,QAAA,EAAA,KAAA,EAAA,OAAA,EAAA,OAAA,EAAA,SAAA,EAAA,gBAAA,EAAA,kBAAA,EAAA,EAAA,OAAA,EAAA,EAAA,UAAA,EAAA,YAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA;;;;;;;AAOT,EAAA,CAAA,EAAA,QAAA,EAAA,IAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAEC,YAAY,EACZ,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,WAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,SAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,mBAAmB,EACnB,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,aAAA,EAAA,QAAA,EAAA,8CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,oBAAA,EAAA,QAAA,EAAA,0FAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,kBAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,CAAA,WAAA,CAAA,EAAA,OAAA,EAAA,CAAA,UAAA,CAAA,EAAA,QAAA,EAAA,CAAA,QAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,UAAU,iIACV,eAAe,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,SAAA,EAAA,QAAA,EAAA,6GAAA,EAAA,QAAA,EAAA,CAAA,WAAA,CAAA,EAAA,CAAA,EAAA,CAAA;;4FAIN,qBAAqB,EAAA,UAAA,EAAA,CAAA;kBAnBjC,SAAS;+BACE,oBAAoB,EAAA,UAAA,EAClB,IAAI,EACN,QAAA,EAAA;;;;;;;GAOT,EACQ,OAAA,EAAA;wBACP,YAAY;wBACZ,mBAAmB;wBACnB,UAAU;wBACV;AACD,qBAAA,EAAA;8BAIQ,IAAI,EAAA,CAAA;sBAAZ;gBACQ,MAAM,EAAA,CAAA;sBAAd;gBACQ,KAAK,EAAA,CAAA;sBAAb;gBACQ,OAAO,EAAA,CAAA;sBAAf;gBACQ,gBAAgB,EAAA,CAAA;sBAAxB;gBACS,UAAU,EAAA,CAAA;sBAAnB;;;AC/BH;;AAEG;;;;"}
|
package/package.json
CHANGED
|
@@ -1,29 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "formly-form-viewer",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"author": "
|
|
5
|
-
"
|
|
3
|
+
"version": "0.0.3",
|
|
4
|
+
"author": "Juan Jose Arroyo Rivera",
|
|
5
|
+
"description": "Standalone component to render a customizable FormlyForm",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "https://github.com/JJKid/formly-form-viewer.git"
|
|
9
9
|
},
|
|
10
10
|
"peerDependencies": {
|
|
11
|
-
"@angular/animations": "^
|
|
12
|
-
"@angular/
|
|
13
|
-
"@angular/
|
|
14
|
-
"@angular/
|
|
15
|
-
"@angular/
|
|
16
|
-
"@angular/
|
|
17
|
-
"@angular/
|
|
18
|
-
"@angular/
|
|
19
|
-
"@
|
|
20
|
-
"@
|
|
21
|
-
"@ngx-formly/
|
|
22
|
-
"
|
|
11
|
+
"@angular/animations": "^19.2.18",
|
|
12
|
+
"@angular/cdk": "^19.2.18",
|
|
13
|
+
"@angular/common": "^19.2.18",
|
|
14
|
+
"@angular/compiler": "^19.2.18",
|
|
15
|
+
"@angular/core": "^19.2.18",
|
|
16
|
+
"@angular/forms": "^19.2.18",
|
|
17
|
+
"@angular/material": "^19.2.18",
|
|
18
|
+
"@angular/platform-browser": "^19.2.18",
|
|
19
|
+
"@angular/platform-browser-dynamic": "^19.2.18",
|
|
20
|
+
"@angular/router": "^19.2.18",
|
|
21
|
+
"@ngx-formly/core": "^7.0.1",
|
|
22
|
+
"@ngx-formly/material": "^7.0.1",
|
|
23
23
|
"rxjs": "~7.8.0",
|
|
24
|
-
"zone.js": "~0.
|
|
24
|
+
"zone.js": "~0.15.0"
|
|
25
25
|
},
|
|
26
|
-
"
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"tslib": "^2.3.0"
|
|
28
|
+
},
|
|
29
|
+
"homepage": "https://github.com/JJKid/formly-form-viewer",
|
|
27
30
|
"module": "fesm2022/formly-form-viewer.mjs",
|
|
28
31
|
"typings": "index.d.ts",
|
|
29
32
|
"exports": {
|
|
@@ -32,13 +35,8 @@
|
|
|
32
35
|
},
|
|
33
36
|
".": {
|
|
34
37
|
"types": "./index.d.ts",
|
|
35
|
-
"esm2022": "./esm2022/formly-form-viewer.mjs",
|
|
36
|
-
"esm": "./esm2022/formly-form-viewer.mjs",
|
|
37
38
|
"default": "./fesm2022/formly-form-viewer.mjs"
|
|
38
39
|
}
|
|
39
40
|
},
|
|
40
|
-
"sideEffects": false
|
|
41
|
-
"dependencies": {
|
|
42
|
-
"tslib": "^2.3.0"
|
|
43
|
-
}
|
|
41
|
+
"sideEffects": false
|
|
44
42
|
}
|
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
import { Component, Input } from '@angular/core';
|
|
2
|
-
import { FormGroup, ReactiveFormsModule } from '@angular/forms';
|
|
3
|
-
import { FormlyModule } from '@ngx-formly/core';
|
|
4
|
-
import { FormlyIonicModule } from '@ngx-formly/ionic';
|
|
5
|
-
import { IonicModule } from '@ionic/angular';
|
|
6
|
-
import { CommonModule } from '@angular/common';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
import * as i1 from "@angular/common";
|
|
9
|
-
import * as i2 from "@angular/forms";
|
|
10
|
-
import * as i3 from "@ngx-formly/core";
|
|
11
|
-
import * as i4 from "@ionic/angular";
|
|
12
|
-
export class FormlyViewerComponent {
|
|
13
|
-
form = new FormGroup({});
|
|
14
|
-
fields = [];
|
|
15
|
-
model = {};
|
|
16
|
-
options = {};
|
|
17
|
-
customFieldClass = 'default-formly-field';
|
|
18
|
-
ngOnInit() { }
|
|
19
|
-
onSubmit() {
|
|
20
|
-
if (this.form.valid) {
|
|
21
|
-
console.log(this.model);
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.3", ngImport: i0, type: FormlyViewerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
25
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.3", type: FormlyViewerComponent, isStandalone: true, selector: "formly-form-viewer", inputs: { form: "form", fields: "fields", model: "model", options: "options", customFieldClass: "customFieldClass" }, ngImport: i0, template: `
|
|
26
|
-
<form [formGroup]="form" (ngSubmit)="onSubmit()">
|
|
27
|
-
<formly-form [form]="form" [fields]="fields" [model]="model" [options]="options"
|
|
28
|
-
[ngClass]="customFieldClass">
|
|
29
|
-
</formly-form>
|
|
30
|
-
<ion-button type="submit">Submit</ion-button>
|
|
31
|
-
</form>
|
|
32
|
-
`, isInline: true, styles: [".default-formly-field{margin-bottom:15px;padding:10px}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: FormlyModule }, { kind: "component", type: i3.FormlyForm, selector: "formly-form", inputs: ["form", "model", "fields", "options"], outputs: ["modelChange"] }, { kind: "ngmodule", type: FormlyIonicModule }, { kind: "ngmodule", type: IonicModule }, { kind: "component", type: i4.IonButton, selector: "ion-button", inputs: ["buttonType", "color", "disabled", "download", "expand", "fill", "form", "href", "mode", "rel", "routerAnimation", "routerDirection", "shape", "size", "strong", "target", "type"] }] });
|
|
33
|
-
}
|
|
34
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.3", ngImport: i0, type: FormlyViewerComponent, decorators: [{
|
|
35
|
-
type: Component,
|
|
36
|
-
args: [{ selector: 'formly-form-viewer', standalone: true, template: `
|
|
37
|
-
<form [formGroup]="form" (ngSubmit)="onSubmit()">
|
|
38
|
-
<formly-form [form]="form" [fields]="fields" [model]="model" [options]="options"
|
|
39
|
-
[ngClass]="customFieldClass">
|
|
40
|
-
</formly-form>
|
|
41
|
-
<ion-button type="submit">Submit</ion-button>
|
|
42
|
-
</form>
|
|
43
|
-
`, imports: [
|
|
44
|
-
CommonModule,
|
|
45
|
-
ReactiveFormsModule,
|
|
46
|
-
FormlyModule,
|
|
47
|
-
FormlyIonicModule,
|
|
48
|
-
IonicModule
|
|
49
|
-
], styles: [".default-formly-field{margin-bottom:15px;padding:10px}\n"] }]
|
|
50
|
-
}], propDecorators: { form: [{
|
|
51
|
-
type: Input
|
|
52
|
-
}], fields: [{
|
|
53
|
-
type: Input
|
|
54
|
-
}], model: [{
|
|
55
|
-
type: Input
|
|
56
|
-
}], options: [{
|
|
57
|
-
type: Input
|
|
58
|
-
}], customFieldClass: [{
|
|
59
|
-
type: Input
|
|
60
|
-
}] } });
|
|
61
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybWx5LWZvcm0tdmlld2VyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9hcHAvZm9ybWx5LWZvcm0tdmlld2VyL2Zvcm1seS1mb3JtLXZpZXdlci5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQVUsTUFBTSxlQUFlLENBQUM7QUFDekQsT0FBTyxFQUFFLFNBQVMsRUFBRSxtQkFBbUIsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBQ2hFLE9BQU8sRUFBd0MsWUFBWSxFQUFFLE1BQU0sa0JBQWtCLENBQUM7QUFDdEYsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sbUJBQW1CLENBQUM7QUFDdEQsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBQzdDLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQzs7Ozs7O0FBMkIvQyxNQUFNLE9BQU8scUJBQXFCO0lBQ3ZCLElBQUksR0FBYyxJQUFJLFNBQVMsQ0FBQyxFQUFFLENBQUMsQ0FBQztJQUNwQyxNQUFNLEdBQXdCLEVBQUUsQ0FBQztJQUNqQyxLQUFLLEdBQVEsRUFBRSxDQUFDO0lBQ2hCLE9BQU8sR0FBc0IsRUFBRSxDQUFDO0lBQ2hDLGdCQUFnQixHQUFXLHNCQUFzQixDQUFDO0lBRTNELFFBQVEsS0FBSSxDQUFDO0lBRWIsUUFBUTtRQUNOLElBQUksSUFBSSxDQUFDLElBQUksQ0FBQyxLQUFLLEVBQUUsQ0FBQztZQUNwQixPQUFPLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUMxQixDQUFDO0lBQ0gsQ0FBQzt1R0FiVSxxQkFBcUI7MkZBQXJCLHFCQUFxQixvTUF0QnRCOzs7Ozs7O0dBT1QsaUlBRUMsWUFBWSw0SEFDWixtQkFBbUIsb2JBQ25CLFlBQVksNktBQ1osaUJBQWlCLDhCQUNqQixXQUFXOzsyRkFTRixxQkFBcUI7a0JBekJqQyxTQUFTOytCQUNFLG9CQUFvQixjQUNsQixJQUFJLFlBQ047Ozs7Ozs7R0FPVCxXQUNRO3dCQUNQLFlBQVk7d0JBQ1osbUJBQW1CO3dCQUNuQixZQUFZO3dCQUNaLGlCQUFpQjt3QkFDakIsV0FBVztxQkFDWjs4QkFTUSxJQUFJO3NCQUFaLEtBQUs7Z0JBQ0csTUFBTTtzQkFBZCxLQUFLO2dCQUNHLEtBQUs7c0JBQWIsS0FBSztnQkFDRyxPQUFPO3NCQUFmLEtBQUs7Z0JBQ0csZ0JBQWdCO3NCQUF4QixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCwgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IEZvcm1Hcm91cCwgUmVhY3RpdmVGb3Jtc01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcclxuaW1wb3J0IHsgRm9ybWx5RmllbGRDb25maWcsIEZvcm1seUZvcm1PcHRpb25zLCBGb3JtbHlNb2R1bGUgfSBmcm9tICdAbmd4LWZvcm1seS9jb3JlJztcclxuaW1wb3J0IHsgRm9ybWx5SW9uaWNNb2R1bGUgfSBmcm9tICdAbmd4LWZvcm1seS9pb25pYyc7XHJcbmltcG9ydCB7IElvbmljTW9kdWxlIH0gZnJvbSAnQGlvbmljL2FuZ3VsYXInO1xyXG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdmb3JtbHktZm9ybS12aWV3ZXInLFxyXG4gIHN0YW5kYWxvbmU6IHRydWUsXHJcbiAgdGVtcGxhdGU6IGBcclxuICAgIDxmb3JtIFtmb3JtR3JvdXBdPVwiZm9ybVwiIChuZ1N1Ym1pdCk9XCJvblN1Ym1pdCgpXCI+XHJcbiAgICAgIDxmb3JtbHktZm9ybSBbZm9ybV09XCJmb3JtXCIgW2ZpZWxkc109XCJmaWVsZHNcIiBbbW9kZWxdPVwibW9kZWxcIiBbb3B0aW9uc109XCJvcHRpb25zXCJcclxuICAgICAgICAgICAgICAgICAgIFtuZ0NsYXNzXT1cImN1c3RvbUZpZWxkQ2xhc3NcIj5cclxuICAgICAgPC9mb3JtbHktZm9ybT5cclxuICAgICAgPGlvbi1idXR0b24gdHlwZT1cInN1Ym1pdFwiPlN1Ym1pdDwvaW9uLWJ1dHRvbj5cclxuICAgIDwvZm9ybT5cclxuICBgLFxyXG4gIGltcG9ydHM6IFtcclxuICAgIENvbW1vbk1vZHVsZSxcclxuICAgIFJlYWN0aXZlRm9ybXNNb2R1bGUsXHJcbiAgICBGb3JtbHlNb2R1bGUsXHJcbiAgICBGb3JtbHlJb25pY01vZHVsZSxcclxuICAgIElvbmljTW9kdWxlXHJcbiAgXSxcclxuICBzdHlsZXM6IFtgXHJcbiAgICAuZGVmYXVsdC1mb3JtbHktZmllbGQge1xyXG4gICAgICBtYXJnaW4tYm90dG9tOiAxNXB4O1xyXG4gICAgICBwYWRkaW5nOiAxMHB4O1xyXG4gICAgfVxyXG4gIGBdXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBGb3JtbHlWaWV3ZXJDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gIEBJbnB1dCgpIGZvcm06IEZvcm1Hcm91cCA9IG5ldyBGb3JtR3JvdXAoe30pO1xyXG4gIEBJbnB1dCgpIGZpZWxkczogRm9ybWx5RmllbGRDb25maWdbXSA9IFtdO1xyXG4gIEBJbnB1dCgpIG1vZGVsOiBhbnkgPSB7fTtcclxuICBASW5wdXQoKSBvcHRpb25zOiBGb3JtbHlGb3JtT3B0aW9ucyA9IHt9O1xyXG4gIEBJbnB1dCgpIGN1c3RvbUZpZWxkQ2xhc3M6IHN0cmluZyA9ICdkZWZhdWx0LWZvcm1seS1maWVsZCc7XHJcblxyXG4gIG5nT25Jbml0KCkge31cclxuXHJcbiAgb25TdWJtaXQoKSB7XHJcbiAgICBpZiAodGhpcy5mb3JtLnZhbGlkKSB7XHJcbiAgICAgIGNvbnNvbGUubG9nKHRoaXMubW9kZWwpO1xyXG4gICAgfVxyXG4gIH1cclxufVxyXG4iXX0=
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Generated bundle index. Do not edit.
|
|
3
|
-
*/
|
|
4
|
-
export * from './public-api';
|
|
5
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybWx5LWZvcm0tdmlld2VyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL2Zvcm1seS1mb3JtLXZpZXdlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuIl19
|
package/esm2022/public-api.mjs
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export * from './app/formly-form-viewer/formly-form-viewer.component';
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsdURBQXVELENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2FwcC9mb3JtbHktZm9ybS12aWV3ZXIvZm9ybWx5LWZvcm0tdmlld2VyLmNvbXBvbmVudCc7XHJcbiJdfQ==
|