@sinequa/atomic-angular 0.3.25 → 0.3.33
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
|
@@ -8,16 +8,16 @@ import { Article as Article$1, LegacyFilter, KeyOf, CCApp, Query, QueryParams as
|
|
|
8
8
|
import { Router, NavigationEnd, ActivatedRoute, CanActivateFn, ResolveFn } from '@angular/router';
|
|
9
9
|
import * as _sinequa_atomic_angular from '@sinequa/atomic-angular';
|
|
10
10
|
import * as _sinequa_ui from '@sinequa/ui';
|
|
11
|
-
import { cn, DialogService, DropdownComponent, DialogInterface, DialogComponent, DialogEvent, PopoverComponent, PopoverContentComponent, DialogResult, DateRangePickerDirective } from '@sinequa/ui';
|
|
11
|
+
import { cn, DialogService, DropdownComponent, SheetService, DialogInterface, DialogComponent, DialogEvent, PopoverComponent, PopoverContentComponent, DialogResult, DateRangePickerDirective, BreakpointObserverService } from '@sinequa/ui';
|
|
12
12
|
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
13
13
|
import { VariantProps } from 'class-variance-authority';
|
|
14
14
|
import * as _angular_common_http from '@angular/common/http';
|
|
15
15
|
import { HttpClient, HttpHeaders, HttpContext, HttpParams, HttpResponse, HttpInterceptorFn, HttpRequest, HttpHandlerFn } from '@angular/common/http';
|
|
16
16
|
import { Title, SafeHtml, DomSanitizer } from '@angular/platform-browser';
|
|
17
17
|
import { Placement } from '@floating-ui/dom';
|
|
18
|
-
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
19
18
|
import * as _angular_forms from '@angular/forms';
|
|
20
19
|
import { FormGroup, FormControl } from '@angular/forms';
|
|
20
|
+
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
21
21
|
import * as _angular_cdk_overlay from '@angular/cdk/overlay';
|
|
22
22
|
import { TranslocoService } from '@jsverse/transloco';
|
|
23
23
|
import { HighlightWords } from 'highlight-words';
|
|
@@ -66,6 +66,27 @@ declare class DropdownListComponent {
|
|
|
66
66
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DropdownListComponent, "dropdown-list, DropdownList", never, { "items": { "alias": "items"; "required": true; "isSignal": true; }; }, { "onClick": "onClick"; }, never, never, true, never>;
|
|
67
67
|
}
|
|
68
68
|
|
|
69
|
+
type PageConfiguration = {
|
|
70
|
+
page: number;
|
|
71
|
+
rowCount: number;
|
|
72
|
+
pageSize: number;
|
|
73
|
+
};
|
|
74
|
+
/**
|
|
75
|
+
* Pager Component
|
|
76
|
+
* @deprecated Use TanstackQuery solutions instead.
|
|
77
|
+
*/
|
|
78
|
+
declare class PagerComponent {
|
|
79
|
+
readonly configuration: _angular_core.InputSignal<PageConfiguration>;
|
|
80
|
+
protected readonly page: _angular_core.WritableSignal<number>;
|
|
81
|
+
protected readonly hasPages: _angular_core.Signal<boolean>;
|
|
82
|
+
private readonly queryService;
|
|
83
|
+
constructor();
|
|
84
|
+
nextPage(): void;
|
|
85
|
+
previousPage(): void;
|
|
86
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PagerComponent, never>;
|
|
87
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PagerComponent, "pager", never, { "configuration": { "alias": "configuration"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
88
|
+
}
|
|
89
|
+
|
|
69
90
|
/**
|
|
70
91
|
* @deprecated Use the SearchInputFooter from @sinequa/ui instead.
|
|
71
92
|
*/
|
|
@@ -93,8 +114,6 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
93
114
|
readonly router: Router;
|
|
94
115
|
readonly queryParamStore: {
|
|
95
116
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
96
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
97
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
98
117
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
99
118
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
100
119
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -103,6 +122,7 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
103
122
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
104
123
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
105
124
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
125
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
106
126
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
107
127
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
108
128
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -116,6 +136,7 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
116
136
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
117
137
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
118
138
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
139
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
119
140
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
120
141
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
121
142
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -148,8 +169,6 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
148
169
|
getQuery: () => _sinequa_atomic.Query;
|
|
149
170
|
} & _ngrx_signals.StateSource<{
|
|
150
171
|
name?: string | undefined;
|
|
151
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
152
|
-
sort?: string | undefined;
|
|
153
172
|
text?: string | undefined;
|
|
154
173
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
155
174
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -158,6 +177,7 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
158
177
|
pageSize?: number | undefined;
|
|
159
178
|
tab?: string | undefined;
|
|
160
179
|
scope?: string | undefined;
|
|
180
|
+
sort?: string | undefined;
|
|
161
181
|
basket?: string | undefined;
|
|
162
182
|
isFirstPage?: boolean | undefined;
|
|
163
183
|
strictRefine?: boolean | undefined;
|
|
@@ -171,6 +191,7 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
171
191
|
relevanceTransforms?: string | undefined;
|
|
172
192
|
removeDuplicates?: boolean | undefined;
|
|
173
193
|
queryId?: string | undefined;
|
|
194
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
174
195
|
orderBy?: string | undefined;
|
|
175
196
|
groupBy?: string | undefined;
|
|
176
197
|
neuralSearch?: boolean | undefined;
|
|
@@ -228,7 +249,7 @@ declare class MetadataComponent {
|
|
|
228
249
|
event: Event;
|
|
229
250
|
}>;
|
|
230
251
|
class: _angular_core.InputSignal<string | undefined>;
|
|
231
|
-
variant: _angular_core.InputSignal<"error" | "default" | "secondary" | "
|
|
252
|
+
variant: _angular_core.InputSignal<"error" | "default" | "secondary" | "outline" | "ghost" | "ai" | "none" | "info" | "success" | "warning" | null | undefined>;
|
|
232
253
|
metadata: _angular_core.InputSignal<KeyOf<Article$1> | (string & Record<never, never>)>;
|
|
233
254
|
article: _angular_core.InputSignal<Partial<Article$1> | (string & Record<never, never>)>;
|
|
234
255
|
limit: _angular_core.InputSignalWithTransform<number | undefined, string | number | undefined>;
|
|
@@ -242,8 +263,6 @@ declare class MissingTermsComponent {
|
|
|
242
263
|
readonly article: _angular_core.InputSignal<Article$1>;
|
|
243
264
|
queryParamsStore: {
|
|
244
265
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
245
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
246
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
247
266
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
248
267
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
249
268
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -252,6 +271,7 @@ declare class MissingTermsComponent {
|
|
|
252
271
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
253
272
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
254
273
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
274
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
255
275
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
256
276
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
257
277
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -265,6 +285,7 @@ declare class MissingTermsComponent {
|
|
|
265
285
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
266
286
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
267
287
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
288
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
268
289
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
269
290
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
270
291
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -297,8 +318,6 @@ declare class MissingTermsComponent {
|
|
|
297
318
|
getQuery: () => _sinequa_atomic.Query;
|
|
298
319
|
} & _ngrx_signals.StateSource<{
|
|
299
320
|
name?: string | undefined;
|
|
300
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
301
|
-
sort?: string | undefined;
|
|
302
321
|
text?: string | undefined;
|
|
303
322
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
304
323
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -307,6 +326,7 @@ declare class MissingTermsComponent {
|
|
|
307
326
|
pageSize?: number | undefined;
|
|
308
327
|
tab?: string | undefined;
|
|
309
328
|
scope?: string | undefined;
|
|
329
|
+
sort?: string | undefined;
|
|
310
330
|
basket?: string | undefined;
|
|
311
331
|
isFirstPage?: boolean | undefined;
|
|
312
332
|
strictRefine?: boolean | undefined;
|
|
@@ -320,6 +340,7 @@ declare class MissingTermsComponent {
|
|
|
320
340
|
relevanceTransforms?: string | undefined;
|
|
321
341
|
removeDuplicates?: boolean | undefined;
|
|
322
342
|
queryId?: string | undefined;
|
|
343
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
323
344
|
orderBy?: string | undefined;
|
|
324
345
|
groupBy?: string | undefined;
|
|
325
346
|
neuralSearch?: boolean | undefined;
|
|
@@ -374,7 +395,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
374
395
|
sources?: _sinequa_atomic_angular.CSources;
|
|
375
396
|
features?: {
|
|
376
397
|
[key: string]: boolean | {
|
|
377
|
-
[key: string]: boolean | undefined;
|
|
398
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
378
399
|
} | undefined;
|
|
379
400
|
allowChangePassword?: boolean;
|
|
380
401
|
editablepartition?: boolean;
|
|
@@ -390,6 +411,10 @@ declare class MultiSelectionToolbarComponent {
|
|
|
390
411
|
filters?: {
|
|
391
412
|
homepage?: boolean;
|
|
392
413
|
};
|
|
414
|
+
userProfile?: {
|
|
415
|
+
enabled?: boolean;
|
|
416
|
+
customData?: string[];
|
|
417
|
+
};
|
|
393
418
|
};
|
|
394
419
|
allowAdvancedFilters?: boolean;
|
|
395
420
|
general?: {
|
|
@@ -407,7 +432,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
407
432
|
};
|
|
408
433
|
features?: {
|
|
409
434
|
[key: string]: boolean | {
|
|
410
|
-
[key: string]: boolean | undefined;
|
|
435
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
411
436
|
} | undefined;
|
|
412
437
|
allowChangePassword?: boolean;
|
|
413
438
|
editablepartition?: boolean;
|
|
@@ -423,6 +448,10 @@ declare class MultiSelectionToolbarComponent {
|
|
|
423
448
|
filters?: {
|
|
424
449
|
homepage?: boolean;
|
|
425
450
|
};
|
|
451
|
+
userProfile?: {
|
|
452
|
+
enabled?: boolean;
|
|
453
|
+
customData?: string[];
|
|
454
|
+
};
|
|
426
455
|
};
|
|
427
456
|
};
|
|
428
457
|
}>;
|
|
@@ -457,7 +486,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
457
486
|
};
|
|
458
487
|
features?: {
|
|
459
488
|
[key: string]: boolean | {
|
|
460
|
-
[key: string]: boolean | undefined;
|
|
489
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
461
490
|
} | undefined;
|
|
462
491
|
allowChangePassword?: boolean;
|
|
463
492
|
editablepartition?: boolean;
|
|
@@ -473,6 +502,10 @@ declare class MultiSelectionToolbarComponent {
|
|
|
473
502
|
filters?: {
|
|
474
503
|
homepage?: boolean;
|
|
475
504
|
};
|
|
505
|
+
userProfile?: {
|
|
506
|
+
enabled?: boolean;
|
|
507
|
+
customData?: string[];
|
|
508
|
+
};
|
|
476
509
|
};
|
|
477
510
|
} | undefined>;
|
|
478
511
|
assistants: _angular_core.Signal<{
|
|
@@ -534,7 +567,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
534
567
|
sources?: _sinequa_atomic_angular.CSources;
|
|
535
568
|
features?: {
|
|
536
569
|
[key: string]: boolean | {
|
|
537
|
-
[key: string]: boolean | undefined;
|
|
570
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
538
571
|
} | undefined;
|
|
539
572
|
allowChangePassword?: boolean;
|
|
540
573
|
editablepartition?: boolean;
|
|
@@ -550,6 +583,10 @@ declare class MultiSelectionToolbarComponent {
|
|
|
550
583
|
filters?: {
|
|
551
584
|
homepage?: boolean;
|
|
552
585
|
};
|
|
586
|
+
userProfile?: {
|
|
587
|
+
enabled?: boolean;
|
|
588
|
+
customData?: string[];
|
|
589
|
+
};
|
|
553
590
|
};
|
|
554
591
|
allowAdvancedFilters?: boolean;
|
|
555
592
|
general?: {
|
|
@@ -567,7 +604,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
567
604
|
};
|
|
568
605
|
features?: {
|
|
569
606
|
[key: string]: boolean | {
|
|
570
|
-
[key: string]: boolean | undefined;
|
|
607
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
571
608
|
} | undefined;
|
|
572
609
|
allowChangePassword?: boolean;
|
|
573
610
|
editablepartition?: boolean;
|
|
@@ -583,6 +620,10 @@ declare class MultiSelectionToolbarComponent {
|
|
|
583
620
|
filters?: {
|
|
584
621
|
homepage?: boolean;
|
|
585
622
|
};
|
|
623
|
+
userProfile?: {
|
|
624
|
+
enabled?: boolean;
|
|
625
|
+
customData?: string[];
|
|
626
|
+
};
|
|
586
627
|
};
|
|
587
628
|
};
|
|
588
629
|
};
|
|
@@ -639,7 +680,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
639
680
|
};
|
|
640
681
|
features?: {
|
|
641
682
|
[key: string]: boolean | {
|
|
642
|
-
[key: string]: boolean | undefined;
|
|
683
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
643
684
|
} | undefined;
|
|
644
685
|
allowChangePassword?: boolean;
|
|
645
686
|
editablepartition?: boolean;
|
|
@@ -655,6 +696,10 @@ declare class MultiSelectionToolbarComponent {
|
|
|
655
696
|
filters?: {
|
|
656
697
|
homepage?: boolean;
|
|
657
698
|
};
|
|
699
|
+
userProfile?: {
|
|
700
|
+
enabled?: boolean;
|
|
701
|
+
customData?: string[];
|
|
702
|
+
};
|
|
658
703
|
};
|
|
659
704
|
} | undefined;
|
|
660
705
|
readonly class: _angular_core.InputSignal<string>;
|
|
@@ -673,6 +718,13 @@ declare class MultiSelectionToolbarComponent {
|
|
|
673
718
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MultiSelectionToolbarComponent, "MultiSelectionToolbar, multi-selection-toolbar", never, { "class": { "alias": "class"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; }, { "updatedCollections": "updatedCollections"; }, never, never, true, never>;
|
|
674
719
|
}
|
|
675
720
|
|
|
721
|
+
/**
|
|
722
|
+
* Service to manage the state and behavior of a stack of drawers in the application.
|
|
723
|
+
* It provides methods to open, close, and manage drawers, as well as to handle
|
|
724
|
+
* interactions with a chat assistant drawer.
|
|
725
|
+
*
|
|
726
|
+
* @deprecated we do not use it anymore.
|
|
727
|
+
*/
|
|
676
728
|
declare class DrawerStackService {
|
|
677
729
|
readonly isOpened: _angular_core.WritableSignal<boolean>;
|
|
678
730
|
readonly toggleTopDrawerExtension$: EventEmitter<void>;
|
|
@@ -925,8 +977,12 @@ type CFeatures = {
|
|
|
925
977
|
filters?: {
|
|
926
978
|
homepage?: boolean;
|
|
927
979
|
};
|
|
980
|
+
userProfile?: {
|
|
981
|
+
enabled?: boolean;
|
|
982
|
+
customData?: string[];
|
|
983
|
+
};
|
|
928
984
|
[key: string]: boolean | {
|
|
929
|
-
[key: string]: boolean | undefined;
|
|
985
|
+
[key: string]: boolean | string | string[] | undefined;
|
|
930
986
|
} | undefined;
|
|
931
987
|
};
|
|
932
988
|
type CJsonMint = CJson & {
|
|
@@ -1043,7 +1099,7 @@ declare class AggregationsService {
|
|
|
1043
1099
|
sources?: _sinequa_atomic_angular.CSources;
|
|
1044
1100
|
features?: {
|
|
1045
1101
|
[key: string]: boolean | {
|
|
1046
|
-
[key: string]: boolean | undefined;
|
|
1102
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
1047
1103
|
} | undefined;
|
|
1048
1104
|
allowChangePassword?: boolean;
|
|
1049
1105
|
editablepartition?: boolean;
|
|
@@ -1059,6 +1115,10 @@ declare class AggregationsService {
|
|
|
1059
1115
|
filters?: {
|
|
1060
1116
|
homepage?: boolean;
|
|
1061
1117
|
};
|
|
1118
|
+
userProfile?: {
|
|
1119
|
+
enabled?: boolean;
|
|
1120
|
+
customData?: string[];
|
|
1121
|
+
};
|
|
1062
1122
|
};
|
|
1063
1123
|
allowAdvancedFilters?: boolean;
|
|
1064
1124
|
general?: {
|
|
@@ -1076,7 +1136,7 @@ declare class AggregationsService {
|
|
|
1076
1136
|
};
|
|
1077
1137
|
features?: {
|
|
1078
1138
|
[key: string]: boolean | {
|
|
1079
|
-
[key: string]: boolean | undefined;
|
|
1139
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
1080
1140
|
} | undefined;
|
|
1081
1141
|
allowChangePassword?: boolean;
|
|
1082
1142
|
editablepartition?: boolean;
|
|
@@ -1092,6 +1152,10 @@ declare class AggregationsService {
|
|
|
1092
1152
|
filters?: {
|
|
1093
1153
|
homepage?: boolean;
|
|
1094
1154
|
};
|
|
1155
|
+
userProfile?: {
|
|
1156
|
+
enabled?: boolean;
|
|
1157
|
+
customData?: string[];
|
|
1158
|
+
};
|
|
1095
1159
|
};
|
|
1096
1160
|
};
|
|
1097
1161
|
}>;
|
|
@@ -1126,7 +1190,7 @@ declare class AggregationsService {
|
|
|
1126
1190
|
};
|
|
1127
1191
|
features?: {
|
|
1128
1192
|
[key: string]: boolean | {
|
|
1129
|
-
[key: string]: boolean | undefined;
|
|
1193
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
1130
1194
|
} | undefined;
|
|
1131
1195
|
allowChangePassword?: boolean;
|
|
1132
1196
|
editablepartition?: boolean;
|
|
@@ -1142,6 +1206,10 @@ declare class AggregationsService {
|
|
|
1142
1206
|
filters?: {
|
|
1143
1207
|
homepage?: boolean;
|
|
1144
1208
|
};
|
|
1209
|
+
userProfile?: {
|
|
1210
|
+
enabled?: boolean;
|
|
1211
|
+
customData?: string[];
|
|
1212
|
+
};
|
|
1145
1213
|
};
|
|
1146
1214
|
} | undefined>;
|
|
1147
1215
|
assistants: _angular_core.Signal<{
|
|
@@ -1203,7 +1271,7 @@ declare class AggregationsService {
|
|
|
1203
1271
|
sources?: _sinequa_atomic_angular.CSources;
|
|
1204
1272
|
features?: {
|
|
1205
1273
|
[key: string]: boolean | {
|
|
1206
|
-
[key: string]: boolean | undefined;
|
|
1274
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
1207
1275
|
} | undefined;
|
|
1208
1276
|
allowChangePassword?: boolean;
|
|
1209
1277
|
editablepartition?: boolean;
|
|
@@ -1219,6 +1287,10 @@ declare class AggregationsService {
|
|
|
1219
1287
|
filters?: {
|
|
1220
1288
|
homepage?: boolean;
|
|
1221
1289
|
};
|
|
1290
|
+
userProfile?: {
|
|
1291
|
+
enabled?: boolean;
|
|
1292
|
+
customData?: string[];
|
|
1293
|
+
};
|
|
1222
1294
|
};
|
|
1223
1295
|
allowAdvancedFilters?: boolean;
|
|
1224
1296
|
general?: {
|
|
@@ -1236,7 +1308,7 @@ declare class AggregationsService {
|
|
|
1236
1308
|
};
|
|
1237
1309
|
features?: {
|
|
1238
1310
|
[key: string]: boolean | {
|
|
1239
|
-
[key: string]: boolean | undefined;
|
|
1311
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
1240
1312
|
} | undefined;
|
|
1241
1313
|
allowChangePassword?: boolean;
|
|
1242
1314
|
editablepartition?: boolean;
|
|
@@ -1252,6 +1324,10 @@ declare class AggregationsService {
|
|
|
1252
1324
|
filters?: {
|
|
1253
1325
|
homepage?: boolean;
|
|
1254
1326
|
};
|
|
1327
|
+
userProfile?: {
|
|
1328
|
+
enabled?: boolean;
|
|
1329
|
+
customData?: string[];
|
|
1330
|
+
};
|
|
1255
1331
|
};
|
|
1256
1332
|
};
|
|
1257
1333
|
};
|
|
@@ -1280,8 +1356,6 @@ declare class AggregationsService {
|
|
|
1280
1356
|
}>;
|
|
1281
1357
|
queryParamsStore: {
|
|
1282
1358
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
1283
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
1284
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
1285
1359
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
1286
1360
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
1287
1361
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -1290,6 +1364,7 @@ declare class AggregationsService {
|
|
|
1290
1364
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
1291
1365
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
1292
1366
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
1367
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
1293
1368
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
1294
1369
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
1295
1370
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -1303,6 +1378,7 @@ declare class AggregationsService {
|
|
|
1303
1378
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
1304
1379
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
1305
1380
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
1381
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
1306
1382
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
1307
1383
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
1308
1384
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -1335,8 +1411,6 @@ declare class AggregationsService {
|
|
|
1335
1411
|
getQuery: () => Query;
|
|
1336
1412
|
} & _ngrx_signals.StateSource<{
|
|
1337
1413
|
name?: string | undefined;
|
|
1338
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
1339
|
-
sort?: string | undefined;
|
|
1340
1414
|
text?: string | undefined;
|
|
1341
1415
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
1342
1416
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -1345,6 +1419,7 @@ declare class AggregationsService {
|
|
|
1345
1419
|
pageSize?: number | undefined;
|
|
1346
1420
|
tab?: string | undefined;
|
|
1347
1421
|
scope?: string | undefined;
|
|
1422
|
+
sort?: string | undefined;
|
|
1348
1423
|
basket?: string | undefined;
|
|
1349
1424
|
isFirstPage?: boolean | undefined;
|
|
1350
1425
|
strictRefine?: boolean | undefined;
|
|
@@ -1358,6 +1433,7 @@ declare class AggregationsService {
|
|
|
1358
1433
|
relevanceTransforms?: string | undefined;
|
|
1359
1434
|
removeDuplicates?: boolean | undefined;
|
|
1360
1435
|
queryId?: string | undefined;
|
|
1436
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
1361
1437
|
orderBy?: string | undefined;
|
|
1362
1438
|
groupBy?: string | undefined;
|
|
1363
1439
|
neuralSearch?: boolean | undefined;
|
|
@@ -1543,7 +1619,7 @@ declare class ApplicationService {
|
|
|
1543
1619
|
sources?: _sinequa_atomic_angular.CSources;
|
|
1544
1620
|
features?: {
|
|
1545
1621
|
[key: string]: boolean | {
|
|
1546
|
-
[key: string]: boolean | undefined;
|
|
1622
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
1547
1623
|
} | undefined;
|
|
1548
1624
|
allowChangePassword?: boolean;
|
|
1549
1625
|
editablepartition?: boolean;
|
|
@@ -1559,6 +1635,10 @@ declare class ApplicationService {
|
|
|
1559
1635
|
filters?: {
|
|
1560
1636
|
homepage?: boolean;
|
|
1561
1637
|
};
|
|
1638
|
+
userProfile?: {
|
|
1639
|
+
enabled?: boolean;
|
|
1640
|
+
customData?: string[];
|
|
1641
|
+
};
|
|
1562
1642
|
};
|
|
1563
1643
|
allowAdvancedFilters?: boolean;
|
|
1564
1644
|
general?: {
|
|
@@ -1576,7 +1656,7 @@ declare class ApplicationService {
|
|
|
1576
1656
|
};
|
|
1577
1657
|
features?: {
|
|
1578
1658
|
[key: string]: boolean | {
|
|
1579
|
-
[key: string]: boolean | undefined;
|
|
1659
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
1580
1660
|
} | undefined;
|
|
1581
1661
|
allowChangePassword?: boolean;
|
|
1582
1662
|
editablepartition?: boolean;
|
|
@@ -1592,6 +1672,10 @@ declare class ApplicationService {
|
|
|
1592
1672
|
filters?: {
|
|
1593
1673
|
homepage?: boolean;
|
|
1594
1674
|
};
|
|
1675
|
+
userProfile?: {
|
|
1676
|
+
enabled?: boolean;
|
|
1677
|
+
customData?: string[];
|
|
1678
|
+
};
|
|
1595
1679
|
};
|
|
1596
1680
|
};
|
|
1597
1681
|
}>;
|
|
@@ -1626,7 +1710,7 @@ declare class ApplicationService {
|
|
|
1626
1710
|
};
|
|
1627
1711
|
features?: {
|
|
1628
1712
|
[key: string]: boolean | {
|
|
1629
|
-
[key: string]: boolean | undefined;
|
|
1713
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
1630
1714
|
} | undefined;
|
|
1631
1715
|
allowChangePassword?: boolean;
|
|
1632
1716
|
editablepartition?: boolean;
|
|
@@ -1642,6 +1726,10 @@ declare class ApplicationService {
|
|
|
1642
1726
|
filters?: {
|
|
1643
1727
|
homepage?: boolean;
|
|
1644
1728
|
};
|
|
1729
|
+
userProfile?: {
|
|
1730
|
+
enabled?: boolean;
|
|
1731
|
+
customData?: string[];
|
|
1732
|
+
};
|
|
1645
1733
|
};
|
|
1646
1734
|
} | undefined>;
|
|
1647
1735
|
assistants: _angular_core.Signal<{
|
|
@@ -1703,7 +1791,7 @@ declare class ApplicationService {
|
|
|
1703
1791
|
sources?: _sinequa_atomic_angular.CSources;
|
|
1704
1792
|
features?: {
|
|
1705
1793
|
[key: string]: boolean | {
|
|
1706
|
-
[key: string]: boolean | undefined;
|
|
1794
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
1707
1795
|
} | undefined;
|
|
1708
1796
|
allowChangePassword?: boolean;
|
|
1709
1797
|
editablepartition?: boolean;
|
|
@@ -1719,6 +1807,10 @@ declare class ApplicationService {
|
|
|
1719
1807
|
filters?: {
|
|
1720
1808
|
homepage?: boolean;
|
|
1721
1809
|
};
|
|
1810
|
+
userProfile?: {
|
|
1811
|
+
enabled?: boolean;
|
|
1812
|
+
customData?: string[];
|
|
1813
|
+
};
|
|
1722
1814
|
};
|
|
1723
1815
|
allowAdvancedFilters?: boolean;
|
|
1724
1816
|
general?: {
|
|
@@ -1736,7 +1828,7 @@ declare class ApplicationService {
|
|
|
1736
1828
|
};
|
|
1737
1829
|
features?: {
|
|
1738
1830
|
[key: string]: boolean | {
|
|
1739
|
-
[key: string]: boolean | undefined;
|
|
1831
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
1740
1832
|
} | undefined;
|
|
1741
1833
|
allowChangePassword?: boolean;
|
|
1742
1834
|
editablepartition?: boolean;
|
|
@@ -1752,6 +1844,10 @@ declare class ApplicationService {
|
|
|
1752
1844
|
filters?: {
|
|
1753
1845
|
homepage?: boolean;
|
|
1754
1846
|
};
|
|
1847
|
+
userProfile?: {
|
|
1848
|
+
enabled?: boolean;
|
|
1849
|
+
customData?: string[];
|
|
1850
|
+
};
|
|
1755
1851
|
};
|
|
1756
1852
|
};
|
|
1757
1853
|
};
|
|
@@ -1808,6 +1904,21 @@ declare class ApplicationService {
|
|
|
1808
1904
|
* @throws {Error} If no queries are found.
|
|
1809
1905
|
*/
|
|
1810
1906
|
private createRoutes;
|
|
1907
|
+
/**
|
|
1908
|
+
* Checks the validity of the provided routes against the first query configuration.
|
|
1909
|
+
* Filters out invalid routes and adds missing routes based on the first query's tabs.
|
|
1910
|
+
*
|
|
1911
|
+
* @param routes The array of route configurations to validate.
|
|
1912
|
+
* @param firstQueryConfig The configuration of the first query, including its name and tabs.
|
|
1913
|
+
* @returns An array of valid route configurations.
|
|
1914
|
+
*
|
|
1915
|
+
* @throws Will log an error for each invalid route found.
|
|
1916
|
+
*
|
|
1917
|
+
* @remarks
|
|
1918
|
+
* A route is considered invalid if it lacks both a `wsName` and a corresponding `wsQueryTab`
|
|
1919
|
+
* in the first query's tabs. Missing routes from the first query's tabs are added to ensure
|
|
1920
|
+
* all tabs are represented in the valid routes.
|
|
1921
|
+
*/
|
|
1811
1922
|
private checkRoutesValidity;
|
|
1812
1923
|
/**
|
|
1813
1924
|
* Sets general application properties such as the document title and logo styles
|
|
@@ -1816,7 +1927,9 @@ declare class ApplicationService {
|
|
|
1816
1927
|
* - Updates the document title if a general name is provided.
|
|
1817
1928
|
* - Sets CSS custom properties for small and large logos if available in the configuration.
|
|
1818
1929
|
*
|
|
1819
|
-
* @
|
|
1930
|
+
* @remarks
|
|
1931
|
+
* This method retrieves the general configuration from the application store
|
|
1932
|
+
* and applies the relevant properties to the document.
|
|
1820
1933
|
*/
|
|
1821
1934
|
private setGeneralApp;
|
|
1822
1935
|
/**
|
|
@@ -1863,7 +1976,7 @@ declare class AuditService {
|
|
|
1863
1976
|
sources?: _sinequa_atomic_angular.CSources;
|
|
1864
1977
|
features?: {
|
|
1865
1978
|
[key: string]: boolean | {
|
|
1866
|
-
[key: string]: boolean | undefined;
|
|
1979
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
1867
1980
|
} | undefined;
|
|
1868
1981
|
allowChangePassword?: boolean;
|
|
1869
1982
|
editablepartition?: boolean;
|
|
@@ -1879,6 +1992,10 @@ declare class AuditService {
|
|
|
1879
1992
|
filters?: {
|
|
1880
1993
|
homepage?: boolean;
|
|
1881
1994
|
};
|
|
1995
|
+
userProfile?: {
|
|
1996
|
+
enabled?: boolean;
|
|
1997
|
+
customData?: string[];
|
|
1998
|
+
};
|
|
1882
1999
|
};
|
|
1883
2000
|
allowAdvancedFilters?: boolean;
|
|
1884
2001
|
general?: {
|
|
@@ -1896,7 +2013,7 @@ declare class AuditService {
|
|
|
1896
2013
|
};
|
|
1897
2014
|
features?: {
|
|
1898
2015
|
[key: string]: boolean | {
|
|
1899
|
-
[key: string]: boolean | undefined;
|
|
2016
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
1900
2017
|
} | undefined;
|
|
1901
2018
|
allowChangePassword?: boolean;
|
|
1902
2019
|
editablepartition?: boolean;
|
|
@@ -1912,6 +2029,10 @@ declare class AuditService {
|
|
|
1912
2029
|
filters?: {
|
|
1913
2030
|
homepage?: boolean;
|
|
1914
2031
|
};
|
|
2032
|
+
userProfile?: {
|
|
2033
|
+
enabled?: boolean;
|
|
2034
|
+
customData?: string[];
|
|
2035
|
+
};
|
|
1915
2036
|
};
|
|
1916
2037
|
};
|
|
1917
2038
|
}>;
|
|
@@ -1946,7 +2067,7 @@ declare class AuditService {
|
|
|
1946
2067
|
};
|
|
1947
2068
|
features?: {
|
|
1948
2069
|
[key: string]: boolean | {
|
|
1949
|
-
[key: string]: boolean | undefined;
|
|
2070
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
1950
2071
|
} | undefined;
|
|
1951
2072
|
allowChangePassword?: boolean;
|
|
1952
2073
|
editablepartition?: boolean;
|
|
@@ -1962,6 +2083,10 @@ declare class AuditService {
|
|
|
1962
2083
|
filters?: {
|
|
1963
2084
|
homepage?: boolean;
|
|
1964
2085
|
};
|
|
2086
|
+
userProfile?: {
|
|
2087
|
+
enabled?: boolean;
|
|
2088
|
+
customData?: string[];
|
|
2089
|
+
};
|
|
1965
2090
|
};
|
|
1966
2091
|
} | undefined>;
|
|
1967
2092
|
assistants: _angular_core.Signal<{
|
|
@@ -2023,7 +2148,7 @@ declare class AuditService {
|
|
|
2023
2148
|
sources?: _sinequa_atomic_angular.CSources;
|
|
2024
2149
|
features?: {
|
|
2025
2150
|
[key: string]: boolean | {
|
|
2026
|
-
[key: string]: boolean | undefined;
|
|
2151
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
2027
2152
|
} | undefined;
|
|
2028
2153
|
allowChangePassword?: boolean;
|
|
2029
2154
|
editablepartition?: boolean;
|
|
@@ -2039,6 +2164,10 @@ declare class AuditService {
|
|
|
2039
2164
|
filters?: {
|
|
2040
2165
|
homepage?: boolean;
|
|
2041
2166
|
};
|
|
2167
|
+
userProfile?: {
|
|
2168
|
+
enabled?: boolean;
|
|
2169
|
+
customData?: string[];
|
|
2170
|
+
};
|
|
2042
2171
|
};
|
|
2043
2172
|
allowAdvancedFilters?: boolean;
|
|
2044
2173
|
general?: {
|
|
@@ -2056,7 +2185,7 @@ declare class AuditService {
|
|
|
2056
2185
|
};
|
|
2057
2186
|
features?: {
|
|
2058
2187
|
[key: string]: boolean | {
|
|
2059
|
-
[key: string]: boolean | undefined;
|
|
2188
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
2060
2189
|
} | undefined;
|
|
2061
2190
|
allowChangePassword?: boolean;
|
|
2062
2191
|
editablepartition?: boolean;
|
|
@@ -2072,6 +2201,10 @@ declare class AuditService {
|
|
|
2072
2201
|
filters?: {
|
|
2073
2202
|
homepage?: boolean;
|
|
2074
2203
|
};
|
|
2204
|
+
userProfile?: {
|
|
2205
|
+
enabled?: boolean;
|
|
2206
|
+
customData?: string[];
|
|
2207
|
+
};
|
|
2075
2208
|
};
|
|
2076
2209
|
};
|
|
2077
2210
|
};
|
|
@@ -2208,7 +2341,7 @@ declare class AutocompleteService {
|
|
|
2208
2341
|
sources?: _sinequa_atomic_angular.CSources;
|
|
2209
2342
|
features?: {
|
|
2210
2343
|
[key: string]: boolean | {
|
|
2211
|
-
[key: string]: boolean | undefined;
|
|
2344
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
2212
2345
|
} | undefined;
|
|
2213
2346
|
allowChangePassword?: boolean;
|
|
2214
2347
|
editablepartition?: boolean;
|
|
@@ -2224,6 +2357,10 @@ declare class AutocompleteService {
|
|
|
2224
2357
|
filters?: {
|
|
2225
2358
|
homepage?: boolean;
|
|
2226
2359
|
};
|
|
2360
|
+
userProfile?: {
|
|
2361
|
+
enabled?: boolean;
|
|
2362
|
+
customData?: string[];
|
|
2363
|
+
};
|
|
2227
2364
|
};
|
|
2228
2365
|
allowAdvancedFilters?: boolean;
|
|
2229
2366
|
general?: {
|
|
@@ -2241,7 +2378,7 @@ declare class AutocompleteService {
|
|
|
2241
2378
|
};
|
|
2242
2379
|
features?: {
|
|
2243
2380
|
[key: string]: boolean | {
|
|
2244
|
-
[key: string]: boolean | undefined;
|
|
2381
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
2245
2382
|
} | undefined;
|
|
2246
2383
|
allowChangePassword?: boolean;
|
|
2247
2384
|
editablepartition?: boolean;
|
|
@@ -2257,6 +2394,10 @@ declare class AutocompleteService {
|
|
|
2257
2394
|
filters?: {
|
|
2258
2395
|
homepage?: boolean;
|
|
2259
2396
|
};
|
|
2397
|
+
userProfile?: {
|
|
2398
|
+
enabled?: boolean;
|
|
2399
|
+
customData?: string[];
|
|
2400
|
+
};
|
|
2260
2401
|
};
|
|
2261
2402
|
};
|
|
2262
2403
|
}>;
|
|
@@ -2291,7 +2432,7 @@ declare class AutocompleteService {
|
|
|
2291
2432
|
};
|
|
2292
2433
|
features?: {
|
|
2293
2434
|
[key: string]: boolean | {
|
|
2294
|
-
[key: string]: boolean | undefined;
|
|
2435
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
2295
2436
|
} | undefined;
|
|
2296
2437
|
allowChangePassword?: boolean;
|
|
2297
2438
|
editablepartition?: boolean;
|
|
@@ -2307,6 +2448,10 @@ declare class AutocompleteService {
|
|
|
2307
2448
|
filters?: {
|
|
2308
2449
|
homepage?: boolean;
|
|
2309
2450
|
};
|
|
2451
|
+
userProfile?: {
|
|
2452
|
+
enabled?: boolean;
|
|
2453
|
+
customData?: string[];
|
|
2454
|
+
};
|
|
2310
2455
|
};
|
|
2311
2456
|
} | undefined>;
|
|
2312
2457
|
assistants: _angular_core.Signal<{
|
|
@@ -2368,7 +2513,7 @@ declare class AutocompleteService {
|
|
|
2368
2513
|
sources?: _sinequa_atomic_angular.CSources;
|
|
2369
2514
|
features?: {
|
|
2370
2515
|
[key: string]: boolean | {
|
|
2371
|
-
[key: string]: boolean | undefined;
|
|
2516
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
2372
2517
|
} | undefined;
|
|
2373
2518
|
allowChangePassword?: boolean;
|
|
2374
2519
|
editablepartition?: boolean;
|
|
@@ -2384,6 +2529,10 @@ declare class AutocompleteService {
|
|
|
2384
2529
|
filters?: {
|
|
2385
2530
|
homepage?: boolean;
|
|
2386
2531
|
};
|
|
2532
|
+
userProfile?: {
|
|
2533
|
+
enabled?: boolean;
|
|
2534
|
+
customData?: string[];
|
|
2535
|
+
};
|
|
2387
2536
|
};
|
|
2388
2537
|
allowAdvancedFilters?: boolean;
|
|
2389
2538
|
general?: {
|
|
@@ -2401,7 +2550,7 @@ declare class AutocompleteService {
|
|
|
2401
2550
|
};
|
|
2402
2551
|
features?: {
|
|
2403
2552
|
[key: string]: boolean | {
|
|
2404
|
-
[key: string]: boolean | undefined;
|
|
2553
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
2405
2554
|
} | undefined;
|
|
2406
2555
|
allowChangePassword?: boolean;
|
|
2407
2556
|
editablepartition?: boolean;
|
|
@@ -2417,6 +2566,10 @@ declare class AutocompleteService {
|
|
|
2417
2566
|
filters?: {
|
|
2418
2567
|
homepage?: boolean;
|
|
2419
2568
|
};
|
|
2569
|
+
userProfile?: {
|
|
2570
|
+
enabled?: boolean;
|
|
2571
|
+
customData?: string[];
|
|
2572
|
+
};
|
|
2420
2573
|
};
|
|
2421
2574
|
};
|
|
2422
2575
|
};
|
|
@@ -2625,7 +2778,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
2625
2778
|
sources?: CSources;
|
|
2626
2779
|
features?: {
|
|
2627
2780
|
[key: string]: boolean | {
|
|
2628
|
-
[key: string]: boolean | undefined;
|
|
2781
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
2629
2782
|
} | undefined;
|
|
2630
2783
|
allowChangePassword?: boolean;
|
|
2631
2784
|
editablepartition?: boolean;
|
|
@@ -2641,6 +2794,10 @@ declare const AppStore: _angular_core.Type<{
|
|
|
2641
2794
|
filters?: {
|
|
2642
2795
|
homepage?: boolean;
|
|
2643
2796
|
};
|
|
2797
|
+
userProfile?: {
|
|
2798
|
+
enabled?: boolean;
|
|
2799
|
+
customData?: string[];
|
|
2800
|
+
};
|
|
2644
2801
|
};
|
|
2645
2802
|
allowAdvancedFilters?: boolean;
|
|
2646
2803
|
general?: {
|
|
@@ -2649,7 +2806,22 @@ declare const AppStore: _angular_core.Type<{
|
|
|
2649
2806
|
alt?: string;
|
|
2650
2807
|
light?: {
|
|
2651
2808
|
small?: string;
|
|
2652
|
-
large
|
|
2809
|
+
large? /**
|
|
2810
|
+
* Enhances the application store with various features and methods.
|
|
2811
|
+
*
|
|
2812
|
+
* This function integrates state management, computed properties, and methods
|
|
2813
|
+
* to interact with the CCApp state, including initialization, updates,
|
|
2814
|
+
* and retrieval of specific data such as web services, queries, and customization JSONs.
|
|
2815
|
+
*
|
|
2816
|
+
* Features:
|
|
2817
|
+
* - State management with initial data.
|
|
2818
|
+
* - Computed properties for customization JSON, sources, and filters.
|
|
2819
|
+
* - Methods for initializing and updating the application state.
|
|
2820
|
+
* - Methods for retrieving web services, labels, queries, and customization JSONs.
|
|
2821
|
+
* - Methods for retrieving aggregation icons and customization items.
|
|
2822
|
+
*
|
|
2823
|
+
* @returns The enhanced application store with additional features and methods.
|
|
2824
|
+
*/: string;
|
|
2653
2825
|
};
|
|
2654
2826
|
dark?: {
|
|
2655
2827
|
small?: string;
|
|
@@ -2658,7 +2830,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
2658
2830
|
};
|
|
2659
2831
|
features?: {
|
|
2660
2832
|
[key: string]: boolean | {
|
|
2661
|
-
[key: string]: boolean | undefined;
|
|
2833
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
2662
2834
|
} | undefined;
|
|
2663
2835
|
allowChangePassword?: boolean;
|
|
2664
2836
|
editablepartition?: boolean;
|
|
@@ -2674,6 +2846,10 @@ declare const AppStore: _angular_core.Type<{
|
|
|
2674
2846
|
filters?: {
|
|
2675
2847
|
homepage?: boolean;
|
|
2676
2848
|
};
|
|
2849
|
+
userProfile?: {
|
|
2850
|
+
enabled?: boolean;
|
|
2851
|
+
customData?: string[];
|
|
2852
|
+
};
|
|
2677
2853
|
};
|
|
2678
2854
|
};
|
|
2679
2855
|
}>;
|
|
@@ -2699,7 +2875,22 @@ declare const AppStore: _angular_core.Type<{
|
|
|
2699
2875
|
alt?: string;
|
|
2700
2876
|
light?: {
|
|
2701
2877
|
small?: string;
|
|
2702
|
-
large
|
|
2878
|
+
large? /**
|
|
2879
|
+
* Enhances the application store with various features and methods.
|
|
2880
|
+
*
|
|
2881
|
+
* This function integrates state management, computed properties, and methods
|
|
2882
|
+
* to interact with the CCApp state, including initialization, updates,
|
|
2883
|
+
* and retrieval of specific data such as web services, queries, and customization JSONs.
|
|
2884
|
+
*
|
|
2885
|
+
* Features:
|
|
2886
|
+
* - State management with initial data.
|
|
2887
|
+
* - Computed properties for customization JSON, sources, and filters.
|
|
2888
|
+
* - Methods for initializing and updating the application state.
|
|
2889
|
+
* - Methods for retrieving web services, labels, queries, and customization JSONs.
|
|
2890
|
+
* - Methods for retrieving aggregation icons and customization items.
|
|
2891
|
+
*
|
|
2892
|
+
* @returns The enhanced application store with additional features and methods.
|
|
2893
|
+
*/: string;
|
|
2703
2894
|
};
|
|
2704
2895
|
dark?: {
|
|
2705
2896
|
small?: string;
|
|
@@ -2708,7 +2899,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
2708
2899
|
};
|
|
2709
2900
|
features?: {
|
|
2710
2901
|
[key: string]: boolean | {
|
|
2711
|
-
[key: string]: boolean | undefined;
|
|
2902
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
2712
2903
|
} | undefined;
|
|
2713
2904
|
allowChangePassword?: boolean;
|
|
2714
2905
|
editablepartition?: boolean;
|
|
@@ -2724,6 +2915,10 @@ declare const AppStore: _angular_core.Type<{
|
|
|
2724
2915
|
filters?: {
|
|
2725
2916
|
homepage?: boolean;
|
|
2726
2917
|
};
|
|
2918
|
+
userProfile?: {
|
|
2919
|
+
enabled?: boolean;
|
|
2920
|
+
customData?: string[];
|
|
2921
|
+
};
|
|
2727
2922
|
};
|
|
2728
2923
|
} | undefined>;
|
|
2729
2924
|
assistants: _angular_core.Signal<AssistantConfiguration>;
|
|
@@ -2783,7 +2978,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
2783
2978
|
sources?: CSources;
|
|
2784
2979
|
features?: {
|
|
2785
2980
|
[key: string]: boolean | {
|
|
2786
|
-
[key: string]: boolean | undefined;
|
|
2981
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
2787
2982
|
} | undefined;
|
|
2788
2983
|
allowChangePassword?: boolean;
|
|
2789
2984
|
editablepartition?: boolean;
|
|
@@ -2799,6 +2994,10 @@ declare const AppStore: _angular_core.Type<{
|
|
|
2799
2994
|
filters?: {
|
|
2800
2995
|
homepage?: boolean;
|
|
2801
2996
|
};
|
|
2997
|
+
userProfile?: {
|
|
2998
|
+
enabled?: boolean;
|
|
2999
|
+
customData?: string[];
|
|
3000
|
+
};
|
|
2802
3001
|
};
|
|
2803
3002
|
allowAdvancedFilters?: boolean;
|
|
2804
3003
|
general?: {
|
|
@@ -2807,7 +3006,22 @@ declare const AppStore: _angular_core.Type<{
|
|
|
2807
3006
|
alt?: string;
|
|
2808
3007
|
light?: {
|
|
2809
3008
|
small?: string;
|
|
2810
|
-
large
|
|
3009
|
+
large? /**
|
|
3010
|
+
* Enhances the application store with various features and methods.
|
|
3011
|
+
*
|
|
3012
|
+
* This function integrates state management, computed properties, and methods
|
|
3013
|
+
* to interact with the CCApp state, including initialization, updates,
|
|
3014
|
+
* and retrieval of specific data such as web services, queries, and customization JSONs.
|
|
3015
|
+
*
|
|
3016
|
+
* Features:
|
|
3017
|
+
* - State management with initial data.
|
|
3018
|
+
* - Computed properties for customization JSON, sources, and filters.
|
|
3019
|
+
* - Methods for initializing and updating the application state.
|
|
3020
|
+
* - Methods for retrieving web services, labels, queries, and customization JSONs.
|
|
3021
|
+
* - Methods for retrieving aggregation icons and customization items.
|
|
3022
|
+
*
|
|
3023
|
+
* @returns The enhanced application store with additional features and methods.
|
|
3024
|
+
*/: string;
|
|
2811
3025
|
};
|
|
2812
3026
|
dark?: {
|
|
2813
3027
|
small?: string;
|
|
@@ -2816,7 +3030,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
2816
3030
|
};
|
|
2817
3031
|
features?: {
|
|
2818
3032
|
[key: string]: boolean | {
|
|
2819
|
-
[key: string]: boolean | undefined;
|
|
3033
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
2820
3034
|
} | undefined;
|
|
2821
3035
|
allowChangePassword?: boolean;
|
|
2822
3036
|
editablepartition?: boolean;
|
|
@@ -2832,6 +3046,10 @@ declare const AppStore: _angular_core.Type<{
|
|
|
2832
3046
|
filters?: {
|
|
2833
3047
|
homepage?: boolean;
|
|
2834
3048
|
};
|
|
3049
|
+
userProfile?: {
|
|
3050
|
+
enabled?: boolean;
|
|
3051
|
+
customData?: string[];
|
|
3052
|
+
};
|
|
2835
3053
|
};
|
|
2836
3054
|
};
|
|
2837
3055
|
};
|
|
@@ -2883,7 +3101,7 @@ declare function withAppFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signa
|
|
|
2883
3101
|
sources?: CSources;
|
|
2884
3102
|
features?: {
|
|
2885
3103
|
[key: string]: boolean | {
|
|
2886
|
-
[key: string]: boolean | undefined;
|
|
3104
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
2887
3105
|
} | undefined;
|
|
2888
3106
|
allowChangePassword?: boolean;
|
|
2889
3107
|
editablepartition?: boolean;
|
|
@@ -2899,6 +3117,10 @@ declare function withAppFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signa
|
|
|
2899
3117
|
filters?: {
|
|
2900
3118
|
homepage?: boolean;
|
|
2901
3119
|
};
|
|
3120
|
+
userProfile?: {
|
|
3121
|
+
enabled?: boolean;
|
|
3122
|
+
customData?: string[];
|
|
3123
|
+
};
|
|
2902
3124
|
};
|
|
2903
3125
|
allowAdvancedFilters?: boolean;
|
|
2904
3126
|
general?: {
|
|
@@ -2907,7 +3129,22 @@ declare function withAppFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signa
|
|
|
2907
3129
|
alt?: string;
|
|
2908
3130
|
light?: {
|
|
2909
3131
|
small?: string;
|
|
2910
|
-
large
|
|
3132
|
+
large? /**
|
|
3133
|
+
* Enhances the application store with various features and methods.
|
|
3134
|
+
*
|
|
3135
|
+
* This function integrates state management, computed properties, and methods
|
|
3136
|
+
* to interact with the CCApp state, including initialization, updates,
|
|
3137
|
+
* and retrieval of specific data such as web services, queries, and customization JSONs.
|
|
3138
|
+
*
|
|
3139
|
+
* Features:
|
|
3140
|
+
* - State management with initial data.
|
|
3141
|
+
* - Computed properties for customization JSON, sources, and filters.
|
|
3142
|
+
* - Methods for initializing and updating the application state.
|
|
3143
|
+
* - Methods for retrieving web services, labels, queries, and customization JSONs.
|
|
3144
|
+
* - Methods for retrieving aggregation icons and customization items.
|
|
3145
|
+
*
|
|
3146
|
+
* @returns The enhanced application store with additional features and methods.
|
|
3147
|
+
*/: string;
|
|
2911
3148
|
};
|
|
2912
3149
|
dark?: {
|
|
2913
3150
|
small?: string;
|
|
@@ -2916,7 +3153,7 @@ declare function withAppFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signa
|
|
|
2916
3153
|
};
|
|
2917
3154
|
features?: {
|
|
2918
3155
|
[key: string]: boolean | {
|
|
2919
|
-
[key: string]: boolean | undefined;
|
|
3156
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
2920
3157
|
} | undefined;
|
|
2921
3158
|
allowChangePassword?: boolean;
|
|
2922
3159
|
editablepartition?: boolean;
|
|
@@ -2932,6 +3169,10 @@ declare function withAppFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signa
|
|
|
2932
3169
|
filters?: {
|
|
2933
3170
|
homepage?: boolean;
|
|
2934
3171
|
};
|
|
3172
|
+
userProfile?: {
|
|
3173
|
+
enabled?: boolean;
|
|
3174
|
+
customData?: string[];
|
|
3175
|
+
};
|
|
2935
3176
|
};
|
|
2936
3177
|
};
|
|
2937
3178
|
};
|
|
@@ -2959,7 +3200,22 @@ declare function withAppFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signa
|
|
|
2959
3200
|
alt?: string;
|
|
2960
3201
|
light?: {
|
|
2961
3202
|
small?: string;
|
|
2962
|
-
large
|
|
3203
|
+
large? /**
|
|
3204
|
+
* Enhances the application store with various features and methods.
|
|
3205
|
+
*
|
|
3206
|
+
* This function integrates state management, computed properties, and methods
|
|
3207
|
+
* to interact with the CCApp state, including initialization, updates,
|
|
3208
|
+
* and retrieval of specific data such as web services, queries, and customization JSONs.
|
|
3209
|
+
*
|
|
3210
|
+
* Features:
|
|
3211
|
+
* - State management with initial data.
|
|
3212
|
+
* - Computed properties for customization JSON, sources, and filters.
|
|
3213
|
+
* - Methods for initializing and updating the application state.
|
|
3214
|
+
* - Methods for retrieving web services, labels, queries, and customization JSONs.
|
|
3215
|
+
* - Methods for retrieving aggregation icons and customization items.
|
|
3216
|
+
*
|
|
3217
|
+
* @returns The enhanced application store with additional features and methods.
|
|
3218
|
+
*/: string;
|
|
2963
3219
|
};
|
|
2964
3220
|
dark?: {
|
|
2965
3221
|
small?: string;
|
|
@@ -2968,7 +3224,7 @@ declare function withAppFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signa
|
|
|
2968
3224
|
};
|
|
2969
3225
|
features?: {
|
|
2970
3226
|
[key: string]: boolean | {
|
|
2971
|
-
[key: string]: boolean | undefined;
|
|
3227
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
2972
3228
|
} | undefined;
|
|
2973
3229
|
allowChangePassword?: boolean;
|
|
2974
3230
|
editablepartition?: boolean;
|
|
@@ -2984,6 +3240,10 @@ declare function withAppFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signa
|
|
|
2984
3240
|
filters?: {
|
|
2985
3241
|
homepage?: boolean;
|
|
2986
3242
|
};
|
|
3243
|
+
userProfile?: {
|
|
3244
|
+
enabled?: boolean;
|
|
3245
|
+
customData?: string[];
|
|
3246
|
+
};
|
|
2987
3247
|
};
|
|
2988
3248
|
} | undefined>;
|
|
2989
3249
|
assistants: _angular_core.Signal<AssistantConfiguration>;
|
|
@@ -3148,8 +3408,6 @@ type QueryParams = {
|
|
|
3148
3408
|
};
|
|
3149
3409
|
declare const QueryParamsStore: _angular_core.Type<{
|
|
3150
3410
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
3151
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
3152
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
3153
3411
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
3154
3412
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
3155
3413
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -3158,6 +3416,7 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
3158
3416
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
3159
3417
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
3160
3418
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
3419
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
3161
3420
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
3162
3421
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
3163
3422
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -3171,6 +3430,7 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
3171
3430
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
3172
3431
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
3173
3432
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
3433
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
3174
3434
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
3175
3435
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
3176
3436
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -3195,8 +3455,6 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
3195
3455
|
getQuery: () => _sinequa_atomic.Query;
|
|
3196
3456
|
} & _ngrx_signals.StateSource<{
|
|
3197
3457
|
name?: string | undefined;
|
|
3198
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
3199
|
-
sort?: string | undefined;
|
|
3200
3458
|
text?: string | undefined;
|
|
3201
3459
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
3202
3460
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -3205,6 +3463,7 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
3205
3463
|
pageSize?: number | undefined;
|
|
3206
3464
|
tab?: string | undefined;
|
|
3207
3465
|
scope?: string | undefined;
|
|
3466
|
+
sort?: string | undefined;
|
|
3208
3467
|
basket?: string | undefined;
|
|
3209
3468
|
isFirstPage?: boolean | undefined;
|
|
3210
3469
|
strictRefine?: boolean | undefined;
|
|
@@ -3218,6 +3477,7 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
3218
3477
|
relevanceTransforms?: string | undefined;
|
|
3219
3478
|
removeDuplicates?: boolean | undefined;
|
|
3220
3479
|
queryId?: string | undefined;
|
|
3480
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
3221
3481
|
orderBy?: string | undefined;
|
|
3222
3482
|
groupBy?: string | undefined;
|
|
3223
3483
|
neuralSearch?: boolean | undefined;
|
|
@@ -3228,8 +3488,6 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
3228
3488
|
declare function withQueryParamsFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signals.EmptyFeatureResult, {
|
|
3229
3489
|
state: {
|
|
3230
3490
|
name?: string | undefined;
|
|
3231
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
3232
|
-
sort?: string | undefined;
|
|
3233
3491
|
text?: string | undefined;
|
|
3234
3492
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
3235
3493
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -3238,6 +3496,7 @@ declare function withQueryParamsFeatures(): _ngrx_signals.SignalStoreFeature<_ng
|
|
|
3238
3496
|
pageSize?: number | undefined;
|
|
3239
3497
|
tab?: string | undefined;
|
|
3240
3498
|
scope?: string | undefined;
|
|
3499
|
+
sort?: string | undefined;
|
|
3241
3500
|
basket?: string | undefined;
|
|
3242
3501
|
isFirstPage?: boolean | undefined;
|
|
3243
3502
|
strictRefine?: boolean | undefined;
|
|
@@ -3251,6 +3510,7 @@ declare function withQueryParamsFeatures(): _ngrx_signals.SignalStoreFeature<_ng
|
|
|
3251
3510
|
relevanceTransforms?: string | undefined;
|
|
3252
3511
|
removeDuplicates?: boolean | undefined;
|
|
3253
3512
|
queryId?: string | undefined;
|
|
3513
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
3254
3514
|
orderBy?: string | undefined;
|
|
3255
3515
|
groupBy?: string | undefined;
|
|
3256
3516
|
neuralSearch?: boolean | undefined;
|
|
@@ -3806,8 +4066,6 @@ declare class PreviewService {
|
|
|
3806
4066
|
}>;
|
|
3807
4067
|
protected readonly queryParamsStore: {
|
|
3808
4068
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
3809
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
3810
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
3811
4069
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
3812
4070
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
3813
4071
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -3816,6 +4074,7 @@ declare class PreviewService {
|
|
|
3816
4074
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
3817
4075
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
3818
4076
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
4077
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
3819
4078
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
3820
4079
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
3821
4080
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -3829,6 +4088,7 @@ declare class PreviewService {
|
|
|
3829
4088
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
3830
4089
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
3831
4090
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
4091
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
3832
4092
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
3833
4093
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
3834
4094
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -3861,8 +4121,6 @@ declare class PreviewService {
|
|
|
3861
4121
|
getQuery: () => Query;
|
|
3862
4122
|
} & _ngrx_signals.StateSource<{
|
|
3863
4123
|
name?: string | undefined;
|
|
3864
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
3865
|
-
sort?: string | undefined;
|
|
3866
4124
|
text?: string | undefined;
|
|
3867
4125
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
3868
4126
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -3871,6 +4129,7 @@ declare class PreviewService {
|
|
|
3871
4129
|
pageSize?: number | undefined;
|
|
3872
4130
|
tab?: string | undefined;
|
|
3873
4131
|
scope?: string | undefined;
|
|
4132
|
+
sort?: string | undefined;
|
|
3874
4133
|
basket?: string | undefined;
|
|
3875
4134
|
isFirstPage?: boolean | undefined;
|
|
3876
4135
|
strictRefine?: boolean | undefined;
|
|
@@ -3884,6 +4143,7 @@ declare class PreviewService {
|
|
|
3884
4143
|
relevanceTransforms?: string | undefined;
|
|
3885
4144
|
removeDuplicates?: boolean | undefined;
|
|
3886
4145
|
queryId?: string | undefined;
|
|
4146
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
3887
4147
|
orderBy?: string | undefined;
|
|
3888
4148
|
groupBy?: string | undefined;
|
|
3889
4149
|
neuralSearch?: boolean | undefined;
|
|
@@ -3921,7 +4181,7 @@ declare class PreviewService {
|
|
|
3921
4181
|
sources?: _sinequa_atomic_angular.CSources;
|
|
3922
4182
|
features?: {
|
|
3923
4183
|
[key: string]: boolean | {
|
|
3924
|
-
[key: string]: boolean | undefined;
|
|
4184
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
3925
4185
|
} | undefined;
|
|
3926
4186
|
allowChangePassword?: boolean;
|
|
3927
4187
|
editablepartition?: boolean;
|
|
@@ -3937,6 +4197,10 @@ declare class PreviewService {
|
|
|
3937
4197
|
filters?: {
|
|
3938
4198
|
homepage?: boolean;
|
|
3939
4199
|
};
|
|
4200
|
+
userProfile?: {
|
|
4201
|
+
enabled?: boolean;
|
|
4202
|
+
customData?: string[];
|
|
4203
|
+
};
|
|
3940
4204
|
};
|
|
3941
4205
|
allowAdvancedFilters?: boolean;
|
|
3942
4206
|
general?: {
|
|
@@ -3954,7 +4218,7 @@ declare class PreviewService {
|
|
|
3954
4218
|
};
|
|
3955
4219
|
features?: {
|
|
3956
4220
|
[key: string]: boolean | {
|
|
3957
|
-
[key: string]: boolean | undefined;
|
|
4221
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
3958
4222
|
} | undefined;
|
|
3959
4223
|
allowChangePassword?: boolean;
|
|
3960
4224
|
editablepartition?: boolean;
|
|
@@ -3970,6 +4234,10 @@ declare class PreviewService {
|
|
|
3970
4234
|
filters?: {
|
|
3971
4235
|
homepage?: boolean;
|
|
3972
4236
|
};
|
|
4237
|
+
userProfile?: {
|
|
4238
|
+
enabled?: boolean;
|
|
4239
|
+
customData?: string[];
|
|
4240
|
+
};
|
|
3973
4241
|
};
|
|
3974
4242
|
};
|
|
3975
4243
|
}>;
|
|
@@ -4004,7 +4272,7 @@ declare class PreviewService {
|
|
|
4004
4272
|
};
|
|
4005
4273
|
features?: {
|
|
4006
4274
|
[key: string]: boolean | {
|
|
4007
|
-
[key: string]: boolean | undefined;
|
|
4275
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
4008
4276
|
} | undefined;
|
|
4009
4277
|
allowChangePassword?: boolean;
|
|
4010
4278
|
editablepartition?: boolean;
|
|
@@ -4020,6 +4288,10 @@ declare class PreviewService {
|
|
|
4020
4288
|
filters?: {
|
|
4021
4289
|
homepage?: boolean;
|
|
4022
4290
|
};
|
|
4291
|
+
userProfile?: {
|
|
4292
|
+
enabled?: boolean;
|
|
4293
|
+
customData?: string[];
|
|
4294
|
+
};
|
|
4023
4295
|
};
|
|
4024
4296
|
} | undefined>;
|
|
4025
4297
|
assistants: _angular_core.Signal<{
|
|
@@ -4081,7 +4353,7 @@ declare class PreviewService {
|
|
|
4081
4353
|
sources?: _sinequa_atomic_angular.CSources;
|
|
4082
4354
|
features?: {
|
|
4083
4355
|
[key: string]: boolean | {
|
|
4084
|
-
[key: string]: boolean | undefined;
|
|
4356
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
4085
4357
|
} | undefined;
|
|
4086
4358
|
allowChangePassword?: boolean;
|
|
4087
4359
|
editablepartition?: boolean;
|
|
@@ -4097,6 +4369,10 @@ declare class PreviewService {
|
|
|
4097
4369
|
filters?: {
|
|
4098
4370
|
homepage?: boolean;
|
|
4099
4371
|
};
|
|
4372
|
+
userProfile?: {
|
|
4373
|
+
enabled?: boolean;
|
|
4374
|
+
customData?: string[];
|
|
4375
|
+
};
|
|
4100
4376
|
};
|
|
4101
4377
|
allowAdvancedFilters?: boolean;
|
|
4102
4378
|
general?: {
|
|
@@ -4114,7 +4390,7 @@ declare class PreviewService {
|
|
|
4114
4390
|
};
|
|
4115
4391
|
features?: {
|
|
4116
4392
|
[key: string]: boolean | {
|
|
4117
|
-
[key: string]: boolean | undefined;
|
|
4393
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
4118
4394
|
} | undefined;
|
|
4119
4395
|
allowChangePassword?: boolean;
|
|
4120
4396
|
editablepartition?: boolean;
|
|
@@ -4130,6 +4406,10 @@ declare class PreviewService {
|
|
|
4130
4406
|
filters?: {
|
|
4131
4407
|
homepage?: boolean;
|
|
4132
4408
|
};
|
|
4409
|
+
userProfile?: {
|
|
4410
|
+
enabled?: boolean;
|
|
4411
|
+
customData?: string[];
|
|
4412
|
+
};
|
|
4133
4413
|
};
|
|
4134
4414
|
};
|
|
4135
4415
|
};
|
|
@@ -4372,8 +4652,6 @@ declare class SavedSearchesService {
|
|
|
4372
4652
|
}>;
|
|
4373
4653
|
protected readonly queryParamsStore: {
|
|
4374
4654
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
4375
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4376
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4377
4655
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4378
4656
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
4379
4657
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -4382,6 +4660,7 @@ declare class SavedSearchesService {
|
|
|
4382
4660
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
4383
4661
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
4384
4662
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
4663
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4385
4664
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
4386
4665
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4387
4666
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4395,6 +4674,7 @@ declare class SavedSearchesService {
|
|
|
4395
4674
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
4396
4675
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4397
4676
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
4677
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4398
4678
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4399
4679
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4400
4680
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4427,8 +4707,6 @@ declare class SavedSearchesService {
|
|
|
4427
4707
|
getQuery: () => _sinequa_atomic.Query;
|
|
4428
4708
|
} & _ngrx_signals.StateSource<{
|
|
4429
4709
|
name?: string | undefined;
|
|
4430
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4431
|
-
sort?: string | undefined;
|
|
4432
4710
|
text?: string | undefined;
|
|
4433
4711
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
4434
4712
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -4437,6 +4715,7 @@ declare class SavedSearchesService {
|
|
|
4437
4715
|
pageSize?: number | undefined;
|
|
4438
4716
|
tab?: string | undefined;
|
|
4439
4717
|
scope?: string | undefined;
|
|
4718
|
+
sort?: string | undefined;
|
|
4440
4719
|
basket?: string | undefined;
|
|
4441
4720
|
isFirstPage?: boolean | undefined;
|
|
4442
4721
|
strictRefine?: boolean | undefined;
|
|
@@ -4450,6 +4729,7 @@ declare class SavedSearchesService {
|
|
|
4450
4729
|
relevanceTransforms?: string | undefined;
|
|
4451
4730
|
removeDuplicates?: boolean | undefined;
|
|
4452
4731
|
queryId?: string | undefined;
|
|
4732
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4453
4733
|
orderBy?: string | undefined;
|
|
4454
4734
|
groupBy?: string | undefined;
|
|
4455
4735
|
neuralSearch?: boolean | undefined;
|
|
@@ -4513,8 +4793,6 @@ declare class SearchService {
|
|
|
4513
4793
|
audit?: AuditEvents;
|
|
4514
4794
|
protected readonly queryParamsStore: {
|
|
4515
4795
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
4516
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4517
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4518
4796
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4519
4797
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
4520
4798
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -4523,6 +4801,7 @@ declare class SearchService {
|
|
|
4523
4801
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
4524
4802
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
4525
4803
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
4804
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4526
4805
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
4527
4806
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4528
4807
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4536,6 +4815,7 @@ declare class SearchService {
|
|
|
4536
4815
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
4537
4816
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4538
4817
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
4818
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4539
4819
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4540
4820
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4541
4821
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4568,8 +4848,6 @@ declare class SearchService {
|
|
|
4568
4848
|
getQuery: () => Query;
|
|
4569
4849
|
} & _ngrx_signals.StateSource<{
|
|
4570
4850
|
name?: string | undefined;
|
|
4571
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4572
|
-
sort?: string | undefined;
|
|
4573
4851
|
text?: string | undefined;
|
|
4574
4852
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
4575
4853
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -4578,6 +4856,7 @@ declare class SearchService {
|
|
|
4578
4856
|
pageSize?: number | undefined;
|
|
4579
4857
|
tab?: string | undefined;
|
|
4580
4858
|
scope?: string | undefined;
|
|
4859
|
+
sort?: string | undefined;
|
|
4581
4860
|
basket?: string | undefined;
|
|
4582
4861
|
isFirstPage?: boolean | undefined;
|
|
4583
4862
|
strictRefine?: boolean | undefined;
|
|
@@ -4591,6 +4870,7 @@ declare class SearchService {
|
|
|
4591
4870
|
relevanceTransforms?: string | undefined;
|
|
4592
4871
|
removeDuplicates?: boolean | undefined;
|
|
4593
4872
|
queryId?: string | undefined;
|
|
4873
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4594
4874
|
orderBy?: string | undefined;
|
|
4595
4875
|
groupBy?: string | undefined;
|
|
4596
4876
|
neuralSearch?: boolean | undefined;
|
|
@@ -4700,8 +4980,6 @@ declare class SelectionService {
|
|
|
4700
4980
|
private readonly selectionStore;
|
|
4701
4981
|
queryParamsStore: {
|
|
4702
4982
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
4703
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4704
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4705
4983
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4706
4984
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
4707
4985
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -4710,6 +4988,7 @@ declare class SelectionService {
|
|
|
4710
4988
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
4711
4989
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
4712
4990
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
4991
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4713
4992
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
4714
4993
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4715
4994
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4723,6 +5002,7 @@ declare class SelectionService {
|
|
|
4723
5002
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
4724
5003
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4725
5004
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
5005
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4726
5006
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4727
5007
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4728
5008
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4755,8 +5035,6 @@ declare class SelectionService {
|
|
|
4755
5035
|
getQuery: () => _sinequa_atomic.Query;
|
|
4756
5036
|
} & _ngrx_signals.StateSource<{
|
|
4757
5037
|
name?: string | undefined;
|
|
4758
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4759
|
-
sort?: string | undefined;
|
|
4760
5038
|
text?: string | undefined;
|
|
4761
5039
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
4762
5040
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -4765,6 +5043,7 @@ declare class SelectionService {
|
|
|
4765
5043
|
pageSize?: number | undefined;
|
|
4766
5044
|
tab?: string | undefined;
|
|
4767
5045
|
scope?: string | undefined;
|
|
5046
|
+
sort?: string | undefined;
|
|
4768
5047
|
basket?: string | undefined;
|
|
4769
5048
|
isFirstPage?: boolean | undefined;
|
|
4770
5049
|
strictRefine?: boolean | undefined;
|
|
@@ -4778,6 +5057,7 @@ declare class SelectionService {
|
|
|
4778
5057
|
relevanceTransforms?: string | undefined;
|
|
4779
5058
|
removeDuplicates?: boolean | undefined;
|
|
4780
5059
|
queryId?: string | undefined;
|
|
5060
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4781
5061
|
orderBy?: string | undefined;
|
|
4782
5062
|
groupBy?: string | undefined;
|
|
4783
5063
|
neuralSearch?: boolean | undefined;
|
|
@@ -4918,14 +5198,14 @@ type NavbarTab = {
|
|
|
4918
5198
|
count?: number;
|
|
4919
5199
|
};
|
|
4920
5200
|
declare class NavbarTabsComponent {
|
|
5201
|
+
cn: typeof cn;
|
|
5202
|
+
class: _angular_core.InputSignal<string | undefined>;
|
|
4921
5203
|
readonly router: Router;
|
|
4922
5204
|
readonly route: ActivatedRoute;
|
|
4923
5205
|
readonly drawerStack: DrawerStackService;
|
|
4924
5206
|
readonly drawerOpened: _angular_core.Signal<boolean>;
|
|
4925
5207
|
readonly queryParamsStore: {
|
|
4926
5208
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
4927
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4928
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4929
5209
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4930
5210
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
4931
5211
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -4934,6 +5214,7 @@ declare class NavbarTabsComponent {
|
|
|
4934
5214
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
4935
5215
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
4936
5216
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
5217
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
4937
5218
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
4938
5219
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4939
5220
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4947,6 +5228,7 @@ declare class NavbarTabsComponent {
|
|
|
4947
5228
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
4948
5229
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4949
5230
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
5231
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
4950
5232
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4951
5233
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4952
5234
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -4979,8 +5261,6 @@ declare class NavbarTabsComponent {
|
|
|
4979
5261
|
getQuery: () => _sinequa_atomic.Query;
|
|
4980
5262
|
} & _ngrx_signals.StateSource<{
|
|
4981
5263
|
name?: string | undefined;
|
|
4982
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
4983
|
-
sort?: string | undefined;
|
|
4984
5264
|
text?: string | undefined;
|
|
4985
5265
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
4986
5266
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -4989,6 +5269,7 @@ declare class NavbarTabsComponent {
|
|
|
4989
5269
|
pageSize?: number | undefined;
|
|
4990
5270
|
tab?: string | undefined;
|
|
4991
5271
|
scope?: string | undefined;
|
|
5272
|
+
sort?: string | undefined;
|
|
4992
5273
|
basket?: string | undefined;
|
|
4993
5274
|
isFirstPage?: boolean | undefined;
|
|
4994
5275
|
strictRefine?: boolean | undefined;
|
|
@@ -5002,6 +5283,7 @@ declare class NavbarTabsComponent {
|
|
|
5002
5283
|
relevanceTransforms?: string | undefined;
|
|
5003
5284
|
removeDuplicates?: boolean | undefined;
|
|
5004
5285
|
queryId?: string | undefined;
|
|
5286
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
5005
5287
|
orderBy?: string | undefined;
|
|
5006
5288
|
groupBy?: string | undefined;
|
|
5007
5289
|
neuralSearch?: boolean | undefined;
|
|
@@ -5034,7 +5316,7 @@ declare class NavbarTabsComponent {
|
|
|
5034
5316
|
readonly moreTabs: _angular_core.Signal<NavbarTab[]>;
|
|
5035
5317
|
protected changeTab(): void;
|
|
5036
5318
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NavbarTabsComponent, never>;
|
|
5037
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NavbarTabsComponent, "navbar-tabs", never, { "showCount": { "alias": "showCount"; "required": false; "isSignal": true; }; "path": { "alias": "path"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
5319
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NavbarTabsComponent, "navbar-tabs", never, { "class": { "alias": "class"; "required": false; "isSignal": true; }; "showCount": { "alias": "showCount"; "required": false; "isSignal": true; }; "path": { "alias": "path"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
5038
5320
|
}
|
|
5039
5321
|
|
|
5040
5322
|
declare class NoResultComponent {
|
|
@@ -5042,23 +5324,6 @@ declare class NoResultComponent {
|
|
|
5042
5324
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NoResultComponent, "NoResult", never, {}, {}, never, never, true, never>;
|
|
5043
5325
|
}
|
|
5044
5326
|
|
|
5045
|
-
type PageConfiguration = {
|
|
5046
|
-
page: number;
|
|
5047
|
-
rowCount: number;
|
|
5048
|
-
pageSize: number;
|
|
5049
|
-
};
|
|
5050
|
-
declare class PagerComponent {
|
|
5051
|
-
readonly configuration: _angular_core.InputSignal<PageConfiguration>;
|
|
5052
|
-
protected readonly page: _angular_core.WritableSignal<number>;
|
|
5053
|
-
protected readonly hasPages: _angular_core.Signal<boolean>;
|
|
5054
|
-
private readonly queryService;
|
|
5055
|
-
constructor();
|
|
5056
|
-
nextPage(): void;
|
|
5057
|
-
previousPage(): void;
|
|
5058
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PagerComponent, never>;
|
|
5059
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PagerComponent, "pager", never, { "configuration": { "alias": "configuration"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
5060
|
-
}
|
|
5061
|
-
|
|
5062
5327
|
declare class PreviewNavigator {
|
|
5063
5328
|
protected readonly preview: PreviewService;
|
|
5064
5329
|
readonly total: _angular_core.Signal<number>;
|
|
@@ -5108,7 +5373,7 @@ declare class SortSelectorComponent {
|
|
|
5108
5373
|
sources?: _sinequa_atomic_angular.CSources;
|
|
5109
5374
|
features?: {
|
|
5110
5375
|
[key: string]: boolean | {
|
|
5111
|
-
[key: string]: boolean | undefined;
|
|
5376
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
5112
5377
|
} | undefined;
|
|
5113
5378
|
allowChangePassword?: boolean;
|
|
5114
5379
|
editablepartition?: boolean;
|
|
@@ -5124,6 +5389,10 @@ declare class SortSelectorComponent {
|
|
|
5124
5389
|
filters?: {
|
|
5125
5390
|
homepage?: boolean;
|
|
5126
5391
|
};
|
|
5392
|
+
userProfile?: {
|
|
5393
|
+
enabled?: boolean;
|
|
5394
|
+
customData?: string[];
|
|
5395
|
+
};
|
|
5127
5396
|
};
|
|
5128
5397
|
allowAdvancedFilters?: boolean;
|
|
5129
5398
|
general?: {
|
|
@@ -5141,7 +5410,7 @@ declare class SortSelectorComponent {
|
|
|
5141
5410
|
};
|
|
5142
5411
|
features?: {
|
|
5143
5412
|
[key: string]: boolean | {
|
|
5144
|
-
[key: string]: boolean | undefined;
|
|
5413
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
5145
5414
|
} | undefined;
|
|
5146
5415
|
allowChangePassword?: boolean;
|
|
5147
5416
|
editablepartition?: boolean;
|
|
@@ -5157,6 +5426,10 @@ declare class SortSelectorComponent {
|
|
|
5157
5426
|
filters?: {
|
|
5158
5427
|
homepage?: boolean;
|
|
5159
5428
|
};
|
|
5429
|
+
userProfile?: {
|
|
5430
|
+
enabled?: boolean;
|
|
5431
|
+
customData?: string[];
|
|
5432
|
+
};
|
|
5160
5433
|
};
|
|
5161
5434
|
};
|
|
5162
5435
|
}>;
|
|
@@ -5191,7 +5464,7 @@ declare class SortSelectorComponent {
|
|
|
5191
5464
|
};
|
|
5192
5465
|
features?: {
|
|
5193
5466
|
[key: string]: boolean | {
|
|
5194
|
-
[key: string]: boolean | undefined;
|
|
5467
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
5195
5468
|
} | undefined;
|
|
5196
5469
|
allowChangePassword?: boolean;
|
|
5197
5470
|
editablepartition?: boolean;
|
|
@@ -5207,6 +5480,10 @@ declare class SortSelectorComponent {
|
|
|
5207
5480
|
filters?: {
|
|
5208
5481
|
homepage?: boolean;
|
|
5209
5482
|
};
|
|
5483
|
+
userProfile?: {
|
|
5484
|
+
enabled?: boolean;
|
|
5485
|
+
customData?: string[];
|
|
5486
|
+
};
|
|
5210
5487
|
};
|
|
5211
5488
|
} | undefined>;
|
|
5212
5489
|
assistants: _angular_core.Signal<{
|
|
@@ -5268,7 +5545,7 @@ declare class SortSelectorComponent {
|
|
|
5268
5545
|
sources?: _sinequa_atomic_angular.CSources;
|
|
5269
5546
|
features?: {
|
|
5270
5547
|
[key: string]: boolean | {
|
|
5271
|
-
[key: string]: boolean | undefined;
|
|
5548
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
5272
5549
|
} | undefined;
|
|
5273
5550
|
allowChangePassword?: boolean;
|
|
5274
5551
|
editablepartition?: boolean;
|
|
@@ -5284,6 +5561,10 @@ declare class SortSelectorComponent {
|
|
|
5284
5561
|
filters?: {
|
|
5285
5562
|
homepage?: boolean;
|
|
5286
5563
|
};
|
|
5564
|
+
userProfile?: {
|
|
5565
|
+
enabled?: boolean;
|
|
5566
|
+
customData?: string[];
|
|
5567
|
+
};
|
|
5287
5568
|
};
|
|
5288
5569
|
allowAdvancedFilters?: boolean;
|
|
5289
5570
|
general?: {
|
|
@@ -5301,7 +5582,7 @@ declare class SortSelectorComponent {
|
|
|
5301
5582
|
};
|
|
5302
5583
|
features?: {
|
|
5303
5584
|
[key: string]: boolean | {
|
|
5304
|
-
[key: string]: boolean | undefined;
|
|
5585
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
5305
5586
|
} | undefined;
|
|
5306
5587
|
allowChangePassword?: boolean;
|
|
5307
5588
|
editablepartition?: boolean;
|
|
@@ -5317,6 +5598,10 @@ declare class SortSelectorComponent {
|
|
|
5317
5598
|
filters?: {
|
|
5318
5599
|
homepage?: boolean;
|
|
5319
5600
|
};
|
|
5601
|
+
userProfile?: {
|
|
5602
|
+
enabled?: boolean;
|
|
5603
|
+
customData?: string[];
|
|
5604
|
+
};
|
|
5320
5605
|
};
|
|
5321
5606
|
};
|
|
5322
5607
|
};
|
|
@@ -5356,46 +5641,176 @@ declare class SourceComponent {
|
|
|
5356
5641
|
}
|
|
5357
5642
|
|
|
5358
5643
|
/**
|
|
5359
|
-
*
|
|
5360
|
-
* This
|
|
5361
|
-
*
|
|
5644
|
+
* Directive to mark a child element for special processing.
|
|
5645
|
+
* This can be used to apply specific styles or behaviors to child elements.
|
|
5646
|
+
* Specifically, it can be used to mark elements that should be treated as children in a parent component.
|
|
5647
|
+
* Very useful for components that need to render child templates dynamically with `@for loop`.
|
|
5648
|
+
*
|
|
5649
|
+
* Example usage:
|
|
5650
|
+
* ```html
|
|
5651
|
+
* <sponsored-links>
|
|
5652
|
+
* <span *childMarker>Child Element</span>
|
|
5653
|
+
* </sponsored-links>
|
|
5654
|
+
* ```
|
|
5655
|
+
* This will allow the parent component to recognize the `<span>` as a child element and apply any specific logic or styles defined in the parent component.
|
|
5656
|
+
*/
|
|
5657
|
+
declare class ChildMarkerDirective {
|
|
5658
|
+
template: TemplateRef<any>;
|
|
5659
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ChildMarkerDirective, never>;
|
|
5660
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ChildMarkerDirective, "[childMarker]", never, {}, {}, never, never, true, never>;
|
|
5661
|
+
}
|
|
5662
|
+
|
|
5663
|
+
/**
|
|
5664
|
+
* Type defining the selection strategies available for article selection.
|
|
5665
|
+
* "replace": Replaces the current article in the selection.
|
|
5666
|
+
* "stack": Stacks the article on top of the current selection (used in drawer stacks).
|
|
5667
|
+
* "redirect": Redirects to a specified URL with the article ID.
|
|
5668
|
+
* "emit": Emits an event without changing the current selection.
|
|
5669
|
+
*/
|
|
5670
|
+
type SelectionStrategy = "replace" | "stack" | "redirect" | "emit";
|
|
5671
|
+
|
|
5672
|
+
/**
|
|
5673
|
+
* Directive that selects an article on click.
|
|
5674
|
+
* Used to handle click and enter key events to select an article based on the specified strategy.
|
|
5362
5675
|
*
|
|
5363
5676
|
* @remarks
|
|
5364
|
-
* This directive
|
|
5677
|
+
* This directive uses the DrawerStackService to manage article selection.
|
|
5678
|
+
* Drawer/DrawerStack/DrawerStackService are deprecated and will be removed in future versions.
|
|
5679
|
+
*
|
|
5680
|
+
* @remarks
|
|
5681
|
+
* This directive is deprecated.
|
|
5682
|
+
*
|
|
5683
|
+
*
|
|
5684
|
+
* @deprecated Use the `SelectArticleDirective` instead.
|
|
5685
|
+
*/
|
|
5686
|
+
declare class SelectArticleOnClickDirective {
|
|
5687
|
+
private readonly drawerStack;
|
|
5688
|
+
private readonly router;
|
|
5689
|
+
readonly article: _angular_core.InputSignal<Partial<Article$1> | undefined>;
|
|
5690
|
+
readonly strategy: _angular_core.InputSignal<SelectionStrategy>;
|
|
5691
|
+
readonly redirectUrl: _angular_core.InputSignal<string>;
|
|
5692
|
+
readonly selected: _angular_core.OutputEmitterRef<void>;
|
|
5693
|
+
onEnter(e: Event): void;
|
|
5694
|
+
onClick(): void;
|
|
5695
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SelectArticleOnClickDirective, never>;
|
|
5696
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<SelectArticleOnClickDirective, "[selectArticleOnClick]", never, { "article": { "alias": "article"; "required": true; "isSignal": true; }; "strategy": { "alias": "strategy"; "required": false; "isSignal": true; }; "redirectUrl": { "alias": "redirectUrl"; "required": false; "isSignal": true; }; }, { "selected": "selected"; }, never, never, true, never>;
|
|
5697
|
+
}
|
|
5698
|
+
|
|
5699
|
+
/**
|
|
5700
|
+
* Directive that handles the behavior of showing a bookmark for an article.
|
|
5701
|
+
*
|
|
5702
|
+
* @remarks
|
|
5703
|
+
* This directive listens to mouse enter and mouse leave events to determine when to show the bookmark.
|
|
5704
|
+
* It also checks the user's settings to determine if the article is bookmarked.
|
|
5365
5705
|
*
|
|
5366
5706
|
* @example
|
|
5367
5707
|
* ```html
|
|
5368
|
-
* <div
|
|
5369
|
-
* <!-- Content to be scrolled -->
|
|
5370
|
-
* </div>
|
|
5708
|
+
* <div showBookmark [article]="currentArticle" (showBookmark)="onShowBookmark($event)"></div>
|
|
5371
5709
|
* ```
|
|
5372
5710
|
*
|
|
5711
|
+
* @deprecated The `BookmarkButtonComponent` use a css class for showing bookmarks.
|
|
5373
5712
|
*/
|
|
5374
|
-
declare class
|
|
5375
|
-
|
|
5376
|
-
|
|
5377
|
-
|
|
5378
|
-
|
|
5379
|
-
|
|
5380
|
-
|
|
5381
|
-
|
|
5382
|
-
|
|
5383
|
-
|
|
5384
|
-
|
|
5385
|
-
|
|
5386
|
-
|
|
5387
|
-
|
|
5388
|
-
|
|
5389
|
-
|
|
5390
|
-
|
|
5391
|
-
|
|
5392
|
-
|
|
5393
|
-
|
|
5394
|
-
|
|
5395
|
-
|
|
5396
|
-
|
|
5397
|
-
|
|
5398
|
-
|
|
5713
|
+
declare class ShowBookmarkDirective {
|
|
5714
|
+
mouseEnter(): void;
|
|
5715
|
+
mouseLeave(): void;
|
|
5716
|
+
protected bookmarkHovered: _angular_core.WritableSignal<boolean>;
|
|
5717
|
+
userSettingsStore: {
|
|
5718
|
+
bookmarks: _angular_core.Signal<_sinequa_atomic_angular.Bookmark[]>;
|
|
5719
|
+
recentSearches: _angular_core.Signal<_sinequa_atomic_angular.SearchItem[]>;
|
|
5720
|
+
savedSearches: _angular_core.Signal<_sinequa_atomic_angular.SearchItem[]>;
|
|
5721
|
+
baskets: _angular_core.Signal<_sinequa_atomic_angular.Basket[]>;
|
|
5722
|
+
assistants: _angular_core.Signal<Record<string, unknown>>;
|
|
5723
|
+
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
5724
|
+
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5725
|
+
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
5726
|
+
userTheme: _angular_core.Signal<"light" | "dark" | "system" | undefined>;
|
|
5727
|
+
isDarkMode: _angular_core.Signal<boolean>;
|
|
5728
|
+
updateBookmarks: (bookmarks: _sinequa_atomic_angular.UserSettingsState["bookmarks"], auditEvents?: _sinequa_atomic.AuditEvents) => Promise<void>;
|
|
5729
|
+
bookmark: (article: Article$1, queryName?: string) => Promise<void>;
|
|
5730
|
+
unbookmark: (id: string) => Promise<void>;
|
|
5731
|
+
isBookmarked: (article: Partial<Article$1>) => boolean;
|
|
5732
|
+
toggleBookmark: (article: Article$1) => Promise<void>;
|
|
5733
|
+
deleteRecentSearch: (index: number) => Promise<void>;
|
|
5734
|
+
updateRecentSearches: (recentSearches: _sinequa_atomic_angular.UserSettingsState["recentSearches"], auditEvents?: _sinequa_atomic.AuditEvents) => Promise<void>;
|
|
5735
|
+
addCurrentSearch: (queryParams: _sinequa_atomic.QueryParams) => Promise<void>;
|
|
5736
|
+
deleteSavedSearch: (index: number) => Promise<void>;
|
|
5737
|
+
updateSavedSearches: (savedSearches: _sinequa_atomic_angular.UserSettingsState["savedSearches"]) => Promise<void>;
|
|
5738
|
+
getSavedSearch: (search: string) => _sinequa_atomic_angular.SearchItem | undefined;
|
|
5739
|
+
deleteBasket: (index: number) => Promise<void>;
|
|
5740
|
+
createBasket: (basket: _sinequa_atomic_angular.Basket) => Promise<void>;
|
|
5741
|
+
updateBaskets: (baskets: _sinequa_atomic_angular.UserSettingsState["baskets"]) => Promise<void>;
|
|
5742
|
+
updateBasket: (basket: _sinequa_atomic_angular.Basket, index: number) => Promise<void>;
|
|
5743
|
+
addToBasket: (name: string, ids: string | string[]) => Promise<void>;
|
|
5744
|
+
removeFromBasket: (name: string, ids: string | string[]) => Promise<void>;
|
|
5745
|
+
updateAssistantSettings: (assistantSettings: _sinequa_atomic_angular.UserSettingsState["assistants"]) => Promise<void>;
|
|
5746
|
+
updateLanguage: (language: _sinequa_atomic_angular.UserSettingsState["language"], auditEvents?: _sinequa_atomic.AuditEvents) => Promise<void>;
|
|
5747
|
+
updateAssistantCollapsed: (collapseAssistant: _sinequa_atomic_angular.UserSettingsState["collapseAssistant"], auditEvents?: _sinequa_atomic.AuditEvents) => Promise<void>;
|
|
5748
|
+
initialize: () => Promise<void>;
|
|
5749
|
+
reset: () => Promise<void>;
|
|
5750
|
+
deleteAlert: (index: number) => Promise<void>;
|
|
5751
|
+
createAlert: (alert: _sinequa_atomic_angular.Alert) => Promise<void>;
|
|
5752
|
+
updateAlert: (alert: _sinequa_atomic_angular.Alert, index: number) => Promise<void>;
|
|
5753
|
+
updateAlerts: (alerts: _sinequa_atomic_angular.Alert[]) => Promise<void>;
|
|
5754
|
+
setUserTheme: (userTheme: "dark" | "light" | "system") => Promise<void>;
|
|
5755
|
+
toggleDarkMode: () => Promise<void>;
|
|
5756
|
+
} & _ngrx_signals.StateSource<{
|
|
5757
|
+
bookmarks: _sinequa_atomic_angular.Bookmark[];
|
|
5758
|
+
recentSearches: _sinequa_atomic_angular.SearchItem[];
|
|
5759
|
+
savedSearches: _sinequa_atomic_angular.SearchItem[];
|
|
5760
|
+
baskets: _sinequa_atomic_angular.Basket[];
|
|
5761
|
+
assistants: Record<string, unknown>;
|
|
5762
|
+
alerts: _sinequa_atomic_angular.Alert[];
|
|
5763
|
+
collapseAssistant?: boolean | undefined;
|
|
5764
|
+
language?: string | undefined;
|
|
5765
|
+
userTheme: "dark" | "light" | "system";
|
|
5766
|
+
}>;
|
|
5767
|
+
protected isBookmarked: _angular_core.Signal<boolean>;
|
|
5768
|
+
readonly article: _angular_core.InputSignal<Article$1 | Partial<Article$1> | undefined>;
|
|
5769
|
+
readonly showBookmark: _angular_core.OutputEmitterRef<boolean>;
|
|
5770
|
+
constructor();
|
|
5771
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ShowBookmarkDirective, never>;
|
|
5772
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ShowBookmarkDirective, "[showBookmark]", never, { "article": { "alias": "article"; "required": true; "isSignal": true; }; }, { "showBookmark": "showBookmark"; }, never, never, true, never>;
|
|
5773
|
+
}
|
|
5774
|
+
|
|
5775
|
+
/**
|
|
5776
|
+
* Represents a directive that enables infinite scrolling behavior.
|
|
5777
|
+
* This directive listens for the intersection of the element with the viewport
|
|
5778
|
+
* and emits a `loadMore` event when the element becomes visible.
|
|
5779
|
+
*
|
|
5780
|
+
* @remarks
|
|
5781
|
+
* This directive requires the `IntersectionObserver` API to be available in the browser.
|
|
5782
|
+
*
|
|
5783
|
+
* @example
|
|
5784
|
+
* ```html
|
|
5785
|
+
* <div infinityScroll (onScroll)="loadMore()">
|
|
5786
|
+
* <!-- Content to be scrolled -->
|
|
5787
|
+
* </div>
|
|
5788
|
+
* ```
|
|
5789
|
+
*
|
|
5790
|
+
*/
|
|
5791
|
+
declare class InfinityScrollDirective implements OnDestroy {
|
|
5792
|
+
private el;
|
|
5793
|
+
options: _angular_core.InputSignal<IntersectionObserverInit>;
|
|
5794
|
+
onScroll: _angular_core.OutputEmitterRef<void>;
|
|
5795
|
+
private observer;
|
|
5796
|
+
constructor(el: ElementRef);
|
|
5797
|
+
ngOnDestroy(): void;
|
|
5798
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<InfinityScrollDirective, never>;
|
|
5799
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<InfinityScrollDirective, "[infinity-scroll]", never, { "options": { "alias": "scroll-options"; "required": false; "isSignal": true; }; }, { "onScroll": "onScroll"; }, never, never, true, never>;
|
|
5800
|
+
}
|
|
5801
|
+
|
|
5802
|
+
type KeyboardNavigationOnSelectionHandlers = {
|
|
5803
|
+
hideListbox?: boolean;
|
|
5804
|
+
resetSelection?: boolean;
|
|
5805
|
+
};
|
|
5806
|
+
type KeyboardNavigatorOptions = {
|
|
5807
|
+
name?: string;
|
|
5808
|
+
optionSelector: string;
|
|
5809
|
+
direction?: 'horizontal' | 'vertical' | 'both';
|
|
5810
|
+
selectOnFocus?: boolean;
|
|
5811
|
+
resetSelectionOnBlur?: boolean;
|
|
5812
|
+
onSelectionHandlers?: KeyboardNavigationOnSelectionHandlers;
|
|
5813
|
+
};
|
|
5399
5814
|
declare class KeyboardNavigatorDirective implements OnDestroy {
|
|
5400
5815
|
readonly keyboardNavigator: _angular_core.InputSignalWithTransform<KeyboardNavigatorOptions, KeyboardNavigatorOptions>;
|
|
5401
5816
|
readonly listboxId: _angular_core.InputSignal<string>;
|
|
@@ -5624,12 +6039,16 @@ declare class OverflowManagerDirective {
|
|
|
5624
6039
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<OverflowManagerDirective, "[overflowManager]", never, { "target": { "alias": "target"; "required": false; "isSignal": true; }; "margin": { "alias": "margin"; "required": false; "isSignal": true; }; "direction": { "alias": "direction"; "required": false; "isSignal": true; }; }, { "count": "count"; }, ["items", "stop"], never, true, never>;
|
|
5625
6040
|
}
|
|
5626
6041
|
|
|
5627
|
-
type SelectionStrategy = "replace" | "stack" | "redirect" | "emit";
|
|
5628
6042
|
/**
|
|
5629
6043
|
* Directive that selects an article on click.
|
|
6044
|
+
* Used to handle click and enter key events to select an article based on the specified strategy.
|
|
6045
|
+
*
|
|
6046
|
+
* @remarks
|
|
6047
|
+
* This directive replaces the deprecated `SelectArticleOnClickDirective`.
|
|
5630
6048
|
*/
|
|
5631
|
-
declare class
|
|
5632
|
-
private
|
|
6049
|
+
declare class SelectArticleDirective {
|
|
6050
|
+
private selectionStore;
|
|
6051
|
+
private selectionService;
|
|
5633
6052
|
private readonly router;
|
|
5634
6053
|
readonly article: _angular_core.InputSignal<Partial<Article$1> | undefined>;
|
|
5635
6054
|
readonly strategy: _angular_core.InputSignal<SelectionStrategy>;
|
|
@@ -5637,82 +6056,9 @@ declare class SelectArticleOnClickDirective {
|
|
|
5637
6056
|
readonly selected: _angular_core.OutputEmitterRef<void>;
|
|
5638
6057
|
onEnter(e: Event): void;
|
|
5639
6058
|
onClick(): void;
|
|
5640
|
-
|
|
5641
|
-
static
|
|
5642
|
-
}
|
|
5643
|
-
|
|
5644
|
-
/**
|
|
5645
|
-
* Directive that handles the behavior of showing a bookmark for an article.
|
|
5646
|
-
*
|
|
5647
|
-
* @remarks
|
|
5648
|
-
* This directive listens to mouse enter and mouse leave events to determine when to show the bookmark.
|
|
5649
|
-
* It also checks the user's settings to determine if the article is bookmarked.
|
|
5650
|
-
*
|
|
5651
|
-
* @example
|
|
5652
|
-
* ```html
|
|
5653
|
-
* <div showBookmark [article]="currentArticle" (showBookmark)="onShowBookmark($event)"></div>
|
|
5654
|
-
* ```
|
|
5655
|
-
*/
|
|
5656
|
-
declare class ShowBookmarkDirective {
|
|
5657
|
-
mouseEnter(): void;
|
|
5658
|
-
mouseLeave(): void;
|
|
5659
|
-
protected bookmarkHovered: _angular_core.WritableSignal<boolean>;
|
|
5660
|
-
userSettingsStore: {
|
|
5661
|
-
bookmarks: _angular_core.Signal<_sinequa_atomic_angular.Bookmark[]>;
|
|
5662
|
-
recentSearches: _angular_core.Signal<_sinequa_atomic_angular.SearchItem[]>;
|
|
5663
|
-
savedSearches: _angular_core.Signal<_sinequa_atomic_angular.SearchItem[]>;
|
|
5664
|
-
baskets: _angular_core.Signal<_sinequa_atomic_angular.Basket[]>;
|
|
5665
|
-
assistants: _angular_core.Signal<Record<string, unknown>>;
|
|
5666
|
-
alerts: _angular_core.Signal<_sinequa_atomic_angular.Alert[]>;
|
|
5667
|
-
collapseAssistant?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5668
|
-
language?: _angular_core.Signal<string | undefined> | undefined;
|
|
5669
|
-
userTheme: _angular_core.Signal<"light" | "dark" | "system" | undefined>;
|
|
5670
|
-
isDarkMode: _angular_core.Signal<boolean>;
|
|
5671
|
-
updateBookmarks: (bookmarks: _sinequa_atomic_angular.UserSettingsState["bookmarks"], auditEvents?: _sinequa_atomic.AuditEvents) => Promise<void>;
|
|
5672
|
-
bookmark: (article: Article$1, queryName?: string) => Promise<void>;
|
|
5673
|
-
unbookmark: (id: string) => Promise<void>;
|
|
5674
|
-
isBookmarked: (article: Partial<Article$1>) => boolean;
|
|
5675
|
-
toggleBookmark: (article: Article$1) => Promise<void>;
|
|
5676
|
-
deleteRecentSearch: (index: number) => Promise<void>;
|
|
5677
|
-
updateRecentSearches: (recentSearches: _sinequa_atomic_angular.UserSettingsState["recentSearches"], auditEvents?: _sinequa_atomic.AuditEvents) => Promise<void>;
|
|
5678
|
-
addCurrentSearch: (queryParams: _sinequa_atomic.QueryParams) => Promise<void>;
|
|
5679
|
-
deleteSavedSearch: (index: number) => Promise<void>;
|
|
5680
|
-
updateSavedSearches: (savedSearches: _sinequa_atomic_angular.UserSettingsState["savedSearches"]) => Promise<void>;
|
|
5681
|
-
getSavedSearch: (search: string) => _sinequa_atomic_angular.SearchItem | undefined;
|
|
5682
|
-
deleteBasket: (index: number) => Promise<void>;
|
|
5683
|
-
createBasket: (basket: _sinequa_atomic_angular.Basket) => Promise<void>;
|
|
5684
|
-
updateBaskets: (baskets: _sinequa_atomic_angular.UserSettingsState["baskets"]) => Promise<void>;
|
|
5685
|
-
updateBasket: (basket: _sinequa_atomic_angular.Basket, index: number) => Promise<void>;
|
|
5686
|
-
addToBasket: (name: string, ids: string | string[]) => Promise<void>;
|
|
5687
|
-
removeFromBasket: (name: string, ids: string | string[]) => Promise<void>;
|
|
5688
|
-
updateAssistantSettings: (assistantSettings: _sinequa_atomic_angular.UserSettingsState["assistants"]) => Promise<void>;
|
|
5689
|
-
updateLanguage: (language: _sinequa_atomic_angular.UserSettingsState["language"], auditEvents?: _sinequa_atomic.AuditEvents) => Promise<void>;
|
|
5690
|
-
updateAssistantCollapsed: (collapseAssistant: _sinequa_atomic_angular.UserSettingsState["collapseAssistant"], auditEvents?: _sinequa_atomic.AuditEvents) => Promise<void>;
|
|
5691
|
-
initialize: () => Promise<void>;
|
|
5692
|
-
reset: () => Promise<void>;
|
|
5693
|
-
deleteAlert: (index: number) => Promise<void>;
|
|
5694
|
-
createAlert: (alert: _sinequa_atomic_angular.Alert) => Promise<void>;
|
|
5695
|
-
updateAlert: (alert: _sinequa_atomic_angular.Alert, index: number) => Promise<void>;
|
|
5696
|
-
updateAlerts: (alerts: _sinequa_atomic_angular.Alert[]) => Promise<void>;
|
|
5697
|
-
setUserTheme: (userTheme: "dark" | "light" | "system") => Promise<void>;
|
|
5698
|
-
toggleDarkMode: () => Promise<void>;
|
|
5699
|
-
} & _ngrx_signals.StateSource<{
|
|
5700
|
-
bookmarks: _sinequa_atomic_angular.Bookmark[];
|
|
5701
|
-
recentSearches: _sinequa_atomic_angular.SearchItem[];
|
|
5702
|
-
savedSearches: _sinequa_atomic_angular.SearchItem[];
|
|
5703
|
-
baskets: _sinequa_atomic_angular.Basket[];
|
|
5704
|
-
assistants: Record<string, unknown>;
|
|
5705
|
-
alerts: _sinequa_atomic_angular.Alert[];
|
|
5706
|
-
collapseAssistant?: boolean | undefined;
|
|
5707
|
-
language?: string | undefined;
|
|
5708
|
-
userTheme: "dark" | "light" | "system";
|
|
5709
|
-
}>;
|
|
5710
|
-
protected isBookmarked: _angular_core.Signal<boolean>;
|
|
5711
|
-
readonly article: _angular_core.InputSignal<Article$1 | Partial<Article$1> | undefined>;
|
|
5712
|
-
readonly showBookmark: _angular_core.OutputEmitterRef<boolean>;
|
|
5713
|
-
constructor();
|
|
5714
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ShowBookmarkDirective, never>;
|
|
5715
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ShowBookmarkDirective, "[showBookmark]", never, { "article": { "alias": "article"; "required": true; "isSignal": true; }; }, { "showBookmark": "showBookmark"; }, never, never, true, never>;
|
|
6059
|
+
private replace;
|
|
6060
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SelectArticleDirective, never>;
|
|
6061
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<SelectArticleDirective, "[selectArticle]", never, { "article": { "alias": "article"; "required": true; "isSignal": true; }; "strategy": { "alias": "strategy"; "required": false; "isSignal": true; }; "redirectUrl": { "alias": "redirectUrl"; "required": false; "isSignal": true; }; }, { "selected": "selected"; }, never, never, true, never>;
|
|
5716
6062
|
}
|
|
5717
6063
|
|
|
5718
6064
|
/**
|
|
@@ -5734,26 +6080,6 @@ declare class ThemeProviderDirective {
|
|
|
5734
6080
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ThemeProviderDirective, "[themeProvider]", never, { "themeProvider": { "alias": "themeProvider"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
5735
6081
|
}
|
|
5736
6082
|
|
|
5737
|
-
/**
|
|
5738
|
-
* Directive to mark a child element for special processing.
|
|
5739
|
-
* This can be used to apply specific styles or behaviors to child elements.
|
|
5740
|
-
* Specifically, it can be used to mark elements that should be treated as children in a parent component.
|
|
5741
|
-
* Very useful for components that need to render child templates dynamically with `@for loop`.
|
|
5742
|
-
*
|
|
5743
|
-
* Example usage:
|
|
5744
|
-
* ```html
|
|
5745
|
-
* <sponsored-links>
|
|
5746
|
-
* <span *childMarker>Child Element</span>
|
|
5747
|
-
* </sponsored-links>
|
|
5748
|
-
* ```
|
|
5749
|
-
* This will allow the parent component to recognize the `<span>` as a child element and apply any specific logic or styles defined in the parent component.
|
|
5750
|
-
*/
|
|
5751
|
-
declare class ChildMarkerDirective {
|
|
5752
|
-
template: TemplateRef<any>;
|
|
5753
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ChildMarkerDirective, never>;
|
|
5754
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ChildMarkerDirective, "[childMarker]", never, {}, {}, never, never, true, never>;
|
|
5755
|
-
}
|
|
5756
|
-
|
|
5757
6083
|
declare class SponsoredResultsComponent {
|
|
5758
6084
|
/**
|
|
5759
6085
|
* The directive used to mark the child template for the "Promoted" badge.
|
|
@@ -5790,7 +6116,7 @@ declare class SponsoredResultsComponent {
|
|
|
5790
6116
|
sources?: _sinequa_atomic_angular.CSources;
|
|
5791
6117
|
features?: {
|
|
5792
6118
|
[key: string]: boolean | {
|
|
5793
|
-
[key: string]: boolean | undefined;
|
|
6119
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
5794
6120
|
} | undefined;
|
|
5795
6121
|
allowChangePassword?: boolean;
|
|
5796
6122
|
editablepartition?: boolean;
|
|
@@ -5806,6 +6132,10 @@ declare class SponsoredResultsComponent {
|
|
|
5806
6132
|
filters?: {
|
|
5807
6133
|
homepage?: boolean;
|
|
5808
6134
|
};
|
|
6135
|
+
userProfile?: {
|
|
6136
|
+
enabled?: boolean;
|
|
6137
|
+
customData?: string[];
|
|
6138
|
+
};
|
|
5809
6139
|
};
|
|
5810
6140
|
allowAdvancedFilters?: boolean;
|
|
5811
6141
|
general?: {
|
|
@@ -5823,7 +6153,7 @@ declare class SponsoredResultsComponent {
|
|
|
5823
6153
|
};
|
|
5824
6154
|
features?: {
|
|
5825
6155
|
[key: string]: boolean | {
|
|
5826
|
-
[key: string]: boolean | undefined;
|
|
6156
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
5827
6157
|
} | undefined;
|
|
5828
6158
|
allowChangePassword?: boolean;
|
|
5829
6159
|
editablepartition?: boolean;
|
|
@@ -5839,6 +6169,10 @@ declare class SponsoredResultsComponent {
|
|
|
5839
6169
|
filters?: {
|
|
5840
6170
|
homepage?: boolean;
|
|
5841
6171
|
};
|
|
6172
|
+
userProfile?: {
|
|
6173
|
+
enabled?: boolean;
|
|
6174
|
+
customData?: string[];
|
|
6175
|
+
};
|
|
5842
6176
|
};
|
|
5843
6177
|
};
|
|
5844
6178
|
}>;
|
|
@@ -5873,7 +6207,7 @@ declare class SponsoredResultsComponent {
|
|
|
5873
6207
|
};
|
|
5874
6208
|
features?: {
|
|
5875
6209
|
[key: string]: boolean | {
|
|
5876
|
-
[key: string]: boolean | undefined;
|
|
6210
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
5877
6211
|
} | undefined;
|
|
5878
6212
|
allowChangePassword?: boolean;
|
|
5879
6213
|
editablepartition?: boolean;
|
|
@@ -5889,6 +6223,10 @@ declare class SponsoredResultsComponent {
|
|
|
5889
6223
|
filters?: {
|
|
5890
6224
|
homepage?: boolean;
|
|
5891
6225
|
};
|
|
6226
|
+
userProfile?: {
|
|
6227
|
+
enabled?: boolean;
|
|
6228
|
+
customData?: string[];
|
|
6229
|
+
};
|
|
5892
6230
|
};
|
|
5893
6231
|
} | undefined>;
|
|
5894
6232
|
assistants: _angular_core.Signal<{
|
|
@@ -5950,7 +6288,7 @@ declare class SponsoredResultsComponent {
|
|
|
5950
6288
|
sources?: _sinequa_atomic_angular.CSources;
|
|
5951
6289
|
features?: {
|
|
5952
6290
|
[key: string]: boolean | {
|
|
5953
|
-
[key: string]: boolean | undefined;
|
|
6291
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
5954
6292
|
} | undefined;
|
|
5955
6293
|
allowChangePassword?: boolean;
|
|
5956
6294
|
editablepartition?: boolean;
|
|
@@ -5966,6 +6304,10 @@ declare class SponsoredResultsComponent {
|
|
|
5966
6304
|
filters?: {
|
|
5967
6305
|
homepage?: boolean;
|
|
5968
6306
|
};
|
|
6307
|
+
userProfile?: {
|
|
6308
|
+
enabled?: boolean;
|
|
6309
|
+
customData?: string[];
|
|
6310
|
+
};
|
|
5969
6311
|
};
|
|
5970
6312
|
allowAdvancedFilters?: boolean;
|
|
5971
6313
|
general?: {
|
|
@@ -5983,7 +6325,7 @@ declare class SponsoredResultsComponent {
|
|
|
5983
6325
|
};
|
|
5984
6326
|
features?: {
|
|
5985
6327
|
[key: string]: boolean | {
|
|
5986
|
-
[key: string]: boolean | undefined;
|
|
6328
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
5987
6329
|
} | undefined;
|
|
5988
6330
|
allowChangePassword?: boolean;
|
|
5989
6331
|
editablepartition?: boolean;
|
|
@@ -5999,6 +6341,10 @@ declare class SponsoredResultsComponent {
|
|
|
5999
6341
|
filters?: {
|
|
6000
6342
|
homepage?: boolean;
|
|
6001
6343
|
};
|
|
6344
|
+
userProfile?: {
|
|
6345
|
+
enabled?: boolean;
|
|
6346
|
+
customData?: string[];
|
|
6347
|
+
};
|
|
6002
6348
|
};
|
|
6003
6349
|
};
|
|
6004
6350
|
};
|
|
@@ -6018,8 +6364,6 @@ declare class SponsoredResultsComponent {
|
|
|
6018
6364
|
}>;
|
|
6019
6365
|
queryParamStore: {
|
|
6020
6366
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
6021
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
6022
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
6023
6367
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
6024
6368
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
6025
6369
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -6028,6 +6372,7 @@ declare class SponsoredResultsComponent {
|
|
|
6028
6372
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
6029
6373
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
6030
6374
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
6375
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
6031
6376
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
6032
6377
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6033
6378
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -6041,6 +6386,7 @@ declare class SponsoredResultsComponent {
|
|
|
6041
6386
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
6042
6387
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6043
6388
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
6389
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
6044
6390
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
6045
6391
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
6046
6392
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -6073,8 +6419,6 @@ declare class SponsoredResultsComponent {
|
|
|
6073
6419
|
getQuery: () => _sinequa_atomic.Query;
|
|
6074
6420
|
} & _ngrx_signals.StateSource<{
|
|
6075
6421
|
name?: string | undefined;
|
|
6076
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
6077
|
-
sort?: string | undefined;
|
|
6078
6422
|
text?: string | undefined;
|
|
6079
6423
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
6080
6424
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -6083,6 +6427,7 @@ declare class SponsoredResultsComponent {
|
|
|
6083
6427
|
pageSize?: number | undefined;
|
|
6084
6428
|
tab?: string | undefined;
|
|
6085
6429
|
scope?: string | undefined;
|
|
6430
|
+
sort?: string | undefined;
|
|
6086
6431
|
basket?: string | undefined;
|
|
6087
6432
|
isFirstPage?: boolean | undefined;
|
|
6088
6433
|
strictRefine?: boolean | undefined;
|
|
@@ -6096,6 +6441,7 @@ declare class SponsoredResultsComponent {
|
|
|
6096
6441
|
relevanceTransforms?: string | undefined;
|
|
6097
6442
|
removeDuplicates?: boolean | undefined;
|
|
6098
6443
|
queryId?: string | undefined;
|
|
6444
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
6099
6445
|
orderBy?: string | undefined;
|
|
6100
6446
|
groupBy?: string | undefined;
|
|
6101
6447
|
neuralSearch?: boolean | undefined;
|
|
@@ -6200,32 +6546,666 @@ declare class ThemeToggleComponent {
|
|
|
6200
6546
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ThemeToggleComponent, "theme-toggle", never, { "scope": { "alias": "scope"; "required": true; "isSignal": true; }; "darkMode": { "alias": "darkMode"; "required": false; "isSignal": true; }; }, { "darkMode": "darkModeChange"; }, never, never, true, never>;
|
|
6201
6547
|
}
|
|
6202
6548
|
|
|
6203
|
-
|
|
6204
|
-
|
|
6549
|
+
type Operator$1 = "all" | "exact" | "any" | "none" | "matches";
|
|
6550
|
+
interface Filter$1 {
|
|
6551
|
+
column: string;
|
|
6552
|
+
alias: string;
|
|
6553
|
+
display?: string;
|
|
6554
|
+
items?: (AggregationItem | TreeAggregationNode)[];
|
|
6555
|
+
}
|
|
6556
|
+
interface Tab$1 {
|
|
6557
|
+
path: string;
|
|
6558
|
+
display?: string;
|
|
6559
|
+
}
|
|
6560
|
+
declare class AdvancedFiltersComponent {
|
|
6205
6561
|
private readonly queryParamsStore;
|
|
6206
|
-
private readonly
|
|
6207
|
-
readonly
|
|
6208
|
-
|
|
6209
|
-
|
|
6210
|
-
|
|
6211
|
-
|
|
6212
|
-
|
|
6562
|
+
private readonly appStore;
|
|
6563
|
+
private readonly router;
|
|
6564
|
+
private readonly route;
|
|
6565
|
+
private readonly formBuilder;
|
|
6566
|
+
private readonly transloco;
|
|
6567
|
+
private readonly syslangPipe;
|
|
6568
|
+
private readonly translocoPipe;
|
|
6569
|
+
sheetService: SheetService;
|
|
6570
|
+
selectData: {
|
|
6571
|
+
operator: string;
|
|
6572
|
+
display: string;
|
|
6573
|
+
placeholder?: string;
|
|
6213
6574
|
}[];
|
|
6214
|
-
|
|
6215
|
-
|
|
6216
|
-
|
|
6217
|
-
|
|
6218
|
-
|
|
6219
|
-
|
|
6220
|
-
|
|
6221
|
-
|
|
6222
|
-
|
|
6223
|
-
|
|
6224
|
-
|
|
6225
|
-
|
|
6226
|
-
|
|
6227
|
-
|
|
6228
|
-
|
|
6575
|
+
protected readonly form: _angular_forms.FormGroup<{
|
|
6576
|
+
content: _angular_forms.FormGroup<{
|
|
6577
|
+
operator: _angular_forms.FormControl<Operator$1>;
|
|
6578
|
+
value: _angular_forms.FormControl<undefined>;
|
|
6579
|
+
}>;
|
|
6580
|
+
title: _angular_forms.FormGroup<{
|
|
6581
|
+
operator: _angular_forms.FormControl<Operator$1>;
|
|
6582
|
+
value: _angular_forms.FormControl<undefined>;
|
|
6583
|
+
}>;
|
|
6584
|
+
}>;
|
|
6585
|
+
currentTab: _angular_core.WritableSignal<string>;
|
|
6586
|
+
currentFilter: _angular_core.WritableSignal<string | undefined>;
|
|
6587
|
+
appliedFilters: _angular_core.WritableSignal<{
|
|
6588
|
+
column: string;
|
|
6589
|
+
values: DropdownItem[];
|
|
6590
|
+
}[]>;
|
|
6591
|
+
suggestions: _angular_core.WritableSignal<DropdownItem[]>;
|
|
6592
|
+
aggregations: _angular_core.WritableSignal<(Aggregation | TreeAggregation)[]>;
|
|
6593
|
+
inputVariant: _angular_core.WritableSignal<"default" | "destructive">;
|
|
6594
|
+
tabs: _angular_core.Signal<Tab$1[]>;
|
|
6595
|
+
filters: _angular_core.Signal<Filter$1[]>;
|
|
6596
|
+
protected enableFieldedSearch: _angular_core.Signal<boolean>;
|
|
6597
|
+
protected allowEmptySearch: _angular_core.Signal<boolean>;
|
|
6598
|
+
text: string;
|
|
6599
|
+
constructor();
|
|
6600
|
+
getFirstPageQuery(): Promise<void>;
|
|
6601
|
+
onTabChange(tab: string): void;
|
|
6602
|
+
onSearch(): void;
|
|
6603
|
+
/** Generate the LegacyFilter to add to the query */
|
|
6604
|
+
private getFilter;
|
|
6605
|
+
/** Format content/title filters */
|
|
6606
|
+
private formatFilter;
|
|
6607
|
+
getPlaceholder(key: string): string;
|
|
6608
|
+
/** Get applied filters for a column */
|
|
6609
|
+
getItems(column: string): DropdownItem[];
|
|
6610
|
+
/** add item to current selection */
|
|
6611
|
+
addItem(item: DropdownItem, filter: Filter$1): void;
|
|
6612
|
+
/** remove item from current selection */
|
|
6613
|
+
removeItem(item: DropdownItem, filter: Filter$1): void;
|
|
6614
|
+
/** Update suggestions on input focus */
|
|
6615
|
+
setFilterFocus(value: string | null, filter: Filter$1): void;
|
|
6616
|
+
/** Update suggestions when typing */
|
|
6617
|
+
onInputTyping(value: string | null): void;
|
|
6618
|
+
private setSuggestions;
|
|
6619
|
+
private getSuggestionItems;
|
|
6620
|
+
private getWithSubItems;
|
|
6621
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AdvancedFiltersComponent, never>;
|
|
6622
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AdvancedFiltersComponent, "advanced-filters", never, {}, {}, never, never, true, never>;
|
|
6623
|
+
}
|
|
6624
|
+
|
|
6625
|
+
declare class AdvancedSearch {
|
|
6626
|
+
cn: typeof cn;
|
|
6627
|
+
readonly article: _angular_core.InputSignal<Article$1>;
|
|
6628
|
+
readonly previewStrategy: _angular_core.InputSignal<SelectionStrategy>;
|
|
6629
|
+
readonly selected: _angular_core.OutputEmitterRef<Article$1>;
|
|
6630
|
+
protected readonly selectionStore: {
|
|
6631
|
+
article?: _angular_core.Signal<Article$1 | undefined> | undefined;
|
|
6632
|
+
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
6633
|
+
queryText?: _angular_core.Signal<string | undefined> | undefined;
|
|
6634
|
+
queryName?: _angular_core.Signal<string | undefined> | undefined;
|
|
6635
|
+
previewHighlights?: _angular_core.Signal<_sinequa_atomic_angular.PreviewHighlights | undefined> | undefined;
|
|
6636
|
+
assistantIdsToAttach: _angular_core.Signal<string[]>;
|
|
6637
|
+
multiSelection: _angular_core.Signal<Article$1[]>;
|
|
6638
|
+
multiSelectCount: _angular_core.Signal<number>;
|
|
6639
|
+
update: (newState: Partial<_sinequa_atomic_angular.SelectionState>) => void;
|
|
6640
|
+
clear: () => void;
|
|
6641
|
+
addArticleToMultiSelection: (article: Article$1) => void;
|
|
6642
|
+
removeArticleFromMultiSelection: (article: Article$1) => void;
|
|
6643
|
+
clearMultiSelection: () => void;
|
|
6644
|
+
} & _ngrx_signals.StateSource<{
|
|
6645
|
+
article?: Article$1 | undefined;
|
|
6646
|
+
id?: string | undefined;
|
|
6647
|
+
queryText?: string | undefined;
|
|
6648
|
+
queryName?: string | undefined;
|
|
6649
|
+
previewHighlights?: _sinequa_atomic_angular.PreviewHighlights | undefined;
|
|
6650
|
+
assistantIdsToAttach: string[];
|
|
6651
|
+
multiSelection: Article$1[];
|
|
6652
|
+
}>;
|
|
6653
|
+
protected readonly queryParamsStore: {
|
|
6654
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
6655
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
6656
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
6657
|
+
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
6658
|
+
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
6659
|
+
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
6660
|
+
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
6661
|
+
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
6662
|
+
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
6663
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
6664
|
+
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
6665
|
+
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6666
|
+
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6667
|
+
globalRelevance?: _angular_core.Signal<number | undefined> | undefined;
|
|
6668
|
+
questionLanguage?: _angular_core.Signal<string | undefined> | undefined;
|
|
6669
|
+
questionDefaultLanguage?: _angular_core.Signal<string | undefined> | undefined;
|
|
6670
|
+
spellingCorrectionMode?: _angular_core.Signal<_sinequa_atomic.SpellingCorrectionMode | undefined> | undefined;
|
|
6671
|
+
spellingCorrectionFilter?: _angular_core.Signal<string | undefined> | undefined;
|
|
6672
|
+
documentWeight?: _angular_core.Signal<string | undefined> | undefined;
|
|
6673
|
+
textPartWeights?: _angular_core.Signal<string | undefined> | undefined;
|
|
6674
|
+
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
6675
|
+
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6676
|
+
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
6677
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
6678
|
+
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
6679
|
+
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
6680
|
+
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6681
|
+
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
6682
|
+
filters?: _angular_core.Signal<_sinequa_atomic.LegacyFilter[] | undefined> | undefined;
|
|
6683
|
+
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
6684
|
+
setFromUrl: (href: string) => void;
|
|
6685
|
+
getQueryParams: () => {
|
|
6686
|
+
f?: string;
|
|
6687
|
+
p?: number;
|
|
6688
|
+
s?: string;
|
|
6689
|
+
t?: string;
|
|
6690
|
+
q?: string;
|
|
6691
|
+
b?: string;
|
|
6692
|
+
n?: string;
|
|
6693
|
+
};
|
|
6694
|
+
addFilter: (filter: _sinequa_atomic.LegacyFilter, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
6695
|
+
updateFilter: (filter: _sinequa_atomic.LegacyFilter, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
6696
|
+
removeFilter: (field?: string) => void;
|
|
6697
|
+
removeFilterByName: (name?: string, column?: string) => void;
|
|
6698
|
+
clearFilters: () => void;
|
|
6699
|
+
clearBasket: () => void;
|
|
6700
|
+
patch: (params: Partial<_sinequa_atomic.QueryParams>, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
6701
|
+
getFilter: ({ field, name }: {
|
|
6702
|
+
field: string | undefined;
|
|
6703
|
+
name: string | undefined;
|
|
6704
|
+
}) => Partial<_sinequa_atomic.LegacyFilter & {
|
|
6705
|
+
count: number;
|
|
6706
|
+
}> | null;
|
|
6707
|
+
getQuery: () => _sinequa_atomic.Query;
|
|
6708
|
+
} & _ngrx_signals.StateSource<{
|
|
6709
|
+
name?: string | undefined;
|
|
6710
|
+
text?: string | undefined;
|
|
6711
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
6712
|
+
select?: _sinequa_atomic.Select[] | undefined;
|
|
6713
|
+
open?: _sinequa_atomic.Open[] | undefined;
|
|
6714
|
+
page?: number | undefined;
|
|
6715
|
+
pageSize?: number | undefined;
|
|
6716
|
+
tab?: string | undefined;
|
|
6717
|
+
scope?: string | undefined;
|
|
6718
|
+
sort?: string | undefined;
|
|
6719
|
+
basket?: string | undefined;
|
|
6720
|
+
isFirstPage?: boolean | undefined;
|
|
6721
|
+
strictRefine?: boolean | undefined;
|
|
6722
|
+
globalRelevance?: number | undefined;
|
|
6723
|
+
questionLanguage?: string | undefined;
|
|
6724
|
+
questionDefaultLanguage?: string | undefined;
|
|
6725
|
+
spellingCorrectionMode?: _sinequa_atomic.SpellingCorrectionMode | undefined;
|
|
6726
|
+
spellingCorrectionFilter?: string | undefined;
|
|
6727
|
+
documentWeight?: string | undefined;
|
|
6728
|
+
textPartWeights?: string | undefined;
|
|
6729
|
+
relevanceTransforms?: string | undefined;
|
|
6730
|
+
removeDuplicates?: boolean | undefined;
|
|
6731
|
+
queryId?: string | undefined;
|
|
6732
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
6733
|
+
orderBy?: string | undefined;
|
|
6734
|
+
groupBy?: string | undefined;
|
|
6735
|
+
neuralSearch?: boolean | undefined;
|
|
6736
|
+
path?: string | undefined;
|
|
6737
|
+
filters?: _sinequa_atomic.LegacyFilter[] | undefined;
|
|
6738
|
+
id?: string | undefined;
|
|
6739
|
+
}>;
|
|
6740
|
+
protected readonly queryText: _angular_core.WritableSignal<string>;
|
|
6741
|
+
queryName: _angular_core.Signal<string>;
|
|
6742
|
+
protected executeSearch(): void;
|
|
6743
|
+
protected clearInput(): void;
|
|
6744
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AdvancedSearch, never>;
|
|
6745
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AdvancedSearch, "advanced-search", never, { "article": { "alias": "article"; "required": true; "isSignal": true; }; "previewStrategy": { "alias": "previewStrategy"; "required": false; "isSignal": true; }; }, { "selected": "selected"; }, never, never, true, never>;
|
|
6746
|
+
}
|
|
6747
|
+
|
|
6748
|
+
interface MetadataNavigation {
|
|
6749
|
+
index: number;
|
|
6750
|
+
value: string;
|
|
6751
|
+
}
|
|
6752
|
+
declare class ArticleEntities {
|
|
6753
|
+
cn: typeof cn;
|
|
6754
|
+
protected readonly appStore: {
|
|
6755
|
+
name: _angular_core.Signal<string>;
|
|
6756
|
+
description?: _angular_core.Signal<string | undefined> | undefined;
|
|
6757
|
+
versionId: _angular_core.Signal<string>;
|
|
6758
|
+
queries: _angular_core.Signal<Record<string, _sinequa_atomic.CCQuery>>;
|
|
6759
|
+
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
6760
|
+
indexes: _angular_core.Signal<{
|
|
6761
|
+
_: _sinequa_atomic.CCIndex;
|
|
6762
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
6763
|
+
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
6764
|
+
webServices: _angular_core.Signal<Record<string, CCWebService>>;
|
|
6765
|
+
queryNames: _angular_core.Signal<string>;
|
|
6766
|
+
labels: _angular_core.Signal<string>;
|
|
6767
|
+
preview: _angular_core.Signal<string>;
|
|
6768
|
+
autocomplete: _angular_core.Signal<string>;
|
|
6769
|
+
sponsoredLinks: _angular_core.Signal<string>;
|
|
6770
|
+
queryExport: _angular_core.Signal<string>;
|
|
6771
|
+
queryRssEnabled: _angular_core.Signal<boolean>;
|
|
6772
|
+
data: _angular_core.Signal<Record<string, unknown> & _sinequa_atomic_angular.CJson & {
|
|
6773
|
+
filters?: _sinequa_atomic_angular.CAggregation[];
|
|
6774
|
+
autocomplete?: _sinequa_atomic_angular.Autocomplete;
|
|
6775
|
+
tabs?: Record<string, {
|
|
6776
|
+
filters: string[];
|
|
6777
|
+
overviews?: Record<string, {
|
|
6778
|
+
minRelevance: number;
|
|
6779
|
+
}>;
|
|
6780
|
+
}>;
|
|
6781
|
+
sources?: _sinequa_atomic_angular.CSources;
|
|
6782
|
+
features?: {
|
|
6783
|
+
[key: string]: boolean | {
|
|
6784
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
6785
|
+
} | undefined;
|
|
6786
|
+
allowChangePassword?: boolean;
|
|
6787
|
+
editablepartition?: boolean;
|
|
6788
|
+
advancedSearch?: boolean;
|
|
6789
|
+
allowChatDrawer?: boolean;
|
|
6790
|
+
filterLinkChildren?: boolean;
|
|
6791
|
+
expandPreview?: boolean;
|
|
6792
|
+
quickFilter?: boolean;
|
|
6793
|
+
showAggregationItemCount?: boolean;
|
|
6794
|
+
assistant?: {
|
|
6795
|
+
usePrefixName?: boolean;
|
|
6796
|
+
};
|
|
6797
|
+
filters?: {
|
|
6798
|
+
homepage?: boolean;
|
|
6799
|
+
};
|
|
6800
|
+
userProfile?: {
|
|
6801
|
+
enabled?: boolean;
|
|
6802
|
+
customData?: string[];
|
|
6803
|
+
};
|
|
6804
|
+
};
|
|
6805
|
+
allowAdvancedFilters?: boolean;
|
|
6806
|
+
general?: {
|
|
6807
|
+
name?: string;
|
|
6808
|
+
logo?: {
|
|
6809
|
+
alt?: string;
|
|
6810
|
+
light?: {
|
|
6811
|
+
small?: string;
|
|
6812
|
+
large?: string;
|
|
6813
|
+
};
|
|
6814
|
+
dark?: {
|
|
6815
|
+
small?: string;
|
|
6816
|
+
large?: string;
|
|
6817
|
+
};
|
|
6818
|
+
};
|
|
6819
|
+
features?: {
|
|
6820
|
+
[key: string]: boolean | {
|
|
6821
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
6822
|
+
} | undefined;
|
|
6823
|
+
allowChangePassword?: boolean;
|
|
6824
|
+
editablepartition?: boolean;
|
|
6825
|
+
advancedSearch?: boolean;
|
|
6826
|
+
allowChatDrawer?: boolean;
|
|
6827
|
+
filterLinkChildren?: boolean;
|
|
6828
|
+
expandPreview?: boolean;
|
|
6829
|
+
quickFilter?: boolean;
|
|
6830
|
+
showAggregationItemCount?: boolean;
|
|
6831
|
+
assistant?: {
|
|
6832
|
+
usePrefixName?: boolean;
|
|
6833
|
+
};
|
|
6834
|
+
filters?: {
|
|
6835
|
+
homepage?: boolean;
|
|
6836
|
+
};
|
|
6837
|
+
userProfile?: {
|
|
6838
|
+
enabled?: boolean;
|
|
6839
|
+
customData?: string[];
|
|
6840
|
+
};
|
|
6841
|
+
};
|
|
6842
|
+
};
|
|
6843
|
+
}>;
|
|
6844
|
+
customJSONs: _angular_core.Signal<{
|
|
6845
|
+
name: string;
|
|
6846
|
+
data: Record<string, unknown>;
|
|
6847
|
+
}[] & _sinequa_atomic_angular.SideCJson[]>;
|
|
6848
|
+
apiVersion: _angular_core.Signal<string>;
|
|
6849
|
+
workspaceApp: _angular_core.Signal<string>;
|
|
6850
|
+
defaultQueryName: _angular_core.Signal<string>;
|
|
6851
|
+
auditEnabled?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6852
|
+
dataSets?: _angular_core.Signal<string | undefined> | undefined;
|
|
6853
|
+
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
6854
|
+
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
6855
|
+
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
6856
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
6857
|
+
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
6858
|
+
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
6859
|
+
filters: _angular_core.Signal<_sinequa_atomic_angular.CFilter[]>;
|
|
6860
|
+
general: _angular_core.Signal<{
|
|
6861
|
+
name?: string;
|
|
6862
|
+
logo?: {
|
|
6863
|
+
alt?: string;
|
|
6864
|
+
light?: {
|
|
6865
|
+
small?: string;
|
|
6866
|
+
large?: string;
|
|
6867
|
+
};
|
|
6868
|
+
dark?: {
|
|
6869
|
+
small?: string;
|
|
6870
|
+
large?: string;
|
|
6871
|
+
};
|
|
6872
|
+
};
|
|
6873
|
+
features?: {
|
|
6874
|
+
[key: string]: boolean | {
|
|
6875
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
6876
|
+
} | undefined;
|
|
6877
|
+
allowChangePassword?: boolean;
|
|
6878
|
+
editablepartition?: boolean;
|
|
6879
|
+
advancedSearch?: boolean;
|
|
6880
|
+
allowChatDrawer?: boolean;
|
|
6881
|
+
filterLinkChildren?: boolean;
|
|
6882
|
+
expandPreview?: boolean;
|
|
6883
|
+
quickFilter?: boolean;
|
|
6884
|
+
showAggregationItemCount?: boolean;
|
|
6885
|
+
assistant?: {
|
|
6886
|
+
usePrefixName?: boolean;
|
|
6887
|
+
};
|
|
6888
|
+
filters?: {
|
|
6889
|
+
homepage?: boolean;
|
|
6890
|
+
};
|
|
6891
|
+
userProfile?: {
|
|
6892
|
+
enabled?: boolean;
|
|
6893
|
+
customData?: string[];
|
|
6894
|
+
};
|
|
6895
|
+
};
|
|
6896
|
+
} | undefined>;
|
|
6897
|
+
assistants: _angular_core.Signal<{
|
|
6898
|
+
[x: string]: _sinequa_atomic_angular.AssistantDetails;
|
|
6899
|
+
}>;
|
|
6900
|
+
initialize: () => Promise<void>;
|
|
6901
|
+
initializeWithAppName: (appName: string) => Promise<void>;
|
|
6902
|
+
update: (app: _sinequa_atomic.CCApp) => void;
|
|
6903
|
+
getWebServiceByType: (type: CCWebService["webServiceType"]) => CCWebService | undefined;
|
|
6904
|
+
getLabels: () => {
|
|
6905
|
+
private: string;
|
|
6906
|
+
public: string;
|
|
6907
|
+
};
|
|
6908
|
+
getQueryByName: (name: string) => _sinequa_atomic.CCQuery | undefined;
|
|
6909
|
+
getQueryByIndex: (index: number) => _sinequa_atomic.CCQuery | undefined;
|
|
6910
|
+
getDefaultQuery: () => _sinequa_atomic.CCQuery | undefined;
|
|
6911
|
+
allowEmptySearch: (queryName: string) => boolean;
|
|
6912
|
+
enableFieldedSearch: (queryName: string) => boolean;
|
|
6913
|
+
allowLabels: () => boolean;
|
|
6914
|
+
getColumnAlias: (column: string) => string;
|
|
6915
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
6916
|
+
isDateColumn: (column: string) => boolean;
|
|
6917
|
+
isTabSearch: (queryName: string) => boolean;
|
|
6918
|
+
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
6919
|
+
getAuthorizedFilters: () => _sinequa_atomic.Aggregation[];
|
|
6920
|
+
getAuthorized: (filters: Pick<_sinequa_atomic_angular.CFilter, "column" | "name">[]) => _sinequa_atomic.Aggregation[];
|
|
6921
|
+
getNamedCustomizationJson: (name: string) => unknown | undefined;
|
|
6922
|
+
getAggregationIcon: (column: string) => string | undefined;
|
|
6923
|
+
getAggregationItemsCustomization: (column: string) => _sinequa_atomic_angular.CFilterItem[] | undefined;
|
|
6924
|
+
getAggregationCustomization: (aggColumn: string, aggName?: string) => _sinequa_atomic_angular.CFilter | undefined;
|
|
6925
|
+
isAssistantAllowed: (assistantName: string) => boolean;
|
|
6926
|
+
} & _ngrx_signals.StateSource<{
|
|
6927
|
+
name: string;
|
|
6928
|
+
description?: string | undefined;
|
|
6929
|
+
versionId: string;
|
|
6930
|
+
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
6931
|
+
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
6932
|
+
indexes: {
|
|
6933
|
+
_: _sinequa_atomic.CCIndex;
|
|
6934
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
6935
|
+
lists: Record<string, _sinequa_atomic.CCList>;
|
|
6936
|
+
webServices: Record<string, CCWebService>;
|
|
6937
|
+
queryNames: string;
|
|
6938
|
+
labels: string;
|
|
6939
|
+
preview: string;
|
|
6940
|
+
autocomplete: string;
|
|
6941
|
+
sponsoredLinks: string;
|
|
6942
|
+
queryExport: string;
|
|
6943
|
+
queryRssEnabled: boolean;
|
|
6944
|
+
data: Record<string, unknown> & _sinequa_atomic_angular.CJson & {
|
|
6945
|
+
filters?: _sinequa_atomic_angular.CAggregation[];
|
|
6946
|
+
autocomplete?: _sinequa_atomic_angular.Autocomplete;
|
|
6947
|
+
tabs?: Record<string, {
|
|
6948
|
+
filters: string[];
|
|
6949
|
+
overviews?: Record<string, {
|
|
6950
|
+
minRelevance: number;
|
|
6951
|
+
}>;
|
|
6952
|
+
}>;
|
|
6953
|
+
sources?: _sinequa_atomic_angular.CSources;
|
|
6954
|
+
features?: {
|
|
6955
|
+
[key: string]: boolean | {
|
|
6956
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
6957
|
+
} | undefined;
|
|
6958
|
+
allowChangePassword?: boolean;
|
|
6959
|
+
editablepartition?: boolean;
|
|
6960
|
+
advancedSearch?: boolean;
|
|
6961
|
+
allowChatDrawer?: boolean;
|
|
6962
|
+
filterLinkChildren?: boolean;
|
|
6963
|
+
expandPreview?: boolean;
|
|
6964
|
+
quickFilter?: boolean;
|
|
6965
|
+
showAggregationItemCount?: boolean;
|
|
6966
|
+
assistant?: {
|
|
6967
|
+
usePrefixName?: boolean;
|
|
6968
|
+
};
|
|
6969
|
+
filters?: {
|
|
6970
|
+
homepage?: boolean;
|
|
6971
|
+
};
|
|
6972
|
+
userProfile?: {
|
|
6973
|
+
enabled?: boolean;
|
|
6974
|
+
customData?: string[];
|
|
6975
|
+
};
|
|
6976
|
+
};
|
|
6977
|
+
allowAdvancedFilters?: boolean;
|
|
6978
|
+
general?: {
|
|
6979
|
+
name?: string;
|
|
6980
|
+
logo?: {
|
|
6981
|
+
alt?: string;
|
|
6982
|
+
light?: {
|
|
6983
|
+
small?: string;
|
|
6984
|
+
large?: string;
|
|
6985
|
+
};
|
|
6986
|
+
dark?: {
|
|
6987
|
+
small?: string;
|
|
6988
|
+
large?: string;
|
|
6989
|
+
};
|
|
6990
|
+
};
|
|
6991
|
+
features?: {
|
|
6992
|
+
[key: string]: boolean | {
|
|
6993
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
6994
|
+
} | undefined;
|
|
6995
|
+
allowChangePassword?: boolean;
|
|
6996
|
+
editablepartition?: boolean;
|
|
6997
|
+
advancedSearch?: boolean;
|
|
6998
|
+
allowChatDrawer?: boolean;
|
|
6999
|
+
filterLinkChildren?: boolean;
|
|
7000
|
+
expandPreview?: boolean;
|
|
7001
|
+
quickFilter?: boolean;
|
|
7002
|
+
showAggregationItemCount?: boolean;
|
|
7003
|
+
assistant?: {
|
|
7004
|
+
usePrefixName?: boolean;
|
|
7005
|
+
};
|
|
7006
|
+
filters?: {
|
|
7007
|
+
homepage?: boolean;
|
|
7008
|
+
};
|
|
7009
|
+
userProfile?: {
|
|
7010
|
+
enabled?: boolean;
|
|
7011
|
+
customData?: string[];
|
|
7012
|
+
};
|
|
7013
|
+
};
|
|
7014
|
+
};
|
|
7015
|
+
};
|
|
7016
|
+
customJSONs: {
|
|
7017
|
+
name: string;
|
|
7018
|
+
data: Record<string, unknown>;
|
|
7019
|
+
}[] & _sinequa_atomic_angular.SideCJson[];
|
|
7020
|
+
apiVersion: string;
|
|
7021
|
+
workspaceApp: string;
|
|
7022
|
+
defaultQueryName: string;
|
|
7023
|
+
auditEnabled?: boolean | undefined;
|
|
7024
|
+
dataSets?: string | undefined;
|
|
7025
|
+
revision?: number | undefined;
|
|
7026
|
+
runnableModels?: string | undefined;
|
|
7027
|
+
authorizationLevel?: string | undefined;
|
|
7028
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
7029
|
+
}>;
|
|
7030
|
+
protected readonly previewService: PreviewService;
|
|
7031
|
+
readonly article: _angular_core.InputSignal<Article$1>;
|
|
7032
|
+
protected readonly previewHighlights: _angular_core.Signal<{
|
|
7033
|
+
name: string;
|
|
7034
|
+
entity: string;
|
|
7035
|
+
metadata: ArticleMetadata[];
|
|
7036
|
+
}[] | undefined>;
|
|
7037
|
+
getMetadata(article: Partial<Article$1 & Record<string, unknown>>, entity: string): ArticleMetadata[];
|
|
7038
|
+
navigation: _angular_core.WritableSignal<MetadataNavigation | undefined>;
|
|
7039
|
+
hovering: _angular_core.WritableSignal<string | undefined>;
|
|
7040
|
+
hoverIndex: _angular_core.Signal<number>;
|
|
7041
|
+
scrollTo(type: string | undefined, index: number, usePassageHighlighter?: boolean): void;
|
|
7042
|
+
private navigate;
|
|
7043
|
+
navigateNext(entity: string, data: ArticleMetadata): void;
|
|
7044
|
+
navigatePrev(entity: string, data: ArticleMetadata): void;
|
|
7045
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ArticleEntities, never>;
|
|
7046
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ArticleEntities, "article-entities,ArticleEntities,articleentities", never, { "article": { "alias": "article"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7047
|
+
}
|
|
7048
|
+
|
|
7049
|
+
declare class ArticleExtracts {
|
|
7050
|
+
cn: typeof cn;
|
|
7051
|
+
protected readonly destroyRef: DestroyRef;
|
|
7052
|
+
protected readonly applicationStore: {
|
|
7053
|
+
ready: _angular_core.Signal<boolean>;
|
|
7054
|
+
extracts: _angular_core.Signal<Map<string, Extract[]>>;
|
|
7055
|
+
extractsCount: _angular_core.Signal<number>;
|
|
7056
|
+
update: (state: Partial<_sinequa_atomic_angular.ApplicationState>) => void;
|
|
7057
|
+
updateReadyState: (value?: boolean) => void;
|
|
7058
|
+
updateExtracts: (id: string, extracts: Extract[]) => void;
|
|
7059
|
+
getExtracts: (id: string) => Extract[];
|
|
7060
|
+
} & _ngrx_signals.WritableStateSource<{
|
|
7061
|
+
ready: boolean;
|
|
7062
|
+
extracts: Map<string, Extract[]>;
|
|
7063
|
+
}>;
|
|
7064
|
+
protected readonly previewService: PreviewService;
|
|
7065
|
+
readonly article: _angular_core.InputSignal<Article$1>;
|
|
7066
|
+
loading: _angular_core.WritableSignal<boolean>;
|
|
7067
|
+
protected readonly extracts: _angular_core.WritableSignal<Extract[]>;
|
|
7068
|
+
constructor();
|
|
7069
|
+
scrollTo(type: string | undefined, index: number, usePassageHighlighter?: boolean): void;
|
|
7070
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ArticleExtracts, never>;
|
|
7071
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ArticleExtracts, "article-extracts, ArticleExtracts, articleextracts", never, { "article": { "alias": "article"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7072
|
+
}
|
|
7073
|
+
|
|
7074
|
+
declare class ArticleLabels {
|
|
7075
|
+
protected readonly labels: {
|
|
7076
|
+
private: string;
|
|
7077
|
+
public: string;
|
|
7078
|
+
};
|
|
7079
|
+
readonly article: _angular_core.InputSignal<Article$1>;
|
|
7080
|
+
readonly hasLabels: _angular_core.Signal<boolean | undefined>;
|
|
7081
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ArticleLabels, never>;
|
|
7082
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ArticleLabels, "article-labels, ArticleLabels, articlelabels", never, { "article": { "alias": "article"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7083
|
+
}
|
|
7084
|
+
|
|
7085
|
+
declare class ArticleSimilarDocuments {
|
|
7086
|
+
protected readonly queryParamsStore: {
|
|
7087
|
+
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
7088
|
+
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7089
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
7090
|
+
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
7091
|
+
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
7092
|
+
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
7093
|
+
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
7094
|
+
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
7095
|
+
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
7096
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7097
|
+
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
7098
|
+
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7099
|
+
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7100
|
+
globalRelevance?: _angular_core.Signal<number | undefined> | undefined;
|
|
7101
|
+
questionLanguage?: _angular_core.Signal<string | undefined> | undefined;
|
|
7102
|
+
questionDefaultLanguage?: _angular_core.Signal<string | undefined> | undefined;
|
|
7103
|
+
spellingCorrectionMode?: _angular_core.Signal<_sinequa_atomic.SpellingCorrectionMode | undefined> | undefined;
|
|
7104
|
+
spellingCorrectionFilter?: _angular_core.Signal<string | undefined> | undefined;
|
|
7105
|
+
documentWeight?: _angular_core.Signal<string | undefined> | undefined;
|
|
7106
|
+
textPartWeights?: _angular_core.Signal<string | undefined> | undefined;
|
|
7107
|
+
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
7108
|
+
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7109
|
+
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
7110
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7111
|
+
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7112
|
+
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7113
|
+
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7114
|
+
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
7115
|
+
filters?: _angular_core.Signal<_sinequa_atomic.LegacyFilter[] | undefined> | undefined;
|
|
7116
|
+
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
7117
|
+
setFromUrl: (href: string) => void;
|
|
7118
|
+
getQueryParams: () => {
|
|
7119
|
+
f?: string;
|
|
7120
|
+
p?: number;
|
|
7121
|
+
s?: string;
|
|
7122
|
+
t?: string;
|
|
7123
|
+
q?: string;
|
|
7124
|
+
b?: string;
|
|
7125
|
+
n?: string;
|
|
7126
|
+
};
|
|
7127
|
+
addFilter: (filter: _sinequa_atomic.LegacyFilter, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
7128
|
+
updateFilter: (filter: _sinequa_atomic.LegacyFilter, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
7129
|
+
removeFilter: (field?: string) => void;
|
|
7130
|
+
removeFilterByName: (name?: string, column?: string) => void;
|
|
7131
|
+
clearFilters: () => void;
|
|
7132
|
+
clearBasket: () => void;
|
|
7133
|
+
patch: (params: Partial<_sinequa_atomic.QueryParams>, audit?: _sinequa_atomic.AuditEvents) => void;
|
|
7134
|
+
getFilter: ({ field, name }: {
|
|
7135
|
+
field: string | undefined;
|
|
7136
|
+
name: string | undefined;
|
|
7137
|
+
}) => Partial<_sinequa_atomic.LegacyFilter & {
|
|
7138
|
+
count: number;
|
|
7139
|
+
}> | null;
|
|
7140
|
+
getQuery: () => _sinequa_atomic.Query;
|
|
7141
|
+
} & _ngrx_signals.StateSource<{
|
|
7142
|
+
name?: string | undefined;
|
|
7143
|
+
text?: string | undefined;
|
|
7144
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
7145
|
+
select?: _sinequa_atomic.Select[] | undefined;
|
|
7146
|
+
open?: _sinequa_atomic.Open[] | undefined;
|
|
7147
|
+
page?: number | undefined;
|
|
7148
|
+
pageSize?: number | undefined;
|
|
7149
|
+
tab?: string | undefined;
|
|
7150
|
+
scope?: string | undefined;
|
|
7151
|
+
sort?: string | undefined;
|
|
7152
|
+
basket?: string | undefined;
|
|
7153
|
+
isFirstPage?: boolean | undefined;
|
|
7154
|
+
strictRefine?: boolean | undefined;
|
|
7155
|
+
globalRelevance?: number | undefined;
|
|
7156
|
+
questionLanguage?: string | undefined;
|
|
7157
|
+
questionDefaultLanguage?: string | undefined;
|
|
7158
|
+
spellingCorrectionMode?: _sinequa_atomic.SpellingCorrectionMode | undefined;
|
|
7159
|
+
spellingCorrectionFilter?: string | undefined;
|
|
7160
|
+
documentWeight?: string | undefined;
|
|
7161
|
+
textPartWeights?: string | undefined;
|
|
7162
|
+
relevanceTransforms?: string | undefined;
|
|
7163
|
+
removeDuplicates?: boolean | undefined;
|
|
7164
|
+
queryId?: string | undefined;
|
|
7165
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7166
|
+
orderBy?: string | undefined;
|
|
7167
|
+
groupBy?: string | undefined;
|
|
7168
|
+
neuralSearch?: boolean | undefined;
|
|
7169
|
+
path?: string | undefined;
|
|
7170
|
+
filters?: _sinequa_atomic.LegacyFilter[] | undefined;
|
|
7171
|
+
id?: string | undefined;
|
|
7172
|
+
}>;
|
|
7173
|
+
readonly article: _angular_core.InputSignal<Article$1>;
|
|
7174
|
+
readonly strategy: _angular_core.InputSignal<SelectionStrategy>;
|
|
7175
|
+
readonly selected: _angular_core.OutputEmitterRef<Article$1>;
|
|
7176
|
+
queryName: _angular_core.Signal<string>;
|
|
7177
|
+
readonly similarDocumentsResource: _angular_core.ResourceRef<Article$1[]>;
|
|
7178
|
+
protected readonly similarDocuments: _angular_core.Signal<Article$1[]>;
|
|
7179
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ArticleSimilarDocuments, never>;
|
|
7180
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ArticleSimilarDocuments, "article-similar-documents, ArticleSimilarDocuments, articlesimilardocuments", never, { "article": { "alias": "article"; "required": true; "isSignal": true; }; "strategy": { "alias": "strategy"; "required": false; "isSignal": true; }; }, { "selected": "selected"; }, never, never, true, never>;
|
|
7181
|
+
}
|
|
7182
|
+
|
|
7183
|
+
declare class AlertDialog implements DialogInterface {
|
|
7184
|
+
private readonly queryService;
|
|
7185
|
+
private readonly queryParamsStore;
|
|
7186
|
+
private readonly userSettingsStore;
|
|
7187
|
+
readonly dialog: _angular_core.Signal<DialogComponent | undefined>;
|
|
7188
|
+
frequencies: Alert.Frequency[];
|
|
7189
|
+
frequency: typeof Alert.Frequency;
|
|
7190
|
+
weekdays: {
|
|
7191
|
+
key: string;
|
|
7192
|
+
value: Alert.Days;
|
|
7193
|
+
}[];
|
|
7194
|
+
index?: number;
|
|
7195
|
+
alert?: Alert;
|
|
7196
|
+
alertName: _angular_core.WritableSignal<string>;
|
|
7197
|
+
alertFrequency: _angular_core.WritableSignal<Alert.Frequency>;
|
|
7198
|
+
alertDays: _angular_core.WritableSignal<Alert.Days>;
|
|
7199
|
+
alertTimes: _angular_core.WritableSignal<string>;
|
|
7200
|
+
alertActive: _angular_core.WritableSignal<boolean>;
|
|
7201
|
+
canUpdateQuery: _angular_core.WritableSignal<boolean>;
|
|
7202
|
+
updateStatus: _angular_core.WritableSignal<"idle" | "updating" | "updated">;
|
|
7203
|
+
invalidForm: _angular_core.Signal<boolean>;
|
|
7204
|
+
closed: _angular_core.OutputEmitterRef<DialogEvent>;
|
|
7205
|
+
open(index: number): void;
|
|
7206
|
+
showModal(index?: number): Promise<void>;
|
|
7207
|
+
confirm(): Promise<void>;
|
|
7208
|
+
private create;
|
|
6229
7209
|
private update;
|
|
6230
7210
|
dayChecked(day: Alert.Days): boolean;
|
|
6231
7211
|
dayChange(event: Event, day: Alert.Days): void;
|
|
@@ -6442,7 +7422,7 @@ declare class CollectionsDialog implements DialogInterface {
|
|
|
6442
7422
|
readonly removedFromCollection: _angular_core.WritableSignal<boolean>;
|
|
6443
7423
|
readonly addedToCollection: _angular_core.WritableSignal<boolean>;
|
|
6444
7424
|
readonly collections: _angular_core.Signal<Basket[]>;
|
|
6445
|
-
readonly collectionsMap: _angular_core.WritableSignal<Record<string, "some" | "
|
|
7425
|
+
readonly collectionsMap: _angular_core.WritableSignal<Record<string, "some" | "none" | "all">>;
|
|
6446
7426
|
open(article: Article$1 | Article$1[]): void;
|
|
6447
7427
|
containsArticleByName(collectionName: string): boolean;
|
|
6448
7428
|
containsArticle(collection: Basket): "all" | "some" | "none";
|
|
@@ -6492,6 +7472,12 @@ declare class DidYouMeanComponent {
|
|
|
6492
7472
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DidYouMeanComponent, "did-you-mean, DidYouMean, didyoumean", never, { "result": { "alias": "result"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
6493
7473
|
}
|
|
6494
7474
|
|
|
7475
|
+
/**
|
|
7476
|
+
* Service to manage the state and behavior of a drawer component.
|
|
7477
|
+
* It provides methods to open, close, extend, collapse, and toggle
|
|
7478
|
+
* the drawer and its extension state.
|
|
7479
|
+
* @deprecated we do not use it anymore.
|
|
7480
|
+
*/
|
|
6495
7481
|
declare class DrawerService {
|
|
6496
7482
|
readonly isOpened: _angular_core.WritableSignal<boolean>;
|
|
6497
7483
|
readonly isExtended: _angular_core.WritableSignal<boolean>;
|
|
@@ -6509,6 +7495,9 @@ declare class DrawerService {
|
|
|
6509
7495
|
/**
|
|
6510
7496
|
* Each Drawer component has it's own drawer service to handle its state and link it to the drawer stack.
|
|
6511
7497
|
*/
|
|
7498
|
+
/**
|
|
7499
|
+
* @deprecated we do not use it anymore.
|
|
7500
|
+
*/
|
|
6512
7501
|
declare class DrawerComponent {
|
|
6513
7502
|
drawerOpened: _angular_core.WritableSignal<boolean>;
|
|
6514
7503
|
drawerExtended: _angular_core.WritableSignal<boolean>;
|
|
@@ -6542,6 +7531,16 @@ interface Tab {
|
|
|
6542
7531
|
path: string;
|
|
6543
7532
|
display?: string;
|
|
6544
7533
|
}
|
|
7534
|
+
/**
|
|
7535
|
+
* Advanced filters drawer component allowing users to apply complex filters to their search queries.
|
|
7536
|
+
* It provides a user interface for selecting filter criteria, managing applied filters,
|
|
7537
|
+
* and executing searches with the specified filters.
|
|
7538
|
+
*
|
|
7539
|
+
* This component extends the base DrawerComponent and integrates with the application's
|
|
7540
|
+
* query parameters store and app store to manage filter states and search execution.
|
|
7541
|
+
*
|
|
7542
|
+
* @deprecated Use the `AdvancedFiltersComponent` component instead.
|
|
7543
|
+
*/
|
|
6545
7544
|
declare class DrawerAdvancedFiltersComponent extends DrawerComponent {
|
|
6546
7545
|
private readonly queryParamsStore;
|
|
6547
7546
|
private readonly appStore;
|
|
@@ -6609,6 +7608,12 @@ declare class DrawerAdvancedFiltersComponent extends DrawerComponent {
|
|
|
6609
7608
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DrawerAdvancedFiltersComponent, "advanced-filters", never, {}, {}, never, never, true, never>;
|
|
6610
7609
|
}
|
|
6611
7610
|
|
|
7611
|
+
/**
|
|
7612
|
+
* Advanced Search Component
|
|
7613
|
+
* This component provides an advanced search interface with various panels for entities, extracts, labels, and similar documents.
|
|
7614
|
+
*
|
|
7615
|
+
* @deprecated Use `AdvancedSearch` component instead.
|
|
7616
|
+
*/
|
|
6612
7617
|
declare class AdvancedSearchComponent {
|
|
6613
7618
|
cn: typeof cn;
|
|
6614
7619
|
readonly article: _angular_core.InputSignal<Article$1>;
|
|
@@ -6639,8 +7644,6 @@ declare class AdvancedSearchComponent {
|
|
|
6639
7644
|
}>;
|
|
6640
7645
|
protected readonly queryParamsStore: {
|
|
6641
7646
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
6642
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
6643
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
6644
7647
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
6645
7648
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
6646
7649
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -6649,6 +7652,7 @@ declare class AdvancedSearchComponent {
|
|
|
6649
7652
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
6650
7653
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
6651
7654
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
7655
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
6652
7656
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
6653
7657
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6654
7658
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -6662,6 +7666,7 @@ declare class AdvancedSearchComponent {
|
|
|
6662
7666
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
6663
7667
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6664
7668
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
7669
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
6665
7670
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
6666
7671
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
6667
7672
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -6694,8 +7699,6 @@ declare class AdvancedSearchComponent {
|
|
|
6694
7699
|
getQuery: () => _sinequa_atomic.Query;
|
|
6695
7700
|
} & _ngrx_signals.StateSource<{
|
|
6696
7701
|
name?: string | undefined;
|
|
6697
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
6698
|
-
sort?: string | undefined;
|
|
6699
7702
|
text?: string | undefined;
|
|
6700
7703
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
6701
7704
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -6704,6 +7707,7 @@ declare class AdvancedSearchComponent {
|
|
|
6704
7707
|
pageSize?: number | undefined;
|
|
6705
7708
|
tab?: string | undefined;
|
|
6706
7709
|
scope?: string | undefined;
|
|
7710
|
+
sort?: string | undefined;
|
|
6707
7711
|
basket?: string | undefined;
|
|
6708
7712
|
isFirstPage?: boolean | undefined;
|
|
6709
7713
|
strictRefine?: boolean | undefined;
|
|
@@ -6717,6 +7721,7 @@ declare class AdvancedSearchComponent {
|
|
|
6717
7721
|
relevanceTransforms?: string | undefined;
|
|
6718
7722
|
removeDuplicates?: boolean | undefined;
|
|
6719
7723
|
queryId?: string | undefined;
|
|
7724
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
6720
7725
|
orderBy?: string | undefined;
|
|
6721
7726
|
groupBy?: string | undefined;
|
|
6722
7727
|
neuralSearch?: boolean | undefined;
|
|
@@ -6732,6 +7737,12 @@ declare class AdvancedSearchComponent {
|
|
|
6732
7737
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AdvancedSearchComponent, "advanced-search", never, { "article": { "alias": "article"; "required": true; "isSignal": true; }; "previewStrategy": { "alias": "previewStrategy"; "required": false; "isSignal": true; }; }, { "selected": "selected"; }, never, never, true, never>;
|
|
6733
7738
|
}
|
|
6734
7739
|
|
|
7740
|
+
/**
|
|
7741
|
+
* Navbar component for drawers, providing navigation controls such as a back button.
|
|
7742
|
+
* It interacts with the DrawerStackService to manage drawer navigation.
|
|
7743
|
+
*
|
|
7744
|
+
* @deprecated we do not use it anymore.
|
|
7745
|
+
*/
|
|
6735
7746
|
declare class DrawerNavbarComponent {
|
|
6736
7747
|
protected readonly drawerStack: DrawerStackService;
|
|
6737
7748
|
protected readonly drawerService: DrawerService;
|
|
@@ -6746,8 +7757,15 @@ type DocumentTypeMap = {
|
|
|
6746
7757
|
previewComponent: Type<unknown>;
|
|
6747
7758
|
};
|
|
6748
7759
|
declare const COMPONENTS_FOR_DOCUMENT_TYPE: InjectionToken<(documentType?: string) => DocumentTypeMap>;
|
|
7760
|
+
/**
|
|
7761
|
+
* Component for previewing articles in a drawer.
|
|
7762
|
+
* It dynamically loads the appropriate preview component based on the article's document type.
|
|
7763
|
+
* It also manages the lifecycle of the preview, ensuring that resources are cleaned up when the drawer is closed.
|
|
7764
|
+
*
|
|
7765
|
+
* @extends DrawerComponent
|
|
7766
|
+
* @deprecated we do not use it anymore.
|
|
7767
|
+
*/
|
|
6749
7768
|
declare class DrawerPreviewComponent extends DrawerComponent {
|
|
6750
|
-
private readonly globalQueryName;
|
|
6751
7769
|
private destroyRef;
|
|
6752
7770
|
injector: Injector;
|
|
6753
7771
|
appStore: {
|
|
@@ -6780,7 +7798,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
6780
7798
|
sources?: _sinequa_atomic_angular.CSources;
|
|
6781
7799
|
features?: {
|
|
6782
7800
|
[key: string]: boolean | {
|
|
6783
|
-
[key: string]: boolean | undefined;
|
|
7801
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
6784
7802
|
} | undefined;
|
|
6785
7803
|
allowChangePassword?: boolean;
|
|
6786
7804
|
editablepartition?: boolean;
|
|
@@ -6796,6 +7814,10 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
6796
7814
|
filters?: {
|
|
6797
7815
|
homepage?: boolean;
|
|
6798
7816
|
};
|
|
7817
|
+
userProfile?: {
|
|
7818
|
+
enabled?: boolean;
|
|
7819
|
+
customData?: string[];
|
|
7820
|
+
};
|
|
6799
7821
|
};
|
|
6800
7822
|
allowAdvancedFilters?: boolean;
|
|
6801
7823
|
general?: {
|
|
@@ -6813,7 +7835,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
6813
7835
|
};
|
|
6814
7836
|
features?: {
|
|
6815
7837
|
[key: string]: boolean | {
|
|
6816
|
-
[key: string]: boolean | undefined;
|
|
7838
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
6817
7839
|
} | undefined;
|
|
6818
7840
|
allowChangePassword?: boolean;
|
|
6819
7841
|
editablepartition?: boolean;
|
|
@@ -6829,6 +7851,10 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
6829
7851
|
filters?: {
|
|
6830
7852
|
homepage?: boolean;
|
|
6831
7853
|
};
|
|
7854
|
+
userProfile?: {
|
|
7855
|
+
enabled?: boolean;
|
|
7856
|
+
customData?: string[];
|
|
7857
|
+
};
|
|
6832
7858
|
};
|
|
6833
7859
|
};
|
|
6834
7860
|
}>;
|
|
@@ -6863,7 +7889,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
6863
7889
|
};
|
|
6864
7890
|
features?: {
|
|
6865
7891
|
[key: string]: boolean | {
|
|
6866
|
-
[key: string]: boolean | undefined;
|
|
7892
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
6867
7893
|
} | undefined;
|
|
6868
7894
|
allowChangePassword?: boolean;
|
|
6869
7895
|
editablepartition?: boolean;
|
|
@@ -6879,6 +7905,10 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
6879
7905
|
filters?: {
|
|
6880
7906
|
homepage?: boolean;
|
|
6881
7907
|
};
|
|
7908
|
+
userProfile?: {
|
|
7909
|
+
enabled?: boolean;
|
|
7910
|
+
customData?: string[];
|
|
7911
|
+
};
|
|
6882
7912
|
};
|
|
6883
7913
|
} | undefined>;
|
|
6884
7914
|
assistants: _angular_core.Signal<{
|
|
@@ -6940,7 +7970,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
6940
7970
|
sources?: _sinequa_atomic_angular.CSources;
|
|
6941
7971
|
features?: {
|
|
6942
7972
|
[key: string]: boolean | {
|
|
6943
|
-
[key: string]: boolean | undefined;
|
|
7973
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
6944
7974
|
} | undefined;
|
|
6945
7975
|
allowChangePassword?: boolean;
|
|
6946
7976
|
editablepartition?: boolean;
|
|
@@ -6956,6 +7986,10 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
6956
7986
|
filters?: {
|
|
6957
7987
|
homepage?: boolean;
|
|
6958
7988
|
};
|
|
7989
|
+
userProfile?: {
|
|
7990
|
+
enabled?: boolean;
|
|
7991
|
+
customData?: string[];
|
|
7992
|
+
};
|
|
6959
7993
|
};
|
|
6960
7994
|
allowAdvancedFilters?: boolean;
|
|
6961
7995
|
general?: {
|
|
@@ -6973,7 +8007,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
6973
8007
|
};
|
|
6974
8008
|
features?: {
|
|
6975
8009
|
[key: string]: boolean | {
|
|
6976
|
-
[key: string]: boolean | undefined;
|
|
8010
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
6977
8011
|
} | undefined;
|
|
6978
8012
|
allowChangePassword?: boolean;
|
|
6979
8013
|
editablepartition?: boolean;
|
|
@@ -6989,6 +8023,10 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
6989
8023
|
filters?: {
|
|
6990
8024
|
homepage?: boolean;
|
|
6991
8025
|
};
|
|
8026
|
+
userProfile?: {
|
|
8027
|
+
enabled?: boolean;
|
|
8028
|
+
customData?: string[];
|
|
8029
|
+
};
|
|
6992
8030
|
};
|
|
6993
8031
|
};
|
|
6994
8032
|
};
|
|
@@ -7031,8 +8069,6 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
7031
8069
|
}>;
|
|
7032
8070
|
queryParamsStore: {
|
|
7033
8071
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
7034
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7035
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7036
8072
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7037
8073
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
7038
8074
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -7041,6 +8077,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
7041
8077
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
7042
8078
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
7043
8079
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
8080
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7044
8081
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
7045
8082
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7046
8083
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7054,6 +8091,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
7054
8091
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
7055
8092
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7056
8093
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
8094
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7057
8095
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7058
8096
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7059
8097
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7086,8 +8124,6 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
7086
8124
|
getQuery: () => _sinequa_atomic.Query;
|
|
7087
8125
|
} & _ngrx_signals.StateSource<{
|
|
7088
8126
|
name?: string | undefined;
|
|
7089
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7090
|
-
sort?: string | undefined;
|
|
7091
8127
|
text?: string | undefined;
|
|
7092
8128
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
7093
8129
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -7096,6 +8132,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
7096
8132
|
pageSize?: number | undefined;
|
|
7097
8133
|
tab?: string | undefined;
|
|
7098
8134
|
scope?: string | undefined;
|
|
8135
|
+
sort?: string | undefined;
|
|
7099
8136
|
basket?: string | undefined;
|
|
7100
8137
|
isFirstPage?: boolean | undefined;
|
|
7101
8138
|
strictRefine?: boolean | undefined;
|
|
@@ -7109,6 +8146,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
7109
8146
|
relevanceTransforms?: string | undefined;
|
|
7110
8147
|
removeDuplicates?: boolean | undefined;
|
|
7111
8148
|
queryId?: string | undefined;
|
|
8149
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7112
8150
|
orderBy?: string | undefined;
|
|
7113
8151
|
groupBy?: string | undefined;
|
|
7114
8152
|
neuralSearch?: boolean | undefined;
|
|
@@ -7122,13 +8160,22 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
7122
8160
|
queryText: _angular_core.Signal<string | undefined>;
|
|
7123
8161
|
readonly article: _angular_core.Signal<_sinequa_atomic.Article | undefined>;
|
|
7124
8162
|
readonly previewType: _angular_core.Signal<Type<unknown>>;
|
|
7125
|
-
|
|
8163
|
+
private readonly globalQueryName;
|
|
8164
|
+
constructor(destroyRef: DestroyRef);
|
|
7126
8165
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DrawerPreviewComponent, never>;
|
|
7127
8166
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DrawerPreviewComponent, "DrawerPreview, drawerpreview", never, { "articleId": { "alias": "articleId"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
7128
8167
|
}
|
|
7129
8168
|
|
|
7130
8169
|
declare const DRAWER_COMPONENT: InjectionToken<Type<DrawerComponent>>;
|
|
7131
8170
|
declare const DRAWER_STACK_MAX_COUNT: InjectionToken<number>;
|
|
8171
|
+
/**
|
|
8172
|
+
* Component that manages a stack of drawers in the application.
|
|
8173
|
+
* It listens to the DrawerStackService for events to open, close,
|
|
8174
|
+
* and manage drawers, and dynamically creates and destroys drawer
|
|
8175
|
+
* components as needed.
|
|
8176
|
+
*
|
|
8177
|
+
* @deprecated we do not use it anymore.
|
|
8178
|
+
*/
|
|
7132
8179
|
declare class DrawerStackComponent {
|
|
7133
8180
|
drawerOpened: _angular_core.Signal<boolean>;
|
|
7134
8181
|
readonly drawerStackService: DrawerStackService;
|
|
@@ -7220,8 +8267,6 @@ declare class ExportDialog implements DialogInterface {
|
|
|
7220
8267
|
readonly exportService: ExportService;
|
|
7221
8268
|
readonly queryParamsStore: {
|
|
7222
8269
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
7223
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7224
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7225
8270
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7226
8271
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
7227
8272
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -7230,6 +8275,7 @@ declare class ExportDialog implements DialogInterface {
|
|
|
7230
8275
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
7231
8276
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
7232
8277
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
8278
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7233
8279
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
7234
8280
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7235
8281
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7243,6 +8289,7 @@ declare class ExportDialog implements DialogInterface {
|
|
|
7243
8289
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
7244
8290
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7245
8291
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
8292
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7246
8293
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7247
8294
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7248
8295
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7275,8 +8322,6 @@ declare class ExportDialog implements DialogInterface {
|
|
|
7275
8322
|
getQuery: () => _sinequa_atomic.Query;
|
|
7276
8323
|
} & _ngrx_signals.StateSource<{
|
|
7277
8324
|
name?: string | undefined;
|
|
7278
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7279
|
-
sort?: string | undefined;
|
|
7280
8325
|
text?: string | undefined;
|
|
7281
8326
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
7282
8327
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -7285,6 +8330,7 @@ declare class ExportDialog implements DialogInterface {
|
|
|
7285
8330
|
pageSize?: number | undefined;
|
|
7286
8331
|
tab?: string | undefined;
|
|
7287
8332
|
scope?: string | undefined;
|
|
8333
|
+
sort?: string | undefined;
|
|
7288
8334
|
basket?: string | undefined;
|
|
7289
8335
|
isFirstPage?: boolean | undefined;
|
|
7290
8336
|
strictRefine?: boolean | undefined;
|
|
@@ -7298,6 +8344,7 @@ declare class ExportDialog implements DialogInterface {
|
|
|
7298
8344
|
relevanceTransforms?: string | undefined;
|
|
7299
8345
|
removeDuplicates?: boolean | undefined;
|
|
7300
8346
|
queryId?: string | undefined;
|
|
8347
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7301
8348
|
orderBy?: string | undefined;
|
|
7302
8349
|
groupBy?: string | undefined;
|
|
7303
8350
|
neuralSearch?: boolean | undefined;
|
|
@@ -7355,7 +8402,7 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
7355
8402
|
sources?: _sinequa_atomic_angular.CSources;
|
|
7356
8403
|
features?: {
|
|
7357
8404
|
[key: string]: boolean | {
|
|
7358
|
-
[key: string]: boolean | undefined;
|
|
8405
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
7359
8406
|
} | undefined;
|
|
7360
8407
|
allowChangePassword?: boolean;
|
|
7361
8408
|
editablepartition?: boolean;
|
|
@@ -7371,6 +8418,10 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
7371
8418
|
filters?: {
|
|
7372
8419
|
homepage?: boolean;
|
|
7373
8420
|
};
|
|
8421
|
+
userProfile?: {
|
|
8422
|
+
enabled?: boolean;
|
|
8423
|
+
customData?: string[];
|
|
8424
|
+
};
|
|
7374
8425
|
};
|
|
7375
8426
|
allowAdvancedFilters?: boolean;
|
|
7376
8427
|
general?: {
|
|
@@ -7388,7 +8439,7 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
7388
8439
|
};
|
|
7389
8440
|
features?: {
|
|
7390
8441
|
[key: string]: boolean | {
|
|
7391
|
-
[key: string]: boolean | undefined;
|
|
8442
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
7392
8443
|
} | undefined;
|
|
7393
8444
|
allowChangePassword?: boolean;
|
|
7394
8445
|
editablepartition?: boolean;
|
|
@@ -7404,6 +8455,10 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
7404
8455
|
filters?: {
|
|
7405
8456
|
homepage?: boolean;
|
|
7406
8457
|
};
|
|
8458
|
+
userProfile?: {
|
|
8459
|
+
enabled?: boolean;
|
|
8460
|
+
customData?: string[];
|
|
8461
|
+
};
|
|
7407
8462
|
};
|
|
7408
8463
|
};
|
|
7409
8464
|
}>;
|
|
@@ -7438,7 +8493,7 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
7438
8493
|
};
|
|
7439
8494
|
features?: {
|
|
7440
8495
|
[key: string]: boolean | {
|
|
7441
|
-
[key: string]: boolean | undefined;
|
|
8496
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
7442
8497
|
} | undefined;
|
|
7443
8498
|
allowChangePassword?: boolean;
|
|
7444
8499
|
editablepartition?: boolean;
|
|
@@ -7454,6 +8509,10 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
7454
8509
|
filters?: {
|
|
7455
8510
|
homepage?: boolean;
|
|
7456
8511
|
};
|
|
8512
|
+
userProfile?: {
|
|
8513
|
+
enabled?: boolean;
|
|
8514
|
+
customData?: string[];
|
|
8515
|
+
};
|
|
7457
8516
|
};
|
|
7458
8517
|
} | undefined>;
|
|
7459
8518
|
assistants: _angular_core.Signal<{
|
|
@@ -7515,7 +8574,7 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
7515
8574
|
sources?: _sinequa_atomic_angular.CSources;
|
|
7516
8575
|
features?: {
|
|
7517
8576
|
[key: string]: boolean | {
|
|
7518
|
-
[key: string]: boolean | undefined;
|
|
8577
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
7519
8578
|
} | undefined;
|
|
7520
8579
|
allowChangePassword?: boolean;
|
|
7521
8580
|
editablepartition?: boolean;
|
|
@@ -7531,6 +8590,10 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
7531
8590
|
filters?: {
|
|
7532
8591
|
homepage?: boolean;
|
|
7533
8592
|
};
|
|
8593
|
+
userProfile?: {
|
|
8594
|
+
enabled?: boolean;
|
|
8595
|
+
customData?: string[];
|
|
8596
|
+
};
|
|
7534
8597
|
};
|
|
7535
8598
|
allowAdvancedFilters?: boolean;
|
|
7536
8599
|
general?: {
|
|
@@ -7548,7 +8611,7 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
7548
8611
|
};
|
|
7549
8612
|
features?: {
|
|
7550
8613
|
[key: string]: boolean | {
|
|
7551
|
-
[key: string]: boolean | undefined;
|
|
8614
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
7552
8615
|
} | undefined;
|
|
7553
8616
|
allowChangePassword?: boolean;
|
|
7554
8617
|
editablepartition?: boolean;
|
|
@@ -7564,6 +8627,10 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
7564
8627
|
filters?: {
|
|
7565
8628
|
homepage?: boolean;
|
|
7566
8629
|
};
|
|
8630
|
+
userProfile?: {
|
|
8631
|
+
enabled?: boolean;
|
|
8632
|
+
customData?: string[];
|
|
8633
|
+
};
|
|
7567
8634
|
};
|
|
7568
8635
|
};
|
|
7569
8636
|
};
|
|
@@ -7601,8 +8668,6 @@ declare class SearchFeedbackComponent {
|
|
|
7601
8668
|
readonly auditService: AuditService;
|
|
7602
8669
|
protected readonly queryParamsStore: {
|
|
7603
8670
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
7604
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7605
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7606
8671
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7607
8672
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
7608
8673
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -7611,6 +8676,7 @@ declare class SearchFeedbackComponent {
|
|
|
7611
8676
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
7612
8677
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
7613
8678
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
8679
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7614
8680
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
7615
8681
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7616
8682
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7624,6 +8690,7 @@ declare class SearchFeedbackComponent {
|
|
|
7624
8690
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
7625
8691
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7626
8692
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
8693
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7627
8694
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7628
8695
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7629
8696
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7656,8 +8723,6 @@ declare class SearchFeedbackComponent {
|
|
|
7656
8723
|
getQuery: () => _sinequa_atomic.Query;
|
|
7657
8724
|
} & _ngrx_signals.StateSource<{
|
|
7658
8725
|
name?: string | undefined;
|
|
7659
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7660
|
-
sort?: string | undefined;
|
|
7661
8726
|
text?: string | undefined;
|
|
7662
8727
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
7663
8728
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -7666,6 +8731,7 @@ declare class SearchFeedbackComponent {
|
|
|
7666
8731
|
pageSize?: number | undefined;
|
|
7667
8732
|
tab?: string | undefined;
|
|
7668
8733
|
scope?: string | undefined;
|
|
8734
|
+
sort?: string | undefined;
|
|
7669
8735
|
basket?: string | undefined;
|
|
7670
8736
|
isFirstPage?: boolean | undefined;
|
|
7671
8737
|
strictRefine?: boolean | undefined;
|
|
@@ -7679,6 +8745,7 @@ declare class SearchFeedbackComponent {
|
|
|
7679
8745
|
relevanceTransforms?: string | undefined;
|
|
7680
8746
|
removeDuplicates?: boolean | undefined;
|
|
7681
8747
|
queryId?: string | undefined;
|
|
8748
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7682
8749
|
orderBy?: string | undefined;
|
|
7683
8750
|
groupBy?: string | undefined;
|
|
7684
8751
|
neuralSearch?: boolean | undefined;
|
|
@@ -7716,8 +8783,6 @@ declare class AggregationComponent {
|
|
|
7716
8783
|
}>;
|
|
7717
8784
|
queryParamsStore: {
|
|
7718
8785
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
7719
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7720
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7721
8786
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7722
8787
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
7723
8788
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -7726,6 +8791,7 @@ declare class AggregationComponent {
|
|
|
7726
8791
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
7727
8792
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
7728
8793
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
8794
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
7729
8795
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
7730
8796
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7731
8797
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7739,6 +8805,7 @@ declare class AggregationComponent {
|
|
|
7739
8805
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
7740
8806
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7741
8807
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
8808
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
7742
8809
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7743
8810
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7744
8811
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -7771,8 +8838,6 @@ declare class AggregationComponent {
|
|
|
7771
8838
|
getQuery: () => Query;
|
|
7772
8839
|
} & _ngrx_signals.StateSource<{
|
|
7773
8840
|
name?: string | undefined;
|
|
7774
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7775
|
-
sort?: string | undefined;
|
|
7776
8841
|
text?: string | undefined;
|
|
7777
8842
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
7778
8843
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -7781,6 +8846,7 @@ declare class AggregationComponent {
|
|
|
7781
8846
|
pageSize?: number | undefined;
|
|
7782
8847
|
tab?: string | undefined;
|
|
7783
8848
|
scope?: string | undefined;
|
|
8849
|
+
sort?: string | undefined;
|
|
7784
8850
|
basket?: string | undefined;
|
|
7785
8851
|
isFirstPage?: boolean | undefined;
|
|
7786
8852
|
strictRefine?: boolean | undefined;
|
|
@@ -7794,6 +8860,7 @@ declare class AggregationComponent {
|
|
|
7794
8860
|
relevanceTransforms?: string | undefined;
|
|
7795
8861
|
removeDuplicates?: boolean | undefined;
|
|
7796
8862
|
queryId?: string | undefined;
|
|
8863
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
7797
8864
|
orderBy?: string | undefined;
|
|
7798
8865
|
groupBy?: string | undefined;
|
|
7799
8866
|
neuralSearch?: boolean | undefined;
|
|
@@ -7831,7 +8898,7 @@ declare class AggregationComponent {
|
|
|
7831
8898
|
sources?: _sinequa_atomic_angular.CSources;
|
|
7832
8899
|
features?: {
|
|
7833
8900
|
[key: string]: boolean | {
|
|
7834
|
-
[key: string]: boolean | undefined;
|
|
8901
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
7835
8902
|
} | undefined;
|
|
7836
8903
|
allowChangePassword?: boolean;
|
|
7837
8904
|
editablepartition?: boolean;
|
|
@@ -7847,6 +8914,10 @@ declare class AggregationComponent {
|
|
|
7847
8914
|
filters?: {
|
|
7848
8915
|
homepage?: boolean;
|
|
7849
8916
|
};
|
|
8917
|
+
userProfile?: {
|
|
8918
|
+
enabled?: boolean;
|
|
8919
|
+
customData?: string[];
|
|
8920
|
+
};
|
|
7850
8921
|
};
|
|
7851
8922
|
allowAdvancedFilters?: boolean;
|
|
7852
8923
|
general?: {
|
|
@@ -7864,7 +8935,7 @@ declare class AggregationComponent {
|
|
|
7864
8935
|
};
|
|
7865
8936
|
features?: {
|
|
7866
8937
|
[key: string]: boolean | {
|
|
7867
|
-
[key: string]: boolean | undefined;
|
|
8938
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
7868
8939
|
} | undefined;
|
|
7869
8940
|
allowChangePassword?: boolean;
|
|
7870
8941
|
editablepartition?: boolean;
|
|
@@ -7880,6 +8951,10 @@ declare class AggregationComponent {
|
|
|
7880
8951
|
filters?: {
|
|
7881
8952
|
homepage?: boolean;
|
|
7882
8953
|
};
|
|
8954
|
+
userProfile?: {
|
|
8955
|
+
enabled?: boolean;
|
|
8956
|
+
customData?: string[];
|
|
8957
|
+
};
|
|
7883
8958
|
};
|
|
7884
8959
|
};
|
|
7885
8960
|
}>;
|
|
@@ -7914,7 +8989,7 @@ declare class AggregationComponent {
|
|
|
7914
8989
|
};
|
|
7915
8990
|
features?: {
|
|
7916
8991
|
[key: string]: boolean | {
|
|
7917
|
-
[key: string]: boolean | undefined;
|
|
8992
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
7918
8993
|
} | undefined;
|
|
7919
8994
|
allowChangePassword?: boolean;
|
|
7920
8995
|
editablepartition?: boolean;
|
|
@@ -7930,6 +9005,10 @@ declare class AggregationComponent {
|
|
|
7930
9005
|
filters?: {
|
|
7931
9006
|
homepage?: boolean;
|
|
7932
9007
|
};
|
|
9008
|
+
userProfile?: {
|
|
9009
|
+
enabled?: boolean;
|
|
9010
|
+
customData?: string[];
|
|
9011
|
+
};
|
|
7933
9012
|
};
|
|
7934
9013
|
} | undefined>;
|
|
7935
9014
|
assistants: _angular_core.Signal<{
|
|
@@ -7991,7 +9070,7 @@ declare class AggregationComponent {
|
|
|
7991
9070
|
sources?: _sinequa_atomic_angular.CSources;
|
|
7992
9071
|
features?: {
|
|
7993
9072
|
[key: string]: boolean | {
|
|
7994
|
-
[key: string]: boolean | undefined;
|
|
9073
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
7995
9074
|
} | undefined;
|
|
7996
9075
|
allowChangePassword?: boolean;
|
|
7997
9076
|
editablepartition?: boolean;
|
|
@@ -8007,6 +9086,10 @@ declare class AggregationComponent {
|
|
|
8007
9086
|
filters?: {
|
|
8008
9087
|
homepage?: boolean;
|
|
8009
9088
|
};
|
|
9089
|
+
userProfile?: {
|
|
9090
|
+
enabled?: boolean;
|
|
9091
|
+
customData?: string[];
|
|
9092
|
+
};
|
|
8010
9093
|
};
|
|
8011
9094
|
allowAdvancedFilters?: boolean;
|
|
8012
9095
|
general?: {
|
|
@@ -8024,7 +9107,7 @@ declare class AggregationComponent {
|
|
|
8024
9107
|
};
|
|
8025
9108
|
features?: {
|
|
8026
9109
|
[key: string]: boolean | {
|
|
8027
|
-
[key: string]: boolean | undefined;
|
|
9110
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
8028
9111
|
} | undefined;
|
|
8029
9112
|
allowChangePassword?: boolean;
|
|
8030
9113
|
editablepartition?: boolean;
|
|
@@ -8040,6 +9123,10 @@ declare class AggregationComponent {
|
|
|
8040
9123
|
filters?: {
|
|
8041
9124
|
homepage?: boolean;
|
|
8042
9125
|
};
|
|
9126
|
+
userProfile?: {
|
|
9127
|
+
enabled?: boolean;
|
|
9128
|
+
customData?: string[];
|
|
9129
|
+
};
|
|
8043
9130
|
};
|
|
8044
9131
|
};
|
|
8045
9132
|
};
|
|
@@ -8149,6 +9236,7 @@ declare class AggregationComponent {
|
|
|
8149
9236
|
$selected: boolean;
|
|
8150
9237
|
items: never[];
|
|
8151
9238
|
}[]>;
|
|
9239
|
+
linkChildren: _angular_core.Signal<boolean | undefined>;
|
|
8152
9240
|
query: Query;
|
|
8153
9241
|
filters: _angular_core.WritableSignal<LegacyFilter[]>;
|
|
8154
9242
|
constructor();
|
|
@@ -8181,17 +9269,6 @@ declare class AggregationComponent {
|
|
|
8181
9269
|
apply(overrideFilters?: LegacyFilter[]): void;
|
|
8182
9270
|
loadMore(): void;
|
|
8183
9271
|
open(node: AggregationListItem): Promise<void>;
|
|
8184
|
-
/**
|
|
8185
|
-
* Quick filter in or out a node whether it is already applied or not
|
|
8186
|
-
*
|
|
8187
|
-
* @param node - The node to be added or removed.
|
|
8188
|
-
*/
|
|
8189
|
-
quickFilter({ node, path }: {
|
|
8190
|
-
node: AggregationListItem;
|
|
8191
|
-
path: string[];
|
|
8192
|
-
}): void;
|
|
8193
|
-
private quickFilterAggregation;
|
|
8194
|
-
private quickFilterTreepath;
|
|
8195
9272
|
/**
|
|
8196
9273
|
* Updates the selected state of the given item in the aggregation list.
|
|
8197
9274
|
*
|
|
@@ -8254,11 +9331,12 @@ declare class AggregationComponent {
|
|
|
8254
9331
|
* Check whether all items are selected and update isAllSelected accordingly
|
|
8255
9332
|
*/
|
|
8256
9333
|
private verifySelected;
|
|
8257
|
-
onToggle(event: Event): void;
|
|
8258
9334
|
/**
|
|
8259
|
-
* set @items $
|
|
9335
|
+
* set @items $selected and $selectedVisually to the values from @savedItems
|
|
8260
9336
|
*/
|
|
8261
9337
|
private setSelected;
|
|
9338
|
+
private processAggregations;
|
|
9339
|
+
private selectVisually;
|
|
8262
9340
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AggregationComponent, never>;
|
|
8263
9341
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AggregationComponent, "Aggregation, aggregation", never, { "class": { "alias": "class"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": true; "isSignal": true; }; "column": { "alias": "column"; "required": true; "isSignal": true; }; "collapsible": { "alias": "collapsible"; "required": false; "isSignal": true; }; "collapsed": { "alias": "collapsed"; "required": false; "isSignal": true; }; "searchable": { "alias": "searchable"; "required": false; "isSignal": true; }; "showFiltersCount": { "alias": "showFiltersCount"; "required": false; "isSignal": true; }; "searchText": { "alias": "searchText"; "required": false; "isSignal": true; }; }, { "onSelect": "onSelect"; "searchText": "searchTextChange"; }, never, ["label"], true, never>;
|
|
8264
9342
|
}
|
|
@@ -8333,7 +9411,7 @@ declare class FilterButtonComponent {
|
|
|
8333
9411
|
column: _angular_core.InputSignal<string>;
|
|
8334
9412
|
position: _angular_core.InputSignal<Placement>;
|
|
8335
9413
|
offset: _angular_core.InputSignal<number>;
|
|
8336
|
-
protected variant: _angular_core.WritableSignal<"default" | "
|
|
9414
|
+
protected variant: _angular_core.WritableSignal<"default" | "link" | "secondary" | "outline" | "ghost" | "ai" | "none" | "primary" | "destructive" | "icon" | null | undefined>;
|
|
8337
9415
|
protected filter: _angular_core.WritableSignal<CFilterEx>;
|
|
8338
9416
|
popoverRef: _angular_core.Signal<PopoverComponent | undefined>;
|
|
8339
9417
|
protected nativeElement: any;
|
|
@@ -8348,8 +9426,6 @@ declare class FilterButtonComponent {
|
|
|
8348
9426
|
}>;
|
|
8349
9427
|
protected queryParamsStore: {
|
|
8350
9428
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
8351
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8352
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
8353
9429
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
8354
9430
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
8355
9431
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -8358,6 +9434,7 @@ declare class FilterButtonComponent {
|
|
|
8358
9434
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
8359
9435
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
8360
9436
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
9437
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
8361
9438
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
8362
9439
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8363
9440
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8371,6 +9448,7 @@ declare class FilterButtonComponent {
|
|
|
8371
9448
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
8372
9449
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8373
9450
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
9451
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8374
9452
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8375
9453
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8376
9454
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8403,8 +9481,6 @@ declare class FilterButtonComponent {
|
|
|
8403
9481
|
getQuery: () => _sinequa_atomic.Query;
|
|
8404
9482
|
} & _ngrx_signals.StateSource<{
|
|
8405
9483
|
name?: string | undefined;
|
|
8406
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8407
|
-
sort?: string | undefined;
|
|
8408
9484
|
text?: string | undefined;
|
|
8409
9485
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
8410
9486
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -8413,6 +9489,7 @@ declare class FilterButtonComponent {
|
|
|
8413
9489
|
pageSize?: number | undefined;
|
|
8414
9490
|
tab?: string | undefined;
|
|
8415
9491
|
scope?: string | undefined;
|
|
9492
|
+
sort?: string | undefined;
|
|
8416
9493
|
basket?: string | undefined;
|
|
8417
9494
|
isFirstPage?: boolean | undefined;
|
|
8418
9495
|
strictRefine?: boolean | undefined;
|
|
@@ -8426,6 +9503,7 @@ declare class FilterButtonComponent {
|
|
|
8426
9503
|
relevanceTransforms?: string | undefined;
|
|
8427
9504
|
removeDuplicates?: boolean | undefined;
|
|
8428
9505
|
queryId?: string | undefined;
|
|
9506
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
8429
9507
|
orderBy?: string | undefined;
|
|
8430
9508
|
groupBy?: string | undefined;
|
|
8431
9509
|
neuralSearch?: boolean | undefined;
|
|
@@ -8463,7 +9541,7 @@ declare class FilterButtonComponent {
|
|
|
8463
9541
|
sources?: _sinequa_atomic_angular.CSources;
|
|
8464
9542
|
features?: {
|
|
8465
9543
|
[key: string]: boolean | {
|
|
8466
|
-
[key: string]: boolean | undefined;
|
|
9544
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
8467
9545
|
} | undefined;
|
|
8468
9546
|
allowChangePassword?: boolean;
|
|
8469
9547
|
editablepartition?: boolean;
|
|
@@ -8479,6 +9557,10 @@ declare class FilterButtonComponent {
|
|
|
8479
9557
|
filters?: {
|
|
8480
9558
|
homepage?: boolean;
|
|
8481
9559
|
};
|
|
9560
|
+
userProfile?: {
|
|
9561
|
+
enabled?: boolean;
|
|
9562
|
+
customData?: string[];
|
|
9563
|
+
};
|
|
8482
9564
|
};
|
|
8483
9565
|
allowAdvancedFilters?: boolean;
|
|
8484
9566
|
general?: {
|
|
@@ -8496,7 +9578,7 @@ declare class FilterButtonComponent {
|
|
|
8496
9578
|
};
|
|
8497
9579
|
features?: {
|
|
8498
9580
|
[key: string]: boolean | {
|
|
8499
|
-
[key: string]: boolean | undefined;
|
|
9581
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
8500
9582
|
} | undefined;
|
|
8501
9583
|
allowChangePassword?: boolean;
|
|
8502
9584
|
editablepartition?: boolean;
|
|
@@ -8512,6 +9594,10 @@ declare class FilterButtonComponent {
|
|
|
8512
9594
|
filters?: {
|
|
8513
9595
|
homepage?: boolean;
|
|
8514
9596
|
};
|
|
9597
|
+
userProfile?: {
|
|
9598
|
+
enabled?: boolean;
|
|
9599
|
+
customData?: string[];
|
|
9600
|
+
};
|
|
8515
9601
|
};
|
|
8516
9602
|
};
|
|
8517
9603
|
}>;
|
|
@@ -8546,7 +9632,7 @@ declare class FilterButtonComponent {
|
|
|
8546
9632
|
};
|
|
8547
9633
|
features?: {
|
|
8548
9634
|
[key: string]: boolean | {
|
|
8549
|
-
[key: string]: boolean | undefined;
|
|
9635
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
8550
9636
|
} | undefined;
|
|
8551
9637
|
allowChangePassword?: boolean;
|
|
8552
9638
|
editablepartition?: boolean;
|
|
@@ -8562,6 +9648,10 @@ declare class FilterButtonComponent {
|
|
|
8562
9648
|
filters?: {
|
|
8563
9649
|
homepage?: boolean;
|
|
8564
9650
|
};
|
|
9651
|
+
userProfile?: {
|
|
9652
|
+
enabled?: boolean;
|
|
9653
|
+
customData?: string[];
|
|
9654
|
+
};
|
|
8565
9655
|
};
|
|
8566
9656
|
} | undefined>;
|
|
8567
9657
|
assistants: _angular_core.Signal<{
|
|
@@ -8623,7 +9713,7 @@ declare class FilterButtonComponent {
|
|
|
8623
9713
|
sources?: _sinequa_atomic_angular.CSources;
|
|
8624
9714
|
features?: {
|
|
8625
9715
|
[key: string]: boolean | {
|
|
8626
|
-
[key: string]: boolean | undefined;
|
|
9716
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
8627
9717
|
} | undefined;
|
|
8628
9718
|
allowChangePassword?: boolean;
|
|
8629
9719
|
editablepartition?: boolean;
|
|
@@ -8639,6 +9729,10 @@ declare class FilterButtonComponent {
|
|
|
8639
9729
|
filters?: {
|
|
8640
9730
|
homepage?: boolean;
|
|
8641
9731
|
};
|
|
9732
|
+
userProfile?: {
|
|
9733
|
+
enabled?: boolean;
|
|
9734
|
+
customData?: string[];
|
|
9735
|
+
};
|
|
8642
9736
|
};
|
|
8643
9737
|
allowAdvancedFilters?: boolean;
|
|
8644
9738
|
general?: {
|
|
@@ -8656,7 +9750,7 @@ declare class FilterButtonComponent {
|
|
|
8656
9750
|
};
|
|
8657
9751
|
features?: {
|
|
8658
9752
|
[key: string]: boolean | {
|
|
8659
|
-
[key: string]: boolean | undefined;
|
|
9753
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
8660
9754
|
} | undefined;
|
|
8661
9755
|
allowChangePassword?: boolean;
|
|
8662
9756
|
editablepartition?: boolean;
|
|
@@ -8672,6 +9766,10 @@ declare class FilterButtonComponent {
|
|
|
8672
9766
|
filters?: {
|
|
8673
9767
|
homepage?: boolean;
|
|
8674
9768
|
};
|
|
9769
|
+
userProfile?: {
|
|
9770
|
+
enabled?: boolean;
|
|
9771
|
+
customData?: string[];
|
|
9772
|
+
};
|
|
8675
9773
|
};
|
|
8676
9774
|
};
|
|
8677
9775
|
};
|
|
@@ -8732,7 +9830,7 @@ declare class MoreButtonComponent {
|
|
|
8732
9830
|
sources?: _sinequa_atomic_angular.CSources;
|
|
8733
9831
|
features?: {
|
|
8734
9832
|
[key: string]: boolean | {
|
|
8735
|
-
[key: string]: boolean | undefined;
|
|
9833
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
8736
9834
|
} | undefined;
|
|
8737
9835
|
allowChangePassword?: boolean;
|
|
8738
9836
|
editablepartition?: boolean;
|
|
@@ -8748,6 +9846,10 @@ declare class MoreButtonComponent {
|
|
|
8748
9846
|
filters?: {
|
|
8749
9847
|
homepage?: boolean;
|
|
8750
9848
|
};
|
|
9849
|
+
userProfile?: {
|
|
9850
|
+
enabled?: boolean;
|
|
9851
|
+
customData?: string[];
|
|
9852
|
+
};
|
|
8751
9853
|
};
|
|
8752
9854
|
allowAdvancedFilters?: boolean;
|
|
8753
9855
|
general?: {
|
|
@@ -8765,7 +9867,7 @@ declare class MoreButtonComponent {
|
|
|
8765
9867
|
};
|
|
8766
9868
|
features?: {
|
|
8767
9869
|
[key: string]: boolean | {
|
|
8768
|
-
[key: string]: boolean | undefined;
|
|
9870
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
8769
9871
|
} | undefined;
|
|
8770
9872
|
allowChangePassword?: boolean;
|
|
8771
9873
|
editablepartition?: boolean;
|
|
@@ -8781,6 +9883,10 @@ declare class MoreButtonComponent {
|
|
|
8781
9883
|
filters?: {
|
|
8782
9884
|
homepage?: boolean;
|
|
8783
9885
|
};
|
|
9886
|
+
userProfile?: {
|
|
9887
|
+
enabled?: boolean;
|
|
9888
|
+
customData?: string[];
|
|
9889
|
+
};
|
|
8784
9890
|
};
|
|
8785
9891
|
};
|
|
8786
9892
|
}>;
|
|
@@ -8815,7 +9921,7 @@ declare class MoreButtonComponent {
|
|
|
8815
9921
|
};
|
|
8816
9922
|
features?: {
|
|
8817
9923
|
[key: string]: boolean | {
|
|
8818
|
-
[key: string]: boolean | undefined;
|
|
9924
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
8819
9925
|
} | undefined;
|
|
8820
9926
|
allowChangePassword?: boolean;
|
|
8821
9927
|
editablepartition?: boolean;
|
|
@@ -8831,6 +9937,10 @@ declare class MoreButtonComponent {
|
|
|
8831
9937
|
filters?: {
|
|
8832
9938
|
homepage?: boolean;
|
|
8833
9939
|
};
|
|
9940
|
+
userProfile?: {
|
|
9941
|
+
enabled?: boolean;
|
|
9942
|
+
customData?: string[];
|
|
9943
|
+
};
|
|
8834
9944
|
};
|
|
8835
9945
|
} | undefined>;
|
|
8836
9946
|
assistants: _angular_core.Signal<{
|
|
@@ -8892,7 +10002,7 @@ declare class MoreButtonComponent {
|
|
|
8892
10002
|
sources?: _sinequa_atomic_angular.CSources;
|
|
8893
10003
|
features?: {
|
|
8894
10004
|
[key: string]: boolean | {
|
|
8895
|
-
[key: string]: boolean | undefined;
|
|
10005
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
8896
10006
|
} | undefined;
|
|
8897
10007
|
allowChangePassword?: boolean;
|
|
8898
10008
|
editablepartition?: boolean;
|
|
@@ -8908,6 +10018,10 @@ declare class MoreButtonComponent {
|
|
|
8908
10018
|
filters?: {
|
|
8909
10019
|
homepage?: boolean;
|
|
8910
10020
|
};
|
|
10021
|
+
userProfile?: {
|
|
10022
|
+
enabled?: boolean;
|
|
10023
|
+
customData?: string[];
|
|
10024
|
+
};
|
|
8911
10025
|
};
|
|
8912
10026
|
allowAdvancedFilters?: boolean;
|
|
8913
10027
|
general?: {
|
|
@@ -8925,7 +10039,7 @@ declare class MoreButtonComponent {
|
|
|
8925
10039
|
};
|
|
8926
10040
|
features?: {
|
|
8927
10041
|
[key: string]: boolean | {
|
|
8928
|
-
[key: string]: boolean | undefined;
|
|
10042
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
8929
10043
|
} | undefined;
|
|
8930
10044
|
allowChangePassword?: boolean;
|
|
8931
10045
|
editablepartition?: boolean;
|
|
@@ -8941,6 +10055,10 @@ declare class MoreButtonComponent {
|
|
|
8941
10055
|
filters?: {
|
|
8942
10056
|
homepage?: boolean;
|
|
8943
10057
|
};
|
|
10058
|
+
userProfile?: {
|
|
10059
|
+
enabled?: boolean;
|
|
10060
|
+
customData?: string[];
|
|
10061
|
+
};
|
|
8944
10062
|
};
|
|
8945
10063
|
};
|
|
8946
10064
|
};
|
|
@@ -8960,8 +10078,6 @@ declare class MoreButtonComponent {
|
|
|
8960
10078
|
}>;
|
|
8961
10079
|
queryParamsStore: {
|
|
8962
10080
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
8963
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8964
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
8965
10081
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
8966
10082
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
8967
10083
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -8970,6 +10086,7 @@ declare class MoreButtonComponent {
|
|
|
8970
10086
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
8971
10087
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
8972
10088
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
10089
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
8973
10090
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
8974
10091
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8975
10092
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -8983,6 +10100,7 @@ declare class MoreButtonComponent {
|
|
|
8983
10100
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
8984
10101
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8985
10102
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
10103
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
8986
10104
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8987
10105
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8988
10106
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9015,8 +10133,6 @@ declare class MoreButtonComponent {
|
|
|
9015
10133
|
getQuery: () => _sinequa_atomic.Query;
|
|
9016
10134
|
} & _ngrx_signals.StateSource<{
|
|
9017
10135
|
name?: string | undefined;
|
|
9018
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9019
|
-
sort?: string | undefined;
|
|
9020
10136
|
text?: string | undefined;
|
|
9021
10137
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9022
10138
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -9025,6 +10141,7 @@ declare class MoreButtonComponent {
|
|
|
9025
10141
|
pageSize?: number | undefined;
|
|
9026
10142
|
tab?: string | undefined;
|
|
9027
10143
|
scope?: string | undefined;
|
|
10144
|
+
sort?: string | undefined;
|
|
9028
10145
|
basket?: string | undefined;
|
|
9029
10146
|
isFirstPage?: boolean | undefined;
|
|
9030
10147
|
strictRefine?: boolean | undefined;
|
|
@@ -9038,6 +10155,7 @@ declare class MoreButtonComponent {
|
|
|
9038
10155
|
relevanceTransforms?: string | undefined;
|
|
9039
10156
|
removeDuplicates?: boolean | undefined;
|
|
9040
10157
|
queryId?: string | undefined;
|
|
10158
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9041
10159
|
orderBy?: string | undefined;
|
|
9042
10160
|
groupBy?: string | undefined;
|
|
9043
10161
|
neuralSearch?: boolean | undefined;
|
|
@@ -9115,6 +10233,7 @@ declare class FiltersBarComponent {
|
|
|
9115
10233
|
protected readonly filterButtonRefs: _angular_core.Signal<readonly FilterButtonComponent[]>;
|
|
9116
10234
|
protected readonly overflowManagerRef: _angular_core.Signal<OverflowManagerDirective | undefined>;
|
|
9117
10235
|
protected cdr: ChangeDetectorRef;
|
|
10236
|
+
protected BreakpointObserverService: BreakpointObserverService;
|
|
9118
10237
|
protected appStore: {
|
|
9119
10238
|
name: _angular_core.Signal<string>;
|
|
9120
10239
|
description?: _angular_core.Signal<string | undefined> | undefined;
|
|
@@ -9145,7 +10264,7 @@ declare class FiltersBarComponent {
|
|
|
9145
10264
|
sources?: _sinequa_atomic_angular.CSources;
|
|
9146
10265
|
features?: {
|
|
9147
10266
|
[key: string]: boolean | {
|
|
9148
|
-
[key: string]: boolean | undefined;
|
|
10267
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
9149
10268
|
} | undefined;
|
|
9150
10269
|
allowChangePassword?: boolean;
|
|
9151
10270
|
editablepartition?: boolean;
|
|
@@ -9161,6 +10280,10 @@ declare class FiltersBarComponent {
|
|
|
9161
10280
|
filters?: {
|
|
9162
10281
|
homepage?: boolean;
|
|
9163
10282
|
};
|
|
10283
|
+
userProfile?: {
|
|
10284
|
+
enabled?: boolean;
|
|
10285
|
+
customData?: string[];
|
|
10286
|
+
};
|
|
9164
10287
|
};
|
|
9165
10288
|
allowAdvancedFilters?: boolean;
|
|
9166
10289
|
general?: {
|
|
@@ -9178,7 +10301,7 @@ declare class FiltersBarComponent {
|
|
|
9178
10301
|
};
|
|
9179
10302
|
features?: {
|
|
9180
10303
|
[key: string]: boolean | {
|
|
9181
|
-
[key: string]: boolean | undefined;
|
|
10304
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
9182
10305
|
} | undefined;
|
|
9183
10306
|
allowChangePassword?: boolean;
|
|
9184
10307
|
editablepartition?: boolean;
|
|
@@ -9194,6 +10317,10 @@ declare class FiltersBarComponent {
|
|
|
9194
10317
|
filters?: {
|
|
9195
10318
|
homepage?: boolean;
|
|
9196
10319
|
};
|
|
10320
|
+
userProfile?: {
|
|
10321
|
+
enabled?: boolean;
|
|
10322
|
+
customData?: string[];
|
|
10323
|
+
};
|
|
9197
10324
|
};
|
|
9198
10325
|
};
|
|
9199
10326
|
}>;
|
|
@@ -9228,7 +10355,7 @@ declare class FiltersBarComponent {
|
|
|
9228
10355
|
};
|
|
9229
10356
|
features?: {
|
|
9230
10357
|
[key: string]: boolean | {
|
|
9231
|
-
[key: string]: boolean | undefined;
|
|
10358
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
9232
10359
|
} | undefined;
|
|
9233
10360
|
allowChangePassword?: boolean;
|
|
9234
10361
|
editablepartition?: boolean;
|
|
@@ -9244,6 +10371,10 @@ declare class FiltersBarComponent {
|
|
|
9244
10371
|
filters?: {
|
|
9245
10372
|
homepage?: boolean;
|
|
9246
10373
|
};
|
|
10374
|
+
userProfile?: {
|
|
10375
|
+
enabled?: boolean;
|
|
10376
|
+
customData?: string[];
|
|
10377
|
+
};
|
|
9247
10378
|
};
|
|
9248
10379
|
} | undefined>;
|
|
9249
10380
|
assistants: _angular_core.Signal<{
|
|
@@ -9305,7 +10436,7 @@ declare class FiltersBarComponent {
|
|
|
9305
10436
|
sources?: _sinequa_atomic_angular.CSources;
|
|
9306
10437
|
features?: {
|
|
9307
10438
|
[key: string]: boolean | {
|
|
9308
|
-
[key: string]: boolean | undefined;
|
|
10439
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
9309
10440
|
} | undefined;
|
|
9310
10441
|
allowChangePassword?: boolean;
|
|
9311
10442
|
editablepartition?: boolean;
|
|
@@ -9321,6 +10452,10 @@ declare class FiltersBarComponent {
|
|
|
9321
10452
|
filters?: {
|
|
9322
10453
|
homepage?: boolean;
|
|
9323
10454
|
};
|
|
10455
|
+
userProfile?: {
|
|
10456
|
+
enabled?: boolean;
|
|
10457
|
+
customData?: string[];
|
|
10458
|
+
};
|
|
9324
10459
|
};
|
|
9325
10460
|
allowAdvancedFilters?: boolean;
|
|
9326
10461
|
general?: {
|
|
@@ -9338,7 +10473,7 @@ declare class FiltersBarComponent {
|
|
|
9338
10473
|
};
|
|
9339
10474
|
features?: {
|
|
9340
10475
|
[key: string]: boolean | {
|
|
9341
|
-
[key: string]: boolean | undefined;
|
|
10476
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
9342
10477
|
} | undefined;
|
|
9343
10478
|
allowChangePassword?: boolean;
|
|
9344
10479
|
editablepartition?: boolean;
|
|
@@ -9354,6 +10489,10 @@ declare class FiltersBarComponent {
|
|
|
9354
10489
|
filters?: {
|
|
9355
10490
|
homepage?: boolean;
|
|
9356
10491
|
};
|
|
10492
|
+
userProfile?: {
|
|
10493
|
+
enabled?: boolean;
|
|
10494
|
+
customData?: string[];
|
|
10495
|
+
};
|
|
9357
10496
|
};
|
|
9358
10497
|
};
|
|
9359
10498
|
};
|
|
@@ -9382,8 +10521,6 @@ declare class FiltersBarComponent {
|
|
|
9382
10521
|
}>;
|
|
9383
10522
|
protected queryParamsStore: {
|
|
9384
10523
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9385
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9386
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9387
10524
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9388
10525
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9389
10526
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -9392,6 +10529,7 @@ declare class FiltersBarComponent {
|
|
|
9392
10529
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
9393
10530
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
9394
10531
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
10532
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9395
10533
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
9396
10534
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9397
10535
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9405,6 +10543,7 @@ declare class FiltersBarComponent {
|
|
|
9405
10543
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
9406
10544
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9407
10545
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
10546
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9408
10547
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9409
10548
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9410
10549
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9437,8 +10576,6 @@ declare class FiltersBarComponent {
|
|
|
9437
10576
|
getQuery: () => _sinequa_atomic.Query;
|
|
9438
10577
|
} & _ngrx_signals.StateSource<{
|
|
9439
10578
|
name?: string | undefined;
|
|
9440
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9441
|
-
sort?: string | undefined;
|
|
9442
10579
|
text?: string | undefined;
|
|
9443
10580
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9444
10581
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -9447,6 +10584,7 @@ declare class FiltersBarComponent {
|
|
|
9447
10584
|
pageSize?: number | undefined;
|
|
9448
10585
|
tab?: string | undefined;
|
|
9449
10586
|
scope?: string | undefined;
|
|
10587
|
+
sort?: string | undefined;
|
|
9450
10588
|
basket?: string | undefined;
|
|
9451
10589
|
isFirstPage?: boolean | undefined;
|
|
9452
10590
|
strictRefine?: boolean | undefined;
|
|
@@ -9460,6 +10598,7 @@ declare class FiltersBarComponent {
|
|
|
9460
10598
|
relevanceTransforms?: string | undefined;
|
|
9461
10599
|
removeDuplicates?: boolean | undefined;
|
|
9462
10600
|
queryId?: string | undefined;
|
|
10601
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9463
10602
|
orderBy?: string | undefined;
|
|
9464
10603
|
groupBy?: string | undefined;
|
|
9465
10604
|
neuralSearch?: boolean | undefined;
|
|
@@ -9575,7 +10714,7 @@ declare class MoreComponent {
|
|
|
9575
10714
|
sources?: _sinequa_atomic_angular.CSources;
|
|
9576
10715
|
features?: {
|
|
9577
10716
|
[key: string]: boolean | {
|
|
9578
|
-
[key: string]: boolean | undefined;
|
|
10717
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
9579
10718
|
} | undefined;
|
|
9580
10719
|
allowChangePassword?: boolean;
|
|
9581
10720
|
editablepartition?: boolean;
|
|
@@ -9591,6 +10730,10 @@ declare class MoreComponent {
|
|
|
9591
10730
|
filters?: {
|
|
9592
10731
|
homepage?: boolean;
|
|
9593
10732
|
};
|
|
10733
|
+
userProfile?: {
|
|
10734
|
+
enabled?: boolean;
|
|
10735
|
+
customData?: string[];
|
|
10736
|
+
};
|
|
9594
10737
|
};
|
|
9595
10738
|
allowAdvancedFilters?: boolean;
|
|
9596
10739
|
general?: {
|
|
@@ -9608,7 +10751,7 @@ declare class MoreComponent {
|
|
|
9608
10751
|
};
|
|
9609
10752
|
features?: {
|
|
9610
10753
|
[key: string]: boolean | {
|
|
9611
|
-
[key: string]: boolean | undefined;
|
|
10754
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
9612
10755
|
} | undefined;
|
|
9613
10756
|
allowChangePassword?: boolean;
|
|
9614
10757
|
editablepartition?: boolean;
|
|
@@ -9624,6 +10767,10 @@ declare class MoreComponent {
|
|
|
9624
10767
|
filters?: {
|
|
9625
10768
|
homepage?: boolean;
|
|
9626
10769
|
};
|
|
10770
|
+
userProfile?: {
|
|
10771
|
+
enabled?: boolean;
|
|
10772
|
+
customData?: string[];
|
|
10773
|
+
};
|
|
9627
10774
|
};
|
|
9628
10775
|
};
|
|
9629
10776
|
}>;
|
|
@@ -9658,7 +10805,7 @@ declare class MoreComponent {
|
|
|
9658
10805
|
};
|
|
9659
10806
|
features?: {
|
|
9660
10807
|
[key: string]: boolean | {
|
|
9661
|
-
[key: string]: boolean | undefined;
|
|
10808
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
9662
10809
|
} | undefined;
|
|
9663
10810
|
allowChangePassword?: boolean;
|
|
9664
10811
|
editablepartition?: boolean;
|
|
@@ -9674,6 +10821,10 @@ declare class MoreComponent {
|
|
|
9674
10821
|
filters?: {
|
|
9675
10822
|
homepage?: boolean;
|
|
9676
10823
|
};
|
|
10824
|
+
userProfile?: {
|
|
10825
|
+
enabled?: boolean;
|
|
10826
|
+
customData?: string[];
|
|
10827
|
+
};
|
|
9677
10828
|
};
|
|
9678
10829
|
} | undefined>;
|
|
9679
10830
|
assistants: _angular_core.Signal<{
|
|
@@ -9735,7 +10886,7 @@ declare class MoreComponent {
|
|
|
9735
10886
|
sources?: _sinequa_atomic_angular.CSources;
|
|
9736
10887
|
features?: {
|
|
9737
10888
|
[key: string]: boolean | {
|
|
9738
|
-
[key: string]: boolean | undefined;
|
|
10889
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
9739
10890
|
} | undefined;
|
|
9740
10891
|
allowChangePassword?: boolean;
|
|
9741
10892
|
editablepartition?: boolean;
|
|
@@ -9751,6 +10902,10 @@ declare class MoreComponent {
|
|
|
9751
10902
|
filters?: {
|
|
9752
10903
|
homepage?: boolean;
|
|
9753
10904
|
};
|
|
10905
|
+
userProfile?: {
|
|
10906
|
+
enabled?: boolean;
|
|
10907
|
+
customData?: string[];
|
|
10908
|
+
};
|
|
9754
10909
|
};
|
|
9755
10910
|
allowAdvancedFilters?: boolean;
|
|
9756
10911
|
general?: {
|
|
@@ -9768,7 +10923,7 @@ declare class MoreComponent {
|
|
|
9768
10923
|
};
|
|
9769
10924
|
features?: {
|
|
9770
10925
|
[key: string]: boolean | {
|
|
9771
|
-
[key: string]: boolean | undefined;
|
|
10926
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
9772
10927
|
} | undefined;
|
|
9773
10928
|
allowChangePassword?: boolean;
|
|
9774
10929
|
editablepartition?: boolean;
|
|
@@ -9784,6 +10939,10 @@ declare class MoreComponent {
|
|
|
9784
10939
|
filters?: {
|
|
9785
10940
|
homepage?: boolean;
|
|
9786
10941
|
};
|
|
10942
|
+
userProfile?: {
|
|
10943
|
+
enabled?: boolean;
|
|
10944
|
+
customData?: string[];
|
|
10945
|
+
};
|
|
9787
10946
|
};
|
|
9788
10947
|
};
|
|
9789
10948
|
};
|
|
@@ -9812,8 +10971,6 @@ declare class MoreComponent {
|
|
|
9812
10971
|
}>;
|
|
9813
10972
|
queryParamsStore: {
|
|
9814
10973
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9815
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9816
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9817
10974
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9818
10975
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9819
10976
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -9822,6 +10979,7 @@ declare class MoreComponent {
|
|
|
9822
10979
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
9823
10980
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
9824
10981
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
10982
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
9825
10983
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
9826
10984
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9827
10985
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9835,6 +10993,7 @@ declare class MoreComponent {
|
|
|
9835
10993
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
9836
10994
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9837
10995
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
10996
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
9838
10997
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9839
10998
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9840
10999
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -9867,8 +11026,6 @@ declare class MoreComponent {
|
|
|
9867
11026
|
getQuery: () => _sinequa_atomic.Query;
|
|
9868
11027
|
} & _ngrx_signals.StateSource<{
|
|
9869
11028
|
name?: string | undefined;
|
|
9870
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9871
|
-
sort?: string | undefined;
|
|
9872
11029
|
text?: string | undefined;
|
|
9873
11030
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9874
11031
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -9877,6 +11034,7 @@ declare class MoreComponent {
|
|
|
9877
11034
|
pageSize?: number | undefined;
|
|
9878
11035
|
tab?: string | undefined;
|
|
9879
11036
|
scope?: string | undefined;
|
|
11037
|
+
sort?: string | undefined;
|
|
9880
11038
|
basket?: string | undefined;
|
|
9881
11039
|
isFirstPage?: boolean | undefined;
|
|
9882
11040
|
strictRefine?: boolean | undefined;
|
|
@@ -9890,6 +11048,7 @@ declare class MoreComponent {
|
|
|
9890
11048
|
relevanceTransforms?: string | undefined;
|
|
9891
11049
|
removeDuplicates?: boolean | undefined;
|
|
9892
11050
|
queryId?: string | undefined;
|
|
11051
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
9893
11052
|
orderBy?: string | undefined;
|
|
9894
11053
|
groupBy?: string | undefined;
|
|
9895
11054
|
neuralSearch?: boolean | undefined;
|
|
@@ -9976,7 +11135,7 @@ declare class LabelService {
|
|
|
9976
11135
|
sources?: _sinequa_atomic_angular.CSources;
|
|
9977
11136
|
features?: {
|
|
9978
11137
|
[key: string]: boolean | {
|
|
9979
|
-
[key: string]: boolean | undefined;
|
|
11138
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
9980
11139
|
} | undefined;
|
|
9981
11140
|
allowChangePassword?: boolean;
|
|
9982
11141
|
editablepartition?: boolean;
|
|
@@ -9992,6 +11151,10 @@ declare class LabelService {
|
|
|
9992
11151
|
filters?: {
|
|
9993
11152
|
homepage?: boolean;
|
|
9994
11153
|
};
|
|
11154
|
+
userProfile?: {
|
|
11155
|
+
enabled?: boolean;
|
|
11156
|
+
customData?: string[];
|
|
11157
|
+
};
|
|
9995
11158
|
};
|
|
9996
11159
|
allowAdvancedFilters?: boolean;
|
|
9997
11160
|
general?: {
|
|
@@ -10009,7 +11172,7 @@ declare class LabelService {
|
|
|
10009
11172
|
};
|
|
10010
11173
|
features?: {
|
|
10011
11174
|
[key: string]: boolean | {
|
|
10012
|
-
[key: string]: boolean | undefined;
|
|
11175
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
10013
11176
|
} | undefined;
|
|
10014
11177
|
allowChangePassword?: boolean;
|
|
10015
11178
|
editablepartition?: boolean;
|
|
@@ -10025,6 +11188,10 @@ declare class LabelService {
|
|
|
10025
11188
|
filters?: {
|
|
10026
11189
|
homepage?: boolean;
|
|
10027
11190
|
};
|
|
11191
|
+
userProfile?: {
|
|
11192
|
+
enabled?: boolean;
|
|
11193
|
+
customData?: string[];
|
|
11194
|
+
};
|
|
10028
11195
|
};
|
|
10029
11196
|
};
|
|
10030
11197
|
}>;
|
|
@@ -10059,7 +11226,7 @@ declare class LabelService {
|
|
|
10059
11226
|
};
|
|
10060
11227
|
features?: {
|
|
10061
11228
|
[key: string]: boolean | {
|
|
10062
|
-
[key: string]: boolean | undefined;
|
|
11229
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
10063
11230
|
} | undefined;
|
|
10064
11231
|
allowChangePassword?: boolean;
|
|
10065
11232
|
editablepartition?: boolean;
|
|
@@ -10075,6 +11242,10 @@ declare class LabelService {
|
|
|
10075
11242
|
filters?: {
|
|
10076
11243
|
homepage?: boolean;
|
|
10077
11244
|
};
|
|
11245
|
+
userProfile?: {
|
|
11246
|
+
enabled?: boolean;
|
|
11247
|
+
customData?: string[];
|
|
11248
|
+
};
|
|
10078
11249
|
};
|
|
10079
11250
|
} | undefined>;
|
|
10080
11251
|
assistants: _angular_core.Signal<{
|
|
@@ -10136,7 +11307,7 @@ declare class LabelService {
|
|
|
10136
11307
|
sources?: _sinequa_atomic_angular.CSources;
|
|
10137
11308
|
features?: {
|
|
10138
11309
|
[key: string]: boolean | {
|
|
10139
|
-
[key: string]: boolean | undefined;
|
|
11310
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
10140
11311
|
} | undefined;
|
|
10141
11312
|
allowChangePassword?: boolean;
|
|
10142
11313
|
editablepartition?: boolean;
|
|
@@ -10152,6 +11323,10 @@ declare class LabelService {
|
|
|
10152
11323
|
filters?: {
|
|
10153
11324
|
homepage?: boolean;
|
|
10154
11325
|
};
|
|
11326
|
+
userProfile?: {
|
|
11327
|
+
enabled?: boolean;
|
|
11328
|
+
customData?: string[];
|
|
11329
|
+
};
|
|
10155
11330
|
};
|
|
10156
11331
|
allowAdvancedFilters?: boolean;
|
|
10157
11332
|
general?: {
|
|
@@ -10169,7 +11344,7 @@ declare class LabelService {
|
|
|
10169
11344
|
};
|
|
10170
11345
|
features?: {
|
|
10171
11346
|
[key: string]: boolean | {
|
|
10172
|
-
[key: string]: boolean | undefined;
|
|
11347
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
10173
11348
|
} | undefined;
|
|
10174
11349
|
allowChangePassword?: boolean;
|
|
10175
11350
|
editablepartition?: boolean;
|
|
@@ -10185,6 +11360,10 @@ declare class LabelService {
|
|
|
10185
11360
|
filters?: {
|
|
10186
11361
|
homepage?: boolean;
|
|
10187
11362
|
};
|
|
11363
|
+
userProfile?: {
|
|
11364
|
+
enabled?: boolean;
|
|
11365
|
+
customData?: string[];
|
|
11366
|
+
};
|
|
10188
11367
|
};
|
|
10189
11368
|
};
|
|
10190
11369
|
};
|
|
@@ -10434,8 +11613,6 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
10434
11613
|
private readonly savedSearchesService;
|
|
10435
11614
|
protected readonly queryParamsStore: {
|
|
10436
11615
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
10437
|
-
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
10438
|
-
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
10439
11616
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
10440
11617
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
10441
11618
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
@@ -10444,6 +11621,7 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
10444
11621
|
pageSize?: _angular_core.Signal<number | undefined> | undefined;
|
|
10445
11622
|
tab?: _angular_core.Signal<string | undefined> | undefined;
|
|
10446
11623
|
scope?: _angular_core.Signal<string | undefined> | undefined;
|
|
11624
|
+
sort?: _angular_core.Signal<string | undefined> | undefined;
|
|
10447
11625
|
basket?: _angular_core.Signal<string | undefined> | undefined;
|
|
10448
11626
|
isFirstPage?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
10449
11627
|
strictRefine?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -10457,6 +11635,7 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
10457
11635
|
relevanceTransforms?: _angular_core.Signal<string | undefined> | undefined;
|
|
10458
11636
|
removeDuplicates?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
10459
11637
|
queryId?: _angular_core.Signal<string | undefined> | undefined;
|
|
11638
|
+
aggregations?: _angular_core.Signal<string[] | Record<string, _sinequa_atomic.AggregationOptions> | undefined> | undefined;
|
|
10460
11639
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
10461
11640
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
10462
11641
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
@@ -10489,8 +11668,6 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
10489
11668
|
getQuery: () => _sinequa_atomic.Query;
|
|
10490
11669
|
} & _ngrx_signals.StateSource<{
|
|
10491
11670
|
name?: string | undefined;
|
|
10492
|
-
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
10493
|
-
sort?: string | undefined;
|
|
10494
11671
|
text?: string | undefined;
|
|
10495
11672
|
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
10496
11673
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
@@ -10499,6 +11676,7 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
10499
11676
|
pageSize?: number | undefined;
|
|
10500
11677
|
tab?: string | undefined;
|
|
10501
11678
|
scope?: string | undefined;
|
|
11679
|
+
sort?: string | undefined;
|
|
10502
11680
|
basket?: string | undefined;
|
|
10503
11681
|
isFirstPage?: boolean | undefined;
|
|
10504
11682
|
strictRefine?: boolean | undefined;
|
|
@@ -10512,6 +11690,7 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
10512
11690
|
relevanceTransforms?: string | undefined;
|
|
10513
11691
|
removeDuplicates?: boolean | undefined;
|
|
10514
11692
|
queryId?: string | undefined;
|
|
11693
|
+
aggregations?: (Record<string, _sinequa_atomic.AggregationOptions> | string[]) | undefined;
|
|
10515
11694
|
orderBy?: string | undefined;
|
|
10516
11695
|
groupBy?: string | undefined;
|
|
10517
11696
|
neuralSearch?: boolean | undefined;
|
|
@@ -10598,6 +11777,7 @@ declare class SavedSearchesComponent {
|
|
|
10598
11777
|
|
|
10599
11778
|
declare class UserProfileDialog implements DialogInterface {
|
|
10600
11779
|
dialog: _angular_core.Signal<DialogComponent | undefined>;
|
|
11780
|
+
opened: _angular_core.WritableSignal<boolean>;
|
|
10601
11781
|
open(): void;
|
|
10602
11782
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<UserProfileDialog, never>;
|
|
10603
11783
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<UserProfileDialog, "user-profile-dialog, userprofiledialog, UserProfileDialog", never, {}, {}, never, never, true, never>;
|
|
@@ -10648,31 +11828,307 @@ declare class UserProfileFormComponent {
|
|
|
10648
11828
|
updateLanguage: (language: _sinequa_atomic_angular.UserSettingsState["language"], auditEvents?: _sinequa_atomic.AuditEvents) => Promise<void>;
|
|
10649
11829
|
updateAssistantCollapsed: (collapseAssistant: _sinequa_atomic_angular.UserSettingsState["collapseAssistant"], auditEvents?: _sinequa_atomic.AuditEvents) => Promise<void>;
|
|
10650
11830
|
initialize: () => Promise<void>;
|
|
10651
|
-
reset: () => Promise<void>;
|
|
10652
|
-
deleteAlert: (index: number) => Promise<void>;
|
|
10653
|
-
createAlert: (alert: _sinequa_atomic_angular.Alert) => Promise<void>;
|
|
10654
|
-
updateAlert: (alert: _sinequa_atomic_angular.Alert, index: number) => Promise<void>;
|
|
10655
|
-
updateAlerts: (alerts: _sinequa_atomic_angular.Alert[]) => Promise<void>;
|
|
10656
|
-
setUserTheme: (userTheme: "dark" | "light" | "system") => Promise<void>;
|
|
10657
|
-
toggleDarkMode: () => Promise<void>;
|
|
11831
|
+
reset: () => Promise<void>;
|
|
11832
|
+
deleteAlert: (index: number) => Promise<void>;
|
|
11833
|
+
createAlert: (alert: _sinequa_atomic_angular.Alert) => Promise<void>;
|
|
11834
|
+
updateAlert: (alert: _sinequa_atomic_angular.Alert, index: number) => Promise<void>;
|
|
11835
|
+
updateAlerts: (alerts: _sinequa_atomic_angular.Alert[]) => Promise<void>;
|
|
11836
|
+
setUserTheme: (userTheme: "dark" | "light" | "system") => Promise<void>;
|
|
11837
|
+
toggleDarkMode: () => Promise<void>;
|
|
11838
|
+
} & _ngrx_signals.StateSource<{
|
|
11839
|
+
bookmarks: _sinequa_atomic_angular.Bookmark[];
|
|
11840
|
+
recentSearches: _sinequa_atomic_angular.SearchItem[];
|
|
11841
|
+
savedSearches: _sinequa_atomic_angular.SearchItem[];
|
|
11842
|
+
baskets: _sinequa_atomic_angular.Basket[];
|
|
11843
|
+
assistants: Record<string, unknown>;
|
|
11844
|
+
alerts: _sinequa_atomic_angular.Alert[];
|
|
11845
|
+
collapseAssistant?: boolean | undefined;
|
|
11846
|
+
language?: string | undefined;
|
|
11847
|
+
userTheme: "dark" | "light" | "system";
|
|
11848
|
+
}>;
|
|
11849
|
+
protected userProfileService: UserProfileService;
|
|
11850
|
+
protected appStore: {
|
|
11851
|
+
name: _angular_core.Signal<string>;
|
|
11852
|
+
description?: _angular_core.Signal<string | undefined> | undefined;
|
|
11853
|
+
versionId: _angular_core.Signal<string>;
|
|
11854
|
+
queries: _angular_core.Signal<Record<string, _sinequa_atomic.CCQuery>>;
|
|
11855
|
+
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
11856
|
+
indexes: _angular_core.Signal<{
|
|
11857
|
+
_: _sinequa_atomic.CCIndex;
|
|
11858
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
11859
|
+
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
11860
|
+
webServices: _angular_core.Signal<Record<string, _sinequa_atomic.CCWebService>>;
|
|
11861
|
+
queryNames: _angular_core.Signal<string>;
|
|
11862
|
+
labels: _angular_core.Signal<string>;
|
|
11863
|
+
preview: _angular_core.Signal<string>;
|
|
11864
|
+
autocomplete: _angular_core.Signal<string>;
|
|
11865
|
+
sponsoredLinks: _angular_core.Signal<string>;
|
|
11866
|
+
queryExport: _angular_core.Signal<string>;
|
|
11867
|
+
queryRssEnabled: _angular_core.Signal<boolean>;
|
|
11868
|
+
data: _angular_core.Signal<Record<string, unknown> & _sinequa_atomic_angular.CJson & {
|
|
11869
|
+
filters?: _sinequa_atomic_angular.CAggregation[];
|
|
11870
|
+
autocomplete?: _sinequa_atomic_angular.Autocomplete;
|
|
11871
|
+
tabs?: Record<string, {
|
|
11872
|
+
filters: string[];
|
|
11873
|
+
overviews?: Record<string, {
|
|
11874
|
+
minRelevance: number;
|
|
11875
|
+
}>;
|
|
11876
|
+
}>;
|
|
11877
|
+
sources?: _sinequa_atomic_angular.CSources;
|
|
11878
|
+
features?: {
|
|
11879
|
+
[key: string]: boolean | {
|
|
11880
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
11881
|
+
} | undefined;
|
|
11882
|
+
allowChangePassword?: boolean;
|
|
11883
|
+
editablepartition?: boolean;
|
|
11884
|
+
advancedSearch?: boolean;
|
|
11885
|
+
allowChatDrawer?: boolean;
|
|
11886
|
+
filterLinkChildren?: boolean;
|
|
11887
|
+
expandPreview?: boolean;
|
|
11888
|
+
quickFilter?: boolean;
|
|
11889
|
+
showAggregationItemCount?: boolean;
|
|
11890
|
+
assistant?: {
|
|
11891
|
+
usePrefixName?: boolean;
|
|
11892
|
+
};
|
|
11893
|
+
filters?: {
|
|
11894
|
+
homepage?: boolean;
|
|
11895
|
+
};
|
|
11896
|
+
userProfile?: {
|
|
11897
|
+
enabled?: boolean;
|
|
11898
|
+
customData?: string[];
|
|
11899
|
+
};
|
|
11900
|
+
};
|
|
11901
|
+
allowAdvancedFilters?: boolean;
|
|
11902
|
+
general?: {
|
|
11903
|
+
name?: string;
|
|
11904
|
+
logo?: {
|
|
11905
|
+
alt?: string;
|
|
11906
|
+
light?: {
|
|
11907
|
+
small?: string;
|
|
11908
|
+
large?: string;
|
|
11909
|
+
};
|
|
11910
|
+
dark?: {
|
|
11911
|
+
small?: string;
|
|
11912
|
+
large?: string;
|
|
11913
|
+
};
|
|
11914
|
+
};
|
|
11915
|
+
features?: {
|
|
11916
|
+
[key: string]: boolean | {
|
|
11917
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
11918
|
+
} | undefined;
|
|
11919
|
+
allowChangePassword?: boolean;
|
|
11920
|
+
editablepartition?: boolean;
|
|
11921
|
+
advancedSearch?: boolean;
|
|
11922
|
+
allowChatDrawer?: boolean;
|
|
11923
|
+
filterLinkChildren?: boolean;
|
|
11924
|
+
expandPreview?: boolean;
|
|
11925
|
+
quickFilter?: boolean;
|
|
11926
|
+
showAggregationItemCount?: boolean;
|
|
11927
|
+
assistant?: {
|
|
11928
|
+
usePrefixName?: boolean;
|
|
11929
|
+
};
|
|
11930
|
+
filters?: {
|
|
11931
|
+
homepage?: boolean;
|
|
11932
|
+
};
|
|
11933
|
+
userProfile?: {
|
|
11934
|
+
enabled?: boolean;
|
|
11935
|
+
customData?: string[];
|
|
11936
|
+
};
|
|
11937
|
+
};
|
|
11938
|
+
};
|
|
11939
|
+
}>;
|
|
11940
|
+
customJSONs: _angular_core.Signal<{
|
|
11941
|
+
name: string;
|
|
11942
|
+
data: Record<string, unknown>;
|
|
11943
|
+
}[] & _sinequa_atomic_angular.SideCJson[]>;
|
|
11944
|
+
apiVersion: _angular_core.Signal<string>;
|
|
11945
|
+
workspaceApp: _angular_core.Signal<string>;
|
|
11946
|
+
defaultQueryName: _angular_core.Signal<string>;
|
|
11947
|
+
auditEnabled?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
11948
|
+
dataSets?: _angular_core.Signal<string | undefined> | undefined;
|
|
11949
|
+
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
11950
|
+
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
11951
|
+
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
11952
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
11953
|
+
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
11954
|
+
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
11955
|
+
filters: _angular_core.Signal<_sinequa_atomic_angular.CFilter[]>;
|
|
11956
|
+
general: _angular_core.Signal<{
|
|
11957
|
+
name?: string;
|
|
11958
|
+
logo?: {
|
|
11959
|
+
alt?: string;
|
|
11960
|
+
light?: {
|
|
11961
|
+
small?: string;
|
|
11962
|
+
large?: string;
|
|
11963
|
+
};
|
|
11964
|
+
dark?: {
|
|
11965
|
+
small?: string;
|
|
11966
|
+
large?: string;
|
|
11967
|
+
};
|
|
11968
|
+
};
|
|
11969
|
+
features?: {
|
|
11970
|
+
[key: string]: boolean | {
|
|
11971
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
11972
|
+
} | undefined;
|
|
11973
|
+
allowChangePassword?: boolean;
|
|
11974
|
+
editablepartition?: boolean;
|
|
11975
|
+
advancedSearch?: boolean;
|
|
11976
|
+
allowChatDrawer?: boolean;
|
|
11977
|
+
filterLinkChildren?: boolean;
|
|
11978
|
+
expandPreview?: boolean;
|
|
11979
|
+
quickFilter?: boolean;
|
|
11980
|
+
showAggregationItemCount?: boolean;
|
|
11981
|
+
assistant?: {
|
|
11982
|
+
usePrefixName?: boolean;
|
|
11983
|
+
};
|
|
11984
|
+
filters?: {
|
|
11985
|
+
homepage?: boolean;
|
|
11986
|
+
};
|
|
11987
|
+
userProfile?: {
|
|
11988
|
+
enabled?: boolean;
|
|
11989
|
+
customData?: string[];
|
|
11990
|
+
};
|
|
11991
|
+
};
|
|
11992
|
+
} | undefined>;
|
|
11993
|
+
assistants: _angular_core.Signal<{
|
|
11994
|
+
[x: string]: _sinequa_atomic_angular.AssistantDetails;
|
|
11995
|
+
}>;
|
|
11996
|
+
initialize: () => Promise<void>;
|
|
11997
|
+
initializeWithAppName: (appName: string) => Promise<void>;
|
|
11998
|
+
update: (app: _sinequa_atomic.CCApp) => void;
|
|
11999
|
+
getWebServiceByType: (type: _sinequa_atomic.CCWebService["webServiceType"]) => _sinequa_atomic.CCWebService | undefined;
|
|
12000
|
+
getLabels: () => {
|
|
12001
|
+
private: string;
|
|
12002
|
+
public: string;
|
|
12003
|
+
};
|
|
12004
|
+
getQueryByName: (name: string) => _sinequa_atomic.CCQuery | undefined;
|
|
12005
|
+
getQueryByIndex: (index: number) => _sinequa_atomic.CCQuery | undefined;
|
|
12006
|
+
getDefaultQuery: () => _sinequa_atomic.CCQuery | undefined;
|
|
12007
|
+
allowEmptySearch: (queryName: string) => boolean;
|
|
12008
|
+
enableFieldedSearch: (queryName: string) => boolean;
|
|
12009
|
+
allowLabels: () => boolean;
|
|
12010
|
+
getColumnAlias: (column: string) => string;
|
|
12011
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
12012
|
+
isDateColumn: (column: string) => boolean;
|
|
12013
|
+
isTabSearch: (queryName: string) => boolean;
|
|
12014
|
+
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
12015
|
+
getAuthorizedFilters: () => _sinequa_atomic.Aggregation[];
|
|
12016
|
+
getAuthorized: (filters: Pick<_sinequa_atomic_angular.CFilter, "column" | "name">[]) => _sinequa_atomic.Aggregation[];
|
|
12017
|
+
getNamedCustomizationJson: (name: string) => unknown | undefined;
|
|
12018
|
+
getAggregationIcon: (column: string) => string | undefined;
|
|
12019
|
+
getAggregationItemsCustomization: (column: string) => _sinequa_atomic_angular.CFilterItem[] | undefined;
|
|
12020
|
+
getAggregationCustomization: (aggColumn: string, aggName?: string) => _sinequa_atomic_angular.CFilter | undefined;
|
|
12021
|
+
isAssistantAllowed: (assistantName: string) => boolean;
|
|
10658
12022
|
} & _ngrx_signals.StateSource<{
|
|
10659
|
-
|
|
10660
|
-
|
|
10661
|
-
|
|
10662
|
-
|
|
10663
|
-
|
|
10664
|
-
|
|
10665
|
-
|
|
10666
|
-
|
|
10667
|
-
|
|
12023
|
+
name: string;
|
|
12024
|
+
description?: string | undefined;
|
|
12025
|
+
versionId: string;
|
|
12026
|
+
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
12027
|
+
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
12028
|
+
indexes: {
|
|
12029
|
+
_: _sinequa_atomic.CCIndex;
|
|
12030
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
12031
|
+
lists: Record<string, _sinequa_atomic.CCList>;
|
|
12032
|
+
webServices: Record<string, _sinequa_atomic.CCWebService>;
|
|
12033
|
+
queryNames: string;
|
|
12034
|
+
labels: string;
|
|
12035
|
+
preview: string;
|
|
12036
|
+
autocomplete: string;
|
|
12037
|
+
sponsoredLinks: string;
|
|
12038
|
+
queryExport: string;
|
|
12039
|
+
queryRssEnabled: boolean;
|
|
12040
|
+
data: Record<string, unknown> & _sinequa_atomic_angular.CJson & {
|
|
12041
|
+
filters?: _sinequa_atomic_angular.CAggregation[];
|
|
12042
|
+
autocomplete?: _sinequa_atomic_angular.Autocomplete;
|
|
12043
|
+
tabs?: Record<string, {
|
|
12044
|
+
filters: string[];
|
|
12045
|
+
overviews?: Record<string, {
|
|
12046
|
+
minRelevance: number;
|
|
12047
|
+
}>;
|
|
12048
|
+
}>;
|
|
12049
|
+
sources?: _sinequa_atomic_angular.CSources;
|
|
12050
|
+
features?: {
|
|
12051
|
+
[key: string]: boolean | {
|
|
12052
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
12053
|
+
} | undefined;
|
|
12054
|
+
allowChangePassword?: boolean;
|
|
12055
|
+
editablepartition?: boolean;
|
|
12056
|
+
advancedSearch?: boolean;
|
|
12057
|
+
allowChatDrawer?: boolean;
|
|
12058
|
+
filterLinkChildren?: boolean;
|
|
12059
|
+
expandPreview?: boolean;
|
|
12060
|
+
quickFilter?: boolean;
|
|
12061
|
+
showAggregationItemCount?: boolean;
|
|
12062
|
+
assistant?: {
|
|
12063
|
+
usePrefixName?: boolean;
|
|
12064
|
+
};
|
|
12065
|
+
filters?: {
|
|
12066
|
+
homepage?: boolean;
|
|
12067
|
+
};
|
|
12068
|
+
userProfile?: {
|
|
12069
|
+
enabled?: boolean;
|
|
12070
|
+
customData?: string[];
|
|
12071
|
+
};
|
|
12072
|
+
};
|
|
12073
|
+
allowAdvancedFilters?: boolean;
|
|
12074
|
+
general?: {
|
|
12075
|
+
name?: string;
|
|
12076
|
+
logo?: {
|
|
12077
|
+
alt?: string;
|
|
12078
|
+
light?: {
|
|
12079
|
+
small?: string;
|
|
12080
|
+
large?: string;
|
|
12081
|
+
};
|
|
12082
|
+
dark?: {
|
|
12083
|
+
small?: string;
|
|
12084
|
+
large?: string;
|
|
12085
|
+
};
|
|
12086
|
+
};
|
|
12087
|
+
features?: {
|
|
12088
|
+
[key: string]: boolean | {
|
|
12089
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
12090
|
+
} | undefined;
|
|
12091
|
+
allowChangePassword?: boolean;
|
|
12092
|
+
editablepartition?: boolean;
|
|
12093
|
+
advancedSearch?: boolean;
|
|
12094
|
+
allowChatDrawer?: boolean;
|
|
12095
|
+
filterLinkChildren?: boolean;
|
|
12096
|
+
expandPreview?: boolean;
|
|
12097
|
+
quickFilter?: boolean;
|
|
12098
|
+
showAggregationItemCount?: boolean;
|
|
12099
|
+
assistant?: {
|
|
12100
|
+
usePrefixName?: boolean;
|
|
12101
|
+
};
|
|
12102
|
+
filters?: {
|
|
12103
|
+
homepage?: boolean;
|
|
12104
|
+
};
|
|
12105
|
+
userProfile?: {
|
|
12106
|
+
enabled?: boolean;
|
|
12107
|
+
customData?: string[];
|
|
12108
|
+
};
|
|
12109
|
+
};
|
|
12110
|
+
};
|
|
12111
|
+
};
|
|
12112
|
+
customJSONs: {
|
|
12113
|
+
name: string;
|
|
12114
|
+
data: Record<string, unknown>;
|
|
12115
|
+
}[] & _sinequa_atomic_angular.SideCJson[];
|
|
12116
|
+
apiVersion: string;
|
|
12117
|
+
workspaceApp: string;
|
|
12118
|
+
defaultQueryName: string;
|
|
12119
|
+
auditEnabled?: boolean | undefined;
|
|
12120
|
+
dataSets?: string | undefined;
|
|
12121
|
+
revision?: number | undefined;
|
|
12122
|
+
runnableModels?: string | undefined;
|
|
12123
|
+
authorizationLevel?: string | undefined;
|
|
12124
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
10668
12125
|
}>;
|
|
10669
|
-
protected userProfileService: UserProfileService;
|
|
10670
12126
|
private readonly transloco;
|
|
10671
12127
|
readonly createInputElement: _angular_core.Signal<ElementRef<HTMLInputElement> | undefined>;
|
|
10672
12128
|
dataKeys: string[];
|
|
10673
12129
|
readonly initials: _angular_core.Signal<string | undefined>;
|
|
10674
12130
|
propertyToEdit: _angular_core.WritableSignal<string | undefined>;
|
|
10675
|
-
value: _angular_core.ModelSignal<string |
|
|
12131
|
+
value: _angular_core.ModelSignal<string | undefined>;
|
|
10676
12132
|
currentLanguage: _angular_core.ModelSignal<string | undefined>;
|
|
10677
12133
|
AllLanguages: {
|
|
10678
12134
|
code: SupportedLanguage;
|
|
@@ -10681,6 +12137,7 @@ declare class UserProfileFormComponent {
|
|
|
10681
12137
|
}[];
|
|
10682
12138
|
changingPassword: _angular_core.WritableSignal<boolean>;
|
|
10683
12139
|
principal: _angular_core.Signal<_sinequa_atomic.Principal>;
|
|
12140
|
+
customData: _angular_core.Signal<string[]>;
|
|
10684
12141
|
constructor();
|
|
10685
12142
|
protected userProfileResource: _angular_common_http.HttpResourceRef<_sinequa_atomic.UserProfile | undefined>;
|
|
10686
12143
|
readonly userProfile: _angular_core.WritableSignal<_sinequa_atomic.UserProfile | undefined>;
|
|
@@ -10691,26 +12148,29 @@ declare class UserProfileFormComponent {
|
|
|
10691
12148
|
* @param category data or customData
|
|
10692
12149
|
* @param propertyName property name
|
|
10693
12150
|
*/
|
|
10694
|
-
onEdit(propertyName: string): void;
|
|
12151
|
+
onEdit(category: "data" | "customData", propertyName: string): void;
|
|
10695
12152
|
/**
|
|
10696
12153
|
* On data property deletion, for now we make the property an empty string
|
|
10697
12154
|
*
|
|
12155
|
+
* @param category data or customData
|
|
10698
12156
|
* @param propertyName property name
|
|
10699
12157
|
*/
|
|
10700
|
-
onDeleteData(propertyName: string): void;
|
|
12158
|
+
onDeleteData(category: "data" | "customData", propertyName: string): void;
|
|
10701
12159
|
/**
|
|
10702
12160
|
* Saving a data property
|
|
10703
12161
|
*
|
|
12162
|
+
* @param category data or customData
|
|
10704
12163
|
* @param propertyName property name
|
|
10705
12164
|
*/
|
|
10706
|
-
onSaveData(propertyName: string): Promise<void>;
|
|
12165
|
+
onSaveData(category: "data" | "customData", propertyName: string): Promise<void>;
|
|
10707
12166
|
/**
|
|
10708
12167
|
* Get the value of a data key
|
|
10709
12168
|
*
|
|
12169
|
+
* @param category data or customData
|
|
10710
12170
|
* @param key property key
|
|
10711
12171
|
* @returns the value
|
|
10712
12172
|
*/
|
|
10713
|
-
getDataValue(key: string):
|
|
12173
|
+
getDataValue(category: "data" | "customData", key: string): string | undefined;
|
|
10714
12174
|
/**
|
|
10715
12175
|
* TODO: how do we save the picture?
|
|
10716
12176
|
*
|
|
@@ -10862,7 +12322,7 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
10862
12322
|
sources?: _sinequa_atomic_angular.CSources;
|
|
10863
12323
|
features?: {
|
|
10864
12324
|
[key: string]: boolean | {
|
|
10865
|
-
[key: string]: boolean | undefined;
|
|
12325
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
10866
12326
|
} | undefined;
|
|
10867
12327
|
allowChangePassword?: boolean;
|
|
10868
12328
|
editablepartition?: boolean;
|
|
@@ -10878,6 +12338,10 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
10878
12338
|
filters?: {
|
|
10879
12339
|
homepage?: boolean;
|
|
10880
12340
|
};
|
|
12341
|
+
userProfile?: {
|
|
12342
|
+
enabled?: boolean;
|
|
12343
|
+
customData?: string[];
|
|
12344
|
+
};
|
|
10881
12345
|
};
|
|
10882
12346
|
allowAdvancedFilters?: boolean;
|
|
10883
12347
|
general?: {
|
|
@@ -10895,7 +12359,7 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
10895
12359
|
};
|
|
10896
12360
|
features?: {
|
|
10897
12361
|
[key: string]: boolean | {
|
|
10898
|
-
[key: string]: boolean | undefined;
|
|
12362
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
10899
12363
|
} | undefined;
|
|
10900
12364
|
allowChangePassword?: boolean;
|
|
10901
12365
|
editablepartition?: boolean;
|
|
@@ -10911,6 +12375,10 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
10911
12375
|
filters?: {
|
|
10912
12376
|
homepage?: boolean;
|
|
10913
12377
|
};
|
|
12378
|
+
userProfile?: {
|
|
12379
|
+
enabled?: boolean;
|
|
12380
|
+
customData?: string[];
|
|
12381
|
+
};
|
|
10914
12382
|
};
|
|
10915
12383
|
};
|
|
10916
12384
|
}>;
|
|
@@ -10945,7 +12413,7 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
10945
12413
|
};
|
|
10946
12414
|
features?: {
|
|
10947
12415
|
[key: string]: boolean | {
|
|
10948
|
-
[key: string]: boolean | undefined;
|
|
12416
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
10949
12417
|
} | undefined;
|
|
10950
12418
|
allowChangePassword?: boolean;
|
|
10951
12419
|
editablepartition?: boolean;
|
|
@@ -10961,6 +12429,10 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
10961
12429
|
filters?: {
|
|
10962
12430
|
homepage?: boolean;
|
|
10963
12431
|
};
|
|
12432
|
+
userProfile?: {
|
|
12433
|
+
enabled?: boolean;
|
|
12434
|
+
customData?: string[];
|
|
12435
|
+
};
|
|
10964
12436
|
};
|
|
10965
12437
|
} | undefined>;
|
|
10966
12438
|
assistants: _angular_core.Signal<{
|
|
@@ -11022,7 +12494,7 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
11022
12494
|
sources?: _sinequa_atomic_angular.CSources;
|
|
11023
12495
|
features?: {
|
|
11024
12496
|
[key: string]: boolean | {
|
|
11025
|
-
[key: string]: boolean | undefined;
|
|
12497
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
11026
12498
|
} | undefined;
|
|
11027
12499
|
allowChangePassword?: boolean;
|
|
11028
12500
|
editablepartition?: boolean;
|
|
@@ -11038,6 +12510,10 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
11038
12510
|
filters?: {
|
|
11039
12511
|
homepage?: boolean;
|
|
11040
12512
|
};
|
|
12513
|
+
userProfile?: {
|
|
12514
|
+
enabled?: boolean;
|
|
12515
|
+
customData?: string[];
|
|
12516
|
+
};
|
|
11041
12517
|
};
|
|
11042
12518
|
allowAdvancedFilters?: boolean;
|
|
11043
12519
|
general?: {
|
|
@@ -11055,7 +12531,7 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
11055
12531
|
};
|
|
11056
12532
|
features?: {
|
|
11057
12533
|
[key: string]: boolean | {
|
|
11058
|
-
[key: string]: boolean | undefined;
|
|
12534
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
11059
12535
|
} | undefined;
|
|
11060
12536
|
allowChangePassword?: boolean;
|
|
11061
12537
|
editablepartition?: boolean;
|
|
@@ -11071,6 +12547,10 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
11071
12547
|
filters?: {
|
|
11072
12548
|
homepage?: boolean;
|
|
11073
12549
|
};
|
|
12550
|
+
userProfile?: {
|
|
12551
|
+
enabled?: boolean;
|
|
12552
|
+
customData?: string[];
|
|
12553
|
+
};
|
|
11074
12554
|
};
|
|
11075
12555
|
};
|
|
11076
12556
|
};
|
|
@@ -11204,5 +12684,5 @@ type AppFeatures = {
|
|
|
11204
12684
|
*/
|
|
11205
12685
|
declare const APP_FEATURES: InjectionToken<AppFeatures>;
|
|
11206
12686
|
|
|
11207
|
-
export { AGGREGATIONS_NAMES, AGGREGATIONS_NAMES_PRESET_DEFAULT, APP_FEATURES, AdvancedSearchComponent, AggregationComponent, AggregationsService, AggregationsStore, Alert, AlertDialog, AlertsComponent, AppService, AppStore, ApplicationService, ApplicationStore, AsideFiltersComponent, AuditFeedbackType, AuditService, AuthGuard, AuthPageComponent, AutocompleteService, BOOKMARKS_CONFIG, BOOKMARKS_OPTIONS, BackdropComponent, BackdropService, BookmarkButtonComponent, BookmarksComponent, COLLECTIONS_CONFIG, COLLECTIONS_OPTIONS, COMPONENTS_FOR_DOCUMENT_TYPE, ChangePasswordComponent, ChildMarkerDirective, CollectionsComponent, CollectionsDialog, DRAWER_COMPONENT, DRAWER_STACK_MAX_COUNT, DateComponent, DeleteCollectionDialog, DidYouMeanComponent, DocumentLocatorComponent, DrawerAdvancedFiltersComponent, DrawerComponent, DrawerNavbarComponent, DrawerPreviewComponent, DrawerService, DrawerStackComponent, DrawerStackService, DropdownInputComponent, DropdownListComponent, ErrorComponent, ExportDialog, ExportService, FILTERS_BREAKPOINT, FILTER_DATE_ALLOW_CUSTOM_RANGE, FeedbackDialogComponent, FileSizePipe, FilterButtonComponent, FiltersBarComponent, HIGHLIGHTS, HighlightWordPipe, InfinityScrollDirective, InlineWorker, JsonMethodPluginService, KeyboardNavigatorDirective, LabelService, LabelsEditDialog, LoadingComponent, MetadataComponent, MissingTermsComponent, MoreButtonComponent, MoreComponent, MultiSelectLabelsComponent, MultiSelectionToolbarComponent, NON_SEARCHABLE_COLUMNS, NON_SEARCHABLE_DEFAULTS, NavbarTabsComponent, NavigationService, NoResultComponent, OpenArticleOnCtrlEnterDirective, OperatorPipe, OverflowItemDirective, OverflowManagerDirective, OverflowStopDirective, OverrideUserDialogComponent, PREVIEW_CONFIG, PagerComponent, PasswordExpiryGuard, PreviewNavigator, PreviewService, PrincipalService, PrincipalStore, QueryParamsStore, QueryService, RECENT_SEARCHES_CONFIG, RECENT_SEARCHES_OPTIONS, ROUTE_COMPONENTS, RecentSearchesComponent, ResetUserSettingsDialogComponent, SAVED_SEARCHES_CONFIG, SAVED_SEARCHES_OPTIONS, SavedSearchDialog, SavedSearchesComponent, SavedSearchesService, SearchFeedbackComponent, SearchInputFooter, SearchService, SelectArticleOnClickDirective, SelectionHistoryService, SelectionService, SelectionStore, ShowBookmarkDirective, SignInComponent, SortSelectorComponent, SourceComponent, SourceIconPipe, SponsoredResultsComponent, SyslangPipe, THEMES, TextChunkService, ThemeProviderDirective, ThemeSelectorComponent, ThemeStore, ThemeToggleComponent, TranslocoDateImpurePipe, UserProfileDialog, UserProfileFormComponent, UserProfileService, UserSettingsStore, applyThemeToNativeElement, auditInterceptorFn, authInterceptorFn, bodyInterceptorFn, buildQuery, debouncedSignal, errorInterceptorFn, getCurrentPath, getCurrentQueryName, getQueryNameFromRoute, processCssVars, queryNameResolver, signIn, themeColorNameToCssVariable, themeColorsToCssVariables, toastInterceptorFn, withAggregationsFeatures, withAlertsFeatures, withAppFeatures, withApplicationFeatures, withAssistantFeatures, withBasketsFeatures, withBookmarkFeatures, withBootstrapApp, withExtractsFeatures, withFetch, withMultiSelectionFeatures, withPrincipalFeatures, withQueryParamsFeatures, withRecentSearchesFeatures, withSavedSearchesFeatures, withSelectionFeatures, withThemeBodyHook, withThemes, withThemesFeatures, withUserSettingsFeatures };
|
|
12687
|
+
export { AGGREGATIONS_NAMES, AGGREGATIONS_NAMES_PRESET_DEFAULT, APP_FEATURES, AdvancedFiltersComponent, AdvancedSearch, AdvancedSearchComponent, AggregationComponent, AggregationsService, AggregationsStore, Alert, AlertDialog, AlertsComponent, AppService, AppStore, ApplicationService, ApplicationStore, ArticleEntities, ArticleExtracts, ArticleLabels, ArticleSimilarDocuments, AsideFiltersComponent, AuditFeedbackType, AuditService, AuthGuard, AuthPageComponent, AutocompleteService, BOOKMARKS_CONFIG, BOOKMARKS_OPTIONS, BackdropComponent, BackdropService, BookmarkButtonComponent, BookmarksComponent, COLLECTIONS_CONFIG, COLLECTIONS_OPTIONS, COMPONENTS_FOR_DOCUMENT_TYPE, ChangePasswordComponent, ChildMarkerDirective, CollectionsComponent, CollectionsDialog, DRAWER_COMPONENT, DRAWER_STACK_MAX_COUNT, DateComponent, DeleteCollectionDialog, DidYouMeanComponent, DocumentLocatorComponent, DrawerAdvancedFiltersComponent, DrawerComponent, DrawerNavbarComponent, DrawerPreviewComponent, DrawerService, DrawerStackComponent, DrawerStackService, DropdownInputComponent, DropdownListComponent, ErrorComponent, ExportDialog, ExportService, FILTERS_BREAKPOINT, FILTER_DATE_ALLOW_CUSTOM_RANGE, FeedbackDialogComponent, FileSizePipe, FilterButtonComponent, FiltersBarComponent, HIGHLIGHTS, HighlightWordPipe, InfinityScrollDirective, InlineWorker, JsonMethodPluginService, KeyboardNavigatorDirective, LabelService, LabelsEditDialog, LoadingComponent, MetadataComponent, MissingTermsComponent, MoreButtonComponent, MoreComponent, MultiSelectLabelsComponent, MultiSelectionToolbarComponent, NON_SEARCHABLE_COLUMNS, NON_SEARCHABLE_DEFAULTS, NavbarTabsComponent, NavigationService, NoResultComponent, OpenArticleOnCtrlEnterDirective, OperatorPipe, OverflowItemDirective, OverflowManagerDirective, OverflowStopDirective, OverrideUserDialogComponent, PREVIEW_CONFIG, PagerComponent, PasswordExpiryGuard, PreviewNavigator, PreviewService, PrincipalService, PrincipalStore, QueryParamsStore, QueryService, RECENT_SEARCHES_CONFIG, RECENT_SEARCHES_OPTIONS, ROUTE_COMPONENTS, RecentSearchesComponent, ResetUserSettingsDialogComponent, SAVED_SEARCHES_CONFIG, SAVED_SEARCHES_OPTIONS, SavedSearchDialog, SavedSearchesComponent, SavedSearchesService, SearchFeedbackComponent, SearchInputFooter, SearchService, SelectArticleDirective, SelectArticleOnClickDirective, SelectionHistoryService, SelectionService, SelectionStore, ShowBookmarkDirective, SignInComponent, SortSelectorComponent, SourceComponent, SourceIconPipe, SponsoredResultsComponent, SyslangPipe, THEMES, TextChunkService, ThemeProviderDirective, ThemeSelectorComponent, ThemeStore, ThemeToggleComponent, TranslocoDateImpurePipe, UserProfileDialog, UserProfileFormComponent, UserProfileService, UserSettingsStore, applyThemeToNativeElement, auditInterceptorFn, authInterceptorFn, bodyInterceptorFn, buildQuery, debouncedSignal, errorInterceptorFn, getCurrentPath, getCurrentQueryName, getQueryNameFromRoute, processCssVars, queryNameResolver, signIn, themeColorNameToCssVariable, themeColorsToCssVariables, toastInterceptorFn, withAggregationsFeatures, withAlertsFeatures, withAppFeatures, withApplicationFeatures, withAssistantFeatures, withBasketsFeatures, withBookmarkFeatures, withBootstrapApp, withExtractsFeatures, withFetch, withMultiSelectionFeatures, withPrincipalFeatures, withQueryParamsFeatures, withRecentSearchesFeatures, withSavedSearchesFeatures, withSelectionFeatures, withThemeBodyHook, withThemes, withThemesFeatures, withUserSettingsFeatures };
|
|
11208
12688
|
export type { AggEx, AggregationEx, AggregationListEx, AggregationListItem, AggregationTitle, AggregationTreeEx, AggregationsState, AppCJson, AppFeatures, ApplicationState, ArticleMetadata, AssistantDetails, Autocomplete, Basket, Bookmark, BookmarksConfig, CAggregation, CAggregationItem, CCAppState, CCWebServiceLabels, CFilter, CFilterEx, CFilterItem, CJ, CJson, CJsonMint, CSources, CollectionsConfig, ComponentMapping, CssVars, DocumentTypeMap, DropdownItem, ExportQueryOptions, Extract, FilterDropdown, KeyboardNavigationOnSelectionHandlers, KeyboardNavigatorOptions, LabelsConfig, MultiSelectionState, MultiSelectionToolbarVariants, PageConfiguration, PreviewEvents, PreviewHighlight, PreviewHighlightName, PreviewHighlights, PrincipalState, SearchItem, SearchOptions, SearchesConfig, SelectionHistoryEvent, SelectionState, SelectionStrategy, SideCJson, SortingChoice, Theme, ThemeBodyHookParameters, ThemeScope, ThemeStoreState, UserSettingsState };
|