ng-easycommerce-v18 0.2.12 → 0.2.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.
@@ -9,6 +9,12 @@ export declare class HeaderEcComponent extends MenuEcComponent {
9
9
  transparent: boolean;
10
10
  isHome: boolean;
11
11
  isScrolled: boolean;
12
+ showPricesOnlyToLoggedUsers: boolean;
13
+ hidePrices: boolean;
14
+ private __authService;
15
+ private _channelService;
16
+ isAuthenticated$: boolean;
17
+ constructor();
12
18
  private coreConstantsService;
13
19
  private router;
14
20
  private cdr;
@@ -29,6 +29,8 @@ export declare class ProductDetailEcComponent {
29
29
  reset: boolean;
30
30
  success: boolean;
31
31
  categories: any[];
32
+ showPricesOnlyToLoggedUsers: boolean;
33
+ hidePrices: boolean;
32
34
  quantity: WritableSignal<number>;
33
35
  isAddingToCart: WritableSignal<boolean>;
34
36
  parameters$: Observable<Parameter[] | null>;
@@ -1,4 +1,4 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
1
+ import { EventEmitter, OnInit, Injector } from '@angular/core';
2
2
  import { Product } from '../../interfaces';
3
3
  import * as i0 from "@angular/core";
4
4
  /**
@@ -6,6 +6,7 @@ import * as i0 from "@angular/core";
6
6
  * @class ProductEcComponent
7
7
  */
8
8
  export declare class ProductEcComponent implements OnInit {
9
+ injector: Injector;
9
10
  /**
10
11
  * Datos del producto.
11
12
  */
@@ -20,6 +21,11 @@ export declare class ProductEcComponent implements OnInit {
20
21
  loaded: EventEmitter<number>;
21
22
  isCollection: boolean;
22
23
  ngOnInit(): void;
24
+ showPricesOnlyToLoggedUsers: boolean;
25
+ hidePrices: boolean;
26
+ private _authService;
27
+ isAuthenticated$: boolean;
28
+ constructor();
23
29
  private consts;
24
30
  private analyticsService;
25
31
  private router;
@@ -27,6 +27,7 @@ export declare class PriceEcComponent implements OnInit {
27
27
  hideTaxes: boolean;
28
28
  showPricesOnlyToLoggedUsers: boolean;
29
29
  logged: boolean;
30
+ hidePrices: boolean;
30
31
  ngOnInit(): void;
31
32
  /** Determina si mostrar la sección de impuestos */
32
33
  get shouldShowTaxes(): boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ng-easycommerce-v18",
3
- "version": "0.2.12",
3
+ "version": "0.2.13",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^18.2.0",
6
6
  "@angular/core": "^18.2.0"