@sinequa/atomic-angular 1.5.3 → 1.6.0
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/components/navbar-tabs/i18n/de.json +4 -0
- package/components/navbar-tabs/i18n/en.json +4 -0
- package/components/navbar-tabs/i18n/fr.json +4 -0
- package/features/auth/i18n/de.json +3 -1
- package/features/auth/i18n/en.json +3 -1
- package/features/auth/i18n/fr.json +3 -1
- package/features/did-you-mean/i18n/de.json +2 -1
- package/features/did-you-mean/i18n/en.json +2 -1
- package/features/did-you-mean/i18n/fr.json +2 -1
- package/fesm2022/sinequa-atomic-angular.mjs +818 -400
- package/fesm2022/sinequa-atomic-angular.mjs.map +1 -1
- package/index.d.ts +209 -26
- package/package.json +5 -1
package/index.d.ts
CHANGED
|
@@ -471,6 +471,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
471
471
|
persistFiltersAcrossTabs?: boolean;
|
|
472
472
|
};
|
|
473
473
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
474
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
474
475
|
};
|
|
475
476
|
documentsUploadSettings?: {
|
|
476
477
|
enabled?: boolean;
|
|
@@ -534,6 +535,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
534
535
|
persistFiltersAcrossTabs?: boolean;
|
|
535
536
|
};
|
|
536
537
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
538
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
537
539
|
} | undefined>;
|
|
538
540
|
assistants: _angular_core.Signal<{
|
|
539
541
|
[x: string]: _sinequa_atomic_angular.AssistantDetails;
|
|
@@ -667,6 +669,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
667
669
|
persistFiltersAcrossTabs?: boolean;
|
|
668
670
|
};
|
|
669
671
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
672
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
670
673
|
};
|
|
671
674
|
documentsUploadSettings?: {
|
|
672
675
|
enabled?: boolean;
|
|
@@ -752,6 +755,7 @@ declare class MultiSelectionToolbarComponent {
|
|
|
752
755
|
persistFiltersAcrossTabs?: boolean;
|
|
753
756
|
};
|
|
754
757
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
758
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
755
759
|
} | undefined;
|
|
756
760
|
readonly class: _angular_core.InputSignal<string>;
|
|
757
761
|
readonly variant: _angular_core.InputSignal<"light" | "dark" | "glassy" | null | undefined>;
|
|
@@ -894,6 +898,7 @@ declare class NavbarTabsComponent {
|
|
|
894
898
|
persistFiltersAcrossTabs?: boolean;
|
|
895
899
|
};
|
|
896
900
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
901
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
897
902
|
};
|
|
898
903
|
documentsUploadSettings?: {
|
|
899
904
|
enabled?: boolean;
|
|
@@ -957,6 +962,7 @@ declare class NavbarTabsComponent {
|
|
|
957
962
|
persistFiltersAcrossTabs?: boolean;
|
|
958
963
|
};
|
|
959
964
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
965
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
960
966
|
} | undefined>;
|
|
961
967
|
assistants: _angular_core.Signal<{
|
|
962
968
|
[x: string]: _sinequa_atomic_angular.AssistantDetails;
|
|
@@ -1090,6 +1096,7 @@ declare class NavbarTabsComponent {
|
|
|
1090
1096
|
persistFiltersAcrossTabs?: boolean;
|
|
1091
1097
|
};
|
|
1092
1098
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
1099
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
1093
1100
|
};
|
|
1094
1101
|
documentsUploadSettings?: {
|
|
1095
1102
|
enabled?: boolean;
|
|
@@ -1372,6 +1379,14 @@ type CConverter = {
|
|
|
1372
1379
|
default?: boolean;
|
|
1373
1380
|
conversion?: Conversion;
|
|
1374
1381
|
};
|
|
1382
|
+
type CFeedback = Partial<{
|
|
1383
|
+
like: boolean;
|
|
1384
|
+
dislike: boolean;
|
|
1385
|
+
content: boolean;
|
|
1386
|
+
ui: boolean;
|
|
1387
|
+
lang: boolean;
|
|
1388
|
+
other: boolean;
|
|
1389
|
+
}>;
|
|
1375
1390
|
type CJsonMint = CJson & {
|
|
1376
1391
|
filters?: CAggregation[];
|
|
1377
1392
|
autocomplete?: Autocomplete;
|
|
@@ -1401,6 +1416,7 @@ type CJsonMint = CJson & {
|
|
|
1401
1416
|
};
|
|
1402
1417
|
features?: CFeatures;
|
|
1403
1418
|
converters?: CConverter[];
|
|
1419
|
+
feedback?: CFeedback;
|
|
1404
1420
|
};
|
|
1405
1421
|
documentsUploadSettings?: {
|
|
1406
1422
|
enabled?: boolean;
|
|
@@ -1595,6 +1611,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
1595
1611
|
persistFiltersAcrossTabs?: boolean;
|
|
1596
1612
|
};
|
|
1597
1613
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
1614
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
1598
1615
|
};
|
|
1599
1616
|
documentsUploadSettings?: {
|
|
1600
1617
|
enabled?: boolean;
|
|
@@ -1658,6 +1675,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
1658
1675
|
persistFiltersAcrossTabs?: boolean;
|
|
1659
1676
|
};
|
|
1660
1677
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
1678
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
1661
1679
|
} | undefined>;
|
|
1662
1680
|
assistants: _angular_core.Signal<AssistantConfiguration>;
|
|
1663
1681
|
agents: _angular_core.Signal<AgentConfiguration>;
|
|
@@ -1785,6 +1803,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
1785
1803
|
persistFiltersAcrossTabs?: boolean;
|
|
1786
1804
|
};
|
|
1787
1805
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
1806
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
1788
1807
|
};
|
|
1789
1808
|
documentsUploadSettings?: {
|
|
1790
1809
|
enabled?: boolean;
|
|
@@ -1905,6 +1924,7 @@ declare function withAppFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signa
|
|
|
1905
1924
|
persistFiltersAcrossTabs?: boolean;
|
|
1906
1925
|
};
|
|
1907
1926
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
1927
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
1908
1928
|
};
|
|
1909
1929
|
documentsUploadSettings?: {
|
|
1910
1930
|
enabled?: boolean;
|
|
@@ -1970,6 +1990,7 @@ declare function withAppFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signa
|
|
|
1970
1990
|
persistFiltersAcrossTabs?: boolean;
|
|
1971
1991
|
};
|
|
1972
1992
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
1993
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
1973
1994
|
} | undefined>;
|
|
1974
1995
|
assistants: _angular_core.Signal<AssistantConfiguration>;
|
|
1975
1996
|
agents: _angular_core.Signal<AgentConfiguration>;
|
|
@@ -2108,7 +2129,7 @@ declare const PrincipalStore: _angular_core.Type<{
|
|
|
2108
2129
|
param9: _angular_core.Signal<string>;
|
|
2109
2130
|
param10: _angular_core.Signal<string>;
|
|
2110
2131
|
userOverrideActive: _angular_core.Signal<boolean>;
|
|
2111
|
-
state: _angular_core.Signal<"
|
|
2132
|
+
state: _angular_core.Signal<"initial" | "loading" | "loaded" | "error">;
|
|
2112
2133
|
allowUserOverride: _angular_core.Signal<boolean>;
|
|
2113
2134
|
isOverridingUser: _angular_core.Signal<boolean>;
|
|
2114
2135
|
initials: _angular_core.Signal<string>;
|
|
@@ -2770,6 +2791,7 @@ declare class AggregationsService {
|
|
|
2770
2791
|
persistFiltersAcrossTabs?: boolean;
|
|
2771
2792
|
};
|
|
2772
2793
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
2794
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
2773
2795
|
};
|
|
2774
2796
|
documentsUploadSettings?: {
|
|
2775
2797
|
enabled?: boolean;
|
|
@@ -2833,6 +2855,7 @@ declare class AggregationsService {
|
|
|
2833
2855
|
persistFiltersAcrossTabs?: boolean;
|
|
2834
2856
|
};
|
|
2835
2857
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
2858
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
2836
2859
|
} | undefined>;
|
|
2837
2860
|
assistants: _angular_core.Signal<{
|
|
2838
2861
|
[x: string]: _sinequa_atomic_angular.AssistantDetails;
|
|
@@ -2966,6 +2989,7 @@ declare class AggregationsService {
|
|
|
2966
2989
|
persistFiltersAcrossTabs?: boolean;
|
|
2967
2990
|
};
|
|
2968
2991
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
2992
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
2969
2993
|
};
|
|
2970
2994
|
documentsUploadSettings?: {
|
|
2971
2995
|
enabled?: boolean;
|
|
@@ -3267,7 +3291,7 @@ declare class ApplicationService {
|
|
|
3267
3291
|
param9: _angular_core.Signal<string>;
|
|
3268
3292
|
param10: _angular_core.Signal<string>;
|
|
3269
3293
|
userOverrideActive: _angular_core.Signal<boolean>;
|
|
3270
|
-
state: _angular_core.Signal<"
|
|
3294
|
+
state: _angular_core.Signal<"initial" | "loading" | "loaded" | "error">;
|
|
3271
3295
|
allowUserOverride: _angular_core.Signal<boolean>;
|
|
3272
3296
|
isOverridingUser: _angular_core.Signal<boolean>;
|
|
3273
3297
|
initials: _angular_core.Signal<string>;
|
|
@@ -3399,6 +3423,7 @@ declare class ApplicationService {
|
|
|
3399
3423
|
persistFiltersAcrossTabs?: boolean;
|
|
3400
3424
|
};
|
|
3401
3425
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
3426
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
3402
3427
|
};
|
|
3403
3428
|
documentsUploadSettings?: {
|
|
3404
3429
|
enabled?: boolean;
|
|
@@ -3462,6 +3487,7 @@ declare class ApplicationService {
|
|
|
3462
3487
|
persistFiltersAcrossTabs?: boolean;
|
|
3463
3488
|
};
|
|
3464
3489
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
3490
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
3465
3491
|
} | undefined>;
|
|
3466
3492
|
assistants: _angular_core.Signal<{
|
|
3467
3493
|
[x: string]: _sinequa_atomic_angular.AssistantDetails;
|
|
@@ -3595,6 +3621,7 @@ declare class ApplicationService {
|
|
|
3595
3621
|
persistFiltersAcrossTabs?: boolean;
|
|
3596
3622
|
};
|
|
3597
3623
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
3624
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
3598
3625
|
};
|
|
3599
3626
|
documentsUploadSettings?: {
|
|
3600
3627
|
enabled?: boolean;
|
|
@@ -3793,6 +3820,7 @@ declare class AuditService {
|
|
|
3793
3820
|
persistFiltersAcrossTabs?: boolean;
|
|
3794
3821
|
};
|
|
3795
3822
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
3823
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
3796
3824
|
};
|
|
3797
3825
|
documentsUploadSettings?: {
|
|
3798
3826
|
enabled?: boolean;
|
|
@@ -3856,6 +3884,7 @@ declare class AuditService {
|
|
|
3856
3884
|
persistFiltersAcrossTabs?: boolean;
|
|
3857
3885
|
};
|
|
3858
3886
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
3887
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
3859
3888
|
} | undefined>;
|
|
3860
3889
|
assistants: _angular_core.Signal<{
|
|
3861
3890
|
[x: string]: _sinequa_atomic_angular.AssistantDetails;
|
|
@@ -3989,6 +4018,7 @@ declare class AuditService {
|
|
|
3989
4018
|
persistFiltersAcrossTabs?: boolean;
|
|
3990
4019
|
};
|
|
3991
4020
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
4021
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
3992
4022
|
};
|
|
3993
4023
|
documentsUploadSettings?: {
|
|
3994
4024
|
enabled?: boolean;
|
|
@@ -4198,6 +4228,7 @@ declare class AutocompleteService {
|
|
|
4198
4228
|
persistFiltersAcrossTabs?: boolean;
|
|
4199
4229
|
};
|
|
4200
4230
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
4231
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
4201
4232
|
};
|
|
4202
4233
|
documentsUploadSettings?: {
|
|
4203
4234
|
enabled?: boolean;
|
|
@@ -4261,6 +4292,7 @@ declare class AutocompleteService {
|
|
|
4261
4292
|
persistFiltersAcrossTabs?: boolean;
|
|
4262
4293
|
};
|
|
4263
4294
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
4295
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
4264
4296
|
} | undefined>;
|
|
4265
4297
|
assistants: _angular_core.Signal<{
|
|
4266
4298
|
[x: string]: _sinequa_atomic_angular.AssistantDetails;
|
|
@@ -4394,6 +4426,7 @@ declare class AutocompleteService {
|
|
|
4394
4426
|
persistFiltersAcrossTabs?: boolean;
|
|
4395
4427
|
};
|
|
4396
4428
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
4429
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
4397
4430
|
};
|
|
4398
4431
|
documentsUploadSettings?: {
|
|
4399
4432
|
enabled?: boolean;
|
|
@@ -4640,7 +4673,8 @@ declare function withThemes(app: ApplicationRef, themes: Theme[]): ApplicationRe
|
|
|
4640
4673
|
* The mode is expected to be resolved beforehand (by `initializeAppConfig`, awaited in
|
|
4641
4674
|
* `bootstrapApp`). This function clears any existing session, then:
|
|
4642
4675
|
* - `credentials` → redirect to the login form;
|
|
4643
|
-
* - `sso` →
|
|
4676
|
+
* - `sso` → re-probe the session and, only if it is genuinely gone, reload the page so the
|
|
4677
|
+
* browser/proxy performs the handshake (see {@link reauthenticateSso});
|
|
4644
4678
|
* - `oauth` / `saml` → delegate to `login()`, which redirects to the provider;
|
|
4645
4679
|
* - `bearer` → delegate to `login()`;
|
|
4646
4680
|
* - `unknown` → `login()` tries SSO silently then resolves to credentials; on failure the login
|
|
@@ -4949,6 +4983,7 @@ declare class PreviewService {
|
|
|
4949
4983
|
persistFiltersAcrossTabs?: boolean;
|
|
4950
4984
|
};
|
|
4951
4985
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
4986
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
4952
4987
|
};
|
|
4953
4988
|
documentsUploadSettings?: {
|
|
4954
4989
|
enabled?: boolean;
|
|
@@ -5012,6 +5047,7 @@ declare class PreviewService {
|
|
|
5012
5047
|
persistFiltersAcrossTabs?: boolean;
|
|
5013
5048
|
};
|
|
5014
5049
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
5050
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
5015
5051
|
} | undefined>;
|
|
5016
5052
|
assistants: _angular_core.Signal<{
|
|
5017
5053
|
[x: string]: _sinequa_atomic_angular.AssistantDetails;
|
|
@@ -5145,6 +5181,7 @@ declare class PreviewService {
|
|
|
5145
5181
|
persistFiltersAcrossTabs?: boolean;
|
|
5146
5182
|
};
|
|
5147
5183
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
5184
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
5148
5185
|
};
|
|
5149
5186
|
documentsUploadSettings?: {
|
|
5150
5187
|
enabled?: boolean;
|
|
@@ -5320,17 +5357,14 @@ declare class PreviewService {
|
|
|
5320
5357
|
* @deprecated This service is deprecated and should not be used directly. Please use the PrincipalStore instead.
|
|
5321
5358
|
*/
|
|
5322
5359
|
declare class PrincipalService {
|
|
5323
|
-
protected readonly http: HttpClient;
|
|
5324
|
-
protected readonly API_URL: string;
|
|
5325
5360
|
/**
|
|
5326
5361
|
* Retrieves the principal information from the server.
|
|
5327
5362
|
*
|
|
5328
5363
|
* @returns Observable<Principal> An observable that emits the principal information.
|
|
5329
5364
|
*
|
|
5330
5365
|
* @remarks
|
|
5331
|
-
*
|
|
5332
|
-
*
|
|
5333
|
-
* In case of an error, it logs the error to the console and returns an empty observable.
|
|
5366
|
+
* Delegates to the SDK's fetchPrincipal so the request goes through atomic's auth handling
|
|
5367
|
+
* (credentials + authMode-aware noAutoAuthentication). On error it logs and returns EMPTY.
|
|
5334
5368
|
*
|
|
5335
5369
|
* @example
|
|
5336
5370
|
* ```typescript
|
|
@@ -6057,6 +6091,7 @@ declare class SortSelectorComponent {
|
|
|
6057
6091
|
persistFiltersAcrossTabs?: boolean;
|
|
6058
6092
|
};
|
|
6059
6093
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
6094
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
6060
6095
|
};
|
|
6061
6096
|
documentsUploadSettings?: {
|
|
6062
6097
|
enabled?: boolean;
|
|
@@ -6120,6 +6155,7 @@ declare class SortSelectorComponent {
|
|
|
6120
6155
|
persistFiltersAcrossTabs?: boolean;
|
|
6121
6156
|
};
|
|
6122
6157
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
6158
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
6123
6159
|
} | undefined>;
|
|
6124
6160
|
assistants: _angular_core.Signal<{
|
|
6125
6161
|
[x: string]: _sinequa_atomic_angular.AssistantDetails;
|
|
@@ -6253,6 +6289,7 @@ declare class SortSelectorComponent {
|
|
|
6253
6289
|
persistFiltersAcrossTabs?: boolean;
|
|
6254
6290
|
};
|
|
6255
6291
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
6292
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
6256
6293
|
};
|
|
6257
6294
|
documentsUploadSettings?: {
|
|
6258
6295
|
enabled?: boolean;
|
|
@@ -6858,6 +6895,7 @@ declare class SponsoredResultsComponent {
|
|
|
6858
6895
|
persistFiltersAcrossTabs?: boolean;
|
|
6859
6896
|
};
|
|
6860
6897
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
6898
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
6861
6899
|
};
|
|
6862
6900
|
documentsUploadSettings?: {
|
|
6863
6901
|
enabled?: boolean;
|
|
@@ -6921,6 +6959,7 @@ declare class SponsoredResultsComponent {
|
|
|
6921
6959
|
persistFiltersAcrossTabs?: boolean;
|
|
6922
6960
|
};
|
|
6923
6961
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
6962
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
6924
6963
|
} | undefined>;
|
|
6925
6964
|
assistants: _angular_core.Signal<{
|
|
6926
6965
|
[x: string]: _sinequa_atomic_angular.AssistantDetails;
|
|
@@ -7054,6 +7093,7 @@ declare class SponsoredResultsComponent {
|
|
|
7054
7093
|
persistFiltersAcrossTabs?: boolean;
|
|
7055
7094
|
};
|
|
7056
7095
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
7096
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
7057
7097
|
};
|
|
7058
7098
|
documentsUploadSettings?: {
|
|
7059
7099
|
enabled?: boolean;
|
|
@@ -7770,6 +7810,7 @@ declare class ArticleEntities {
|
|
|
7770
7810
|
persistFiltersAcrossTabs?: boolean;
|
|
7771
7811
|
};
|
|
7772
7812
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
7813
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
7773
7814
|
};
|
|
7774
7815
|
documentsUploadSettings?: {
|
|
7775
7816
|
enabled?: boolean;
|
|
@@ -7833,6 +7874,7 @@ declare class ArticleEntities {
|
|
|
7833
7874
|
persistFiltersAcrossTabs?: boolean;
|
|
7834
7875
|
};
|
|
7835
7876
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
7877
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
7836
7878
|
} | undefined>;
|
|
7837
7879
|
assistants: _angular_core.Signal<{
|
|
7838
7880
|
[x: string]: _sinequa_atomic_angular.AssistantDetails;
|
|
@@ -7966,6 +8008,7 @@ declare class ArticleEntities {
|
|
|
7966
8008
|
persistFiltersAcrossTabs?: boolean;
|
|
7967
8009
|
};
|
|
7968
8010
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
8011
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
7969
8012
|
};
|
|
7970
8013
|
documentsUploadSettings?: {
|
|
7971
8014
|
enabled?: boolean;
|
|
@@ -8192,13 +8235,19 @@ declare class AlertsComponent {
|
|
|
8192
8235
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AlertsComponent, "Alerts", never, {}, {}, never, never, true, never>;
|
|
8193
8236
|
}
|
|
8194
8237
|
|
|
8195
|
-
type AuthView = "signin" | "changepassword" | "login" | "forgotpassword";
|
|
8238
|
+
type AuthView = "signin" | "changepassword" | "login" | "forgotpassword" | "signedout";
|
|
8196
8239
|
declare class AuthPageComponent {
|
|
8197
8240
|
mode: _angular_core.InputSignal<AuthView | undefined>;
|
|
8198
8241
|
view: _angular_core.WritableSignal<AuthView>;
|
|
8199
8242
|
readonly username: _angular_core.WritableSignal<string>;
|
|
8200
8243
|
readonly alert: _angular_core.WritableSignal<string | undefined>;
|
|
8201
8244
|
private readonly route;
|
|
8245
|
+
/**
|
|
8246
|
+
* Default view derived from the route. The `/logout` route renders the "signed out" confirmation
|
|
8247
|
+
* (NOT the sign-in form): in external-auth modes the form would auto-restart the handshake and
|
|
8248
|
+
* re-authenticate the user, defeating the logout. Everything else defaults to the sign-in form.
|
|
8249
|
+
*/
|
|
8250
|
+
private routeView;
|
|
8202
8251
|
constructor();
|
|
8203
8252
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AuthPageComponent, never>;
|
|
8204
8253
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AuthPageComponent, "auth-page, AuthPage, authpage", never, { "mode": { "alias": "mode"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
@@ -8328,8 +8377,31 @@ declare class SignInComponent {
|
|
|
8328
8377
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SignInComponent, "signIn, signin, sign-in", never, { "class": { "alias": "class"; "required": false; "isSignal": true; }; "username": { "alias": "username"; "required": false; "isSignal": true; }; "password": { "alias": "password"; "required": false; "isSignal": true; }; }, { "forgotPassword": "forgotPassword"; "username": "usernameChange"; "password": "passwordChange"; }, never, never, true, never>;
|
|
8329
8378
|
}
|
|
8330
8379
|
|
|
8380
|
+
/**
|
|
8381
|
+
* Post-logout confirmation shown on the `/logout` route.
|
|
8382
|
+
*
|
|
8383
|
+
* Rendering this view (instead of the sign-in form) is essential for the external-auth modes
|
|
8384
|
+
* (`sso` / `oauth` / `saml`): the sign-in form auto-initiates the handshake when
|
|
8385
|
+
* `authMode` is external, so showing it on `/logout` would immediately re-authenticate the user
|
|
8386
|
+
* (a spinner that loops back in). This view gives a clear "signed out" state and a single explicit
|
|
8387
|
+
* action to sign in again.
|
|
8388
|
+
*/
|
|
8389
|
+
declare class SignedOutComponent {
|
|
8390
|
+
private readonly router;
|
|
8391
|
+
/**
|
|
8392
|
+
* Navigate to the login screen, which then drives the normal sign-in handshake.
|
|
8393
|
+
*
|
|
8394
|
+
* A `returnUrl` is required: in the external-auth modes the sign-in screen only navigates away
|
|
8395
|
+
* once the handshake completes IF a `returnUrl` is present (otherwise it stays on the loader).
|
|
8396
|
+
* We send the user back to the app root after signing in again.
|
|
8397
|
+
*/
|
|
8398
|
+
signInAgain(): void;
|
|
8399
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SignedOutComponent, never>;
|
|
8400
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SignedOutComponent, "signed-out, SignedOut, signedout", never, {}, {}, never, never, true, never>;
|
|
8401
|
+
}
|
|
8402
|
+
|
|
8331
8403
|
declare class BookmarkButtonComponent {
|
|
8332
|
-
variant: _angular_core.InputSignal<"default" | "
|
|
8404
|
+
variant: _angular_core.InputSignal<"default" | "primary" | "secondary" | "destructive" | "ai" | "outline" | "none" | "accent" | "tertiary" | "ghost" | "light-accent" | "link" | "icon" | null | undefined>;
|
|
8333
8405
|
size: _angular_core.InputSignal<"icon" | "xs" | "sm" | "md" | "lg" | null | undefined>;
|
|
8334
8406
|
readonly article: _angular_core.InputSignal<Partial<Article$1>>;
|
|
8335
8407
|
private readonly userSettingsStore;
|
|
@@ -8436,6 +8508,63 @@ declare class CollectionsDialog implements DialogInterface {
|
|
|
8436
8508
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CollectionsDialog, "add-to-collection-dialog", never, {}, { "closed": "closed"; }, never, never, true, never>;
|
|
8437
8509
|
}
|
|
8438
8510
|
|
|
8511
|
+
/** Boolean-valued feature flags from `CFeatures` (object-valued features are intentionally excluded). */
|
|
8512
|
+
type BooleanFeatureKey = "allowChangePassword" | "editablepartition" | "advancedSearch" | "allowChatDrawer" | "filterLinkChildren" | "expandPreview" | "quickFilter" | "showAggregationItemCount" | "previewMultiConversion" | "persistFiltersAcrossTabs";
|
|
8513
|
+
interface FeatureFlagDescriptor {
|
|
8514
|
+
key: BooleanFeatureKey;
|
|
8515
|
+
label: string;
|
|
8516
|
+
description: string;
|
|
8517
|
+
}
|
|
8518
|
+
interface FeatureFlagRow extends FeatureFlagDescriptor {
|
|
8519
|
+
enabled: boolean;
|
|
8520
|
+
}
|
|
8521
|
+
/**
|
|
8522
|
+
* Developer/QA tool that lists the application feature flags and lets you toggle them on the fly.
|
|
8523
|
+
*
|
|
8524
|
+
* Changes are applied **live** to the {@link AppStore}: every toggle rewrites the effective
|
|
8525
|
+
* `general.features` map so that the rest of the application — which reads features through
|
|
8526
|
+
* `appStore.general()?.features` — reacts immediately. This makes it possible to test how a
|
|
8527
|
+
* feature behaves without editing the customization JSON and reloading.
|
|
8528
|
+
*
|
|
8529
|
+
* Access is gated to administrators: the gate lives in the component itself (not in the caller) so
|
|
8530
|
+
* the dialog can always be opened, but a non-admin only sees an "admin only" notice — there is no
|
|
8531
|
+
* content to leak and no caller-side check to forget. "Admin" means `isAdministrator` or
|
|
8532
|
+
* `isDelegatedAdmin` on the {@link PrincipalStore}.
|
|
8533
|
+
*
|
|
8534
|
+
* Open it programmatically through the {@link DialogService}:
|
|
8535
|
+
* ```typescript
|
|
8536
|
+
* const modal = inject(DialogService);
|
|
8537
|
+
* modal.open(FeatureFlagsDialogComponent);
|
|
8538
|
+
* ```
|
|
8539
|
+
*/
|
|
8540
|
+
declare class FeatureFlagsDialogComponent implements DialogInterface {
|
|
8541
|
+
private readonly appStore;
|
|
8542
|
+
private readonly principalStore;
|
|
8543
|
+
readonly dialog: _angular_core.Signal<DialogComponent | undefined>;
|
|
8544
|
+
readonly closed: _angular_core.OutputEmitterRef<DialogEvent>;
|
|
8545
|
+
/** The flag list and mutators are only available to administrators (see class doc). */
|
|
8546
|
+
protected readonly isAdmin: _angular_core.Signal<boolean>;
|
|
8547
|
+
protected readonly filter: _angular_core.WritableSignal<string>;
|
|
8548
|
+
/** Snapshot of the features when the dialog was opened, used by {@link reset}. */
|
|
8549
|
+
private readonly initialFeatures;
|
|
8550
|
+
/** Every flag row to display: the known catalog plus any extra boolean flag found in the live config. */
|
|
8551
|
+
protected readonly flags: _angular_core.Signal<FeatureFlagRow[]>;
|
|
8552
|
+
protected readonly visibleFlags: _angular_core.Signal<FeatureFlagRow[]>;
|
|
8553
|
+
/** Whether the live features differ from the snapshot taken when the dialog opened. */
|
|
8554
|
+
protected readonly modified: _angular_core.Signal<boolean>;
|
|
8555
|
+
open(): void;
|
|
8556
|
+
protected setFeature(key: string, value: boolean): void;
|
|
8557
|
+
protected reset(): void;
|
|
8558
|
+
/**
|
|
8559
|
+
* Writes `features` back to the source that `general()` actually reads from: the `general`
|
|
8560
|
+
* side customization JSON when one exists, otherwise the inline `data.general`. We rewrite the
|
|
8561
|
+
* whole object because {@link AppStore.update} performs a shallow merge of the top-level state.
|
|
8562
|
+
*/
|
|
8563
|
+
private applyFeatures;
|
|
8564
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FeatureFlagsDialogComponent, never>;
|
|
8565
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FeatureFlagsDialogComponent, "feature-flags-dialog", never, {}, { "closed": "closed"; }, never, never, true, never>;
|
|
8566
|
+
}
|
|
8567
|
+
|
|
8439
8568
|
declare class OverrideUserDialogComponent implements DialogInterface {
|
|
8440
8569
|
readonly dialog: _angular_core.Signal<DialogComponent | undefined>;
|
|
8441
8570
|
private readonly appService;
|
|
@@ -8940,6 +9069,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
8940
9069
|
persistFiltersAcrossTabs?: boolean;
|
|
8941
9070
|
};
|
|
8942
9071
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
9072
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
8943
9073
|
};
|
|
8944
9074
|
documentsUploadSettings?: {
|
|
8945
9075
|
enabled?: boolean;
|
|
@@ -9003,6 +9133,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9003
9133
|
persistFiltersAcrossTabs?: boolean;
|
|
9004
9134
|
};
|
|
9005
9135
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
9136
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
9006
9137
|
} | undefined>;
|
|
9007
9138
|
assistants: _angular_core.Signal<{
|
|
9008
9139
|
[x: string]: _sinequa_atomic_angular.AssistantDetails;
|
|
@@ -9136,6 +9267,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
9136
9267
|
persistFiltersAcrossTabs?: boolean;
|
|
9137
9268
|
};
|
|
9138
9269
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
9270
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
9139
9271
|
};
|
|
9140
9272
|
documentsUploadSettings?: {
|
|
9141
9273
|
enabled?: boolean;
|
|
@@ -9580,6 +9712,7 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
9580
9712
|
persistFiltersAcrossTabs?: boolean;
|
|
9581
9713
|
};
|
|
9582
9714
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
9715
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
9583
9716
|
};
|
|
9584
9717
|
documentsUploadSettings?: {
|
|
9585
9718
|
enabled?: boolean;
|
|
@@ -9643,6 +9776,7 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
9643
9776
|
persistFiltersAcrossTabs?: boolean;
|
|
9644
9777
|
};
|
|
9645
9778
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
9779
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
9646
9780
|
} | undefined>;
|
|
9647
9781
|
assistants: _angular_core.Signal<{
|
|
9648
9782
|
[x: string]: _sinequa_atomic_angular.AssistantDetails;
|
|
@@ -9776,6 +9910,7 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
9776
9910
|
persistFiltersAcrossTabs?: boolean;
|
|
9777
9911
|
};
|
|
9778
9912
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
9913
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
9779
9914
|
};
|
|
9780
9915
|
documentsUploadSettings?: {
|
|
9781
9916
|
enabled?: boolean;
|
|
@@ -9812,7 +9947,7 @@ declare class SearchFeedbackComponent {
|
|
|
9812
9947
|
onClose: _angular_core.OutputEmitterRef<void>;
|
|
9813
9948
|
readonly feedbackDialog: _angular_core.Signal<FeedbackDialogComponent | undefined>;
|
|
9814
9949
|
pages: _angular_core.InputSignal<any>;
|
|
9815
|
-
variant: _angular_core.InputSignal<"default" | "
|
|
9950
|
+
variant: _angular_core.InputSignal<"default" | "primary" | "secondary" | "destructive" | "ai" | "outline" | "none" | "accent" | "tertiary" | "ghost" | "light-accent" | "link" | "icon" | null | undefined>;
|
|
9816
9951
|
solid: _angular_core.InputSignal<boolean | null | undefined>;
|
|
9817
9952
|
readonly auditService: AuditService;
|
|
9818
9953
|
protected readonly queryParamsStore: {
|
|
@@ -9903,6 +10038,7 @@ declare class SearchFeedbackComponent {
|
|
|
9903
10038
|
id?: string | undefined;
|
|
9904
10039
|
}>;
|
|
9905
10040
|
private readonly transloco;
|
|
10041
|
+
private readonly appStore;
|
|
9906
10042
|
liked: _angular_core.WritableSignal<boolean>;
|
|
9907
10043
|
disliked: _angular_core.WritableSignal<boolean>;
|
|
9908
10044
|
menus: FeedbackMenu[];
|
|
@@ -9910,6 +10046,11 @@ declare class SearchFeedbackComponent {
|
|
|
9910
10046
|
like(): void;
|
|
9911
10047
|
dislike(): void;
|
|
9912
10048
|
openFeedbackDialog(type: string): void;
|
|
10049
|
+
private readonly effectiveConfig;
|
|
10050
|
+
visibleMenus: _angular_core.Signal<FeedbackMenu[]>;
|
|
10051
|
+
showButton: _angular_core.Signal<boolean>;
|
|
10052
|
+
showLike: _angular_core.Signal<boolean>;
|
|
10053
|
+
showDislike: _angular_core.Signal<boolean>;
|
|
9913
10054
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SearchFeedbackComponent, never>;
|
|
9914
10055
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SearchFeedbackComponent, "feedback, Feedback", never, { "pages": { "alias": "pages"; "required": true; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "solid": { "alias": "solid"; "required": false; "isSignal": true; }; }, { "onClose": "onClose"; }, never, never, true, never>;
|
|
9915
10056
|
}
|
|
@@ -10128,6 +10269,7 @@ declare class AggregationTreeComponent {
|
|
|
10128
10269
|
persistFiltersAcrossTabs?: boolean;
|
|
10129
10270
|
};
|
|
10130
10271
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
10272
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
10131
10273
|
};
|
|
10132
10274
|
documentsUploadSettings?: {
|
|
10133
10275
|
enabled?: boolean;
|
|
@@ -10191,6 +10333,7 @@ declare class AggregationTreeComponent {
|
|
|
10191
10333
|
persistFiltersAcrossTabs?: boolean;
|
|
10192
10334
|
};
|
|
10193
10335
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
10336
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
10194
10337
|
} | undefined>;
|
|
10195
10338
|
assistants: _angular_core.Signal<{
|
|
10196
10339
|
[x: string]: _sinequa_atomic_angular.AssistantDetails;
|
|
@@ -10324,6 +10467,7 @@ declare class AggregationTreeComponent {
|
|
|
10324
10467
|
persistFiltersAcrossTabs?: boolean;
|
|
10325
10468
|
};
|
|
10326
10469
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
10470
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
10327
10471
|
};
|
|
10328
10472
|
documentsUploadSettings?: {
|
|
10329
10473
|
enabled?: boolean;
|
|
@@ -10613,6 +10757,7 @@ declare class AggregationListComponent {
|
|
|
10613
10757
|
persistFiltersAcrossTabs?: boolean;
|
|
10614
10758
|
};
|
|
10615
10759
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
10760
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
10616
10761
|
};
|
|
10617
10762
|
documentsUploadSettings?: {
|
|
10618
10763
|
enabled?: boolean;
|
|
@@ -10676,6 +10821,7 @@ declare class AggregationListComponent {
|
|
|
10676
10821
|
persistFiltersAcrossTabs?: boolean;
|
|
10677
10822
|
};
|
|
10678
10823
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
10824
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
10679
10825
|
} | undefined>;
|
|
10680
10826
|
assistants: _angular_core.Signal<{
|
|
10681
10827
|
[x: string]: _sinequa_atomic_angular.AssistantDetails;
|
|
@@ -10809,6 +10955,7 @@ declare class AggregationListComponent {
|
|
|
10809
10955
|
persistFiltersAcrossTabs?: boolean;
|
|
10810
10956
|
};
|
|
10811
10957
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
10958
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
10812
10959
|
};
|
|
10813
10960
|
documentsUploadSettings?: {
|
|
10814
10961
|
enabled?: boolean;
|
|
@@ -10935,10 +11082,7 @@ declare class AggregationComponent {
|
|
|
10935
11082
|
};
|
|
10936
11083
|
allowAdvancedFilters?: boolean;
|
|
10937
11084
|
general?: {
|
|
10938
|
-
name
|
|
10939
|
-
* The column associated with the aggregation. This is a required input and must be provided for the component to function correctly.
|
|
10940
|
-
* @defaultValue undefined
|
|
10941
|
-
*/: string;
|
|
11085
|
+
name?: string;
|
|
10942
11086
|
logo?: {
|
|
10943
11087
|
alt?: string;
|
|
10944
11088
|
light?: {
|
|
@@ -10979,6 +11123,7 @@ declare class AggregationComponent {
|
|
|
10979
11123
|
persistFiltersAcrossTabs?: boolean;
|
|
10980
11124
|
};
|
|
10981
11125
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
11126
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
10982
11127
|
};
|
|
10983
11128
|
documentsUploadSettings?: {
|
|
10984
11129
|
enabled?: boolean;
|
|
@@ -11042,6 +11187,7 @@ declare class AggregationComponent {
|
|
|
11042
11187
|
persistFiltersAcrossTabs?: boolean;
|
|
11043
11188
|
};
|
|
11044
11189
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
11190
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
11045
11191
|
} | undefined>;
|
|
11046
11192
|
assistants: _angular_core.Signal<{
|
|
11047
11193
|
[x: string]: _sinequa_atomic_angular.AssistantDetails;
|
|
@@ -11134,10 +11280,7 @@ declare class AggregationComponent {
|
|
|
11134
11280
|
};
|
|
11135
11281
|
allowAdvancedFilters?: boolean;
|
|
11136
11282
|
general?: {
|
|
11137
|
-
name
|
|
11138
|
-
* The column associated with the aggregation. This is a required input and must be provided for the component to function correctly.
|
|
11139
|
-
* @defaultValue undefined
|
|
11140
|
-
*/: string;
|
|
11283
|
+
name?: string;
|
|
11141
11284
|
logo?: {
|
|
11142
11285
|
alt?: string;
|
|
11143
11286
|
light?: {
|
|
@@ -11178,6 +11321,7 @@ declare class AggregationComponent {
|
|
|
11178
11321
|
persistFiltersAcrossTabs?: boolean;
|
|
11179
11322
|
};
|
|
11180
11323
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
11324
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
11181
11325
|
};
|
|
11182
11326
|
documentsUploadSettings?: {
|
|
11183
11327
|
enabled?: boolean;
|
|
@@ -11349,7 +11493,7 @@ declare class FilterButtonComponent {
|
|
|
11349
11493
|
position: _angular_core.InputSignal<Placement>;
|
|
11350
11494
|
offset: _angular_core.InputSignal<number>;
|
|
11351
11495
|
expandedLevel: _angular_core.InputSignalWithTransform<number | undefined, unknown>;
|
|
11352
|
-
protected variant: _angular_core.WritableSignal<"default" | "
|
|
11496
|
+
protected variant: _angular_core.WritableSignal<"default" | "primary" | "secondary" | "destructive" | "ai" | "outline" | "none" | "accent" | "tertiary" | "ghost" | "light-accent" | "link" | "icon" | null | undefined>;
|
|
11353
11497
|
protected filter: _angular_core.WritableSignal<CFilterEx>;
|
|
11354
11498
|
popoverRef: _angular_core.Signal<PopoverComponent | undefined>;
|
|
11355
11499
|
protected nativeElement: any;
|
|
@@ -11546,6 +11690,7 @@ declare class FilterButtonComponent {
|
|
|
11546
11690
|
persistFiltersAcrossTabs?: boolean;
|
|
11547
11691
|
};
|
|
11548
11692
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
11693
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
11549
11694
|
};
|
|
11550
11695
|
documentsUploadSettings?: {
|
|
11551
11696
|
enabled?: boolean;
|
|
@@ -11609,6 +11754,7 @@ declare class FilterButtonComponent {
|
|
|
11609
11754
|
persistFiltersAcrossTabs?: boolean;
|
|
11610
11755
|
};
|
|
11611
11756
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
11757
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
11612
11758
|
} | undefined>;
|
|
11613
11759
|
assistants: _angular_core.Signal<{
|
|
11614
11760
|
[x: string]: _sinequa_atomic_angular.AssistantDetails;
|
|
@@ -11742,6 +11888,7 @@ declare class FilterButtonComponent {
|
|
|
11742
11888
|
persistFiltersAcrossTabs?: boolean;
|
|
11743
11889
|
};
|
|
11744
11890
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
11891
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
11745
11892
|
};
|
|
11746
11893
|
documentsUploadSettings?: {
|
|
11747
11894
|
enabled?: boolean;
|
|
@@ -11871,6 +12018,7 @@ declare class MoreButtonComponent {
|
|
|
11871
12018
|
persistFiltersAcrossTabs?: boolean;
|
|
11872
12019
|
};
|
|
11873
12020
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
12021
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
11874
12022
|
};
|
|
11875
12023
|
documentsUploadSettings?: {
|
|
11876
12024
|
enabled?: boolean;
|
|
@@ -11934,6 +12082,7 @@ declare class MoreButtonComponent {
|
|
|
11934
12082
|
persistFiltersAcrossTabs?: boolean;
|
|
11935
12083
|
};
|
|
11936
12084
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
12085
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
11937
12086
|
} | undefined>;
|
|
11938
12087
|
assistants: _angular_core.Signal<{
|
|
11939
12088
|
[x: string]: _sinequa_atomic_angular.AssistantDetails;
|
|
@@ -12067,6 +12216,7 @@ declare class MoreButtonComponent {
|
|
|
12067
12216
|
persistFiltersAcrossTabs?: boolean;
|
|
12068
12217
|
};
|
|
12069
12218
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
12219
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
12070
12220
|
};
|
|
12071
12221
|
documentsUploadSettings?: {
|
|
12072
12222
|
enabled?: boolean;
|
|
@@ -12316,7 +12466,13 @@ declare class FiltersBarComponent {
|
|
|
12316
12466
|
alt?: string;
|
|
12317
12467
|
light?: {
|
|
12318
12468
|
small?: string;
|
|
12319
|
-
large
|
|
12469
|
+
large? /**
|
|
12470
|
+
* Filters that should be included from the filters bar.
|
|
12471
|
+
* Providing it will hide any filters not contained in this list.
|
|
12472
|
+
*
|
|
12473
|
+
* Use the filter column names to specify which filters to include.
|
|
12474
|
+
* For example, to include the "geo" filter, set `includeFilters = ['Geo']`.
|
|
12475
|
+
*/: string;
|
|
12320
12476
|
sidebar?: string;
|
|
12321
12477
|
};
|
|
12322
12478
|
dark?: {
|
|
@@ -12352,6 +12508,7 @@ declare class FiltersBarComponent {
|
|
|
12352
12508
|
persistFiltersAcrossTabs?: boolean;
|
|
12353
12509
|
};
|
|
12354
12510
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
12511
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
12355
12512
|
};
|
|
12356
12513
|
documentsUploadSettings?: {
|
|
12357
12514
|
enabled?: boolean;
|
|
@@ -12379,7 +12536,13 @@ declare class FiltersBarComponent {
|
|
|
12379
12536
|
alt?: string;
|
|
12380
12537
|
light?: {
|
|
12381
12538
|
small?: string;
|
|
12382
|
-
large
|
|
12539
|
+
large? /**
|
|
12540
|
+
* Filters that should be included from the filters bar.
|
|
12541
|
+
* Providing it will hide any filters not contained in this list.
|
|
12542
|
+
*
|
|
12543
|
+
* Use the filter column names to specify which filters to include.
|
|
12544
|
+
* For example, to include the "geo" filter, set `includeFilters = ['Geo']`.
|
|
12545
|
+
*/: string;
|
|
12383
12546
|
sidebar?: string;
|
|
12384
12547
|
};
|
|
12385
12548
|
dark?: {
|
|
@@ -12415,6 +12578,7 @@ declare class FiltersBarComponent {
|
|
|
12415
12578
|
persistFiltersAcrossTabs?: boolean;
|
|
12416
12579
|
};
|
|
12417
12580
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
12581
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
12418
12582
|
} | undefined>;
|
|
12419
12583
|
assistants: _angular_core.Signal<{
|
|
12420
12584
|
[x: string]: _sinequa_atomic_angular.AssistantDetails;
|
|
@@ -12512,7 +12676,13 @@ declare class FiltersBarComponent {
|
|
|
12512
12676
|
alt?: string;
|
|
12513
12677
|
light?: {
|
|
12514
12678
|
small?: string;
|
|
12515
|
-
large
|
|
12679
|
+
large? /**
|
|
12680
|
+
* Filters that should be included from the filters bar.
|
|
12681
|
+
* Providing it will hide any filters not contained in this list.
|
|
12682
|
+
*
|
|
12683
|
+
* Use the filter column names to specify which filters to include.
|
|
12684
|
+
* For example, to include the "geo" filter, set `includeFilters = ['Geo']`.
|
|
12685
|
+
*/: string;
|
|
12516
12686
|
sidebar?: string;
|
|
12517
12687
|
};
|
|
12518
12688
|
dark?: {
|
|
@@ -12548,6 +12718,7 @@ declare class FiltersBarComponent {
|
|
|
12548
12718
|
persistFiltersAcrossTabs?: boolean;
|
|
12549
12719
|
};
|
|
12550
12720
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
12721
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
12551
12722
|
};
|
|
12552
12723
|
documentsUploadSettings?: {
|
|
12553
12724
|
enabled?: boolean;
|
|
@@ -12853,6 +13024,7 @@ declare class MoreComponent {
|
|
|
12853
13024
|
persistFiltersAcrossTabs?: boolean;
|
|
12854
13025
|
};
|
|
12855
13026
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
13027
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
12856
13028
|
};
|
|
12857
13029
|
documentsUploadSettings?: {
|
|
12858
13030
|
enabled?: boolean;
|
|
@@ -12916,6 +13088,7 @@ declare class MoreComponent {
|
|
|
12916
13088
|
persistFiltersAcrossTabs?: boolean;
|
|
12917
13089
|
};
|
|
12918
13090
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
13091
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
12919
13092
|
} | undefined>;
|
|
12920
13093
|
assistants: _angular_core.Signal<{
|
|
12921
13094
|
[x: string]: _sinequa_atomic_angular.AssistantDetails;
|
|
@@ -13049,6 +13222,7 @@ declare class MoreComponent {
|
|
|
13049
13222
|
persistFiltersAcrossTabs?: boolean;
|
|
13050
13223
|
};
|
|
13051
13224
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
13225
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
13052
13226
|
};
|
|
13053
13227
|
documentsUploadSettings?: {
|
|
13054
13228
|
enabled?: boolean;
|
|
@@ -13322,6 +13496,7 @@ declare class LabelService {
|
|
|
13322
13496
|
persistFiltersAcrossTabs?: boolean;
|
|
13323
13497
|
};
|
|
13324
13498
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
13499
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
13325
13500
|
};
|
|
13326
13501
|
documentsUploadSettings?: {
|
|
13327
13502
|
enabled?: boolean;
|
|
@@ -13385,6 +13560,7 @@ declare class LabelService {
|
|
|
13385
13560
|
persistFiltersAcrossTabs?: boolean;
|
|
13386
13561
|
};
|
|
13387
13562
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
13563
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
13388
13564
|
} | undefined>;
|
|
13389
13565
|
assistants: _angular_core.Signal<{
|
|
13390
13566
|
[x: string]: _sinequa_atomic_angular.AssistantDetails;
|
|
@@ -13518,6 +13694,7 @@ declare class LabelService {
|
|
|
13518
13694
|
persistFiltersAcrossTabs?: boolean;
|
|
13519
13695
|
};
|
|
13520
13696
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
13697
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
13521
13698
|
};
|
|
13522
13699
|
documentsUploadSettings?: {
|
|
13523
13700
|
enabled?: boolean;
|
|
@@ -13977,7 +14154,7 @@ declare class UserProfileFormComponent {
|
|
|
13977
14154
|
param9: _angular_core.Signal<string>;
|
|
13978
14155
|
param10: _angular_core.Signal<string>;
|
|
13979
14156
|
userOverrideActive: _angular_core.Signal<boolean>;
|
|
13980
|
-
state: _angular_core.Signal<"
|
|
14157
|
+
state: _angular_core.Signal<"initial" | "loading" | "loaded" | "error">;
|
|
13981
14158
|
allowUserOverride: _angular_core.Signal<boolean>;
|
|
13982
14159
|
isOverridingUser: _angular_core.Signal<boolean>;
|
|
13983
14160
|
initials: _angular_core.Signal<string>;
|
|
@@ -14164,6 +14341,7 @@ declare class UserProfileFormComponent {
|
|
|
14164
14341
|
persistFiltersAcrossTabs?: boolean;
|
|
14165
14342
|
};
|
|
14166
14343
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
14344
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
14167
14345
|
};
|
|
14168
14346
|
documentsUploadSettings?: {
|
|
14169
14347
|
enabled?: boolean;
|
|
@@ -14227,6 +14405,7 @@ declare class UserProfileFormComponent {
|
|
|
14227
14405
|
persistFiltersAcrossTabs?: boolean;
|
|
14228
14406
|
};
|
|
14229
14407
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
14408
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
14230
14409
|
} | undefined>;
|
|
14231
14410
|
assistants: _angular_core.Signal<{
|
|
14232
14411
|
[x: string]: _sinequa_atomic_angular.AssistantDetails;
|
|
@@ -14360,6 +14539,7 @@ declare class UserProfileFormComponent {
|
|
|
14360
14539
|
persistFiltersAcrossTabs?: boolean;
|
|
14361
14540
|
};
|
|
14362
14541
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
14542
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
14363
14543
|
};
|
|
14364
14544
|
documentsUploadSettings?: {
|
|
14365
14545
|
enabled?: boolean;
|
|
@@ -14647,6 +14827,7 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
14647
14827
|
persistFiltersAcrossTabs?: boolean;
|
|
14648
14828
|
};
|
|
14649
14829
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
14830
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
14650
14831
|
};
|
|
14651
14832
|
documentsUploadSettings?: {
|
|
14652
14833
|
enabled?: boolean;
|
|
@@ -14710,6 +14891,7 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
14710
14891
|
persistFiltersAcrossTabs?: boolean;
|
|
14711
14892
|
};
|
|
14712
14893
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
14894
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
14713
14895
|
} | undefined>;
|
|
14714
14896
|
assistants: _angular_core.Signal<{
|
|
14715
14897
|
[x: string]: _sinequa_atomic_angular.AssistantDetails;
|
|
@@ -14843,6 +15025,7 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
14843
15025
|
persistFiltersAcrossTabs?: boolean;
|
|
14844
15026
|
};
|
|
14845
15027
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
15028
|
+
feedback?: _sinequa_atomic_angular.CFeedback;
|
|
14846
15029
|
};
|
|
14847
15030
|
documentsUploadSettings?: {
|
|
14848
15031
|
enabled?: boolean;
|
|
@@ -14978,5 +15161,5 @@ type AppFeatures = {
|
|
|
14978
15161
|
*/
|
|
14979
15162
|
declare const APP_FEATURES: InjectionToken<AppFeatures>;
|
|
14980
15163
|
|
|
14981
|
-
export { AGGREGATIONS_NAMES, AGGREGATIONS_NAMES_PRESET_DEFAULT, APP_FEATURES, AdvancedFiltersComponent, AdvancedSearch, AdvancedSearchComponent, AggregationComponent, AggregationDateComponent, AggregationDateRangeDialogComponent, AggregationListComponent, AggregationPanelComponent, 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, SidebarNavComponent, 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, injectRouteNavigation, 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 };
|
|
14982
|
-
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, NavRouteTab, PageConfiguration, PreviewEvents, PreviewHighlight, PreviewHighlightName, PreviewHighlights, PrincipalState, SearchItem, SearchOptions, SearchesConfig, SelectionHistoryEvent, SelectionState, SelectionStrategy, SideCJson, SortingChoice, Theme, ThemeBodyHookParameters, ThemeScope, ThemeStoreState, UserSettingsState };
|
|
15164
|
+
export { AGGREGATIONS_NAMES, AGGREGATIONS_NAMES_PRESET_DEFAULT, APP_FEATURES, AdvancedFiltersComponent, AdvancedSearch, AdvancedSearchComponent, AggregationComponent, AggregationDateComponent, AggregationDateRangeDialogComponent, AggregationListComponent, AggregationPanelComponent, 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, FeatureFlagsDialogComponent, 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, SidebarNavComponent, SignInComponent, SignedOutComponent, 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, injectRouteNavigation, 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 };
|
|
15165
|
+
export type { AgentUserSettings, AggEx, AggregationEx, AggregationListEx, AggregationListItem, AggregationTitle, AggregationTreeEx, AggregationsState, AppCJson, AppFeatures, ApplicationState, ArticleMetadata, AssistantDetails, Autocomplete, Basket, Bookmark, BookmarksConfig, CAggregation, CAggregationItem, CCAppState, CCWebServiceLabels, CConverter, CFeedback, CFilter, CFilterEx, CFilterItem, CJ, CJson, CJsonMint, CSources, CollectionsConfig, ComponentMapping, CssVars, DateRange, DocumentOffsets, DocumentPages, DocumentTypeMap, DropdownItem, ExportQueryOptions, Extract, FilterDropdown, KeyboardNavigationOnSelectionHandlers, KeyboardNavigatorOptions, LabelsConfig, MultiSelectionState, MultiSelectionToolbarVariants, NavRouteTab, PageConfiguration, PreviewEvents, PreviewHighlight, PreviewHighlightName, PreviewHighlights, PrincipalState, SearchItem, SearchOptions, SearchesConfig, SelectionHistoryEvent, SelectionState, SelectionStrategy, SideCJson, SortingChoice, Theme, ThemeBodyHookParameters, ThemeScope, ThemeStoreState, UserSettingsState };
|