ngx-techlify-core 18.40.0 → 18.41.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/base-model/techlify-form-component.class.mjs +16 -3
- package/esm2022/lib/techlify-icon/techlify-icon.component.mjs +4 -2
- package/fesm2022/ngx-techlify-core.mjs +18 -3
- package/fesm2022/ngx-techlify-core.mjs.map +1 -1
- package/lib/base-model/techlify-form-component.class.d.ts +8 -0
- package/package.json +1 -1
|
@@ -30,7 +30,15 @@ export declare abstract class TechlifyFormComponentInterface {
|
|
|
30
30
|
success: EventEmitter<any>;
|
|
31
31
|
protected alertService: AlertService;
|
|
32
32
|
constructor(formValidatorService: FormValidatorService, service?: TechlifyServiceBaseClass);
|
|
33
|
+
/**
|
|
34
|
+
* Submits the form
|
|
35
|
+
* @param model form model optional, if needed to be overriden
|
|
36
|
+
* @returns
|
|
37
|
+
*/
|
|
33
38
|
submit(model?: any): void;
|
|
39
|
+
/**
|
|
40
|
+
* Close the active dialog
|
|
41
|
+
*/
|
|
34
42
|
closeDialog(): void;
|
|
35
43
|
/**
|
|
36
44
|
* Resets the value of a field in the HTML form
|