@naniteninja/dashboard-components-lib 2.1.8 → 2.1.10
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
CHANGED
|
@@ -27,7 +27,7 @@ import { SwiperOptions } from 'swiper/types';
|
|
|
27
27
|
import { SafeHtml, DomSanitizer } from '@angular/platform-browser';
|
|
28
28
|
import { Router, ActivatedRoute } from '@angular/router';
|
|
29
29
|
import * as i8 from '@naniteninja/profile-comparison-lib';
|
|
30
|
-
import { IProfileConfig } from '@naniteninja/profile-comparison-lib';
|
|
30
|
+
import { IProfileConfig, BackendMode } from '@naniteninja/profile-comparison-lib';
|
|
31
31
|
export { IProfileConfig, PROFILE_COMPARISON_API_BASE_URL } from '@naniteninja/profile-comparison-lib';
|
|
32
32
|
|
|
33
33
|
interface IAd {
|
|
@@ -1183,7 +1183,7 @@ declare class LibEventFormModule {
|
|
|
1183
1183
|
static ɵinj: i0.ɵɵInjectorDeclaration<LibEventFormModule>;
|
|
1184
1184
|
}
|
|
1185
1185
|
|
|
1186
|
-
declare class LibSchedulerComponent implements OnInit, OnDestroy {
|
|
1186
|
+
declare class LibSchedulerComponent implements OnInit, OnDestroy, OnChanges {
|
|
1187
1187
|
private cdr;
|
|
1188
1188
|
adsTemplate?: TemplateRef<HTMLElement>;
|
|
1189
1189
|
loading$: Observable<boolean>;
|
|
@@ -1191,6 +1191,7 @@ declare class LibSchedulerComponent implements OnInit, OnDestroy {
|
|
|
1191
1191
|
displayBookedStatuses: boolean;
|
|
1192
1192
|
displayEmptyDays: boolean;
|
|
1193
1193
|
events$: Observable<ISchedulerEvent[]>;
|
|
1194
|
+
events: ISchedulerEvent[];
|
|
1194
1195
|
startDate: Date;
|
|
1195
1196
|
endDate: Date;
|
|
1196
1197
|
default: boolean;
|
|
@@ -1201,9 +1202,10 @@ declare class LibSchedulerComponent implements OnInit, OnDestroy {
|
|
|
1201
1202
|
suggestedCount: number;
|
|
1202
1203
|
bookedCount: number;
|
|
1203
1204
|
private componentDestroyed$;
|
|
1204
|
-
private
|
|
1205
|
+
private eventsInternal;
|
|
1205
1206
|
constructor(cdr: ChangeDetectorRef);
|
|
1206
1207
|
ngOnInit(): void;
|
|
1208
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
1207
1209
|
ngOnDestroy(): void;
|
|
1208
1210
|
toggleExpand(dayIndex: number, eventIndex: number): void;
|
|
1209
1211
|
acceptSuggestion(dayIndex: number, eventIndex: number, suggestionIndex: number): void;
|
|
@@ -1214,7 +1216,7 @@ declare class LibSchedulerComponent implements OnInit, OnDestroy {
|
|
|
1214
1216
|
private groupEventsByDay;
|
|
1215
1217
|
private buildEvents;
|
|
1216
1218
|
static ɵfac: i0.ɵɵFactoryDeclaration<LibSchedulerComponent, never>;
|
|
1217
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LibSchedulerComponent, "lib-scheduler", never, { "adsTemplate": { "alias": "adsTemplate"; "required": false; }; "loading$": { "alias": "loading$"; "required": false; }; "emptyMessage": { "alias": "emptyMessage"; "required": false; }; "displayBookedStatuses": { "alias": "displayBookedStatuses"; "required": false; }; "displayEmptyDays": { "alias": "displayEmptyDays"; "required": false; }; "events$": { "alias": "events$"; "required": false; }; "startDate": { "alias": "startDate"; "required": false; }; "endDate": { "alias": "endDate"; "required": false; }; "default": { "alias": "default"; "required": false; }; "role": { "alias": "role"; "required": false; }; }, { "bookEvent": "bookEvent"; "removeSuggestion": "removeSuggestion"; }, never, never, true, never>;
|
|
1219
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LibSchedulerComponent, "lib-scheduler", never, { "adsTemplate": { "alias": "adsTemplate"; "required": false; }; "loading$": { "alias": "loading$"; "required": false; }; "emptyMessage": { "alias": "emptyMessage"; "required": false; }; "displayBookedStatuses": { "alias": "displayBookedStatuses"; "required": false; }; "displayEmptyDays": { "alias": "displayEmptyDays"; "required": false; }; "events$": { "alias": "events$"; "required": false; }; "events": { "alias": "events"; "required": false; }; "startDate": { "alias": "startDate"; "required": false; }; "endDate": { "alias": "endDate"; "required": false; }; "default": { "alias": "default"; "required": false; }; "role": { "alias": "role"; "required": false; }; }, { "bookEvent": "bookEvent"; "removeSuggestion": "removeSuggestion"; }, never, never, true, never>;
|
|
1218
1220
|
}
|
|
1219
1221
|
|
|
1220
1222
|
declare class ChatSuggestionComponent {
|
|
@@ -1472,7 +1474,9 @@ declare class LibDashboardSwipeableTabsComponent implements AfterViewInit, OnCha
|
|
|
1472
1474
|
thumbSlides: ElementRef | undefined;
|
|
1473
1475
|
thumbsSwiperOptions: SwiperOptions;
|
|
1474
1476
|
mainSwiperOptions: SwiperOptions;
|
|
1475
|
-
activeIndex: number;
|
|
1477
|
+
set activeIndex(val: number);
|
|
1478
|
+
get activeIndex(): number;
|
|
1479
|
+
private _activeIndex;
|
|
1476
1480
|
bottomThumbs: boolean;
|
|
1477
1481
|
slideContentMaxHeight: string;
|
|
1478
1482
|
mainSwiperHeight: string;
|
|
@@ -1519,14 +1523,13 @@ declare class LibDashboardSwipeableTabsComponent implements AfterViewInit, OnCha
|
|
|
1519
1523
|
private settingsTriggerResizeObserver;
|
|
1520
1524
|
private settingsTriggerScrollListener;
|
|
1521
1525
|
private settingsTriggerResizeListener;
|
|
1526
|
+
private settingsTriggerScrollTarget;
|
|
1527
|
+
private settingsTriggerRafId;
|
|
1522
1528
|
contextMenuTemplate: TemplateRef<any>;
|
|
1523
1529
|
private contextMenuViewRef;
|
|
1524
1530
|
private contextMenuClickListener;
|
|
1525
|
-
|
|
1526
|
-
private
|
|
1527
|
-
private pendingGroupByMode;
|
|
1528
|
-
confirmTitle: string;
|
|
1529
|
-
confirmDescription: string;
|
|
1531
|
+
confirmPopper: any;
|
|
1532
|
+
private pendingGroupingMode;
|
|
1530
1533
|
alertTemplate: TemplateRef<any>;
|
|
1531
1534
|
private alertViewRef;
|
|
1532
1535
|
private alertDismissTimer;
|
|
@@ -1578,7 +1581,7 @@ declare class LibDashboardSwipeableTabsComponent implements AfterViewInit, OnCha
|
|
|
1578
1581
|
private scrollListener;
|
|
1579
1582
|
private resizeObserver;
|
|
1580
1583
|
private intersectionObserver;
|
|
1581
|
-
private
|
|
1584
|
+
private isBarIntersecting;
|
|
1582
1585
|
private rafId;
|
|
1583
1586
|
expandedItemId: string | null;
|
|
1584
1587
|
expandedItemLeft: number;
|
|
@@ -1598,8 +1601,6 @@ declare class LibDashboardSwipeableTabsComponent implements AfterViewInit, OnCha
|
|
|
1598
1601
|
* show a confirmation dialog first.
|
|
1599
1602
|
*/
|
|
1600
1603
|
requestGroupBy(mode: TabGroupingMode): void;
|
|
1601
|
-
confirmGroupBy(): void;
|
|
1602
|
-
cancelGroupBy(): void;
|
|
1603
1604
|
ungroupAll(): void;
|
|
1604
1605
|
/**
|
|
1605
1606
|
* Captures the current structure + active rule.
|
|
@@ -1612,12 +1613,11 @@ declare class LibDashboardSwipeableTabsComponent implements AfterViewInit, OnCha
|
|
|
1612
1613
|
* If no snapshot exists, shows a toastr and does nothing.
|
|
1613
1614
|
*/
|
|
1614
1615
|
restoreCustomGroups(): void;
|
|
1615
|
-
|
|
1616
|
-
|
|
1616
|
+
confirmGroupBy(): void;
|
|
1617
|
+
cancelGroupBy(): void;
|
|
1617
1618
|
showAlert(title: string, description: string, durationMs?: number): void;
|
|
1618
1619
|
dismissAlert(): void;
|
|
1619
|
-
|
|
1620
|
-
private buildResponseGroups;
|
|
1620
|
+
executeGroupBy(mode: TabGroupingMode): void;
|
|
1621
1621
|
private sortByResponseTime;
|
|
1622
1622
|
private getResponseTime;
|
|
1623
1623
|
private applyAutoSort;
|
|
@@ -1693,8 +1693,13 @@ declare class LibDashboardSwipeableTabsComponent implements AfterViewInit, OnCha
|
|
|
1693
1693
|
private openSettingsTriggerPortal;
|
|
1694
1694
|
private closeSettingsTriggerPortal;
|
|
1695
1695
|
private updateSettingsTriggerPortalPosition;
|
|
1696
|
+
private applySettingsTriggerPortalVisibility;
|
|
1697
|
+
private startSettingsTriggerTracking;
|
|
1698
|
+
private stopSettingsTriggerTracking;
|
|
1699
|
+
private getScrollParent;
|
|
1696
1700
|
private isSourceVisible;
|
|
1697
1701
|
updatePortalPosition(): void;
|
|
1702
|
+
private ensureBarObserver;
|
|
1698
1703
|
private startPortalTracking;
|
|
1699
1704
|
private stopPortalTracking;
|
|
1700
1705
|
onItemClick(event: Event, node: TabNode | any): void;
|
|
@@ -1717,6 +1722,7 @@ declare class LibDashboardSwipeableTabsComponent implements AfterViewInit, OnCha
|
|
|
1717
1722
|
getTruncatedTitle(title: string, collapsed: boolean): string;
|
|
1718
1723
|
toggleGroup(group: ITabGroup): void;
|
|
1719
1724
|
setActiveIndex(index: number): void;
|
|
1725
|
+
private scrollToActiveTab;
|
|
1720
1726
|
private onMainSwiperSlideChange;
|
|
1721
1727
|
private initMainSwiperOnly;
|
|
1722
1728
|
private initSwiperInstances;
|
|
@@ -2221,7 +2227,6 @@ declare enum ClientViewportTab {
|
|
|
2221
2227
|
PrefMatchVisual = "PREF_MATCH_VISUAL",
|
|
2222
2228
|
SpiderChart = "SPIDER_CHART",
|
|
2223
2229
|
ChatHandoff = "CHAT_HANDOFF",
|
|
2224
|
-
ChatCompatibility = "CHAT_COMPATIBILITY",
|
|
2225
2230
|
ProfileCompare = "PROFILE_COMPARE",
|
|
2226
2231
|
DatePrepHandoffInfo = "DATE_PREP_HANDOFF_INFO",
|
|
2227
2232
|
UpcomingDates = "UPCOMING_DATES"
|
|
@@ -2245,6 +2250,7 @@ declare class ClientViewportComponent implements OnInit, OnChanges, OnDestroy, A
|
|
|
2245
2250
|
private route;
|
|
2246
2251
|
private ngZone;
|
|
2247
2252
|
private cdr;
|
|
2253
|
+
private translate;
|
|
2248
2254
|
config?: IClientViewportConfig;
|
|
2249
2255
|
showViewportControls: boolean;
|
|
2250
2256
|
showViewportHeader: boolean;
|
|
@@ -2276,6 +2282,7 @@ declare class ClientViewportComponent implements OnInit, OnChanges, OnDestroy, A
|
|
|
2276
2282
|
clientProfileImageSrc: string;
|
|
2277
2283
|
activePageIndex: ClientViewportPage;
|
|
2278
2284
|
activeTabKey: ClientViewportTab;
|
|
2285
|
+
readonly BackendMode: typeof BackendMode;
|
|
2279
2286
|
backendUrl: string;
|
|
2280
2287
|
private tabButtons;
|
|
2281
2288
|
private tabStripRef;
|
|
@@ -2286,11 +2293,14 @@ declare class ClientViewportComponent implements OnInit, OnChanges, OnDestroy, A
|
|
|
2286
2293
|
private handoffMessages$;
|
|
2287
2294
|
clientMatches: ILibClientMatchOverview[];
|
|
2288
2295
|
clientHomeConfig: IHomeDashboardInputs;
|
|
2296
|
+
traitVisualVisible: boolean;
|
|
2289
2297
|
private _traitVisualNodes;
|
|
2290
2298
|
get traitVisualNodes(): INodeData[];
|
|
2291
2299
|
set traitVisualNodes(value: INodeData[]);
|
|
2292
2300
|
traitVisualAttrWeights: number[];
|
|
2293
2301
|
traitVisualPrefWeights: number[];
|
|
2302
|
+
traitVisualConfig: any;
|
|
2303
|
+
activeManagerTabIndex: number;
|
|
2294
2304
|
showPrefMatchManager: boolean;
|
|
2295
2305
|
settingsContext: ClientViewportTab.PrefMatchVisual | ClientViewportTab.SpiderChart;
|
|
2296
2306
|
prefMatchManagerActiveTab: ClientViewportPrefTab;
|
|
@@ -2321,6 +2331,11 @@ declare class ClientViewportComponent implements OnInit, OnChanges, OnDestroy, A
|
|
|
2321
2331
|
handoffChatConfig: IHandoffPanelInputs;
|
|
2322
2332
|
handoffSchedulerConfig: IHandoffPanelInputs;
|
|
2323
2333
|
handoffDatePrepConfig: IHandoffPanelInputs;
|
|
2334
|
+
isSwiping: boolean;
|
|
2335
|
+
translateX: number;
|
|
2336
|
+
transition: string;
|
|
2337
|
+
private touchStartX;
|
|
2338
|
+
private touchStartY;
|
|
2324
2339
|
schedulerEvents$: BehaviorSubject<ISchedulerEvent[]>;
|
|
2325
2340
|
profileComparisonConfig: IProfileConfig;
|
|
2326
2341
|
chatCompatibilityConfig: IProfileConfig;
|
|
@@ -2340,7 +2355,7 @@ declare class ClientViewportComponent implements OnInit, OnChanges, OnDestroy, A
|
|
|
2340
2355
|
private _tabStripMomentumRaf;
|
|
2341
2356
|
private _tabStripBoundMouseMove;
|
|
2342
2357
|
private _tabStripBoundMouseUp;
|
|
2343
|
-
constructor(layoutService: LayoutService, elementRef: ElementRef, router: Router, route: ActivatedRoute, ngZone: NgZone, cdr: ChangeDetectorRef);
|
|
2358
|
+
constructor(layoutService: LayoutService, elementRef: ElementRef, router: Router, route: ActivatedRoute, ngZone: NgZone, cdr: ChangeDetectorRef, translate: TranslateService);
|
|
2344
2359
|
initializeChatHandoff(): void;
|
|
2345
2360
|
setViewportMode(mode: 'mobile' | 'tablet' | 'desktop'): void;
|
|
2346
2361
|
ngOnInit(): void;
|
|
@@ -2389,14 +2404,6 @@ declare class ClientViewportComponent implements OnInit, OnChanges, OnDestroy, A
|
|
|
2389
2404
|
openPrefMatchManager(): void;
|
|
2390
2405
|
closePrefMatchManager(): void;
|
|
2391
2406
|
setPrefMatchManagerActiveTab(tab: ClientViewportPrefTab): void;
|
|
2392
|
-
private prefMatchHeaderStartX;
|
|
2393
|
-
private lastSwipeTime;
|
|
2394
|
-
private longPressTimeout;
|
|
2395
|
-
private isLongPressDrag;
|
|
2396
|
-
onPrefMatchHeaderTouchStart(event: TouchEvent | MouseEvent): void;
|
|
2397
|
-
onPrefMatchHeaderTouchEnd(event: TouchEvent | MouseEvent): void;
|
|
2398
|
-
onPrefMatchBodyTouchStart(event: TouchEvent | MouseEvent): void;
|
|
2399
|
-
onPrefMatchBodyTouchEnd(event: TouchEvent | MouseEvent): void;
|
|
2400
2407
|
setPrefMatchManagerOrderedList(ordered: boolean): void;
|
|
2401
2408
|
getPrefMatchDisplayIndex(index: number): number;
|
|
2402
2409
|
onPrefMatchManagerDrop(event: CdkDragDrop<PrefMatchManagerItem$1[]>): void;
|
|
@@ -2415,6 +2422,9 @@ declare class ClientViewportComponent implements OnInit, OnChanges, OnDestroy, A
|
|
|
2415
2422
|
getSpiderDefaultColorValue(): string | null;
|
|
2416
2423
|
toggleSpiderColorPicker(id: string): void;
|
|
2417
2424
|
onChatHeadChange(index: number): void;
|
|
2425
|
+
onSwipeStart(event: MouseEvent | TouchEvent): void;
|
|
2426
|
+
onSwipeMove(event: MouseEvent | TouchEvent): void;
|
|
2427
|
+
onSwipeEnd(): void;
|
|
2418
2428
|
onHandoffSwipeNext(): void;
|
|
2419
2429
|
onHandoffSwipePrev(): void;
|
|
2420
2430
|
onReject(match: ILibClientMatchOverview): void;
|
|
@@ -2449,7 +2459,7 @@ declare class AlertPopupComponent implements OnChanges {
|
|
|
2449
2459
|
|
|
2450
2460
|
declare class ClientViewportModule {
|
|
2451
2461
|
static ɵfac: i0.ɵɵFactoryDeclaration<ClientViewportModule, never>;
|
|
2452
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ClientViewportModule, [typeof ClientViewportComponent], [typeof i2.CommonModule, typeof i3$1.DragDropModule, typeof i4.TranslateModule, typeof LibStatusBarModule, typeof LibAgendaModule, typeof LibClientHomeComponent, typeof i8.ProfileComparisonLibModule, typeof SpiderChartComponent, typeof i10.TraitVisualCanvasComponent, typeof LibSchedulerComponent, typeof LibHandoffPanelComponent, typeof AlertPopupComponent], [typeof ClientViewportComponent]>;
|
|
2462
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ClientViewportModule, [typeof ClientViewportComponent], [typeof i2.CommonModule, typeof i3$1.DragDropModule, typeof i4.TranslateModule, typeof LibStatusBarModule, typeof LibAgendaModule, typeof LibClientHomeComponent, typeof i8.ProfileComparisonLibModule, typeof SpiderChartComponent, typeof i10.TraitVisualCanvasComponent, typeof LibSchedulerComponent, typeof LibHandoffPanelComponent, typeof AlertPopupComponent, typeof LibDashboardSwipeableTabsComponent], [typeof ClientViewportComponent]>;
|
|
2453
2463
|
static ɵinj: i0.ɵɵInjectorDeclaration<ClientViewportModule>;
|
|
2454
2464
|
}
|
|
2455
2465
|
|
|
@@ -2508,6 +2518,10 @@ interface IMatcherViewportConfig {
|
|
|
2508
2518
|
traitVisualAttrWeights?: number[];
|
|
2509
2519
|
traitVisualPrefWeights?: number[];
|
|
2510
2520
|
userHomeConfig?: IHomeDashboardInputs;
|
|
2521
|
+
toastInfo?: Record<string, {
|
|
2522
|
+
title: string;
|
|
2523
|
+
description: string;
|
|
2524
|
+
}>;
|
|
2511
2525
|
onActiveIndexChange?: (index: number) => void;
|
|
2512
2526
|
}
|
|
2513
2527
|
|
|
@@ -2527,6 +2541,7 @@ declare class MatcherViewportComponent implements OnInit, OnDestroy, OnChanges {
|
|
|
2527
2541
|
pageRouteQueryParamKey: string;
|
|
2528
2542
|
pageRouteParamKey: string;
|
|
2529
2543
|
pageRouteSegmentName: string;
|
|
2544
|
+
readonly BackendMode: typeof BackendMode;
|
|
2530
2545
|
viewportMode: 'mobile' | 'tablet' | 'desktop';
|
|
2531
2546
|
private viewportModeLockedByUser;
|
|
2532
2547
|
private windowResizeListenerAttached;
|
|
@@ -2564,9 +2579,12 @@ declare class MatcherViewportComponent implements OnInit, OnDestroy, OnChanges {
|
|
|
2564
2579
|
spiderChartComponent: SpiderChartComponent | undefined;
|
|
2565
2580
|
profileData: Profile | undefined;
|
|
2566
2581
|
profileComparisonConfig: IProfileConfig;
|
|
2582
|
+
traitVisualVisible: boolean;
|
|
2567
2583
|
traitVisualNodes: INodeData[];
|
|
2568
2584
|
traitVisualAttrWeights: number[];
|
|
2569
2585
|
traitVisualPrefWeights: number[];
|
|
2586
|
+
traitVisualConfig: any;
|
|
2587
|
+
activeManagerTabIndex: number;
|
|
2570
2588
|
userHomeConfig: IHomeDashboardInputs;
|
|
2571
2589
|
activeIndexChange: EventEmitter<number>;
|
|
2572
2590
|
activePageChange: EventEmitter<number>;
|
|
@@ -2576,6 +2594,7 @@ declare class MatcherViewportComponent implements OnInit, OnDestroy, OnChanges {
|
|
|
2576
2594
|
private layoutService;
|
|
2577
2595
|
private cdr;
|
|
2578
2596
|
private ngZone;
|
|
2597
|
+
private translate;
|
|
2579
2598
|
private pageRoutingSub?;
|
|
2580
2599
|
activeIndex: number;
|
|
2581
2600
|
backendUrl: string;
|
|
@@ -2615,6 +2634,7 @@ declare class MatcherViewportComponent implements OnInit, OnDestroy, OnChanges {
|
|
|
2615
2634
|
onPrefMatchMaxAgeChange(value: string): void;
|
|
2616
2635
|
resetPrefMatchManager(): void;
|
|
2617
2636
|
applyPrefMatchManager(): void;
|
|
2637
|
+
refreshPrefMatchVisual(): void;
|
|
2618
2638
|
setSpiderOrderedList(ordered: boolean): void;
|
|
2619
2639
|
toggleSpiderColorPicker(id: string): void;
|
|
2620
2640
|
onSpiderColorChange(id: string, colorLabel: string): void;
|
|
@@ -2622,11 +2642,6 @@ declare class MatcherViewportComponent implements OnInit, OnDestroy, OnChanges {
|
|
|
2622
2642
|
getSpiderColorLabelForItem(id: string): string | null;
|
|
2623
2643
|
getSpiderColorValueForItem(id: string): string | null;
|
|
2624
2644
|
getSpiderDefaultColorValue(): string | null;
|
|
2625
|
-
private prefMatchHeaderStartX;
|
|
2626
|
-
onPrefMatchHeaderTouchStart(event: TouchEvent | MouseEvent): void;
|
|
2627
|
-
onPrefMatchHeaderTouchEnd(event: TouchEvent | MouseEvent): void;
|
|
2628
|
-
onPrefMatchBodyTouchStart(event: TouchEvent | MouseEvent): void;
|
|
2629
|
-
onPrefMatchBodyTouchEnd(event: TouchEvent | MouseEvent): void;
|
|
2630
2645
|
private _tabStripDragging;
|
|
2631
2646
|
private _tabStripStartX;
|
|
2632
2647
|
private _tabStripScrollLeft;
|
|
@@ -2637,6 +2652,11 @@ declare class MatcherViewportComponent implements OnInit, OnDestroy, OnChanges {
|
|
|
2637
2652
|
private _tabStripBoundMouseMove;
|
|
2638
2653
|
private _tabStripBoundMouseUp;
|
|
2639
2654
|
readonly clientMatches$: BehaviorSubject<ILibClientMatchOverview[]>;
|
|
2655
|
+
isSwiping: boolean;
|
|
2656
|
+
translateX: number;
|
|
2657
|
+
transition: string;
|
|
2658
|
+
private touchStartX;
|
|
2659
|
+
private touchStartY;
|
|
2640
2660
|
countdown: {
|
|
2641
2661
|
hours: string;
|
|
2642
2662
|
minutes: string;
|
|
@@ -2688,6 +2708,9 @@ declare class MatcherViewportComponent implements OnInit, OnDestroy, OnChanges {
|
|
|
2688
2708
|
setActiveTab(key: string): void;
|
|
2689
2709
|
onSuggestionClicked(_question: string): void;
|
|
2690
2710
|
onChatHeadChange(index: number): void;
|
|
2711
|
+
onSwipeStart(event: MouseEvent | TouchEvent): void;
|
|
2712
|
+
onSwipeMove(event: MouseEvent | TouchEvent): void;
|
|
2713
|
+
onSwipeEnd(): void;
|
|
2691
2714
|
private swipeCoord?;
|
|
2692
2715
|
private swipeTime?;
|
|
2693
2716
|
swipe(e: TouchEvent, when: string): void;
|