ngx-wapp-components 2.1.4 → 2.1.5-alpha.1

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,7 +4,8 @@ export declare enum WappingServiceType {
4
4
  Money = 3,
5
5
  Promotion = 4,
6
6
  Cuponing = 5,
7
- Post = 6
7
+ Post = 6,
8
+ Draws = 7
8
9
  }
9
10
  export declare enum WappingServiceSubtype {
10
11
  GiftCard = 1,
@@ -7,4 +7,5 @@ export interface WappingServiceTranslations {
7
7
  receivedLabel?: string;
8
8
  showMore?: string;
9
9
  title?: string;
10
+ participate?: string;
10
11
  }
@@ -18,12 +18,14 @@ export declare class WMaterialServiceViewComponent implements OnInit {
18
18
  enumSendingStatus: typeof SendingStatus;
19
19
  ecardStatus: typeof CardStatus;
20
20
  translations: any;
21
+ isDrawService: boolean;
21
22
  forceMobile: boolean;
22
23
  wappingServicesTranslations: WappingServiceTranslations;
23
24
  private _wappingService;
24
25
  set wappingService(value: WappingService);
25
26
  get wappingService(): WappingService;
26
27
  wappingServiceSelected: EventEmitter<boolean>;
28
+ participateDraw: EventEmitter<void>;
27
29
  constructor(matIconRegistry: MatIconRegistry, domSanitizer: DomSanitizer);
28
30
  ngOnInit(): void;
29
31
  getWappingService(wappService: WappingService): void;
@@ -31,6 +33,7 @@ export declare class WMaterialServiceViewComponent implements OnInit {
31
33
  getWappingServiceImages(): void;
32
34
  selectWappingService(): void;
33
35
  hasHtml(value: any): boolean;
36
+ triggerParticipate(): void;
34
37
  static ɵfac: i0.ɵɵFactoryDeclaration<WMaterialServiceViewComponent, never>;
35
- static ɵcmp: i0.ɵɵComponentDeclaration<WMaterialServiceViewComponent, "w-material-service-view", never, { "forceMobile": "forceMobile"; "wappingServicesTranslations": "wappingServicesTranslations"; "wappingService": "wappingService"; }, { "wappingServiceSelected": "wappingServiceSelected"; }, never, never, false, never>;
38
+ static ɵcmp: i0.ɵɵComponentDeclaration<WMaterialServiceViewComponent, "w-material-service-view", never, { "forceMobile": "forceMobile"; "wappingServicesTranslations": "wappingServicesTranslations"; "wappingService": "wappingService"; }, { "wappingServiceSelected": "wappingServiceSelected"; "participateDraw": "participateDraw"; }, never, never, false, never>;
36
39
  }
@@ -20,11 +20,14 @@ export declare class WappMaterialServiceViewComponent implements OnInit {
20
20
  enumSendingStatus: typeof SendingStatus;
21
21
  ecardStatus: typeof CardStatus;
22
22
  translations: any;
23
+ isDrawService: boolean;
23
24
  wappingServicesTranslations: WappingServiceTranslations;
25
+ canParticipateDraw: boolean;
24
26
  private _wappingService;
25
27
  set wappingService(value: WappingService);
26
28
  get wappingService(): WappingService;
27
29
  wappingServiceSelected: EventEmitter<boolean>;
30
+ participateDraw: EventEmitter<void>;
28
31
  constructor(matIconRegistry: MatIconRegistry, domSanitizer: DomSanitizer, materialModal: MaterialModalService);
29
32
  ngOnInit(): void;
30
33
  initWappingService(): void;
@@ -32,7 +35,8 @@ export declare class WappMaterialServiceViewComponent implements OnInit {
32
35
  getWappingServiceImages(): void;
33
36
  selectWappingService(): void;
34
37
  openModalShowMoreDescription(): void;
38
+ triggerParticipate(): void;
35
39
  isOverflown(): boolean;
36
40
  static ɵfac: i0.ɵɵFactoryDeclaration<WappMaterialServiceViewComponent, never>;
37
- static ɵcmp: i0.ɵɵComponentDeclaration<WappMaterialServiceViewComponent, "wapp-material-service-view", never, { "wappingServicesTranslations": "wappingServicesTranslations"; "wappingService": "wappingService"; }, { "wappingServiceSelected": "wappingServiceSelected"; }, never, never, false, never>;
41
+ static ɵcmp: i0.ɵɵComponentDeclaration<WappMaterialServiceViewComponent, "wapp-material-service-view", never, { "wappingServicesTranslations": "wappingServicesTranslations"; "canParticipateDraw": "canParticipateDraw"; "wappingService": "wappingService"; }, { "wappingServiceSelected": "wappingServiceSelected"; "participateDraw": "participateDraw"; }, never, never, false, never>;
38
42
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-wapp-components",
3
- "version": "2.1.4",
3
+ "version": "2.1.5-alpha.1",
4
4
  "description": "This is a Wapping reusable component library published by Wapping.",
5
5
  "keywords": [
6
6
  "code",
@@ -64,4 +64,4 @@
64
64
  "default": "./fesm2020/ngx-wapp-components.mjs"
65
65
  }
66
66
  }
67
- }
67
+ }