ngx-techlify-core 18.47.0 → 18.48.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/esm2022/lib/form-configuration/form-configuration-field-form/form-configuration-field-form-routing.module.mjs +29 -0
- package/esm2022/lib/form-configuration/form-configuration-field-form/form-configuration-field-form.component.mjs +43 -0
- package/esm2022/lib/form-configuration/form-configuration-field-form/form-configuration-field-form.module.mjs +36 -0
- package/esm2022/lib/form-configuration/form-configuration-for-form/form-configuration-for-form.component.mjs +23 -0
- package/esm2022/lib/form-configuration/form-configuration-for-form/form-configuration-for-form.module.mjs +28 -0
- package/esm2022/lib/form-configuration/form-configuration-form-field.service.mjs +18 -0
- package/esm2022/lib/form-configuration/form-configuration-form.service.mjs +18 -0
- package/esm2022/lib/form-configuration/form-configuration-utility.service.mjs +29 -0
- package/esm2022/public-api.mjs +10 -1
- package/fesm2022/ngx-techlify-core.mjs +311 -135
- package/fesm2022/ngx-techlify-core.mjs.map +1 -1
- package/lib/form-configuration/form-configuration-field-form/form-configuration-field-form-routing.module.d.ts +7 -0
- package/lib/form-configuration/form-configuration-field-form/form-configuration-field-form.component.d.ts +17 -0
- package/lib/form-configuration/form-configuration-field-form/form-configuration-field-form.module.d.ts +12 -0
- package/lib/form-configuration/form-configuration-for-form/form-configuration-for-form.component.d.ts +10 -0
- package/lib/form-configuration/form-configuration-for-form/form-configuration-for-form.module.d.ts +10 -0
- package/lib/form-configuration/form-configuration-form-field.service.d.ts +8 -0
- package/lib/form-configuration/form-configuration-form.service.d.ts +8 -0
- package/lib/form-configuration/form-configuration-utility.service.d.ts +10 -0
- package/package.json +1 -1
- package/public-api.d.ts +8 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/router";
|
|
3
|
+
export declare class FormConfigurationFieldFormRoutingModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormConfigurationFieldFormRoutingModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FormConfigurationFieldFormRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<FormConfigurationFieldFormRoutingModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ActivatedRoute } from '@angular/router';
|
|
3
|
+
import { FormConfigurationFormService } from '../form-configuration-form.service';
|
|
4
|
+
import { FormConfigurationFormFieldService } from '../form-configuration-form-field.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class FormConfigurationFieldFormComponent implements OnInit {
|
|
7
|
+
private activatedRoute;
|
|
8
|
+
private formConfigurationFormService;
|
|
9
|
+
private formConfigurationFormFieldService;
|
|
10
|
+
formConfigForm: any;
|
|
11
|
+
constructor(activatedRoute: ActivatedRoute, formConfigurationFormService: FormConfigurationFormService, formConfigurationFormFieldService: FormConfigurationFormFieldService);
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
onToggle(field: any): void;
|
|
14
|
+
goBack(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormConfigurationFieldFormComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormConfigurationFieldFormComponent, "techlify-form-configuration-field-form", never, {}, {}, never, never, false, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./form-configuration-field-form.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/forms";
|
|
5
|
+
import * as i4 from "../../material.module";
|
|
6
|
+
import * as i5 from "@angular/flex-layout";
|
|
7
|
+
import * as i6 from "./form-configuration-field-form-routing.module";
|
|
8
|
+
export declare class FormConfigurationFieldFormModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormConfigurationFieldFormModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FormConfigurationFieldFormModule, [typeof i1.FormConfigurationFieldFormComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.MaterialModule, typeof i5.FlexLayoutModule, typeof i6.FormConfigurationFieldFormRoutingModule], [typeof i1.FormConfigurationFieldFormComponent]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<FormConfigurationFieldFormModule>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Router } from '@angular/router';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class FormConfigurationForFormComponent {
|
|
4
|
+
private router;
|
|
5
|
+
formCode: string;
|
|
6
|
+
constructor(router: Router);
|
|
7
|
+
openForm(): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormConfigurationForFormComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormConfigurationForFormComponent, "techlify-form-configuration-for-form", never, { "formCode": { "alias": "formCode"; "required": false; }; }, {}, never, never, false, never>;
|
|
10
|
+
}
|
package/lib/form-configuration/form-configuration-for-form/form-configuration-for-form.module.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./form-configuration-for-form.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/router";
|
|
5
|
+
import * as i4 from "../../material.module";
|
|
6
|
+
export declare class FormConfigurationForFormModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormConfigurationForFormModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FormConfigurationForFormModule, [typeof i1.FormConfigurationForFormComponent], [typeof i2.CommonModule, typeof i3.RouterModule, typeof i4.MaterialModule], [typeof i1.FormConfigurationForFormComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<FormConfigurationForFormModule>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { HttpService } from '../core/http.service';
|
|
2
|
+
import { TechlifyServiceBaseClass } from '../base-model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class FormConfigurationFormFieldService extends TechlifyServiceBaseClass {
|
|
5
|
+
constructor(http: HttpService);
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormConfigurationFormFieldService, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FormConfigurationFormFieldService>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { HttpService } from '../core/http.service';
|
|
2
|
+
import { TechlifyServiceBaseClass } from '../base-model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class FormConfigurationFormService extends TechlifyServiceBaseClass {
|
|
5
|
+
constructor(http: HttpService);
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormConfigurationFormService, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FormConfigurationFormService>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { FormConfigurationFormService } from './form-configuration-form.service';
|
|
3
|
+
export declare class FormConfigurationUtilityService {
|
|
4
|
+
formConfiguration: any;
|
|
5
|
+
fieldConfigCache: any;
|
|
6
|
+
initialize(formConfigurationFormService: FormConfigurationFormService, formCode: any): Observable<boolean>;
|
|
7
|
+
getFieldRequired(fieldCode: any): boolean;
|
|
8
|
+
getFieldEnabled(fieldCode: any): boolean;
|
|
9
|
+
getFieldConfig(fieldCode: any): any;
|
|
10
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -179,3 +179,11 @@ export * from './lib/timeline-activity/timeline-activity-button/timeline-activit
|
|
|
179
179
|
export * from './lib/timeline-activity/timeline-activity-list/timeline-activity-list.module';
|
|
180
180
|
export * from './lib/timeline-activity/timeline-activity-list/timeline-activity-list.component';
|
|
181
181
|
export * from './lib/delete-button/techlify-delete-button.component';
|
|
182
|
+
export * from './lib/form-configuration/form-configuration-form.service';
|
|
183
|
+
export * from './lib/form-configuration/form-configuration-form-field.service';
|
|
184
|
+
export * from './lib/form-configuration/form-configuration-utility.service';
|
|
185
|
+
export * from './lib/form-configuration/form-configuration-field-form/form-configuration-field-form.component';
|
|
186
|
+
export * from './lib/form-configuration/form-configuration-field-form/form-configuration-field-form.module';
|
|
187
|
+
export * from './lib/form-configuration/form-configuration-field-form/form-configuration-field-form-routing.module';
|
|
188
|
+
export * from './lib/form-configuration/form-configuration-for-form/form-configuration-for-form.component';
|
|
189
|
+
export * from './lib/form-configuration/form-configuration-for-form/form-configuration-for-form.module';
|