@naniteninja/dashboard-components-lib 2.0.2 → 2.0.4
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/fesm2022/naniteninja-dashboard-components-lib.mjs +1158 -943
- package/fesm2022/naniteninja-dashboard-components-lib.mjs.map +1 -1
- package/index.d.ts +993 -894
- package/{naniteninja-dashboard-components-lib-2.0.2.tgz → naniteninja-dashboard-components-lib-2.0.4.tgz} +0 -0
- package/package.json +4 -17
package/index.d.ts
CHANGED
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { OnInit, AfterViewInit, ElementRef, EventEmitter, ChangeDetectorRef,
|
|
2
|
+
import { TemplateRef, OnInit, AfterViewInit, ElementRef, EventEmitter, ChangeDetectorRef, PipeTransform, ModuleWithProviders, OnDestroy, OnChanges, SimpleChanges, InjectionToken } from '@angular/core';
|
|
3
3
|
import * as i6 from '@naniteninja/ionic-lib';
|
|
4
|
-
import { LibMenuItem,
|
|
5
|
-
import * as i5$1 from '@angular/forms';
|
|
6
|
-
import { FormControl, FormGroup, FormBuilder } from '@angular/forms';
|
|
4
|
+
import { LibMenuItem, LocationModel, SelectOption, ImageModel, PopupModalService, BaseComponent, FormFieldType as FormFieldType$1, EmojiPickerConfig, InputFieldComponent, Profile, GridColumn } from '@naniteninja/ionic-lib';
|
|
7
5
|
import { Observable, BehaviorSubject } from 'rxjs';
|
|
8
|
-
import { IAgendaDay as IAgendaDay$1 } from 'dashboard-components-lib';
|
|
9
6
|
import * as i2 from '@angular/common';
|
|
10
7
|
import { CurrencyPipe } from '@angular/common';
|
|
11
8
|
import * as i3 from '@ionic/angular';
|
|
12
9
|
import * as i5 from '@ngx-translate/core';
|
|
13
10
|
import { TranslateService } from '@ngx-translate/core';
|
|
11
|
+
import * as i5$1 from '@angular/forms';
|
|
12
|
+
import { FormControl, FormGroup, FormBuilder } from '@angular/forms';
|
|
14
13
|
import { Frequency } from 'rrule/dist/esm/types';
|
|
15
14
|
import { JSONSchema } from '@ngx-pwa/local-storage';
|
|
16
15
|
import * as i4 from '@angular/material/input';
|
|
@@ -22,22 +21,36 @@ import * as d3 from 'd3';
|
|
|
22
21
|
import { SwiperOptions } from 'swiper/types';
|
|
23
22
|
import moment from 'moment';
|
|
24
23
|
|
|
25
|
-
interface
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
24
|
+
interface IAd {
|
|
25
|
+
id?: string;
|
|
26
|
+
icon: string;
|
|
27
|
+
media: string;
|
|
28
|
+
headline: string;
|
|
29
|
+
advertiser?: string;
|
|
30
|
+
body: string;
|
|
31
|
+
callToAction: string;
|
|
32
|
+
clickUrl?: string;
|
|
33
|
+
cta?: string;
|
|
34
|
+
price?: string;
|
|
35
|
+
store?: string;
|
|
36
|
+
starRating?: number;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
interface IAgendaDay extends IAgendaEvent {
|
|
40
|
+
name: string;
|
|
41
|
+
index: number;
|
|
42
|
+
dayNumber: number;
|
|
43
|
+
empty?: boolean;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
interface IAgendaEvent {
|
|
47
|
+
date: Date;
|
|
48
|
+
startTime?: string;
|
|
49
|
+
endTime?: string;
|
|
50
|
+
user?: {
|
|
51
|
+
name: string;
|
|
52
|
+
profilePic?: string;
|
|
37
53
|
};
|
|
38
|
-
celibacy: number;
|
|
39
|
-
cooperation: number;
|
|
40
|
-
intelligence: number;
|
|
41
54
|
}
|
|
42
55
|
|
|
43
56
|
interface IAutoDelegationData {
|
|
@@ -71,6 +84,21 @@ interface IAutoDelegationData {
|
|
|
71
84
|
planOptions?: string[];
|
|
72
85
|
}
|
|
73
86
|
|
|
87
|
+
declare enum AgendaItemType {
|
|
88
|
+
DAY = "day",
|
|
89
|
+
AD = "ad"
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
declare enum AlertStatusFields {
|
|
93
|
+
upcomingDates = "upcomingDates",
|
|
94
|
+
compatibilityProfileTrait = "compatibilityProfileTrait",
|
|
95
|
+
compatibilityProfileSpider = "compatibilityProfileSpider",
|
|
96
|
+
chatHandoff = "chatHandoff",
|
|
97
|
+
chatProgress = "chatProgress",
|
|
98
|
+
chatMeetupAgenda = "chatMeetupAgenda",
|
|
99
|
+
face = "face"
|
|
100
|
+
}
|
|
101
|
+
|
|
74
102
|
declare enum AutoDelegationEventTypes {
|
|
75
103
|
Click = "click",
|
|
76
104
|
Countdown = "countdown"
|
|
@@ -82,106 +110,43 @@ declare enum AutoDelegationEventValue {
|
|
|
82
110
|
RequestAcceped = "request-accepted"
|
|
83
111
|
}
|
|
84
112
|
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
interface IAutoDelegationModalData {
|
|
91
|
-
countdown: number;
|
|
92
|
-
expandedBaseCard?: boolean;
|
|
93
|
-
data: IAutoDelegationData;
|
|
94
|
-
menuItems: LibMenuItem[];
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
declare class LibAutoDelegationModalComponent implements OnInit, AfterViewInit {
|
|
98
|
-
private changeDetectorRef;
|
|
99
|
-
private popupModalService;
|
|
100
|
-
modalData?: IAutoDelegationModalData;
|
|
101
|
-
childModalElementRef: ElementRef<HTMLDivElement>;
|
|
102
|
-
countdown: number;
|
|
103
|
-
expandedBaseCard?: boolean;
|
|
104
|
-
data: IAutoDelegationData;
|
|
105
|
-
menuItems: LibMenuItem[];
|
|
106
|
-
event: EventEmitter<IAutoDelegationEvent>;
|
|
107
|
-
totalStrokeLength: number;
|
|
108
|
-
currentCountdownAt: number;
|
|
109
|
-
activeCountdownPathId: string;
|
|
110
|
-
strokeDashOffset: number;
|
|
111
|
-
componentData: IAutoDelegationModalData | null;
|
|
112
|
-
constructor(changeDetectorRef: ChangeDetectorRef, popupModalService: PopupModalService, modalData?: IAutoDelegationModalData);
|
|
113
|
-
ngOnInit(): void;
|
|
114
|
-
ngAfterViewInit(): void;
|
|
115
|
-
reject(): void;
|
|
116
|
-
accept(): void;
|
|
117
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LibAutoDelegationModalComponent, [null, null, { optional: true; }]>;
|
|
118
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LibAutoDelegationModalComponent, "lib-auto-delegation-modal", never, { "countdown": { "alias": "countdown"; "required": false; }; "expandedBaseCard": { "alias": "expandedBaseCard"; "required": false; }; "data": { "alias": "data"; "required": false; }; "menuItems": { "alias": "menuItems"; "required": false; }; }, { "event": "event"; }, never, never, true, never>;
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
interface IPreferenceItem {
|
|
122
|
-
id: string;
|
|
123
|
-
name: string;
|
|
124
|
-
isSelected: boolean;
|
|
113
|
+
declare enum CalendarAccountEnum {
|
|
114
|
+
GOOGLE = "Google",
|
|
115
|
+
MICROSOFT = "Microsoft"
|
|
125
116
|
}
|
|
126
117
|
|
|
127
|
-
|
|
128
|
-
|
|
118
|
+
declare enum CalendarAccountIconsEnum {
|
|
119
|
+
Google = "googleCalender",
|
|
120
|
+
Microsoft = "microsoft"
|
|
129
121
|
}
|
|
130
122
|
|
|
131
|
-
declare enum
|
|
132
|
-
|
|
133
|
-
|
|
123
|
+
declare enum CircleVariable {
|
|
124
|
+
Partial = "partial",
|
|
125
|
+
Complete = "complete"
|
|
134
126
|
}
|
|
135
127
|
|
|
136
|
-
declare enum
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
RemovePreference = "remove-preference",
|
|
141
|
-
Close = "close"
|
|
128
|
+
declare enum ClientDashboardTabs {
|
|
129
|
+
ChatScheduler = 0,
|
|
130
|
+
ChatCompatibility = 1,
|
|
131
|
+
ChatHandoff = 2
|
|
142
132
|
}
|
|
143
133
|
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
};
|
|
134
|
+
declare enum ClientHomeComponent {
|
|
135
|
+
ChatCompatibility = "ChatCompatibility",
|
|
136
|
+
ChatHandoff = "ChatHandoff",
|
|
137
|
+
ChatScheduler = "ChatScheduler",
|
|
138
|
+
ClientMatchSpiderChart = "ClientMatchSpiderChart",
|
|
139
|
+
ClientMatchTraitChart = "ClientMatchTraitChart"
|
|
151
140
|
}
|
|
152
141
|
|
|
153
|
-
|
|
154
|
-
|
|
142
|
+
declare enum CONVERSATION_FLAG {
|
|
143
|
+
UNRESPONSIVE = "unresponsive",
|
|
144
|
+
REDELEGATION = "redelegation"
|
|
155
145
|
}
|
|
156
146
|
|
|
157
|
-
declare
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
modalData?: IVisualManagerModalModalData;
|
|
161
|
-
childModalElementRef: ElementRef<HTMLDivElement>;
|
|
162
|
-
data: IVisualManagerModalData;
|
|
163
|
-
event: EventEmitter<IVisualManagerModalEvent>;
|
|
164
|
-
componentData: IVisualManagerModalModalData | null;
|
|
165
|
-
preferences: IPreferenceItem[];
|
|
166
|
-
originalPreferences: IPreferenceItem[];
|
|
167
|
-
preferenceControls: Map<string, FormControl>;
|
|
168
|
-
get selectedItems(): IPreferenceItem[];
|
|
169
|
-
get deselectedItems(): IPreferenceItem[];
|
|
170
|
-
constructor(changeDetectorRef: ChangeDetectorRef, popupModalService: PopupModalService, modalData?: IVisualManagerModalModalData);
|
|
171
|
-
ngOnInit(): void;
|
|
172
|
-
ngAfterViewInit(): void;
|
|
173
|
-
togglePreference(preference: IPreferenceItem, event?: Event): void;
|
|
174
|
-
apply(): void;
|
|
175
|
-
reset(): void;
|
|
176
|
-
close(): void;
|
|
177
|
-
onPreferenceNameChange(preference: IPreferenceItem, newName: string): void;
|
|
178
|
-
getPreferenceControl(preferenceId: string): FormControl;
|
|
179
|
-
onDragStart(event: DragEvent, preference: IPreferenceItem, isSelected: boolean): void;
|
|
180
|
-
onDragEnd(event: DragEvent): void;
|
|
181
|
-
onDragOver(event: DragEvent): void;
|
|
182
|
-
onDrop(event: DragEvent, targetPreference: IPreferenceItem, isSelected: boolean): void;
|
|
183
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LibVisualManagerModalComponent, [null, null, { optional: true; }]>;
|
|
184
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LibVisualManagerModalComponent, "lib-visual-manager-modal", never, { "data": { "alias": "data"; "required": false; }; }, { "event": "event"; }, never, never, true, never>;
|
|
147
|
+
declare enum COUNTER_FLAG_BASE {
|
|
148
|
+
StartConversation = "startConversation",
|
|
149
|
+
LastResponse = "lastResponse"
|
|
185
150
|
}
|
|
186
151
|
|
|
187
152
|
declare enum Direction {
|
|
@@ -189,108 +154,131 @@ declare enum Direction {
|
|
|
189
154
|
vertical = "vertical"
|
|
190
155
|
}
|
|
191
156
|
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
callToAction: string;
|
|
200
|
-
clickUrl?: string;
|
|
201
|
-
cta?: string;
|
|
202
|
-
price?: string;
|
|
203
|
-
store?: string;
|
|
204
|
-
starRating?: number;
|
|
157
|
+
declare enum EventTypes {
|
|
158
|
+
DATE = "Date",
|
|
159
|
+
GOOGLE = "Google",
|
|
160
|
+
MICROSOFT = "Microsoft",
|
|
161
|
+
SYSTEM = "System",// system created events
|
|
162
|
+
USER = "User",// user created events
|
|
163
|
+
ITINERARY = "Itinerary"
|
|
205
164
|
}
|
|
206
165
|
|
|
207
|
-
|
|
208
|
-
date
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
166
|
+
declare enum FormFieldType {
|
|
167
|
+
date = "date",
|
|
168
|
+
text = "text",
|
|
169
|
+
textarea = "textarea",
|
|
170
|
+
typeahead = "typeahead",
|
|
171
|
+
multiselect = "multiselect",
|
|
172
|
+
select = "select",
|
|
173
|
+
checkbox = "checkbox",
|
|
174
|
+
toggle = "toggle",
|
|
175
|
+
radio = "radio",
|
|
176
|
+
textlist = "textlist",
|
|
177
|
+
number = "number",
|
|
178
|
+
message = "message",
|
|
179
|
+
time = "time",
|
|
180
|
+
multifield = "multifield",
|
|
181
|
+
action = "action",
|
|
182
|
+
currency = "currency",
|
|
183
|
+
banner = "banner",
|
|
184
|
+
percentage = "percentage",
|
|
185
|
+
multiselectdropdown = "multiselectdropdown",
|
|
186
|
+
hyperlink = "hyperlink",
|
|
187
|
+
injectable = "injectable",
|
|
188
|
+
datetime = "datetime",
|
|
189
|
+
rating = "rating",
|
|
190
|
+
incrementer = "incrementer",
|
|
191
|
+
range = "range",
|
|
192
|
+
password = "password"
|
|
215
193
|
}
|
|
216
194
|
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
empty?: boolean;
|
|
195
|
+
declare enum HandoffPanelVersion {
|
|
196
|
+
STANDARD = "standard",
|
|
197
|
+
PRO = "pro",
|
|
198
|
+
SUPER = "super"
|
|
222
199
|
}
|
|
223
200
|
|
|
224
|
-
declare enum
|
|
225
|
-
|
|
226
|
-
|
|
201
|
+
declare enum INNER_CIRCLE_STATE {
|
|
202
|
+
Waiting = "waiting",
|
|
203
|
+
Quiet = "quiet",
|
|
204
|
+
Unresponsive = "unresponsive",
|
|
205
|
+
Redelegation = "redelegation"
|
|
227
206
|
}
|
|
228
207
|
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
numberOfEvents: number;
|
|
242
|
-
days: IAgendaDay[];
|
|
243
|
-
combinedAgendaItems: AgendaItem[];
|
|
244
|
-
direction: Direction;
|
|
245
|
-
private _events;
|
|
246
|
-
ngOnInit(): void;
|
|
247
|
-
set setAdsData(ads: IAd[]);
|
|
248
|
-
private buildAgendaDays;
|
|
249
|
-
private getSuccessiveEmptyDays;
|
|
250
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AgendaComponent, never>;
|
|
251
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AgendaComponent, "lib-agenda", never, { "adsTemplate": { "alias": "adsTemplate"; "required": false; }; "agendaAdsData": { "alias": "agendaAdsData"; "required": false; }; "loading$": { "alias": "loading$"; "required": false; }; "startDate": { "alias": "startDate"; "required": false; }; "endDate": { "alias": "endDate"; "required": false; }; "events": { "alias": "events"; "required": false; }; "setAdsData": { "alias": "setAdsData"; "required": false; }; }, {}, never, never, false, never>;
|
|
208
|
+
declare enum MatcherStatuses {
|
|
209
|
+
STATUS0 = "no contact",
|
|
210
|
+
STATUS1 = "1st exchange",
|
|
211
|
+
STATUS2 = "2nd exchange",
|
|
212
|
+
STATUS3 = "3rd exchange",
|
|
213
|
+
STATUS4 = "2+ laughs",
|
|
214
|
+
STATUS5 = "idea signalled",
|
|
215
|
+
STATUS6 = "alt contact",
|
|
216
|
+
STATUS7 = "any romance",
|
|
217
|
+
STATUS8 = "locale confirmed",
|
|
218
|
+
STATUS9 = "time confirmed",
|
|
219
|
+
STATUS10 = "all followup"
|
|
252
220
|
}
|
|
253
221
|
|
|
254
|
-
declare
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
ngOnInit(): void;
|
|
259
|
-
private sanitizeHtml;
|
|
260
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AgendaDayCardComponent, never>;
|
|
261
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AgendaDayCardComponent, "lib-agenda-day-card", never, { "adDay": { "alias": "adDay"; "required": false; }; "day": { "alias": "day"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
222
|
+
declare enum EditRecurringEventOptions {
|
|
223
|
+
CURRENT = "CURRENT",
|
|
224
|
+
FOLLOWING = "FOLLOWING",
|
|
225
|
+
ALL = "ALL"
|
|
262
226
|
}
|
|
263
227
|
|
|
264
|
-
declare
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
228
|
+
declare enum RecurringTypes {
|
|
229
|
+
DAILY = "DAILY",
|
|
230
|
+
WEEKLY = "WEEKLY",
|
|
231
|
+
MONTHLY = "MONTHLY",
|
|
232
|
+
ANNUALLY = "ANNUALLY"
|
|
268
233
|
}
|
|
269
234
|
|
|
270
|
-
declare
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FallbackTranslatePipe, never>;
|
|
275
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<FallbackTranslatePipe, "fallbackTranslate", true>;
|
|
276
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<FallbackTranslatePipe>;
|
|
235
|
+
declare enum ScheduleDateStatus {
|
|
236
|
+
Suggested = "suggested",
|
|
237
|
+
Canceled = "canceled",
|
|
238
|
+
Pending = "pending"
|
|
277
239
|
}
|
|
278
240
|
|
|
279
|
-
declare enum
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
ALL = "ALL"
|
|
241
|
+
declare enum SenderTypes {
|
|
242
|
+
USER = "user",
|
|
243
|
+
OTHER = "other"
|
|
283
244
|
}
|
|
284
245
|
|
|
285
|
-
declare enum
|
|
286
|
-
|
|
287
|
-
|
|
246
|
+
declare enum StatusTypes {
|
|
247
|
+
Info = "info",
|
|
248
|
+
Warning = "warning",
|
|
249
|
+
Error = "error",
|
|
250
|
+
Success = "success"
|
|
288
251
|
}
|
|
289
252
|
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
253
|
+
declare enum SendMessageType {
|
|
254
|
+
INMEDIATELY = "send_immediately",
|
|
255
|
+
AFTER = "send_after",
|
|
256
|
+
SPECIFIC = "specify_time"
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
declare enum VisualManagerModalEventTypes {
|
|
260
|
+
Click = "click",
|
|
261
|
+
Close = "close"
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
declare enum VisualManagerModalEventValue {
|
|
265
|
+
Apply = "apply",
|
|
266
|
+
Reset = "reset",
|
|
267
|
+
AddPreference = "add-preference",
|
|
268
|
+
RemovePreference = "remove-preference",
|
|
269
|
+
Close = "close"
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
interface IAutoDelegationEvent {
|
|
273
|
+
type: AutoDelegationEventTypes;
|
|
274
|
+
value: AutoDelegationEventValue;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
interface IAutoDelegationModalData {
|
|
278
|
+
countdown: number;
|
|
279
|
+
expandedBaseCard?: boolean;
|
|
280
|
+
data: IAutoDelegationData;
|
|
281
|
+
menuItems: LibMenuItem[];
|
|
294
282
|
}
|
|
295
283
|
|
|
296
284
|
interface ICalendarAccount {
|
|
@@ -306,39 +294,470 @@ interface ICalendarAccount {
|
|
|
306
294
|
theme?: ICalendarAccountTheme;
|
|
307
295
|
}
|
|
308
296
|
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
SYSTEM = "System",// system created events
|
|
314
|
-
USER = "User",// user created events
|
|
315
|
-
ITINERARY = "Itinerary"
|
|
297
|
+
interface ICalendarAccountTheme {
|
|
298
|
+
backgroundColor?: string;
|
|
299
|
+
foregroundColor?: string;
|
|
300
|
+
borderColor?: string;
|
|
316
301
|
}
|
|
317
302
|
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
303
|
+
interface ICircleData {
|
|
304
|
+
cx: string;
|
|
305
|
+
cy: string;
|
|
306
|
+
r: string;
|
|
307
|
+
transform: string;
|
|
308
|
+
stroke?: string;
|
|
309
|
+
'stroke-width'?: string;
|
|
310
|
+
fill?: string;
|
|
311
|
+
filter?: string;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
interface IDefsF {
|
|
315
|
+
id: string;
|
|
316
|
+
x: string;
|
|
317
|
+
y: string;
|
|
318
|
+
height: string;
|
|
319
|
+
width: string;
|
|
320
|
+
feGaussianTags: {
|
|
321
|
+
in: string;
|
|
322
|
+
stdDeviation: string;
|
|
323
|
+
}[];
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
interface IDefsLG {
|
|
327
|
+
id: string;
|
|
328
|
+
x1: string;
|
|
329
|
+
y1: string;
|
|
330
|
+
x2: string;
|
|
331
|
+
y2: string;
|
|
332
|
+
stopTags: {
|
|
333
|
+
offset: string;
|
|
334
|
+
style: string;
|
|
335
|
+
}[];
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
interface IDefsRG {
|
|
339
|
+
id: string;
|
|
340
|
+
cx: string;
|
|
341
|
+
cy: string;
|
|
342
|
+
r: string;
|
|
343
|
+
stopTags: {
|
|
344
|
+
offset: string;
|
|
345
|
+
style: string;
|
|
346
|
+
}[];
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
interface IChartData {
|
|
350
|
+
title: string;
|
|
351
|
+
keys: string[];
|
|
352
|
+
values: Record<string, number>;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
interface IChatIdentifier {
|
|
356
|
+
chatId: string;
|
|
357
|
+
llmPreference: string;
|
|
358
|
+
prospectName: string;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
interface IChatMeta {
|
|
362
|
+
lastResponseTimestamp: Date | null;
|
|
363
|
+
firstAnswer: boolean;
|
|
364
|
+
waitingAnswer: boolean;
|
|
365
|
+
conversationFlags: IConversationFlag[];
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
interface IChatSuggestion {
|
|
369
|
+
question: string;
|
|
370
|
+
percentage: number;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
interface CircleProgressConfig {
|
|
374
|
+
/** Outer / main ring */
|
|
375
|
+
value: number;
|
|
376
|
+
max: number;
|
|
377
|
+
partialColors?: IPartialCircleProgressColors;
|
|
378
|
+
showExternalPartialCircleProgress?: boolean;
|
|
379
|
+
/** Inner ring */
|
|
380
|
+
inner?: {
|
|
381
|
+
value: number;
|
|
382
|
+
max: number;
|
|
383
|
+
colors?: IInnerPartialCircleProgressColors;
|
|
384
|
+
state: INNER_CIRCLE_STATE;
|
|
385
|
+
showIllumination?: boolean;
|
|
386
|
+
};
|
|
387
|
+
/** Visuals */
|
|
388
|
+
imageUrl?: string;
|
|
389
|
+
width?: string;
|
|
390
|
+
height?: string;
|
|
391
|
+
showValueProportionLabel?: boolean;
|
|
392
|
+
imgObjectPosition?: 'top' | 'bottom' | 'right' | 'left';
|
|
393
|
+
hasNotification?: boolean;
|
|
394
|
+
prefix?: string;
|
|
395
|
+
suffix?: string;
|
|
396
|
+
hideProgress?: boolean;
|
|
397
|
+
type?: string;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
interface IClientDashboardInputs {
|
|
401
|
+
schedulerAdsTemplate?: TemplateRef<HTMLElement>;
|
|
402
|
+
schedulerTabAdsTemplate?: TemplateRef<HTMLElement>;
|
|
403
|
+
chatAdsTemplate?: TemplateRef<HTMLElement>;
|
|
404
|
+
chatTabAdsTemplate?: TemplateRef<HTMLElement>;
|
|
405
|
+
traitVisualAdsTemplate?: TemplateRef<HTMLElement>;
|
|
406
|
+
agendaAdsTemplate?: TemplateRef<HTMLElement>;
|
|
407
|
+
default?: boolean;
|
|
408
|
+
activeIndex?: number;
|
|
409
|
+
activeTabIndex?: number;
|
|
410
|
+
activeChartItem?: number;
|
|
411
|
+
slideContentMaxHeight?: string;
|
|
412
|
+
clientMatches$?: Observable<ILibClientMatchOverview[]>;
|
|
413
|
+
events?: IAgendaEvent[];
|
|
414
|
+
polygonColors?: IPolygonColor[];
|
|
415
|
+
spiderConfig?: ISpiderChartConfig;
|
|
416
|
+
schedulers$?: Observable<{
|
|
417
|
+
events$: Observable<ISchedulerEvent[]>;
|
|
418
|
+
}[]>;
|
|
419
|
+
alertStatus: Partial<Record<AlertStatusFields, boolean>>;
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
interface ILibClientMatchOverview {
|
|
423
|
+
_id?: string;
|
|
424
|
+
primary: IClientFields;
|
|
425
|
+
secondary: IClientFields;
|
|
426
|
+
preferences: number;
|
|
427
|
+
personality: number;
|
|
428
|
+
isExpanded?: boolean;
|
|
429
|
+
showHandoff?: boolean;
|
|
430
|
+
createdAt: Date;
|
|
431
|
+
prospectData: IProspectData;
|
|
432
|
+
matchRequest: IDashboardMatchRequest;
|
|
433
|
+
}
|
|
434
|
+
interface IClientFields {
|
|
435
|
+
name: string;
|
|
436
|
+
src: string;
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
interface ISpiderChartConfig {
|
|
440
|
+
w: number;
|
|
441
|
+
h: number;
|
|
442
|
+
fullScreen: boolean;
|
|
443
|
+
levels: number;
|
|
444
|
+
maxValue: number;
|
|
445
|
+
labelFactor: number;
|
|
446
|
+
wrapWidth: number;
|
|
447
|
+
opacityArea: number;
|
|
448
|
+
dotRadius: number;
|
|
449
|
+
opacityCircles: number;
|
|
450
|
+
strokeWidth: number;
|
|
451
|
+
color: d3.ScaleOrdinal<string, string>;
|
|
452
|
+
attributes: ISpiderChartAttribute[];
|
|
453
|
+
datasets: IDataset[];
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
interface IConversationFlag {
|
|
457
|
+
timestamp: Date;
|
|
458
|
+
prospectId: string;
|
|
459
|
+
basedOn: COUNTER_FLAG_BASE;
|
|
460
|
+
flag: CONVERSATION_FLAG;
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
interface IDashboardMatchRequest {
|
|
464
|
+
_id: string;
|
|
465
|
+
matcherId: string;
|
|
466
|
+
clientId: string;
|
|
467
|
+
clientName: string;
|
|
468
|
+
clientImages: string;
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
interface IDataset {
|
|
472
|
+
title: string;
|
|
473
|
+
keys: string[];
|
|
474
|
+
values: Record<string, number>;
|
|
475
|
+
polygon_color?: IPolygonColor;
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
interface IDateMessages {
|
|
479
|
+
date: Date;
|
|
480
|
+
isFirstMessage?: boolean;
|
|
481
|
+
message: IMessage;
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
interface IDatePrepInfo {
|
|
485
|
+
title: string;
|
|
486
|
+
items: string[];
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
interface IEventForm {
|
|
490
|
+
_id: FormControl<string>;
|
|
491
|
+
accountId: FormControl<string>;
|
|
492
|
+
type: FormControl<EventTypes>;
|
|
493
|
+
email: FormControl<string>;
|
|
494
|
+
title: FormControl<string>;
|
|
495
|
+
allDay: FormControl<boolean>;
|
|
496
|
+
startDate: FormControl<Date>;
|
|
497
|
+
startTime: FormControl<Date>;
|
|
498
|
+
endDate: FormControl<Date>;
|
|
499
|
+
endTime: FormControl<Date>;
|
|
500
|
+
note: FormControl<string>;
|
|
501
|
+
location: FormControl<LocationModel>;
|
|
502
|
+
address: FormControl<string>;
|
|
503
|
+
recurringPattern: FormGroup<{
|
|
504
|
+
type: FormControl<RecurringTypes>;
|
|
505
|
+
}>;
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
interface IEventFormOutput {
|
|
509
|
+
initialFormValue?: IEvent;
|
|
510
|
+
formValue?: IEvent;
|
|
511
|
+
event?: IEvent;
|
|
512
|
+
draggedEvent?: IEvent;
|
|
513
|
+
selectedRecurringOption?: EditRecurringEventOptions;
|
|
514
|
+
recurringTypeChanged?: boolean;
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
interface IEvent {
|
|
518
|
+
_id?: string;
|
|
519
|
+
title?: string;
|
|
520
|
+
allDay?: boolean;
|
|
521
|
+
startDate: Date;
|
|
522
|
+
startTime: Date;
|
|
523
|
+
endDate?: Date;
|
|
524
|
+
recurringEndDate?: Date;
|
|
525
|
+
recurringStartDate?: Date;
|
|
526
|
+
endTime?: Date;
|
|
527
|
+
note?: string;
|
|
528
|
+
type?: EventTypes;
|
|
529
|
+
email?: string;
|
|
530
|
+
accountId?: string;
|
|
531
|
+
timeZone?: string;
|
|
532
|
+
location?: LocationModel;
|
|
533
|
+
recurring?: boolean;
|
|
534
|
+
exception?: boolean;
|
|
535
|
+
recurringPattern?: IRecurringPattern;
|
|
536
|
+
link?: string;
|
|
537
|
+
recurringEventId?: string;
|
|
538
|
+
recurringParentEventId?: string;
|
|
539
|
+
updateAll?: boolean;
|
|
540
|
+
updateAllFollowing?: boolean;
|
|
541
|
+
etag?: string;
|
|
542
|
+
recurringInstanceNo?: number;
|
|
543
|
+
zIndex?: number;
|
|
544
|
+
userId?: string;
|
|
545
|
+
address?: string;
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
interface IEventTime {
|
|
549
|
+
startTime: Date;
|
|
550
|
+
endTime: Date;
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
interface IHandoffPanelInputs {
|
|
554
|
+
version?: HandoffPanelVersion;
|
|
555
|
+
messages$?: Observable<IMessage[]>;
|
|
556
|
+
scheduleSlots?: IScheduleSlot[];
|
|
557
|
+
datePrepInfo?: IDatePrepInfo;
|
|
558
|
+
default?: boolean;
|
|
559
|
+
activeTabIndex?: number;
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
interface IHomeDashboardInputs {
|
|
563
|
+
loading?: {
|
|
564
|
+
clientMatches: boolean;
|
|
565
|
+
};
|
|
566
|
+
schedulerAdsTemplate?: TemplateRef<HTMLElement>;
|
|
567
|
+
schedulerTabAdsTemplate?: TemplateRef<HTMLElement>;
|
|
568
|
+
chatAdsTemplate?: TemplateRef<HTMLElement>;
|
|
569
|
+
chatTabAdsTemplate?: TemplateRef<HTMLElement>;
|
|
570
|
+
traitVisualAdsTemplate?: TemplateRef<HTMLElement>;
|
|
571
|
+
default?: boolean;
|
|
572
|
+
component: ClientHomeComponent;
|
|
573
|
+
activeIndex?: number;
|
|
574
|
+
slideContentMaxHeight?: string;
|
|
575
|
+
clientMatches$?: Observable<ILibClientMatchOverview[]>;
|
|
576
|
+
events?: IAgendaEvent[];
|
|
577
|
+
polygonColors?: IPolygonColor[];
|
|
578
|
+
spiderConfig?: ISpiderChartConfig;
|
|
579
|
+
schedulers$?: Observable<{
|
|
580
|
+
events$: Observable<ISchedulerEvent[]>;
|
|
581
|
+
}[]>;
|
|
582
|
+
loading$?: Observable<boolean>;
|
|
583
|
+
bottomThumbs?: boolean;
|
|
584
|
+
includeTime?: boolean;
|
|
585
|
+
includeGifMessage?: boolean;
|
|
586
|
+
maxLength?: number;
|
|
587
|
+
startDate?: Date;
|
|
588
|
+
endDate?: Date;
|
|
589
|
+
emptyMessage?: string;
|
|
590
|
+
displayBookedStatuses?: boolean;
|
|
591
|
+
displayEmptyDays?: boolean;
|
|
592
|
+
chatInputValue?: string;
|
|
593
|
+
hideStatuses?: boolean;
|
|
594
|
+
alertStatus: Partial<Record<AlertStatusFields, boolean>>;
|
|
595
|
+
showValueProportionLabel?: boolean;
|
|
596
|
+
hideProgressBar?: boolean;
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
interface IInnerPartialCircleProgressColors {
|
|
600
|
+
primary: string;
|
|
601
|
+
secondary: string;
|
|
602
|
+
tertiary: string;
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
interface IMatcherDashboardInputs {
|
|
606
|
+
schedulerAdsTemplate?: TemplateRef<HTMLElement>;
|
|
607
|
+
schedulerTabAdsTemplate?: TemplateRef<HTMLElement>;
|
|
608
|
+
chatAdsTemplate?: TemplateRef<HTMLElement>;
|
|
609
|
+
loading?: {
|
|
610
|
+
clientMatches: boolean;
|
|
611
|
+
};
|
|
612
|
+
default?: boolean;
|
|
613
|
+
activeIndex?: number;
|
|
614
|
+
activeTabIndex?: number;
|
|
615
|
+
slideContentMaxHeight?: string;
|
|
616
|
+
clientMatches$?: Observable<ILibClientMatchOverview[]>;
|
|
617
|
+
events$?: Observable<ISchedulerEvent[]>;
|
|
618
|
+
polygonColors?: IPolygonColor[];
|
|
619
|
+
spiderConfig?: ISpiderChartConfig;
|
|
620
|
+
alertStatus: Partial<Record<AlertStatusFields, boolean>>;
|
|
621
|
+
llmPreferenceOptions?: SelectOption<string>[];
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
interface IDashboardMatcherProfile {
|
|
625
|
+
id: number;
|
|
626
|
+
name: string;
|
|
627
|
+
value: number;
|
|
628
|
+
photo: string;
|
|
629
|
+
notification: number;
|
|
630
|
+
progress: number;
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
interface IAttachment {
|
|
634
|
+
id?: number;
|
|
635
|
+
type: 'image' | 'gif';
|
|
636
|
+
url?: string;
|
|
637
|
+
base64?: string;
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
interface IMessage {
|
|
641
|
+
_id?: string;
|
|
642
|
+
sender: SenderTypes;
|
|
643
|
+
message: string;
|
|
644
|
+
timestamp: Date;
|
|
645
|
+
attachments?: IAttachment[];
|
|
646
|
+
sendOptions?: ISendOptionsMessage;
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
interface IPartialCircleProgressColors {
|
|
650
|
+
primary: string;
|
|
651
|
+
secondary: string;
|
|
652
|
+
tertiary: string;
|
|
653
|
+
gradientPrimary: string;
|
|
654
|
+
gradientSecondary: string;
|
|
655
|
+
incomplete: string;
|
|
656
|
+
complete: string;
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
interface IPolygonColor {
|
|
660
|
+
label: string;
|
|
661
|
+
value: string;
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
interface IPreferenceItem {
|
|
665
|
+
id: string;
|
|
666
|
+
name: string;
|
|
667
|
+
isSelected: boolean;
|
|
668
|
+
}
|
|
669
|
+
|
|
670
|
+
interface IAutoDelegationPreferences {
|
|
671
|
+
bust: {
|
|
672
|
+
value: number;
|
|
673
|
+
moe: number;
|
|
674
|
+
};
|
|
675
|
+
waist: {
|
|
676
|
+
value: number;
|
|
677
|
+
moe: number;
|
|
678
|
+
};
|
|
679
|
+
height: {
|
|
680
|
+
value: number;
|
|
681
|
+
moe: number;
|
|
682
|
+
};
|
|
683
|
+
celibacy: number;
|
|
684
|
+
cooperation: number;
|
|
685
|
+
intelligence: number;
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
interface IProfileAttribute {
|
|
689
|
+
label: string;
|
|
690
|
+
value: string;
|
|
691
|
+
match?: boolean;
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
interface IProfileComparisonData {
|
|
695
|
+
leftProfile: {
|
|
696
|
+
name: string;
|
|
697
|
+
attributes: IProfileAttribute[];
|
|
698
|
+
};
|
|
699
|
+
rightProfile: {
|
|
700
|
+
name: string;
|
|
701
|
+
attributes: IProfileAttribute[];
|
|
702
|
+
};
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
interface IProfileComparisonInputs {
|
|
706
|
+
data?: IProfileComparisonData;
|
|
707
|
+
default?: boolean;
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
/** Decision bundle returned to the component */
|
|
711
|
+
interface ProgressDecision {
|
|
712
|
+
state: INNER_CIRCLE_STATE;
|
|
713
|
+
innerValue: number | null;
|
|
714
|
+
tick: 'start' | 'stop';
|
|
715
|
+
basedOn: COUNTER_FLAG_BASE;
|
|
716
|
+
registered: boolean;
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
/** Inputs the pure function needs */
|
|
720
|
+
interface ProgressFacts {
|
|
721
|
+
createdAt: Date;
|
|
722
|
+
lastMessageTimestamp: Date | null;
|
|
723
|
+
firstAnswer: boolean;
|
|
724
|
+
waitingAnswer: boolean;
|
|
725
|
+
nowMs?: number;
|
|
726
|
+
innerMax: number;
|
|
727
|
+
conversationFlags: IConversationFlag[];
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
interface IProspectData {
|
|
731
|
+
messages: IMessage[];
|
|
732
|
+
prospectId: string;
|
|
733
|
+
status: MatcherStatuses;
|
|
734
|
+
prospectResponseTime: string;
|
|
735
|
+
chatSuggestions: IChatSuggestion[];
|
|
736
|
+
schedules: ISchedulerEvent[];
|
|
737
|
+
scheduleSuggestions: ISchedulerEventSuggestion[];
|
|
738
|
+
llmPreference: string;
|
|
739
|
+
_id: string;
|
|
740
|
+
prospectJoinDate: Date;
|
|
741
|
+
conversationFlags: IConversationFlag[];
|
|
742
|
+
numberMatcherStatuses: number;
|
|
743
|
+
chartData: IChartData[];
|
|
744
|
+
llmPreferenceLoading$?: BehaviorSubject<string[]>;
|
|
323
745
|
}
|
|
324
746
|
|
|
325
|
-
interface
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
recurringPattern: FormGroup<{
|
|
340
|
-
type: FormControl<RecurringTypes>;
|
|
341
|
-
}>;
|
|
747
|
+
interface IRecurringEvent {
|
|
748
|
+
title: string;
|
|
749
|
+
name?: string;
|
|
750
|
+
translateParams?: {
|
|
751
|
+
day: string;
|
|
752
|
+
};
|
|
753
|
+
subTitle?: string;
|
|
754
|
+
type?: RecurringTypes;
|
|
755
|
+
rrule?: {
|
|
756
|
+
freq: any;
|
|
757
|
+
bymonth?: number;
|
|
758
|
+
bymonthday?: number;
|
|
759
|
+
byweekday?: any;
|
|
760
|
+
};
|
|
342
761
|
}
|
|
343
762
|
|
|
344
763
|
interface IRecurringEventException {
|
|
@@ -370,65 +789,205 @@ interface IRecurringPattern {
|
|
|
370
789
|
};
|
|
371
790
|
}
|
|
372
791
|
|
|
373
|
-
interface
|
|
792
|
+
interface IScheduleSlot {
|
|
793
|
+
id: string;
|
|
794
|
+
time: string;
|
|
795
|
+
duration: string;
|
|
796
|
+
description?: string;
|
|
797
|
+
profileImage?: string;
|
|
798
|
+
selected: boolean;
|
|
799
|
+
}
|
|
800
|
+
|
|
801
|
+
interface ISchedulerAction {
|
|
802
|
+
event: ISchedulerEvent;
|
|
803
|
+
index: number;
|
|
804
|
+
suggestion?: ISchedulerEventSuggestion;
|
|
805
|
+
suggestionIndex?: number;
|
|
806
|
+
matchRequest?: IDashboardMatchRequest;
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
interface ISchedulerEventDay {
|
|
810
|
+
day: string;
|
|
811
|
+
events: ISchedulerEvent[];
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
interface ISchedulerEvent {
|
|
374
815
|
_id?: string;
|
|
375
|
-
title?: string;
|
|
376
|
-
allDay?: boolean;
|
|
377
|
-
startDate: Date;
|
|
378
|
-
startTime: Date;
|
|
379
|
-
endDate?: Date;
|
|
380
|
-
recurringEndDate?: Date;
|
|
381
|
-
recurringStartDate?: Date;
|
|
382
|
-
endTime?: Date;
|
|
383
|
-
note?: string;
|
|
384
|
-
type?: EventTypes;
|
|
385
|
-
email?: string;
|
|
386
|
-
accountId?: string;
|
|
387
816
|
timeZone?: string;
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
817
|
+
start: Date;
|
|
818
|
+
day: string;
|
|
819
|
+
end: Date;
|
|
820
|
+
hours: string;
|
|
821
|
+
allDay?: boolean;
|
|
822
|
+
blocked?: boolean;
|
|
823
|
+
booked?: boolean;
|
|
824
|
+
expanded?: boolean;
|
|
825
|
+
suggestions?: ISchedulerEventSuggestion[];
|
|
826
|
+
index?: number;
|
|
827
|
+
startTime?: string;
|
|
828
|
+
endTime?: string;
|
|
829
|
+
status?: {
|
|
830
|
+
client: ScheduleDateStatus;
|
|
831
|
+
matcher: ScheduleDateStatus;
|
|
832
|
+
};
|
|
833
|
+
images?: ImageModel[];
|
|
834
|
+
matchRequest?: IDashboardMatchRequest;
|
|
402
835
|
}
|
|
403
836
|
|
|
404
|
-
interface
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
837
|
+
interface ISchedulerEventSuggestion {
|
|
838
|
+
_id?: string;
|
|
839
|
+
title: string;
|
|
840
|
+
checked?: boolean;
|
|
841
|
+
canceled?: boolean;
|
|
842
|
+
suggestionId?: string;
|
|
843
|
+
prospect?: string;
|
|
844
|
+
status?: {
|
|
845
|
+
client: ScheduleDateStatus;
|
|
846
|
+
matcher: ScheduleDateStatus;
|
|
847
|
+
};
|
|
411
848
|
}
|
|
412
849
|
|
|
413
|
-
interface
|
|
850
|
+
interface ISchedulerEventSlots {
|
|
851
|
+
day: string;
|
|
852
|
+
date: Date;
|
|
853
|
+
events: ISchedulerEvent[];
|
|
854
|
+
}
|
|
855
|
+
|
|
856
|
+
interface ISendOptionsMessage {
|
|
857
|
+
type: SendMessageType;
|
|
858
|
+
arrivalDate?: Date;
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
interface ISpiderChartAttribute {
|
|
862
|
+
key: string;
|
|
863
|
+
text: string;
|
|
864
|
+
titleAlertPopup?: string;
|
|
865
|
+
descriptionAlertPopup?: string;
|
|
866
|
+
}
|
|
867
|
+
|
|
868
|
+
interface IStatus {
|
|
414
869
|
title: string;
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
870
|
+
subtitle: string;
|
|
871
|
+
value: MatcherStatuses;
|
|
872
|
+
}
|
|
873
|
+
|
|
874
|
+
interface ITenorMediaFormat {
|
|
875
|
+
url: string;
|
|
876
|
+
duration: number;
|
|
877
|
+
preview: string;
|
|
878
|
+
dims: number[];
|
|
879
|
+
size: number;
|
|
880
|
+
}
|
|
881
|
+
|
|
882
|
+
interface ITenorObject {
|
|
883
|
+
results: ITenorResult[];
|
|
884
|
+
next: string;
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
interface ITenorResult {
|
|
888
|
+
id: string;
|
|
889
|
+
title: string;
|
|
890
|
+
media_formats: {
|
|
891
|
+
[key: string]: ITenorMediaFormat;
|
|
418
892
|
};
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
893
|
+
created: number;
|
|
894
|
+
content_description: string;
|
|
895
|
+
itemurl: string;
|
|
896
|
+
url: string;
|
|
897
|
+
tags: string[];
|
|
898
|
+
flags: string[];
|
|
899
|
+
hasaudio: boolean;
|
|
900
|
+
content_description_source: 'GENERATIVE_AI';
|
|
901
|
+
}
|
|
902
|
+
|
|
903
|
+
interface IVisualManagerModalData {
|
|
904
|
+
preferences: IPreferenceItem[];
|
|
905
|
+
}
|
|
906
|
+
|
|
907
|
+
interface IVisualManagerModalEvent {
|
|
908
|
+
type: VisualManagerModalEventTypes;
|
|
909
|
+
value: VisualManagerModalEventValue;
|
|
910
|
+
data?: {
|
|
911
|
+
preferenceId?: string;
|
|
912
|
+
preferences?: any[];
|
|
426
913
|
};
|
|
427
914
|
}
|
|
428
915
|
|
|
429
|
-
interface
|
|
430
|
-
|
|
431
|
-
|
|
916
|
+
interface IVisualManagerModalModalData {
|
|
917
|
+
data: IVisualManagerModalData;
|
|
918
|
+
}
|
|
919
|
+
|
|
920
|
+
declare class LibAutoDelegationModalComponent implements OnInit, AfterViewInit {
|
|
921
|
+
private changeDetectorRef;
|
|
922
|
+
private popupModalService;
|
|
923
|
+
modalData?: IAutoDelegationModalData;
|
|
924
|
+
childModalElementRef: ElementRef<HTMLDivElement>;
|
|
925
|
+
countdown: number;
|
|
926
|
+
expandedBaseCard?: boolean;
|
|
927
|
+
data: IAutoDelegationData;
|
|
928
|
+
menuItems: LibMenuItem[];
|
|
929
|
+
event: EventEmitter<IAutoDelegationEvent>;
|
|
930
|
+
totalStrokeLength: number;
|
|
931
|
+
currentCountdownAt: number;
|
|
932
|
+
activeCountdownPathId: string;
|
|
933
|
+
strokeDashOffset: number;
|
|
934
|
+
componentData: IAutoDelegationModalData | null;
|
|
935
|
+
constructor(changeDetectorRef: ChangeDetectorRef, popupModalService: PopupModalService, modalData?: IAutoDelegationModalData);
|
|
936
|
+
ngOnInit(): void;
|
|
937
|
+
ngAfterViewInit(): void;
|
|
938
|
+
reject(): void;
|
|
939
|
+
accept(): void;
|
|
940
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LibAutoDelegationModalComponent, [null, null, { optional: true; }]>;
|
|
941
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LibAutoDelegationModalComponent, "lib-auto-delegation-modal", never, { "countdown": { "alias": "countdown"; "required": false; }; "expandedBaseCard": { "alias": "expandedBaseCard"; "required": false; }; "data": { "alias": "data"; "required": false; }; "menuItems": { "alias": "menuItems"; "required": false; }; }, { "event": "event"; }, never, never, true, never>;
|
|
942
|
+
}
|
|
943
|
+
|
|
944
|
+
type AgendaItem = {
|
|
945
|
+
type: AgendaItemType;
|
|
946
|
+
data: IAd | IAgendaDay;
|
|
947
|
+
};
|
|
948
|
+
|
|
949
|
+
declare class AgendaComponent implements OnInit {
|
|
950
|
+
adsTemplate?: TemplateRef<HTMLElement>;
|
|
951
|
+
agendaAdsData?: Array<IAd>;
|
|
952
|
+
loading$: Observable<boolean>;
|
|
953
|
+
startDate: Date;
|
|
954
|
+
endDate: Date;
|
|
955
|
+
set events(events: IAgendaEvent[]);
|
|
956
|
+
numberOfEvents: number;
|
|
957
|
+
days: IAgendaDay[];
|
|
958
|
+
combinedAgendaItems: AgendaItem[];
|
|
959
|
+
direction: Direction;
|
|
960
|
+
private _events;
|
|
961
|
+
ngOnInit(): void;
|
|
962
|
+
set setAdsData(ads: IAd[]);
|
|
963
|
+
private buildAgendaDays;
|
|
964
|
+
private getSuccessiveEmptyDays;
|
|
965
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AgendaComponent, never>;
|
|
966
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AgendaComponent, "lib-agenda", never, { "adsTemplate": { "alias": "adsTemplate"; "required": false; }; "agendaAdsData": { "alias": "agendaAdsData"; "required": false; }; "loading$": { "alias": "loading$"; "required": false; }; "startDate": { "alias": "startDate"; "required": false; }; "endDate": { "alias": "endDate"; "required": false; }; "events": { "alias": "events"; "required": false; }; "setAdsData": { "alias": "setAdsData"; "required": false; }; }, {}, never, never, false, never>;
|
|
967
|
+
}
|
|
968
|
+
|
|
969
|
+
declare class AgendaDayCardComponent implements OnInit {
|
|
970
|
+
adDay: boolean;
|
|
971
|
+
day: IAgendaDay;
|
|
972
|
+
fullName: string;
|
|
973
|
+
ngOnInit(): void;
|
|
974
|
+
private sanitizeHtml;
|
|
975
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AgendaDayCardComponent, never>;
|
|
976
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AgendaDayCardComponent, "lib-agenda-day-card", never, { "adDay": { "alias": "adDay"; "required": false; }; "day": { "alias": "day"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
977
|
+
}
|
|
978
|
+
|
|
979
|
+
declare class LibAgendaModule {
|
|
980
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LibAgendaModule, never>;
|
|
981
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<LibAgendaModule, [typeof AgendaComponent, typeof AgendaDayCardComponent], [typeof i2.CommonModule, typeof i3.IonicModule, typeof i5.TranslateModule, typeof i6.DirectiveModule, typeof i6.AvatarComponent], [typeof AgendaComponent]>;
|
|
982
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<LibAgendaModule>;
|
|
983
|
+
}
|
|
984
|
+
|
|
985
|
+
declare class FallbackTranslatePipe implements PipeTransform {
|
|
986
|
+
private translate;
|
|
987
|
+
constructor(translate: TranslateService);
|
|
988
|
+
transform(key: string, fallback: string): string;
|
|
989
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FallbackTranslatePipe, never>;
|
|
990
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<FallbackTranslatePipe, "fallbackTranslate", true>;
|
|
432
991
|
}
|
|
433
992
|
|
|
434
993
|
declare class CalendarUtilsService {
|
|
@@ -538,35 +1097,6 @@ declare class LibEventInfoComponent implements OnInit {
|
|
|
538
1097
|
static ɵcmp: i0.ɵɵComponentDeclaration<LibEventInfoComponent, "lib-event-info", never, { "event": { "alias": "event"; "required": false; }; "calendars": { "alias": "calendars"; "required": false; }; }, {}, never, never, true, never>;
|
|
539
1098
|
}
|
|
540
1099
|
|
|
541
|
-
declare enum FormFieldType {
|
|
542
|
-
date = "date",
|
|
543
|
-
text = "text",
|
|
544
|
-
textarea = "textarea",
|
|
545
|
-
typeahead = "typeahead",
|
|
546
|
-
multiselect = "multiselect",
|
|
547
|
-
select = "select",
|
|
548
|
-
checkbox = "checkbox",
|
|
549
|
-
toggle = "toggle",
|
|
550
|
-
radio = "radio",
|
|
551
|
-
textlist = "textlist",
|
|
552
|
-
number = "number",
|
|
553
|
-
message = "message",
|
|
554
|
-
time = "time",
|
|
555
|
-
multifield = "multifield",
|
|
556
|
-
action = "action",
|
|
557
|
-
currency = "currency",
|
|
558
|
-
banner = "banner",
|
|
559
|
-
percentage = "percentage",
|
|
560
|
-
multiselectdropdown = "multiselectdropdown",
|
|
561
|
-
hyperlink = "hyperlink",
|
|
562
|
-
injectable = "injectable",
|
|
563
|
-
datetime = "datetime",
|
|
564
|
-
rating = "rating",
|
|
565
|
-
incrementer = "incrementer",
|
|
566
|
-
range = "range",
|
|
567
|
-
password = "password"
|
|
568
|
-
}
|
|
569
|
-
|
|
570
1100
|
declare class LibEditRecurringEventComponent implements OnInit {
|
|
571
1101
|
private fallbackTranslatePipe;
|
|
572
1102
|
excludeCurrentInstance: boolean;
|
|
@@ -590,82 +1120,6 @@ declare class LibEventFormModule {
|
|
|
590
1120
|
static ɵinj: i0.ɵɵInjectorDeclaration<LibEventFormModule>;
|
|
591
1121
|
}
|
|
592
1122
|
|
|
593
|
-
declare enum CalendarAccountIconsEnum {
|
|
594
|
-
Google = "googleCalender",
|
|
595
|
-
Microsoft = "microsoft"
|
|
596
|
-
}
|
|
597
|
-
|
|
598
|
-
declare const recurringOptions: IRecurringEvent[];
|
|
599
|
-
|
|
600
|
-
declare enum ScheduleDateStatus {
|
|
601
|
-
Suggested = "suggested",
|
|
602
|
-
Canceled = "canceled",
|
|
603
|
-
Pending = "pending"
|
|
604
|
-
}
|
|
605
|
-
|
|
606
|
-
interface IDashboardMatchRequest {
|
|
607
|
-
_id: string;
|
|
608
|
-
matcherId: string;
|
|
609
|
-
clientId: string;
|
|
610
|
-
clientName: string;
|
|
611
|
-
clientImages: string;
|
|
612
|
-
}
|
|
613
|
-
|
|
614
|
-
interface ISchedulerEventSuggestion {
|
|
615
|
-
_id?: string;
|
|
616
|
-
title: string;
|
|
617
|
-
checked?: boolean;
|
|
618
|
-
canceled?: boolean;
|
|
619
|
-
suggestionId?: string;
|
|
620
|
-
prospect?: string;
|
|
621
|
-
status?: {
|
|
622
|
-
client: ScheduleDateStatus;
|
|
623
|
-
matcher: ScheduleDateStatus;
|
|
624
|
-
};
|
|
625
|
-
}
|
|
626
|
-
|
|
627
|
-
interface ISchedulerEvent {
|
|
628
|
-
_id?: string;
|
|
629
|
-
timeZone?: string;
|
|
630
|
-
start: Date;
|
|
631
|
-
day: string;
|
|
632
|
-
end: Date;
|
|
633
|
-
hours: string;
|
|
634
|
-
allDay?: boolean;
|
|
635
|
-
blocked?: boolean;
|
|
636
|
-
booked?: boolean;
|
|
637
|
-
expanded?: boolean;
|
|
638
|
-
suggestions?: ISchedulerEventSuggestion[];
|
|
639
|
-
index?: number;
|
|
640
|
-
startTime?: string;
|
|
641
|
-
endTime?: string;
|
|
642
|
-
status?: {
|
|
643
|
-
client: ScheduleDateStatus;
|
|
644
|
-
matcher: ScheduleDateStatus;
|
|
645
|
-
};
|
|
646
|
-
images?: ImageModel[];
|
|
647
|
-
matchRequest?: IDashboardMatchRequest;
|
|
648
|
-
}
|
|
649
|
-
|
|
650
|
-
interface ISchedulerAction {
|
|
651
|
-
event: ISchedulerEvent;
|
|
652
|
-
index: number;
|
|
653
|
-
suggestion?: ISchedulerEventSuggestion;
|
|
654
|
-
suggestionIndex?: number;
|
|
655
|
-
matchRequest?: IDashboardMatchRequest;
|
|
656
|
-
}
|
|
657
|
-
|
|
658
|
-
interface ISchedulerEventSlots {
|
|
659
|
-
day: string;
|
|
660
|
-
date: Date;
|
|
661
|
-
events: ISchedulerEvent[];
|
|
662
|
-
}
|
|
663
|
-
|
|
664
|
-
interface ISchedulerEventDay {
|
|
665
|
-
day: string;
|
|
666
|
-
events: ISchedulerEvent[];
|
|
667
|
-
}
|
|
668
|
-
|
|
669
1123
|
declare class LibSchedulerComponent implements OnInit, OnDestroy {
|
|
670
1124
|
private cdr;
|
|
671
1125
|
adsTemplate?: TemplateRef<HTMLElement>;
|
|
@@ -697,11 +1151,6 @@ declare class LibSchedulerComponent implements OnInit, OnDestroy {
|
|
|
697
1151
|
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; }; }, { "bookEvent": "bookEvent"; "removeSuggestion": "removeSuggestion"; }, never, never, true, never>;
|
|
698
1152
|
}
|
|
699
1153
|
|
|
700
|
-
interface IChatSuggestion {
|
|
701
|
-
question: string;
|
|
702
|
-
percentage: number;
|
|
703
|
-
}
|
|
704
|
-
|
|
705
1154
|
declare class ChatSuggestionComponent {
|
|
706
1155
|
chatSuggestions: IChatSuggestion[];
|
|
707
1156
|
suggestClicked?: EventEmitter<string>;
|
|
@@ -709,8 +1158,10 @@ declare class ChatSuggestionComponent {
|
|
|
709
1158
|
static ɵcmp: i0.ɵɵComponentDeclaration<ChatSuggestionComponent, "lib-chat-suggestion", never, { "chatSuggestions": { "alias": "chatSuggestions"; "required": false; }; }, { "suggestClicked": "suggestClicked"; }, never, never, true, never>;
|
|
710
1159
|
}
|
|
711
1160
|
|
|
712
|
-
interface SelectOptionWithTemplate<T>
|
|
713
|
-
|
|
1161
|
+
interface SelectOptionWithTemplate<T> {
|
|
1162
|
+
label: string;
|
|
1163
|
+
value: T;
|
|
1164
|
+
addOnTemplateRef?: any;
|
|
714
1165
|
}
|
|
715
1166
|
|
|
716
1167
|
declare abstract class AbstractCacheService {
|
|
@@ -720,53 +1171,15 @@ declare abstract class AbstractCacheService {
|
|
|
720
1171
|
static ɵprov: i0.ɵɵInjectableDeclaration<AbstractCacheService>;
|
|
721
1172
|
}
|
|
722
1173
|
|
|
723
|
-
declare
|
|
724
|
-
USER = "user",
|
|
725
|
-
OTHER = "other"
|
|
726
|
-
}
|
|
727
|
-
|
|
728
|
-
interface IAttachment {
|
|
729
|
-
id?: number;
|
|
730
|
-
type: 'image' | 'gif';
|
|
731
|
-
url?: string;
|
|
732
|
-
base64?: string;
|
|
733
|
-
}
|
|
734
|
-
|
|
735
|
-
declare enum SendMessageType {
|
|
736
|
-
INMEDIATELY = "send_immediately",
|
|
737
|
-
AFTER = "send_after",
|
|
738
|
-
SPECIFIC = "specify_time"
|
|
739
|
-
}
|
|
740
|
-
|
|
741
|
-
interface ISendOptionsMessage {
|
|
742
|
-
type: SendMessageType;
|
|
743
|
-
arrivalDate?: Date;
|
|
744
|
-
}
|
|
745
|
-
|
|
746
|
-
interface IMessage {
|
|
747
|
-
_id?: string;
|
|
748
|
-
sender: SenderTypes;
|
|
749
|
-
message: string;
|
|
750
|
-
timestamp: Date;
|
|
751
|
-
attachments?: IAttachment[];
|
|
752
|
-
sendOptions?: ISendOptionsMessage;
|
|
753
|
-
}
|
|
754
|
-
|
|
755
|
-
interface IDateMessages {
|
|
756
|
-
date: Date;
|
|
757
|
-
isFirstMessage?: boolean;
|
|
758
|
-
message: IMessage;
|
|
759
|
-
}
|
|
760
|
-
|
|
761
|
-
declare class ChatService {
|
|
1174
|
+
declare class ChatService$1 {
|
|
762
1175
|
cacheService: AbstractCacheService;
|
|
763
1176
|
constructor(cacheService: AbstractCacheService);
|
|
764
1177
|
setLongPressForSendImmediately(enabled: boolean): void;
|
|
765
1178
|
isLongPressForSendImmediately(): Observable<boolean>;
|
|
766
1179
|
transformMessages(messages: IMessage[]): IDateMessages[];
|
|
767
1180
|
updateDateMessages(dateMessages: IDateMessages[]): IDateMessages[];
|
|
768
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ChatService, never>;
|
|
769
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ChatService>;
|
|
1181
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChatService$1, never>;
|
|
1182
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ChatService$1>;
|
|
770
1183
|
}
|
|
771
1184
|
|
|
772
1185
|
declare class LibMessageModalComponent implements OnInit {
|
|
@@ -783,7 +1196,7 @@ declare class LibMessageModalComponent implements OnInit {
|
|
|
783
1196
|
toggleLongPress: FormControl<boolean>;
|
|
784
1197
|
type: FormFieldType$1;
|
|
785
1198
|
formTime: FormGroup;
|
|
786
|
-
constructor(fb: FormBuilder, popupModalService: PopupModalService, chatService: ChatService, modalData?: {
|
|
1199
|
+
constructor(fb: FormBuilder, popupModalService: PopupModalService, chatService: ChatService$1, modalData?: {
|
|
787
1200
|
responseTime: string;
|
|
788
1201
|
});
|
|
789
1202
|
ngOnInit(): void;
|
|
@@ -854,35 +1267,6 @@ declare class ChatComponent implements OnInit, AfterViewInit, OnChanges, OnDestr
|
|
|
854
1267
|
static ɵcmp: i0.ɵɵComponentDeclaration<ChatComponent, "lib-chat", never, { "default": { "alias": "default"; "required": false; }; "responseTime": { "alias": "responseTime"; "required": false; }; "inputValue": { "alias": "inputValue"; "required": false; }; "emojiPickerConfig": { "alias": "emojiPickerConfig"; "required": false; }; "includeGifMessage": { "alias": "includeGifMessage"; "required": false; }; "includeTime": { "alias": "includeTime"; "required": false; }; "dateMessages": { "alias": "dateMessages"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "enableGifPicker": { "alias": "enableGifPicker"; "required": false; }; "prospectJoinDate": { "alias": "prospectJoinDate"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "sendMessage": "sendMessage"; "getMessages": "getMessages"; }, never, never, false, never>;
|
|
855
1268
|
}
|
|
856
1269
|
|
|
857
|
-
interface ITenorMediaFormat {
|
|
858
|
-
url: string;
|
|
859
|
-
duration: number;
|
|
860
|
-
preview: string;
|
|
861
|
-
dims: number[];
|
|
862
|
-
size: number;
|
|
863
|
-
}
|
|
864
|
-
|
|
865
|
-
interface ITenorResult {
|
|
866
|
-
id: string;
|
|
867
|
-
title: string;
|
|
868
|
-
media_formats: {
|
|
869
|
-
[key: string]: ITenorMediaFormat;
|
|
870
|
-
};
|
|
871
|
-
created: number;
|
|
872
|
-
content_description: string;
|
|
873
|
-
itemurl: string;
|
|
874
|
-
url: string;
|
|
875
|
-
tags: string[];
|
|
876
|
-
flags: string[];
|
|
877
|
-
hasaudio: boolean;
|
|
878
|
-
content_description_source: 'GENERATIVE_AI';
|
|
879
|
-
}
|
|
880
|
-
|
|
881
|
-
interface ITenorObject {
|
|
882
|
-
results: ITenorResult[];
|
|
883
|
-
next: string;
|
|
884
|
-
}
|
|
885
|
-
|
|
886
1270
|
declare class GifSelectorComponent implements OnInit, OnDestroy {
|
|
887
1271
|
private cdr;
|
|
888
1272
|
private gifService;
|
|
@@ -903,13 +1287,6 @@ declare class GifSelectorComponent implements OnInit, OnDestroy {
|
|
|
903
1287
|
static ɵcmp: i0.ɵɵComponentDeclaration<GifSelectorComponent, "lib-gif-selector", never, {}, { "selectGif": "selectGif"; }, never, never, true, never>;
|
|
904
1288
|
}
|
|
905
1289
|
|
|
906
|
-
declare enum StatusTypes {
|
|
907
|
-
Info = "info",
|
|
908
|
-
Warning = "warning",
|
|
909
|
-
Error = "error",
|
|
910
|
-
Success = "success"
|
|
911
|
-
}
|
|
912
|
-
|
|
913
1290
|
declare class StatusIconComponent {
|
|
914
1291
|
type: StatusTypes;
|
|
915
1292
|
static ɵfac: i0.ɵɵFactoryDeclaration<StatusIconComponent, never>;
|
|
@@ -942,62 +1319,18 @@ declare class LibChatComponentModule {
|
|
|
942
1319
|
}): ModuleWithProviders<LibChatComponentModule>;
|
|
943
1320
|
static ɵfac: i0.ɵɵFactoryDeclaration<LibChatComponentModule, never>;
|
|
944
1321
|
static ɵmod: i0.ɵɵNgModuleDeclaration<LibChatComponentModule, [typeof ChatComponent], [typeof i2.CommonModule, typeof i6.ImageCardModule, typeof i4.MatInputModule, typeof i5$2.MatSelectModule, typeof i6$1.MatFormFieldModule, typeof i6.InputFieldModule, typeof i5$1.FormsModule, typeof i5$1.ReactiveFormsModule, typeof GifSelectorComponent, typeof i6.LibModalModule, typeof SharedModule, typeof i10.InfiniteScrollModule, typeof i5.TranslateModule], [typeof ChatComponent]>;
|
|
945
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<LibChatComponentModule>;
|
|
946
|
-
}
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
Unresponsive = "unresponsive",
|
|
958
|
-
Redelegation = "redelegation"
|
|
959
|
-
}
|
|
960
|
-
|
|
961
|
-
declare enum CircleVariable {
|
|
962
|
-
Partial = "partial",
|
|
963
|
-
Complete = "complete"
|
|
964
|
-
}
|
|
965
|
-
|
|
966
|
-
interface IPartialCircleProgressColors {
|
|
967
|
-
primary: string;
|
|
968
|
-
secondary: string;
|
|
969
|
-
tertiary: string;
|
|
970
|
-
gradientPrimary: string;
|
|
971
|
-
gradientSecondary: string;
|
|
972
|
-
incomplete: string;
|
|
973
|
-
complete: string;
|
|
974
|
-
}
|
|
975
|
-
|
|
976
|
-
interface CircleProgressConfig {
|
|
977
|
-
/** Outer / main ring */
|
|
978
|
-
value: number;
|
|
979
|
-
max: number;
|
|
980
|
-
partialColors?: IPartialCircleProgressColors;
|
|
981
|
-
showExternalPartialCircleProgress?: boolean;
|
|
982
|
-
/** Inner ring */
|
|
983
|
-
inner?: {
|
|
984
|
-
value: number;
|
|
985
|
-
max: number;
|
|
986
|
-
colors?: IInnerPartialCircleProgressColors;
|
|
987
|
-
state: INNER_CIRCLE_STATE;
|
|
988
|
-
showIllumination?: boolean;
|
|
989
|
-
};
|
|
990
|
-
/** Visuals */
|
|
991
|
-
imageUrl?: string;
|
|
992
|
-
width?: string;
|
|
993
|
-
height?: string;
|
|
994
|
-
showValueProportionLabel?: boolean;
|
|
995
|
-
imgObjectPosition?: 'top' | 'bottom' | 'right' | 'left';
|
|
996
|
-
hasNotification?: boolean;
|
|
997
|
-
prefix?: string;
|
|
998
|
-
suffix?: string;
|
|
999
|
-
hideProgress?: boolean;
|
|
1000
|
-
type?: string;
|
|
1322
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<LibChatComponentModule>;
|
|
1323
|
+
}
|
|
1324
|
+
|
|
1325
|
+
declare class ChatService {
|
|
1326
|
+
cacheService: AbstractCacheService;
|
|
1327
|
+
constructor(cacheService: AbstractCacheService);
|
|
1328
|
+
setLongPressForSendImmediately(enabled: boolean): void;
|
|
1329
|
+
isLongPressForSendImmediately(): Observable<boolean>;
|
|
1330
|
+
transformMessages(messages: IMessage[]): IDateMessages[];
|
|
1331
|
+
updateDateMessages(dateMessages: IDateMessages[]): IDateMessages[];
|
|
1332
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChatService, never>;
|
|
1333
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ChatService>;
|
|
1001
1334
|
}
|
|
1002
1335
|
|
|
1003
1336
|
declare class CircleProgressComponent implements AfterViewInit {
|
|
@@ -1032,176 +1365,8 @@ declare class CircleProgressModule {
|
|
|
1032
1365
|
static ɵinj: i0.ɵɵInjectorDeclaration<CircleProgressModule>;
|
|
1033
1366
|
}
|
|
1034
1367
|
|
|
1035
|
-
declare enum CONVERSATION_FLAG {
|
|
1036
|
-
UNRESPONSIVE = "unresponsive",
|
|
1037
|
-
REDELEGATION = "redelegation"
|
|
1038
|
-
}
|
|
1039
|
-
|
|
1040
|
-
declare enum COUNTER_FLAG_BASE {
|
|
1041
|
-
StartConversation = "startConversation",
|
|
1042
|
-
LastResponse = "lastResponse"
|
|
1043
|
-
}
|
|
1044
|
-
|
|
1045
|
-
interface IConversationFlag {
|
|
1046
|
-
timestamp: Date;
|
|
1047
|
-
prospectId: string;
|
|
1048
|
-
basedOn: COUNTER_FLAG_BASE;
|
|
1049
|
-
flag: CONVERSATION_FLAG;
|
|
1050
|
-
}
|
|
1051
|
-
|
|
1052
|
-
declare enum MatcherStatuses {
|
|
1053
|
-
STATUS0 = "no contact",
|
|
1054
|
-
STATUS1 = "1st exchange",
|
|
1055
|
-
STATUS2 = "2nd exchange",
|
|
1056
|
-
STATUS3 = "3rd exchange",
|
|
1057
|
-
STATUS4 = "2+ laughs",
|
|
1058
|
-
STATUS5 = "idea signalled",
|
|
1059
|
-
STATUS6 = "alt contact",
|
|
1060
|
-
STATUS7 = "any romance",
|
|
1061
|
-
STATUS8 = "locale confirmed",
|
|
1062
|
-
STATUS9 = "time confirmed",
|
|
1063
|
-
STATUS10 = "all followup"
|
|
1064
|
-
}
|
|
1065
|
-
|
|
1066
|
-
interface IChartData {
|
|
1067
|
-
title: string;
|
|
1068
|
-
keys: string[];
|
|
1069
|
-
values: Record<string, number>;
|
|
1070
|
-
}
|
|
1071
|
-
|
|
1072
|
-
interface IProspectData {
|
|
1073
|
-
messages: IMessage[];
|
|
1074
|
-
prospectId: string;
|
|
1075
|
-
status: MatcherStatuses;
|
|
1076
|
-
prospectResponseTime: string;
|
|
1077
|
-
chatSuggestions: IChatSuggestion[];
|
|
1078
|
-
schedules: ISchedulerEvent[];
|
|
1079
|
-
scheduleSuggestions: ISchedulerEventSuggestion[];
|
|
1080
|
-
llmPreference: string;
|
|
1081
|
-
_id: string;
|
|
1082
|
-
prospectJoinDate: Date;
|
|
1083
|
-
conversationFlags: IConversationFlag[];
|
|
1084
|
-
numberMatcherStatuses: number;
|
|
1085
|
-
chartData: IChartData[];
|
|
1086
|
-
llmPreferenceLoading$?: BehaviorSubject<string[]>;
|
|
1087
|
-
}
|
|
1088
|
-
|
|
1089
|
-
interface ILibClientMatchOverview {
|
|
1090
|
-
_id?: string;
|
|
1091
|
-
primary: IClientFields;
|
|
1092
|
-
secondary: IClientFields;
|
|
1093
|
-
preferences: number;
|
|
1094
|
-
personality: number;
|
|
1095
|
-
isExpanded?: boolean;
|
|
1096
|
-
showHandoff?: boolean;
|
|
1097
|
-
createdAt: Date;
|
|
1098
|
-
prospectData: IProspectData;
|
|
1099
|
-
matchRequest: IDashboardMatchRequest;
|
|
1100
|
-
}
|
|
1101
|
-
interface IClientFields {
|
|
1102
|
-
name: string;
|
|
1103
|
-
src: string;
|
|
1104
|
-
}
|
|
1105
|
-
|
|
1106
|
-
declare enum AlertStatusFields {
|
|
1107
|
-
upcomingDates = "upcomingDates",
|
|
1108
|
-
compatibilityProfileTrait = "compatibilityProfileTrait",
|
|
1109
|
-
compatibilityProfileSpider = "compatibilityProfileSpider",
|
|
1110
|
-
chatHandoff = "chatHandoff",
|
|
1111
|
-
chatProgress = "chatProgress",
|
|
1112
|
-
chatMeetupAgenda = "chatMeetupAgenda",
|
|
1113
|
-
face = "face"
|
|
1114
|
-
}
|
|
1115
|
-
|
|
1116
|
-
interface IStatus {
|
|
1117
|
-
title: string;
|
|
1118
|
-
subtitle: string;
|
|
1119
|
-
value: MatcherStatuses;
|
|
1120
|
-
}
|
|
1121
|
-
|
|
1122
1368
|
declare const MATCHER_STATUSES: IStatus[];
|
|
1123
1369
|
|
|
1124
|
-
declare enum ClientHomeComponent {
|
|
1125
|
-
ChatCompatibility = "ChatCompatibility",
|
|
1126
|
-
ChatHandoff = "ChatHandoff",
|
|
1127
|
-
ChatScheduler = "ChatScheduler",
|
|
1128
|
-
ClientMatchSpiderChart = "ClientMatchSpiderChart",
|
|
1129
|
-
ClientMatchTraitChart = "ClientMatchTraitChart"
|
|
1130
|
-
}
|
|
1131
|
-
|
|
1132
|
-
interface IPolygonColor {
|
|
1133
|
-
label: string;
|
|
1134
|
-
value: string;
|
|
1135
|
-
}
|
|
1136
|
-
|
|
1137
|
-
interface IDataset {
|
|
1138
|
-
title: string;
|
|
1139
|
-
keys: string[];
|
|
1140
|
-
values: Record<string, number>;
|
|
1141
|
-
polygon_color?: IPolygonColor;
|
|
1142
|
-
}
|
|
1143
|
-
|
|
1144
|
-
interface ISpiderChartAttribute {
|
|
1145
|
-
key: string;
|
|
1146
|
-
text: string;
|
|
1147
|
-
titleAlertPopup?: string;
|
|
1148
|
-
descriptionAlertPopup?: string;
|
|
1149
|
-
}
|
|
1150
|
-
|
|
1151
|
-
interface ISpiderChartConfig {
|
|
1152
|
-
w: number;
|
|
1153
|
-
h: number;
|
|
1154
|
-
fullScreen: boolean;
|
|
1155
|
-
levels: number;
|
|
1156
|
-
maxValue: number;
|
|
1157
|
-
labelFactor: number;
|
|
1158
|
-
wrapWidth: number;
|
|
1159
|
-
opacityArea: number;
|
|
1160
|
-
dotRadius: number;
|
|
1161
|
-
opacityCircles: number;
|
|
1162
|
-
strokeWidth: number;
|
|
1163
|
-
color: d3.ScaleOrdinal<string, string>;
|
|
1164
|
-
attributes: ISpiderChartAttribute[];
|
|
1165
|
-
datasets: IDataset[];
|
|
1166
|
-
}
|
|
1167
|
-
|
|
1168
|
-
interface IHomeDashboardInputs {
|
|
1169
|
-
loading?: {
|
|
1170
|
-
clientMatches: boolean;
|
|
1171
|
-
};
|
|
1172
|
-
schedulerAdsTemplate?: TemplateRef<HTMLElement>;
|
|
1173
|
-
schedulerTabAdsTemplate?: TemplateRef<HTMLElement>;
|
|
1174
|
-
chatAdsTemplate?: TemplateRef<HTMLElement>;
|
|
1175
|
-
chatTabAdsTemplate?: TemplateRef<HTMLElement>;
|
|
1176
|
-
traitVisualAdsTemplate?: TemplateRef<HTMLElement>;
|
|
1177
|
-
default?: boolean;
|
|
1178
|
-
component: ClientHomeComponent;
|
|
1179
|
-
activeIndex?: number;
|
|
1180
|
-
slideContentMaxHeight?: string;
|
|
1181
|
-
clientMatches$?: Observable<ILibClientMatchOverview[]>;
|
|
1182
|
-
events?: IAgendaEvent[];
|
|
1183
|
-
polygonColors?: IPolygonColor[];
|
|
1184
|
-
spiderConfig?: ISpiderChartConfig;
|
|
1185
|
-
schedulers$?: Observable<{
|
|
1186
|
-
events$: Observable<ISchedulerEvent[]>;
|
|
1187
|
-
}[]>;
|
|
1188
|
-
loading$?: Observable<boolean>;
|
|
1189
|
-
bottomThumbs?: boolean;
|
|
1190
|
-
includeTime?: boolean;
|
|
1191
|
-
includeGifMessage?: boolean;
|
|
1192
|
-
maxLength?: number;
|
|
1193
|
-
startDate?: Date;
|
|
1194
|
-
endDate?: Date;
|
|
1195
|
-
emptyMessage?: string;
|
|
1196
|
-
displayBookedStatuses?: boolean;
|
|
1197
|
-
displayEmptyDays?: boolean;
|
|
1198
|
-
chatInputValue?: string;
|
|
1199
|
-
hideStatuses?: boolean;
|
|
1200
|
-
alertStatus: Partial<Record<AlertStatusFields, boolean>>;
|
|
1201
|
-
showValueProportionLabel?: boolean;
|
|
1202
|
-
hideProgressBar?: boolean;
|
|
1203
|
-
}
|
|
1204
|
-
|
|
1205
1370
|
declare class LibClientHomeComponent implements OnInit, OnDestroy {
|
|
1206
1371
|
private cdr;
|
|
1207
1372
|
config: IHomeDashboardInputs;
|
|
@@ -1243,39 +1408,6 @@ declare class LibClientHomeComponent implements OnInit, OnDestroy {
|
|
|
1243
1408
|
static ɵcmp: i0.ɵɵComponentDeclaration<LibClientHomeComponent, "lib-client-home", never, { "config": { "alias": "config"; "required": false; }; }, { "activeIndexChange": "activeIndexChange"; "addMessage": "addMessage"; "getMessages": "getMessages"; "bookEvent": "bookEvent"; "removeSuggestion": "removeSuggestion"; "handleAppearPopup": "handleAppearPopup"; }, never, never, true, never>;
|
|
1244
1409
|
}
|
|
1245
1410
|
|
|
1246
|
-
interface IChatMeta {
|
|
1247
|
-
lastResponseTimestamp: Date | null;
|
|
1248
|
-
firstAnswer: boolean;
|
|
1249
|
-
waitingAnswer: boolean;
|
|
1250
|
-
conversationFlags: IConversationFlag[];
|
|
1251
|
-
}
|
|
1252
|
-
|
|
1253
|
-
declare const defaultClientHomeConfig: IHomeDashboardInputs;
|
|
1254
|
-
|
|
1255
|
-
declare const innerProgressDefaultColors: IInnerPartialCircleProgressColors;
|
|
1256
|
-
|
|
1257
|
-
declare const innerProgressPinkColors: IInnerPartialCircleProgressColors;
|
|
1258
|
-
|
|
1259
|
-
declare const innerProgressPurpleColors: IInnerPartialCircleProgressColors;
|
|
1260
|
-
|
|
1261
|
-
declare const innerProgressWhiteColors: IPartialCircleProgressColors;
|
|
1262
|
-
|
|
1263
|
-
declare const progressDefaultColors: IPartialCircleProgressColors;
|
|
1264
|
-
|
|
1265
|
-
declare const progressWhiteColors: IPartialCircleProgressColors;
|
|
1266
|
-
|
|
1267
|
-
declare class ChatMetaPipe implements PipeTransform {
|
|
1268
|
-
transform(clientMatches$: Observable<ILibClientMatchOverview[]>, prospectId: string): Observable<IChatMeta>;
|
|
1269
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ChatMetaPipe, never>;
|
|
1270
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<ChatMetaPipe, "chatMeta", true>;
|
|
1271
|
-
}
|
|
1272
|
-
|
|
1273
|
-
declare class GetColorByMatcherPipe implements PipeTransform {
|
|
1274
|
-
transform(match: ILibClientMatchOverview, config: IHomeDashboardInputs): IPartialCircleProgressColors;
|
|
1275
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GetColorByMatcherPipe, never>;
|
|
1276
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<GetColorByMatcherPipe, "getColorByMatcher", true>;
|
|
1277
|
-
}
|
|
1278
|
-
|
|
1279
1411
|
declare class LibClientMatchOverviewComponent implements OnInit, OnDestroy, AfterViewInit, OnChanges {
|
|
1280
1412
|
overview: ILibClientMatchOverview;
|
|
1281
1413
|
meta: IChatMeta;
|
|
@@ -1315,49 +1447,9 @@ declare class LibClientMatchOverviewComponent implements OnInit, OnDestroy, Afte
|
|
|
1315
1447
|
private startTicker;
|
|
1316
1448
|
private stopTicker;
|
|
1317
1449
|
private setInnerCircleState;
|
|
1318
|
-
private buildCircleOpts;
|
|
1319
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LibClientMatchOverviewComponent, never>;
|
|
1320
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LibClientMatchOverviewComponent, "lib-client-match-overview", never, { "overview": { "alias": "overview"; "required": true; }; "meta": { "alias": "meta"; "required": false; }; "expand": { "alias": "expand"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "default": { "alias": "default"; "required": false; }; "hideProgressBar": { "alias": "hideProgressBar"; "required": false; }; "partialColors": { "alias": "partialColors"; "required": false; }; "showExternalPartialCircleProgress": { "alias": "showExternalPartialCircleProgress"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; "enableChangeOverview": { "alias": "enableChangeOverview"; "required": false; }; }, { "sendConversationFlag": "sendConversationFlag"; }, never, never, true, never>;
|
|
1321
|
-
}
|
|
1322
|
-
|
|
1323
|
-
/** Inputs the pure function needs */
|
|
1324
|
-
interface ProgressFacts {
|
|
1325
|
-
createdAt: Date;
|
|
1326
|
-
lastMessageTimestamp: Date | null;
|
|
1327
|
-
firstAnswer: boolean;
|
|
1328
|
-
waitingAnswer: boolean;
|
|
1329
|
-
nowMs?: number;
|
|
1330
|
-
innerMax: number;
|
|
1331
|
-
conversationFlags: IConversationFlag[];
|
|
1332
|
-
}
|
|
1333
|
-
|
|
1334
|
-
/** Decision bundle returned to the component */
|
|
1335
|
-
interface ProgressDecision {
|
|
1336
|
-
state: INNER_CIRCLE_STATE;
|
|
1337
|
-
innerValue: number | null;
|
|
1338
|
-
tick: 'start' | 'stop';
|
|
1339
|
-
basedOn: COUNTER_FLAG_BASE;
|
|
1340
|
-
registered: boolean;
|
|
1341
|
-
}
|
|
1342
|
-
|
|
1343
|
-
/**
|
|
1344
|
-
* Pure “rules engine” for the inner circle.
|
|
1345
|
-
* No side-effects, no RxJS, no Angular.
|
|
1346
|
-
*/
|
|
1347
|
-
declare function computeInnerState(indicators: ProgressFacts): ProgressDecision | null;
|
|
1348
|
-
|
|
1349
|
-
declare const PROGRESS_GAP_MINUTES: InjectionToken<number>;
|
|
1350
|
-
|
|
1351
|
-
declare const TICK_PERIOD_SECONDS: InjectionToken<number>;
|
|
1352
|
-
|
|
1353
|
-
declare class ProgressTickerService {
|
|
1354
|
-
/** Emits once every `periodSec` seconds. Auto-starts & ref-counts. */
|
|
1355
|
-
readonly tick$: Observable<number>;
|
|
1356
|
-
/** For diagnostics: current number of active subscribers. */
|
|
1357
|
-
readonly subscriberCount$: BehaviorSubject<number>;
|
|
1358
|
-
constructor(periodSec: number);
|
|
1359
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressTickerService, never>;
|
|
1360
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ProgressTickerService>;
|
|
1450
|
+
private buildCircleOpts;
|
|
1451
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LibClientMatchOverviewComponent, never>;
|
|
1452
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LibClientMatchOverviewComponent, "lib-client-match-overview", never, { "overview": { "alias": "overview"; "required": true; }; "meta": { "alias": "meta"; "required": false; }; "expand": { "alias": "expand"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "default": { "alias": "default"; "required": false; }; "hideProgressBar": { "alias": "hideProgressBar"; "required": false; }; "partialColors": { "alias": "partialColors"; "required": false; }; "showExternalPartialCircleProgress": { "alias": "showExternalPartialCircleProgress"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; "enableChangeOverview": { "alias": "enableChangeOverview"; "required": false; }; }, { "sendConversationFlag": "sendConversationFlag"; }, never, never, true, never>;
|
|
1361
1453
|
}
|
|
1362
1454
|
|
|
1363
1455
|
declare class LibDashboardSwipeableTabsComponent implements AfterViewInit {
|
|
@@ -1387,40 +1479,26 @@ declare class LibDashboardSwipeableTabsComponent implements AfterViewInit {
|
|
|
1387
1479
|
static ɵcmp: i0.ɵɵComponentDeclaration<LibDashboardSwipeableTabsComponent, "lib-dashboard-swipeable-tabs", never, { "thumbsSwiperOptions": { "alias": "thumbsSwiperOptions"; "required": false; }; "mainSwiperOptions": { "alias": "mainSwiperOptions"; "required": false; }; "activeIndex": { "alias": "activeIndex"; "required": false; }; "bottomThumbs": { "alias": "bottomThumbs"; "required": false; }; "slideContentMaxHeight": { "alias": "slideContentMaxHeight"; "required": false; }; "mainSwiperHeight": { "alias": "mainSwiperHeight"; "required": false; }; "subMainSwiperHeight": { "alias": "subMainSwiperHeight"; "required": false; }; "thumbsSwiperHeight": { "alias": "thumbsSwiperHeight"; "required": false; }; "generalSwiperHeight": { "alias": "generalSwiperHeight"; "required": false; }; }, { "activeIndexChange": "activeIndexChange"; }, ["thumbSlides"], ["[thumb-slides]", "[main-slides]"], true, never>;
|
|
1388
1480
|
}
|
|
1389
1481
|
|
|
1390
|
-
declare
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
agendaAdsTemplate?: TemplateRef<HTMLElement>;
|
|
1411
|
-
default?: boolean;
|
|
1412
|
-
activeIndex?: number;
|
|
1413
|
-
activeTabIndex?: number;
|
|
1414
|
-
activeChartItem?: number;
|
|
1415
|
-
slideContentMaxHeight?: string;
|
|
1416
|
-
clientMatches$?: Observable<ILibClientMatchOverview[]>;
|
|
1417
|
-
events?: IAgendaEvent[];
|
|
1418
|
-
polygonColors?: IPolygonColor[];
|
|
1419
|
-
spiderConfig?: ISpiderChartConfig;
|
|
1420
|
-
schedulers$?: Observable<{
|
|
1421
|
-
events$: Observable<ISchedulerEvent[]>;
|
|
1422
|
-
}[]>;
|
|
1423
|
-
alertStatus: Partial<Record<AlertStatusFields, boolean>>;
|
|
1482
|
+
declare class LibHandoffPanelComponent implements OnInit {
|
|
1483
|
+
private cdr;
|
|
1484
|
+
config: IHandoffPanelInputs;
|
|
1485
|
+
addMessage: EventEmitter<IMessage>;
|
|
1486
|
+
scheduleSlotToggle: EventEmitter<IScheduleSlot>;
|
|
1487
|
+
HandoffPanelVersion: typeof HandoffPanelVersion;
|
|
1488
|
+
activeTabIndex: number;
|
|
1489
|
+
messages$: Observable<IMessage[]>;
|
|
1490
|
+
scheduleSlots: IScheduleSlot[];
|
|
1491
|
+
slotControls: Map<string, FormControl<boolean>>;
|
|
1492
|
+
datePrepInfo: IDatePrepInfo;
|
|
1493
|
+
constructor(cdr: ChangeDetectorRef);
|
|
1494
|
+
ngOnInit(): void;
|
|
1495
|
+
private initializeSlotControls;
|
|
1496
|
+
onTabChange(index: number): void;
|
|
1497
|
+
getSlotControl(slot: IScheduleSlot): FormControl<boolean>;
|
|
1498
|
+
onMessageAdd(message: IMessage): void;
|
|
1499
|
+
getVersionClass(): string;
|
|
1500
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LibHandoffPanelComponent, never>;
|
|
1501
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LibHandoffPanelComponent, "lib-handoff-panel", never, { "config": { "alias": "config"; "required": false; }; }, { "addMessage": "addMessage"; "scheduleSlotToggle": "scheduleSlotToggle"; }, never, never, true, never>;
|
|
1424
1502
|
}
|
|
1425
1503
|
|
|
1426
1504
|
declare class LibClientDashboardComponent implements OnInit, OnDestroy {
|
|
@@ -1491,33 +1569,6 @@ declare class LibClientDashboardComponent implements OnInit, OnDestroy {
|
|
|
1491
1569
|
static ɵcmp: i0.ɵɵComponentDeclaration<LibClientDashboardComponent, "lib-client-dashboard", never, { "config": { "alias": "config"; "required": false; }; "agendaAdsData": { "alias": "agendaAdsData"; "required": false; }; }, { "addMessage": "addMessage"; "getMessages": "getMessages"; "bookEvent": "bookEvent"; "removeSuggestion": "removeSuggestion"; "activeIndexChange": "activeIndexChange"; "handleClosedAlert": "handleClosedAlert"; "handleAppearPopup": "handleAppearPopup"; }, never, never, true, never>;
|
|
1492
1570
|
}
|
|
1493
1571
|
|
|
1494
|
-
declare const defaultClientDashboardConfig: IClientDashboardInputs;
|
|
1495
|
-
|
|
1496
|
-
interface IChatIdentifier {
|
|
1497
|
-
chatId: string;
|
|
1498
|
-
llmPreference: string;
|
|
1499
|
-
prospectName: string;
|
|
1500
|
-
}
|
|
1501
|
-
|
|
1502
|
-
interface IMatcherDashboardInputs {
|
|
1503
|
-
schedulerAdsTemplate?: TemplateRef<HTMLElement>;
|
|
1504
|
-
schedulerTabAdsTemplate?: TemplateRef<HTMLElement>;
|
|
1505
|
-
chatAdsTemplate?: TemplateRef<HTMLElement>;
|
|
1506
|
-
loading?: {
|
|
1507
|
-
clientMatches: boolean;
|
|
1508
|
-
};
|
|
1509
|
-
default?: boolean;
|
|
1510
|
-
activeIndex?: number;
|
|
1511
|
-
activeTabIndex?: number;
|
|
1512
|
-
slideContentMaxHeight?: string;
|
|
1513
|
-
clientMatches$?: Observable<ILibClientMatchOverview[]>;
|
|
1514
|
-
events$?: Observable<ISchedulerEvent[]>;
|
|
1515
|
-
polygonColors?: IPolygonColor[];
|
|
1516
|
-
spiderConfig?: ISpiderChartConfig;
|
|
1517
|
-
alertStatus: Partial<Record<AlertStatusFields, boolean>>;
|
|
1518
|
-
llmPreferenceOptions?: SelectOption<string>[];
|
|
1519
|
-
}
|
|
1520
|
-
|
|
1521
1572
|
declare class LibComposeMacherDashComponent implements OnInit, OnDestroy {
|
|
1522
1573
|
private cdr;
|
|
1523
1574
|
config: IMatcherDashboardInputs;
|
|
@@ -1554,25 +1605,12 @@ declare class LibComposeMacherDashComponent implements OnInit, OnDestroy {
|
|
|
1554
1605
|
onActiveTabIndexChange(index: number): void;
|
|
1555
1606
|
onActiveProspectChange(index: number): void;
|
|
1556
1607
|
suggestClicked(suggest: string): void;
|
|
1608
|
+
getClientAttributes(match: any): IProfileAttribute[];
|
|
1609
|
+
getProspectAttributes(match: any): IProfileAttribute[];
|
|
1557
1610
|
static ɵfac: i0.ɵɵFactoryDeclaration<LibComposeMacherDashComponent, never>;
|
|
1558
1611
|
static ɵcmp: i0.ɵɵComponentDeclaration<LibComposeMacherDashComponent, "lib-compose-matcher-dash", never, { "config": { "alias": "config"; "required": false; }; }, { "addMessage": "addMessage"; "updateLLMConversation": "updateLLMConversation"; "getMessages": "getMessages"; "bookEvent": "bookEvent"; "removeSuggestion": "removeSuggestion"; "activeIndexChange": "activeIndexChange"; }, never, never, true, never>;
|
|
1559
1612
|
}
|
|
1560
1613
|
|
|
1561
|
-
interface IDashboardMatcherProfile {
|
|
1562
|
-
id: number;
|
|
1563
|
-
name: string;
|
|
1564
|
-
value: number;
|
|
1565
|
-
photo: string;
|
|
1566
|
-
notification: number;
|
|
1567
|
-
progress: number;
|
|
1568
|
-
}
|
|
1569
|
-
|
|
1570
|
-
declare class GetProfileWithProgressPipe implements PipeTransform {
|
|
1571
|
-
transform(clientMatch: ILibClientMatchOverview): Profile;
|
|
1572
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GetProfileWithProgressPipe, never>;
|
|
1573
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<GetProfileWithProgressPipe, "getProfileWithProgress", true>;
|
|
1574
|
-
}
|
|
1575
|
-
|
|
1576
1614
|
declare class MatcherStatusesComponent {
|
|
1577
1615
|
adsTemplate?: TemplateRef<HTMLElement>;
|
|
1578
1616
|
status: MatcherStatuses;
|
|
@@ -1592,12 +1630,6 @@ declare class MatcherStatusesComponent {
|
|
|
1592
1630
|
static ɵcmp: i0.ɵɵComponentDeclaration<MatcherStatusesComponent, "lib-matcher-statuses", never, { "adsTemplate": { "alias": "adsTemplate"; "required": false; }; "status": { "alias": "status"; "required": false; }; "hideStatuses": { "alias": "hideStatuses"; "required": false; }; "messages": { "alias": "messages"; "required": false; }; "inputValue": { "alias": "inputValue"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "responseTime": { "alias": "responseTime"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "prospectJoinDate": { "alias": "prospectJoinDate"; "required": false; }; }, { "getMessages": "getMessages"; "sendMessage": "sendMessage"; }, never, never, true, never>;
|
|
1593
1631
|
}
|
|
1594
1632
|
|
|
1595
|
-
declare class IsStatusIncludedPipe implements PipeTransform {
|
|
1596
|
-
transform(status: MatcherStatuses, index: number): boolean;
|
|
1597
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<IsStatusIncludedPipe, never>;
|
|
1598
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<IsStatusIncludedPipe, "isStatusIncluded", true>;
|
|
1599
|
-
}
|
|
1600
|
-
|
|
1601
1633
|
declare class ProfileCardComponent implements OnChanges {
|
|
1602
1634
|
profile: Profile;
|
|
1603
1635
|
progressText: string;
|
|
@@ -1613,61 +1645,16 @@ declare class ProfileCardModule {
|
|
|
1613
1645
|
static ɵinj: i0.ɵɵInjectorDeclaration<ProfileCardModule>;
|
|
1614
1646
|
}
|
|
1615
1647
|
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
filter?: string;
|
|
1625
|
-
}
|
|
1626
|
-
|
|
1627
|
-
interface IDefsF {
|
|
1628
|
-
id: string;
|
|
1629
|
-
x: string;
|
|
1630
|
-
y: string;
|
|
1631
|
-
height: string;
|
|
1632
|
-
width: string;
|
|
1633
|
-
feGaussianTags: {
|
|
1634
|
-
in: string;
|
|
1635
|
-
stdDeviation: string;
|
|
1636
|
-
}[];
|
|
1637
|
-
}
|
|
1638
|
-
|
|
1639
|
-
interface IDefsLG {
|
|
1640
|
-
id: string;
|
|
1641
|
-
x1: string;
|
|
1642
|
-
y1: string;
|
|
1643
|
-
x2: string;
|
|
1644
|
-
y2: string;
|
|
1645
|
-
stopTags: {
|
|
1646
|
-
offset: string;
|
|
1647
|
-
style: string;
|
|
1648
|
-
}[];
|
|
1649
|
-
}
|
|
1650
|
-
|
|
1651
|
-
interface IDefsRG {
|
|
1652
|
-
id: string;
|
|
1653
|
-
cx: string;
|
|
1654
|
-
cy: string;
|
|
1655
|
-
r: string;
|
|
1656
|
-
stopTags: {
|
|
1657
|
-
offset: string;
|
|
1658
|
-
style: string;
|
|
1659
|
-
}[];
|
|
1648
|
+
declare class LibProfileComparisonComponent implements OnInit {
|
|
1649
|
+
private cdr;
|
|
1650
|
+
config: IProfileComparisonInputs;
|
|
1651
|
+
comparisonData: IProfileComparisonData;
|
|
1652
|
+
constructor(cdr: ChangeDetectorRef);
|
|
1653
|
+
ngOnInit(): void;
|
|
1654
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LibProfileComparisonComponent, never>;
|
|
1655
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LibProfileComparisonComponent, "lib-profile-comparison", never, { "config": { "alias": "config"; "required": false; }; }, {}, never, never, true, never>;
|
|
1660
1656
|
}
|
|
1661
1657
|
|
|
1662
|
-
declare const defaultSpiderConfig: ISpiderChartConfig;
|
|
1663
|
-
|
|
1664
|
-
declare const demoPolygonColors: IPolygonColor[];
|
|
1665
|
-
|
|
1666
|
-
declare const circleData: ICircleData[];
|
|
1667
|
-
declare const defsLG: IDefsLG[];
|
|
1668
|
-
declare const defsF: IDefsF[];
|
|
1669
|
-
declare const defsRG: IDefsRG[];
|
|
1670
|
-
|
|
1671
1658
|
declare class InitialsPipe implements PipeTransform {
|
|
1672
1659
|
transform(fullName: string, numChars?: number): string;
|
|
1673
1660
|
static ɵfac: i0.ɵɵFactoryDeclaration<InitialsPipe, never>;
|
|
@@ -1715,6 +1702,84 @@ declare class SpiderChartComponent implements OnChanges, OnDestroy, AfterViewIni
|
|
|
1715
1702
|
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>;
|
|
1716
1703
|
}
|
|
1717
1704
|
|
|
1705
|
+
declare class LibVisualManagerModalComponent implements OnInit, AfterViewInit {
|
|
1706
|
+
private changeDetectorRef;
|
|
1707
|
+
private popupModalService;
|
|
1708
|
+
modalData?: IVisualManagerModalModalData;
|
|
1709
|
+
childModalElementRef: ElementRef<HTMLDivElement>;
|
|
1710
|
+
data: IVisualManagerModalData;
|
|
1711
|
+
event: EventEmitter<IVisualManagerModalEvent>;
|
|
1712
|
+
componentData: IVisualManagerModalModalData | null;
|
|
1713
|
+
preferences: IPreferenceItem[];
|
|
1714
|
+
originalPreferences: IPreferenceItem[];
|
|
1715
|
+
preferenceControls: Map<string, FormControl>;
|
|
1716
|
+
get selectedItems(): IPreferenceItem[];
|
|
1717
|
+
get deselectedItems(): IPreferenceItem[];
|
|
1718
|
+
constructor(changeDetectorRef: ChangeDetectorRef, popupModalService: PopupModalService, modalData?: IVisualManagerModalModalData);
|
|
1719
|
+
ngOnInit(): void;
|
|
1720
|
+
ngAfterViewInit(): void;
|
|
1721
|
+
togglePreference(preference: IPreferenceItem, event?: Event): void;
|
|
1722
|
+
apply(): void;
|
|
1723
|
+
reset(): void;
|
|
1724
|
+
close(): void;
|
|
1725
|
+
onPreferenceNameChange(preference: IPreferenceItem, newName: string): void;
|
|
1726
|
+
getPreferenceControl(preferenceId: string): FormControl;
|
|
1727
|
+
onDragStart(event: DragEvent, preference: IPreferenceItem, isSelected: boolean): void;
|
|
1728
|
+
onDragEnd(event: DragEvent): void;
|
|
1729
|
+
onDragOver(event: DragEvent): void;
|
|
1730
|
+
onDrop(event: DragEvent, targetPreference: IPreferenceItem, isSelected: boolean): void;
|
|
1731
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LibVisualManagerModalComponent, [null, null, { optional: true; }]>;
|
|
1732
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LibVisualManagerModalComponent, "lib-visual-manager-modal", never, { "data": { "alias": "data"; "required": false; }; }, { "event": "event"; }, never, never, true, never>;
|
|
1733
|
+
}
|
|
1734
|
+
|
|
1735
|
+
declare const circleData: ICircleData[];
|
|
1736
|
+
|
|
1737
|
+
declare const defaultClientDashboardConfig: IClientDashboardInputs;
|
|
1738
|
+
|
|
1739
|
+
declare const defaultClientHomeConfig: IHomeDashboardInputs;
|
|
1740
|
+
|
|
1741
|
+
/**
|
|
1742
|
+
* Pure “rules engine” for the inner circle.
|
|
1743
|
+
* No side-effects, no RxJS, no Angular.
|
|
1744
|
+
*/
|
|
1745
|
+
declare function computeInnerState(indicators: ProgressFacts): ProgressDecision | null;
|
|
1746
|
+
|
|
1747
|
+
declare const dashboardMainSwiperDefaultOptions: SwiperOptions;
|
|
1748
|
+
|
|
1749
|
+
declare const dashboardThumbsSwiperDefaultOptions: SwiperOptions;
|
|
1750
|
+
|
|
1751
|
+
declare const defaultSpiderConfig: ISpiderChartConfig;
|
|
1752
|
+
|
|
1753
|
+
declare const defsF: IDefsF[];
|
|
1754
|
+
|
|
1755
|
+
declare const defsLG: IDefsLG[];
|
|
1756
|
+
|
|
1757
|
+
declare const defsRG: IDefsRG[];
|
|
1758
|
+
|
|
1759
|
+
declare const demoPolygonColors: IPolygonColor[];
|
|
1760
|
+
|
|
1761
|
+
declare const innerProgressDefaultColors: IInnerPartialCircleProgressColors;
|
|
1762
|
+
|
|
1763
|
+
declare const innerProgressPinkColors: IInnerPartialCircleProgressColors;
|
|
1764
|
+
|
|
1765
|
+
declare const innerProgressPurpleColors: IInnerPartialCircleProgressColors;
|
|
1766
|
+
|
|
1767
|
+
declare const innerProgressWhiteColors: IPartialCircleProgressColors;
|
|
1768
|
+
|
|
1769
|
+
declare const mainswiperDefaultOptions: SwiperOptions;
|
|
1770
|
+
|
|
1771
|
+
declare const progressDefaultColors: IPartialCircleProgressColors;
|
|
1772
|
+
|
|
1773
|
+
declare const PROGRESS_GAP_MINUTES: InjectionToken<number>;
|
|
1774
|
+
|
|
1775
|
+
declare const TICK_PERIOD_SECONDS: InjectionToken<number>;
|
|
1776
|
+
|
|
1777
|
+
declare const progressWhiteColors: IPartialCircleProgressColors;
|
|
1778
|
+
|
|
1779
|
+
declare const recurringOptions: IRecurringEvent[];
|
|
1780
|
+
|
|
1781
|
+
declare const thumbsSwiperDefaultOptions: SwiperOptions;
|
|
1782
|
+
|
|
1718
1783
|
/**
|
|
1719
1784
|
* operations.ts - Contains common operations utility functions.
|
|
1720
1785
|
*
|
|
@@ -1740,6 +1805,12 @@ declare class ArraySortPipe implements PipeTransform {
|
|
|
1740
1805
|
static ɵpipe: i0.ɵɵPipeDeclaration<ArraySortPipe, "sort", false>;
|
|
1741
1806
|
}
|
|
1742
1807
|
|
|
1808
|
+
declare class ChatMetaPipe implements PipeTransform {
|
|
1809
|
+
transform(clientMatches$: Observable<ILibClientMatchOverview[]>, prospectId: string): Observable<IChatMeta>;
|
|
1810
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChatMetaPipe, never>;
|
|
1811
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<ChatMetaPipe, "chatMeta", true>;
|
|
1812
|
+
}
|
|
1813
|
+
|
|
1743
1814
|
declare class CountNonEmptyFieldsPipe implements PipeTransform {
|
|
1744
1815
|
transform(records: Record<string, string | null>): number;
|
|
1745
1816
|
static ɵfac: i0.ɵɵFactoryDeclaration<CountNonEmptyFieldsPipe, never>;
|
|
@@ -1752,6 +1823,12 @@ declare class DateLocalizationPipe implements PipeTransform {
|
|
|
1752
1823
|
static ɵpipe: i0.ɵɵPipeDeclaration<DateLocalizationPipe, "dateLocalization", false>;
|
|
1753
1824
|
}
|
|
1754
1825
|
|
|
1826
|
+
declare class GetColorByMatcherPipe implements PipeTransform {
|
|
1827
|
+
transform(match: ILibClientMatchOverview, config: IHomeDashboardInputs): IPartialCircleProgressColors;
|
|
1828
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GetColorByMatcherPipe, never>;
|
|
1829
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<GetColorByMatcherPipe, "getColorByMatcher", true>;
|
|
1830
|
+
}
|
|
1831
|
+
|
|
1755
1832
|
declare class GetDisplayValuePipe implements PipeTransform {
|
|
1756
1833
|
private dateLocalizationPipe;
|
|
1757
1834
|
private currencyPipe;
|
|
@@ -1767,11 +1844,33 @@ declare class GetMultiSelectDisplayTextPipe implements PipeTransform {
|
|
|
1767
1844
|
static ɵpipe: i0.ɵɵPipeDeclaration<GetMultiSelectDisplayTextPipe, "getMultiSelectDisplayText", false>;
|
|
1768
1845
|
}
|
|
1769
1846
|
|
|
1847
|
+
declare class GetProfileWithProgressPipe implements PipeTransform {
|
|
1848
|
+
transform(clientMatch: ILibClientMatchOverview): Profile;
|
|
1849
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GetProfileWithProgressPipe, never>;
|
|
1850
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<GetProfileWithProgressPipe, "getProfileWithProgress", true>;
|
|
1851
|
+
}
|
|
1852
|
+
|
|
1853
|
+
declare class IsStatusIncludedPipe implements PipeTransform {
|
|
1854
|
+
transform(status: MatcherStatuses, index: number): boolean;
|
|
1855
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IsStatusIncludedPipe, never>;
|
|
1856
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<IsStatusIncludedPipe, "isStatusIncluded", true>;
|
|
1857
|
+
}
|
|
1858
|
+
|
|
1770
1859
|
declare class RoundPipe implements PipeTransform {
|
|
1771
1860
|
transform(value: number): number;
|
|
1772
1861
|
static ɵfac: i0.ɵɵFactoryDeclaration<RoundPipe, never>;
|
|
1773
1862
|
static ɵpipe: i0.ɵɵPipeDeclaration<RoundPipe, "round", false>;
|
|
1774
1863
|
}
|
|
1775
1864
|
|
|
1776
|
-
|
|
1777
|
-
|
|
1865
|
+
declare class ProgressTickerService {
|
|
1866
|
+
/** Emits once every `periodSec` seconds. Auto-starts & ref-counts. */
|
|
1867
|
+
readonly tick$: Observable<number>;
|
|
1868
|
+
/** For diagnostics: current number of active subscribers. */
|
|
1869
|
+
readonly subscriberCount$: BehaviorSubject<number>;
|
|
1870
|
+
constructor(periodSec: number);
|
|
1871
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressTickerService, never>;
|
|
1872
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ProgressTickerService>;
|
|
1873
|
+
}
|
|
1874
|
+
|
|
1875
|
+
export { AbstractCacheService, AgendaComponent, AlertPopupComponent, AlertStatusFields, ArraySortPipe, AutoDelegationEventTypes, AutoDelegationEventValue, CONVERSATION_FLAG, COUNTER_FLAG_BASE, CalendarAccountEnum, CalendarAccountIconsEnum, CalendarUtilsService, ChatComponent, ChatMetaPipe, ChatService, ChatSuggestionComponent, CircleProgressComponent, CircleProgressModule, CircleVariable, ClientDashboardTabs, ClientHomeComponent, CommonOperations, CountNonEmptyFieldsPipe, DateLocalizationPipe, EditRecurringEventOptions, EventTypes, GetColorByMatcherPipe, GetDisplayValuePipe, GetMultiSelectDisplayTextPipe, GetProfileWithProgressPipe, HandoffPanelVersion, INNER_CIRCLE_STATE, InitialsPipe, IsStatusIncludedPipe, LibAgendaModule, LibAutoDelegationModalComponent, LibChatComponentModule, LibClientDashboardComponent, LibClientHomeComponent, LibClientMatchOverviewComponent, LibComposeMacherDashComponent, LibDashboardSwipeableTabsComponent, LibEventFormComponent, LibEventFormModule, LibHandoffPanelComponent, LibMessageModalComponent, LibProfileComparisonComponent, LibSchedulerComponent, LibVisualManagerModalComponent, MATCHER_STATUSES, MatcherStatuses, MatcherStatusesComponent, PROGRESS_GAP_MINUTES, ProfileCardComponent, ProfileCardModule, ProgressTickerService, RecurringTypes, RoundPipe, ScheduleDateStatus, SenderTypes, SharedModule, SpiderChartComponent, StatusIconComponent, TICK_PERIOD_SECONDS, VisualManagerModalEventTypes, VisualManagerModalEventValue, circleData, computeInnerState, dashboardMainSwiperDefaultOptions, dashboardThumbsSwiperDefaultOptions, defaultClientDashboardConfig, defaultClientHomeConfig, defaultSpiderConfig, defsF, defsLG, defsRG, demoPolygonColors, innerProgressDefaultColors, innerProgressPinkColors, innerProgressPurpleColors, innerProgressWhiteColors, mainswiperDefaultOptions, progressDefaultColors, progressWhiteColors, recurringOptions, thumbsSwiperDefaultOptions };
|
|
1876
|
+
export type { CircleProgressConfig, IAgendaDay, IAgendaEvent, IAttachment, IAutoDelegationData, IAutoDelegationEvent, IAutoDelegationModalData, IAutoDelegationPreferences, ICalendarAccount, ICalendarAccountTheme, IChartData, IChatIdentifier, IChatMeta, IChatSuggestion, ICircleData, IClientDashboardInputs, IConversationFlag, IDashboardMatchRequest, IDashboardMatcherProfile, IDataset, IDateMessages, IDatePrepInfo, IDefsF, IDefsLG, IDefsRG, IEvent, IEventFormOutput, IEventTime, IHandoffPanelInputs, IHomeDashboardInputs, IInnerPartialCircleProgressColors, ILibClientMatchOverview, IMatcherDashboardInputs, IMessage, IPartialCircleProgressColors, IPolygonColor, IPreferenceItem, IProfileAttribute, IProfileComparisonData, IProfileComparisonInputs, IProspectData, IRecurringEvent, IRecurringEventException, IRecurringPattern, IScheduleSlot, ISchedulerAction, ISchedulerEvent, ISchedulerEventSlots, ISchedulerEventSuggestion, ISpiderChartAttribute, ISpiderChartConfig, IVisualManagerModalData, IVisualManagerModalEvent, IVisualManagerModalModalData, ProgressFacts, SelectOptionWithTemplate };
|