ng-easycommerce-v18 0.3.8 → 0.3.10

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.
@@ -4,6 +4,6 @@ export declare class ComponentHelper {
4
4
  constructor();
5
5
  ecOnInit: (params?: {}) => void;
6
6
  ecOnConstruct: (params?: {}) => void;
7
- hasParams: (params: Params[], searched: string) => boolean;
7
+ hasParams: (params: Params[] | null | undefined, searched: string) => boolean;
8
8
  navigateOnRouter(router: Router, url: string): void;
9
9
  }
@@ -29,6 +29,12 @@ export declare class FormService {
29
29
  * @returns
30
30
  */
31
31
  sendResponse(response_obj: any): Observable<any>;
32
+ /**
33
+ * @description contiene un arreglo de string cuyo contenido son los codigos de los paises a excluir.
34
+ * @example ['GB']
35
+ */
36
+ excludedCountries: string[];
37
+ allowedCountries: string[];
32
38
  /**
33
39
  * Obtiene los paises y los guarda en un observable.
34
40
  * @returns
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ng-easycommerce-v18",
3
- "version": "0.3.8",
3
+ "version": "0.3.10",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^18.2.0",
6
6
  "@angular/core": "^18.2.0"