@naniteninja/dashboard-components-lib 2.1.9 → 2.1.11
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;
|
|
@@ -1524,11 +1528,8 @@ declare class LibDashboardSwipeableTabsComponent implements AfterViewInit, OnCha
|
|
|
1524
1528
|
contextMenuTemplate: TemplateRef<any>;
|
|
1525
1529
|
private contextMenuViewRef;
|
|
1526
1530
|
private contextMenuClickListener;
|
|
1527
|
-
|
|
1528
|
-
private
|
|
1529
|
-
private pendingGroupByMode;
|
|
1530
|
-
confirmTitle: string;
|
|
1531
|
-
confirmDescription: string;
|
|
1531
|
+
confirmPopper: any;
|
|
1532
|
+
private pendingGroupingMode;
|
|
1532
1533
|
alertTemplate: TemplateRef<any>;
|
|
1533
1534
|
private alertViewRef;
|
|
1534
1535
|
private alertDismissTimer;
|
|
@@ -1580,7 +1581,7 @@ declare class LibDashboardSwipeableTabsComponent implements AfterViewInit, OnCha
|
|
|
1580
1581
|
private scrollListener;
|
|
1581
1582
|
private resizeObserver;
|
|
1582
1583
|
private intersectionObserver;
|
|
1583
|
-
private
|
|
1584
|
+
private isBarIntersecting;
|
|
1584
1585
|
private rafId;
|
|
1585
1586
|
expandedItemId: string | null;
|
|
1586
1587
|
expandedItemLeft: number;
|
|
@@ -1600,8 +1601,6 @@ declare class LibDashboardSwipeableTabsComponent implements AfterViewInit, OnCha
|
|
|
1600
1601
|
* show a confirmation dialog first.
|
|
1601
1602
|
*/
|
|
1602
1603
|
requestGroupBy(mode: TabGroupingMode): void;
|
|
1603
|
-
confirmGroupBy(): void;
|
|
1604
|
-
cancelGroupBy(): void;
|
|
1605
1604
|
ungroupAll(): void;
|
|
1606
1605
|
/**
|
|
1607
1606
|
* Captures the current structure + active rule.
|
|
@@ -1614,12 +1613,11 @@ declare class LibDashboardSwipeableTabsComponent implements AfterViewInit, OnCha
|
|
|
1614
1613
|
* If no snapshot exists, shows a toastr and does nothing.
|
|
1615
1614
|
*/
|
|
1616
1615
|
restoreCustomGroups(): void;
|
|
1617
|
-
|
|
1618
|
-
|
|
1616
|
+
confirmGroupBy(): void;
|
|
1617
|
+
cancelGroupBy(): void;
|
|
1619
1618
|
showAlert(title: string, description: string, durationMs?: number): void;
|
|
1620
1619
|
dismissAlert(): void;
|
|
1621
|
-
|
|
1622
|
-
private buildResponseGroups;
|
|
1620
|
+
executeGroupBy(mode: TabGroupingMode): void;
|
|
1623
1621
|
private sortByResponseTime;
|
|
1624
1622
|
private getResponseTime;
|
|
1625
1623
|
private applyAutoSort;
|
|
@@ -1701,6 +1699,7 @@ declare class LibDashboardSwipeableTabsComponent implements AfterViewInit, OnCha
|
|
|
1701
1699
|
private getScrollParent;
|
|
1702
1700
|
private isSourceVisible;
|
|
1703
1701
|
updatePortalPosition(): void;
|
|
1702
|
+
private ensureBarObserver;
|
|
1704
1703
|
private startPortalTracking;
|
|
1705
1704
|
private stopPortalTracking;
|
|
1706
1705
|
onItemClick(event: Event, node: TabNode | any): void;
|
|
@@ -1723,6 +1722,7 @@ declare class LibDashboardSwipeableTabsComponent implements AfterViewInit, OnCha
|
|
|
1723
1722
|
getTruncatedTitle(title: string, collapsed: boolean): string;
|
|
1724
1723
|
toggleGroup(group: ITabGroup): void;
|
|
1725
1724
|
setActiveIndex(index: number): void;
|
|
1725
|
+
private scrollToActiveTab;
|
|
1726
1726
|
private onMainSwiperSlideChange;
|
|
1727
1727
|
private initMainSwiperOnly;
|
|
1728
1728
|
private initSwiperInstances;
|
|
@@ -2227,7 +2227,6 @@ declare enum ClientViewportTab {
|
|
|
2227
2227
|
PrefMatchVisual = "PREF_MATCH_VISUAL",
|
|
2228
2228
|
SpiderChart = "SPIDER_CHART",
|
|
2229
2229
|
ChatHandoff = "CHAT_HANDOFF",
|
|
2230
|
-
ChatCompatibility = "CHAT_COMPATIBILITY",
|
|
2231
2230
|
ProfileCompare = "PROFILE_COMPARE",
|
|
2232
2231
|
DatePrepHandoffInfo = "DATE_PREP_HANDOFF_INFO",
|
|
2233
2232
|
UpcomingDates = "UPCOMING_DATES"
|
|
@@ -2251,6 +2250,7 @@ declare class ClientViewportComponent implements OnInit, OnChanges, OnDestroy, A
|
|
|
2251
2250
|
private route;
|
|
2252
2251
|
private ngZone;
|
|
2253
2252
|
private cdr;
|
|
2253
|
+
private translate;
|
|
2254
2254
|
config?: IClientViewportConfig;
|
|
2255
2255
|
showViewportControls: boolean;
|
|
2256
2256
|
showViewportHeader: boolean;
|
|
@@ -2282,6 +2282,7 @@ declare class ClientViewportComponent implements OnInit, OnChanges, OnDestroy, A
|
|
|
2282
2282
|
clientProfileImageSrc: string;
|
|
2283
2283
|
activePageIndex: ClientViewportPage;
|
|
2284
2284
|
activeTabKey: ClientViewportTab;
|
|
2285
|
+
readonly BackendMode: typeof BackendMode;
|
|
2285
2286
|
backendUrl: string;
|
|
2286
2287
|
private tabButtons;
|
|
2287
2288
|
private tabStripRef;
|
|
@@ -2292,11 +2293,14 @@ declare class ClientViewportComponent implements OnInit, OnChanges, OnDestroy, A
|
|
|
2292
2293
|
private handoffMessages$;
|
|
2293
2294
|
clientMatches: ILibClientMatchOverview[];
|
|
2294
2295
|
clientHomeConfig: IHomeDashboardInputs;
|
|
2296
|
+
traitVisualVisible: boolean;
|
|
2295
2297
|
private _traitVisualNodes;
|
|
2296
2298
|
get traitVisualNodes(): INodeData[];
|
|
2297
2299
|
set traitVisualNodes(value: INodeData[]);
|
|
2298
2300
|
traitVisualAttrWeights: number[];
|
|
2299
2301
|
traitVisualPrefWeights: number[];
|
|
2302
|
+
traitVisualConfig: any;
|
|
2303
|
+
activeManagerTabIndex: number;
|
|
2300
2304
|
showPrefMatchManager: boolean;
|
|
2301
2305
|
settingsContext: ClientViewportTab.PrefMatchVisual | ClientViewportTab.SpiderChart;
|
|
2302
2306
|
prefMatchManagerActiveTab: ClientViewportPrefTab;
|
|
@@ -2327,6 +2331,11 @@ declare class ClientViewportComponent implements OnInit, OnChanges, OnDestroy, A
|
|
|
2327
2331
|
handoffChatConfig: IHandoffPanelInputs;
|
|
2328
2332
|
handoffSchedulerConfig: IHandoffPanelInputs;
|
|
2329
2333
|
handoffDatePrepConfig: IHandoffPanelInputs;
|
|
2334
|
+
isSwiping: boolean;
|
|
2335
|
+
translateX: number;
|
|
2336
|
+
transition: string;
|
|
2337
|
+
private touchStartX;
|
|
2338
|
+
private touchStartY;
|
|
2330
2339
|
schedulerEvents$: BehaviorSubject<ISchedulerEvent[]>;
|
|
2331
2340
|
profileComparisonConfig: IProfileConfig;
|
|
2332
2341
|
chatCompatibilityConfig: IProfileConfig;
|
|
@@ -2346,7 +2355,7 @@ declare class ClientViewportComponent implements OnInit, OnChanges, OnDestroy, A
|
|
|
2346
2355
|
private _tabStripMomentumRaf;
|
|
2347
2356
|
private _tabStripBoundMouseMove;
|
|
2348
2357
|
private _tabStripBoundMouseUp;
|
|
2349
|
-
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);
|
|
2350
2359
|
initializeChatHandoff(): void;
|
|
2351
2360
|
setViewportMode(mode: 'mobile' | 'tablet' | 'desktop'): void;
|
|
2352
2361
|
ngOnInit(): void;
|
|
@@ -2395,14 +2404,6 @@ declare class ClientViewportComponent implements OnInit, OnChanges, OnDestroy, A
|
|
|
2395
2404
|
openPrefMatchManager(): void;
|
|
2396
2405
|
closePrefMatchManager(): void;
|
|
2397
2406
|
setPrefMatchManagerActiveTab(tab: ClientViewportPrefTab): void;
|
|
2398
|
-
private prefMatchHeaderStartX;
|
|
2399
|
-
private lastSwipeTime;
|
|
2400
|
-
private longPressTimeout;
|
|
2401
|
-
private isLongPressDrag;
|
|
2402
|
-
onPrefMatchHeaderTouchStart(event: TouchEvent | MouseEvent): void;
|
|
2403
|
-
onPrefMatchHeaderTouchEnd(event: TouchEvent | MouseEvent): void;
|
|
2404
|
-
onPrefMatchBodyTouchStart(event: TouchEvent | MouseEvent): void;
|
|
2405
|
-
onPrefMatchBodyTouchEnd(event: TouchEvent | MouseEvent): void;
|
|
2406
2407
|
setPrefMatchManagerOrderedList(ordered: boolean): void;
|
|
2407
2408
|
getPrefMatchDisplayIndex(index: number): number;
|
|
2408
2409
|
onPrefMatchManagerDrop(event: CdkDragDrop<PrefMatchManagerItem$1[]>): void;
|
|
@@ -2421,6 +2422,9 @@ declare class ClientViewportComponent implements OnInit, OnChanges, OnDestroy, A
|
|
|
2421
2422
|
getSpiderDefaultColorValue(): string | null;
|
|
2422
2423
|
toggleSpiderColorPicker(id: string): void;
|
|
2423
2424
|
onChatHeadChange(index: number): void;
|
|
2425
|
+
onSwipeStart(event: MouseEvent | TouchEvent): void;
|
|
2426
|
+
onSwipeMove(event: MouseEvent | TouchEvent): void;
|
|
2427
|
+
onSwipeEnd(): void;
|
|
2424
2428
|
onHandoffSwipeNext(): void;
|
|
2425
2429
|
onHandoffSwipePrev(): void;
|
|
2426
2430
|
onReject(match: ILibClientMatchOverview): void;
|
|
@@ -2455,7 +2459,7 @@ declare class AlertPopupComponent implements OnChanges {
|
|
|
2455
2459
|
|
|
2456
2460
|
declare class ClientViewportModule {
|
|
2457
2461
|
static ɵfac: i0.ɵɵFactoryDeclaration<ClientViewportModule, never>;
|
|
2458
|
-
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]>;
|
|
2459
2463
|
static ɵinj: i0.ɵɵInjectorDeclaration<ClientViewportModule>;
|
|
2460
2464
|
}
|
|
2461
2465
|
|
|
@@ -2514,6 +2518,10 @@ interface IMatcherViewportConfig {
|
|
|
2514
2518
|
traitVisualAttrWeights?: number[];
|
|
2515
2519
|
traitVisualPrefWeights?: number[];
|
|
2516
2520
|
userHomeConfig?: IHomeDashboardInputs;
|
|
2521
|
+
toastInfo?: Record<string, {
|
|
2522
|
+
title: string;
|
|
2523
|
+
description: string;
|
|
2524
|
+
}>;
|
|
2517
2525
|
onActiveIndexChange?: (index: number) => void;
|
|
2518
2526
|
}
|
|
2519
2527
|
|
|
@@ -2533,6 +2541,7 @@ declare class MatcherViewportComponent implements OnInit, OnDestroy, OnChanges {
|
|
|
2533
2541
|
pageRouteQueryParamKey: string;
|
|
2534
2542
|
pageRouteParamKey: string;
|
|
2535
2543
|
pageRouteSegmentName: string;
|
|
2544
|
+
readonly BackendMode: typeof BackendMode;
|
|
2536
2545
|
viewportMode: 'mobile' | 'tablet' | 'desktop';
|
|
2537
2546
|
private viewportModeLockedByUser;
|
|
2538
2547
|
private windowResizeListenerAttached;
|
|
@@ -2570,9 +2579,12 @@ declare class MatcherViewportComponent implements OnInit, OnDestroy, OnChanges {
|
|
|
2570
2579
|
spiderChartComponent: SpiderChartComponent | undefined;
|
|
2571
2580
|
profileData: Profile | undefined;
|
|
2572
2581
|
profileComparisonConfig: IProfileConfig;
|
|
2582
|
+
traitVisualVisible: boolean;
|
|
2573
2583
|
traitVisualNodes: INodeData[];
|
|
2574
2584
|
traitVisualAttrWeights: number[];
|
|
2575
2585
|
traitVisualPrefWeights: number[];
|
|
2586
|
+
traitVisualConfig: any;
|
|
2587
|
+
activeManagerTabIndex: number;
|
|
2576
2588
|
userHomeConfig: IHomeDashboardInputs;
|
|
2577
2589
|
activeIndexChange: EventEmitter<number>;
|
|
2578
2590
|
activePageChange: EventEmitter<number>;
|
|
@@ -2582,6 +2594,7 @@ declare class MatcherViewportComponent implements OnInit, OnDestroy, OnChanges {
|
|
|
2582
2594
|
private layoutService;
|
|
2583
2595
|
private cdr;
|
|
2584
2596
|
private ngZone;
|
|
2597
|
+
private translate;
|
|
2585
2598
|
private pageRoutingSub?;
|
|
2586
2599
|
activeIndex: number;
|
|
2587
2600
|
backendUrl: string;
|
|
@@ -2621,6 +2634,7 @@ declare class MatcherViewportComponent implements OnInit, OnDestroy, OnChanges {
|
|
|
2621
2634
|
onPrefMatchMaxAgeChange(value: string): void;
|
|
2622
2635
|
resetPrefMatchManager(): void;
|
|
2623
2636
|
applyPrefMatchManager(): void;
|
|
2637
|
+
refreshPrefMatchVisual(): void;
|
|
2624
2638
|
setSpiderOrderedList(ordered: boolean): void;
|
|
2625
2639
|
toggleSpiderColorPicker(id: string): void;
|
|
2626
2640
|
onSpiderColorChange(id: string, colorLabel: string): void;
|
|
@@ -2628,11 +2642,6 @@ declare class MatcherViewportComponent implements OnInit, OnDestroy, OnChanges {
|
|
|
2628
2642
|
getSpiderColorLabelForItem(id: string): string | null;
|
|
2629
2643
|
getSpiderColorValueForItem(id: string): string | null;
|
|
2630
2644
|
getSpiderDefaultColorValue(): string | null;
|
|
2631
|
-
private prefMatchHeaderStartX;
|
|
2632
|
-
onPrefMatchHeaderTouchStart(event: TouchEvent | MouseEvent): void;
|
|
2633
|
-
onPrefMatchHeaderTouchEnd(event: TouchEvent | MouseEvent): void;
|
|
2634
|
-
onPrefMatchBodyTouchStart(event: TouchEvent | MouseEvent): void;
|
|
2635
|
-
onPrefMatchBodyTouchEnd(event: TouchEvent | MouseEvent): void;
|
|
2636
2645
|
private _tabStripDragging;
|
|
2637
2646
|
private _tabStripStartX;
|
|
2638
2647
|
private _tabStripScrollLeft;
|
|
@@ -2643,6 +2652,11 @@ declare class MatcherViewportComponent implements OnInit, OnDestroy, OnChanges {
|
|
|
2643
2652
|
private _tabStripBoundMouseMove;
|
|
2644
2653
|
private _tabStripBoundMouseUp;
|
|
2645
2654
|
readonly clientMatches$: BehaviorSubject<ILibClientMatchOverview[]>;
|
|
2655
|
+
isSwiping: boolean;
|
|
2656
|
+
translateX: number;
|
|
2657
|
+
transition: string;
|
|
2658
|
+
private touchStartX;
|
|
2659
|
+
private touchStartY;
|
|
2646
2660
|
countdown: {
|
|
2647
2661
|
hours: string;
|
|
2648
2662
|
minutes: string;
|
|
@@ -2694,6 +2708,9 @@ declare class MatcherViewportComponent implements OnInit, OnDestroy, OnChanges {
|
|
|
2694
2708
|
setActiveTab(key: string): void;
|
|
2695
2709
|
onSuggestionClicked(_question: string): void;
|
|
2696
2710
|
onChatHeadChange(index: number): void;
|
|
2711
|
+
onSwipeStart(event: MouseEvent | TouchEvent): void;
|
|
2712
|
+
onSwipeMove(event: MouseEvent | TouchEvent): void;
|
|
2713
|
+
onSwipeEnd(): void;
|
|
2697
2714
|
private swipeCoord?;
|
|
2698
2715
|
private swipeTime?;
|
|
2699
2716
|
swipe(e: TouchEvent, when: string): void;
|