@naniteninja/dashboard-components-lib 2.0.10 → 2.0.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
@@ -1,7 +1,7 @@
1
1
  import * as i0 from '@angular/core';
2
2
  import { TemplateRef, OnInit, AfterViewInit, ElementRef, EventEmitter, ChangeDetectorRef, PipeTransform, ModuleWithProviders, OnDestroy, OnChanges, SimpleChanges, Renderer2, ViewContainerRef, NgZone, InjectionToken } from '@angular/core';
3
3
  import * as i6 from '@naniteninja/ionic-lib';
4
- import { LibMenuItem, LocationModel, SelectOption, ImageModel, PopupModalService, BaseComponent, FormFieldType as FormFieldType$1, EmojiPickerConfig, InputFieldComponent, Profile } from '@naniteninja/ionic-lib';
4
+ import { LibMenuItem, LocationModel, SelectOption, ImageModel, PopupModalService, BaseComponent, EmojiPickerConfig, InputFieldComponent, Profile } from '@naniteninja/ionic-lib';
5
5
  import * as rxjs from 'rxjs';
6
6
  import { Observable, BehaviorSubject } from 'rxjs';
7
7
  import * as i2 from '@angular/common';
@@ -11,11 +11,13 @@ import { TranslateService } from '@ngx-translate/core';
11
11
  import * as i5 from '@angular/forms';
12
12
  import { FormControl, FormGroup, FormBuilder } from '@angular/forms';
13
13
  import { Frequency } from 'rrule/dist/esm/types';
14
- import { JSONSchema } from '@ngx-pwa/local-storage';
15
14
  import * as i4$1 from '@angular/material/input';
16
15
  import * as i5$1 from '@angular/material/select';
17
16
  import * as i6$1 from '@angular/material/form-field';
18
17
  import * as i9 from 'ngx-infinite-scroll';
18
+ import * as i12 from '@angular/cdk/overlay';
19
+ import * as i13 from '@angular/cdk/portal';
20
+ import { JSONSchema } from '@ngx-pwa/local-storage';
19
21
  import * as i10 from '@naniteninja/trait-visual';
20
22
  import { INodeData } from '@naniteninja/trait-visual';
21
23
  import * as d3 from 'd3';
@@ -502,6 +504,8 @@ interface IDataset {
502
504
  keys: string[];
503
505
  values: Record<string, number>;
504
506
  polygon_color?: IPolygonColor;
507
+ image?: string;
508
+ score?: number;
505
509
  }
506
510
 
