ngx-wapp-components 3.2.25 → 3.2.26-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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ngx-wapp-components",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.26-alpha.1",
|
|
4
4
|
"description": "This is a Wapping reusable component library published by Wapping.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"code",
|
|
@@ -60,4 +60,4 @@
|
|
|
60
60
|
}
|
|
61
61
|
},
|
|
62
62
|
"type": "module"
|
|
63
|
-
}
|
|
63
|
+
}
|
|
@@ -3820,6 +3820,9 @@ interface WappingServiceTranslations {
|
|
|
3820
3820
|
showMore?: string;
|
|
3821
3821
|
title?: string;
|
|
3822
3822
|
participate?: string;
|
|
3823
|
+
buttonService?: string;
|
|
3824
|
+
winnerDate?: string;
|
|
3825
|
+
yourNumbers?: string;
|
|
3823
3826
|
}
|
|
3824
3827
|
|
|
3825
3828
|
declare class WMaterialServiceCardComponent implements OnChanges {
|
|
@@ -3860,6 +3863,38 @@ declare class WMaterialServiceCardComponent implements OnChanges {
|
|
|
3860
3863
|
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>;
|
|
3861
3864
|
}
|
|
3862
3865
|
|
|
3866
|
+
interface DirectLotteryParticipationsDto {
|
|
3867
|
+
skyWappCardTransactionId: number;
|
|
3868
|
+
participationDate: Date;
|
|
3869
|
+
lotteryResultMessage: string;
|
|
3870
|
+
isAwarded: boolean;
|
|
3871
|
+
serviceAwardedId: number;
|
|
3872
|
+
serviceTypeAwarded: WappingServiceType;
|
|
3873
|
+
serviceSubtypeAwarded: WappingServiceSubtype;
|
|
3874
|
+
serviceAwardedName: string;
|
|
3875
|
+
serviceAwardedImage: string;
|
|
3876
|
+
}
|
|
3877
|
+
|
|
3878
|
+
interface LotteryEventNextDrawDto {
|
|
3879
|
+
lotteryEventId: number;
|
|
3880
|
+
drawDate: Date;
|
|
3881
|
+
skyWappCardTransactionIds: number[];
|
|
3882
|
+
}
|
|
3883
|
+
|
|
3884
|
+
interface LotteryEventPreviousDrawsDto {
|
|
3885
|
+
lotteryEventId: number;
|
|
3886
|
+
drawDate: Date;
|
|
3887
|
+
skyWappCardTransactionIds: number[];
|
|
3888
|
+
winningTransactionIds: number[];
|
|
3889
|
+
}
|
|
3890
|
+
|
|
3891
|
+
interface WalletLotteryParticipationsResponse {
|
|
3892
|
+
isScheduledForDraw: boolean;
|
|
3893
|
+
lotteryEventNextDraw: LotteryEventNextDrawDto;
|
|
3894
|
+
lotteryEventPreviousDraws: LotteryEventPreviousDrawsDto[];
|
|
3895
|
+
directLotteryParticipations: DirectLotteryParticipationsDto[];
|
|
3896
|
+
}
|
|
3897
|
+
|
|
3863
3898
|
declare class WMaterialServiceViewComponent implements OnInit, OnChanges {
|
|
3864
3899
|
private matIconRegistry;
|
|
3865
3900
|
private domSanitizer;
|
|
@@ -3877,12 +3912,17 @@ declare class WMaterialServiceViewComponent implements OnInit, OnChanges {
|
|
|
3877
3912
|
isStampBookletService: boolean;
|
|
3878
3913
|
forceMobile: boolean;
|
|
3879
3914
|
wappingServicesTranslations: WappingServiceTranslations;
|
|
3880
|
-
|
|
3915
|
+
disabledButtonService: boolean;
|
|
3916
|
+
showButtonService: boolean;
|
|
3917
|
+
showToggle: boolean;
|
|
3918
|
+
private _lotteryEvent;
|
|
3919
|
+
set lotteryEvent(value: WalletLotteryParticipationsResponse);
|
|
3920
|
+
get lotteryEvent(): WalletLotteryParticipationsResponse;
|
|
3881
3921
|
private _wappingService;
|
|
3882
3922
|
set wappingService(value: WappingService);
|
|
3883
3923
|
get wappingService(): WappingService;
|
|
3884
3924
|
wappingServiceSelected: EventEmitter<boolean>;
|
|
3885
|
-
|
|
3925
|
+
triggerButtonService: EventEmitter<void>;
|
|
3886
3926
|
isDevModeActive: boolean;
|
|
3887
3927
|
defaultImage: WFileB64 | string;
|
|
3888
3928
|
croppedImageConfiguration: WImageCropperData;
|
|
@@ -3891,23 +3931,28 @@ declare class WMaterialServiceViewComponent implements OnInit, OnChanges {
|
|
|
3891
3931
|
onDefaultImageEvent: EventEmitter<WFileB64>;
|
|
3892
3932
|
isNoImage: boolean;
|
|
3893
3933
|
onHoverImageTooltip: string;
|
|
3934
|
+
firstParticipation: boolean;
|
|
3935
|
+
isDraw: boolean;
|
|
3936
|
+
hasParticipations: boolean;
|
|
3937
|
+
disabledParticipationsModal: boolean;
|
|
3894
3938
|
ref: DynamicDialogRef<WImageCropperComponent> | null;
|
|
3895
3939
|
constructor(matIconRegistry: MatIconRegistry, domSanitizer: DomSanitizer, dialogService: DialogService);
|
|
3896
3940
|
ngOnInit(): void;
|
|
3897
3941
|
ngOnChanges(changes: SimpleChanges): void;
|
|
3898
3942
|
getWappingService(wappService: WappingService): void;
|
|
3943
|
+
evaluateDraw(): void;
|
|
3899
3944
|
getWappingServiceTiles(service: WappingService): void;
|
|
3900
3945
|
getWappingServiceImages(): void;
|
|
3901
3946
|
selectWappingService(): void;
|
|
3902
3947
|
hasHtml(value: any): boolean;
|
|
3903
|
-
|
|
3948
|
+
pressButtonService(): void;
|
|
3904
3949
|
setImage(): void;
|
|
3905
3950
|
getImage(): {
|
|
3906
3951
|
path: string | WFileB64;
|
|
3907
3952
|
}[];
|
|
3908
3953
|
isWFileImage(obj: WFileB64 | string): boolean;
|
|
3909
3954
|
static ɵfac: i0.ɵɵFactoryDeclaration<WMaterialServiceViewComponent, never>;
|
|
3910
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WMaterialServiceViewComponent, "w-material-service-view", never, { "forceMobile": { "alias": "forceMobile"; "required": false; }; "wappingServicesTranslations": { "alias": "wappingServicesTranslations"; "required": false; }; "
|
|
3955
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WMaterialServiceViewComponent, "w-material-service-view", never, { "forceMobile": { "alias": "forceMobile"; "required": false; }; "wappingServicesTranslations": { "alias": "wappingServicesTranslations"; "required": false; }; "disabledButtonService": { "alias": "disabledButtonService"; "required": false; }; "showButtonService": { "alias": "showButtonService"; "required": false; }; "showToggle": { "alias": "showToggle"; "required": false; }; "lotteryEvent": { "alias": "lotteryEvent"; "required": false; }; "wappingService": { "alias": "wappingService"; "required": false; }; "isDevModeActive": { "alias": "isDevModeActive"; "required": false; }; "defaultImage": { "alias": "defaultImage"; "required": false; }; "croppedImageConfiguration": { "alias": "croppedImageConfiguration"; "required": false; }; "croppedDialogTranslations": { "alias": "croppedDialogTranslations"; "required": false; }; "isNoImage": { "alias": "isNoImage"; "required": false; }; "onHoverImageTooltip": { "alias": "onHoverImageTooltip"; "required": false; }; }, { "wappingServiceSelected": "wappingServiceSelected"; "triggerButtonService": "triggerButtonService"; "onDefaultImageEvent": "onDefaultImageEvent"; }, never, never, false, never>;
|
|
3911
3956
|
}
|
|
3912
3957
|
|
|
3913
3958
|
declare class WappMaterialServiceCardComponent {
|
|
@@ -3967,25 +4012,34 @@ declare class WappMaterialServiceViewComponent implements OnInit {
|
|
|
3967
4012
|
enumSendingStatus: typeof SendingStatus;
|
|
3968
4013
|
ecardStatus: typeof CardStatus;
|
|
3969
4014
|
translations: any;
|
|
3970
|
-
isDrawService: boolean;
|
|
3971
4015
|
wappingServicesTranslations: WappingServiceTranslations;
|
|
3972
|
-
|
|
4016
|
+
disabledButtonService: boolean;
|
|
4017
|
+
showButtonService: boolean;
|
|
4018
|
+
showToggle: boolean;
|
|
4019
|
+
private _lotteryEvent;
|
|
4020
|
+
set lotteryEvent(value: WalletLotteryParticipationsResponse);
|
|
4021
|
+
get lotteryEvent(): WalletLotteryParticipationsResponse;
|
|
3973
4022
|
private _wappingService;
|
|
3974
4023
|
set wappingService(value: WappingService);
|
|
3975
4024
|
get wappingService(): WappingService;
|
|
3976
4025
|
wappingServiceSelected: EventEmitter<boolean>;
|
|
3977
|
-
|
|
4026
|
+
triggerButtonService: EventEmitter<void>;
|
|
4027
|
+
firstParticipation: boolean;
|
|
4028
|
+
isDraw: boolean;
|
|
4029
|
+
hasParticipations: boolean;
|
|
4030
|
+
disabledParticipationsModal: boolean;
|
|
3978
4031
|
constructor(matIconRegistry: MatIconRegistry, domSanitizer: DomSanitizer, materialModal: MaterialModalService);
|
|
3979
4032
|
ngOnInit(): void;
|
|
3980
4033
|
initWappingService(): void;
|
|
4034
|
+
evaluateDraw(): void;
|
|
3981
4035
|
getWappingServiceTiles(): void;
|
|
3982
4036
|
getWappingServiceImages(): void;
|
|
3983
4037
|
selectWappingService(): void;
|
|
3984
4038
|
openModalShowMoreDescription(): void;
|
|
3985
|
-
|
|
4039
|
+
pressButtonService(): void;
|
|
3986
4040
|
isOverflown(): boolean;
|
|
3987
4041
|
static ɵfac: i0.ɵɵFactoryDeclaration<WappMaterialServiceViewComponent, never>;
|
|
3988
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WappMaterialServiceViewComponent, "wapp-material-service-view", never, { "wappingServicesTranslations": { "alias": "wappingServicesTranslations"; "required": false; }; "
|
|
4042
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WappMaterialServiceViewComponent, "wapp-material-service-view", never, { "wappingServicesTranslations": { "alias": "wappingServicesTranslations"; "required": false; }; "disabledButtonService": { "alias": "disabledButtonService"; "required": false; }; "showButtonService": { "alias": "showButtonService"; "required": false; }; "showToggle": { "alias": "showToggle"; "required": false; }; "lotteryEvent": { "alias": "lotteryEvent"; "required": false; }; "wappingService": { "alias": "wappingService"; "required": false; }; }, { "wappingServiceSelected": "wappingServiceSelected"; "triggerButtonService": "triggerButtonService"; }, never, never, false, never>;
|
|
3989
4043
|
}
|
|
3990
4044
|
|
|
3991
4045
|
declare class MainTitleComponent implements OnInit {
|
|
@@ -4263,4 +4317,4 @@ interface WappTableActionButtonResponse {
|
|
|
4263
4317
|
}
|
|
4264
4318
|
|
|
4265
4319
|
export { AddressEnum, CONTROL_VALUE_ACCESSOR, CardStatus, CarouselComponent, ClipboardService, ColorService, ColorTextPipe, CronCharactersType, CronFieldType, CronPeriodicityType, CustomColor, DataTypeEnum, DateConversionService, FileService, FormControlService, MainTitleComponent, ModalService, NotificationsEventEnum, NumberConversionService, OperatorEnum, PeriodSelectEnum, QBDataTypeEnum, QueryArrowIconDirective, QueryBuilderComponent, QueryButtonGroupDirective, QueryEmptyWarningDirective, QueryEntityDirective, QueryFieldDirective, QueryInputDirective, QueryOperatorDirective, QueryRemoveButtonDirective, QueryResultType, QuerySwitchGroupDirective, SendingStatus, SessionStorageService, TableColumnFilterTypes, TableColumnTypes, TreeService, TypeMedia, VALIDATOR, WAddressFieldComponent, WAutocompleteSearchComponent, WBadgeComponent, WBodyComponent, WBodyContainerComponent, WBodyGridComponent, WButtonComponent, WButtonTabviewComponent, WButtonWeekComponent, WButtonsFooterComponent, WCardComponent, WChartBarComponent, WChipComponent, WClipboardComponent, WCodeBlockComponent, WContainerComponent, WCronExpressionsComponent, WCurrencyPipe, WDataviewComponent, WDatePipe, WDatePipeFormatType, WDatePipeReturnType, WEditCalendarComponent, WEditCalendarMonthComponent, WEditCheckboxComponent, WEditInputColorpickerComponent, WEditInputNumberComponent, WEditInputTextComponent, WEditInputTextareaComponent, WEditMultiselectComponent, WEditSelectComponent, WEditToggleComponent, WEditTreeselectComponent, WFileGeneratorComponent, WFileUploaderComponent, WFilterPanelComponent, WFooterComponent, WHeaderPanelComponent, WIconsComponent, WImageCropperComponent, WImageFileUploaderComponent, WInputLabelComponent, WInputSearchComponent, WInputVerticalGapDividerComponent, WLogosComponent, WMapsComponent, WMaterialServiceCardComponent, WMaterialServiceViewComponent, WNavbarComponent, WNotificationsEventFieldComponent, WPanelComponent, WPanelGridComponent, WPanelSectionGapDividerComponent, WPanelSubtitleComponent, WPanelTitleComponent, WParameterSelectorComponent, WPercentagePipe, WPowerbiReportComponent, WPreviewImageComponent, WRadioButtonComponent, WSelectButtonComponent, WSidebarComponent, WSkeletonEditComponent, WSkeletonEditProductComponent, WSkeletonFormComponent, WSkeletonGenericComponent, WSkeletonIframeComponent, WSkeletonInputGenericComponent, WSkeletonListComponent, WSkeletonPowerbiReportComponent, WSkeletonProfileSidebarComponent, WSkeletonQueryBuilderComponent, WSkeletonSidebarComponent, WSkeletonTimelineComponent, WSkeletonTreeComponent, WSkeletonUserProfileInfoSidebarComponent, WStampBookletComponent, WSummaryPipe, WTableComponent, WTableLazyComponent, WTabviewComponent, WTimelineComponent, WToggleButtonComponent, WTreeComponent, WTreeFieldComponent, WTreeTableComponent, WViewBadgeComponent, WViewBooleanComponent, WViewTextComponent, WWizardComponent, WappComponentsComponent, WappComponentsModule, WappComponentsService, WappMaterialServiceCardComponent, WappMaterialServiceViewComponent, WappModalCloseButtonComponent, WappModalTitleComponent, WappServiceDescriptionComponent, WappTableColumnAlignTypes, WappingServiceAppViewType, WappingServiceSubtype, WappingServiceType };
|
|
4266
|
-
export type { ActionButton$1 as ActionButton, ActionButtonResponse$1 as ActionButtonResponse, ArrowIconContext, ButtonGroupContext, ChartConfig, CronComponentTranslations, EmbedConfig, EmptyWarningContext, Entity, EntityContext, EntityMap, Field, FieldContext, FieldMap, Filter, FilterPanelTranslations, ImageB64, InputContext, LazyElementQueryRequest, LocalRuleMeta, ModalSize$1 as ModalSize, NullableOption, OperatorContext, Option, ParameterSelector, PlatformEventsGroups, QueryBuilderClassNames, QueryBuilderConfig, QueryResults, RemoveButtonContext, Rule, RuleSet, StampBookletConfig, SwitchGroupContext, TableColoredBadge, TableEnumIcon, WAddress, WAddressMaps, WFileAttachment, WFileB64, WFileUploaderConfig, WFileUploaderDataSheetResponse, WImageCropperData, WImageFileUploaderConfig, WSelectButtonState, WTreeTable, WTreeTableColumn, WappTable, WappTableActionButtonResponse, WappTableLazyLoading, WappTableLazyTooltips, WappTableTooltips, WappingService, WappingServiceItemView };
|
|
4320
|
+
export type { ActionButton$1 as ActionButton, ActionButtonResponse$1 as ActionButtonResponse, ArrowIconContext, ButtonGroupContext, ChartConfig, CronComponentTranslations, DirectLotteryParticipationsDto, EmbedConfig, EmptyWarningContext, Entity, EntityContext, EntityMap, Field, FieldContext, FieldMap, Filter, FilterPanelTranslations, ImageB64, InputContext, LazyElementQueryRequest, LocalRuleMeta, LotteryEventNextDrawDto, LotteryEventPreviousDrawsDto, ModalSize$1 as ModalSize, NullableOption, OperatorContext, Option, ParameterSelector, PlatformEventsGroups, QueryBuilderClassNames, QueryBuilderConfig, QueryResults, RemoveButtonContext, Rule, RuleSet, StampBookletConfig, SwitchGroupContext, TableColoredBadge, TableEnumIcon, WAddress, WAddressMaps, WFileAttachment, WFileB64, WFileUploaderConfig, WFileUploaderDataSheetResponse, WImageCropperData, WImageFileUploaderConfig, WSelectButtonState, WTreeTable, WTreeTableColumn, WalletLotteryParticipationsResponse, WappTable, WappTableActionButtonResponse, WappTableLazyLoading, WappTableLazyTooltips, WappTableTooltips, WappingService, WappingServiceItemView };
|