ng-easycommerce-v18 0.1.1 → 0.1.2
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/constants/core.constants.service.mjs +2 -1
- package/esm2022/lib/ec-components/blocks-ec/block-form-contact-ec/block-form-contact-ec.component.mjs +4 -3
- package/fesm2022/ng-easycommerce-v18.mjs +3 -2
- package/fesm2022/ng-easycommerce-v18.mjs.map +1 -1
- package/lib/constants/core.constants.service.d.ts +1 -0
- package/lib/ec-components/blocks-ec/block-form-contact-ec/block-form-contact-ec.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -118,6 +118,7 @@ export declare class CoreConstantsService {
|
|
|
118
118
|
setParamsProductsWithUniqueVariant: (value: ParamsProductsWithUniqueVariant) => void;
|
|
119
119
|
getParamsProductsWithUniqueVariant: () => ParamsProductsWithUniqueVariant;
|
|
120
120
|
getChannel(): string;
|
|
121
|
+
form_sender: boolean;
|
|
121
122
|
static ɵfac: i0.ɵɵFactoryDeclaration<CoreConstantsService, never>;
|
|
122
123
|
static ɵprov: i0.ɵɵInjectableDeclaration<CoreConstantsService>;
|
|
123
124
|
}
|
package/lib/ec-components/blocks-ec/block-form-contact-ec/block-form-contact-ec.component.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { FormGroup } from '@angular/forms';
|
|
2
2
|
import { BlockEcComponent } from '../../abstractions-components';
|
|
3
|
+
import { CoreConstantsService } from '../../../constants';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class BlockFormContactEcComponent extends BlockEcComponent {
|
|
5
6
|
block: any;
|
|
@@ -10,9 +11,9 @@ export declare class BlockFormContactEcComponent extends BlockEcComponent {
|
|
|
10
11
|
private _toastService;
|
|
11
12
|
private _formBuilder;
|
|
12
13
|
private _router;
|
|
14
|
+
_consts: CoreConstantsService;
|
|
13
15
|
protected form_data: any;
|
|
14
16
|
loading: boolean;
|
|
15
|
-
sender: boolean;
|
|
16
17
|
form: import("@angular/core").WritableSignal<FormGroup<any>>;
|
|
17
18
|
onSubmit(e: any): void;
|
|
18
19
|
sendForm(form: any, success_message: string): void;
|