507
511
  interface IDateMessages {
@@ -912,12 +916,6 @@ interface ISchedulerEventSlots {
912
916
  events: ISchedulerEvent[];
913
917
  }
914
918
 
915
- interface SelectOptionWithTemplate<T> {
916
- label: string;
917
- value: T;
918
- addOnTemplateRef?: any;
919
- }
920
-
921
919
  interface ISendOptionsMessage {
922
920
  type: SendMessageType;
923
921
  arrivalDate?: Date;
@@ -1226,45 +1224,49 @@ declare class ChatSuggestionComponent {
1226
1224
  static ɵcmp: i0.ɵɵComponentDeclaration<ChatSuggestionComponent, "lib-chat-suggestion", never, { "chatSuggestions": { "alias": "chatSuggestions"; "required": false; }; }, { "suggestClicked": "suggestClicked"; }, never, never, true, never>;
1227
1225
  }
1228
1226
 
1229
- declare abstract class AbstractCacheService {
1230
- abstract saveLocalStorage(key: string, value: unknown, schema?: JSONSchema): void;
1231
- abstract getLocalStorage<T>(key: string): Observable<T>;
1232
- static ɵfac: i0.ɵɵFactoryDeclaration<AbstractCacheService, never>;
1233
- static ɵprov: i0.ɵɵInjectableDeclaration<AbstractCacheService>;
1234
- }
1235
-
1236
- declare class ChatService$1 {
1237
- cacheService: AbstractCacheService;
1238
- constructor(cacheService: AbstractCacheService);
1239
- setLongPressForSendImmediately(enabled: boolean): void;
1240
- isLongPressForSendImmediately(): Observable<boolean>;
1241
- transformMessages(messages: IMessage[]): IDateMessages[];
1242
- updateDateMessages(dateMessages: IDateMessages[]): IDateMessages[];
1243
- static ɵfac: i0.ɵɵFactoryDeclaration<ChatService$1, never>;
1244
- static ɵprov: i0.ɵɵInjectableDeclaration<ChatService$1>;
1245
- }
1246
-
1247
- declare class LibMessageModalComponent implements OnInit {
1248
- private fb;
1249
- private popupModalService;
1250
- private chatService;
1251
- modalData?: {
1252
- responseTime: string;
1253
- };
1254
- toggleTemplate: TemplateRef<HTMLElement>;
1255
- options: SelectOptionWithTemplate<string>[];
1256
- messageType: FormControl<string>;
1257
- dateTimePicker: FormControl<Date>;
1258
- toggleLongPress: FormControl<boolean>;
1259
- type: FormFieldType$1;
1260
- formTime: FormGroup;
1261
- constructor(fb: FormBuilder, popupModalService: PopupModalService, chatService: ChatService$1, modalData?: {
1262
- responseTime: string;
1263
- });
1264
- ngOnInit(): void;
1265
- onSubmit(): void;
1266
- static ɵfac: i0.ɵɵFactoryDeclaration<LibMessageModalComponent, [null, null, null, { optional: true; }]>;
1267
- static ɵcmp: i0.ɵɵComponentDeclaration<LibMessageModalComponent, "lib-message-modal", never, {}, {}, never, never, true, never>;
1227
+ declare enum MessageOption {
1228
+ REPLY_DELAY = "Reply delay",
1229
+ SEND_IMMEDIATELY = "Send immediately",
1230
+ SEND_AFTER = "Send after"
1231
+ }
1232
+ declare class LibMessageModalComponent {
1233
+ close: EventEmitter<void>;
1234
+ send: EventEmitter<ISendOptionsMessage>;
1235
+ MessageOption: typeof MessageOption;
1236
+ selectedOption: MessageOption;
1237
+ defaultTime: string;
1238
+ showTimePicker: boolean;
1239
+ showReplyDelayInfo: boolean;
1240
+ longPressOption: boolean;
1241
+ hours: number;
1242
+ minutes: number;
1243
+ seconds: number;
1244
+ private replyDelayMs;
1245
+ private pressTimer;
1246
+ options: {
1247
+ value: MessageOption;
1248
+ label: string;
1249
+ }[];
1250
+ onClose(): void;
1251
+ onTimeInputClick(): void;
1252
+ toggleLongPress(): void;
1253
+ toggleReplyDelayInfo(event: Event): void;
1254
+ closeReplyDelayInfo(): void;
1255
+ increment(unit: 'h' | 'm' | 's'): void;
1256
+ decrement(unit: 'h' | 'm' | 's'): void;
1257
+ updateDefaultTime(): void;
1258
+ setDefaultTimeFromMs(ms: number): void;
1259
+ confirmTime(): void;
1260
+ clearTime(): void;
1261
+ pad(num: number): string;
1262
+ selectOption(option: MessageOption): void;
1263
+ onPressStart(): void;
1264
+ onPressEnd(): void;
1265
+ onSendClick(): void;
1266
+ executeSend(): void;
1267
+ onSend(): void;
1268
+ static ɵfac: i0.ɵɵFactoryDeclaration<LibMessageModalComponent, never>;
1269
+ static ɵcmp: i0.ɵɵComponentDeclaration<LibMessageModalComponent, "lib-message-modal", never, {}, { "close": "close"; "send": "send"; }, never, never, true, never>;
1268
1270
  }
1269
1271
 
1270
1272
  declare class ChatComponent implements OnInit, AfterViewInit, OnChanges, OnDestroy {
@@ -1310,6 +1312,9 @@ declare class ChatComponent implements OnInit, AfterViewInit, OnChanges, OnDestr
1310
1312
  throttle: number;
1311
1313
  distance: number;
1312
1314
  readonly ModalComponent: typeof LibMessageModalComponent;
1315
+ private overlayRef;
1316
+ private overlay;
1317
+ private viewContainerRef;
1313
1318
  private documentClickListener;
1314
1319
  private getEmojiPickerDefaultStyle;
1315
1320
  private styleEmojiPickerShadow;
@@ -1328,6 +1333,7 @@ declare class ChatComponent implements OnInit, AfterViewInit, OnChanges, OnDestr
1328
1333
  handleGifPickerClick(): void;
1329
1334
  onGifClick(url: string): void;
1330
1335
  onSendMessageModal(): void;
1336
+ onCloseMessageModal(): void;
1331
1337
  onSendText(): void;
1332
1338
  savePendingMessage(): void;
1333
1339
  onSend(): void;
@@ -1368,10 +1374,17 @@ declare class LibChatComponentModule {
1368
1374
  tenorURL: string;
1369
1375
  }): ModuleWithProviders<LibChatComponentModule>;
1370
1376
  static ɵfac: i0.ɵɵFactoryDeclaration<LibChatComponentModule, never>;
1371
- static ɵmod: i0.ɵɵNgModuleDeclaration<LibChatComponentModule, [typeof ChatComponent], [typeof i2.CommonModule, typeof i6.ImageCardModule, typeof i4$1.MatInputModule, typeof i5$1.MatSelectModule, typeof i6$1.MatFormFieldModule, typeof i6.InputFieldModule, typeof i5.FormsModule, typeof i5.ReactiveFormsModule, typeof GifSelectorComponent, typeof i6.LibModalModule, typeof i9.InfiniteScrollModule, typeof i4.TranslateModule], [typeof ChatComponent]>;
1377
+ static ɵmod: i0.ɵɵNgModuleDeclaration<LibChatComponentModule, [typeof ChatComponent], [typeof i2.CommonModule, typeof i6.ImageCardModule, typeof i4$1.MatInputModule, typeof i5$1.MatSelectModule, typeof i6$1.MatFormFieldModule, typeof i6.InputFieldModule, typeof i5.FormsModule, typeof i5.ReactiveFormsModule, typeof GifSelectorComponent, typeof i6.LibModalModule, typeof i9.InfiniteScrollModule, typeof i4.TranslateModule, typeof LibMessageModalComponent, typeof i12.OverlayModule, typeof i13.PortalModule], [typeof ChatComponent]>;
1372
1378
  static ɵinj: i0.ɵɵInjectorDeclaration<LibChatComponentModule>;
1373
1379
  }
1374
1380
 
1381
+ declare abstract class AbstractCacheService {
1382
+ abstract saveLocalStorage(key: string, value: unknown, schema?: JSONSchema): void;
1383
+ abstract getLocalStorage<T>(key: string): Observable<T>;
1384
+ static ɵfac: i0.ɵɵFactoryDeclaration<AbstractCacheService, never>;
1385
+ static ɵprov: i0.ɵɵInjectableDeclaration<AbstractCacheService>;
1386
+ }
1387
+
1375
1388
  declare class ChatService {
1376
1389
  cacheService: AbstractCacheService;
1377
1390
  constructor(cacheService: AbstractCacheService);
@@ -2013,6 +2026,11 @@ declare class SpiderChartComponent implements OnChanges, OnDestroy, AfterViewIni
2013
2026
  config: ISpiderChartConfig;
2014
2027
  polygon_colors: IPolygonColor[];
2015
2028
  showChartInfo: boolean;
2029
+ tooltipActiveChange: EventEmitter<boolean>;
2030
+ isTooltipActive: boolean;
2031
+ isSelectorTooltipVisible: boolean;
2032
+ private isChartTooltipOpen;
2033
+ selectedDatasetIndex: number;
2016
2034
  alertStatusFields: typeof AlertStatusFields;
2017
2035
  titleAlertPopup: string;
2018
2036
  descriptionAlertPopup: string;
@@ -2030,10 +2048,11 @@ declare class SpiderChartComponent implements OnChanges, OnDestroy, AfterViewIni
2030
2048
  ngOnChanges(changes: SimpleChanges): void;
2031
2049
  ngAfterViewInit(): void;
2032
2050
  ngOnDestroy(): void;
2033
- onClosedAlert(data: {
2034
- event: boolean;
2035
- field: AlertStatusFields;
2036
- }): void;
2051
+ onClosedAlert(event: boolean): void;
2052
+ selectNextProspect(): void;
2053
+ onClosedSelectorTooltip(event: boolean): void;
2054
+ triggerSelectorTooltip(): void;
2055
+ private updateChartVisibility;
2037
2056
  private initializeChart;
2038
2057
  private createSvgObject;
2039
2058
  private createLine;
@@ -2047,7 +2066,7 @@ declare class SpiderChartComponent implements OnChanges, OnDestroy, AfterViewIni
2047
2066
  private updateDynamicGradients;
2048
2067
  private createRadarChart;
2049
2068
  static ɵfac: i0.ɵɵFactoryDeclaration<SpiderChartComponent, never>;
2050
- static ɵcmp: i0.ɵɵComponentDeclaration<SpiderChartComponent, "lib-spider-chart", never, { "datasets": { "alias": "datasets"; "required": false; }; "config": { "alias": "config"; "required": false; }; "polygon_colors": { "alias": "polygon_colors"; "required": false; }; "showChartInfo": { "alias": "showChartInfo"; "required": false; }; }, {}, never, never, true, never>;
2069
+ static ɵcmp: i0.ɵɵComponentDeclaration<SpiderChartComponent, "lib-spider-chart", never, { "datasets": { "alias": "datasets"; "required": false; }; "config": { "alias": "config"; "required": false; }; "polygon_colors": { "alias": "polygon_colors"; "required": false; }; "showChartInfo": { "alias": "showChartInfo"; "required": false; }; }, { "tooltipActiveChange": "tooltipActiveChange"; }, never, never, true, never>;
2051
2070
  }
2052
2071
 
2053
2072
  declare class LibVisualManagerModalComponent implements OnInit, AfterViewInit {
@@ -2104,7 +2123,7 @@ declare class LayoutService {
2104
2123
  static ɵprov: i0.ɵɵInjectableDeclaration<LayoutService>;
2105
2124
  }
2106
2125
 
2107
- interface PrefMatchManagerItem {
2126
+ interface PrefMatchManagerItem$1 {
2108
2127
  id: string;
2109
2128
  name: string;
2110
2129
  selected: boolean;
@@ -2199,6 +2218,7 @@ declare class ClientViewportComponent implements OnInit, OnChanges, OnDestroy, A
2199
2218
  private elementRef;
2200
2219
  private router;
2201
2220
  private ngZone;
2221
+ private cdr;
2202
2222
  config?: IClientViewportConfig;
2203
2223
  back: EventEmitter<void>;
2204
2224
  tabSettingsClick: EventEmitter<{
@@ -2221,6 +2241,7 @@ declare class ClientViewportComponent implements OnInit, OnChanges, OnDestroy, A
2221
2241
  backendUrl: string;
2222
2242
  private tabButtons;
2223
2243
  private tabStripRef;
2244
+ spiderChartComponent: SpiderChartComponent | undefined;
2224
2245
  private readonly primaryProspect;
2225
2246
  readonly clientHomeComponents: typeof ClientHomeComponent;
2226
2247
  readonly clientMatches$: BehaviorSubject<ILibClientMatchOverview[]>;
@@ -2246,7 +2267,7 @@ declare class ClientViewportComponent implements OnInit, OnChanges, OnDestroy, A
2246
2267
  prefMatchChastity: number;
2247
2268
  prefMatchIntelligence: number;
2248
2269
  prefMatchCooperativeness: number;
2249
- prefMatchManagerItems: PrefMatchManagerItem[];
2270
+ prefMatchManagerItems: PrefMatchManagerItem$1[];
2250
2271
  private prefMatchManagerInitialItems;
2251
2272
  spiderConfig: ISpiderChartConfig;
2252
2273
  spiderDatasets: IDataset[];
@@ -2257,6 +2278,8 @@ declare class ClientViewportComponent implements OnInit, OnChanges, OnDestroy, A
2257
2278
  spiderColorById: Record<string, string>;
2258
2279
  spiderDefaultColorLabel: string | null;
2259
2280
  spiderColorPickerOpenId: string | null;
2281
+ isSpiderTooltipActive: boolean;
2282
+ onSpiderTooltipChange(isActive: boolean): void;
2260
2283
  handoffChatConfig: IHandoffPanelInputs;
2261
2284
  handoffSchedulerConfig: IHandoffPanelInputs;
2262
2285
  handoffDatePrepConfig: IHandoffPanelInputs;
@@ -2279,7 +2302,7 @@ declare class ClientViewportComponent implements OnInit, OnChanges, OnDestroy, A
2279
2302
  private _tabStripMomentumRaf;
2280
2303
  private _tabStripBoundMouseMove;
2281
2304
  private _tabStripBoundMouseUp;
2282
- constructor(layoutService: LayoutService, elementRef: ElementRef, router: Router, ngZone: NgZone);
2305
+ constructor(layoutService: LayoutService, elementRef: ElementRef, router: Router, ngZone: NgZone, cdr: ChangeDetectorRef);
2283
2306
  initializeChatHandoff(): void;
2284
2307
  setViewportMode(mode: 'mobile' | 'tablet' | 'desktop'): void;
2285
2308
  ngOnInit(): void;
@@ -2326,7 +2349,7 @@ declare class ClientViewportComponent implements OnInit, OnChanges, OnDestroy, A
2326
2349
  onPrefMatchBodyTouchEnd(event: TouchEvent | MouseEvent): void;
2327
2350
  setPrefMatchManagerOrderedList(ordered: boolean): void;
2328
2351
  getPrefMatchDisplayIndex(index: number): number;
2329
- onPrefMatchManagerDrop(event: CdkDragDrop<PrefMatchManagerItem[]>): void;
2352
+ onPrefMatchManagerDrop(event: CdkDragDrop<PrefMatchManagerItem$1[]>): void;
2330
2353
  onPrefMatchMinAgeChange(value: string): void;
2331
2354
  onPrefMatchMaxAgeChange(value: string): void;
2332
2355
  togglePrefMatchItemSelection(id: string): void;
@@ -2369,7 +2392,7 @@ declare class AlertPopupComponent implements OnChanges {
2369
2392
  closed: EventEmitter<boolean>;
2370
2393
  isClosing: boolean;
2371
2394
  ngOnChanges(changes: SimpleChanges): void;
2372
- handleCloseEvent(): void;
2395
+ handleCloseEvent(event: Event): void;
2373
2396
  static ɵfac: i0.ɵɵFactoryDeclaration<AlertPopupComponent, never>;
2374
2397
  static ɵcmp: i0.ɵɵComponentDeclaration<AlertPopupComponent, "lib-alert-popup", never, { "title": { "alias": "title"; "required": false; }; "description": { "alias": "description"; "required": false; }; "timeState": { "alias": "timeState"; "required": false; }; "number": { "alias": "number"; "required": false; }; }, { "closed": "closed"; }, never, never, true, never>;
2375
2398
  }
@@ -2438,6 +2461,12 @@ interface IMatcherViewportConfig {
2438
2461
  onActiveIndexChange?: (index: number) => void;
2439
2462
  }
2440
2463
 
2464
+ interface PrefMatchManagerItem {
2465
+ id: string;
2466
+ name: string;
2467
+ weight: number;
2468
+ selected: boolean;
2469
+ }
2441
2470
  declare class MatcherViewportComponent implements OnInit, OnDestroy, OnChanges {
2442
2471
  config?: IMatcherViewportConfig;
2443
2472
  viewportMode: 'mobile' | 'tablet' | 'desktop';
@@ -2446,6 +2475,33 @@ declare class MatcherViewportComponent implements OnInit, OnDestroy, OnChanges {
2446
2475
  spiderDatasets: IDataset[];
2447
2476
  spiderConfig: ISpiderChartConfig;
2448
2477
  spiderPolygonColors: IPolygonColor[];
2478
+ isGalaxyTooltipVisible: boolean;
2479
+ private initialSpiderDatasets;
2480
+ spiderColorById: Record<string, string>;
2481
+ spiderDefaultColorLabel: string | null;
2482
+ alertStatus: Partial<Record<AlertStatusFields, boolean>>;
2483
+ readonly alertStatusFields: typeof AlertStatusFields;
2484
+ showPrefMatchManager: boolean;
2485
+ settingsContext: ClientViewportTab;
2486
+ prefMatchManagerActiveTab: ClientViewportPrefTab;
2487
+ readonly ClientViewportPrefTab: typeof ClientViewportPrefTab;
2488
+ readonly ClientViewportTab: typeof ClientViewportTab;
2489
+ prefMatchManagerItems: PrefMatchManagerItem[];
2490
+ prefMatchManagerOrderedList: boolean;
2491
+ prefMatchManagerMinAge: number;
2492
+ prefMatchManagerMaxAge: number;
2493
+ prefMatchWaist: number;
2494
+ prefMatchHips: number;
2495
+ prefMatchBust: number;
2496
+ prefMatchHeight: number;
2497
+ prefMatchFace: number;
2498
+ prefMatchChastity: number;
2499
+ prefMatchIntelligence: number;
2500
+ prefMatchCooperativeness: number;
2501
+ spiderOrderedList: boolean;
2502
+ allSpiderColors: IPolygonColor[];
2503
+ spiderColorPickerOpenId: string | null;
2504
+ spiderChartComponent: SpiderChartComponent | undefined;
2449
2505
  profileData: Profile | undefined;
2450
2506
  profileComparisonConfig: IProfileConfig;
2451
2507
  traitVisualNodes: INodeData[];
@@ -2474,6 +2530,40 @@ declare class MatcherViewportComponent implements OnInit, OnDestroy, OnChanges {
2474
2530
  }[];
2475
2531
  activeTabKey: string;
2476
2532
  activePage: number;
2533
+ spiderActiveIndex: number;
2534
+ isSpiderTooltipActive: boolean;
2535
+ onSpiderTooltipChange(isActive: boolean): void;
2536
+ onClosedAlert(data: {
2537
+ event: boolean;
2538
+ field: AlertStatusFields;
2539
+ }): void;
2540
+ onHandleAppearPopup(field: AlertStatusFields): void;
2541
+ onTabSettingsClick(key: ClientViewportTab, event: Event): void;
2542
+ openPrefMatchManager(): void;
2543
+ closePrefMatchManager(): void;
2544
+ private initializePrefMatchManager;
2545
+ setPrefMatchManagerActiveTab(tab: ClientViewportPrefTab): void;
2546
+ setPrefMatchManagerOrderedList(ordered: boolean): void;
2547
+ getPrefMatchDisplayIndex(index: number): number;
2548
+ onPrefMatchManagerDrop(event: CdkDragDrop<PrefMatchManagerItem[]>): void;
2549
+ togglePrefMatchItemSelection(id: string): void;
2550
+ updatePrefMatchItemWeight(id: string, weight: string): void;
2551
+ onPrefMatchMinAgeChange(value: string): void;
2552
+ onPrefMatchMaxAgeChange(value: string): void;
2553
+ resetPrefMatchManager(): void;
2554
+ applyPrefMatchManager(): void;
2555
+ setSpiderOrderedList(ordered: boolean): void;
2556
+ toggleSpiderColorPicker(id: string): void;
2557
+ onSpiderColorChange(id: string, colorLabel: string): void;
2558
+ onSpiderDefaultColorChange(colorLabel: string): void;
2559
+ getSpiderColorLabelForItem(id: string): string | null;
2560
+ getSpiderColorValueForItem(id: string): string | null;
2561
+ getSpiderDefaultColorValue(): string | null;
2562
+ private prefMatchHeaderStartX;
2563
+ onPrefMatchHeaderTouchStart(event: TouchEvent | MouseEvent): void;
2564
+ onPrefMatchHeaderTouchEnd(event: TouchEvent | MouseEvent): void;
2565
+ onPrefMatchBodyTouchStart(event: TouchEvent | MouseEvent): void;
2566
+ onPrefMatchBodyTouchEnd(event: TouchEvent | MouseEvent): void;
2477
2567
  private _tabStripDragging;
2478
2568
  private _tabStripStartX;
2479
2569
  private _tabStripScrollLeft;
@@ -2507,11 +2597,14 @@ declare class MatcherViewportComponent implements OnInit, OnDestroy, OnChanges {
2507
2597
  ngOnChanges(changes: SimpleChanges): void;
2508
2598
  private applyConfig;
2509
2599
  private buildSpiderDatasets;
2600
+ private resetSpiderChartPreferences;
2601
+ private applySpiderChartPreferences;
2510
2602
  setPage(page: number): void;
2511
2603
  getClientAttributes(match: any): string[];
2512
2604
  getProspectAttributes(match: any): string[];
2513
2605
  getPageConfig(index: number): IMatcherPageProps | undefined;
2514
2606
  getTabConfig(tabKey: string): IMatcherTabConfig | undefined;
2607
+ onInfoIconClick(event: Event, tabIndex: number): void;
2515
2608
  private updateViewportConfig;
2516
2609
  setViewportMode(mode: 'mobile' | 'tablet' | 'desktop'): void;
2517
2610
  ngOnDestroy(): void;
@@ -2528,13 +2621,14 @@ declare class MatcherViewportComponent implements OnInit, OnDestroy, OnChanges {
2528
2621
  private startCountdown;
2529
2622
  private updateSchedulerEventsForIndex;
2530
2623
  private updateCountdownFromTotalSeconds;
2624
+ private calculateTimerForIndex;
2531
2625
  static ɵfac: i0.ɵɵFactoryDeclaration<MatcherViewportComponent, never>;
2532
2626
  static ɵcmp: i0.ɵɵComponentDeclaration<MatcherViewportComponent, "lib-matcher-viewport", never, { "config": { "alias": "config"; "required": false; }; }, { "activeIndexChange": "activeIndexChange"; }, never, never, false, never>;
2533
2627
  }
2534
2628
 
2535
2629
  declare class MatcherViewportModule {
2536
2630
  static ɵfac: i0.ɵɵFactoryDeclaration<MatcherViewportModule, never>;
2537
- static ɵmod: i0.ɵɵNgModuleDeclaration<MatcherViewportModule, [typeof MatcherViewportComponent], [typeof i2.CommonModule, typeof i4.TranslateModule, typeof LibStatusBarModule, typeof LibClientHomeComponent, typeof i8.ProfileComparisonLibModule, typeof SpiderChartComponent, typeof LibSchedulerComponent, typeof i10.TraitVisualCanvasComponent, typeof i6.ButtonsModule, typeof ProfileCardModule, typeof LibDashboardSwipeableTabsComponent, typeof ChatSuggestionComponent], [typeof MatcherViewportComponent]>;
2631
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MatcherViewportModule, [typeof MatcherViewportComponent], [typeof i2.CommonModule, typeof i3$1.DragDropModule, typeof i4.TranslateModule, typeof LibStatusBarModule, typeof LibClientHomeComponent, typeof i8.ProfileComparisonLibModule, typeof SpiderChartComponent, typeof LibSchedulerComponent, typeof i10.TraitVisualCanvasComponent, typeof i6.ButtonsModule, typeof ProfileCardModule, typeof LibDashboardSwipeableTabsComponent, typeof ChatSuggestionComponent], [typeof MatcherViewportComponent]>;
2538
2632
  static ɵinj: i0.ɵɵInjectorDeclaration<MatcherViewportModule>;
2539
2633
  }
2540
2634
 
@@ -2735,5 +2829,5 @@ declare class StatusIconComponent {
2735
2829
  static ɵcmp: i0.ɵɵComponentDeclaration<StatusIconComponent, "lib-status-icon", never, { "type": { "alias": "type"; "required": true; }; }, {}, never, never, true, never>;
2736
2830
  }
2737
2831
 
2738
- export { AbstractCacheService, AgendaComponent, AlertPopupComponent, AlertStatusFields, ArraySortPipe, AutoDelegationEventTypes, AutoDelegationEventValue, CONVERSATION_FLAG, COUNTER_FLAG_BASE, CalendarAccountEnum, CalendarAccountIconsEnum, CalendarUtilsService, ChatComponent, ChatMetaPipe, ChatService, ChatSuggestionComponent, CircleProgressComponent, CircleProgressModule, CircleVariable, ClientChatHeadComponent, ClientDashboardTabs, ClientHomeComponent, ClientViewportComponent, ClientViewportModule, ClientViewportPage, ClientViewportPrefTab, ClientViewportTab, CommonOperations, CountNonEmptyFieldsPipe, EditRecurringEventOptions, EventTypes, GetColorByMatcherPipe, GetMultiSelectDisplayTextPipe, GetProfileWithProgressPipe, HandoffPanelTab, HandoffPanelVersion, INNER_CIRCLE_STATE, InitialsPipe, IsStatusIncludedPipe, LayoutService, LibAgendaModule, LibAutoDelegationModalComponent, LibChatComponentModule, LibClientHomeComponent, LibClientMatchOverviewComponent, LibDashboardSwipeableTabsComponent, LibEventFormComponent, LibEventFormModule, LibHandoffPanelComponent, LibMessageModalComponent, LibProfileComparisonComponent, LibSchedulerComponent, LibStatusBarComponent, LibStatusBarModule, LibVisualManagerModalComponent, MATCHER_STATUSES, MatcherStatuses, MatcherStatusesComponent, MatcherViewportComponent, MatcherViewportModule, MenuPosition, PROGRESS_GAP_MINUTES, ProfileCardComponent, ProfileCardModule, ProgressTickerService, RecurringTypes, RoundPipe, ScheduleDateStatus, SenderTypes, SpiderChartComponent, StandardChatHeadComponent, StatusIconComponent, TICK_PERIOD_SECONDS, TRAIT_VISUAL_DEFAULT_BG_BASE64, VisualManagerModalEventTypes, VisualManagerModalEventValue, circleData, computeInnerState, configSpider, dashboardMainSwiperDefaultOptions, dashboardThumbsSwiperDefaultOptions, defaultAgendaEvents, defaultClientDashboardConfig, defaultClientHomeConfig, defaultClientMatches, defaultClientViewportConfig, defaultMatcherViewportConfig, defaultProfileComparisonConfig, defaultProfileData, defaultSchedulerEvents, defaultSpiderConfig, defaultSpiderDatasets, defaultTraitVisualNodes, defaultUserHomeConfig, defsF, defsLG, defsRG, demoPolygonColors, innerProgressDefaultColors, innerProgressPinkColors, innerProgressPurpleColors, innerProgressWhiteColors, mainswiperDefaultOptions, progressDefaultColors, progressWhiteColors, prospects, recurringOptions, thumbsSwiperDefaultOptions };
2832
+ export { AbstractCacheService, AgendaComponent, AlertPopupComponent, AlertStatusFields, ArraySortPipe, AutoDelegationEventTypes, AutoDelegationEventValue, CONVERSATION_FLAG, COUNTER_FLAG_BASE, CalendarAccountEnum, CalendarAccountIconsEnum, CalendarUtilsService, ChatComponent, ChatMetaPipe, ChatService, ChatSuggestionComponent, CircleProgressComponent, CircleProgressModule, CircleVariable, ClientChatHeadComponent, ClientDashboardTabs, ClientHomeComponent, ClientViewportComponent, ClientViewportModule, ClientViewportPage, ClientViewportPrefTab, ClientViewportTab, CommonOperations, CountNonEmptyFieldsPipe, EditRecurringEventOptions, EventTypes, GetColorByMatcherPipe, GetMultiSelectDisplayTextPipe, GetProfileWithProgressPipe, HandoffPanelTab, HandoffPanelVersion, INNER_CIRCLE_STATE, InitialsPipe, IsStatusIncludedPipe, LayoutService, LibAgendaModule, LibAutoDelegationModalComponent, LibChatComponentModule, LibClientHomeComponent, LibClientMatchOverviewComponent, LibDashboardSwipeableTabsComponent, LibEventFormComponent, LibEventFormModule, LibHandoffPanelComponent, LibMessageModalComponent, LibProfileComparisonComponent, LibSchedulerComponent, LibStatusBarComponent, LibStatusBarModule, LibVisualManagerModalComponent, MATCHER_STATUSES, MatcherStatuses, MatcherStatusesComponent, MatcherViewportComponent, MatcherViewportModule, MenuPosition, MessageOption, PROGRESS_GAP_MINUTES, ProfileCardComponent, ProfileCardModule, ProgressTickerService, RecurringTypes, RoundPipe, ScheduleDateStatus, SenderTypes, SpiderChartComponent, StandardChatHeadComponent, StatusIconComponent, TICK_PERIOD_SECONDS, TRAIT_VISUAL_DEFAULT_BG_BASE64, VisualManagerModalEventTypes, VisualManagerModalEventValue, circleData, computeInnerState, configSpider, dashboardMainSwiperDefaultOptions, dashboardThumbsSwiperDefaultOptions, defaultAgendaEvents, defaultClientDashboardConfig, defaultClientHomeConfig, defaultClientMatches, defaultClientViewportConfig, defaultMatcherViewportConfig, defaultProfileComparisonConfig, defaultProfileData, defaultSchedulerEvents, defaultSpiderConfig, defaultSpiderDatasets, defaultTraitVisualNodes, defaultUserHomeConfig, defsF, defsLG, defsRG, demoPolygonColors, innerProgressDefaultColors, innerProgressPinkColors, innerProgressPurpleColors, innerProgressWhiteColors, mainswiperDefaultOptions, progressDefaultColors, progressWhiteColors, prospects, recurringOptions, thumbsSwiperDefaultOptions };
2739
2833
  export type { ChatHeadData, ChatHeadState, CircleProgressConfig, ClientChatHeadData, ClientChatHeadModel, ClientInnerState, DatePrepDesignation, IAgendaDay, IAgendaEvent, IAttachment, IAutoDelegationData, IAutoDelegationEvent, IAutoDelegationModalData, IAutoDelegationPreferences, ICalendarAccount, ICalendarAccountTheme, IChartData, IChatIdentifier, IChatMeta, IChatSuggestion, ICircleData, IClientDashboardInputs, IClientPageProps, IClientProfile, IClientViewportConfig, IColorChangeNotification, IConversationFlag, IDashboardMatchRequest, IDashboardMatcherProfile, IDataset, IDateMessages, IDatePrepInfo, IDatePrepItem, IDefsF, IDefsLG, IDefsRG, IEvent, IEventFormOutput, IEventTime, IGroupWrapper, IHandoffPanelInputs, IHomeDashboardInputs, IInnerPartialCircleProgressColors, ILibClientMatchOverview, IMatcherDashboardInputs, IMatcherPageProps, IMatcherProfile, IMatcherTabConfig, IMatcherViewportConfig, IMessage, IPartialCircleProgressColors, IPolygonColor, IPreferenceItem, IProfileAttribute, IProfileComparisonData, IProfileComparisonInputs, IProspect, IProspectData, IRecurringEvent, IRecurringEventException, IRecurringPattern, IScheduleSlot, ISchedulerAction, ISchedulerEvent, ISchedulerEventSlots, ISchedulerEventSuggestion, ISchedulerSuggestionProfile, ISpiderChartAttribute, ISpiderChartConfig, ITabConfig, ITabWrapper, IVisualManagerModalData, IVisualManagerModalEvent, IVisualManagerModalModalData, ProgressDecision, ProgressFacts, StandardChatHeadModel, StoredRule, TabNode };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@naniteninja/dashboard-components-lib",
3
- "version": "2.0.10",
3
+ "version": "2.0.11",
4
4
  "author": "naniteninja",
5
5
  "repository": {
6
6
  "type": "git"