@sinequa/atomic-angular 1.0.14 → 1.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/sinequa-atomic-angular.mjs +401 -204
- package/fesm2022/sinequa-atomic-angular.mjs.map +1 -1
- package/index.d.ts +513 -26
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import { BehaviorSubject, Observable, Subject } from 'rxjs';
|
|
|
5
5
|
import * as _ngrx_signals from '@ngrx/signals';
|
|
6
6
|
import * as _sinequa_atomic from '@sinequa/atomic';
|
|
7
7
|
import { Article as Article$1, LegacyFilter, KeyOf, Query, QueryParams as QueryParams$1, AggregationItem, TreeAggregationNode, Aggregation, TreeAggregation, Conversion, CCApp, CCColumn, CCQuery, CCWebService, Principal, SpellingCorrectionMode, AuditEvents, CustomHighlights, Result, AuditEventType, AuditEventTypeValues, Suggestion, PreviewData, TextLocation, TextChunk, UserProfile, CCSortingChoice, LinkResult, ExportQueryModel, ExportOutputFormat, FilterOperator } from '@sinequa/atomic';
|
|
8
|
-
import { Router, NavigationEnd, ActivatedRoute, CanActivateFn, ResolveFn } from '@angular/router';
|
|
8
|
+
import { Router, NavigationEnd, ActivatedRoute, Params, 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
11
|
import { cn, DialogService, DropdownComponent, SheetService, DateRangePickerDirective, DatepickerDirective, DialogComponent, DialogInterface, DialogEvent, PopoverComponent, PopoverContentComponent, DialogResult, BreakpointObserverService } from '@sinequa/ui';
|
|
@@ -224,8 +224,16 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
224
224
|
}
|
|
225
225
|
|
|
226
226
|
declare class ErrorComponent {
|
|
227
|
+
private readonly route;
|
|
227
228
|
router: Router;
|
|
228
|
-
|
|
229
|
+
/**
|
|
230
|
+
* Human-readable error detail shown on the page, taken from the `message` query param.
|
|
231
|
+
* Callers navigating here can pass it, e.g. on an auth failure:
|
|
232
|
+
* `router.navigate(["error"], { queryParams: { message: err.message } })`.
|
|
233
|
+
*/
|
|
234
|
+
readonly message: string | undefined;
|
|
235
|
+
/** Navigate home and re-bootstrap the application (fresh authentication attempt). */
|
|
236
|
+
goHome(): void;
|
|
229
237
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ErrorComponent, never>;
|
|
230
238
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ErrorComponent, "error-component, ErrorComponent", never, {}, {}, never, never, true, never>;
|
|
231
239
|
}
|
|
@@ -250,7 +258,7 @@ declare class MetadataComponent {
|
|
|
250
258
|
event: Event;
|
|
251
259
|
}>;
|
|
252
260
|
class: _angular_core.InputSignal<string | undefined>;
|
|
253
|
-
variant: _angular_core.InputSignal<"error" | "default" | "secondary" | "
|
|
261
|
+
variant: _angular_core.InputSignal<"error" | "default" | "secondary" | "accent" | "destructive" | "outline" | "ghost" | "ai" | "none" | "info" | "success" | "warning" | null | undefined>;
|
|
254
262
|
metadata: _angular_core.InputSignal<KeyOf<Article$1> | (string & Record<never, never>)>;
|
|
255
263
|
article: _angular_core.InputSignal<Partial<Article$1> | (string & Record<never, never>)>;
|
|
256
264
|
limit: _angular_core.InputSignalWithTransform<number | undefined, string | number | undefined>;
|
|
@@ -418,6 +426,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
418
426
|
customData?: string[];
|
|
419
427
|
};
|
|
420
428
|
previewMultiConversion?: boolean;
|
|
429
|
+
persistFiltersAcrossTabs?: boolean;
|
|
421
430
|
};
|
|
422
431
|
allowAdvancedFilters?: boolean;
|
|
423
432
|
general?: {
|
|
@@ -459,6 +468,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
459
468
|
customData?: string[];
|
|
460
469
|
};
|
|
461
470
|
previewMultiConversion?: boolean;
|
|
471
|
+
persistFiltersAcrossTabs?: boolean;
|
|
462
472
|
};
|
|
463
473
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
464
474
|
};
|
|
@@ -521,6 +531,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
521
531
|
customData?: string[];
|
|
522
532
|
};
|
|
523
533
|
previewMultiConversion?: boolean;
|
|
534
|
+
persistFiltersAcrossTabs?: boolean;
|
|
524
535
|
};
|
|
525
536
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
526
537
|
} | undefined>;
|
|
@@ -611,6 +622,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
611
622
|
customData?: string[];
|
|
612
623
|
};
|
|
613
624
|
previewMultiConversion?: boolean;
|
|
625
|
+
persistFiltersAcrossTabs?: boolean;
|
|
614
626
|
};
|
|
615
627
|
allowAdvancedFilters?: boolean;
|
|
616
628
|
general?: {
|
|
@@ -652,6 +664,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
652
664
|
customData?: string[];
|
|
653
665
|
};
|
|
654
666
|
previewMultiConversion?: boolean;
|
|
667
|
+
persistFiltersAcrossTabs?: boolean;
|
|
655
668
|
};
|
|
656
669
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
657
670
|
};
|
|
@@ -736,6 +749,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
736
749
|
customData?: string[];
|
|
737
750
|
};
|
|
738
751
|
previewMultiConversion?: boolean;
|
|
752
|
+
persistFiltersAcrossTabs?: boolean;
|
|
739
753
|
};
|
|
740
754
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
741
755
|
} | undefined;
|
|
@@ -952,6 +966,7 @@ type CFeatures = {
|
|
|
952
966
|
customData?: string[];
|
|
953
967
|
};
|
|
954
968
|
previewMultiConversion?: boolean;
|
|
969
|
+
persistFiltersAcrossTabs?: boolean;
|
|
955
970
|
[key: string]: boolean | {
|
|
956
971
|
[key: string]: boolean | string | string[] | undefined;
|
|
957
972
|
} | undefined;
|
|
@@ -1143,6 +1158,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
1143
1158
|
customData?: string[];
|
|
1144
1159
|
};
|
|
1145
1160
|
previewMultiConversion?: boolean;
|
|
1161
|
+
persistFiltersAcrossTabs?: boolean;
|
|
1146
1162
|
};
|
|
1147
1163
|
allowAdvancedFilters?: boolean;
|
|
1148
1164
|
general?: {
|
|
@@ -1184,6 +1200,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
1184
1200
|
customData?: string[];
|
|
1185
1201
|
};
|
|
1186
1202
|
previewMultiConversion?: boolean;
|
|
1203
|
+
persistFiltersAcrossTabs?: boolean;
|
|
1187
1204
|
};
|
|
1188
1205
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
1189
1206
|
};
|
|
@@ -1246,6 +1263,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
1246
1263
|
customData?: string[];
|
|
1247
1264
|
};
|
|
1248
1265
|
previewMultiConversion?: boolean;
|
|
1266
|
+
persistFiltersAcrossTabs?: boolean;
|
|
1249
1267
|
};
|
|
1250
1268
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
1251
1269
|
} | undefined>;
|
|
@@ -1330,6 +1348,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
1330
1348
|
customData?: string[];
|
|
1331
1349
|
};
|
|
1332
1350
|
previewMultiConversion?: boolean;
|
|
1351
|
+
persistFiltersAcrossTabs?: boolean;
|
|
1333
1352
|
};
|
|
1334
1353
|
allowAdvancedFilters?: boolean;
|
|
1335
1354
|
general?: {
|
|
@@ -1371,6 +1390,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
1371
1390
|
customData?: string[];
|
|
1372
1391
|
};
|
|
1373
1392
|
previewMultiConversion?: boolean;
|
|
1393
|
+
persistFiltersAcrossTabs?: boolean;
|
|
1374
1394
|
};
|
|
1375
1395
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
1376
1396
|
};
|
|
@@ -1448,6 +1468,7 @@ declare function withAppFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signa
|
|
|
1448
1468
|
customData?: string[];
|
|
1449
1469
|
};
|
|
1450
1470
|
previewMultiConversion?: boolean;
|
|
1471
|
+
persistFiltersAcrossTabs?: boolean;
|
|
1451
1472
|
};
|
|
1452
1473
|
allowAdvancedFilters?: boolean;
|
|
1453
1474
|
general?: {
|
|
@@ -1489,6 +1510,7 @@ declare function withAppFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signa
|
|
|
1489
1510
|
customData?: string[];
|
|
1490
1511
|
};
|
|
1491
1512
|
previewMultiConversion?: boolean;
|
|
1513
|
+
persistFiltersAcrossTabs?: boolean;
|
|
1492
1514
|
};
|
|
1493
1515
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
1494
1516
|
};
|
|
@@ -1553,6 +1575,7 @@ declare function withAppFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signa
|
|
|
1553
1575
|
customData?: string[];
|
|
1554
1576
|
};
|
|
1555
1577
|
previewMultiConversion?: boolean;
|
|
1578
|
+
persistFiltersAcrossTabs?: boolean;
|
|
1556
1579
|
};
|
|
1557
1580
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
1558
1581
|
} | undefined>;
|
|
@@ -2310,6 +2333,7 @@ declare class AggregationsService {
|
|
|
2310
2333
|
customData?: string[];
|
|
2311
2334
|
};
|
|
2312
2335
|
previewMultiConversion?: boolean;
|
|
2336
|
+
persistFiltersAcrossTabs?: boolean;
|
|
2313
2337
|
};
|
|
2314
2338
|
allowAdvancedFilters?: boolean;
|
|
2315
2339
|
general?: {
|
|
@@ -2351,6 +2375,7 @@ declare class AggregationsService {
|
|
|
2351
2375
|
customData?: string[];
|
|
2352
2376
|
};
|
|
2353
2377
|
previewMultiConversion?: boolean;
|
|
2378
|
+
persistFiltersAcrossTabs?: boolean;
|
|
2354
2379
|
};
|
|
2355
2380
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
2356
2381
|
};
|
|
@@ -2413,6 +2438,7 @@ declare class AggregationsService {
|
|
|
2413
2438
|
customData?: string[];
|
|
2414
2439
|
};
|
|
2415
2440
|
previewMultiConversion?: boolean;
|
|
2441
|
+
persistFiltersAcrossTabs?: boolean;
|
|
2416
2442
|
};
|
|
2417
2443
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
2418
2444
|
} | undefined>;
|
|
@@ -2503,6 +2529,7 @@ declare class AggregationsService {
|
|
|
2503
2529
|
customData?: string[];
|
|
2504
2530
|
};
|
|
2505
2531
|
previewMultiConversion?: boolean;
|
|
2532
|
+
persistFiltersAcrossTabs?: boolean;
|
|
2506
2533
|
};
|
|
2507
2534
|
allowAdvancedFilters?: boolean;
|
|
2508
2535
|
general?: {
|
|
@@ -2544,6 +2571,7 @@ declare class AggregationsService {
|
|
|
2544
2571
|
customData?: string[];
|
|
2545
2572
|
};
|
|
2546
2573
|
previewMultiConversion?: boolean;
|
|
2574
|
+
persistFiltersAcrossTabs?: boolean;
|
|
2547
2575
|
};
|
|
2548
2576
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
2549
2577
|
};
|
|
@@ -2739,8 +2767,9 @@ declare class AppService {
|
|
|
2739
2767
|
*
|
|
2740
2768
|
* @remarks
|
|
2741
2769
|
* This method constructs an HTTP GET request to fetch the application configuration
|
|
2742
|
-
* using the `app` parameter from the global configuration. If the request fails,
|
|
2743
|
-
*
|
|
2770
|
+
* using the `app` parameter from the global configuration. If the request fails, it logs the
|
|
2771
|
+
* error and re-throws a normalized `Error` carrying the server's `errorMessage` when available
|
|
2772
|
+
* (e.g. "app not found: '...'"), so callers can surface the reason on the error page.
|
|
2744
2773
|
*
|
|
2745
2774
|
* @example
|
|
2746
2775
|
* ```typescript
|
|
@@ -2929,6 +2958,7 @@ declare class ApplicationService {
|
|
|
2929
2958
|
customData?: string[];
|
|
2930
2959
|
};
|
|
2931
2960
|
previewMultiConversion?: boolean;
|
|
2961
|
+
persistFiltersAcrossTabs?: boolean;
|
|
2932
2962
|
};
|
|
2933
2963
|
allowAdvancedFilters?: boolean;
|
|
2934
2964
|
general?: {
|
|
@@ -2970,6 +3000,7 @@ declare class ApplicationService {
|
|
|
2970
3000
|
customData?: string[];
|
|
2971
3001
|
};
|
|
2972
3002
|
previewMultiConversion?: boolean;
|
|
3003
|
+
persistFiltersAcrossTabs?: boolean;
|
|
2973
3004
|
};
|
|
2974
3005
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
2975
3006
|
};
|
|
@@ -3032,6 +3063,7 @@ declare class ApplicationService {
|
|
|
3032
3063
|
customData?: string[];
|
|
3033
3064
|
};
|
|
3034
3065
|
previewMultiConversion?: boolean;
|
|
3066
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3035
3067
|
};
|
|
3036
3068
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
3037
3069
|
} | undefined>;
|
|
@@ -3122,6 +3154,7 @@ declare class ApplicationService {
|
|
|
3122
3154
|
customData?: string[];
|
|
3123
3155
|
};
|
|
3124
3156
|
previewMultiConversion?: boolean;
|
|
3157
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3125
3158
|
};
|
|
3126
3159
|
allowAdvancedFilters?: boolean;
|
|
3127
3160
|
general?: {
|
|
@@ -3163,6 +3196,7 @@ declare class ApplicationService {
|
|
|
3163
3196
|
customData?: string[];
|
|
3164
3197
|
};
|
|
3165
3198
|
previewMultiConversion?: boolean;
|
|
3199
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3166
3200
|
};
|
|
3167
3201
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
3168
3202
|
};
|
|
@@ -3317,6 +3351,7 @@ declare class AuditService {
|
|
|
3317
3351
|
customData?: string[];
|
|
3318
3352
|
};
|
|
3319
3353
|
previewMultiConversion?: boolean;
|
|
3354
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3320
3355
|
};
|
|
3321
3356
|
allowAdvancedFilters?: boolean;
|
|
3322
3357
|
general?: {
|
|
@@ -3358,6 +3393,7 @@ declare class AuditService {
|
|
|
3358
3393
|
customData?: string[];
|
|
3359
3394
|
};
|
|
3360
3395
|
previewMultiConversion?: boolean;
|
|
3396
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3361
3397
|
};
|
|
3362
3398
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
3363
3399
|
};
|
|
@@ -3420,6 +3456,7 @@ declare class AuditService {
|
|
|
3420
3456
|
customData?: string[];
|
|
3421
3457
|
};
|
|
3422
3458
|
previewMultiConversion?: boolean;
|
|
3459
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3423
3460
|
};
|
|
3424
3461
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
3425
3462
|
} | undefined>;
|
|
@@ -3510,6 +3547,7 @@ declare class AuditService {
|
|
|
3510
3547
|
customData?: string[];
|
|
3511
3548
|
};
|
|
3512
3549
|
previewMultiConversion?: boolean;
|
|
3550
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3513
3551
|
};
|
|
3514
3552
|
allowAdvancedFilters?: boolean;
|
|
3515
3553
|
general?: {
|
|
@@ -3551,6 +3589,7 @@ declare class AuditService {
|
|
|
3551
3589
|
customData?: string[];
|
|
3552
3590
|
};
|
|
3553
3591
|
previewMultiConversion?: boolean;
|
|
3592
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3554
3593
|
};
|
|
3555
3594
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
3556
3595
|
};
|
|
@@ -3717,6 +3756,7 @@ declare class AutocompleteService {
|
|
|
3717
3756
|
customData?: string[];
|
|
3718
3757
|
};
|
|
3719
3758
|
previewMultiConversion?: boolean;
|
|
3759
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3720
3760
|
};
|
|
3721
3761
|
allowAdvancedFilters?: boolean;
|
|
3722
3762
|
general?: {
|
|
@@ -3758,6 +3798,7 @@ declare class AutocompleteService {
|
|
|
3758
3798
|
customData?: string[];
|
|
3759
3799
|
};
|
|
3760
3800
|
previewMultiConversion?: boolean;
|
|
3801
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3761
3802
|
};
|
|
3762
3803
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
3763
3804
|
};
|
|
@@ -3820,6 +3861,7 @@ declare class AutocompleteService {
|
|
|
3820
3861
|
customData?: string[];
|
|
3821
3862
|
};
|
|
3822
3863
|
previewMultiConversion?: boolean;
|
|
3864
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3823
3865
|
};
|
|
3824
3866
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
3825
3867
|
} | undefined>;
|
|
@@ -3910,6 +3952,7 @@ declare class AutocompleteService {
|
|
|
3910
3952
|
customData?: string[];
|
|
3911
3953
|
};
|
|
3912
3954
|
previewMultiConversion?: boolean;
|
|
3955
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3913
3956
|
};
|
|
3914
3957
|
allowAdvancedFilters?: boolean;
|
|
3915
3958
|
general?: {
|
|
@@ -3951,6 +3994,7 @@ declare class AutocompleteService {
|
|
|
3951
3994
|
customData?: string[];
|
|
3952
3995
|
};
|
|
3953
3996
|
previewMultiConversion?: boolean;
|
|
3997
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3954
3998
|
};
|
|
3955
3999
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
3956
4000
|
};
|
|
@@ -4194,29 +4238,68 @@ type Theme = (typeof THEMES)[number];
|
|
|
4194
4238
|
declare function withThemes(app: ApplicationRef, themes: Theme[]): ApplicationRef;
|
|
4195
4239
|
|
|
4196
4240
|
/**
|
|
4197
|
-
* Signs
|
|
4241
|
+
* Signs the user in according to the resolved {@link globalConfig.authMode}.
|
|
4198
4242
|
*
|
|
4199
|
-
*
|
|
4200
|
-
*
|
|
4201
|
-
* credentials
|
|
4202
|
-
*
|
|
4203
|
-
*
|
|
4204
|
-
*
|
|
4243
|
+
* The mode is expected to be resolved beforehand (by `initializeAppConfig`, awaited in
|
|
4244
|
+
* `bootstrapApp`). This function clears any existing session, then:
|
|
4245
|
+
* - `credentials` → redirect to the login form;
|
|
4246
|
+
* - `sso` → reload the page so the browser/proxy performs the handshake;
|
|
4247
|
+
* - `oauth` / `saml` → delegate to `login()`, which redirects to the provider;
|
|
4248
|
+
* - `bearer` → delegate to `login()`;
|
|
4249
|
+
* - `unknown` → `login()` tries SSO silently then resolves to credentials; on failure the login
|
|
4250
|
+
* form is shown.
|
|
4251
|
+
*
|
|
4252
|
+
* @returns A promise resolving to a boolean indicating whether the user is authenticated.
|
|
4205
4253
|
*/
|
|
4206
4254
|
declare function signIn(): Promise<boolean>;
|
|
4207
4255
|
|
|
4208
4256
|
/**
|
|
4209
4257
|
* Bootstraps the application by ensuring the user is authenticated and initializing the application.
|
|
4210
4258
|
*
|
|
4211
|
-
* This function first attempts to sign in the user
|
|
4212
|
-
* it
|
|
4213
|
-
*
|
|
4259
|
+
* This function first attempts to sign in the user via `signIn()`. If authentication is successful,
|
|
4260
|
+
* it initializes the application (stores and, optionally, dynamic routes) through `ApplicationService`
|
|
4261
|
+
* and waits for the initialization to complete before resolving. Any errors during authentication or
|
|
4262
|
+
* initialization are logged to the console, but the returned promise never rejects.
|
|
4263
|
+
*
|
|
4264
|
+
* Note: this function relies on Angular's injection context, so it must be called within one
|
|
4265
|
+
* (e.g. from `provideAppInitializer`).
|
|
4214
4266
|
*
|
|
4215
|
-
* @param
|
|
4216
|
-
* @param
|
|
4217
|
-
* @returns A promise that resolves when the application
|
|
4267
|
+
* @param options - Configuration options for the bootstrap process.
|
|
4268
|
+
* @param options.createRoutes - Whether to create routes during initialization. Defaults to `true`.
|
|
4269
|
+
* @returns A promise that resolves to `true` when the application has been fully initialized,
|
|
4270
|
+
* or `false` when the user is not authenticated or an error occurred.
|
|
4218
4271
|
*/
|
|
4219
|
-
declare function
|
|
4272
|
+
declare function bootstrapApp({ createRoutes }?: {
|
|
4273
|
+
createRoutes?: boolean | undefined;
|
|
4274
|
+
}): Promise<boolean>;
|
|
4275
|
+
/**
|
|
4276
|
+
* Bootstraps the application by ensuring the user is authenticated and initializing the application.
|
|
4277
|
+
*
|
|
4278
|
+
* @deprecated Use {@link bootstrapApp} instead, and let it inject `ApplicationService` itself.
|
|
4279
|
+
*
|
|
4280
|
+
* Migration — in your `app.config.ts`, replace:
|
|
4281
|
+
* ```ts
|
|
4282
|
+
* // ❌ Deprecated: eagerly injecting ApplicationService in the factory constructs it (and its
|
|
4283
|
+
* // dependent stores/services) BEFORE bootstrapApp resolves the config, so services that build
|
|
4284
|
+
* // their API URL from `globalConfig.backendUrl` capture `undefined` (→ `/undefined/api/v1/...`).
|
|
4285
|
+
* provideAppInitializer(() => withBootstrapApp(inject(ApplicationService), { createRoutes: true })),
|
|
4286
|
+
* ```
|
|
4287
|
+
* with:
|
|
4288
|
+
* ```ts
|
|
4289
|
+
* // ✅ bootstrapApp injects ApplicationService internally, AFTER initializeAppConfig() has set
|
|
4290
|
+
* // `backendUrl` and resolved the auth mode.
|
|
4291
|
+
* provideAppInitializer(() => bootstrapApp({ createRoutes: true })),
|
|
4292
|
+
* ```
|
|
4293
|
+
* (Remove the now-unused `inject` / `ApplicationService` imports.)
|
|
4294
|
+
*
|
|
4295
|
+
* @param applicationService - Ignored; kept for backward compatibility. `ApplicationService` is
|
|
4296
|
+
* provided in root and injected internally by {@link bootstrapApp}, so the instance is the same.
|
|
4297
|
+
* Passing `inject(ApplicationService)` here is discouraged — see the migration note above.
|
|
4298
|
+
* @param options - Configuration options for the bootstrap process.
|
|
4299
|
+
* @param options.createRoutes - Whether to create routes during initialization. Defaults to `true`.
|
|
4300
|
+
* @returns A promise that resolves when the bootstrap process is complete, regardless of success or failure.
|
|
4301
|
+
*/
|
|
4302
|
+
declare function withBootstrapApp(_applicationService: ApplicationService, { createRoutes }?: {
|
|
4220
4303
|
createRoutes?: boolean | undefined;
|
|
4221
4304
|
}): Promise<void>;
|
|
4222
4305
|
|
|
@@ -4424,6 +4507,7 @@ declare class PreviewService {
|
|
|
4424
4507
|
customData?: string[];
|
|
4425
4508
|
};
|
|
4426
4509
|
previewMultiConversion?: boolean;
|
|
4510
|
+
persistFiltersAcrossTabs?: boolean;
|
|
4427
4511
|
};
|
|
4428
4512
|
allowAdvancedFilters?: boolean;
|
|
4429
4513
|
general?: {
|
|
@@ -4465,6 +4549,7 @@ declare class PreviewService {
|
|
|
4465
4549
|
customData?: string[];
|
|
4466
4550
|
};
|
|
4467
4551
|
previewMultiConversion?: boolean;
|
|
4552
|
+
persistFiltersAcrossTabs?: boolean;
|
|
4468
4553
|
};
|
|
4469
4554
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
4470
4555
|
};
|
|
@@ -4527,6 +4612,7 @@ declare class PreviewService {
|
|
|
4527
4612
|
customData?: string[];
|
|
4528
4613
|
};
|
|
4529
4614
|
previewMultiConversion?: boolean;
|
|
4615
|
+
persistFiltersAcrossTabs?: boolean;
|
|
4530
4616
|
};
|
|
4531
4617
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
4532
4618
|
} | undefined>;
|
|
@@ -4617,6 +4703,7 @@ declare class PreviewService {
|
|
|
4617
4703
|
customData?: string[];
|
|
4618
4704
|
};
|
|
4619
4705
|
previewMultiConversion?: boolean;
|
|
4706
|
+
persistFiltersAcrossTabs?: boolean;
|
|
4620
4707
|
};
|
|
4621
4708
|
allowAdvancedFilters?: boolean;
|
|
4622
4709
|
general?: {
|
|
@@ -4658,6 +4745,7 @@ declare class PreviewService {
|
|
|
4658
4745
|
customData?: string[];
|
|
4659
4746
|
};
|
|
4660
4747
|
previewMultiConversion?: boolean;
|
|
4748
|
+
persistFiltersAcrossTabs?: boolean;
|
|
4661
4749
|
};
|
|
4662
4750
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
4663
4751
|
};
|
|
@@ -5470,6 +5558,318 @@ declare class NavbarTabsComponent {
|
|
|
5470
5558
|
class: _angular_core.InputSignal<string | undefined>;
|
|
5471
5559
|
readonly router: Router;
|
|
5472
5560
|
readonly route: ActivatedRoute;
|
|
5561
|
+
readonly appStore: {
|
|
5562
|
+
name: _angular_core.Signal<string>;
|
|
5563
|
+
description?: _angular_core.Signal<string | undefined> | undefined;
|
|
5564
|
+
versionId: _angular_core.Signal<string>;
|
|
5565
|
+
queries: _angular_core.Signal<Record<string, _sinequa_atomic.CCQuery>>;
|
|
5566
|
+
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
5567
|
+
indexes: _angular_core.Signal<{
|
|
5568
|
+
_: _sinequa_atomic.CCIndex;
|
|
5569
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
5570
|
+
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
5571
|
+
webServices: _angular_core.Signal<Record<string, _sinequa_atomic.CCWebService>>;
|
|
5572
|
+
queryNames: _angular_core.Signal<string>;
|
|
5573
|
+
labels: _angular_core.Signal<string>;
|
|
5574
|
+
preview: _angular_core.Signal<string>;
|
|
5575
|
+
autocomplete: _angular_core.Signal<string>;
|
|
5576
|
+
sponsoredLinks: _angular_core.Signal<string>;
|
|
5577
|
+
queryExport: _angular_core.Signal<string>;
|
|
5578
|
+
queryRssEnabled: _angular_core.Signal<boolean>;
|
|
5579
|
+
data: _angular_core.Signal<Record<string, unknown> & _sinequa_atomic_angular.CJson & {
|
|
5580
|
+
filters?: _sinequa_atomic_angular.CAggregation[];
|
|
5581
|
+
autocomplete?: _sinequa_atomic_angular.Autocomplete;
|
|
5582
|
+
tabs?: Record<string, {
|
|
5583
|
+
filters: string[];
|
|
5584
|
+
overviews?: Record<string, {
|
|
5585
|
+
minRelevance: number;
|
|
5586
|
+
}>;
|
|
5587
|
+
}>;
|
|
5588
|
+
sources?: _sinequa_atomic_angular.CSources;
|
|
5589
|
+
features?: {
|
|
5590
|
+
[key: string]: boolean | {
|
|
5591
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
5592
|
+
} | undefined;
|
|
5593
|
+
allowChangePassword?: boolean;
|
|
5594
|
+
editablepartition?: boolean;
|
|
5595
|
+
advancedSearch?: boolean;
|
|
5596
|
+
allowChatDrawer?: boolean;
|
|
5597
|
+
filterLinkChildren?: boolean;
|
|
5598
|
+
expandPreview?: boolean;
|
|
5599
|
+
quickFilter?: boolean;
|
|
5600
|
+
showAggregationItemCount?: boolean;
|
|
5601
|
+
assistant?: {
|
|
5602
|
+
usePrefixName?: boolean;
|
|
5603
|
+
};
|
|
5604
|
+
filters?: {
|
|
5605
|
+
homepage?: boolean;
|
|
5606
|
+
};
|
|
5607
|
+
userProfile?: {
|
|
5608
|
+
enabled?: boolean;
|
|
5609
|
+
data?: string[];
|
|
5610
|
+
customData?: string[];
|
|
5611
|
+
};
|
|
5612
|
+
previewMultiConversion?: boolean;
|
|
5613
|
+
persistFiltersAcrossTabs?: boolean;
|
|
5614
|
+
};
|
|
5615
|
+
allowAdvancedFilters?: boolean;
|
|
5616
|
+
general?: {
|
|
5617
|
+
name?: string;
|
|
5618
|
+
logo?: {
|
|
5619
|
+
alt?: string;
|
|
5620
|
+
light?: {
|
|
5621
|
+
small?: string;
|
|
5622
|
+
large?: string;
|
|
5623
|
+
sidebar?: string;
|
|
5624
|
+
};
|
|
5625
|
+
dark?: {
|
|
5626
|
+
small?: string;
|
|
5627
|
+
large?: string;
|
|
5628
|
+
sidebar?: string;
|
|
5629
|
+
};
|
|
5630
|
+
};
|
|
5631
|
+
features?: {
|
|
5632
|
+
[key: string]: boolean | {
|
|
5633
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
5634
|
+
} | undefined;
|
|
5635
|
+
allowChangePassword?: boolean;
|
|
5636
|
+
editablepartition?: boolean;
|
|
5637
|
+
advancedSearch?: boolean;
|
|
5638
|
+
allowChatDrawer?: boolean;
|
|
5639
|
+
filterLinkChildren?: boolean;
|
|
5640
|
+
expandPreview?: boolean;
|
|
5641
|
+
quickFilter?: boolean;
|
|
5642
|
+
showAggregationItemCount?: boolean;
|
|
5643
|
+
assistant?: {
|
|
5644
|
+
usePrefixName?: boolean;
|
|
5645
|
+
};
|
|
5646
|
+
filters?: {
|
|
5647
|
+
homepage?: boolean;
|
|
5648
|
+
};
|
|
5649
|
+
userProfile?: {
|
|
5650
|
+
enabled?: boolean;
|
|
5651
|
+
data?: string[];
|
|
5652
|
+
customData?: string[];
|
|
5653
|
+
};
|
|
5654
|
+
previewMultiConversion?: boolean;
|
|
5655
|
+
persistFiltersAcrossTabs?: boolean;
|
|
5656
|
+
};
|
|
5657
|
+
converters?: _sinequa_atomic_angular.CConverter[];
|
|
5658
|
+
};
|
|
5659
|
+
documentsUploadSettings?: {
|
|
5660
|
+
enabled?: boolean;
|
|
5661
|
+
};
|
|
5662
|
+
}>;
|
|
5663
|
+
customJSONs: _angular_core.Signal<{
|
|
5664
|
+
name: string;
|
|
5665
|
+
data: Record<string, unknown>;
|
|
5666
|
+
}[] & _sinequa_atomic_angular.SideCJson[]>;
|
|
5667
|
+
apiVersion: _angular_core.Signal<string>;
|
|
5668
|
+
workspaceApp: _angular_core.Signal<string>;
|
|
5669
|
+
defaultQueryName: _angular_core.Signal<string>;
|
|
5670
|
+
auditEnabled?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5671
|
+
dataSets?: _angular_core.Signal<string | undefined> | undefined;
|
|
5672
|
+
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
5673
|
+
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
5674
|
+
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
5675
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
5676
|
+
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
5677
|
+
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
5678
|
+
filters: _angular_core.Signal<_sinequa_atomic_angular.CFilter[]>;
|
|
5679
|
+
general: _angular_core.Signal<{
|
|
5680
|
+
name?: string;
|
|
5681
|
+
logo?: {
|
|
5682
|
+
alt?: string;
|
|
5683
|
+
light?: {
|
|
5684
|
+
small?: string;
|
|
5685
|
+
large?: string;
|
|
5686
|
+
sidebar?: string;
|
|
5687
|
+
};
|
|
5688
|
+
dark?: {
|
|
5689
|
+
small?: string;
|
|
5690
|
+
large?: string;
|
|
5691
|
+
sidebar?: string;
|
|
5692
|
+
};
|
|
5693
|
+
};
|
|
5694
|
+
features?: {
|
|
5695
|
+
[key: string]: boolean | {
|
|
5696
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
5697
|
+
} | undefined;
|
|
5698
|
+
allowChangePassword?: boolean;
|
|
5699
|
+
editablepartition?: boolean;
|
|
5700
|
+
advancedSearch?: boolean;
|
|
5701
|
+
allowChatDrawer?: boolean;
|
|
5702
|
+
filterLinkChildren?: boolean;
|
|
5703
|
+
expandPreview?: boolean;
|
|
5704
|
+
quickFilter?: boolean;
|
|
5705
|
+
showAggregationItemCount?: boolean;
|
|
5706
|
+
assistant?: {
|
|
5707
|
+
usePrefixName?: boolean;
|
|
5708
|
+
};
|
|
5709
|
+
filters?: {
|
|
5710
|
+
homepage?: boolean;
|
|
5711
|
+
};
|
|
5712
|
+
userProfile?: {
|
|
5713
|
+
enabled?: boolean;
|
|
5714
|
+
data?: string[];
|
|
5715
|
+
customData?: string[];
|
|
5716
|
+
};
|
|
5717
|
+
previewMultiConversion?: boolean;
|
|
5718
|
+
persistFiltersAcrossTabs?: boolean;
|
|
5719
|
+
};
|
|
5720
|
+
converters?: _sinequa_atomic_angular.CConverter[];
|
|
5721
|
+
} | undefined>;
|
|
5722
|
+
assistants: _angular_core.Signal<{
|
|
5723
|
+
[x: string]: _sinequa_atomic_angular.AssistantDetails;
|
|
5724
|
+
}>;
|
|
5725
|
+
agents: _angular_core.Signal<{
|
|
5726
|
+
[x: string]: {
|
|
5727
|
+
defaultAgent: string;
|
|
5728
|
+
};
|
|
5729
|
+
}>;
|
|
5730
|
+
initialize: () => Promise<void>;
|
|
5731
|
+
initializeWithAppName: (appName: string) => Promise<void>;
|
|
5732
|
+
update: (app: Partial<_sinequa_atomic_angular.CCAppState>) => void;
|
|
5733
|
+
getWebServiceByType: (type: _sinequa_atomic.CCWebService["webServiceType"]) => _sinequa_atomic.CCWebService | undefined;
|
|
5734
|
+
getLabels: () => {
|
|
5735
|
+
private: string;
|
|
5736
|
+
public: string;
|
|
5737
|
+
};
|
|
5738
|
+
getQueryByName: (name: string) => _sinequa_atomic.CCQuery | undefined;
|
|
5739
|
+
getQueryByIndex: (index: number) => _sinequa_atomic.CCQuery | undefined;
|
|
5740
|
+
getDefaultQuery: () => _sinequa_atomic.CCQuery | undefined;
|
|
5741
|
+
allowEmptySearch: (queryName: string) => boolean;
|
|
5742
|
+
enableFieldedSearch: (queryName: string) => boolean;
|
|
5743
|
+
allowLabels: () => boolean;
|
|
5744
|
+
getColumnAlias: (column: string) => string;
|
|
5745
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
5746
|
+
isDateColumn: (column: string) => boolean;
|
|
5747
|
+
isTabSearch: (queryName: string) => boolean;
|
|
5748
|
+
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
5749
|
+
getAuthorizedFilters: () => _sinequa_atomic.Aggregation[];
|
|
5750
|
+
getAuthorized: (filters: Pick<_sinequa_atomic_angular.CFilter, "column" | "name">[]) => _sinequa_atomic.Aggregation[];
|
|
5751
|
+
getNamedCustomizationJson: (name: string) => unknown | undefined;
|
|
5752
|
+
getAggregationIcon: (column: string) => string | undefined;
|
|
5753
|
+
getAggregationItemsCustomization: (column: string) => _sinequa_atomic_angular.CFilterItem[] | undefined;
|
|
5754
|
+
getAggregationCustomization: (aggColumn: string, aggName?: string) => _sinequa_atomic_angular.CFilter | undefined;
|
|
5755
|
+
isAssistantAllowed: (assistantName: string) => boolean;
|
|
5756
|
+
isAgentAllowed: (agentName: string) => boolean;
|
|
5757
|
+
} & _ngrx_signals.StateSource<{
|
|
5758
|
+
name: string;
|
|
5759
|
+
description?: string | undefined;
|
|
5760
|
+
versionId: string;
|
|
5761
|
+
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
5762
|
+
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
5763
|
+
indexes: {
|
|
5764
|
+
_: _sinequa_atomic.CCIndex;
|
|
5765
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
5766
|
+
lists: Record<string, _sinequa_atomic.CCList>;
|
|
5767
|
+
webServices: Record<string, _sinequa_atomic.CCWebService>;
|
|
5768
|
+
queryNames: string;
|
|
5769
|
+
labels: string;
|
|
5770
|
+
preview: string;
|
|
5771
|
+
autocomplete: string;
|
|
5772
|
+
sponsoredLinks: string;
|
|
5773
|
+
queryExport: string;
|
|
5774
|
+
queryRssEnabled: boolean;
|
|
5775
|
+
data: Record<string, unknown> & _sinequa_atomic_angular.CJson & {
|
|
5776
|
+
filters?: _sinequa_atomic_angular.CAggregation[];
|
|
5777
|
+
autocomplete?: _sinequa_atomic_angular.Autocomplete;
|
|
5778
|
+
tabs?: Record<string, {
|
|
5779
|
+
filters: string[];
|
|
5780
|
+
overviews?: Record<string, {
|
|
5781
|
+
minRelevance: number;
|
|
5782
|
+
}>;
|
|
5783
|
+
}>;
|
|
5784
|
+
sources?: _sinequa_atomic_angular.CSources;
|
|
5785
|
+
features?: {
|
|
5786
|
+
[key: string]: boolean | {
|
|
5787
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
5788
|
+
} | undefined;
|
|
5789
|
+
allowChangePassword?: boolean;
|
|
5790
|
+
editablepartition?: boolean;
|
|
5791
|
+
advancedSearch?: boolean;
|
|
5792
|
+
allowChatDrawer?: boolean;
|
|
5793
|
+
filterLinkChildren?: boolean;
|
|
5794
|
+
expandPreview?: boolean;
|
|
5795
|
+
quickFilter?: boolean;
|
|
5796
|
+
showAggregationItemCount?: boolean;
|
|
5797
|
+
assistant?: {
|
|
5798
|
+
usePrefixName?: boolean;
|
|
5799
|
+
};
|
|
5800
|
+
filters?: {
|
|
5801
|
+
homepage?: boolean;
|
|
5802
|
+
};
|
|
5803
|
+
userProfile?: {
|
|
5804
|
+
enabled?: boolean;
|
|
5805
|
+
data?: string[];
|
|
5806
|
+
customData?: string[];
|
|
5807
|
+
};
|
|
5808
|
+
previewMultiConversion?: boolean;
|
|
5809
|
+
persistFiltersAcrossTabs?: boolean;
|
|
5810
|
+
};
|
|
5811
|
+
allowAdvancedFilters?: boolean;
|
|
5812
|
+
general?: {
|
|
5813
|
+
name?: string;
|
|
5814
|
+
logo?: {
|
|
5815
|
+
alt?: string;
|
|
5816
|
+
light?: {
|
|
5817
|
+
small?: string;
|
|
5818
|
+
large?: string;
|
|
5819
|
+
sidebar?: string;
|
|
5820
|
+
};
|
|
5821
|
+
dark?: {
|
|
5822
|
+
small?: string;
|
|
5823
|
+
large?: string;
|
|
5824
|
+
sidebar?: string;
|
|
5825
|
+
};
|
|
5826
|
+
};
|
|
5827
|
+
features?: {
|
|
5828
|
+
[key: string]: boolean | {
|
|
5829
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
5830
|
+
} | undefined;
|
|
5831
|
+
allowChangePassword?: boolean;
|
|
5832
|
+
editablepartition?: boolean;
|
|
5833
|
+
advancedSearch?: boolean;
|
|
5834
|
+
allowChatDrawer?: boolean;
|
|
5835
|
+
filterLinkChildren?: boolean;
|
|
5836
|
+
expandPreview?: boolean;
|
|
5837
|
+
quickFilter?: boolean;
|
|
5838
|
+
showAggregationItemCount?: boolean;
|
|
5839
|
+
assistant?: {
|
|
5840
|
+
usePrefixName?: boolean;
|
|
5841
|
+
};
|
|
5842
|
+
filters?: {
|
|
5843
|
+
homepage?: boolean;
|
|
5844
|
+
};
|
|
5845
|
+
userProfile?: {
|
|
5846
|
+
enabled?: boolean;
|
|
5847
|
+
data?: string[];
|
|
5848
|
+
customData?: string[];
|
|
5849
|
+
};
|
|
5850
|
+
previewMultiConversion?: boolean;
|
|
5851
|
+
persistFiltersAcrossTabs?: boolean;
|
|
5852
|
+
};
|
|
5853
|
+
converters?: _sinequa_atomic_angular.CConverter[];
|
|
5854
|
+
};
|
|
5855
|
+
documentsUploadSettings?: {
|
|
5856
|
+
enabled?: boolean;
|
|
5857
|
+
};
|
|
5858
|
+
};
|
|
5859
|
+
customJSONs: {
|
|
5860
|
+
name: string;
|
|
5861
|
+
data: Record<string, unknown>;
|
|
5862
|
+
}[] & _sinequa_atomic_angular.SideCJson[];
|
|
5863
|
+
apiVersion: string;
|
|
5864
|
+
workspaceApp: string;
|
|
5865
|
+
defaultQueryName: string;
|
|
5866
|
+
auditEnabled?: boolean | undefined;
|
|
5867
|
+
dataSets?: string | undefined;
|
|
5868
|
+
revision?: number | undefined;
|
|
5869
|
+
runnableModels?: string | undefined;
|
|
5870
|
+
authorizationLevel?: string | undefined;
|
|
5871
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
5872
|
+
}>;
|
|
5473
5873
|
readonly queryParamsStore: {
|
|
5474
5874
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
5475
5875
|
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
@@ -5583,6 +5983,9 @@ declare class NavbarTabsComponent {
|
|
|
5583
5983
|
readonly tabs: _angular_core.Signal<NavbarTab[]>;
|
|
5584
5984
|
readonly moreTabs: _angular_core.Signal<NavbarTab[]>;
|
|
5585
5985
|
protected changeTab(): void;
|
|
5986
|
+
readonly persistFiltersAcrossTabs: _angular_core.Signal<boolean>;
|
|
5987
|
+
getQueryParamsHandling(): 'merge' | 'replace';
|
|
5988
|
+
getQueryParams(tab: NavbarTab): Params | null | undefined;
|
|
5586
5989
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NavbarTabsComponent, never>;
|
|
5587
5990
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NavbarTabsComponent, "navbar-tabs", never, { "class": { "alias": "class"; "required": false; "isSignal": true; }; "showCount": { "alias": "showCount"; "required": false; "isSignal": true; }; "noTruncate": { "alias": "noTruncate"; "required": false; "isSignal": true; }; "minTabWidth": { "alias": "minTabWidth"; "required": false; "isSignal": true; }; "path": { "alias": "path"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
5588
5991
|
}
|
|
@@ -5663,6 +6066,7 @@ declare class SortSelectorComponent {
|
|
|
5663
6066
|
customData?: string[];
|
|
5664
6067
|
};
|
|
5665
6068
|
previewMultiConversion?: boolean;
|
|
6069
|
+
persistFiltersAcrossTabs?: boolean;
|
|
5666
6070
|
};
|
|
5667
6071
|
allowAdvancedFilters?: boolean;
|
|
5668
6072
|
general?: {
|
|
@@ -5704,6 +6108,7 @@ declare class SortSelectorComponent {
|
|
|
5704
6108
|
customData?: string[];
|
|
5705
6109
|
};
|
|
5706
6110
|
previewMultiConversion?: boolean;
|
|
6111
|
+
persistFiltersAcrossTabs?: boolean;
|
|
5707
6112
|
};
|
|
5708
6113
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
5709
6114
|
};
|
|
@@ -5766,6 +6171,7 @@ declare class SortSelectorComponent {
|
|
|
5766
6171
|
customData?: string[];
|
|
5767
6172
|
};
|
|
5768
6173
|
previewMultiConversion?: boolean;
|
|
6174
|
+
persistFiltersAcrossTabs?: boolean;
|
|
5769
6175
|
};
|
|
5770
6176
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
5771
6177
|
} | undefined>;
|
|
@@ -5856,6 +6262,7 @@ declare class SortSelectorComponent {
|
|
|
5856
6262
|
customData?: string[];
|
|
5857
6263
|
};
|
|
5858
6264
|
previewMultiConversion?: boolean;
|
|
6265
|
+
persistFiltersAcrossTabs?: boolean;
|
|
5859
6266
|
};
|
|
5860
6267
|
allowAdvancedFilters?: boolean;
|
|
5861
6268
|
general?: {
|
|
@@ -5897,6 +6304,7 @@ declare class SortSelectorComponent {
|
|
|
5897
6304
|
customData?: string[];
|
|
5898
6305
|
};
|
|
5899
6306
|
previewMultiConversion?: boolean;
|
|
6307
|
+
persistFiltersAcrossTabs?: boolean;
|
|
5900
6308
|
};
|
|
5901
6309
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
5902
6310
|
};
|
|
@@ -6459,6 +6867,7 @@ declare class SponsoredResultsComponent {
|
|
|
6459
6867
|
customData?: string[];
|
|
6460
6868
|
};
|
|
6461
6869
|
previewMultiConversion?: boolean;
|
|
6870
|
+
persistFiltersAcrossTabs?: boolean;
|
|
6462
6871
|
};
|
|
6463
6872
|
allowAdvancedFilters?: boolean;
|
|
6464
6873
|
general?: {
|
|
@@ -6500,6 +6909,7 @@ declare class SponsoredResultsComponent {
|
|
|
6500
6909
|
customData?: string[];
|
|
6501
6910
|
};
|
|
6502
6911
|
previewMultiConversion?: boolean;
|
|
6912
|
+
persistFiltersAcrossTabs?: boolean;
|
|
6503
6913
|
};
|
|
6504
6914
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
6505
6915
|
};
|
|
@@ -6562,6 +6972,7 @@ declare class SponsoredResultsComponent {
|
|
|
6562
6972
|
customData?: string[];
|
|
6563
6973
|
};
|
|
6564
6974
|
previewMultiConversion?: boolean;
|
|
6975
|
+
persistFiltersAcrossTabs?: boolean;
|
|
6565
6976
|
};
|
|
6566
6977
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
6567
6978
|
} | undefined>;
|
|
@@ -6652,6 +7063,7 @@ declare class SponsoredResultsComponent {
|
|
|
6652
7063
|
customData?: string[];
|
|
6653
7064
|
};
|
|
6654
7065
|
previewMultiConversion?: boolean;
|
|
7066
|
+
persistFiltersAcrossTabs?: boolean;
|
|
6655
7067
|
};
|
|
6656
7068
|
allowAdvancedFilters?: boolean;
|
|
6657
7069
|
general?: {
|
|
@@ -6693,6 +7105,7 @@ declare class SponsoredResultsComponent {
|
|
|
6693
7105
|
customData?: string[];
|
|
6694
7106
|
};
|
|
6695
7107
|
previewMultiConversion?: boolean;
|
|
7108
|
+
persistFiltersAcrossTabs?: boolean;
|
|
6696
7109
|
};
|
|
6697
7110
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
6698
7111
|
};
|
|
@@ -7186,6 +7599,7 @@ declare class AggregationListComponent {
|
|
|
7186
7599
|
customData?: string[];
|
|
7187
7600
|
};
|
|
7188
7601
|
previewMultiConversion?: boolean;
|
|
7602
|
+
persistFiltersAcrossTabs?: boolean;
|
|
7189
7603
|
};
|
|
7190
7604
|
allowAdvancedFilters?: boolean;
|
|
7191
7605
|
general?: {
|
|
@@ -7227,6 +7641,7 @@ declare class AggregationListComponent {
|
|
|
7227
7641
|
customData?: string[];
|
|
7228
7642
|
};
|
|
7229
7643
|
previewMultiConversion?: boolean;
|
|
7644
|
+
persistFiltersAcrossTabs?: boolean;
|
|
7230
7645
|
};
|
|
7231
7646
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
7232
7647
|
};
|
|
@@ -7289,6 +7704,7 @@ declare class AggregationListComponent {
|
|
|
7289
7704
|
customData?: string[];
|
|
7290
7705
|
};
|
|
7291
7706
|
previewMultiConversion?: boolean;
|
|
7707
|
+
persistFiltersAcrossTabs?: boolean;
|
|
7292
7708
|
};
|
|
7293
7709
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
7294
7710
|
} | undefined>;
|
|
@@ -7379,6 +7795,7 @@ declare class AggregationListComponent {
|
|
|
7379
7795
|
customData?: string[];
|
|
7380
7796
|
};
|
|
7381
7797
|
previewMultiConversion?: boolean;
|
|
7798
|
+
persistFiltersAcrossTabs?: boolean;
|
|
7382
7799
|
};
|
|
7383
7800
|
allowAdvancedFilters?: boolean;
|
|
7384
7801
|
general?: {
|
|
@@ -7420,6 +7837,7 @@ declare class AggregationListComponent {
|
|
|
7420
7837
|
customData?: string[];
|
|
7421
7838
|
};
|
|
7422
7839
|
previewMultiConversion?: boolean;
|
|
7840
|
+
persistFiltersAcrossTabs?: boolean;
|
|
7423
7841
|
};
|
|
7424
7842
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
7425
7843
|
};
|
|
@@ -7822,6 +8240,7 @@ declare class ArticleEntities {
|
|
|
7822
8240
|
customData?: string[];
|
|
7823
8241
|
};
|
|
7824
8242
|
previewMultiConversion?: boolean;
|
|
8243
|
+
persistFiltersAcrossTabs?: boolean;
|
|
7825
8244
|
};
|
|
7826
8245
|
allowAdvancedFilters?: boolean;
|
|
7827
8246
|
general?: {
|
|
@@ -7863,6 +8282,7 @@ declare class ArticleEntities {
|
|
|
7863
8282
|
customData?: string[];
|
|
7864
8283
|
};
|
|
7865
8284
|
previewMultiConversion?: boolean;
|
|
8285
|
+
persistFiltersAcrossTabs?: boolean;
|
|
7866
8286
|
};
|
|
7867
8287
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
7868
8288
|
};
|
|
@@ -7925,6 +8345,7 @@ declare class ArticleEntities {
|
|
|
7925
8345
|
customData?: string[];
|
|
7926
8346
|
};
|
|
7927
8347
|
previewMultiConversion?: boolean;
|
|
8348
|
+
persistFiltersAcrossTabs?: boolean;
|
|
7928
8349
|
};
|
|
7929
8350
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
7930
8351
|
} | undefined>;
|
|
@@ -8015,6 +8436,7 @@ declare class ArticleEntities {
|
|
|
8015
8436
|
customData?: string[];
|
|
8016
8437
|
};
|
|
8017
8438
|
previewMultiConversion?: boolean;
|
|
8439
|
+
persistFiltersAcrossTabs?: boolean;
|
|
8018
8440
|
};
|
|
8019
8441
|
allowAdvancedFilters?: boolean;
|
|
8020
8442
|
general?: {
|
|
@@ -8056,6 +8478,7 @@ declare class ArticleEntities {
|
|
|
8056
8478
|
customData?: string[];
|
|
8057
8479
|
};
|
|
8058
8480
|
previewMultiConversion?: boolean;
|
|
8481
|
+
persistFiltersAcrossTabs?: boolean;
|
|
8059
8482
|
};
|
|
8060
8483
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
8061
8484
|
};
|
|
@@ -8346,6 +8769,7 @@ declare class SignInComponent {
|
|
|
8346
8769
|
domain: string;
|
|
8347
8770
|
};
|
|
8348
8771
|
userOverrideActive: boolean;
|
|
8772
|
+
authMode: _sinequa_atomic.AuthMode;
|
|
8349
8773
|
useCredentials: boolean;
|
|
8350
8774
|
useSSO: boolean;
|
|
8351
8775
|
useSAML: boolean;
|
|
@@ -8354,9 +8778,13 @@ declare class SignInComponent {
|
|
|
8354
8778
|
} & Record<string, any>>;
|
|
8355
8779
|
/**
|
|
8356
8780
|
* True when authentication is handled outside the credentials form — i.e. by the
|
|
8357
|
-
* browser/proxy (`
|
|
8358
|
-
*
|
|
8359
|
-
*
|
|
8781
|
+
* browser/proxy (`sso`) or by an auto-configured OAuth/SAML provider. In those modes
|
|
8782
|
+
* this screen shows a loader instead of a login form and initiates the handshake
|
|
8783
|
+
* automatically by calling `handleLogin()`.
|
|
8784
|
+
*
|
|
8785
|
+
* Note: the ambiguous `unknown` mode is intentionally excluded — it is resolved upstream
|
|
8786
|
+
* (in `login()`/`signIn()`) to either `sso` or `credentials` before this screen renders,
|
|
8787
|
+
* so reaching here in `unknown` should still show the form, never a dead-end loader.
|
|
8360
8788
|
*/
|
|
8361
8789
|
readonly externalAuth: boolean;
|
|
8362
8790
|
class: _angular_core.InputSignal<string | undefined>;
|
|
@@ -8980,6 +9408,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
8980
9408
|
customData?: string[];
|
|
8981
9409
|
};
|
|
8982
9410
|
previewMultiConversion?: boolean;
|
|
9411
|
+
persistFiltersAcrossTabs?: boolean;
|
|
8983
9412
|
};
|
|
8984
9413
|
allowAdvancedFilters?: boolean;
|
|
8985
9414
|
general?: {
|
|
@@ -9021,6 +9450,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9021
9450
|
customData?: string[];
|
|
9022
9451
|
};
|
|
9023
9452
|
previewMultiConversion?: boolean;
|
|
9453
|
+
persistFiltersAcrossTabs?: boolean;
|
|
9024
9454
|
};
|
|
9025
9455
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
9026
9456
|
};
|
|
@@ -9083,6 +9513,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9083
9513
|
customData?: string[];
|
|
9084
9514
|
};
|
|
9085
9515
|
previewMultiConversion?: boolean;
|
|
9516
|
+
persistFiltersAcrossTabs?: boolean;
|
|
9086
9517
|
};
|
|
9087
9518
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
9088
9519
|
} | undefined>;
|
|
@@ -9173,6 +9604,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9173
9604
|
customData?: string[];
|
|
9174
9605
|
};
|
|
9175
9606
|
previewMultiConversion?: boolean;
|
|
9607
|
+
persistFiltersAcrossTabs?: boolean;
|
|
9176
9608
|
};
|
|
9177
9609
|
allowAdvancedFilters?: boolean;
|
|
9178
9610
|
general?: {
|
|
@@ -9214,6 +9646,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9214
9646
|
customData?: string[];
|
|
9215
9647
|
};
|
|
9216
9648
|
previewMultiConversion?: boolean;
|
|
9649
|
+
persistFiltersAcrossTabs?: boolean;
|
|
9217
9650
|
};
|
|
9218
9651
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
9219
9652
|
};
|
|
@@ -9615,6 +10048,7 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
9615
10048
|
customData?: string[];
|
|
9616
10049
|
};
|
|
9617
10050
|
previewMultiConversion?: boolean;
|
|
10051
|
+
persistFiltersAcrossTabs?: boolean;
|
|
9618
10052
|
};
|
|
9619
10053
|
allowAdvancedFilters?: boolean;
|
|
9620
10054
|
general?: {
|
|
@@ -9656,6 +10090,7 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
9656
10090
|
customData?: string[];
|
|
9657
10091
|
};
|
|
9658
10092
|
previewMultiConversion?: boolean;
|
|
10093
|
+
persistFiltersAcrossTabs?: boolean;
|
|
9659
10094
|
};
|
|
9660
10095
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
9661
10096
|
};
|
|
@@ -9718,6 +10153,7 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
9718
10153
|
customData?: string[];
|
|
9719
10154
|
};
|
|
9720
10155
|
previewMultiConversion?: boolean;
|
|
10156
|
+
persistFiltersAcrossTabs?: boolean;
|
|
9721
10157
|
};
|
|
9722
10158
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
9723
10159
|
} | undefined>;
|
|
@@ -9808,6 +10244,7 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
9808
10244
|
customData?: string[];
|
|
9809
10245
|
};
|
|
9810
10246
|
previewMultiConversion?: boolean;
|
|
10247
|
+
persistFiltersAcrossTabs?: boolean;
|
|
9811
10248
|
};
|
|
9812
10249
|
allowAdvancedFilters?: boolean;
|
|
9813
10250
|
general?: {
|
|
@@ -9849,6 +10286,7 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
9849
10286
|
customData?: string[];
|
|
9850
10287
|
};
|
|
9851
10288
|
previewMultiConversion?: boolean;
|
|
10289
|
+
persistFiltersAcrossTabs?: boolean;
|
|
9852
10290
|
};
|
|
9853
10291
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
9854
10292
|
};
|
|
@@ -10142,6 +10580,7 @@ declare class AggregationTreeComponent {
|
|
|
10142
10580
|
customData?: string[];
|
|
10143
10581
|
};
|
|
10144
10582
|
previewMultiConversion?: boolean;
|
|
10583
|
+
persistFiltersAcrossTabs?: boolean;
|
|
10145
10584
|
};
|
|
10146
10585
|
allowAdvancedFilters?: boolean;
|
|
10147
10586
|
general?: {
|
|
@@ -10183,6 +10622,7 @@ declare class AggregationTreeComponent {
|
|
|
10183
10622
|
customData?: string[];
|
|
10184
10623
|
};
|
|
10185
10624
|
previewMultiConversion?: boolean;
|
|
10625
|
+
persistFiltersAcrossTabs?: boolean;
|
|
10186
10626
|
};
|
|
10187
10627
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
10188
10628
|
};
|
|
@@ -10245,6 +10685,7 @@ declare class AggregationTreeComponent {
|
|
|
10245
10685
|
customData?: string[];
|
|
10246
10686
|
};
|
|
10247
10687
|
previewMultiConversion?: boolean;
|
|
10688
|
+
persistFiltersAcrossTabs?: boolean;
|
|
10248
10689
|
};
|
|
10249
10690
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
10250
10691
|
} | undefined>;
|
|
@@ -10335,6 +10776,7 @@ declare class AggregationTreeComponent {
|
|
|
10335
10776
|
customData?: string[];
|
|
10336
10777
|
};
|
|
10337
10778
|
previewMultiConversion?: boolean;
|
|
10779
|
+
persistFiltersAcrossTabs?: boolean;
|
|
10338
10780
|
};
|
|
10339
10781
|
allowAdvancedFilters?: boolean;
|
|
10340
10782
|
general?: {
|
|
@@ -10376,6 +10818,7 @@ declare class AggregationTreeComponent {
|
|
|
10376
10818
|
customData?: string[];
|
|
10377
10819
|
};
|
|
10378
10820
|
previewMultiConversion?: boolean;
|
|
10821
|
+
persistFiltersAcrossTabs?: boolean;
|
|
10379
10822
|
};
|
|
10380
10823
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
10381
10824
|
};
|
|
@@ -10675,6 +11118,7 @@ declare class AggregationComponent {
|
|
|
10675
11118
|
customData?: string[];
|
|
10676
11119
|
};
|
|
10677
11120
|
previewMultiConversion?: boolean;
|
|
11121
|
+
persistFiltersAcrossTabs?: boolean;
|
|
10678
11122
|
};
|
|
10679
11123
|
allowAdvancedFilters?: boolean;
|
|
10680
11124
|
general?: {
|
|
@@ -10716,6 +11160,7 @@ declare class AggregationComponent {
|
|
|
10716
11160
|
customData?: string[];
|
|
10717
11161
|
};
|
|
10718
11162
|
previewMultiConversion?: boolean;
|
|
11163
|
+
persistFiltersAcrossTabs?: boolean;
|
|
10719
11164
|
};
|
|
10720
11165
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
10721
11166
|
};
|
|
@@ -10778,6 +11223,7 @@ declare class AggregationComponent {
|
|
|
10778
11223
|
customData?: string[];
|
|
10779
11224
|
};
|
|
10780
11225
|
previewMultiConversion?: boolean;
|
|
11226
|
+
persistFiltersAcrossTabs?: boolean;
|
|
10781
11227
|
};
|
|
10782
11228
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
10783
11229
|
} | undefined>;
|
|
@@ -10868,6 +11314,7 @@ declare class AggregationComponent {
|
|
|
10868
11314
|
customData?: string[];
|
|
10869
11315
|
};
|
|
10870
11316
|
previewMultiConversion?: boolean;
|
|
11317
|
+
persistFiltersAcrossTabs?: boolean;
|
|
10871
11318
|
};
|
|
10872
11319
|
allowAdvancedFilters?: boolean;
|
|
10873
11320
|
general?: {
|
|
@@ -10909,6 +11356,7 @@ declare class AggregationComponent {
|
|
|
10909
11356
|
customData?: string[];
|
|
10910
11357
|
};
|
|
10911
11358
|
previewMultiConversion?: boolean;
|
|
11359
|
+
persistFiltersAcrossTabs?: boolean;
|
|
10912
11360
|
};
|
|
10913
11361
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
10914
11362
|
};
|
|
@@ -11049,7 +11497,7 @@ declare class FilterButtonComponent {
|
|
|
11049
11497
|
position: _angular_core.InputSignal<Placement>;
|
|
11050
11498
|
offset: _angular_core.InputSignal<number>;
|
|
11051
11499
|
expandedLevel: _angular_core.InputSignalWithTransform<number | undefined, unknown>;
|
|
11052
|
-
protected variant: _angular_core.WritableSignal<"default" | "
|
|
11500
|
+
protected variant: _angular_core.WritableSignal<"default" | "link" | "secondary" | "accent" | "destructive" | "outline" | "ghost" | "ai" | "none" | "primary" | "light-accent" | "tertiary" | "icon" | null | undefined>;
|
|
11053
11501
|
protected filter: _angular_core.WritableSignal<CFilterEx>;
|
|
11054
11502
|
popoverRef: _angular_core.Signal<PopoverComponent | undefined>;
|
|
11055
11503
|
protected nativeElement: any;
|
|
@@ -11201,6 +11649,7 @@ declare class FilterButtonComponent {
|
|
|
11201
11649
|
customData?: string[];
|
|
11202
11650
|
};
|
|
11203
11651
|
previewMultiConversion?: boolean;
|
|
11652
|
+
persistFiltersAcrossTabs?: boolean;
|
|
11204
11653
|
};
|
|
11205
11654
|
allowAdvancedFilters?: boolean;
|
|
11206
11655
|
general?: {
|
|
@@ -11242,6 +11691,7 @@ declare class FilterButtonComponent {
|
|
|
11242
11691
|
customData?: string[];
|
|
11243
11692
|
};
|
|
11244
11693
|
previewMultiConversion?: boolean;
|
|
11694
|
+
persistFiltersAcrossTabs?: boolean;
|
|
11245
11695
|
};
|
|
11246
11696
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
11247
11697
|
};
|
|
@@ -11304,6 +11754,7 @@ declare class FilterButtonComponent {
|
|
|
11304
11754
|
customData?: string[];
|
|
11305
11755
|
};
|
|
11306
11756
|
previewMultiConversion?: boolean;
|
|
11757
|
+
persistFiltersAcrossTabs?: boolean;
|
|
11307
11758
|
};
|
|
11308
11759
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
11309
11760
|
} | undefined>;
|
|
@@ -11394,6 +11845,7 @@ declare class FilterButtonComponent {
|
|
|
11394
11845
|
customData?: string[];
|
|
11395
11846
|
};
|
|
11396
11847
|
previewMultiConversion?: boolean;
|
|
11848
|
+
persistFiltersAcrossTabs?: boolean;
|
|
11397
11849
|
};
|
|
11398
11850
|
allowAdvancedFilters?: boolean;
|
|
11399
11851
|
general?: {
|
|
@@ -11435,6 +11887,7 @@ declare class FilterButtonComponent {
|
|
|
11435
11887
|
customData?: string[];
|
|
11436
11888
|
};
|
|
11437
11889
|
previewMultiConversion?: boolean;
|
|
11890
|
+
persistFiltersAcrossTabs?: boolean;
|
|
11438
11891
|
};
|
|
11439
11892
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
11440
11893
|
};
|
|
@@ -11521,6 +11974,7 @@ declare class MoreButtonComponent {
|
|
|
11521
11974
|
customData?: string[];
|
|
11522
11975
|
};
|
|
11523
11976
|
previewMultiConversion?: boolean;
|
|
11977
|
+
persistFiltersAcrossTabs?: boolean;
|
|
11524
11978
|
};
|
|
11525
11979
|
allowAdvancedFilters?: boolean;
|
|
11526
11980
|
general?: {
|
|
@@ -11562,6 +12016,7 @@ declare class MoreButtonComponent {
|
|
|
11562
12016
|
customData?: string[];
|
|
11563
12017
|
};
|
|
11564
12018
|
previewMultiConversion?: boolean;
|
|
12019
|
+
persistFiltersAcrossTabs?: boolean;
|
|
11565
12020
|
};
|
|
11566
12021
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
11567
12022
|
};
|
|
@@ -11624,6 +12079,7 @@ declare class MoreButtonComponent {
|
|
|
11624
12079
|
customData?: string[];
|
|
11625
12080
|
};
|
|
11626
12081
|
previewMultiConversion?: boolean;
|
|
12082
|
+
persistFiltersAcrossTabs?: boolean;
|
|
11627
12083
|
};
|
|
11628
12084
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
11629
12085
|
} | undefined>;
|
|
@@ -11714,6 +12170,7 @@ declare class MoreButtonComponent {
|
|
|
11714
12170
|
customData?: string[];
|
|
11715
12171
|
};
|
|
11716
12172
|
previewMultiConversion?: boolean;
|
|
12173
|
+
persistFiltersAcrossTabs?: boolean;
|
|
11717
12174
|
};
|
|
11718
12175
|
allowAdvancedFilters?: boolean;
|
|
11719
12176
|
general?: {
|
|
@@ -11755,6 +12212,7 @@ declare class MoreButtonComponent {
|
|
|
11755
12212
|
customData?: string[];
|
|
11756
12213
|
};
|
|
11757
12214
|
previewMultiConversion?: boolean;
|
|
12215
|
+
persistFiltersAcrossTabs?: boolean;
|
|
11758
12216
|
};
|
|
11759
12217
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
11760
12218
|
};
|
|
@@ -11997,6 +12455,7 @@ declare class FiltersBarComponent {
|
|
|
11997
12455
|
customData?: string[];
|
|
11998
12456
|
};
|
|
11999
12457
|
previewMultiConversion?: boolean;
|
|
12458
|
+
persistFiltersAcrossTabs?: boolean;
|
|
12000
12459
|
};
|
|
12001
12460
|
allowAdvancedFilters?: boolean;
|
|
12002
12461
|
general?: {
|
|
@@ -12038,6 +12497,7 @@ declare class FiltersBarComponent {
|
|
|
12038
12497
|
customData?: string[];
|
|
12039
12498
|
};
|
|
12040
12499
|
previewMultiConversion?: boolean;
|
|
12500
|
+
persistFiltersAcrossTabs?: boolean;
|
|
12041
12501
|
};
|
|
12042
12502
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
12043
12503
|
};
|
|
@@ -12100,6 +12560,7 @@ declare class FiltersBarComponent {
|
|
|
12100
12560
|
customData?: string[];
|
|
12101
12561
|
};
|
|
12102
12562
|
previewMultiConversion?: boolean;
|
|
12563
|
+
persistFiltersAcrossTabs?: boolean;
|
|
12103
12564
|
};
|
|
12104
12565
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
12105
12566
|
} | undefined>;
|
|
@@ -12190,6 +12651,7 @@ declare class FiltersBarComponent {
|
|
|
12190
12651
|
customData?: string[];
|
|
12191
12652
|
};
|
|
12192
12653
|
previewMultiConversion?: boolean;
|
|
12654
|
+
persistFiltersAcrossTabs?: boolean;
|
|
12193
12655
|
};
|
|
12194
12656
|
allowAdvancedFilters?: boolean;
|
|
12195
12657
|
general?: {
|
|
@@ -12231,6 +12693,7 @@ declare class FiltersBarComponent {
|
|
|
12231
12693
|
customData?: string[];
|
|
12232
12694
|
};
|
|
12233
12695
|
previewMultiConversion?: boolean;
|
|
12696
|
+
persistFiltersAcrossTabs?: boolean;
|
|
12234
12697
|
};
|
|
12235
12698
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
12236
12699
|
};
|
|
@@ -12493,6 +12956,7 @@ declare class MoreComponent {
|
|
|
12493
12956
|
customData?: string[];
|
|
12494
12957
|
};
|
|
12495
12958
|
previewMultiConversion?: boolean;
|
|
12959
|
+
persistFiltersAcrossTabs?: boolean;
|
|
12496
12960
|
};
|
|
12497
12961
|
allowAdvancedFilters?: boolean;
|
|
12498
12962
|
general?: {
|
|
@@ -12534,6 +12998,7 @@ declare class MoreComponent {
|
|
|
12534
12998
|
customData?: string[];
|
|
12535
12999
|
};
|
|
12536
13000
|
previewMultiConversion?: boolean;
|
|
13001
|
+
persistFiltersAcrossTabs?: boolean;
|
|
12537
13002
|
};
|
|
12538
13003
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
12539
13004
|
};
|
|
@@ -12596,6 +13061,7 @@ declare class MoreComponent {
|
|
|
12596
13061
|
customData?: string[];
|
|
12597
13062
|
};
|
|
12598
13063
|
previewMultiConversion?: boolean;
|
|
13064
|
+
persistFiltersAcrossTabs?: boolean;
|
|
12599
13065
|
};
|
|
12600
13066
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
12601
13067
|
} | undefined>;
|
|
@@ -12686,6 +13152,7 @@ declare class MoreComponent {
|
|
|
12686
13152
|
customData?: string[];
|
|
12687
13153
|
};
|
|
12688
13154
|
previewMultiConversion?: boolean;
|
|
13155
|
+
persistFiltersAcrossTabs?: boolean;
|
|
12689
13156
|
};
|
|
12690
13157
|
allowAdvancedFilters?: boolean;
|
|
12691
13158
|
general?: {
|
|
@@ -12727,6 +13194,7 @@ declare class MoreComponent {
|
|
|
12727
13194
|
customData?: string[];
|
|
12728
13195
|
};
|
|
12729
13196
|
previewMultiConversion?: boolean;
|
|
13197
|
+
persistFiltersAcrossTabs?: boolean;
|
|
12730
13198
|
};
|
|
12731
13199
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
12732
13200
|
};
|
|
@@ -12957,6 +13425,7 @@ declare class LabelService {
|
|
|
12957
13425
|
customData?: string[];
|
|
12958
13426
|
};
|
|
12959
13427
|
previewMultiConversion?: boolean;
|
|
13428
|
+
persistFiltersAcrossTabs?: boolean;
|
|
12960
13429
|
};
|
|
12961
13430
|
allowAdvancedFilters?: boolean;
|
|
12962
13431
|
general?: {
|
|
@@ -12998,6 +13467,7 @@ declare class LabelService {
|
|
|
12998
13467
|
customData?: string[];
|
|
12999
13468
|
};
|
|
13000
13469
|
previewMultiConversion?: boolean;
|
|
13470
|
+
persistFiltersAcrossTabs?: boolean;
|
|
13001
13471
|
};
|
|
13002
13472
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
13003
13473
|
};
|
|
@@ -13060,6 +13530,7 @@ declare class LabelService {
|
|
|
13060
13530
|
customData?: string[];
|
|
13061
13531
|
};
|
|
13062
13532
|
previewMultiConversion?: boolean;
|
|
13533
|
+
persistFiltersAcrossTabs?: boolean;
|
|
13063
13534
|
};
|
|
13064
13535
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
13065
13536
|
} | undefined>;
|
|
@@ -13150,6 +13621,7 @@ declare class LabelService {
|
|
|
13150
13621
|
customData?: string[];
|
|
13151
13622
|
};
|
|
13152
13623
|
previewMultiConversion?: boolean;
|
|
13624
|
+
persistFiltersAcrossTabs?: boolean;
|
|
13153
13625
|
};
|
|
13154
13626
|
allowAdvancedFilters?: boolean;
|
|
13155
13627
|
general?: {
|
|
@@ -13191,6 +13663,7 @@ declare class LabelService {
|
|
|
13191
13663
|
customData?: string[];
|
|
13192
13664
|
};
|
|
13193
13665
|
previewMultiConversion?: boolean;
|
|
13666
|
+
persistFiltersAcrossTabs?: boolean;
|
|
13194
13667
|
};
|
|
13195
13668
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
13196
13669
|
};
|
|
@@ -13794,6 +14267,7 @@ declare class UserProfileFormComponent {
|
|
|
13794
14267
|
customData?: string[];
|
|
13795
14268
|
};
|
|
13796
14269
|
previewMultiConversion?: boolean;
|
|
14270
|
+
persistFiltersAcrossTabs?: boolean;
|
|
13797
14271
|
};
|
|
13798
14272
|
allowAdvancedFilters?: boolean;
|
|
13799
14273
|
general?: {
|
|
@@ -13835,6 +14309,7 @@ declare class UserProfileFormComponent {
|
|
|
13835
14309
|
customData?: string[];
|
|
13836
14310
|
};
|
|
13837
14311
|
previewMultiConversion?: boolean;
|
|
14312
|
+
persistFiltersAcrossTabs?: boolean;
|
|
13838
14313
|
};
|
|
13839
14314
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
13840
14315
|
};
|
|
@@ -13897,6 +14372,7 @@ declare class UserProfileFormComponent {
|
|
|
13897
14372
|
customData?: string[];
|
|
13898
14373
|
};
|
|
13899
14374
|
previewMultiConversion?: boolean;
|
|
14375
|
+
persistFiltersAcrossTabs?: boolean;
|
|
13900
14376
|
};
|
|
13901
14377
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
13902
14378
|
} | undefined>;
|
|
@@ -13987,6 +14463,7 @@ declare class UserProfileFormComponent {
|
|
|
13987
14463
|
customData?: string[];
|
|
13988
14464
|
};
|
|
13989
14465
|
previewMultiConversion?: boolean;
|
|
14466
|
+
persistFiltersAcrossTabs?: boolean;
|
|
13990
14467
|
};
|
|
13991
14468
|
allowAdvancedFilters?: boolean;
|
|
13992
14469
|
general?: {
|
|
@@ -14028,6 +14505,7 @@ declare class UserProfileFormComponent {
|
|
|
14028
14505
|
customData?: string[];
|
|
14029
14506
|
};
|
|
14030
14507
|
previewMultiConversion?: boolean;
|
|
14508
|
+
persistFiltersAcrossTabs?: boolean;
|
|
14031
14509
|
};
|
|
14032
14510
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
14033
14511
|
};
|
|
@@ -14161,8 +14639,12 @@ declare const authInterceptorFn: HttpInterceptorFn;
|
|
|
14161
14639
|
declare const bodyInterceptorFn: (request: HttpRequest<unknown>, next: HttpHandlerFn) => rxjs.Observable<_angular_common_http.HttpEvent<unknown>>;
|
|
14162
14640
|
|
|
14163
14641
|
/**
|
|
14164
|
-
* Interceptor function that handles HTTP 401 errors by refreshing authentication
|
|
14165
|
-
*
|
|
14642
|
+
* Interceptor function that handles HTTP 401 errors by refreshing authentication and retrying the
|
|
14643
|
+
* original request once. For 403 errors, the error is propagated as a permanent auth failure.
|
|
14644
|
+
*
|
|
14645
|
+
* The retry happens ONLY when `signIn()` reports the user is authenticated, and AT MOST once per
|
|
14646
|
+
* request. Without these two guards a persistent 401 (credentials required, or an endpoint that
|
|
14647
|
+
* keeps rejecting even after a successful CSRF handshake) would retry endlessly.
|
|
14166
14648
|
*
|
|
14167
14649
|
* @param request - The HTTP request object.
|
|
14168
14650
|
* @param next - The HTTP handler function.
|
|
@@ -14268,6 +14750,7 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
14268
14750
|
customData?: string[];
|
|
14269
14751
|
};
|
|
14270
14752
|
previewMultiConversion?: boolean;
|
|
14753
|
+
persistFiltersAcrossTabs?: boolean;
|
|
14271
14754
|
};
|
|
14272
14755
|
allowAdvancedFilters?: boolean;
|
|
14273
14756
|
general?: {
|
|
@@ -14309,6 +14792,7 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
14309
14792
|
customData?: string[];
|
|
14310
14793
|
};
|
|
14311
14794
|
previewMultiConversion?: boolean;
|
|
14795
|
+
persistFiltersAcrossTabs?: boolean;
|
|
14312
14796
|
};
|
|
14313
14797
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
14314
14798
|
};
|
|
@@ -14371,6 +14855,7 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
14371
14855
|
customData?: string[];
|
|
14372
14856
|
};
|
|
14373
14857
|
previewMultiConversion?: boolean;
|
|
14858
|
+
persistFiltersAcrossTabs?: boolean;
|
|
14374
14859
|
};
|
|
14375
14860
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
14376
14861
|
} | undefined>;
|
|
@@ -14461,6 +14946,7 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
14461
14946
|
customData?: string[];
|
|
14462
14947
|
};
|
|
14463
14948
|
previewMultiConversion?: boolean;
|
|
14949
|
+
persistFiltersAcrossTabs?: boolean;
|
|
14464
14950
|
};
|
|
14465
14951
|
allowAdvancedFilters?: boolean;
|
|
14466
14952
|
general?: {
|
|
@@ -14502,6 +14988,7 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
14502
14988
|
customData?: string[];
|
|
14503
14989
|
};
|
|
14504
14990
|
previewMultiConversion?: boolean;
|
|
14991
|
+
persistFiltersAcrossTabs?: boolean;
|
|
14505
14992
|
};
|
|
14506
14993
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
14507
14994
|
};
|
|
@@ -14639,5 +15126,5 @@ type AppFeatures = {
|
|
|
14639
15126
|
*/
|
|
14640
15127
|
declare const APP_FEATURES: InjectionToken<AppFeatures>;
|
|
14641
15128
|
|
|
14642
|
-
export { AGGREGATIONS_NAMES, AGGREGATIONS_NAMES_PRESET_DEFAULT, APP_FEATURES, AdvancedFiltersComponent, AdvancedSearch, AdvancedSearchComponent, AggregationComponent, AggregationDateComponent, AggregationDateRangeDialogComponent, AggregationListComponent, AggregationTreeComponent, 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, 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 };
|
|
15129
|
+
export { AGGREGATIONS_NAMES, AGGREGATIONS_NAMES_PRESET_DEFAULT, APP_FEATURES, AdvancedFiltersComponent, AdvancedSearch, AdvancedSearchComponent, AggregationComponent, AggregationDateComponent, AggregationDateRangeDialogComponent, AggregationListComponent, AggregationTreeComponent, 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, 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, bootstrapApp, 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 };
|
|
14643
15130
|
export type { AgentUserSettings, AggEx, AggregationEx, AggregationListEx, AggregationListItem, AggregationTitle, AggregationTreeEx, AggregationsState, AppCJson, AppFeatures, ApplicationState, ArticleMetadata, AssistantDetails, Autocomplete, Basket, Bookmark, BookmarksConfig, CAggregation, CAggregationItem, CCAppState, CCWebServiceLabels, CConverter, CFilter, CFilterEx, CFilterItem, CJ, CJson, CJsonMint, CSources, CollectionsConfig, ComponentMapping, CssVars, DateRange, DocumentOffsets, DocumentPages, 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 };
|