ngx-wapp-components 3.2.34 → 3.2.35-alpha.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ngx-wapp-components",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.35-alpha.2",
|
|
4
4
|
"description": "This is a Wapping reusable component library published by Wapping.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"code",
|
|
@@ -58,5 +58,6 @@
|
|
|
58
58
|
"types": "./types/ngx-wapp-components.d.ts",
|
|
59
59
|
"default": "./fesm2022/ngx-wapp-components.mjs"
|
|
60
60
|
}
|
|
61
|
-
}
|
|
62
|
-
|
|
61
|
+
},
|
|
62
|
+
"type": "module"
|
|
63
|
+
}
|
|
@@ -3879,6 +3879,7 @@ interface WappingService {
|
|
|
3879
3879
|
fromWallet: boolean;
|
|
3880
3880
|
dataReqToSendCard?: DataReqToSendCard;
|
|
3881
3881
|
stampBookletConfig?: StampBookletConfig;
|
|
3882
|
+
enumRedeemableServiceTypeId?: number;
|
|
3882
3883
|
}
|
|
3883
3884
|
|
|
3884
3885
|
interface WappingServiceTranslations {
|
|
@@ -3896,6 +3897,11 @@ interface WappingServiceTranslations {
|
|
|
3896
3897
|
yourNumbers?: string;
|
|
3897
3898
|
}
|
|
3898
3899
|
|
|
3900
|
+
interface RedeemService {
|
|
3901
|
+
redeemWappingServiceId: number;
|
|
3902
|
+
redeemableServiceTypeId?: number;
|
|
3903
|
+
}
|
|
3904
|
+
|
|
3899
3905
|
declare class WMaterialServiceCardComponent implements OnChanges {
|
|
3900
3906
|
private route;
|
|
3901
3907
|
private matIconRegistry;
|
|
@@ -3920,7 +3926,11 @@ declare class WMaterialServiceCardComponent implements OnChanges {
|
|
|
3920
3926
|
croppedDialogTranslations: any;
|
|
3921
3927
|
onDefaultImageEvent: EventEmitter<WFileB64>;
|
|
3922
3928
|
isNoImage: boolean;
|
|
3929
|
+
imageSrc: any;
|
|
3923
3930
|
onHoverImageTooltip: any;
|
|
3931
|
+
redeemService: any;
|
|
3932
|
+
loadingRedeemService: boolean;
|
|
3933
|
+
redeemServiceClicked: EventEmitter<RedeemService>;
|
|
3924
3934
|
ref: DynamicDialogRef<WImageCropperComponent> | null;
|
|
3925
3935
|
constructor(route: Router, matIconRegistry: MatIconRegistry, domSanitizer: DomSanitizer, dialogService: DialogService);
|
|
3926
3936
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -3928,10 +3938,12 @@ declare class WMaterialServiceCardComponent implements OnChanges {
|
|
|
3928
3938
|
cardOnClick(service: WappingService): void;
|
|
3929
3939
|
hasHtml(value: any): boolean;
|
|
3930
3940
|
setImage(): void;
|
|
3931
|
-
getImage():
|
|
3941
|
+
getImage(): any;
|
|
3942
|
+
private resolveImage;
|
|
3932
3943
|
isWFileImage(obj: WFileB64 | string): boolean;
|
|
3944
|
+
redeemServiceClick(): void;
|
|
3933
3945
|
static ɵfac: i0.ɵɵFactoryDeclaration<WMaterialServiceCardComponent, never>;
|
|
3934
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WMaterialServiceCardComponent, "w-material-service-card", never, { "isDevModeActive": { "alias": "isDevModeActive"; "required": false; }; "wappingServicesTranslations": { "alias": "wappingServicesTranslations"; "required": false; }; "wappingService": { "alias": "wappingService"; "required": false; }; "defaultImage": { "alias": "defaultImage"; "required": false; }; "croppedImageConfiguration": { "alias": "croppedImageConfiguration"; "required": false; }; "croppedDialogTranslations": { "alias": "croppedDialogTranslations"; "required": false; }; "onHoverImageTooltip": { "alias": "onHoverImageTooltip"; "required": false; }; }, { "cardClicked": "cardClicked"; "onDefaultImageEvent": "onDefaultImageEvent"; }, never, never, false, never>;
|
|
3946
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WMaterialServiceCardComponent, "w-material-service-card", never, { "isDevModeActive": { "alias": "isDevModeActive"; "required": false; }; "wappingServicesTranslations": { "alias": "wappingServicesTranslations"; "required": false; }; "wappingService": { "alias": "wappingService"; "required": false; }; "defaultImage": { "alias": "defaultImage"; "required": false; }; "croppedImageConfiguration": { "alias": "croppedImageConfiguration"; "required": false; }; "croppedDialogTranslations": { "alias": "croppedDialogTranslations"; "required": false; }; "onHoverImageTooltip": { "alias": "onHoverImageTooltip"; "required": false; }; "redeemService": { "alias": "redeemService"; "required": false; }; "loadingRedeemService": { "alias": "loadingRedeemService"; "required": false; }; }, { "cardClicked": "cardClicked"; "onDefaultImageEvent": "onDefaultImageEvent"; "redeemServiceClicked": "redeemServiceClicked"; }, never, never, false, never>;
|
|
3935
3947
|
}
|
|
3936
3948
|
|
|
3937
3949
|
interface DirectLotteryParticipationsDto {
|