ngx-payvent-shared 0.0.0

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/index.d.ts ADDED
@@ -0,0 +1,595 @@
1
+ import * as _angular_core from '@angular/core';
2
+ import { EventEmitter, OnInit, ElementRef, Renderer2, TemplateRef, PipeTransform } from '@angular/core';
3
+ import { HttpClient } from '@angular/common/http';
4
+ import * as rxjs from 'rxjs';
5
+ import { Observable, Subject, Subscription } from 'rxjs';
6
+ import { ActivatedRoute, Router } from '@angular/router';
7
+ import * as bowser from 'bowser';
8
+ import { Location } from '@angular/common';
9
+ import { ConfirmationService, MessageService } from 'primeng/api';
10
+ import * as _angular_platform_browser from '@angular/platform-browser';
11
+ import { SafeHtml, DomSanitizer } from '@angular/platform-browser';
12
+
13
+ declare class FlowAppConfig {
14
+ production: boolean;
15
+ application_id: string;
16
+ groupId: string;
17
+ client_id: string;
18
+ endpoints: any;
19
+ signalr_hubname: string;
20
+ identityserver_scopes: string;
21
+ defaultLanguage: string;
22
+ forceOrigin: string;
23
+ facebook: any;
24
+ google: any;
25
+ apple: any;
26
+ fbPixel: string;
27
+ }
28
+
29
+ declare class GlobalService {
30
+ onSuccess: EventEmitter<any>;
31
+ onError: EventEmitter<any>;
32
+ showLoader: boolean;
33
+ currentLanguage: _angular_core.WritableSignal<string>;
34
+ currentEditLanguage: _angular_core.WritableSignal<string>;
35
+ datePickerOptions: any;
36
+ timePickerOptions: any;
37
+ ckEditorOptions: any;
38
+ banks: any;
39
+ loading: boolean;
40
+ sidebarOpen: boolean;
41
+ constructor();
42
+ checkPID2(pid: any): boolean;
43
+ checkDateInFutureForPID(pid: any): boolean;
44
+ isValidIBAN2(iban: any): boolean;
45
+ convert2N(iban: any): string;
46
+ GetRemainder(x: any, y: any): number;
47
+ hexToRgbA(hex: any, a: any): string;
48
+ formatString(str: string, ...val: string[]): string;
49
+ replacer(key: any, value: any): any;
50
+ reviver(key: any, value: any): any;
51
+ stripHtml(originalString: any): any;
52
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<GlobalService, never>;
53
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<GlobalService>;
54
+ }
55
+
56
+ declare class FlowCookieService {
57
+ instanceId: any;
58
+ globalService: GlobalService;
59
+ private _gdprConsent;
60
+ get gdprConsent(): string;
61
+ set gdprConsent(value: string);
62
+ constructor();
63
+ get(name: any): any;
64
+ remove(name: string): void;
65
+ put(name: any, value: any, exp?: any): void;
66
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<FlowCookieService, never>;
67
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<FlowCookieService>;
68
+ }
69
+
70
+ declare class FlowHttpClient {
71
+ http: HttpClient;
72
+ cookieService: FlowCookieService;
73
+ globalService: GlobalService;
74
+ route: ActivatedRoute;
75
+ router: Router;
76
+ loading: number;
77
+ private environment;
78
+ pageLoadingComplete: EventEmitter<any>;
79
+ loadingSuccess: EventEmitter<any>;
80
+ pageLoadingStart: EventEmitter<any>;
81
+ loadingFailure: EventEmitter<any>;
82
+ _pageLoading: number;
83
+ private _spinLoading;
84
+ set pageLoading(value: number);
85
+ get pageLoading(): number;
86
+ recordPageLoading: boolean;
87
+ onError: EventEmitter<any>;
88
+ private _token;
89
+ get token(): string;
90
+ set token(value: string);
91
+ constructor();
92
+ get(endpoint: string, url: string, options?: any, showLoader?: boolean): Observable<any>;
93
+ delete(endpoint: string, url: string, options?: any, showLoader?: boolean): Observable<any>;
94
+ post(endpoint: string, url: string, data: any, options?: any, showLoader?: boolean): Observable<any>;
95
+ put(endpoint: string, url: string, data: any, options?: any, showLoader?: boolean): Observable<any>;
96
+ createAuthHeader(options: any): any;
97
+ serializeToQueryString(obj: any, prefix?: any): string;
98
+ serializeToQueryString2(obj: any): string;
99
+ jsUcfirst(string: any): any;
100
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<FlowHttpClient, never>;
101
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<FlowHttpClient>;
102
+ }
103
+
104
+ declare class SidebarService {
105
+ router: Router;
106
+ sidebars: _angular_core.WritableSignal<any>;
107
+ constructor(router: Router);
108
+ openSidebar(component: any, data?: any, options?: any): Promise<unknown>;
109
+ openIframeSidebar(url: any, width?: string): void;
110
+ closeSidebars(): void;
111
+ setSize(size: any, options: any): void;
112
+ closeSidebar(id: any): void;
113
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<SidebarService, never>;
114
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<SidebarService>;
115
+ }
116
+
117
+ declare class SignalrNotificationService {
118
+ private cookieService;
119
+ private userService;
120
+ private httpClient;
121
+ private activatedRoute;
122
+ router: Router;
123
+ http: FlowHttpClient;
124
+ translationService: TranslationSharedService;
125
+ globalService: GlobalService;
126
+ private connection;
127
+ messages: any[];
128
+ newMessage: any;
129
+ subscribedChannels: any[];
130
+ onNotification: EventEmitter<any>;
131
+ connectionPromise: Promise<any>;
132
+ unreadMessageCount: number;
133
+ hasMorePages: boolean;
134
+ subscription: any;
135
+ private environment;
136
+ onlineStatus: string;
137
+ statusSubscription: any;
138
+ interval: any;
139
+ onConnected: Subject<any>;
140
+ onNotificationClick: EventEmitter<any>;
141
+ coordinates: any;
142
+ simInfo: any;
143
+ get mute(): boolean;
144
+ set mute(value: boolean);
145
+ notificationArray: {
146
+ name: string;
147
+ sound: any;
148
+ }[];
149
+ constructor();
150
+ initPushNotifications(): void;
151
+ subscribePushChannels(): void;
152
+ unsubscribePushChannels(user: any): void;
153
+ getConnection(): Promise<void>;
154
+ processReplacements(text: string, strObj: string, prefix?: string): string;
155
+ preloadSounds(): void;
156
+ stopConnection(): Promise<void>;
157
+ playSound(name: any): void;
158
+ buildReplacementsArray(obj: any, prefix?: string): any[];
159
+ messagePageNo: number;
160
+ sendCurrentStatus(): Promise<void>;
161
+ getNotifications(): rxjs.Observable<any>;
162
+ setReadReceipt(): rxjs.Observable<any>;
163
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<SignalrNotificationService, never>;
164
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<SignalrNotificationService>;
165
+ }
166
+
167
+ declare class ApplicationSharedService {
168
+ private environment;
169
+ http: FlowHttpClient;
170
+ constructor();
171
+ private endpointObs;
172
+ allowedApplications: any;
173
+ _currentApplication: any;
174
+ get endpoints(): any[];
175
+ get currentApplication(): any;
176
+ set currentApplication(value: any);
177
+ getAdminClients(): Observable<any>;
178
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<ApplicationSharedService, never>;
179
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<ApplicationSharedService>;
180
+ }
181
+
182
+ declare class TranslationSharedService {
183
+ translationsLoaded: _angular_core.WritableSignal<boolean>;
184
+ onLanguageChanged: EventEmitter<any>;
185
+ onEditLanguageChanged: EventEmitter<any>;
186
+ onTranslationsLoaded: EventEmitter<any>;
187
+ onSetCountryProvinceCity: EventEmitter<any>;
188
+ private environment;
189
+ http: FlowHttpClient;
190
+ applicationService: ApplicationSharedService;
191
+ globalService: GlobalService;
192
+ cookieService: FlowCookieService;
193
+ translations: _angular_core.WritableSignal<any>;
194
+ languages: _angular_core.WritableSignal<any[]>;
195
+ countries: _angular_core.WritableSignal<any[]>;
196
+ editContent: _angular_core.WritableSignal<boolean>;
197
+ private translationObs;
198
+ countryProvinceCityPlaceholder: any[];
199
+ get endpoint(): any;
200
+ get currentLanguage(): _angular_core.WritableSignal<string>;
201
+ set currentLanguage(value: _angular_core.WritableSignal<string>);
202
+ get currentLanguageObj(): any;
203
+ constructor();
204
+ getTranslations(force?: boolean): any;
205
+ getLanguages(): rxjs.Observable<any>;
206
+ quickSaveHtmlContent(name: string, content: string): rxjs.Observable<any>;
207
+ getCountries(): rxjs.Observable<any>;
208
+ getCountry(code: any): any;
209
+ getHtmlContentByUrl(url: any): rxjs.Observable<any>;
210
+ getLocalization(): rxjs.Observable<any>;
211
+ getCountryCityPlaceholder(correlation: any): any;
212
+ setCountryCityPlaceholder(correlation: any, value: any): void;
213
+ validateCountryProvinceCity(correlation: any): void;
214
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TranslationSharedService, never>;
215
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<TranslationSharedService>;
216
+ }
217
+
218
+ declare class UserAccountService {
219
+ cookieService: FlowCookieService;
220
+ http: FlowHttpClient;
221
+ router: Router;
222
+ location: Location;
223
+ route: ActivatedRoute;
224
+ sidebarService: SidebarService;
225
+ globalService: GlobalService;
226
+ private environment;
227
+ currentUser: any;
228
+ _redirectTo: string;
229
+ source: any;
230
+ logoutTimer: any;
231
+ get browser(): bowser.default.Parser.Parser;
232
+ get redirectTo(): string;
233
+ set redirectTo(value: string);
234
+ authError: string;
235
+ onUserLoggedIn: EventEmitter<any>;
236
+ onUserLoggedOut: EventEmitter<any>;
237
+ onAccessRefused: EventEmitter<any>;
238
+ lastRouteAddress: string;
239
+ accessRefused: boolean;
240
+ get token(): any;
241
+ onFocus(event: any): void;
242
+ constructor();
243
+ currentUserObs: any;
244
+ getCurrentUser(force?: boolean): any;
245
+ processLoginResponse(res: any): void;
246
+ processLoginToken(tkk: any): rxjs.Subscription;
247
+ processOtpToken(result: any): void;
248
+ getOtp(model: any): rxjs.Observable<any>;
249
+ resendOtp(model: any): rxjs.Observable<any>;
250
+ verifyOtp(model: any): rxjs.Observable<any>;
251
+ saveUserProfile(model: any): rxjs.Observable<any>;
252
+ getCurrentUserDetails(force?: boolean): rxjs.Observable<any>;
253
+ logout(returnUrl?: string): void;
254
+ getDecodedAccessToken(token: string): any;
255
+ setLogOutTimer(): void;
256
+ userHasPermission(perm: any): any;
257
+ checkCurentUserClaims(route: any): any;
258
+ requestLoginNameChange(model: any): rxjs.Observable<any>;
259
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<UserAccountService, never>;
260
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<UserAccountService>;
261
+ }
262
+
263
+ declare class ModalService {
264
+ translationService: TranslationSharedService;
265
+ confirmationService: ConfirmationService;
266
+ messageService: MessageService;
267
+ constructor();
268
+ openConfirm(trans: any): void;
269
+ openAlert(trans: any): void;
270
+ openRawAlert(titleText: any, bodyText: any): void;
271
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<ModalService, never>;
272
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<ModalService>;
273
+ }
274
+
275
+ declare class TranslationComponent implements OnInit {
276
+ _name: _angular_core.WritableSignal<any>;
277
+ name: _angular_core.InputSignal<any>;
278
+ _replacements: _angular_core.WritableSignal<any>;
279
+ replacements: _angular_core.InputSignal<any>;
280
+ editorOpen: _angular_core.WritableSignal<boolean>;
281
+ saveSuccess: _angular_core.WritableSignal<boolean>;
282
+ editContent: _angular_core.WritableSignal<boolean>;
283
+ content: _angular_core.Signal<SafeHtml>;
284
+ editableContent: _angular_core.Signal<SafeHtml>;
285
+ translationService: TranslationSharedService;
286
+ router: Router;
287
+ sanitizer: DomSanitizer;
288
+ userService: UserAccountService;
289
+ route: ActivatedRoute;
290
+ globalService: GlobalService;
291
+ constructor();
292
+ ngOnInit(): void;
293
+ changeEdit(): void;
294
+ openEditor(): void;
295
+ closeEditor(): void;
296
+ quickSaveContent(): void;
297
+ handleSave(e: any): void;
298
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TranslationComponent, never>;
299
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TranslationComponent, "translate", never, { "name": { "alias": "name"; "required": false; "isSignal": true; }; "replacements": { "alias": "replacements"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
300
+ }
301
+
302
+ declare class LoginFormComponent implements OnInit {
303
+ context: _angular_core.ModelSignal<any>;
304
+ private myForm;
305
+ allowAccountCreation: _angular_core.InputSignal<boolean>;
306
+ tokenType: _angular_core.InputSignal<string>;
307
+ clientId: _angular_core.InputSignal<string>;
308
+ type: _angular_core.InputSignal<string>;
309
+ showError: _angular_core.WritableSignal<boolean>;
310
+ loginMessage: string;
311
+ env: any;
312
+ status: string;
313
+ cordova: any;
314
+ loginSubscription: any;
315
+ accessRefused: _angular_core.WritableSignal<boolean>;
316
+ emailSent: boolean;
317
+ verifyPhone: boolean;
318
+ provincesList: any[];
319
+ countriesList: any[];
320
+ loading: _angular_core.WritableSignal<boolean>;
321
+ otpSuccess: _angular_core.WritableSignal<boolean>;
322
+ contextResponse: any;
323
+ responseStatus: any;
324
+ otpError: _angular_core.WritableSignal<boolean>;
325
+ otpSent: any;
326
+ verified: any;
327
+ otpVerified: _angular_core.WritableSignal<boolean>;
328
+ loginToken: any;
329
+ userProfile: any;
330
+ emailOtp: any;
331
+ phoneOtp: any;
332
+ prevContext: any;
333
+ countryFlag: string;
334
+ localizationCountry: any;
335
+ selectedCountryCode: any;
336
+ phoneLoginNumber: any;
337
+ profileCountryCode: any;
338
+ currentCountry: any;
339
+ currentProvince: any;
340
+ showResend: _angular_core.WritableSignal<boolean>;
341
+ expTimestamp: any;
342
+ countdownConfig: any;
343
+ get passwordError(): "error.login-form.password" | "error.login-form.password-length";
344
+ userService: UserAccountService;
345
+ sidebarService: SidebarService;
346
+ router: Router;
347
+ http: HttpClient;
348
+ translationService: TranslationSharedService;
349
+ private environment;
350
+ httpClient: FlowHttpClient;
351
+ cookieService: FlowCookieService;
352
+ globalService: GlobalService;
353
+ constructor();
354
+ ngOnInit(): void;
355
+ ngOnDestroy(): void;
356
+ openConsent(evt: any, item: any): void;
357
+ recover(): void;
358
+ getOtp(): void;
359
+ verifyOtp(val: any): void;
360
+ countdownEvent(evt: any): void;
361
+ resendOtp(): void;
362
+ saveUser(): void;
363
+ resetContext(): void;
364
+ resetContextData(): void;
365
+ submitRegister(): void;
366
+ remove(): void;
367
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<LoginFormComponent, never>;
368
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<LoginFormComponent, "payvent-login-form", never, { "context": { "alias": "context"; "required": false; "isSignal": true; }; "allowAccountCreation": { "alias": "allowAccountCreation"; "required": false; "isSignal": true; }; "tokenType": { "alias": "tokenType"; "required": false; "isSignal": true; }; "clientId": { "alias": "clientId"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; }, { "context": "contextChange"; }, never, never, true, never>;
369
+ }
370
+
371
+ declare class CookieBarComponent {
372
+ get isPrerender(): boolean;
373
+ cookieService: FlowCookieService;
374
+ gs: GlobalService;
375
+ constructor();
376
+ ngOnInit(): void;
377
+ acceptCookies(): void;
378
+ rejectCookies(): void;
379
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<CookieBarComponent, never>;
380
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<CookieBarComponent, "cookie-bar", never, {}, {}, never, never, true, never>;
381
+ }
382
+
383
+ declare class SortingPagingCriteria {
384
+ numberOfRecords: number;
385
+ pageNumber: number;
386
+ totalResults: number;
387
+ columnSortOrdersDefinition: ColumnSortOrdersDefinition;
388
+ applySort(columnName: any): void;
389
+ }
390
+ declare class ColumnSortOrdersDefinition {
391
+ columnName: string;
392
+ columnSortOrder: string;
393
+ }
394
+
395
+ declare class NotificationDropdownComponent implements OnInit {
396
+ connection: any;
397
+ notificationsOpen: boolean;
398
+ sortingPagingCriteria: SortingPagingCriteria;
399
+ canClose: boolean;
400
+ icon: _angular_core.InputSignal<string>;
401
+ translation: _angular_core.InputSignal<string>;
402
+ linkClass: _angular_core.InputSignal<string>;
403
+ onDocumentClick(targetElementPath: any): void;
404
+ signalRService: SignalrNotificationService;
405
+ translationService: TranslationSharedService;
406
+ _elementRef: ElementRef<any>;
407
+ constructor();
408
+ ngOnInit(): void;
409
+ openNotifications(): void;
410
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<NotificationDropdownComponent, never>;
411
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<NotificationDropdownComponent, "[notification-dropdown]", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "translation": { "alias": "translation"; "required": false; "isSignal": true; }; "linkClass": { "alias": "linkClass"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
412
+ }
413
+
414
+ declare class NotificationListComponent implements OnInit {
415
+ pageNo: number;
416
+ loading: boolean;
417
+ signalRService: SignalrNotificationService;
418
+ translationService: TranslationSharedService;
419
+ constructor();
420
+ ngOnInit(): void;
421
+ ngOnDestroy(): void;
422
+ get messages(): any[];
423
+ openNextPage(): void;
424
+ notificationClick(message: any): void;
425
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<NotificationListComponent, never>;
426
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<NotificationListComponent, "app-notification-list", never, {}, {}, never, never, true, never>;
427
+ }
428
+
429
+ declare class NotificationToasterComponent implements OnInit {
430
+ private connection;
431
+ _messages: any[];
432
+ newMessage: any;
433
+ obsTimeout: Observable<any>;
434
+ obsTimer: Subscription;
435
+ signalRService: SignalrNotificationService;
436
+ translationService: TranslationSharedService;
437
+ messageService: MessageService;
438
+ constructor();
439
+ ngOnInit(): void;
440
+ get messages(): any[];
441
+ sendMessage(): void;
442
+ removeNotification(not: any): void;
443
+ notificationClick(message: any): void;
444
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<NotificationToasterComponent, never>;
445
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<NotificationToasterComponent, "app-notification-toaster", never, {}, {}, never, never, true, never>;
446
+ }
447
+
448
+ declare class QrScannerComponent implements OnInit {
449
+ private value;
450
+ private eventListener;
451
+ valueRead: EventEmitter<any>;
452
+ timeout: any;
453
+ renderer: Renderer2;
454
+ constructor();
455
+ ngOnInit(): void;
456
+ ngOnDestroy(): void;
457
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<QrScannerComponent, never>;
458
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<QrScannerComponent, "flow-qr-scanner", never, {}, { "valueRead": "valueRead"; }, never, never, true, never>;
459
+ }
460
+
461
+ declare class SidebarComponent {
462
+ #private;
463
+ contentComponent: ElementRef;
464
+ sidebarService: SidebarService;
465
+ private initialHeight;
466
+ private panElement;
467
+ contentScrollable: _angular_core.WritableSignal<boolean>;
468
+ ngOnInit(): void;
469
+ closeCallback(id: any): void;
470
+ onPan(evt: any, id: any): void;
471
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<SidebarComponent, never>;
472
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SidebarComponent, "sidebar", never, {}, {}, never, never, true, never>;
473
+ }
474
+
475
+ declare class StoriesComponent {
476
+ stories: _angular_core.InputSignal<any[]>;
477
+ currentStoryIndex: _angular_core.WritableSignal<number>;
478
+ footerTemplate: _angular_core.InputSignal<TemplateRef<any>>;
479
+ subFooterTemplate: _angular_core.InputSignal<TemplateRef<any>>;
480
+ sideTemplate: _angular_core.InputSignal<TemplateRef<any>>;
481
+ showSubFooter: _angular_core.InputSignal<boolean>;
482
+ mute: _angular_core.WritableSignal<boolean>;
483
+ descriptionOpen: _angular_core.InputSignal<boolean>;
484
+ storyChanged: _angular_core.OutputEmitterRef<any>;
485
+ currentStory: _angular_core.Signal<any>;
486
+ defaultDuration: _angular_core.InputSignal<number>;
487
+ currentProgress: _angular_core.WritableSignal<number>;
488
+ currentTime: number;
489
+ timerInterval: number;
490
+ timerSubscription: any;
491
+ paused: _angular_core.ModelSignal<boolean>;
492
+ sidebarService: SidebarService;
493
+ videoPlayer: ElementRef;
494
+ constructor();
495
+ ngOnInit(): void;
496
+ next(): void;
497
+ runTimer(): void;
498
+ closeCallback(id: any): void;
499
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<StoriesComponent, never>;
500
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<StoriesComponent, "stories", never, { "stories": { "alias": "stories"; "required": false; "isSignal": true; }; "footerTemplate": { "alias": "footerTemplate"; "required": false; "isSignal": true; }; "subFooterTemplate": { "alias": "subFooterTemplate"; "required": false; "isSignal": true; }; "sideTemplate": { "alias": "sideTemplate"; "required": false; "isSignal": true; }; "showSubFooter": { "alias": "showSubFooter"; "required": false; "isSignal": true; }; "descriptionOpen": { "alias": "descriptionOpen"; "required": false; "isSignal": true; }; "defaultDuration": { "alias": "defaultDuration"; "required": false; "isSignal": true; }; "paused": { "alias": "paused"; "required": false; "isSignal": true; }; }, { "storyChanged": "storyChanged"; "paused": "pausedChange"; }, never, never, true, never>;
501
+ }
502
+
503
+ declare class QuestionsComponent implements OnInit {
504
+ imageRoot: _angular_core.InputSignal<any>;
505
+ value: _angular_core.InputSignal<any>;
506
+ mode: _angular_core.InputSignal<any>;
507
+ get imageItem(): any;
508
+ get firstNameItem(): any;
509
+ get lastNameItem(): any;
510
+ get extraFields(): any[];
511
+ get imageUrl(): _angular_platform_browser.SafeStyle;
512
+ has(item: any, type: any): boolean;
513
+ get orderedRegisterQuestions(): any[];
514
+ registerQuestions: _angular_core.ModelSignal<any[]>;
515
+ sanitizer: DomSanitizer;
516
+ private environment;
517
+ constructor();
518
+ ngOnInit(): void;
519
+ addNew(): void;
520
+ deleteQuestion(item: any): void;
521
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<QuestionsComponent, never>;
522
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<QuestionsComponent, "questions", never, { "imageRoot": { "alias": "imageRoot"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "registerQuestions": { "alias": "registerQuestions"; "required": false; "isSignal": true; }; }, { "registerQuestions": "registerQuestionsChange"; }, never, never, true, never>;
523
+ }
524
+
525
+ declare class LoginComponent implements OnInit {
526
+ userService: UserAccountService;
527
+ globalService: GlobalService;
528
+ router: Router;
529
+ message: string;
530
+ constructor(userService: UserAccountService, globalService: GlobalService, router: Router);
531
+ ngOnInit(): void;
532
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<LoginComponent, never>;
533
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<LoginComponent, "app-login", never, {}, {}, never, never, true, never>;
534
+ }
535
+
536
+ declare class InternationalPhoneComponent implements OnInit {
537
+ countriesList: any[];
538
+ countryFlag: string;
539
+ localizationCountry: any;
540
+ selectedCountryCode: any;
541
+ phoneNo: any;
542
+ countriesObs: any;
543
+ selectedCountry: any;
544
+ private _phoneNumber;
545
+ phoneNumber: _angular_core.ModelSignal<any>;
546
+ get currentPhoneNumber(): any;
547
+ phoneNumberChange: _angular_core.OutputEmitterRef<any>;
548
+ translationService: TranslationSharedService;
549
+ constructor();
550
+ ngOnInit(): void;
551
+ getCountries(): any;
552
+ onSelectionChange(selectedCode: any): void;
553
+ changePhoneNumber(): void;
554
+ onPaste(pastedText: any): void;
555
+ onPhoneInput(pastedNumber?: any): void;
556
+ getFlagEmoji(countryCodeFlag: any): string;
557
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<InternationalPhoneComponent, never>;
558
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<InternationalPhoneComponent, "payvent-international-phone", never, { "phoneNumber": { "alias": "phoneNumber"; "required": false; "isSignal": true; }; }, { "phoneNumber": "phoneNumberChange"; "phoneNumberChange": "phoneNumberChange"; }, never, never, true, never>;
559
+ }
560
+
561
+ declare class TranslationPipe implements PipeTransform {
562
+ constructor();
563
+ transform(value: string, htmlContentList: any): any;
564
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TranslationPipe, never>;
565
+ static ɵpipe: _angular_core.ɵɵPipeDeclaration<TranslationPipe, "translation", true>;
566
+ }
567
+
568
+ declare class SumPipe implements PipeTransform {
569
+ constructor();
570
+ transform(value: any[], member: string): number;
571
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<SumPipe, never>;
572
+ static ɵpipe: _angular_core.ɵɵPipeDeclaration<SumPipe, "sum", true>;
573
+ }
574
+
575
+ declare class SidebarContext {
576
+ close: any;
577
+ private _context;
578
+ set context(value: _angular_core.WritableSignal<any>);
579
+ get context(): _angular_core.WritableSignal<any>;
580
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<SidebarContext, never>;
581
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SidebarContext, "ng-component", never, { "context": { "alias": "context"; "required": false; }; }, {}, never, never, true, never>;
582
+ }
583
+
584
+ declare class Misc {
585
+ hexToRgbA(hex: any, opacity: any): string;
586
+ }
587
+
588
+ declare class StoryContext {
589
+ id: string;
590
+ type: string;
591
+ src: string;
592
+ completion: _angular_core.WritableSignal<any>;
593
+ }
594
+
595
+ export { ApplicationSharedService, CookieBarComponent, FlowAppConfig, FlowCookieService, FlowHttpClient, GlobalService, InternationalPhoneComponent, LoginComponent, LoginFormComponent, Misc, ModalService, NotificationDropdownComponent, NotificationListComponent, NotificationToasterComponent, QrScannerComponent, QuestionsComponent, SidebarComponent, SidebarContext, SidebarService, SignalrNotificationService, SortingPagingCriteria, StoriesComponent, StoryContext, SumPipe, TranslationComponent, TranslationPipe, TranslationSharedService, UserAccountService };
package/package.json ADDED
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "ngx-payvent-shared",
3
+ "version": "0.0.0",
4
+ "peerDependencies": {
5
+ "@angular/common": "^20.1.0",
6
+ "@angular/core": "^20.1.0",
7
+ "@microsoft/signalr": "^9.0.6",
8
+ "primeng": "^20.0.1",
9
+ "bowser": "^2.12.0",
10
+ "ngx-order-pipe": "^3.0.0",
11
+ "uuid": "^11.1.0"
12
+ },
13
+ "dependencies": {
14
+ "tslib": "^2.3.0"
15
+ },
16
+ "sideEffects": false,
17
+ "module": "fesm2022/ngx-payvent-shared.mjs",
18
+ "typings": "index.d.ts",
19
+ "exports": {
20
+ "./package.json": {
21
+ "default": "./package.json"
22
+ },
23
+ ".": {
24
+ "types": "./index.d.ts",
25
+ "default": "./fesm2022/ngx-payvent-shared.mjs"
26
+ }
27
+ }
28
+ }