@sinequa/atomic-angular 1.5.1 → 1.5.3
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/README.md +28 -0
- package/fesm2022/sinequa-atomic-angular.mjs +406 -205
- package/fesm2022/sinequa-atomic-angular.mjs.map +1 -1
- package/index.d.ts +581 -79
- 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, Route, NavigationEnd, CanActivateFn, ResolveFn } from '@angular/router';
|
|
8
|
+
import { Router, Params, Route, NavigationEnd, 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';
|
|
@@ -115,8 +115,8 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
115
115
|
readonly router: Router;
|
|
116
116
|
readonly queryParamStore: {
|
|
117
117
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
118
|
-
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
119
118
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
119
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
120
120
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
121
121
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
122
122
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
@@ -170,8 +170,8 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
170
170
|
getQuery: () => _sinequa_atomic.Query;
|
|
171
171
|
} & _ngrx_signals.StateSource<{
|
|
172
172
|
name?: string | undefined;
|
|
173
|
-
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
174
173
|
text?: string | undefined;
|
|
174
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
175
175
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
176
176
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
177
177
|
page?: number | undefined;
|
|
@@ -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
|
}
|
|
@@ -264,8 +272,8 @@ declare class MissingTermsComponent {
|
|
|
264
272
|
readonly article: _angular_core.InputSignal<Article$1>;
|
|
265
273
|
queryParamsStore: {
|
|
266
274
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
267
|
-
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
268
275
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
276
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
269
277
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
270
278
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
271
279
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
@@ -319,8 +327,8 @@ declare class MissingTermsComponent {
|
|
|
319
327
|
getQuery: () => _sinequa_atomic.Query;
|
|
320
328
|
} & _ngrx_signals.StateSource<{
|
|
321
329
|
name?: string | undefined;
|
|
322
|
-
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
323
330
|
text?: string | undefined;
|
|
331
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
324
332
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
325
333
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
326
334
|
page?: 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;
|
|
@@ -770,10 +784,331 @@ declare function injectRouteNavigation(path: Signal<string>, showCount: Signal<b
|
|
|
770
784
|
searchText: Signal<string>;
|
|
771
785
|
};
|
|
772
786
|
|
|
787
|
+
interface NavTab {
|
|
788
|
+
queryName?: string;
|
|
789
|
+
wsQueryTab?: string;
|
|
790
|
+
routerLink?: string | any[];
|
|
791
|
+
display?: string;
|
|
792
|
+
path?: string;
|
|
793
|
+
count?: number;
|
|
794
|
+
icon?: any;
|
|
795
|
+
}
|
|
773
796
|
declare class NavbarTabsComponent {
|
|
774
797
|
cn: typeof cn;
|
|
775
798
|
class: _angular_core.InputSignal<string | undefined>;
|
|
776
799
|
readonly router: Router;
|
|
800
|
+
protected appStore: {
|
|
801
|
+
name: _angular_core.Signal<string>;
|
|
802
|
+
description?: _angular_core.Signal<string | undefined> | undefined;
|
|
803
|
+
versionId: _angular_core.Signal<string>;
|
|
804
|
+
queries: _angular_core.Signal<Record<string, _sinequa_atomic.CCQuery>>;
|
|
805
|
+
rfms: _angular_core.Signal<Record<string, _sinequa_atomic.CCRFM>>;
|
|
806
|
+
indexes: _angular_core.Signal<{
|
|
807
|
+
_: _sinequa_atomic.CCIndex;
|
|
808
|
+
} & Record<string, _sinequa_atomic.CCIndex>>;
|
|
809
|
+
lists: _angular_core.Signal<Record<string, _sinequa_atomic.CCList>>;
|
|
810
|
+
webServices: _angular_core.Signal<Record<string, _sinequa_atomic.CCWebService>>;
|
|
811
|
+
queryNames: _angular_core.Signal<string>;
|
|
812
|
+
labels: _angular_core.Signal<string>;
|
|
813
|
+
preview: _angular_core.Signal<string>;
|
|
814
|
+
autocomplete: _angular_core.Signal<string>;
|
|
815
|
+
sponsoredLinks: _angular_core.Signal<string>;
|
|
816
|
+
queryExport: _angular_core.Signal<string>;
|
|
817
|
+
queryRssEnabled: _angular_core.Signal<boolean>;
|
|
818
|
+
data: _angular_core.Signal<Record<string, unknown> & _sinequa_atomic_angular.CJson & {
|
|
819
|
+
filters?: _sinequa_atomic_angular.CAggregation[];
|
|
820
|
+
autocomplete?: _sinequa_atomic_angular.Autocomplete;
|
|
821
|
+
tabs?: Record<string, {
|
|
822
|
+
filters: string[];
|
|
823
|
+
overviews?: Record<string, {
|
|
824
|
+
minRelevance: number;
|
|
825
|
+
}>;
|
|
826
|
+
}>;
|
|
827
|
+
sources?: _sinequa_atomic_angular.CSources;
|
|
828
|
+
features?: {
|
|
829
|
+
[key: string]: boolean | {
|
|
830
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
831
|
+
} | undefined;
|
|
832
|
+
allowChangePassword?: boolean;
|
|
833
|
+
editablepartition?: boolean;
|
|
834
|
+
advancedSearch?: boolean;
|
|
835
|
+
allowChatDrawer?: boolean;
|
|
836
|
+
filterLinkChildren?: boolean;
|
|
837
|
+
expandPreview?: boolean;
|
|
838
|
+
quickFilter?: boolean;
|
|
839
|
+
showAggregationItemCount?: boolean;
|
|
840
|
+
assistant?: {
|
|
841
|
+
usePrefixName?: boolean;
|
|
842
|
+
};
|
|
843
|
+
filters?: {
|
|
844
|
+
homepage?: boolean;
|
|
845
|
+
};
|
|
846
|
+
userProfile?: {
|
|
847
|
+
enabled?: boolean;
|
|
848
|
+
data?: string[];
|
|
849
|
+
customData?: string[];
|
|
850
|
+
};
|
|
851
|
+
previewMultiConversion?: boolean;
|
|
852
|
+
persistFiltersAcrossTabs?: boolean;
|
|
853
|
+
};
|
|
854
|
+
allowAdvancedFilters?: boolean;
|
|
855
|
+
general?: {
|
|
856
|
+
name?: string;
|
|
857
|
+
logo?: {
|
|
858
|
+
alt?: string;
|
|
859
|
+
light?: {
|
|
860
|
+
small?: string;
|
|
861
|
+
large?: string;
|
|
862
|
+
sidebar?: string;
|
|
863
|
+
};
|
|
864
|
+
dark?: {
|
|
865
|
+
small?: string;
|
|
866
|
+
large?: string;
|
|
867
|
+
sidebar?: string;
|
|
868
|
+
};
|
|
869
|
+
};
|
|
870
|
+
features?: {
|
|
871
|
+
[key: string]: boolean | {
|
|
872
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
873
|
+
} | undefined;
|
|
874
|
+
allowChangePassword?: boolean;
|
|
875
|
+
editablepartition?: boolean;
|
|
876
|
+
advancedSearch?: boolean;
|
|
877
|
+
allowChatDrawer?: boolean;
|
|
878
|
+
filterLinkChildren?: boolean;
|
|
879
|
+
expandPreview?: boolean;
|
|
880
|
+
quickFilter?: boolean;
|
|
881
|
+
showAggregationItemCount?: boolean;
|
|
882
|
+
assistant?: {
|
|
883
|
+
usePrefixName?: boolean;
|
|
884
|
+
};
|
|
885
|
+
filters?: {
|
|
886
|
+
homepage?: boolean;
|
|
887
|
+
};
|
|
888
|
+
userProfile?: {
|
|
889
|
+
enabled?: boolean;
|
|
890
|
+
data?: string[];
|
|
891
|
+
customData?: string[];
|
|
892
|
+
};
|
|
893
|
+
previewMultiConversion?: boolean;
|
|
894
|
+
persistFiltersAcrossTabs?: boolean;
|
|
895
|
+
};
|
|
896
|
+
converters?: _sinequa_atomic_angular.CConverter[];
|
|
897
|
+
};
|
|
898
|
+
documentsUploadSettings?: {
|
|
899
|
+
enabled?: boolean;
|
|
900
|
+
};
|
|
901
|
+
}>;
|
|
902
|
+
customJSONs: _angular_core.Signal<{
|
|
903
|
+
name: string;
|
|
904
|
+
data: Record<string, unknown>;
|
|
905
|
+
}[] & _sinequa_atomic_angular.SideCJson[]>;
|
|
906
|
+
apiVersion: _angular_core.Signal<string>;
|
|
907
|
+
workspaceApp: _angular_core.Signal<string>;
|
|
908
|
+
defaultQueryName: _angular_core.Signal<string>;
|
|
909
|
+
auditEnabled?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
910
|
+
dataSets?: _angular_core.Signal<string | undefined> | undefined;
|
|
911
|
+
revision?: _angular_core.Signal<number | undefined> | undefined;
|
|
912
|
+
runnableModels?: _angular_core.Signal<string | undefined> | undefined;
|
|
913
|
+
authorizationLevel?: _angular_core.Signal<string | undefined> | undefined;
|
|
914
|
+
columnMap?: _angular_core.Signal<Record<string, _sinequa_atomic.CCColumn> | undefined> | undefined;
|
|
915
|
+
customizationJson: _angular_core.Signal<_sinequa_atomic_angular.CJsonMint>;
|
|
916
|
+
sources: _angular_core.Signal<_sinequa_atomic_angular.CSources>;
|
|
917
|
+
filters: _angular_core.Signal<_sinequa_atomic_angular.CFilter[]>;
|
|
918
|
+
general: _angular_core.Signal<{
|
|
919
|
+
name?: string;
|
|
920
|
+
logo?: {
|
|
921
|
+
alt?: string;
|
|
922
|
+
light?: {
|
|
923
|
+
small?: string;
|
|
924
|
+
large?: string;
|
|
925
|
+
sidebar?: string;
|
|
926
|
+
};
|
|
927
|
+
dark?: {
|
|
928
|
+
small?: string;
|
|
929
|
+
large?: string;
|
|
930
|
+
sidebar?: string;
|
|
931
|
+
};
|
|
932
|
+
};
|
|
933
|
+
features?: {
|
|
934
|
+
[key: string]: boolean | {
|
|
935
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
936
|
+
} | undefined;
|
|
937
|
+
allowChangePassword?: boolean;
|
|
938
|
+
editablepartition?: boolean;
|
|
939
|
+
advancedSearch?: boolean;
|
|
940
|
+
allowChatDrawer?: boolean;
|
|
941
|
+
filterLinkChildren?: boolean;
|
|
942
|
+
expandPreview?: boolean;
|
|
943
|
+
quickFilter?: boolean;
|
|
944
|
+
showAggregationItemCount?: boolean;
|
|
945
|
+
assistant?: {
|
|
946
|
+
usePrefixName?: boolean;
|
|
947
|
+
};
|
|
948
|
+
filters?: {
|
|
949
|
+
homepage?: boolean;
|
|
950
|
+
};
|
|
951
|
+
userProfile?: {
|
|
952
|
+
enabled?: boolean;
|
|
953
|
+
data?: string[];
|
|
954
|
+
customData?: string[];
|
|
955
|
+
};
|
|
956
|
+
previewMultiConversion?: boolean;
|
|
957
|
+
persistFiltersAcrossTabs?: boolean;
|
|
958
|
+
};
|
|
959
|
+
converters?: _sinequa_atomic_angular.CConverter[];
|
|
960
|
+
} | undefined>;
|
|
961
|
+
assistants: _angular_core.Signal<{
|
|
962
|
+
[x: string]: _sinequa_atomic_angular.AssistantDetails;
|
|
963
|
+
}>;
|
|
964
|
+
agents: _angular_core.Signal<{
|
|
965
|
+
[x: string]: {
|
|
966
|
+
defaultAgent: string;
|
|
967
|
+
};
|
|
968
|
+
}>;
|
|
969
|
+
initialize: () => Promise<void>;
|
|
970
|
+
initializeWithAppName: (appName: string) => Promise<void>;
|
|
971
|
+
update: (app: Partial<_sinequa_atomic_angular.CCAppState>) => void;
|
|
972
|
+
getWebServiceByType: (type: _sinequa_atomic.CCWebService["webServiceType"]) => _sinequa_atomic.CCWebService | undefined;
|
|
973
|
+
getLabels: () => {
|
|
974
|
+
private: string;
|
|
975
|
+
public: string;
|
|
976
|
+
};
|
|
977
|
+
getQueryByName: (name: string) => _sinequa_atomic.CCQuery | undefined;
|
|
978
|
+
getQueryByIndex: (index: number) => _sinequa_atomic.CCQuery | undefined;
|
|
979
|
+
getDefaultQuery: () => _sinequa_atomic.CCQuery | undefined;
|
|
980
|
+
allowEmptySearch: (queryName: string) => boolean;
|
|
981
|
+
enableFieldedSearch: (queryName: string) => boolean;
|
|
982
|
+
allowLabels: () => boolean;
|
|
983
|
+
getColumnAlias: (column: string) => string;
|
|
984
|
+
getColumn: (columnOrAlias: string) => _sinequa_atomic.CCColumn | undefined;
|
|
985
|
+
isDateColumn: (column: string) => boolean;
|
|
986
|
+
isTabSearch: (queryName: string) => boolean;
|
|
987
|
+
getAggregationCount: (queryName: string | undefined, aggregationName: string) => number;
|
|
988
|
+
getAuthorizedFilters: () => _sinequa_atomic.Aggregation[];
|
|
989
|
+
getAuthorized: (filters: Pick<_sinequa_atomic_angular.CFilter, "column" | "name">[]) => _sinequa_atomic.Aggregation[];
|
|
990
|
+
getNamedCustomizationJson: (name: string) => unknown | undefined;
|
|
991
|
+
getAggregationIcon: (column: string) => string | undefined;
|
|
992
|
+
getAggregationItemsCustomization: (column: string) => _sinequa_atomic_angular.CFilterItem[] | undefined;
|
|
993
|
+
getAggregationCustomization: (aggColumn: string, aggName?: string) => _sinequa_atomic_angular.CFilter | undefined;
|
|
994
|
+
isAssistantAllowed: (assistantName: string) => boolean;
|
|
995
|
+
isAgentAllowed: (agentName: string) => boolean;
|
|
996
|
+
} & _ngrx_signals.StateSource<{
|
|
997
|
+
name: string;
|
|
998
|
+
description?: string | undefined;
|
|
999
|
+
versionId: string;
|
|
1000
|
+
queries: Record<string, _sinequa_atomic.CCQuery>;
|
|
1001
|
+
rfms: Record<string, _sinequa_atomic.CCRFM>;
|
|
1002
|
+
indexes: {
|
|
1003
|
+
_: _sinequa_atomic.CCIndex;
|
|
1004
|
+
} & Record<string, _sinequa_atomic.CCIndex>;
|
|
1005
|
+
lists: Record<string, _sinequa_atomic.CCList>;
|
|
1006
|
+
webServices: Record<string, _sinequa_atomic.CCWebService>;
|
|
1007
|
+
queryNames: string;
|
|
1008
|
+
labels: string;
|
|
1009
|
+
preview: string;
|
|
1010
|
+
autocomplete: string;
|
|
1011
|
+
sponsoredLinks: string;
|
|
1012
|
+
queryExport: string;
|
|
1013
|
+
queryRssEnabled: boolean;
|
|
1014
|
+
data: Record<string, unknown> & _sinequa_atomic_angular.CJson & {
|
|
1015
|
+
filters?: _sinequa_atomic_angular.CAggregation[];
|
|
1016
|
+
autocomplete?: _sinequa_atomic_angular.Autocomplete;
|
|
1017
|
+
tabs?: Record<string, {
|
|
1018
|
+
filters: string[];
|
|
1019
|
+
overviews?: Record<string, {
|
|
1020
|
+
minRelevance: number;
|
|
1021
|
+
}>;
|
|
1022
|
+
}>;
|
|
1023
|
+
sources?: _sinequa_atomic_angular.CSources;
|
|
1024
|
+
features?: {
|
|
1025
|
+
[key: string]: boolean | {
|
|
1026
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
1027
|
+
} | undefined;
|
|
1028
|
+
allowChangePassword?: boolean;
|
|
1029
|
+
editablepartition?: boolean;
|
|
1030
|
+
advancedSearch?: boolean;
|
|
1031
|
+
allowChatDrawer?: boolean;
|
|
1032
|
+
filterLinkChildren?: boolean;
|
|
1033
|
+
expandPreview?: boolean;
|
|
1034
|
+
quickFilter?: boolean;
|
|
1035
|
+
showAggregationItemCount?: boolean;
|
|
1036
|
+
assistant?: {
|
|
1037
|
+
usePrefixName?: boolean;
|
|
1038
|
+
};
|
|
1039
|
+
filters?: {
|
|
1040
|
+
homepage?: boolean;
|
|
1041
|
+
};
|
|
1042
|
+
userProfile?: {
|
|
1043
|
+
enabled?: boolean;
|
|
1044
|
+
data?: string[];
|
|
1045
|
+
customData?: string[];
|
|
1046
|
+
};
|
|
1047
|
+
previewMultiConversion?: boolean;
|
|
1048
|
+
persistFiltersAcrossTabs?: boolean;
|
|
1049
|
+
};
|
|
1050
|
+
allowAdvancedFilters?: boolean;
|
|
1051
|
+
general?: {
|
|
1052
|
+
name?: string;
|
|
1053
|
+
logo?: {
|
|
1054
|
+
alt?: string;
|
|
1055
|
+
light?: {
|
|
1056
|
+
small?: string;
|
|
1057
|
+
large?: string;
|
|
1058
|
+
sidebar?: string;
|
|
1059
|
+
};
|
|
1060
|
+
dark?: {
|
|
1061
|
+
small?: string;
|
|
1062
|
+
large?: string;
|
|
1063
|
+
sidebar?: string;
|
|
1064
|
+
};
|
|
1065
|
+
};
|
|
1066
|
+
features?: {
|
|
1067
|
+
[key: string]: boolean | {
|
|
1068
|
+
[key: string]: string | boolean | string[] | undefined;
|
|
1069
|
+
} | undefined;
|
|
1070
|
+
allowChangePassword?: boolean;
|
|
1071
|
+
editablepartition?: boolean;
|
|
1072
|
+
advancedSearch?: boolean;
|
|
1073
|
+
allowChatDrawer?: boolean;
|
|
1074
|
+
filterLinkChildren?: boolean;
|
|
1075
|
+
expandPreview?: boolean;
|
|
1076
|
+
quickFilter?: boolean;
|
|
1077
|
+
showAggregationItemCount?: boolean;
|
|
1078
|
+
assistant?: {
|
|
1079
|
+
usePrefixName?: boolean;
|
|
1080
|
+
};
|
|
1081
|
+
filters?: {
|
|
1082
|
+
homepage?: boolean;
|
|
1083
|
+
};
|
|
1084
|
+
userProfile?: {
|
|
1085
|
+
enabled?: boolean;
|
|
1086
|
+
data?: string[];
|
|
1087
|
+
customData?: string[];
|
|
1088
|
+
};
|
|
1089
|
+
previewMultiConversion?: boolean;
|
|
1090
|
+
persistFiltersAcrossTabs?: boolean;
|
|
1091
|
+
};
|
|
1092
|
+
converters?: _sinequa_atomic_angular.CConverter[];
|
|
1093
|
+
};
|
|
1094
|
+
documentsUploadSettings?: {
|
|
1095
|
+
enabled?: boolean;
|
|
1096
|
+
};
|
|
1097
|
+
};
|
|
1098
|
+
customJSONs: {
|
|
1099
|
+
name: string;
|
|
1100
|
+
data: Record<string, unknown>;
|
|
1101
|
+
}[] & _sinequa_atomic_angular.SideCJson[];
|
|
1102
|
+
apiVersion: string;
|
|
1103
|
+
workspaceApp: string;
|
|
1104
|
+
defaultQueryName: string;
|
|
1105
|
+
auditEnabled?: boolean | undefined;
|
|
1106
|
+
dataSets?: string | undefined;
|
|
1107
|
+
revision?: number | undefined;
|
|
1108
|
+
runnableModels?: string | undefined;
|
|
1109
|
+
authorizationLevel?: string | undefined;
|
|
1110
|
+
columnMap?: Record<string, _sinequa_atomic.CCColumn> | undefined;
|
|
1111
|
+
}>;
|
|
777
1112
|
showCount: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
778
1113
|
/**
|
|
779
1114
|
* When enabled (default), tab labels are never clipped: tabs that do not fit
|
|
@@ -801,6 +1136,9 @@ declare class NavbarTabsComponent {
|
|
|
801
1136
|
* - text-only tab: enough room for a few characters and the ellipsis
|
|
802
1137
|
*/
|
|
803
1138
|
protected tabMinWidth(hasIcon: boolean): string | undefined;
|
|
1139
|
+
readonly persistFiltersAcrossTabs: _angular_core.Signal<boolean>;
|
|
1140
|
+
getQueryParamsHandling(): 'merge' | 'replace';
|
|
1141
|
+
getQueryParams(tab: NavTab): Params | null | undefined;
|
|
804
1142
|
protected changeTab(): void;
|
|
805
1143
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NavbarTabsComponent, never>;
|
|
806
1144
|
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>;
|
|
@@ -1020,6 +1358,7 @@ type CFeatures = {
|
|
|
1020
1358
|
customData?: string[];
|
|
1021
1359
|
};
|
|
1022
1360
|
previewMultiConversion?: boolean;
|
|
1361
|
+
persistFiltersAcrossTabs?: boolean;
|
|
1023
1362
|
[key: string]: boolean | {
|
|
1024
1363
|
[key: string]: boolean | string | string[] | undefined;
|
|
1025
1364
|
} | undefined;
|
|
@@ -1211,6 +1550,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
1211
1550
|
customData?: string[];
|
|
1212
1551
|
};
|
|
1213
1552
|
previewMultiConversion?: boolean;
|
|
1553
|
+
persistFiltersAcrossTabs?: boolean;
|
|
1214
1554
|
};
|
|
1215
1555
|
allowAdvancedFilters?: boolean;
|
|
1216
1556
|
general?: {
|
|
@@ -1252,6 +1592,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
1252
1592
|
customData?: string[];
|
|
1253
1593
|
};
|
|
1254
1594
|
previewMultiConversion?: boolean;
|
|
1595
|
+
persistFiltersAcrossTabs?: boolean;
|
|
1255
1596
|
};
|
|
1256
1597
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
1257
1598
|
};
|
|
@@ -1314,6 +1655,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
1314
1655
|
customData?: string[];
|
|
1315
1656
|
};
|
|
1316
1657
|
previewMultiConversion?: boolean;
|
|
1658
|
+
persistFiltersAcrossTabs?: boolean;
|
|
1317
1659
|
};
|
|
1318
1660
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
1319
1661
|
} | undefined>;
|
|
@@ -1398,6 +1740,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
1398
1740
|
customData?: string[];
|
|
1399
1741
|
};
|
|
1400
1742
|
previewMultiConversion?: boolean;
|
|
1743
|
+
persistFiltersAcrossTabs?: boolean;
|
|
1401
1744
|
};
|
|
1402
1745
|
allowAdvancedFilters?: boolean;
|
|
1403
1746
|
general?: {
|
|
@@ -1439,6 +1782,7 @@ declare const AppStore: _angular_core.Type<{
|
|
|
1439
1782
|
customData?: string[];
|
|
1440
1783
|
};
|
|
1441
1784
|
previewMultiConversion?: boolean;
|
|
1785
|
+
persistFiltersAcrossTabs?: boolean;
|
|
1442
1786
|
};
|
|
1443
1787
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
1444
1788
|
};
|
|
@@ -1516,6 +1860,7 @@ declare function withAppFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signa
|
|
|
1516
1860
|
customData?: string[];
|
|
1517
1861
|
};
|
|
1518
1862
|
previewMultiConversion?: boolean;
|
|
1863
|
+
persistFiltersAcrossTabs?: boolean;
|
|
1519
1864
|
};
|
|
1520
1865
|
allowAdvancedFilters?: boolean;
|
|
1521
1866
|
general?: {
|
|
@@ -1557,6 +1902,7 @@ declare function withAppFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signa
|
|
|
1557
1902
|
customData?: string[];
|
|
1558
1903
|
};
|
|
1559
1904
|
previewMultiConversion?: boolean;
|
|
1905
|
+
persistFiltersAcrossTabs?: boolean;
|
|
1560
1906
|
};
|
|
1561
1907
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
1562
1908
|
};
|
|
@@ -1621,6 +1967,7 @@ declare function withAppFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signa
|
|
|
1621
1967
|
customData?: string[];
|
|
1622
1968
|
};
|
|
1623
1969
|
previewMultiConversion?: boolean;
|
|
1970
|
+
persistFiltersAcrossTabs?: boolean;
|
|
1624
1971
|
};
|
|
1625
1972
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
1626
1973
|
} | undefined>;
|
|
@@ -1761,7 +2108,7 @@ declare const PrincipalStore: _angular_core.Type<{
|
|
|
1761
2108
|
param9: _angular_core.Signal<string>;
|
|
1762
2109
|
param10: _angular_core.Signal<string>;
|
|
1763
2110
|
userOverrideActive: _angular_core.Signal<boolean>;
|
|
1764
|
-
state: _angular_core.Signal<"
|
|
2111
|
+
state: _angular_core.Signal<"error" | "loading" | "loaded" | "initial">;
|
|
1765
2112
|
allowUserOverride: _angular_core.Signal<boolean>;
|
|
1766
2113
|
isOverridingUser: _angular_core.Signal<boolean>;
|
|
1767
2114
|
initials: _angular_core.Signal<string>;
|
|
@@ -1815,8 +2162,8 @@ type QueryParams = {
|
|
|
1815
2162
|
};
|
|
1816
2163
|
declare const QueryParamsStore: _angular_core.Type<{
|
|
1817
2164
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
1818
|
-
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
1819
2165
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
2166
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
1820
2167
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
1821
2168
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
1822
2169
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
@@ -1862,8 +2209,8 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
1862
2209
|
getQuery: () => _sinequa_atomic.Query;
|
|
1863
2210
|
} & _ngrx_signals.StateSource<{
|
|
1864
2211
|
name?: string | undefined;
|
|
1865
|
-
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
1866
2212
|
text?: string | undefined;
|
|
2213
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
1867
2214
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
1868
2215
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
1869
2216
|
page?: number | undefined;
|
|
@@ -1895,8 +2242,8 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
1895
2242
|
declare function withQueryParamsFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signals.EmptyFeatureResult, {
|
|
1896
2243
|
state: {
|
|
1897
2244
|
name?: string | undefined;
|
|
1898
|
-
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
1899
2245
|
text?: string | undefined;
|
|
2246
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
1900
2247
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
1901
2248
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
1902
2249
|
page?: number | undefined;
|
|
@@ -2378,6 +2725,7 @@ declare class AggregationsService {
|
|
|
2378
2725
|
customData?: string[];
|
|
2379
2726
|
};
|
|
2380
2727
|
previewMultiConversion?: boolean;
|
|
2728
|
+
persistFiltersAcrossTabs?: boolean;
|
|
2381
2729
|
};
|
|
2382
2730
|
allowAdvancedFilters?: boolean;
|
|
2383
2731
|
general?: {
|
|
@@ -2419,6 +2767,7 @@ declare class AggregationsService {
|
|
|
2419
2767
|
customData?: string[];
|
|
2420
2768
|
};
|
|
2421
2769
|
previewMultiConversion?: boolean;
|
|
2770
|
+
persistFiltersAcrossTabs?: boolean;
|
|
2422
2771
|
};
|
|
2423
2772
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
2424
2773
|
};
|
|
@@ -2481,6 +2830,7 @@ declare class AggregationsService {
|
|
|
2481
2830
|
customData?: string[];
|
|
2482
2831
|
};
|
|
2483
2832
|
previewMultiConversion?: boolean;
|
|
2833
|
+
persistFiltersAcrossTabs?: boolean;
|
|
2484
2834
|
};
|
|
2485
2835
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
2486
2836
|
} | undefined>;
|
|
@@ -2571,6 +2921,7 @@ declare class AggregationsService {
|
|
|
2571
2921
|
customData?: string[];
|
|
2572
2922
|
};
|
|
2573
2923
|
previewMultiConversion?: boolean;
|
|
2924
|
+
persistFiltersAcrossTabs?: boolean;
|
|
2574
2925
|
};
|
|
2575
2926
|
allowAdvancedFilters?: boolean;
|
|
2576
2927
|
general?: {
|
|
@@ -2612,6 +2963,7 @@ declare class AggregationsService {
|
|
|
2612
2963
|
customData?: string[];
|
|
2613
2964
|
};
|
|
2614
2965
|
previewMultiConversion?: boolean;
|
|
2966
|
+
persistFiltersAcrossTabs?: boolean;
|
|
2615
2967
|
};
|
|
2616
2968
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
2617
2969
|
};
|
|
@@ -2644,8 +2996,8 @@ declare class AggregationsService {
|
|
|
2644
2996
|
}>;
|
|
2645
2997
|
queryParamsStore: {
|
|
2646
2998
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
2647
|
-
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
2648
2999
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
3000
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
2649
3001
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
2650
3002
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
2651
3003
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
@@ -2699,8 +3051,8 @@ declare class AggregationsService {
|
|
|
2699
3051
|
getQuery: () => Query;
|
|
2700
3052
|
} & _ngrx_signals.StateSource<{
|
|
2701
3053
|
name?: string | undefined;
|
|
2702
|
-
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
2703
3054
|
text?: string | undefined;
|
|
3055
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
2704
3056
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
2705
3057
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
2706
3058
|
page?: number | undefined;
|
|
@@ -2811,8 +3163,9 @@ declare class AppService {
|
|
|
2811
3163
|
*
|
|
2812
3164
|
* @remarks
|
|
2813
3165
|
* This method constructs an HTTP GET request to fetch the application configuration
|
|
2814
|
-
* using the `app` parameter from the global configuration. If the request fails,
|
|
2815
|
-
*
|
|
3166
|
+
* using the `app` parameter from the global configuration. If the request fails, it logs the
|
|
3167
|
+
* error and re-throws a normalized `Error` carrying the server's `errorMessage` when available
|
|
3168
|
+
* (e.g. "app not found: '...'"), so callers can surface the reason on the error page.
|
|
2816
3169
|
*
|
|
2817
3170
|
* @example
|
|
2818
3171
|
* ```typescript
|
|
@@ -2914,7 +3267,7 @@ declare class ApplicationService {
|
|
|
2914
3267
|
param9: _angular_core.Signal<string>;
|
|
2915
3268
|
param10: _angular_core.Signal<string>;
|
|
2916
3269
|
userOverrideActive: _angular_core.Signal<boolean>;
|
|
2917
|
-
state: _angular_core.Signal<"
|
|
3270
|
+
state: _angular_core.Signal<"error" | "loading" | "loaded" | "initial">;
|
|
2918
3271
|
allowUserOverride: _angular_core.Signal<boolean>;
|
|
2919
3272
|
isOverridingUser: _angular_core.Signal<boolean>;
|
|
2920
3273
|
initials: _angular_core.Signal<string>;
|
|
@@ -3001,6 +3354,7 @@ declare class ApplicationService {
|
|
|
3001
3354
|
customData?: string[];
|
|
3002
3355
|
};
|
|
3003
3356
|
previewMultiConversion?: boolean;
|
|
3357
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3004
3358
|
};
|
|
3005
3359
|
allowAdvancedFilters?: boolean;
|
|
3006
3360
|
general?: {
|
|
@@ -3042,6 +3396,7 @@ declare class ApplicationService {
|
|
|
3042
3396
|
customData?: string[];
|
|
3043
3397
|
};
|
|
3044
3398
|
previewMultiConversion?: boolean;
|
|
3399
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3045
3400
|
};
|
|
3046
3401
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
3047
3402
|
};
|
|
@@ -3104,6 +3459,7 @@ declare class ApplicationService {
|
|
|
3104
3459
|
customData?: string[];
|
|
3105
3460
|
};
|
|
3106
3461
|
previewMultiConversion?: boolean;
|
|
3462
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3107
3463
|
};
|
|
3108
3464
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
3109
3465
|
} | undefined>;
|
|
@@ -3194,6 +3550,7 @@ declare class ApplicationService {
|
|
|
3194
3550
|
customData?: string[];
|
|
3195
3551
|
};
|
|
3196
3552
|
previewMultiConversion?: boolean;
|
|
3553
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3197
3554
|
};
|
|
3198
3555
|
allowAdvancedFilters?: boolean;
|
|
3199
3556
|
general?: {
|
|
@@ -3235,6 +3592,7 @@ declare class ApplicationService {
|
|
|
3235
3592
|
customData?: string[];
|
|
3236
3593
|
};
|
|
3237
3594
|
previewMultiConversion?: boolean;
|
|
3595
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3238
3596
|
};
|
|
3239
3597
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
3240
3598
|
};
|
|
@@ -3390,6 +3748,7 @@ declare class AuditService {
|
|
|
3390
3748
|
customData?: string[];
|
|
3391
3749
|
};
|
|
3392
3750
|
previewMultiConversion?: boolean;
|
|
3751
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3393
3752
|
};
|
|
3394
3753
|
allowAdvancedFilters?: boolean;
|
|
3395
3754
|
general?: {
|
|
@@ -3431,6 +3790,7 @@ declare class AuditService {
|
|
|
3431
3790
|
customData?: string[];
|
|
3432
3791
|
};
|
|
3433
3792
|
previewMultiConversion?: boolean;
|
|
3793
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3434
3794
|
};
|
|
3435
3795
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
3436
3796
|
};
|
|
@@ -3493,6 +3853,7 @@ declare class AuditService {
|
|
|
3493
3853
|
customData?: string[];
|
|
3494
3854
|
};
|
|
3495
3855
|
previewMultiConversion?: boolean;
|
|
3856
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3496
3857
|
};
|
|
3497
3858
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
3498
3859
|
} | undefined>;
|
|
@@ -3583,6 +3944,7 @@ declare class AuditService {
|
|
|
3583
3944
|
customData?: string[];
|
|
3584
3945
|
};
|
|
3585
3946
|
previewMultiConversion?: boolean;
|
|
3947
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3586
3948
|
};
|
|
3587
3949
|
allowAdvancedFilters?: boolean;
|
|
3588
3950
|
general?: {
|
|
@@ -3624,6 +3986,7 @@ declare class AuditService {
|
|
|
3624
3986
|
customData?: string[];
|
|
3625
3987
|
};
|
|
3626
3988
|
previewMultiConversion?: boolean;
|
|
3989
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3627
3990
|
};
|
|
3628
3991
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
3629
3992
|
};
|
|
@@ -3790,6 +4153,7 @@ declare class AutocompleteService {
|
|
|
3790
4153
|
customData?: string[];
|
|
3791
4154
|
};
|
|
3792
4155
|
previewMultiConversion?: boolean;
|
|
4156
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3793
4157
|
};
|
|
3794
4158
|
allowAdvancedFilters?: boolean;
|
|
3795
4159
|
general?: {
|
|
@@ -3831,6 +4195,7 @@ declare class AutocompleteService {
|
|
|
3831
4195
|
customData?: string[];
|
|
3832
4196
|
};
|
|
3833
4197
|
previewMultiConversion?: boolean;
|
|
4198
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3834
4199
|
};
|
|
3835
4200
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
3836
4201
|
};
|
|
@@ -3893,6 +4258,7 @@ declare class AutocompleteService {
|
|
|
3893
4258
|
customData?: string[];
|
|
3894
4259
|
};
|
|
3895
4260
|
previewMultiConversion?: boolean;
|
|
4261
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3896
4262
|
};
|
|
3897
4263
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
3898
4264
|
} | undefined>;
|
|
@@ -3983,6 +4349,7 @@ declare class AutocompleteService {
|
|
|
3983
4349
|
customData?: string[];
|
|
3984
4350
|
};
|
|
3985
4351
|
previewMultiConversion?: boolean;
|
|
4352
|
+
persistFiltersAcrossTabs?: boolean;
|
|
3986
4353
|
};
|
|
3987
4354
|
allowAdvancedFilters?: boolean;
|
|
3988
4355
|
general?: {
|
|
@@ -4024,6 +4391,7 @@ declare class AutocompleteService {
|
|
|
4024
4391
|
customData?: string[];
|
|
4025
4392
|
};
|
|
4026
4393
|
previewMultiConversion?: boolean;
|
|
4394
|
+
persistFiltersAcrossTabs?: boolean;
|
|
4027
4395
|
};
|
|
4028
4396
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
4029
4397
|
};
|
|
@@ -4267,29 +4635,68 @@ type Theme = (typeof THEMES)[number];
|
|
|
4267
4635
|
declare function withThemes(app: ApplicationRef, themes: Theme[]): ApplicationRef;
|
|
4268
4636
|
|
|
4269
4637
|
/**
|
|
4270
|
-
* Signs
|
|
4638
|
+
* Signs the user in according to the resolved {@link globalConfig.authMode}.
|
|
4639
|
+
*
|
|
4640
|
+
* The mode is expected to be resolved beforehand (by `initializeAppConfig`, awaited in
|
|
4641
|
+
* `bootstrapApp`). This function clears any existing session, then:
|
|
4642
|
+
* - `credentials` → redirect to the login form;
|
|
4643
|
+
* - `sso` → reload the page so the browser/proxy performs the handshake;
|
|
4644
|
+
* - `oauth` / `saml` → delegate to `login()`, which redirects to the provider;
|
|
4645
|
+
* - `bearer` → delegate to `login()`;
|
|
4646
|
+
* - `unknown` → `login()` tries SSO silently then resolves to credentials; on failure the login
|
|
4647
|
+
* form is shown.
|
|
4271
4648
|
*
|
|
4272
|
-
*
|
|
4273
|
-
* global configuration to determine whether to use credentials-based authentication or Single Sign-On (SSO). If
|
|
4274
|
-
* credentials are used, it redirects the user to the login page. If SSO is enabled, it reloads the page to trigger
|
|
4275
|
-
* the SSO login process. If neither method is specified, it attempts a standard login and handles any errors that
|
|
4276
|
-
* may occur during the process.
|
|
4277
|
-
* @returns A promise resolving to a boolean indicating the success of the sign-in operation.
|
|
4649
|
+
* @returns A promise resolving to a boolean indicating whether the user is authenticated.
|
|
4278
4650
|
*/
|
|
4279
4651
|
declare function signIn(): Promise<boolean>;
|
|
4280
4652
|
|
|
4281
4653
|
/**
|
|
4282
4654
|
* Bootstraps the application by ensuring the user is authenticated and initializing the application.
|
|
4283
4655
|
*
|
|
4284
|
-
* This function first attempts to sign in the user
|
|
4285
|
-
* it
|
|
4286
|
-
*
|
|
4656
|
+
* This function first attempts to sign in the user via `signIn()`. If authentication is successful,
|
|
4657
|
+
* it initializes the application (stores and, optionally, dynamic routes) through `ApplicationService`
|
|
4658
|
+
* and waits for the initialization to complete before resolving. Any errors during authentication or
|
|
4659
|
+
* initialization are logged to the console, but the returned promise never rejects.
|
|
4287
4660
|
*
|
|
4288
|
-
*
|
|
4289
|
-
*
|
|
4290
|
-
*
|
|
4661
|
+
* Note: this function relies on Angular's injection context, so it must be called within one
|
|
4662
|
+
* (e.g. from `provideAppInitializer`).
|
|
4663
|
+
*
|
|
4664
|
+
* @param options - Configuration options for the bootstrap process.
|
|
4665
|
+
* @param options.createRoutes - Whether to create routes during initialization. Defaults to `true`.
|
|
4666
|
+
* @returns A promise that resolves to `true` when the application has been fully initialized,
|
|
4667
|
+
* or `false` when the user is not authenticated or an error occurred.
|
|
4291
4668
|
*/
|
|
4292
|
-
declare function
|
|
4669
|
+
declare function bootstrapApp({ createRoutes }?: {
|
|
4670
|
+
createRoutes?: boolean | undefined;
|
|
4671
|
+
}): Promise<boolean>;
|
|
4672
|
+
/**
|
|
4673
|
+
* Bootstraps the application by ensuring the user is authenticated and initializing the application.
|
|
4674
|
+
*
|
|
4675
|
+
* @deprecated Use {@link bootstrapApp} instead, and let it inject `ApplicationService` itself.
|
|
4676
|
+
*
|
|
4677
|
+
* Migration — in your `app.config.ts`, replace:
|
|
4678
|
+
* ```ts
|
|
4679
|
+
* // ❌ Deprecated: eagerly injecting ApplicationService in the factory constructs it (and its
|
|
4680
|
+
* // dependent stores/services) BEFORE bootstrapApp resolves the config, so services that build
|
|
4681
|
+
* // their API URL from `globalConfig.backendUrl` capture `undefined` (→ `/undefined/api/v1/...`).
|
|
4682
|
+
* provideAppInitializer(() => withBootstrapApp(inject(ApplicationService), { createRoutes: true })),
|
|
4683
|
+
* ```
|
|
4684
|
+
* with:
|
|
4685
|
+
* ```ts
|
|
4686
|
+
* // ✅ bootstrapApp injects ApplicationService internally, AFTER initializeAppConfig() has set
|
|
4687
|
+
* // `backendUrl` and resolved the auth mode.
|
|
4688
|
+
* provideAppInitializer(() => bootstrapApp({ createRoutes: true })),
|
|
4689
|
+
* ```
|
|
4690
|
+
* (Remove the now-unused `inject` / `ApplicationService` imports.)
|
|
4691
|
+
*
|
|
4692
|
+
* @param applicationService - Ignored; kept for backward compatibility. `ApplicationService` is
|
|
4693
|
+
* provided in root and injected internally by {@link bootstrapApp}, so the instance is the same.
|
|
4694
|
+
* Passing `inject(ApplicationService)` here is discouraged — see the migration note above.
|
|
4695
|
+
* @param options - Configuration options for the bootstrap process.
|
|
4696
|
+
* @param options.createRoutes - Whether to create routes during initialization. Defaults to `true`.
|
|
4697
|
+
* @returns A promise that resolves when the bootstrap process is complete, regardless of success or failure.
|
|
4698
|
+
*/
|
|
4699
|
+
declare function withBootstrapApp(_applicationService: ApplicationService, { createRoutes }?: {
|
|
4293
4700
|
createRoutes?: boolean | undefined;
|
|
4294
4701
|
}): Promise<void>;
|
|
4295
4702
|
|
|
@@ -4360,8 +4767,8 @@ declare class PreviewService {
|
|
|
4360
4767
|
}>;
|
|
4361
4768
|
protected readonly queryParamsStore: {
|
|
4362
4769
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
4363
|
-
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
4364
4770
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
4771
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
4365
4772
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
4366
4773
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
4367
4774
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
@@ -4415,8 +4822,8 @@ declare class PreviewService {
|
|
|
4415
4822
|
getQuery: () => Query;
|
|
4416
4823
|
} & _ngrx_signals.StateSource<{
|
|
4417
4824
|
name?: string | undefined;
|
|
4418
|
-
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
4419
4825
|
text?: string | undefined;
|
|
4826
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
4420
4827
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
4421
4828
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
4422
4829
|
page?: number | undefined;
|
|
@@ -4497,6 +4904,7 @@ declare class PreviewService {
|
|
|
4497
4904
|
customData?: string[];
|
|
4498
4905
|
};
|
|
4499
4906
|
previewMultiConversion?: boolean;
|
|
4907
|
+
persistFiltersAcrossTabs?: boolean;
|
|
4500
4908
|
};
|
|
4501
4909
|
allowAdvancedFilters?: boolean;
|
|
4502
4910
|
general?: {
|
|
@@ -4538,6 +4946,7 @@ declare class PreviewService {
|
|
|
4538
4946
|
customData?: string[];
|
|
4539
4947
|
};
|
|
4540
4948
|
previewMultiConversion?: boolean;
|
|
4949
|
+
persistFiltersAcrossTabs?: boolean;
|
|
4541
4950
|
};
|
|
4542
4951
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
4543
4952
|
};
|
|
@@ -4600,6 +5009,7 @@ declare class PreviewService {
|
|
|
4600
5009
|
customData?: string[];
|
|
4601
5010
|
};
|
|
4602
5011
|
previewMultiConversion?: boolean;
|
|
5012
|
+
persistFiltersAcrossTabs?: boolean;
|
|
4603
5013
|
};
|
|
4604
5014
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
4605
5015
|
} | undefined>;
|
|
@@ -4690,6 +5100,7 @@ declare class PreviewService {
|
|
|
4690
5100
|
customData?: string[];
|
|
4691
5101
|
};
|
|
4692
5102
|
previewMultiConversion?: boolean;
|
|
5103
|
+
persistFiltersAcrossTabs?: boolean;
|
|
4693
5104
|
};
|
|
4694
5105
|
allowAdvancedFilters?: boolean;
|
|
4695
5106
|
general?: {
|
|
@@ -4731,6 +5142,7 @@ declare class PreviewService {
|
|
|
4731
5142
|
customData?: string[];
|
|
4732
5143
|
};
|
|
4733
5144
|
previewMultiConversion?: boolean;
|
|
5145
|
+
persistFiltersAcrossTabs?: boolean;
|
|
4734
5146
|
};
|
|
4735
5147
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
4736
5148
|
};
|
|
@@ -4989,8 +5401,8 @@ declare class SavedSearchesService {
|
|
|
4989
5401
|
}>;
|
|
4990
5402
|
protected readonly queryParamsStore: {
|
|
4991
5403
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
4992
|
-
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
4993
5404
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5405
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
4994
5406
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
4995
5407
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
4996
5408
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
@@ -5044,8 +5456,8 @@ declare class SavedSearchesService {
|
|
|
5044
5456
|
getQuery: () => _sinequa_atomic.Query;
|
|
5045
5457
|
} & _ngrx_signals.StateSource<{
|
|
5046
5458
|
name?: string | undefined;
|
|
5047
|
-
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
5048
5459
|
text?: string | undefined;
|
|
5460
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
5049
5461
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
5050
5462
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
5051
5463
|
page?: number | undefined;
|
|
@@ -5130,8 +5542,8 @@ declare class SearchService {
|
|
|
5130
5542
|
audit?: AuditEvents;
|
|
5131
5543
|
protected readonly queryParamsStore: {
|
|
5132
5544
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
5133
|
-
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
5134
5545
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5546
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
5135
5547
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
5136
5548
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
5137
5549
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
@@ -5185,8 +5597,8 @@ declare class SearchService {
|
|
|
5185
5597
|
getQuery: () => Query;
|
|
5186
5598
|
} & _ngrx_signals.StateSource<{
|
|
5187
5599
|
name?: string | undefined;
|
|
5188
|
-
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
5189
5600
|
text?: string | undefined;
|
|
5601
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
5190
5602
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
5191
5603
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
5192
5604
|
page?: number | undefined;
|
|
@@ -5321,8 +5733,8 @@ declare class SelectionService {
|
|
|
5321
5733
|
private readonly selectionStore;
|
|
5322
5734
|
queryParamsStore: {
|
|
5323
5735
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
5324
|
-
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
5325
5736
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
5737
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
5326
5738
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
5327
5739
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
5328
5740
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
@@ -5376,8 +5788,8 @@ declare class SelectionService {
|
|
|
5376
5788
|
getQuery: () => _sinequa_atomic.Query;
|
|
5377
5789
|
} & _ngrx_signals.StateSource<{
|
|
5378
5790
|
name?: string | undefined;
|
|
5379
|
-
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
5380
5791
|
text?: string | undefined;
|
|
5792
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
5381
5793
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
5382
5794
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
5383
5795
|
page?: number | undefined;
|
|
@@ -5600,6 +6012,7 @@ declare class SortSelectorComponent {
|
|
|
5600
6012
|
customData?: string[];
|
|
5601
6013
|
};
|
|
5602
6014
|
previewMultiConversion?: boolean;
|
|
6015
|
+
persistFiltersAcrossTabs?: boolean;
|
|
5603
6016
|
};
|
|
5604
6017
|
allowAdvancedFilters?: boolean;
|
|
5605
6018
|
general?: {
|
|
@@ -5641,6 +6054,7 @@ declare class SortSelectorComponent {
|
|
|
5641
6054
|
customData?: string[];
|
|
5642
6055
|
};
|
|
5643
6056
|
previewMultiConversion?: boolean;
|
|
6057
|
+
persistFiltersAcrossTabs?: boolean;
|
|
5644
6058
|
};
|
|
5645
6059
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
5646
6060
|
};
|
|
@@ -5703,6 +6117,7 @@ declare class SortSelectorComponent {
|
|
|
5703
6117
|
customData?: string[];
|
|
5704
6118
|
};
|
|
5705
6119
|
previewMultiConversion?: boolean;
|
|
6120
|
+
persistFiltersAcrossTabs?: boolean;
|
|
5706
6121
|
};
|
|
5707
6122
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
5708
6123
|
} | undefined>;
|
|
@@ -5793,6 +6208,7 @@ declare class SortSelectorComponent {
|
|
|
5793
6208
|
customData?: string[];
|
|
5794
6209
|
};
|
|
5795
6210
|
previewMultiConversion?: boolean;
|
|
6211
|
+
persistFiltersAcrossTabs?: boolean;
|
|
5796
6212
|
};
|
|
5797
6213
|
allowAdvancedFilters?: boolean;
|
|
5798
6214
|
general?: {
|
|
@@ -5834,6 +6250,7 @@ declare class SortSelectorComponent {
|
|
|
5834
6250
|
customData?: string[];
|
|
5835
6251
|
};
|
|
5836
6252
|
previewMultiConversion?: boolean;
|
|
6253
|
+
persistFiltersAcrossTabs?: boolean;
|
|
5837
6254
|
};
|
|
5838
6255
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
5839
6256
|
};
|
|
@@ -6396,6 +6813,7 @@ declare class SponsoredResultsComponent {
|
|
|
6396
6813
|
customData?: string[];
|
|
6397
6814
|
};
|
|
6398
6815
|
previewMultiConversion?: boolean;
|
|
6816
|
+
persistFiltersAcrossTabs?: boolean;
|
|
6399
6817
|
};
|
|
6400
6818
|
allowAdvancedFilters?: boolean;
|
|
6401
6819
|
general?: {
|
|
@@ -6437,6 +6855,7 @@ declare class SponsoredResultsComponent {
|
|
|
6437
6855
|
customData?: string[];
|
|
6438
6856
|
};
|
|
6439
6857
|
previewMultiConversion?: boolean;
|
|
6858
|
+
persistFiltersAcrossTabs?: boolean;
|
|
6440
6859
|
};
|
|
6441
6860
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
6442
6861
|
};
|
|
@@ -6499,6 +6918,7 @@ declare class SponsoredResultsComponent {
|
|
|
6499
6918
|
customData?: string[];
|
|
6500
6919
|
};
|
|
6501
6920
|
previewMultiConversion?: boolean;
|
|
6921
|
+
persistFiltersAcrossTabs?: boolean;
|
|
6502
6922
|
};
|
|
6503
6923
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
6504
6924
|
} | undefined>;
|
|
@@ -6589,6 +7009,7 @@ declare class SponsoredResultsComponent {
|
|
|
6589
7009
|
customData?: string[];
|
|
6590
7010
|
};
|
|
6591
7011
|
previewMultiConversion?: boolean;
|
|
7012
|
+
persistFiltersAcrossTabs?: boolean;
|
|
6592
7013
|
};
|
|
6593
7014
|
allowAdvancedFilters?: boolean;
|
|
6594
7015
|
general?: {
|
|
@@ -6630,6 +7051,7 @@ declare class SponsoredResultsComponent {
|
|
|
6630
7051
|
customData?: string[];
|
|
6631
7052
|
};
|
|
6632
7053
|
previewMultiConversion?: boolean;
|
|
7054
|
+
persistFiltersAcrossTabs?: boolean;
|
|
6633
7055
|
};
|
|
6634
7056
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
6635
7057
|
};
|
|
@@ -6653,8 +7075,8 @@ declare class SponsoredResultsComponent {
|
|
|
6653
7075
|
}>;
|
|
6654
7076
|
queryParamStore: {
|
|
6655
7077
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
6656
|
-
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
6657
7078
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7079
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
6658
7080
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
6659
7081
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
6660
7082
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
@@ -6708,8 +7130,8 @@ declare class SponsoredResultsComponent {
|
|
|
6708
7130
|
getQuery: () => _sinequa_atomic.Query;
|
|
6709
7131
|
} & _ngrx_signals.StateSource<{
|
|
6710
7132
|
name?: string | undefined;
|
|
6711
|
-
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
6712
7133
|
text?: string | undefined;
|
|
7134
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
6713
7135
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
6714
7136
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
6715
7137
|
page?: number | undefined;
|
|
@@ -6991,8 +7413,8 @@ declare class AggregationDateComponent {
|
|
|
6991
7413
|
readonly aggregationsService: _sinequa_atomic_angular.AggregationsService;
|
|
6992
7414
|
readonly queryParamsStore: {
|
|
6993
7415
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
6994
|
-
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
6995
7416
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7417
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
6996
7418
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
6997
7419
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
6998
7420
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
@@ -7046,8 +7468,8 @@ declare class AggregationDateComponent {
|
|
|
7046
7468
|
getQuery: () => _sinequa_atomic.Query;
|
|
7047
7469
|
} & _ngrx_signals.StateSource<{
|
|
7048
7470
|
name?: string | undefined;
|
|
7049
|
-
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
7050
7471
|
text?: string | undefined;
|
|
7472
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
7051
7473
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
7052
7474
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
7053
7475
|
page?: number | undefined;
|
|
@@ -7152,8 +7574,8 @@ declare class AdvancedSearch {
|
|
|
7152
7574
|
}>;
|
|
7153
7575
|
protected readonly queryParamsStore: {
|
|
7154
7576
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
7155
|
-
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
7156
7577
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
7578
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
7157
7579
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
7158
7580
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
7159
7581
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
@@ -7207,8 +7629,8 @@ declare class AdvancedSearch {
|
|
|
7207
7629
|
getQuery: () => _sinequa_atomic.Query;
|
|
7208
7630
|
} & _ngrx_signals.StateSource<{
|
|
7209
7631
|
name?: string | undefined;
|
|
7210
|
-
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
7211
7632
|
text?: string | undefined;
|
|
7633
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
7212
7634
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
7213
7635
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
7214
7636
|
page?: number | undefined;
|
|
@@ -7303,6 +7725,7 @@ declare class ArticleEntities {
|
|
|
7303
7725
|
customData?: string[];
|
|
7304
7726
|
};
|
|
7305
7727
|
previewMultiConversion?: boolean;
|
|
7728
|
+
persistFiltersAcrossTabs?: boolean;
|
|
7306
7729
|
};
|
|
7307
7730
|
allowAdvancedFilters?: boolean;
|
|
7308
7731
|
general?: {
|
|
@@ -7344,6 +7767,7 @@ declare class ArticleEntities {
|
|
|
7344
7767
|
customData?: string[];
|
|
7345
7768
|
};
|
|
7346
7769
|
previewMultiConversion?: boolean;
|
|
7770
|
+
persistFiltersAcrossTabs?: boolean;
|
|
7347
7771
|
};
|
|
7348
7772
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
7349
7773
|
};
|
|
@@ -7406,6 +7830,7 @@ declare class ArticleEntities {
|
|
|
7406
7830
|
customData?: string[];
|
|
7407
7831
|
};
|
|
7408
7832
|
previewMultiConversion?: boolean;
|
|
7833
|
+
persistFiltersAcrossTabs?: boolean;
|
|
7409
7834
|
};
|
|
7410
7835
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
7411
7836
|
} | undefined>;
|
|
@@ -7496,6 +7921,7 @@ declare class ArticleEntities {
|
|
|
7496
7921
|
customData?: string[];
|
|
7497
7922
|
};
|
|
7498
7923
|
previewMultiConversion?: boolean;
|
|
7924
|
+
persistFiltersAcrossTabs?: boolean;
|
|
7499
7925
|
};
|
|
7500
7926
|
allowAdvancedFilters?: boolean;
|
|
7501
7927
|
general?: {
|
|
@@ -7537,6 +7963,7 @@ declare class ArticleEntities {
|
|
|
7537
7963
|
customData?: string[];
|
|
7538
7964
|
};
|
|
7539
7965
|
previewMultiConversion?: boolean;
|
|
7966
|
+
persistFiltersAcrossTabs?: boolean;
|
|
7540
7967
|
};
|
|
7541
7968
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
7542
7969
|
};
|
|
@@ -7616,8 +8043,8 @@ declare class ArticleLabels {
|
|
|
7616
8043
|
declare class ArticleSimilarDocuments {
|
|
7617
8044
|
protected readonly queryParamsStore: {
|
|
7618
8045
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
7619
|
-
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
7620
8046
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
8047
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
7621
8048
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
7622
8049
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
7623
8050
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
@@ -7671,8 +8098,8 @@ declare class ArticleSimilarDocuments {
|
|
|
7671
8098
|
getQuery: () => _sinequa_atomic.Query;
|
|
7672
8099
|
} & _ngrx_signals.StateSource<{
|
|
7673
8100
|
name?: string | undefined;
|
|
7674
|
-
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
7675
8101
|
text?: string | undefined;
|
|
8102
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
7676
8103
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
7677
8104
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
7678
8105
|
page?: number | undefined;
|
|
@@ -7827,6 +8254,7 @@ declare class SignInComponent {
|
|
|
7827
8254
|
domain: string;
|
|
7828
8255
|
};
|
|
7829
8256
|
userOverrideActive: boolean;
|
|
8257
|
+
authMode: _sinequa_atomic.AuthMode;
|
|
7830
8258
|
useCredentials: boolean;
|
|
7831
8259
|
useSSO: boolean;
|
|
7832
8260
|
useSAML: boolean;
|
|
@@ -7835,9 +8263,13 @@ declare class SignInComponent {
|
|
|
7835
8263
|
} & Record<string, any>>;
|
|
7836
8264
|
/**
|
|
7837
8265
|
* True when authentication is handled outside the credentials form — i.e. by the
|
|
7838
|
-
* browser/proxy (`
|
|
7839
|
-
*
|
|
7840
|
-
*
|
|
8266
|
+
* browser/proxy (`sso`) or by an auto-configured OAuth/SAML provider. In those modes
|
|
8267
|
+
* this screen shows a loader instead of a login form and initiates the handshake
|
|
8268
|
+
* automatically by calling `handleLogin()`.
|
|
8269
|
+
*
|
|
8270
|
+
* Note: the ambiguous `unknown` mode is intentionally excluded — it is resolved upstream
|
|
8271
|
+
* (in `login()`/`signIn()`) to either `sso` or `credentials` before this screen renders,
|
|
8272
|
+
* so reaching here in `unknown` should still show the form, never a dead-end loader.
|
|
7841
8273
|
*/
|
|
7842
8274
|
readonly externalAuth: boolean;
|
|
7843
8275
|
class: _angular_core.InputSignal<string | undefined>;
|
|
@@ -7897,7 +8329,7 @@ declare class SignInComponent {
|
|
|
7897
8329
|
}
|
|
7898
8330
|
|
|
7899
8331
|
declare class BookmarkButtonComponent {
|
|
7900
|
-
variant: _angular_core.InputSignal<"default" | "
|
|
8332
|
+
variant: _angular_core.InputSignal<"default" | "icon" | "primary" | "secondary" | "destructive" | "ai" | "outline" | "none" | "link" | "accent" | "tertiary" | "ghost" | "light-accent" | null | undefined>;
|
|
7901
8333
|
size: _angular_core.InputSignal<"icon" | "xs" | "sm" | "md" | "lg" | null | undefined>;
|
|
7902
8334
|
readonly article: _angular_core.InputSignal<Partial<Article$1>>;
|
|
7903
8335
|
private readonly userSettingsStore;
|
|
@@ -8287,8 +8719,8 @@ declare class AdvancedSearchComponent {
|
|
|
8287
8719
|
}>;
|
|
8288
8720
|
protected readonly queryParamsStore: {
|
|
8289
8721
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
8290
|
-
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
8291
8722
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
8723
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
8292
8724
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
8293
8725
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
8294
8726
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
@@ -8342,8 +8774,8 @@ declare class AdvancedSearchComponent {
|
|
|
8342
8774
|
getQuery: () => _sinequa_atomic.Query;
|
|
8343
8775
|
} & _ngrx_signals.StateSource<{
|
|
8344
8776
|
name?: string | undefined;
|
|
8345
|
-
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
8346
8777
|
text?: string | undefined;
|
|
8778
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
8347
8779
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
8348
8780
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
8349
8781
|
page?: number | undefined;
|
|
@@ -8463,6 +8895,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
8463
8895
|
customData?: string[];
|
|
8464
8896
|
};
|
|
8465
8897
|
previewMultiConversion?: boolean;
|
|
8898
|
+
persistFiltersAcrossTabs?: boolean;
|
|
8466
8899
|
};
|
|
8467
8900
|
allowAdvancedFilters?: boolean;
|
|
8468
8901
|
general?: {
|
|
@@ -8504,6 +8937,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
8504
8937
|
customData?: string[];
|
|
8505
8938
|
};
|
|
8506
8939
|
previewMultiConversion?: boolean;
|
|
8940
|
+
persistFiltersAcrossTabs?: boolean;
|
|
8507
8941
|
};
|
|
8508
8942
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
8509
8943
|
};
|
|
@@ -8566,6 +9000,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
8566
9000
|
customData?: string[];
|
|
8567
9001
|
};
|
|
8568
9002
|
previewMultiConversion?: boolean;
|
|
9003
|
+
persistFiltersAcrossTabs?: boolean;
|
|
8569
9004
|
};
|
|
8570
9005
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
8571
9006
|
} | undefined>;
|
|
@@ -8656,6 +9091,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
8656
9091
|
customData?: string[];
|
|
8657
9092
|
};
|
|
8658
9093
|
previewMultiConversion?: boolean;
|
|
9094
|
+
persistFiltersAcrossTabs?: boolean;
|
|
8659
9095
|
};
|
|
8660
9096
|
allowAdvancedFilters?: boolean;
|
|
8661
9097
|
general?: {
|
|
@@ -8697,6 +9133,7 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
8697
9133
|
customData?: string[];
|
|
8698
9134
|
};
|
|
8699
9135
|
previewMultiConversion?: boolean;
|
|
9136
|
+
persistFiltersAcrossTabs?: boolean;
|
|
8700
9137
|
};
|
|
8701
9138
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
8702
9139
|
};
|
|
@@ -8743,8 +9180,8 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
8743
9180
|
}>;
|
|
8744
9181
|
queryParamsStore: {
|
|
8745
9182
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
8746
|
-
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
8747
9183
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9184
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
8748
9185
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
8749
9186
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
8750
9187
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
@@ -8798,8 +9235,8 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
8798
9235
|
getQuery: () => _sinequa_atomic.Query;
|
|
8799
9236
|
} & _ngrx_signals.StateSource<{
|
|
8800
9237
|
name?: string | undefined;
|
|
8801
|
-
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
8802
9238
|
text?: string | undefined;
|
|
9239
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
8803
9240
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
8804
9241
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
8805
9242
|
page?: number | undefined;
|
|
@@ -8941,8 +9378,8 @@ declare class ExportDialog implements DialogInterface {
|
|
|
8941
9378
|
readonly exportService: ExportService;
|
|
8942
9379
|
readonly queryParamsStore: {
|
|
8943
9380
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
8944
|
-
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
8945
9381
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9382
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
8946
9383
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
8947
9384
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
8948
9385
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
@@ -8996,8 +9433,8 @@ declare class ExportDialog implements DialogInterface {
|
|
|
8996
9433
|
getQuery: () => _sinequa_atomic.Query;
|
|
8997
9434
|
} & _ngrx_signals.StateSource<{
|
|
8998
9435
|
name?: string | undefined;
|
|
8999
|
-
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9000
9436
|
text?: string | undefined;
|
|
9437
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9001
9438
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
9002
9439
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
9003
9440
|
page?: number | undefined;
|
|
@@ -9098,6 +9535,7 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
9098
9535
|
customData?: string[];
|
|
9099
9536
|
};
|
|
9100
9537
|
previewMultiConversion?: boolean;
|
|
9538
|
+
persistFiltersAcrossTabs?: boolean;
|
|
9101
9539
|
};
|
|
9102
9540
|
allowAdvancedFilters?: boolean;
|
|
9103
9541
|
general?: {
|
|
@@ -9139,6 +9577,7 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
9139
9577
|
customData?: string[];
|
|
9140
9578
|
};
|
|
9141
9579
|
previewMultiConversion?: boolean;
|
|
9580
|
+
persistFiltersAcrossTabs?: boolean;
|
|
9142
9581
|
};
|
|
9143
9582
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
9144
9583
|
};
|
|
@@ -9201,6 +9640,7 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
9201
9640
|
customData?: string[];
|
|
9202
9641
|
};
|
|
9203
9642
|
previewMultiConversion?: boolean;
|
|
9643
|
+
persistFiltersAcrossTabs?: boolean;
|
|
9204
9644
|
};
|
|
9205
9645
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
9206
9646
|
} | undefined>;
|
|
@@ -9291,6 +9731,7 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
9291
9731
|
customData?: string[];
|
|
9292
9732
|
};
|
|
9293
9733
|
previewMultiConversion?: boolean;
|
|
9734
|
+
persistFiltersAcrossTabs?: boolean;
|
|
9294
9735
|
};
|
|
9295
9736
|
allowAdvancedFilters?: boolean;
|
|
9296
9737
|
general?: {
|
|
@@ -9332,6 +9773,7 @@ declare class FeedbackDialogComponent implements DialogInterface {
|
|
|
9332
9773
|
customData?: string[];
|
|
9333
9774
|
};
|
|
9334
9775
|
previewMultiConversion?: boolean;
|
|
9776
|
+
persistFiltersAcrossTabs?: boolean;
|
|
9335
9777
|
};
|
|
9336
9778
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
9337
9779
|
};
|
|
@@ -9370,13 +9812,13 @@ declare class SearchFeedbackComponent {
|
|
|
9370
9812
|
onClose: _angular_core.OutputEmitterRef<void>;
|
|
9371
9813
|
readonly feedbackDialog: _angular_core.Signal<FeedbackDialogComponent | undefined>;
|
|
9372
9814
|
pages: _angular_core.InputSignal<any>;
|
|
9373
|
-
variant: _angular_core.InputSignal<"default" | "
|
|
9815
|
+
variant: _angular_core.InputSignal<"default" | "icon" | "primary" | "secondary" | "destructive" | "ai" | "outline" | "none" | "link" | "accent" | "tertiary" | "ghost" | "light-accent" | null | undefined>;
|
|
9374
9816
|
solid: _angular_core.InputSignal<boolean | null | undefined>;
|
|
9375
9817
|
readonly auditService: AuditService;
|
|
9376
9818
|
protected readonly queryParamsStore: {
|
|
9377
9819
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9378
|
-
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9379
9820
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9821
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9380
9822
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
9381
9823
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
9382
9824
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
@@ -9430,8 +9872,8 @@ declare class SearchFeedbackComponent {
|
|
|
9430
9872
|
getQuery: () => _sinequa_atomic.Query;
|
|
9431
9873
|
} & _ngrx_signals.StateSource<{
|
|
9432
9874
|
name?: string | undefined;
|
|
9433
|
-
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9434
9875
|
text?: string | undefined;
|
|
9876
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9435
9877
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
9436
9878
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
9437
9879
|
page?: number | undefined;
|
|
@@ -9504,8 +9946,8 @@ declare class AggregationTreeComponent {
|
|
|
9504
9946
|
}>;
|
|
9505
9947
|
readonly queryParamsStore: {
|
|
9506
9948
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9507
|
-
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9508
9949
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
9950
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9509
9951
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
9510
9952
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
9511
9953
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
@@ -9559,8 +10001,8 @@ declare class AggregationTreeComponent {
|
|
|
9559
10001
|
getQuery: () => _sinequa_atomic.Query;
|
|
9560
10002
|
} & _ngrx_signals.StateSource<{
|
|
9561
10003
|
name?: string | undefined;
|
|
9562
|
-
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9563
10004
|
text?: string | undefined;
|
|
10005
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
9564
10006
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
9565
10007
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
9566
10008
|
page?: number | undefined;
|
|
@@ -9641,6 +10083,7 @@ declare class AggregationTreeComponent {
|
|
|
9641
10083
|
customData?: string[];
|
|
9642
10084
|
};
|
|
9643
10085
|
previewMultiConversion?: boolean;
|
|
10086
|
+
persistFiltersAcrossTabs?: boolean;
|
|
9644
10087
|
};
|
|
9645
10088
|
allowAdvancedFilters?: boolean;
|
|
9646
10089
|
general?: {
|
|
@@ -9682,6 +10125,7 @@ declare class AggregationTreeComponent {
|
|
|
9682
10125
|
customData?: string[];
|
|
9683
10126
|
};
|
|
9684
10127
|
previewMultiConversion?: boolean;
|
|
10128
|
+
persistFiltersAcrossTabs?: boolean;
|
|
9685
10129
|
};
|
|
9686
10130
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
9687
10131
|
};
|
|
@@ -9744,6 +10188,7 @@ declare class AggregationTreeComponent {
|
|
|
9744
10188
|
customData?: string[];
|
|
9745
10189
|
};
|
|
9746
10190
|
previewMultiConversion?: boolean;
|
|
10191
|
+
persistFiltersAcrossTabs?: boolean;
|
|
9747
10192
|
};
|
|
9748
10193
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
9749
10194
|
} | undefined>;
|
|
@@ -9834,6 +10279,7 @@ declare class AggregationTreeComponent {
|
|
|
9834
10279
|
customData?: string[];
|
|
9835
10280
|
};
|
|
9836
10281
|
previewMultiConversion?: boolean;
|
|
10282
|
+
persistFiltersAcrossTabs?: boolean;
|
|
9837
10283
|
};
|
|
9838
10284
|
allowAdvancedFilters?: boolean;
|
|
9839
10285
|
general?: {
|
|
@@ -9875,6 +10321,7 @@ declare class AggregationTreeComponent {
|
|
|
9875
10321
|
customData?: string[];
|
|
9876
10322
|
};
|
|
9877
10323
|
previewMultiConversion?: boolean;
|
|
10324
|
+
persistFiltersAcrossTabs?: boolean;
|
|
9878
10325
|
};
|
|
9879
10326
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
9880
10327
|
};
|
|
@@ -9984,8 +10431,8 @@ declare class AggregationListComponent {
|
|
|
9984
10431
|
}>;
|
|
9985
10432
|
readonly queryParamsStore: {
|
|
9986
10433
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
9987
|
-
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9988
10434
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
10435
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
9989
10436
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
9990
10437
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
9991
10438
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
@@ -10039,8 +10486,8 @@ declare class AggregationListComponent {
|
|
|
10039
10486
|
getQuery: () => _sinequa_atomic.Query;
|
|
10040
10487
|
} & _ngrx_signals.StateSource<{
|
|
10041
10488
|
name?: string | undefined;
|
|
10042
|
-
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
10043
10489
|
text?: string | undefined;
|
|
10490
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
10044
10491
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
10045
10492
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
10046
10493
|
page?: number | undefined;
|
|
@@ -10121,6 +10568,7 @@ declare class AggregationListComponent {
|
|
|
10121
10568
|
customData?: string[];
|
|
10122
10569
|
};
|
|
10123
10570
|
previewMultiConversion?: boolean;
|
|
10571
|
+
persistFiltersAcrossTabs?: boolean;
|
|
10124
10572
|
};
|
|
10125
10573
|
allowAdvancedFilters?: boolean;
|
|
10126
10574
|
general?: {
|
|
@@ -10162,6 +10610,7 @@ declare class AggregationListComponent {
|
|
|
10162
10610
|
customData?: string[];
|
|
10163
10611
|
};
|
|
10164
10612
|
previewMultiConversion?: boolean;
|
|
10613
|
+
persistFiltersAcrossTabs?: boolean;
|
|
10165
10614
|
};
|
|
10166
10615
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
10167
10616
|
};
|
|
@@ -10224,6 +10673,7 @@ declare class AggregationListComponent {
|
|
|
10224
10673
|
customData?: string[];
|
|
10225
10674
|
};
|
|
10226
10675
|
previewMultiConversion?: boolean;
|
|
10676
|
+
persistFiltersAcrossTabs?: boolean;
|
|
10227
10677
|
};
|
|
10228
10678
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
10229
10679
|
} | undefined>;
|
|
@@ -10314,6 +10764,7 @@ declare class AggregationListComponent {
|
|
|
10314
10764
|
customData?: string[];
|
|
10315
10765
|
};
|
|
10316
10766
|
previewMultiConversion?: boolean;
|
|
10767
|
+
persistFiltersAcrossTabs?: boolean;
|
|
10317
10768
|
};
|
|
10318
10769
|
allowAdvancedFilters?: boolean;
|
|
10319
10770
|
general?: {
|
|
@@ -10355,6 +10806,7 @@ declare class AggregationListComponent {
|
|
|
10355
10806
|
customData?: string[];
|
|
10356
10807
|
};
|
|
10357
10808
|
previewMultiConversion?: boolean;
|
|
10809
|
+
persistFiltersAcrossTabs?: boolean;
|
|
10358
10810
|
};
|
|
10359
10811
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
10360
10812
|
};
|
|
@@ -10479,10 +10931,14 @@ declare class AggregationComponent {
|
|
|
10479
10931
|
customData?: string[];
|
|
10480
10932
|
};
|
|
10481
10933
|
previewMultiConversion?: boolean;
|
|
10934
|
+
persistFiltersAcrossTabs?: boolean;
|
|
10482
10935
|
};
|
|
10483
10936
|
allowAdvancedFilters?: boolean;
|
|
10484
10937
|
general?: {
|
|
10485
|
-
name
|
|
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;
|
|
10486
10942
|
logo?: {
|
|
10487
10943
|
alt?: string;
|
|
10488
10944
|
light?: {
|
|
@@ -10520,6 +10976,7 @@ declare class AggregationComponent {
|
|
|
10520
10976
|
customData?: string[];
|
|
10521
10977
|
};
|
|
10522
10978
|
previewMultiConversion?: boolean;
|
|
10979
|
+
persistFiltersAcrossTabs?: boolean;
|
|
10523
10980
|
};
|
|
10524
10981
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
10525
10982
|
};
|
|
@@ -10582,6 +11039,7 @@ declare class AggregationComponent {
|
|
|
10582
11039
|
customData?: string[];
|
|
10583
11040
|
};
|
|
10584
11041
|
previewMultiConversion?: boolean;
|
|
11042
|
+
persistFiltersAcrossTabs?: boolean;
|
|
10585
11043
|
};
|
|
10586
11044
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
10587
11045
|
} | undefined>;
|
|
@@ -10672,10 +11130,14 @@ declare class AggregationComponent {
|
|
|
10672
11130
|
customData?: string[];
|
|
10673
11131
|
};
|
|
10674
11132
|
previewMultiConversion?: boolean;
|
|
11133
|
+
persistFiltersAcrossTabs?: boolean;
|
|
10675
11134
|
};
|
|
10676
11135
|
allowAdvancedFilters?: boolean;
|
|
10677
11136
|
general?: {
|
|
10678
|
-
name
|
|
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;
|
|
10679
11141
|
logo?: {
|
|
10680
11142
|
alt?: string;
|
|
10681
11143
|
light?: {
|
|
@@ -10713,6 +11175,7 @@ declare class AggregationComponent {
|
|
|
10713
11175
|
customData?: string[];
|
|
10714
11176
|
};
|
|
10715
11177
|
previewMultiConversion?: boolean;
|
|
11178
|
+
persistFiltersAcrossTabs?: boolean;
|
|
10716
11179
|
};
|
|
10717
11180
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
10718
11181
|
};
|
|
@@ -10886,7 +11349,7 @@ declare class FilterButtonComponent {
|
|
|
10886
11349
|
position: _angular_core.InputSignal<Placement>;
|
|
10887
11350
|
offset: _angular_core.InputSignal<number>;
|
|
10888
11351
|
expandedLevel: _angular_core.InputSignalWithTransform<number | undefined, unknown>;
|
|
10889
|
-
protected variant: _angular_core.WritableSignal<"default" | "
|
|
11352
|
+
protected variant: _angular_core.WritableSignal<"default" | "icon" | "primary" | "secondary" | "destructive" | "ai" | "outline" | "none" | "link" | "accent" | "tertiary" | "ghost" | "light-accent" | null | undefined>;
|
|
10890
11353
|
protected filter: _angular_core.WritableSignal<CFilterEx>;
|
|
10891
11354
|
popoverRef: _angular_core.Signal<PopoverComponent | undefined>;
|
|
10892
11355
|
protected nativeElement: any;
|
|
@@ -10901,8 +11364,8 @@ declare class FilterButtonComponent {
|
|
|
10901
11364
|
}>;
|
|
10902
11365
|
protected queryParamsStore: {
|
|
10903
11366
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
10904
|
-
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
10905
11367
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
11368
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
10906
11369
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
10907
11370
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
10908
11371
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
@@ -10956,8 +11419,8 @@ declare class FilterButtonComponent {
|
|
|
10956
11419
|
getQuery: () => _sinequa_atomic.Query;
|
|
10957
11420
|
} & _ngrx_signals.StateSource<{
|
|
10958
11421
|
name?: string | undefined;
|
|
10959
|
-
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
10960
11422
|
text?: string | undefined;
|
|
11423
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
10961
11424
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
10962
11425
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
10963
11426
|
page?: number | undefined;
|
|
@@ -11038,6 +11501,7 @@ declare class FilterButtonComponent {
|
|
|
11038
11501
|
customData?: string[];
|
|
11039
11502
|
};
|
|
11040
11503
|
previewMultiConversion?: boolean;
|
|
11504
|
+
persistFiltersAcrossTabs?: boolean;
|
|
11041
11505
|
};
|
|
11042
11506
|
allowAdvancedFilters?: boolean;
|
|
11043
11507
|
general?: {
|
|
@@ -11079,6 +11543,7 @@ declare class FilterButtonComponent {
|
|
|
11079
11543
|
customData?: string[];
|
|
11080
11544
|
};
|
|
11081
11545
|
previewMultiConversion?: boolean;
|
|
11546
|
+
persistFiltersAcrossTabs?: boolean;
|
|
11082
11547
|
};
|
|
11083
11548
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
11084
11549
|
};
|
|
@@ -11141,6 +11606,7 @@ declare class FilterButtonComponent {
|
|
|
11141
11606
|
customData?: string[];
|
|
11142
11607
|
};
|
|
11143
11608
|
previewMultiConversion?: boolean;
|
|
11609
|
+
persistFiltersAcrossTabs?: boolean;
|
|
11144
11610
|
};
|
|
11145
11611
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
11146
11612
|
} | undefined>;
|
|
@@ -11231,6 +11697,7 @@ declare class FilterButtonComponent {
|
|
|
11231
11697
|
customData?: string[];
|
|
11232
11698
|
};
|
|
11233
11699
|
previewMultiConversion?: boolean;
|
|
11700
|
+
persistFiltersAcrossTabs?: boolean;
|
|
11234
11701
|
};
|
|
11235
11702
|
allowAdvancedFilters?: boolean;
|
|
11236
11703
|
general?: {
|
|
@@ -11272,6 +11739,7 @@ declare class FilterButtonComponent {
|
|
|
11272
11739
|
customData?: string[];
|
|
11273
11740
|
};
|
|
11274
11741
|
previewMultiConversion?: boolean;
|
|
11742
|
+
persistFiltersAcrossTabs?: boolean;
|
|
11275
11743
|
};
|
|
11276
11744
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
11277
11745
|
};
|
|
@@ -11358,6 +11826,7 @@ declare class MoreButtonComponent {
|
|
|
11358
11826
|
customData?: string[];
|
|
11359
11827
|
};
|
|
11360
11828
|
previewMultiConversion?: boolean;
|
|
11829
|
+
persistFiltersAcrossTabs?: boolean;
|
|
11361
11830
|
};
|
|
11362
11831
|
allowAdvancedFilters?: boolean;
|
|
11363
11832
|
general?: {
|
|
@@ -11399,6 +11868,7 @@ declare class MoreButtonComponent {
|
|
|
11399
11868
|
customData?: string[];
|
|
11400
11869
|
};
|
|
11401
11870
|
previewMultiConversion?: boolean;
|
|
11871
|
+
persistFiltersAcrossTabs?: boolean;
|
|
11402
11872
|
};
|
|
11403
11873
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
11404
11874
|
};
|
|
@@ -11461,6 +11931,7 @@ declare class MoreButtonComponent {
|
|
|
11461
11931
|
customData?: string[];
|
|
11462
11932
|
};
|
|
11463
11933
|
previewMultiConversion?: boolean;
|
|
11934
|
+
persistFiltersAcrossTabs?: boolean;
|
|
11464
11935
|
};
|
|
11465
11936
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
11466
11937
|
} | undefined>;
|
|
@@ -11551,6 +12022,7 @@ declare class MoreButtonComponent {
|
|
|
11551
12022
|
customData?: string[];
|
|
11552
12023
|
};
|
|
11553
12024
|
previewMultiConversion?: boolean;
|
|
12025
|
+
persistFiltersAcrossTabs?: boolean;
|
|
11554
12026
|
};
|
|
11555
12027
|
allowAdvancedFilters?: boolean;
|
|
11556
12028
|
general?: {
|
|
@@ -11592,6 +12064,7 @@ declare class MoreButtonComponent {
|
|
|
11592
12064
|
customData?: string[];
|
|
11593
12065
|
};
|
|
11594
12066
|
previewMultiConversion?: boolean;
|
|
12067
|
+
persistFiltersAcrossTabs?: boolean;
|
|
11595
12068
|
};
|
|
11596
12069
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
11597
12070
|
};
|
|
@@ -11615,8 +12088,8 @@ declare class MoreButtonComponent {
|
|
|
11615
12088
|
}>;
|
|
11616
12089
|
queryParamsStore: {
|
|
11617
12090
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
11618
|
-
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
11619
12091
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
12092
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
11620
12093
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
11621
12094
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
11622
12095
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
@@ -11670,8 +12143,8 @@ declare class MoreButtonComponent {
|
|
|
11670
12143
|
getQuery: () => _sinequa_atomic.Query;
|
|
11671
12144
|
} & _ngrx_signals.StateSource<{
|
|
11672
12145
|
name?: string | undefined;
|
|
11673
|
-
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
11674
12146
|
text?: string | undefined;
|
|
12147
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
11675
12148
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
11676
12149
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
11677
12150
|
page?: number | undefined;
|
|
@@ -11834,6 +12307,7 @@ declare class FiltersBarComponent {
|
|
|
11834
12307
|
customData?: string[];
|
|
11835
12308
|
};
|
|
11836
12309
|
previewMultiConversion?: boolean;
|
|
12310
|
+
persistFiltersAcrossTabs?: boolean;
|
|
11837
12311
|
};
|
|
11838
12312
|
allowAdvancedFilters?: boolean;
|
|
11839
12313
|
general?: {
|
|
@@ -11875,6 +12349,7 @@ declare class FiltersBarComponent {
|
|
|
11875
12349
|
customData?: string[];
|
|
11876
12350
|
};
|
|
11877
12351
|
previewMultiConversion?: boolean;
|
|
12352
|
+
persistFiltersAcrossTabs?: boolean;
|
|
11878
12353
|
};
|
|
11879
12354
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
11880
12355
|
};
|
|
@@ -11937,6 +12412,7 @@ declare class FiltersBarComponent {
|
|
|
11937
12412
|
customData?: string[];
|
|
11938
12413
|
};
|
|
11939
12414
|
previewMultiConversion?: boolean;
|
|
12415
|
+
persistFiltersAcrossTabs?: boolean;
|
|
11940
12416
|
};
|
|
11941
12417
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
11942
12418
|
} | undefined>;
|
|
@@ -12027,6 +12503,7 @@ declare class FiltersBarComponent {
|
|
|
12027
12503
|
customData?: string[];
|
|
12028
12504
|
};
|
|
12029
12505
|
previewMultiConversion?: boolean;
|
|
12506
|
+
persistFiltersAcrossTabs?: boolean;
|
|
12030
12507
|
};
|
|
12031
12508
|
allowAdvancedFilters?: boolean;
|
|
12032
12509
|
general?: {
|
|
@@ -12068,6 +12545,7 @@ declare class FiltersBarComponent {
|
|
|
12068
12545
|
customData?: string[];
|
|
12069
12546
|
};
|
|
12070
12547
|
previewMultiConversion?: boolean;
|
|
12548
|
+
persistFiltersAcrossTabs?: boolean;
|
|
12071
12549
|
};
|
|
12072
12550
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
12073
12551
|
};
|
|
@@ -12100,8 +12578,8 @@ declare class FiltersBarComponent {
|
|
|
12100
12578
|
}>;
|
|
12101
12579
|
protected queryParamsStore: {
|
|
12102
12580
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
12103
|
-
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
12104
12581
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
12582
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
12105
12583
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
12106
12584
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
12107
12585
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
@@ -12155,8 +12633,8 @@ declare class FiltersBarComponent {
|
|
|
12155
12633
|
getQuery: () => _sinequa_atomic.Query;
|
|
12156
12634
|
} & _ngrx_signals.StateSource<{
|
|
12157
12635
|
name?: string | undefined;
|
|
12158
|
-
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
12159
12636
|
text?: string | undefined;
|
|
12637
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
12160
12638
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
12161
12639
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
12162
12640
|
page?: number | undefined;
|
|
@@ -12330,6 +12808,7 @@ declare class MoreComponent {
|
|
|
12330
12808
|
customData?: string[];
|
|
12331
12809
|
};
|
|
12332
12810
|
previewMultiConversion?: boolean;
|
|
12811
|
+
persistFiltersAcrossTabs?: boolean;
|
|
12333
12812
|
};
|
|
12334
12813
|
allowAdvancedFilters?: boolean;
|
|
12335
12814
|
general?: {
|
|
@@ -12371,6 +12850,7 @@ declare class MoreComponent {
|
|
|
12371
12850
|
customData?: string[];
|
|
12372
12851
|
};
|
|
12373
12852
|
previewMultiConversion?: boolean;
|
|
12853
|
+
persistFiltersAcrossTabs?: boolean;
|
|
12374
12854
|
};
|
|
12375
12855
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
12376
12856
|
};
|
|
@@ -12433,6 +12913,7 @@ declare class MoreComponent {
|
|
|
12433
12913
|
customData?: string[];
|
|
12434
12914
|
};
|
|
12435
12915
|
previewMultiConversion?: boolean;
|
|
12916
|
+
persistFiltersAcrossTabs?: boolean;
|
|
12436
12917
|
};
|
|
12437
12918
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
12438
12919
|
} | undefined>;
|
|
@@ -12523,6 +13004,7 @@ declare class MoreComponent {
|
|
|
12523
13004
|
customData?: string[];
|
|
12524
13005
|
};
|
|
12525
13006
|
previewMultiConversion?: boolean;
|
|
13007
|
+
persistFiltersAcrossTabs?: boolean;
|
|
12526
13008
|
};
|
|
12527
13009
|
allowAdvancedFilters?: boolean;
|
|
12528
13010
|
general?: {
|
|
@@ -12564,6 +13046,7 @@ declare class MoreComponent {
|
|
|
12564
13046
|
customData?: string[];
|
|
12565
13047
|
};
|
|
12566
13048
|
previewMultiConversion?: boolean;
|
|
13049
|
+
persistFiltersAcrossTabs?: boolean;
|
|
12567
13050
|
};
|
|
12568
13051
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
12569
13052
|
};
|
|
@@ -12596,8 +13079,8 @@ declare class MoreComponent {
|
|
|
12596
13079
|
}>;
|
|
12597
13080
|
queryParamsStore: {
|
|
12598
13081
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
12599
|
-
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
12600
13082
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
13083
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
12601
13084
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
12602
13085
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
12603
13086
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
@@ -12651,8 +13134,8 @@ declare class MoreComponent {
|
|
|
12651
13134
|
getQuery: () => _sinequa_atomic.Query;
|
|
12652
13135
|
} & _ngrx_signals.StateSource<{
|
|
12653
13136
|
name?: string | undefined;
|
|
12654
|
-
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
12655
13137
|
text?: string | undefined;
|
|
13138
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
12656
13139
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
12657
13140
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
12658
13141
|
page?: number | undefined;
|
|
@@ -12794,6 +13277,7 @@ declare class LabelService {
|
|
|
12794
13277
|
customData?: string[];
|
|
12795
13278
|
};
|
|
12796
13279
|
previewMultiConversion?: boolean;
|
|
13280
|
+
persistFiltersAcrossTabs?: boolean;
|
|
12797
13281
|
};
|
|
12798
13282
|
allowAdvancedFilters?: boolean;
|
|
12799
13283
|
general?: {
|
|
@@ -12835,6 +13319,7 @@ declare class LabelService {
|
|
|
12835
13319
|
customData?: string[];
|
|
12836
13320
|
};
|
|
12837
13321
|
previewMultiConversion?: boolean;
|
|
13322
|
+
persistFiltersAcrossTabs?: boolean;
|
|
12838
13323
|
};
|
|
12839
13324
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
12840
13325
|
};
|
|
@@ -12897,6 +13382,7 @@ declare class LabelService {
|
|
|
12897
13382
|
customData?: string[];
|
|
12898
13383
|
};
|
|
12899
13384
|
previewMultiConversion?: boolean;
|
|
13385
|
+
persistFiltersAcrossTabs?: boolean;
|
|
12900
13386
|
};
|
|
12901
13387
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
12902
13388
|
} | undefined>;
|
|
@@ -12987,6 +13473,7 @@ declare class LabelService {
|
|
|
12987
13473
|
customData?: string[];
|
|
12988
13474
|
};
|
|
12989
13475
|
previewMultiConversion?: boolean;
|
|
13476
|
+
persistFiltersAcrossTabs?: boolean;
|
|
12990
13477
|
};
|
|
12991
13478
|
allowAdvancedFilters?: boolean;
|
|
12992
13479
|
general?: {
|
|
@@ -13028,6 +13515,7 @@ declare class LabelService {
|
|
|
13028
13515
|
customData?: string[];
|
|
13029
13516
|
};
|
|
13030
13517
|
previewMultiConversion?: boolean;
|
|
13518
|
+
persistFiltersAcrossTabs?: boolean;
|
|
13031
13519
|
};
|
|
13032
13520
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
13033
13521
|
};
|
|
@@ -13285,8 +13773,8 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
13285
13773
|
private readonly savedSearchesService;
|
|
13286
13774
|
protected readonly queryParamsStore: {
|
|
13287
13775
|
name?: _angular_core.Signal<string | undefined> | undefined;
|
|
13288
|
-
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
13289
13776
|
text?: _angular_core.Signal<string | undefined> | undefined;
|
|
13777
|
+
action?: _angular_core.Signal<"" | "open" | "search" | "aggregate" | undefined> | undefined;
|
|
13290
13778
|
select?: _angular_core.Signal<_sinequa_atomic.Select[] | undefined> | undefined;
|
|
13291
13779
|
open?: _angular_core.Signal<_sinequa_atomic.Open[] | undefined> | undefined;
|
|
13292
13780
|
page?: _angular_core.Signal<number | undefined> | undefined;
|
|
@@ -13340,8 +13828,8 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
13340
13828
|
getQuery: () => _sinequa_atomic.Query;
|
|
13341
13829
|
} & _ngrx_signals.StateSource<{
|
|
13342
13830
|
name?: string | undefined;
|
|
13343
|
-
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
13344
13831
|
text?: string | undefined;
|
|
13832
|
+
action?: "" | "search" | "open" | "aggregate" | undefined;
|
|
13345
13833
|
select?: _sinequa_atomic.Select[] | undefined;
|
|
13346
13834
|
open?: _sinequa_atomic.Open[] | undefined;
|
|
13347
13835
|
page?: number | undefined;
|
|
@@ -13489,7 +13977,7 @@ declare class UserProfileFormComponent {
|
|
|
13489
13977
|
param9: _angular_core.Signal<string>;
|
|
13490
13978
|
param10: _angular_core.Signal<string>;
|
|
13491
13979
|
userOverrideActive: _angular_core.Signal<boolean>;
|
|
13492
|
-
state: _angular_core.Signal<"
|
|
13980
|
+
state: _angular_core.Signal<"error" | "loading" | "loaded" | "initial">;
|
|
13493
13981
|
allowUserOverride: _angular_core.Signal<boolean>;
|
|
13494
13982
|
isOverridingUser: _angular_core.Signal<boolean>;
|
|
13495
13983
|
initials: _angular_core.Signal<string>;
|
|
@@ -13631,6 +14119,7 @@ declare class UserProfileFormComponent {
|
|
|
13631
14119
|
customData?: string[];
|
|
13632
14120
|
};
|
|
13633
14121
|
previewMultiConversion?: boolean;
|
|
14122
|
+
persistFiltersAcrossTabs?: boolean;
|
|
13634
14123
|
};
|
|
13635
14124
|
allowAdvancedFilters?: boolean;
|
|
13636
14125
|
general?: {
|
|
@@ -13672,6 +14161,7 @@ declare class UserProfileFormComponent {
|
|
|
13672
14161
|
customData?: string[];
|
|
13673
14162
|
};
|
|
13674
14163
|
previewMultiConversion?: boolean;
|
|
14164
|
+
persistFiltersAcrossTabs?: boolean;
|
|
13675
14165
|
};
|
|
13676
14166
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
13677
14167
|
};
|
|
@@ -13734,6 +14224,7 @@ declare class UserProfileFormComponent {
|
|
|
13734
14224
|
customData?: string[];
|
|
13735
14225
|
};
|
|
13736
14226
|
previewMultiConversion?: boolean;
|
|
14227
|
+
persistFiltersAcrossTabs?: boolean;
|
|
13737
14228
|
};
|
|
13738
14229
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
13739
14230
|
} | undefined>;
|
|
@@ -13824,6 +14315,7 @@ declare class UserProfileFormComponent {
|
|
|
13824
14315
|
customData?: string[];
|
|
13825
14316
|
};
|
|
13826
14317
|
previewMultiConversion?: boolean;
|
|
14318
|
+
persistFiltersAcrossTabs?: boolean;
|
|
13827
14319
|
};
|
|
13828
14320
|
allowAdvancedFilters?: boolean;
|
|
13829
14321
|
general?: {
|
|
@@ -13865,6 +14357,7 @@ declare class UserProfileFormComponent {
|
|
|
13865
14357
|
customData?: string[];
|
|
13866
14358
|
};
|
|
13867
14359
|
previewMultiConversion?: boolean;
|
|
14360
|
+
persistFiltersAcrossTabs?: boolean;
|
|
13868
14361
|
};
|
|
13869
14362
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
13870
14363
|
};
|
|
@@ -13998,8 +14491,12 @@ declare const authInterceptorFn: HttpInterceptorFn;
|
|
|
13998
14491
|
declare const bodyInterceptorFn: (request: HttpRequest<unknown>, next: HttpHandlerFn) => rxjs.Observable<_angular_common_http.HttpEvent<unknown>>;
|
|
13999
14492
|
|
|
14000
14493
|
/**
|
|
14001
|
-
* Interceptor function that handles HTTP 401 errors by refreshing authentication
|
|
14002
|
-
*
|
|
14494
|
+
* Interceptor function that handles HTTP 401 errors by refreshing authentication and retrying the
|
|
14495
|
+
* original request once. For 403 errors, the error is propagated as a permanent auth failure.
|
|
14496
|
+
*
|
|
14497
|
+
* The retry happens ONLY when `signIn()` reports the user is authenticated, and AT MOST once per
|
|
14498
|
+
* request. Without these two guards a persistent 401 (credentials required, or an endpoint that
|
|
14499
|
+
* keeps rejecting even after a successful CSRF handshake) would retry endlessly.
|
|
14003
14500
|
*
|
|
14004
14501
|
* @param request - The HTTP request object.
|
|
14005
14502
|
* @param next - The HTTP handler function.
|
|
@@ -14105,6 +14602,7 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
14105
14602
|
customData?: string[];
|
|
14106
14603
|
};
|
|
14107
14604
|
previewMultiConversion?: boolean;
|
|
14605
|
+
persistFiltersAcrossTabs?: boolean;
|
|
14108
14606
|
};
|
|
14109
14607
|
allowAdvancedFilters?: boolean;
|
|
14110
14608
|
general?: {
|
|
@@ -14146,6 +14644,7 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
14146
14644
|
customData?: string[];
|
|
14147
14645
|
};
|
|
14148
14646
|
previewMultiConversion?: boolean;
|
|
14647
|
+
persistFiltersAcrossTabs?: boolean;
|
|
14149
14648
|
};
|
|
14150
14649
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
14151
14650
|
};
|
|
@@ -14208,6 +14707,7 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
14208
14707
|
customData?: string[];
|
|
14209
14708
|
};
|
|
14210
14709
|
previewMultiConversion?: boolean;
|
|
14710
|
+
persistFiltersAcrossTabs?: boolean;
|
|
14211
14711
|
};
|
|
14212
14712
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
14213
14713
|
} | undefined>;
|
|
@@ -14298,6 +14798,7 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
14298
14798
|
customData?: string[];
|
|
14299
14799
|
};
|
|
14300
14800
|
previewMultiConversion?: boolean;
|
|
14801
|
+
persistFiltersAcrossTabs?: boolean;
|
|
14301
14802
|
};
|
|
14302
14803
|
allowAdvancedFilters?: boolean;
|
|
14303
14804
|
general?: {
|
|
@@ -14339,6 +14840,7 @@ declare class SourceIconPipe implements PipeTransform {
|
|
|
14339
14840
|
customData?: string[];
|
|
14340
14841
|
};
|
|
14341
14842
|
previewMultiConversion?: boolean;
|
|
14843
|
+
persistFiltersAcrossTabs?: boolean;
|
|
14342
14844
|
};
|
|
14343
14845
|
converters?: _sinequa_atomic_angular.CConverter[];
|
|
14344
14846
|
};
|
|
@@ -14476,5 +14978,5 @@ type AppFeatures = {
|
|
|
14476
14978
|
*/
|
|
14477
14979
|
declare const APP_FEATURES: InjectionToken<AppFeatures>;
|
|
14478
14980
|
|
|
14479
|
-
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, 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 };
|
|
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 };
|
|
14480
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 };
|