ngx-wapp-components 3.2.5-alpha.2 → 3.2.6
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.6",
|
|
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
|
+
}
|
|
@@ -3681,6 +3681,8 @@ interface WappingServiceTemplate {
|
|
|
3681
3681
|
summaryHeader: string;
|
|
3682
3682
|
summaryBodyHasParameters: boolean;
|
|
3683
3683
|
summaryBody: string;
|
|
3684
|
+
summaryFootHasParameters: boolean;
|
|
3685
|
+
summaryFoot: string;
|
|
3684
3686
|
detailTitleHasParameters: boolean;
|
|
3685
3687
|
detailTitle: string;
|
|
3686
3688
|
detailHeaderHasParameters: boolean;
|
|
@@ -3753,9 +3755,6 @@ interface WappingServiceTranslations {
|
|
|
3753
3755
|
showMore?: string;
|
|
3754
3756
|
title?: string;
|
|
3755
3757
|
participate?: string;
|
|
3756
|
-
buttonService?: string;
|
|
3757
|
-
winnerDate?: string;
|
|
3758
|
-
yourNumbers?: string;
|
|
3759
3758
|
}
|
|
3760
3759
|
|
|
3761
3760
|
declare class WMaterialServiceCardComponent implements OnChanges {
|
|
@@ -3796,38 +3795,6 @@ declare class WMaterialServiceCardComponent implements OnChanges {
|
|
|
3796
3795
|
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>;
|
|
3797
3796
|
}
|
|
3798
3797
|
|
|
3799
|
-
interface DirectLotteryParticipationsDto {
|
|
3800
|
-
skyWappCardTransactionId: number;
|
|
3801
|
-
participationDate: Date;
|
|
3802
|
-
lotteryResultMessage: string;
|
|
3803
|
-
isAwarded: boolean;
|
|
3804
|
-
serviceAwardedId: number;
|
|
3805
|
-
serviceTypeAwarded: WappingServiceType;
|
|
3806
|
-
serviceSubtypeAwarded: WappingServiceSubtype;
|
|
3807
|
-
serviceAwardedName: string;
|
|
3808
|
-
serviceAwardedImage: string;
|
|
3809
|
-
}
|
|
3810
|
-
|
|
3811
|
-
interface LotteryEventNextDrawDto {
|
|
3812
|
-
lotteryEventId: number;
|
|
3813
|
-
drawDate: Date;
|
|
3814
|
-
skyWappCardTransactionIds: number[];
|
|
3815
|
-
}
|
|
3816
|
-
|
|
3817
|
-
interface LotteryEventPreviousDrawsDto {
|
|
3818
|
-
lotteryEventId: number;
|
|
3819
|
-
drawDate: Date;
|
|
3820
|
-
skyWappCardTransactionIds: number[];
|
|
3821
|
-
winningTransactionIds: number[];
|
|
3822
|
-
}
|
|
3823
|
-
|
|
3824
|
-
interface WalletLotteryParticipationsResponse {
|
|
3825
|
-
isScheduledForDraw: boolean;
|
|
3826
|
-
lotteryEventNextDraw: LotteryEventNextDrawDto;
|
|
3827
|
-
lotteryEventPreviousDraws: LotteryEventPreviousDrawsDto[];
|
|
3828
|
-
directLotteryParticipations: DirectLotteryParticipationsDto[];
|
|
3829
|
-
}
|
|
3830
|
-
|
|
3831
3798
|
declare class WMaterialServiceViewComponent implements OnInit, OnChanges {
|
|
3832
3799
|
private matIconRegistry;
|
|
3833
3800
|
private domSanitizer;
|
|
@@ -3841,19 +3808,15 @@ declare class WMaterialServiceViewComponent implements OnInit, OnChanges {
|
|
|
3841
3808
|
enumSendingStatus: typeof SendingStatus;
|
|
3842
3809
|
ecardStatus: typeof CardStatus;
|
|
3843
3810
|
translations: any;
|
|
3811
|
+
isDrawService: boolean;
|
|
3844
3812
|
forceMobile: boolean;
|
|
3845
3813
|
wappingServicesTranslations: WappingServiceTranslations;
|
|
3846
|
-
|
|
3847
|
-
showButtonService: boolean;
|
|
3848
|
-
showToggle: boolean;
|
|
3849
|
-
private _lotteryEvent;
|
|
3850
|
-
set lotteryEvent(value: WalletLotteryParticipationsResponse);
|
|
3851
|
-
get lotteryEvent(): WalletLotteryParticipationsResponse;
|
|
3814
|
+
canParticipateDraw: boolean;
|
|
3852
3815
|
private _wappingService;
|
|
3853
3816
|
set wappingService(value: WappingService);
|
|
3854
3817
|
get wappingService(): WappingService;
|
|
3855
3818
|
wappingServiceSelected: EventEmitter<boolean>;
|
|
3856
|
-
|
|
3819
|
+
participateDraw: EventEmitter<void>;
|
|
3857
3820
|
isDevModeActive: boolean;
|
|
3858
3821
|
defaultImage: WFileB64 | string;
|
|
3859
3822
|
croppedImageConfiguration: WImageCropperData;
|
|
@@ -3862,28 +3825,23 @@ declare class WMaterialServiceViewComponent implements OnInit, OnChanges {
|
|
|
3862
3825
|
onDefaultImageEvent: EventEmitter<WFileB64>;
|
|
3863
3826
|
isNoImage: boolean;
|
|
3864
3827
|
onHoverImageTooltip: string;
|
|
3865
|
-
firstParticipation: boolean;
|
|
3866
|
-
isDraw: boolean;
|
|
3867
|
-
hasParticipations: boolean;
|
|
3868
|
-
disabledParticipationsModal: boolean;
|
|
3869
3828
|
ref: DynamicDialogRef<WImageCropperComponent> | null;
|
|
3870
3829
|
constructor(matIconRegistry: MatIconRegistry, domSanitizer: DomSanitizer, dialogService: DialogService);
|
|
3871
3830
|
ngOnInit(): void;
|
|
3872
3831
|
ngOnChanges(changes: SimpleChanges): void;
|
|
3873
3832
|
getWappingService(wappService: WappingService): void;
|
|
3874
|
-
evaluateDraw(): void;
|
|
3875
3833
|
getWappingServiceTiles(service: WappingService): void;
|
|
3876
3834
|
getWappingServiceImages(): void;
|
|
3877
3835
|
selectWappingService(): void;
|
|
3878
3836
|
hasHtml(value: any): boolean;
|
|
3879
|
-
|
|
3837
|
+
triggerParticipate(): void;
|
|
3880
3838
|
setImage(): void;
|
|
3881
3839
|
getImage(): {
|
|
3882
3840
|
path: string | WFileB64;
|
|
3883
3841
|
}[];
|
|
3884
3842
|
isWFileImage(obj: WFileB64 | string): boolean;
|
|
3885
3843
|
static ɵfac: i0.ɵɵFactoryDeclaration<WMaterialServiceViewComponent, never>;
|
|
3886
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WMaterialServiceViewComponent, "w-material-service-view", never, { "forceMobile": { "alias": "forceMobile"; "required": false; }; "wappingServicesTranslations": { "alias": "wappingServicesTranslations"; "required": false; }; "
|
|
3844
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WMaterialServiceViewComponent, "w-material-service-view", never, { "forceMobile": { "alias": "forceMobile"; "required": false; }; "wappingServicesTranslations": { "alias": "wappingServicesTranslations"; "required": false; }; "canParticipateDraw": { "alias": "canParticipateDraw"; "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"; "participateDraw": "participateDraw"; "onDefaultImageEvent": "onDefaultImageEvent"; }, never, never, false, never>;
|
|
3887
3845
|
}
|
|
3888
3846
|
|
|
3889
3847
|
declare class WappMaterialServiceCardComponent {
|
|
@@ -3943,34 +3901,25 @@ declare class WappMaterialServiceViewComponent implements OnInit {
|
|
|
3943
3901
|
enumSendingStatus: typeof SendingStatus;
|
|
3944
3902
|
ecardStatus: typeof CardStatus;
|
|
3945
3903
|
translations: any;
|
|
3904
|
+
isDrawService: boolean;
|
|
3946
3905
|
wappingServicesTranslations: WappingServiceTranslations;
|
|
3947
|
-
|
|
3948
|
-
showButtonService: boolean;
|
|
3949
|
-
showToggle: boolean;
|
|
3950
|
-
private _lotteryEvent;
|
|
3951
|
-
set lotteryEvent(value: WalletLotteryParticipationsResponse);
|
|
3952
|
-
get lotteryEvent(): WalletLotteryParticipationsResponse;
|
|
3906
|
+
canParticipateDraw: boolean;
|
|
3953
3907
|
private _wappingService;
|
|
3954
3908
|
set wappingService(value: WappingService);
|
|
3955
3909
|
get wappingService(): WappingService;
|
|
3956
3910
|
wappingServiceSelected: EventEmitter<boolean>;
|
|
3957
|
-
|
|
3958
|
-
firstParticipation: boolean;
|
|
3959
|
-
isDraw: boolean;
|
|
3960
|
-
hasParticipations: boolean;
|
|
3961
|
-
disabledParticipationsModal: boolean;
|
|
3911
|
+
participateDraw: EventEmitter<void>;
|
|
3962
3912
|
constructor(matIconRegistry: MatIconRegistry, domSanitizer: DomSanitizer, materialModal: MaterialModalService);
|
|
3963
3913
|
ngOnInit(): void;
|
|
3964
3914
|
initWappingService(): void;
|
|
3965
|
-
evaluateDraw(): void;
|
|
3966
3915
|
getWappingServiceTiles(): void;
|
|
3967
3916
|
getWappingServiceImages(): void;
|
|
3968
3917
|
selectWappingService(): void;
|
|
3969
3918
|
openModalShowMoreDescription(): void;
|
|
3970
|
-
|
|
3919
|
+
triggerParticipate(): void;
|
|
3971
3920
|
isOverflown(): boolean;
|
|
3972
3921
|
static ɵfac: i0.ɵɵFactoryDeclaration<WappMaterialServiceViewComponent, never>;
|
|
3973
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WappMaterialServiceViewComponent, "wapp-material-service-view", never, { "wappingServicesTranslations": { "alias": "wappingServicesTranslations"; "required": false; }; "
|
|
3922
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WappMaterialServiceViewComponent, "wapp-material-service-view", never, { "wappingServicesTranslations": { "alias": "wappingServicesTranslations"; "required": false; }; "canParticipateDraw": { "alias": "canParticipateDraw"; "required": false; }; "wappingService": { "alias": "wappingService"; "required": false; }; }, { "wappingServiceSelected": "wappingServiceSelected"; "participateDraw": "participateDraw"; }, never, never, false, never>;
|
|
3974
3923
|
}
|
|
3975
3924
|
|
|
3976
3925
|
declare class MainTitleComponent implements OnInit {
|
|
@@ -4219,4 +4168,4 @@ interface WappTableActionButtonResponse {
|
|
|
4219
4168
|
}
|
|
4220
4169
|
|
|
4221
4170
|
export { AddressEnum, CONTROL_VALUE_ACCESSOR, CardStatus, CarouselComponent, ClipboardService, 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, 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 };
|
|
4222
|
-
export type { ActionButton$1 as ActionButton, ActionButtonResponse$1 as ActionButtonResponse, ArrowIconContext, ButtonGroupContext, ChartConfig, CronComponentTranslations,
|
|
4171
|
+
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, SwitchGroupContext, TableColoredBadge, TableEnumIcon, WAddress, WAddressMaps, WFileAttachment, WFileB64, WFileUploaderConfig, WFileUploaderDataSheetResponse, WImageCropperData, WImageFileUploaderConfig, WSelectButtonState, WTreeTable, WTreeTableColumn, WappTable, WappTableActionButtonResponse, WappTableLazyLoading, WappTableLazyTooltips, WappTableTooltips, WappingService, WappingServiceItemView };
|