@firestitch/form 18.0.12 → 18.0.13
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/components/index.d.ts +0 -2
- package/app/directives/form-template-outlet.directive.d.ts +11 -0
- package/app/directives/form-template.directive.d.ts +5 -5
- package/app/fs-form.module.d.ts +9 -10
- package/esm2022/app/components/index.mjs +1 -3
- package/esm2022/app/directives/form-template-outlet.directive.mjs +26 -0
- package/esm2022/app/directives/form-template.directive.mjs +12 -9
- package/esm2022/app/fs-form.module.mjs +11 -10
- package/esm2022/public_api.mjs +3 -2
- package/fesm2022/firestitch-form.mjs +44 -75
- package/fesm2022/firestitch-form.mjs.map +1 -1
- package/package.json +1 -1
- package/public_api.d.ts +2 -1
- package/app/components/form-template/form-template.component.d.ts +0 -13
- package/app/components/form-template/index.d.ts +0 -1
- package/app/components/form-template-outlet/form-template-outlet.component.d.ts +0 -13
- package/app/components/form-template-outlet/index.d.ts +0 -1
- package/esm2022/app/components/form-template/form-template.component.mjs +0 -34
- package/esm2022/app/components/form-template/index.mjs +0 -2
- package/esm2022/app/components/form-template-outlet/form-template-outlet.component.mjs +0 -32
- package/esm2022/app/components/form-template-outlet/index.mjs +0 -2
package/package.json
CHANGED
package/public_api.d.ts
CHANGED
|
@@ -25,7 +25,8 @@ export { FsFormPhoneDirective } from './app/directives/validators/phone.directiv
|
|
|
25
25
|
export { FsFormRequiredDirective } from './app/directives/validators/required.directive';
|
|
26
26
|
export { FsFormUrlDirective } from './app/directives/validators/url.directive';
|
|
27
27
|
export { FsFormValidateDirective } from './app/directives/validators/validate.directive';
|
|
28
|
-
export {
|
|
28
|
+
export { FsFormTemplateOutletDirective } from './app/directives/form-template-outlet.directive';
|
|
29
|
+
export { FsFormDialogActionsComponent } from './app/components';
|
|
29
30
|
export { FsValidators } from './app/validators/validators';
|
|
30
31
|
export { FormDeactivateGuard } from './app/guards/form-deactivate.guard';
|
|
31
32
|
export { ConfirmConfig } from './app/interfaces/confirm-config';
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { QueryList, AfterContentInit, TemplateRef } from '@angular/core';
|
|
2
|
-
import { NgModel } from '@angular/forms';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class FsFormTemplateComponent implements AfterContentInit {
|
|
5
|
-
templateRef: TemplateRef<any>;
|
|
6
|
-
formTemplate: any;
|
|
7
|
-
models: QueryList<NgModel>;
|
|
8
|
-
ngAfterContentInit(): void;
|
|
9
|
-
ngOnInit(): void;
|
|
10
|
-
constructor();
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FsFormTemplateComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FsFormTemplateComponent, "fs-form-template", never, { "formTemplate": { "alias": "formTemplate"; "required": false; }; }, {}, ["models"], ["*"], false, never>;
|
|
13
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './form-template.component';
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { QueryList, AfterContentInit, SimpleChanges, OnChanges } from '@angular/core';
|
|
2
|
-
import { NgModel } from '@angular/forms';
|
|
3
|
-
import { FsFormTemplateComponent } from '../../components';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class FsFormTemplateOutletComponent implements AfterContentInit, OnChanges {
|
|
6
|
-
formTemplate: FsFormTemplateComponent;
|
|
7
|
-
models: QueryList<NgModel>;
|
|
8
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
9
|
-
ngAfterContentInit(): void;
|
|
10
|
-
constructor();
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FsFormTemplateOutletComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FsFormTemplateOutletComponent, "fs-form-template-outlet", never, { "formTemplate": { "alias": "formTemplate"; "required": false; }; }, {}, ["models"], never, false, never>;
|
|
13
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './form-template-outlet.component';
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import { Component, ChangeDetectionStrategy, Input, ContentChildren, QueryList, TemplateRef, ViewChild } from '@angular/core';
|
|
2
|
-
import { NgModel } from '@angular/forms';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export class FsFormTemplateComponent {
|
|
5
|
-
templateRef;
|
|
6
|
-
formTemplate;
|
|
7
|
-
models;
|
|
8
|
-
ngAfterContentInit() {
|
|
9
|
-
debugger;
|
|
10
|
-
const x = this.models;
|
|
11
|
-
this.models.changes.subscribe((x) => {
|
|
12
|
-
debugger;
|
|
13
|
-
});
|
|
14
|
-
}
|
|
15
|
-
ngOnInit() {
|
|
16
|
-
debugger;
|
|
17
|
-
}
|
|
18
|
-
constructor() { }
|
|
19
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: FsFormTemplateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
20
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: FsFormTemplateComponent, selector: "fs-form-template", inputs: { formTemplate: "formTemplate" }, queries: [{ propertyName: "models", predicate: NgModel, descendants: true }], viewQueries: [{ propertyName: "templateRef", first: true, predicate: ["templateRef1"], descendants: true }], ngImport: i0, template: "<ng-template #templateRef1>\n <ng-content></ng-content>\n</ng-template>", changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
21
|
-
}
|
|
22
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: FsFormTemplateComponent, decorators: [{
|
|
23
|
-
type: Component,
|
|
24
|
-
args: [{ selector: 'fs-form-template', changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-template #templateRef1>\n <ng-content></ng-content>\n</ng-template>" }]
|
|
25
|
-
}], ctorParameters: () => [], propDecorators: { templateRef: [{
|
|
26
|
-
type: ViewChild,
|
|
27
|
-
args: ['templateRef1']
|
|
28
|
-
}], formTemplate: [{
|
|
29
|
-
type: Input
|
|
30
|
-
}], models: [{
|
|
31
|
-
type: ContentChildren,
|
|
32
|
-
args: [NgModel, { descendants: true }]
|
|
33
|
-
}] } });
|
|
34
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybS10ZW1wbGF0ZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvYXBwL2NvbXBvbmVudHMvZm9ybS10ZW1wbGF0ZS9mb3JtLXRlbXBsYXRlLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uL3NyYy9hcHAvY29tcG9uZW50cy9mb3JtLXRlbXBsYXRlL2Zvcm0tdGVtcGxhdGUuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSx1QkFBdUIsRUFBRSxLQUFLLEVBQUUsZUFBZSxFQUFFLFNBQVMsRUFBb0IsV0FBVyxFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUNoSixPQUFPLEVBQUUsT0FBTyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7O0FBUXpDLE1BQU0sT0FBTyx1QkFBdUI7SUFHM0IsV0FBVyxDQUFtQjtJQUVyQixZQUFZLENBQU07SUFHM0IsTUFBTSxDQUFxQjtJQUUzQixrQkFBa0I7UUFDdkIsUUFBUSxDQUFDO1FBQ1QsTUFBTSxDQUFDLEdBQUcsSUFBSSxDQUFDLE1BQU0sQ0FBQztRQUN0QixJQUFJLENBQUMsTUFBTSxDQUFDLE9BQU8sQ0FBQyxTQUFTLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRTtZQUNsQyxRQUFRLENBQUM7UUFDWCxDQUFDLENBQUMsQ0FBQztJQUNMLENBQUM7SUFFRCxRQUFRO1FBQ04sUUFBUSxDQUFDO0lBQ1gsQ0FBQztJQUVELGdCQUVHLENBQUM7dUdBeEJPLHVCQUF1QjsyRkFBdkIsdUJBQXVCLHlIQU9qQixPQUFPLDZKQ2hCMUIsMEVBRWM7OzJGRE9ELHVCQUF1QjtrQkFMbkMsU0FBUzsrQkFDRSxrQkFBa0IsbUJBRVgsdUJBQXVCLENBQUMsTUFBTTt3REFLeEMsV0FBVztzQkFEakIsU0FBUzt1QkFBQyxjQUFjO2dCQUdULFlBQVk7c0JBQTNCLEtBQUs7Z0JBR0MsTUFBTTtzQkFEWixlQUFlO3VCQUFDLE9BQU8sRUFBRSxFQUFFLFdBQVcsRUFBRSxJQUFJLEVBQUUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBJbnB1dCwgQ29udGVudENoaWxkcmVuLCBRdWVyeUxpc3QsIEFmdGVyQ29udGVudEluaXQsIFRlbXBsYXRlUmVmLCBWaWV3Q2hpbGQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgTmdNb2RlbCB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcclxuXHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ2ZzLWZvcm0tdGVtcGxhdGUnLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi9mb3JtLXRlbXBsYXRlLmNvbXBvbmVudC5odG1sJyxcclxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcclxufSlcclxuZXhwb3J0IGNsYXNzIEZzRm9ybVRlbXBsYXRlQ29tcG9uZW50IGltcGxlbWVudHMgQWZ0ZXJDb250ZW50SW5pdCB7XHJcblxyXG4gIEBWaWV3Q2hpbGQoJ3RlbXBsYXRlUmVmMScpIFxyXG4gIHB1YmxpYyB0ZW1wbGF0ZVJlZjogVGVtcGxhdGVSZWY8YW55PjtcclxuXHJcbiAgQElucHV0KCkgcHVibGljIGZvcm1UZW1wbGF0ZTogYW55O1xyXG4gIFxyXG4gIEBDb250ZW50Q2hpbGRyZW4oTmdNb2RlbCwgeyBkZXNjZW5kYW50czogdHJ1ZSB9KSBcclxuICBwdWJsaWMgbW9kZWxzOiBRdWVyeUxpc3Q8TmdNb2RlbD47XHJcblxyXG4gIHB1YmxpYyBuZ0FmdGVyQ29udGVudEluaXQoKTogdm9pZCB7XHJcbiAgICBkZWJ1Z2dlcjtcclxuICAgIGNvbnN0IHggPSB0aGlzLm1vZGVscztcclxuICAgIHRoaXMubW9kZWxzLmNoYW5nZXMuc3Vic2NyaWJlKCh4KSA9PiB7XHJcbiAgICAgIGRlYnVnZ2VyO1xyXG4gICAgfSk7XHJcbiAgfVxyXG5cclxuICBuZ09uSW5pdCgpIHtcclxuICAgIGRlYnVnZ2VyO1xyXG4gIH1cclxuXHJcbiAgY29uc3RydWN0b3IoXHJcbiAgIFxyXG4gICkge31cclxuXHJcbn1cclxuIiwiPG5nLXRlbXBsYXRlICN0ZW1wbGF0ZVJlZjE+XG4gIDxuZy1jb250ZW50PjwvbmctY29udGVudD5cbjwvbmctdGVtcGxhdGU+Il19
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export * from './form-template.component';
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvYXBwL2NvbXBvbmVudHMvZm9ybS10ZW1wbGF0ZS9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDJCQUEyQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9mb3JtLXRlbXBsYXRlLmNvbXBvbmVudCc7XHJcbiJdfQ==
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { Component, ChangeDetectionStrategy, Input, ContentChildren, QueryList } from '@angular/core';
|
|
2
|
-
import { NgModel } from '@angular/forms';
|
|
3
|
-
import { FsFormTemplateComponent } from '../../components';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
import * as i1 from "@angular/common";
|
|
6
|
-
export class FsFormTemplateOutletComponent {
|
|
7
|
-
formTemplate;
|
|
8
|
-
models;
|
|
9
|
-
ngOnChanges(changes) {
|
|
10
|
-
if (changes.formTemplate?.currentValue) {
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
ngAfterContentInit() {
|
|
14
|
-
// const x = this.models;
|
|
15
|
-
// this.models.changes.subscribe((x) => {
|
|
16
|
-
// debugger;
|
|
17
|
-
// });
|
|
18
|
-
}
|
|
19
|
-
constructor() { }
|
|
20
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: FsFormTemplateOutletComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
21
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: FsFormTemplateOutletComponent, selector: "fs-form-template-outlet", inputs: { formTemplate: "formTemplate" }, queries: [{ propertyName: "models", predicate: NgModel, descendants: true }], usesOnChanges: true, ngImport: i0, template: "\n{{formTemplate.templateRef|json}}\n\n<ng-container *ngIf=\"formTemplate\">\n <ng-container [ngTemplateOutlet]=\"formTemplate.templateRef\"></ng-container> \n</ng-container>", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "pipe", type: i1.JsonPipe, name: "json" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
22
|
-
}
|
|
23
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: FsFormTemplateOutletComponent, decorators: [{
|
|
24
|
-
type: Component,
|
|
25
|
-
args: [{ selector: 'fs-form-template-outlet', changeDetection: ChangeDetectionStrategy.OnPush, template: "\n{{formTemplate.templateRef|json}}\n\n<ng-container *ngIf=\"formTemplate\">\n <ng-container [ngTemplateOutlet]=\"formTemplate.templateRef\"></ng-container> \n</ng-container>" }]
|
|
26
|
-
}], ctorParameters: () => [], propDecorators: { formTemplate: [{
|
|
27
|
-
type: Input
|
|
28
|
-
}], models: [{
|
|
29
|
-
type: ContentChildren,
|
|
30
|
-
args: [NgModel, { descendants: true }]
|
|
31
|
-
}] } });
|
|
32
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybS10ZW1wbGF0ZS1vdXRsZXQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL2FwcC9jb21wb25lbnRzL2Zvcm0tdGVtcGxhdGUtb3V0bGV0L2Zvcm0tdGVtcGxhdGUtb3V0bGV0LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uL3NyYy9hcHAvY29tcG9uZW50cy9mb3JtLXRlbXBsYXRlLW91dGxldC9mb3JtLXRlbXBsYXRlLW91dGxldC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLHVCQUF1QixFQUFFLEtBQUssRUFBRSxlQUFlLEVBQUUsU0FBUyxFQUEyRCxNQUFNLGVBQWUsQ0FBQztBQUMvSixPQUFPLEVBQUUsT0FBTyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDekMsT0FBTyxFQUFFLHVCQUF1QixFQUFFLE1BQU0sa0JBQWtCLENBQUM7OztBQVEzRCxNQUFNLE9BQU8sNkJBQTZCO0lBRXhCLFlBQVksQ0FBMEI7SUFHL0MsTUFBTSxDQUFxQjtJQUVsQyxXQUFXLENBQUMsT0FBc0I7UUFDaEMsSUFBRyxPQUFPLENBQUMsWUFBWSxFQUFFLFlBQVksRUFBRSxDQUFDO1FBQ3hDLENBQUM7SUFDSCxDQUFDO0lBRU0sa0JBQWtCO1FBQ3ZCLHlCQUF5QjtRQUN6Qix5Q0FBeUM7UUFDekMsY0FBYztRQUNkLE1BQU07SUFDUixDQUFDO0lBRUQsZ0JBRUcsQ0FBQzt1R0FyQk8sNkJBQTZCOzJGQUE3Qiw2QkFBNkIsZ0lBSXZCLE9BQU8scUVDZDFCLGlMQUtlOzsyRkRLRiw2QkFBNkI7a0JBTHpDLFNBQVM7K0JBQ0UseUJBQXlCLG1CQUVsQix1QkFBdUIsQ0FBQyxNQUFNO3dEQUkvQixZQUFZO3NCQUEzQixLQUFLO2dCQUdDLE1BQU07c0JBRFosZUFBZTt1QkFBQyxPQUFPLEVBQUUsRUFBRSxXQUFXLEVBQUUsSUFBSSxFQUFFIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgSW5wdXQsIENvbnRlbnRDaGlsZHJlbiwgUXVlcnlMaXN0LCBBZnRlckNvbnRlbnRJbml0LCBUZW1wbGF0ZVJlZiwgU2ltcGxlQ2hhbmdlcywgT25DaGFuZ2VzIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IE5nTW9kZWwgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XHJcbmltcG9ydCB7IEZzRm9ybVRlbXBsYXRlQ29tcG9uZW50IH0gZnJvbSAnLi4vLi4vY29tcG9uZW50cyc7XHJcblxyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdmcy1mb3JtLXRlbXBsYXRlLW91dGxldCcsXHJcbiAgdGVtcGxhdGVVcmw6ICcuL2Zvcm0tdGVtcGxhdGUtb3V0bGV0LmNvbXBvbmVudC5odG1sJyxcclxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcclxufSlcclxuZXhwb3J0IGNsYXNzIEZzRm9ybVRlbXBsYXRlT3V0bGV0Q29tcG9uZW50IGltcGxlbWVudHMgQWZ0ZXJDb250ZW50SW5pdCwgT25DaGFuZ2VzIHtcclxuXHJcbiAgQElucHV0KCkgcHVibGljIGZvcm1UZW1wbGF0ZTogRnNGb3JtVGVtcGxhdGVDb21wb25lbnQ7XHJcbiAgXHJcbiAgQENvbnRlbnRDaGlsZHJlbihOZ01vZGVsLCB7IGRlc2NlbmRhbnRzOiB0cnVlIH0pIFxyXG4gIHB1YmxpYyBtb2RlbHM6IFF1ZXJ5TGlzdDxOZ01vZGVsPjtcclxuXHJcbiAgbmdPbkNoYW5nZXMoY2hhbmdlczogU2ltcGxlQ2hhbmdlcyk6IHZvaWQge1xyXG4gICAgaWYoY2hhbmdlcy5mb3JtVGVtcGxhdGU/LmN1cnJlbnRWYWx1ZSkge1xyXG4gICAgfVxyXG4gIH1cclxuXHJcbiAgcHVibGljIG5nQWZ0ZXJDb250ZW50SW5pdCgpOiB2b2lkIHtcclxuICAgIC8vIGNvbnN0IHggPSB0aGlzLm1vZGVscztcclxuICAgIC8vIHRoaXMubW9kZWxzLmNoYW5nZXMuc3Vic2NyaWJlKCh4KSA9PiB7XHJcbiAgICAvLyAgIGRlYnVnZ2VyO1xyXG4gICAgLy8gfSk7XHJcbiAgfVxyXG5cclxuICBjb25zdHJ1Y3RvcihcclxuICAgXHJcbiAgKSB7fVxyXG5cclxufVxyXG4iLCJcbnt7Zm9ybVRlbXBsYXRlLnRlbXBsYXRlUmVmfGpzb259fVxuXG48bmctY29udGFpbmVyICpuZ0lmPVwiZm9ybVRlbXBsYXRlXCI+XG4gIDxuZy1jb250YWluZXIgW25nVGVtcGxhdGVPdXRsZXRdPVwiZm9ybVRlbXBsYXRlLnRlbXBsYXRlUmVmXCI+PC9uZy1jb250YWluZXI+IFxuPC9uZy1jb250YWluZXI+Il19
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export * from './form-template-outlet.component';
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvYXBwL2NvbXBvbmVudHMvZm9ybS10ZW1wbGF0ZS1vdXRsZXQvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxrQ0FBa0MsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vZm9ybS10ZW1wbGF0ZS1vdXRsZXQuY29tcG9uZW50JztcclxuIl19
|