@naniteninja/dashboard-components-lib 2.1.95 → 2.1.97
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
|
@@ -357,6 +357,10 @@ interface ILibClientMatchOverview extends Omit<ILibClientMatchOverview$1, 'prima
|
|
|
357
357
|
showHandoff: boolean;
|
|
358
358
|
/** UI-only: whether drag-and-drop repositioning is enabled for this match. */
|
|
359
359
|
allowRepositioning: boolean;
|
|
360
|
+
/** UI-only: precomputed tab identifier for swipeable-tabs rendering. */
|
|
361
|
+
tabSafeId?: string;
|
|
362
|
+
/** UI-only: whether this prospect card should render dimmed. */
|
|
363
|
+
prospectDimmed?: boolean;
|
|
360
364
|
}
|
|
361
365
|
|
|
362
366
|
interface ISpiderChartConfig {
|
|
@@ -701,6 +705,10 @@ interface ISchedulerEventDay {
|
|
|
701
705
|
/** Dashboard scheduler event — extends contract with UI-only image attachments. */
|
|
702
706
|
interface ISchedulerEvent extends ISchedulerEvent$1 {
|
|
703
707
|
images?: ImageModel[];
|
|
708
|
+
/** UI-only: suggestions currently rendered for this slot (precomputed for template binding). */
|
|
709
|
+
visibleSuggestions?: ISchedulerEventSuggestion[];
|
|
710
|
+
/** UI-only: cached status label for template binding (avoids method call in change detection). */
|
|
711
|
+
statusLabel?: 'BOOKED' | 'SUGGESTED' | 'FREE';
|
|
704
712
|
}
|
|
705
713
|
|
|
706
714
|
interface ISchedulerEventSlots {
|
|
@@ -738,6 +746,10 @@ interface ITabGroup {
|
|
|
738
746
|
collapsed: boolean;
|
|
739
747
|
items: IDashboardTabBarItem[];
|
|
740
748
|
order?: number;
|
|
749
|
+
/** UI-only: cached truncated title for current collapsed state (avoids method call in CD). */
|
|
750
|
+
truncatedTitle?: string;
|
|
751
|
+
/** UI-only: cached truncated title for collapsed=true (used in scroll-gutter). */
|
|
752
|
+
collapsedTitle?: string;
|
|
741
753
|
}
|
|
742
754
|
|
|
743
755
|
type TabGroupingMode = 'none' | 'response' | 'client' | 'custom';
|
|
@@ -1128,7 +1140,8 @@ declare class LibSchedulerComponent implements OnInit, OnDestroy, OnChanges {
|
|
|
1128
1140
|
* Always includes checked items; limits others to the slot's current visible count.
|
|
1129
1141
|
* Growing the visible count (via cancelSuggestion) reveals pool replacements.
|
|
1130
1142
|
*/
|
|
1131
|
-
|
|
1143
|
+
private computeVisibleSuggestions;
|
|
1144
|
+
private refreshEventVisibleSuggestions;
|
|
1132
1145
|
/**
|
|
1133
1146
|
* Injects bookable pool itineraries into a free-time slot as fun choices.
|
|
1134
1147
|
* When real pool items exist, placeholder suggestions (no itineraryId) are
|
|
@@ -1167,6 +1180,9 @@ declare class LibMessageModalComponent {
|
|
|
1167
1180
|
hours: number;
|
|
1168
1181
|
minutes: number;
|
|
1169
1182
|
seconds: number;
|
|
1183
|
+
paddedHours: string;
|
|
1184
|
+
paddedMinutes: string;
|
|
1185
|
+
paddedSeconds: string;
|
|
1170
1186
|
private replyDelayMs;
|
|
1171
1187
|
private pressTimer;
|
|
1172
1188
|
options: {
|
|
@@ -1215,6 +1231,7 @@ interface IChatHost {
|
|
|
1215
1231
|
directSend?: boolean;
|
|
1216
1232
|
hasMore: boolean;
|
|
1217
1233
|
messages: IChatMessageRow[];
|
|
1234
|
+
syncMessages(): void;
|
|
1218
1235
|
textControl: FormControl<string>;
|
|
1219
1236
|
gifVisibility: boolean;
|
|
1220
1237
|
emojiVisibility: boolean;
|
|
@@ -1335,8 +1352,8 @@ declare class ChatComponent implements OnInit, AfterViewInit, OnChanges, OnDestr
|
|
|
1335
1352
|
readonly SENDER_USER = SenderTypes.USER;
|
|
1336
1353
|
readonly SENDER_OTHER = SenderTypes.OTHER;
|
|
1337
1354
|
readonly ModalComponent: typeof LibMessageModalComponent;
|
|
1338
|
-
|
|
1339
|
-
|
|
1355
|
+
messages: IChatMessageRow[];
|
|
1356
|
+
syncMessages(): void;
|
|
1340
1357
|
get textControl(): i5.FormControl<string>;
|
|
1341
1358
|
get base64Image(): string | null;
|
|
1342
1359
|
get emojiVisibility(): boolean;
|
|
@@ -1561,11 +1578,15 @@ interface ITabWrapper {
|
|
|
1561
1578
|
id: string;
|
|
1562
1579
|
type: 'item';
|
|
1563
1580
|
data: ILibClientMatchOverview;
|
|
1581
|
+
/** Precomputed safe identifier for template bindings. */
|
|
1582
|
+
safeId?: string;
|
|
1564
1583
|
}
|
|
1565
1584
|
interface IGroupWrapper {
|
|
1566
1585
|
id: string;
|
|
1567
1586
|
type: 'group';
|
|
1568
1587
|
data: ITabGroup;
|
|
1588
|
+
/** Precomputed safe identifier for template bindings. */
|
|
1589
|
+
safeId?: string;
|
|
1569
1590
|
}
|
|
1570
1591
|
type TabNode = ITabWrapper | IGroupWrapper;
|
|
1571
1592
|
interface IColorChangeNotification {
|
|
@@ -1643,7 +1664,10 @@ interface ISwipeableTabsHost {
|
|
|
1643
1664
|
repositionTargetGroupId: string | null;
|
|
1644
1665
|
isTransferDrag: boolean;
|
|
1645
1666
|
draggedItemData: DragPayload | null;
|
|
1667
|
+
draggedItemSafeId: string | null;
|
|
1646
1668
|
potentialGroupTargetId: string | null;
|
|
1669
|
+
rootNodeDragDisabledMap: Map<string, boolean>;
|
|
1670
|
+
itemDragDisabledMap: Map<string, boolean>;
|
|
1647
1671
|
groupingProcessed: boolean;
|
|
1648
1672
|
groupingAnimating: boolean;
|
|
1649
1673
|
recentlyDroppedId: string | null;
|
|
@@ -1986,6 +2010,9 @@ declare class SwipeableTabsHostState {
|
|
|
1986
2010
|
scrollDragListenersAttached: boolean;
|
|
1987
2011
|
potentialGroupTargetId: string | null;
|
|
1988
2012
|
draggedItemData: DragPayload | null;
|
|
2013
|
+
draggedItemSafeId: string | null;
|
|
2014
|
+
rootNodeDragDisabledMap: Map<string, boolean>;
|
|
2015
|
+
itemDragDisabledMap: Map<string, boolean>;
|
|
1989
2016
|
groupingProcessed: boolean;
|
|
1990
2017
|
groupingAnimating: boolean;
|
|
1991
2018
|
readonly EDGE_SCROLL_ZONE = 80;
|
|
@@ -2216,10 +2243,11 @@ declare class ClientHomeStateService {
|
|
|
2216
2243
|
traitVisualAttrWeights: number[];
|
|
2217
2244
|
traitVisualPrefWeights: number[];
|
|
2218
2245
|
private readonly statusValues;
|
|
2246
|
+
defaultNumberOfItems: ILibClientMatchOverview[];
|
|
2247
|
+
defaultOverview: ILibClientMatchOverview;
|
|
2219
2248
|
attach(host: IClientHomeHost): void;
|
|
2220
2249
|
private get ctx();
|
|
2221
|
-
|
|
2222
|
-
get defaultOverview(): ILibClientMatchOverview;
|
|
2250
|
+
updateDefaultItems(): void;
|
|
2223
2251
|
groupingAdapter: (item: ILibClientMatchOverview, mode: TabGroupingMode) => {
|
|
2224
2252
|
id: string;
|
|
2225
2253
|
title: string;
|
|
@@ -2227,12 +2255,13 @@ declare class ClientHomeStateService {
|
|
|
2227
2255
|
order?: number;
|
|
2228
2256
|
} | null;
|
|
2229
2257
|
isProspectDimmed(item: ILibClientMatchOverview): boolean;
|
|
2258
|
+
updateProspectDimmedFlags(): void;
|
|
2230
2259
|
getProspectStatusRank(item: ILibClientMatchOverview): number;
|
|
2231
2260
|
static ɵfac: i0.ɵɵFactoryDeclaration<ClientHomeStateService, never>;
|
|
2232
2261
|
static ɵprov: i0.ɵɵInjectableDeclaration<ClientHomeStateService>;
|
|
2233
2262
|
}
|
|
2234
2263
|
|
|
2235
|
-
declare class LibClientHomeComponent implements OnInit, OnDestroy, IClientHomeHost {
|
|
2264
|
+
declare class LibClientHomeComponent implements OnInit, OnDestroy, OnChanges, IClientHomeHost {
|
|
2236
2265
|
config: IHomeDashboardInputs;
|
|
2237
2266
|
menuPosition: MenuPosition;
|
|
2238
2267
|
role: AccountTypes;
|
|
@@ -2270,6 +2299,7 @@ declare class LibClientHomeComponent implements OnInit, OnDestroy, IClientHomeHo
|
|
|
2270
2299
|
readonly cdr: ChangeDetectorRef;
|
|
2271
2300
|
constructor();
|
|
2272
2301
|
ngOnInit(): void;
|
|
2302
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
2273
2303
|
ngOnDestroy(): void;
|
|
2274
2304
|
focus(): void;
|
|
2275
2305
|
static ɵfac: i0.ɵɵFactoryDeclaration<LibClientHomeComponent, never>;
|
|
@@ -2373,7 +2403,6 @@ declare class StandardChatHeadActionsService {
|
|
|
2373
2403
|
private lastImageSrc;
|
|
2374
2404
|
private readonly uid;
|
|
2375
2405
|
private readonly state;
|
|
2376
|
-
private readonly sanitizer;
|
|
2377
2406
|
attach(host: IStandardChatHeadHost): void;
|
|
2378
2407
|
private get ctx();
|
|
2379
2408
|
onInit(): void;
|
|
@@ -2388,7 +2417,7 @@ declare class StandardChatHeadActionsService {
|
|
|
2388
2417
|
}
|
|
2389
2418
|
|
|
2390
2419
|
declare class StandardChatHeadStateService {
|
|
2391
|
-
svgHtml:
|
|
2420
|
+
svgHtml: string;
|
|
2392
2421
|
static ɵfac: i0.ɵɵFactoryDeclaration<StandardChatHeadStateService, never>;
|
|
2393
2422
|
static ɵprov: i0.ɵɵInjectableDeclaration<StandardChatHeadStateService>;
|
|
2394
2423
|
}
|
|
@@ -2452,12 +2481,16 @@ declare class ClientMatchOverviewStateService {
|
|
|
2452
2481
|
left: number;
|
|
2453
2482
|
};
|
|
2454
2483
|
progressPercent: number | null;
|
|
2484
|
+
standardHeadModel: IStandardChatHead | undefined;
|
|
2485
|
+
statusHeadData: IChatHeadData | null;
|
|
2486
|
+
clientHeadModel: IClientChatHead | undefined;
|
|
2455
2487
|
attach(host: IClientMatchOverviewHost): void;
|
|
2456
2488
|
private get ctx();
|
|
2457
2489
|
updateProgressPercent(): void;
|
|
2458
|
-
|
|
2459
|
-
|
|
2460
|
-
|
|
2490
|
+
updateHeadModels(): void;
|
|
2491
|
+
private buildStandardHeadModel;
|
|
2492
|
+
private buildStatusHeadData;
|
|
2493
|
+
private buildClientHeadModel;
|
|
2461
2494
|
get hoursRemaining(): number | string;
|
|
2462
2495
|
buildCircleOpts(partialColors?: IPartialCircleProgressColors): void;
|
|
2463
2496
|
static ɵfac: i0.ɵɵFactoryDeclaration<ClientMatchOverviewStateService, never>;
|
|
@@ -2515,11 +2548,16 @@ declare class LibHandoffPanelComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
2515
2548
|
activeTabIndex: number;
|
|
2516
2549
|
messages$: Observable<IMessage[]>;
|
|
2517
2550
|
scheduleSlots: IScheduleSlot[];
|
|
2551
|
+
scheduleSlotRows: {
|
|
2552
|
+
slot: IScheduleSlot;
|
|
2553
|
+
control: FormControl<boolean>;
|
|
2554
|
+
}[];
|
|
2518
2555
|
slotControls: Map<string, FormControl<boolean>>;
|
|
2519
2556
|
datePrepInfo: IDatePrepInfo;
|
|
2520
2557
|
isSwiping: boolean;
|
|
2521
2558
|
translateX: number;
|
|
2522
2559
|
transition: string;
|
|
2560
|
+
versionClass: string;
|
|
2523
2561
|
private touchStartX;
|
|
2524
2562
|
private touchStartY;
|
|
2525
2563
|
private destroy$;
|
|
@@ -2534,7 +2572,6 @@ declare class LibHandoffPanelComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
2534
2572
|
onTabChange(index: number): void;
|
|
2535
2573
|
getSlotControl(slot: IScheduleSlot): FormControl<boolean>;
|
|
2536
2574
|
onMessageAdd(message: IMessage): void;
|
|
2537
|
-
getVersionClass(): string;
|
|
2538
2575
|
onProspectSelect(prospect: IHandoffProspectCard): void;
|
|
2539
2576
|
onMouseDown(event: MouseEvent): void;
|
|
2540
2577
|
onMouseMove(event: MouseEvent): void;
|
|
@@ -2619,6 +2656,9 @@ declare class SpiderChartComponent implements OnChanges, OnDestroy, AfterViewIni
|
|
|
2619
2656
|
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; }; "isSelectorTooltipTimeState": { "alias": "isSelectorTooltipTimeState"; "required": false; }; }, { "tooltipActiveChange": "tooltipActiveChange"; "isSelectorTooltipVisibleChange": "isSelectorTooltipVisibleChange"; }, never, never, true, never>;
|
|
2620
2657
|
}
|
|
2621
2658
|
|
|
2659
|
+
type PreferenceWithControl = IPreferenceItem & {
|
|
2660
|
+
control: FormControl;
|
|
2661
|
+
};
|
|
2622
2662
|
declare class LibVisualManagerModalComponent implements OnInit, AfterViewInit {
|
|
2623
2663
|
private changeDetectorRef;
|
|
2624
2664
|
private popupModalService;
|
|
@@ -2627,13 +2667,14 @@ declare class LibVisualManagerModalComponent implements OnInit, AfterViewInit {
|
|
|
2627
2667
|
data: IVisualManagerModalData;
|
|
2628
2668
|
event: EventEmitter<IVisualManagerModalEvent>;
|
|
2629
2669
|
componentData: IVisualManagerModalData | null;
|
|
2630
|
-
preferences:
|
|
2670
|
+
preferences: PreferenceWithControl[];
|
|
2631
2671
|
originalPreferences: IPreferenceItem[];
|
|
2632
2672
|
preferenceControls: Map<string, FormControl>;
|
|
2633
|
-
|
|
2634
|
-
|
|
2673
|
+
selectedItems: PreferenceWithControl[];
|
|
2674
|
+
deselectedItems: PreferenceWithControl[];
|
|
2635
2675
|
constructor(changeDetectorRef: ChangeDetectorRef, popupModalService: PopupModalService, modalData?: IVisualManagerModalData | undefined);
|
|
2636
2676
|
ngOnInit(): void;
|
|
2677
|
+
private updateFilteredItems;
|
|
2637
2678
|
ngAfterViewInit(): void;
|
|
2638
2679
|
togglePreference(preference: IPreferenceItem, event?: Event): void;
|
|
2639
2680
|
apply(): void;
|
|
@@ -2641,10 +2682,10 @@ declare class LibVisualManagerModalComponent implements OnInit, AfterViewInit {
|
|
|
2641
2682
|
close(): void;
|
|
2642
2683
|
onPreferenceNameChange(preference: IPreferenceItem, newName: string): void;
|
|
2643
2684
|
getPreferenceControl(preferenceId: string): FormControl;
|
|
2644
|
-
onDragStart(event: DragEvent, preference:
|
|
2685
|
+
onDragStart(event: DragEvent, preference: PreferenceWithControl, isSelected: boolean): void;
|
|
2645
2686
|
onDragEnd(event: DragEvent): void;
|
|
2646
2687
|
onDragOver(event: DragEvent): void;
|
|
2647
|
-
onDrop(event: DragEvent, targetPreference:
|
|
2688
|
+
onDrop(event: DragEvent, targetPreference: PreferenceWithControl, isSelected: boolean): void;
|
|
2648
2689
|
static ɵfac: i0.ɵɵFactoryDeclaration<LibVisualManagerModalComponent, [null, null, { optional: true; }]>;
|
|
2649
2690
|
static ɵcmp: i0.ɵɵComponentDeclaration<LibVisualManagerModalComponent, "lib-visual-manager-modal", never, { "data": { "alias": "data"; "required": false; }; }, { "event": "event"; }, never, never, true, never>;
|
|
2650
2691
|
}
|
|
@@ -2715,6 +2756,8 @@ interface IPrefMatchManagerItem {
|
|
|
2715
2756
|
name: string;
|
|
2716
2757
|
selected: boolean;
|
|
2717
2758
|
weight: number;
|
|
2759
|
+
/** UI-only: 1-based index among selected items when ordered list is shown. */
|
|
2760
|
+
displayIndex?: number;
|
|
2718
2761
|
}
|
|
2719
2762
|
|
|
2720
2763
|
declare function getInputValue(event: Event): string;
|
|
@@ -2763,6 +2806,7 @@ declare abstract class BaseViewportComponent {
|
|
|
2763
2806
|
spiderOrderedList: boolean;
|
|
2764
2807
|
spiderColorById: Record<string, string>;
|
|
2765
2808
|
spiderDefaultColorLabel: string | null;
|
|
2809
|
+
spiderDefaultColorValue: string | null;
|
|
2766
2810
|
spiderColorPickerOpenId: string | null;
|
|
2767
2811
|
isSpiderTooltipActive: boolean;
|
|
2768
2812
|
protected abstract get tabStripRef(): ElementRef<HTMLElement> | undefined;
|
|
@@ -2784,11 +2828,12 @@ declare abstract class BaseViewportComponent {
|
|
|
2784
2828
|
onSpiderDefaultColorChange(colorLabel: string): void;
|
|
2785
2829
|
getSpiderColorLabelForItem(id: string): string | null;
|
|
2786
2830
|
getSpiderColorValueForItem(id: string): string | null;
|
|
2787
|
-
getSpiderDefaultColorValue(): string | null;
|
|
2788
2831
|
getPrefMatchDisplayIndex(index: number): number;
|
|
2789
2832
|
onPrefMatchManagerDrop(event: CdkDragDrop<IPrefMatchManagerItem[]>): void;
|
|
2833
|
+
protected refreshPrefMatchDisplayIndices(): void;
|
|
2790
2834
|
protected resetSpiderChartPreferences(): void;
|
|
2791
2835
|
protected applySpiderChartPreferences(): void;
|
|
2836
|
+
protected refreshSpiderDefaultColorValue(): void;
|
|
2792
2837
|
protected buildSpiderDatasets(): void;
|
|
2793
2838
|
protected initTabStripSwiper(): void;
|
|
2794
2839
|
protected destroyTabStripSwiper(): void;
|
|
@@ -4005,6 +4050,15 @@ declare class RoundPipe implements PipeTransform {
|
|
|
4005
4050
|
static ɵpipe: i0.ɵɵPipeDeclaration<RoundPipe, "round", false>;
|
|
4006
4051
|
}
|
|
4007
4052
|
|
|
4053
|
+
/** Marks app-generated HTML (e.g. SVG chat heads) as trusted for [innerHTML] binding. */
|
|
4054
|
+
declare class TrustedHtmlPipe implements PipeTransform {
|
|
4055
|
+
private readonly sanitizer;
|
|
4056
|
+
constructor(sanitizer: DomSanitizer);
|
|
4057
|
+
transform(value: string | null | undefined): SafeHtml;
|
|
4058
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TrustedHtmlPipe, never>;
|
|
4059
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<TrustedHtmlPipe, "trustedHtml", true>;
|
|
4060
|
+
}
|
|
4061
|
+
|
|
4008
4062
|
declare class UpdateLLMPreferencePipe implements PipeTransform {
|
|
4009
4063
|
transform(values: SelectOption<LLMPreferences>[], llmPreferenceLoading: string[]): SelectOption<LLMPreferences>[];
|
|
4010
4064
|
static ɵfac: i0.ɵɵFactoryDeclaration<UpdateLLMPreferencePipe, never>;
|
|
@@ -4116,7 +4170,6 @@ declare class ClientChatHeadActionsService {
|
|
|
4116
4170
|
private resolvedImageUrl;
|
|
4117
4171
|
private lastImageSrc;
|
|
4118
4172
|
private readonly state;
|
|
4119
|
-
private readonly sanitizer;
|
|
4120
4173
|
attach(host: IClientChatHeadHost): void;
|
|
4121
4174
|
private get ctx();
|
|
4122
4175
|
onInit(): void;
|
|
@@ -4133,7 +4186,7 @@ declare class ClientChatHeadActionsService {
|
|
|
4133
4186
|
}
|
|
4134
4187
|
|
|
4135
4188
|
declare class ClientChatHeadStateService {
|
|
4136
|
-
svgHtml:
|
|
4189
|
+
svgHtml: string;
|
|
4137
4190
|
static ɵfac: i0.ɵɵFactoryDeclaration<ClientChatHeadStateService, never>;
|
|
4138
4191
|
static ɵprov: i0.ɵɵInjectableDeclaration<ClientChatHeadStateService>;
|
|
4139
4192
|
}
|
|
@@ -4153,5 +4206,5 @@ declare class ClientChatHeadComponent implements OnInit, OnDestroy, OnChanges {
|
|
|
4153
4206
|
static ɵcmp: i0.ɵɵComponentDeclaration<ClientChatHeadComponent, "lib-client-chat-head", never, { "data": { "alias": "data"; "required": false; }; "size": { "alias": "size"; "required": false; }; "model": { "alias": "model"; "required": false; }; }, {}, never, never, true, never>;
|
|
4154
4207
|
}
|
|
4155
4208
|
|
|
4156
|
-
export { AbstractCacheService, AgendaComponent, AgendaItemType, AlertPopupComponent, AlertStatusFields, ArraySortPipe, AutoDelegationEventTypes, AutoDelegationEventValue, BaseViewportComponent, CURRENT_CLIENT, CURRENT_MATCHER, CalendarAccountIconsEnum, CalendarUtilsService, ChatComponent, ChatMetaPipe, ChatService, ChatSuggestionComponent, CircleProgressComponent, CircleProgressModule, CircleVariable, ClientChatHeadComponent, ClientDashboardTabs, ClientHomeComponent, ClientViewportComponent, ClientViewportModule, ClientViewportPage, ClientViewportPrefTab, ClientViewportTab, CommonOperations, CountNonEmptyFieldsPipe, FallbackTranslatePipe, FormFieldType, GetColorByMatcherPipe, GetMultiSelectDisplayTextPipe, GetProfileWithProgressPipe, GifSelectorService, HandoffPanelTab, HandoffPanelVersion, INTERESTS_LIST, InitialsPipe, IsStatusIncludedPipe, LayoutService, LibAgendaModule, LibAutoDelegationModalComponent, LibChatComponentModule, LibClientHomeComponent, LibClientMatchOverviewComponent, LibDashboardSwipeableTabsComponent, LibEventFormComponent, LibEventFormModule, LibHandoffPanelComponent, LibLoadingBarComponent, LibMessageModalComponent, LibSchedulerComponent, LibStatusBarComponent, LibStatusBarModule, LibToastrService, LibToastrStackService, LibVisualManagerModalComponent, LocalStorageKeys, MATCHER_STATUS_LOOKUP, MatcherStatusesComponent, MatcherViewportComponent, MatcherViewportModule, MenuPosition, MessageModalService, MessageOption, PROGRESS_GAP_MINUTES, ProfileCardComponent, ProfileCardModule, ProgressTickerService, RoundPipe, SPREAD_PROSPECT_OVERVIEW_DEFAULTS, SafeHtmlPipe, SpiderChartComponent, StandardChatHeadComponent, StatusIconComponent, TICK_PERIOD_SECONDS, TRAIT_VISUAL_DEFAULT_BG_BASE64, ToastrActionInitiator, ToastrActionType, ToastrDescription, ToastrPosition, UpdateLLMPreferencePipe, VisualManagerModalEventTypes, VisualManagerModalEventValue, allClients, allMatchers, circleData, computeInnerState, configSpider, dashboardMainSwiperDefaultOptions, dashboardThumbsSwiperDefaultOptions, defaultClientDashboardConfig, defaultClientHomeConfig, defaultClientViewportConfig, defaultHandoffPanelConfig, defaultMatcherDashboardConfig, defaultSpiderConfig, defsF, defsLG, defsRG, demoPolygonColors, formatMessageDate, getLimitDatesIndicators, innerProgressDefaultColors, innerProgressPinkColors, innerProgressPurpleColors, innerProgressTealColors, innerProgressWhiteColors, mainswiperDefaultOptions, progressDefaultColors, progressWhiteColors, prospectMatchData, prospects, recurringOptions, thumbsSwiperDefaultOptions };
|
|
4209
|
+
export { AbstractCacheService, AgendaComponent, AgendaItemType, AlertPopupComponent, AlertStatusFields, ArraySortPipe, AutoDelegationEventTypes, AutoDelegationEventValue, BaseViewportComponent, CURRENT_CLIENT, CURRENT_MATCHER, CalendarAccountIconsEnum, CalendarUtilsService, ChatComponent, ChatMetaPipe, ChatService, ChatSuggestionComponent, CircleProgressComponent, CircleProgressModule, CircleVariable, ClientChatHeadComponent, ClientDashboardTabs, ClientHomeComponent, ClientViewportComponent, ClientViewportModule, ClientViewportPage, ClientViewportPrefTab, ClientViewportTab, CommonOperations, CountNonEmptyFieldsPipe, FallbackTranslatePipe, FormFieldType, GetColorByMatcherPipe, GetMultiSelectDisplayTextPipe, GetProfileWithProgressPipe, GifSelectorService, HandoffPanelTab, HandoffPanelVersion, INTERESTS_LIST, InitialsPipe, IsStatusIncludedPipe, LayoutService, LibAgendaModule, LibAutoDelegationModalComponent, LibChatComponentModule, LibClientHomeComponent, LibClientMatchOverviewComponent, LibDashboardSwipeableTabsComponent, LibEventFormComponent, LibEventFormModule, LibHandoffPanelComponent, LibLoadingBarComponent, LibMessageModalComponent, LibSchedulerComponent, LibStatusBarComponent, LibStatusBarModule, LibToastrService, LibToastrStackService, LibVisualManagerModalComponent, LocalStorageKeys, MATCHER_STATUS_LOOKUP, MatcherStatusesComponent, MatcherViewportComponent, MatcherViewportModule, MenuPosition, MessageModalService, MessageOption, PROGRESS_GAP_MINUTES, ProfileCardComponent, ProfileCardModule, ProgressTickerService, RoundPipe, SPREAD_PROSPECT_OVERVIEW_DEFAULTS, SafeHtmlPipe, SpiderChartComponent, StandardChatHeadComponent, StatusIconComponent, TICK_PERIOD_SECONDS, TRAIT_VISUAL_DEFAULT_BG_BASE64, ToastrActionInitiator, ToastrActionType, ToastrDescription, ToastrPosition, TrustedHtmlPipe, UpdateLLMPreferencePipe, VisualManagerModalEventTypes, VisualManagerModalEventValue, allClients, allMatchers, circleData, computeInnerState, configSpider, dashboardMainSwiperDefaultOptions, dashboardThumbsSwiperDefaultOptions, defaultClientDashboardConfig, defaultClientHomeConfig, defaultClientViewportConfig, defaultHandoffPanelConfig, defaultMatcherDashboardConfig, defaultSpiderConfig, defsF, defsLG, defsRG, demoPolygonColors, formatMessageDate, getLimitDatesIndicators, innerProgressDefaultColors, innerProgressPinkColors, innerProgressPurpleColors, innerProgressTealColors, innerProgressWhiteColors, mainswiperDefaultOptions, progressDefaultColors, progressWhiteColors, prospectMatchData, prospects, recurringOptions, thumbsSwiperDefaultOptions };
|
|
4157
4210
|
export type { AgendaItem, ChatHeadState, ClientInnerState, GroupingAdapterFn, IAd, IAgendaDay, IAgendaEvent, IAutoDelegationData, IAutoDelegationEvent, IAutoDelegationModalData, IAutoDelegationPreferences, IChatHeadData, IChatMessageRow, ICircleData, ICircleProgressConfig, IClientChatHead, IClientChatHeadData, IClientDashboardInputs, IClientPageProps, IClientPersona, IClientProfile, IClientViewportConfig, IColorChangeNotification, IDashboardTabBarItem, IDataset, IDatePrepInfo, IDatePrepItem, IDefsF, IDefsLG, IDefsRG, IEmptyTemplateContext, IEvent, IEventForm, IEventFormOutput, IEventTime, IGroupWrapper, IHandoffPanelInputs, IHandoffProspectCard, IHomeDashboardInputs, IInnerPartialCircleProgressColors, ILibClientMatchOverview, IMatcherDashboardInputs, IMatcherPageProps, IMatcherProfile, IMatcherTabConfig, IMatcherViewportConfig, IMessageModalEventPayload, IMessageModalPayload, IPartialCircleProgressColors, IPolygonColor, IPrefMatchManagerModalItem, IPrefMatchVisualTabModalData, IPreferenceItem, IProfileAttribute, IProfileComparisonData, IProfileComparisonInputs, IProgressDecision, IProgressFacts, IProspectData, IProspectMatchDatum, IRecurringEvent, IScheduleSlot, ISchedulerAction, ISchedulerEvent, ISchedulerEventDay, ISchedulerEventSlots, ISelectOptionWithTemplate, ISpiderChartAttribute, ISpiderChartConfig, ISpiderChartTabModalData, IStandardChatHead, IStatus, ITabConfig, ITabGroup, ITabGroupConfig, ITabWrapper, ITenorMediaFormat, ITenorObject, ITenorResult, IToasterConfig, IToastrActionEvent, ITraitVisualCanvasConfig, IVisualManagerModalData, IVisualManagerModalEvent, MessageModalScalar, TabGroupingMode, TabInfoData, TabInfoValue, TabModalData, TabNode, ToastrStackConfig };
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@naniteninja/dashboard-components-lib",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.97",
|
|
4
4
|
"author": "naniteninja",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git"
|
|
7
7
|
},
|
|
8
8
|
"peerDependencies": {
|
|
9
|
-
"@naniteninja/cyrano-contracts": "^1.0.
|
|
9
|
+
"@naniteninja/cyrano-contracts": "^1.0.1",
|
|
10
10
|
"@naniteninja/ionic-lib": "^2.0.5",
|
|
11
11
|
"@angular/common": "^20.3.0",
|
|
12
12
|
"@angular/core": "^20.3.0",
|