@sinequa/atomic-angular 0.3.8 → 0.3.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts
CHANGED
|
@@ -119,9 +119,9 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
119
119
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
120
120
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
121
121
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
122
|
-
path
|
|
123
|
-
filters
|
|
124
|
-
id
|
|
122
|
+
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
123
|
+
filters?: _angular_core.Signal<LegacyFilter[] | undefined> | undefined;
|
|
124
|
+
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
125
125
|
setFromUrl: (url: string) => void;
|
|
126
126
|
getQueryParams: () => {
|
|
127
127
|
f?: string;
|
|
@@ -173,9 +173,9 @@ declare class DocumentLocatorComponent implements OnDestroy {
|
|
|
173
173
|
orderBy?: string | undefined;
|
|
174
174
|
groupBy?: string | undefined;
|
|
175
175
|
neuralSearch?: boolean | undefined;
|
|
176
|
-
path
|
|
177
|
-
filters
|
|
178
|
-
id
|
|
176
|
+
path?: string | undefined;
|
|
177
|
+
filters?: LegacyFilter[] | undefined;
|
|
178
|
+
id?: string | undefined;
|
|
179
179
|
}>;
|
|
180
180
|
readonly aggregationStore: {
|
|
181
181
|
aggregations: _angular_core.Signal<_sinequa_atomic.Aggregation[]>;
|
|
@@ -267,9 +267,9 @@ declare class MissingTermsComponent {
|
|
|
267
267
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
268
268
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
269
269
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
270
|
-
path
|
|
271
|
-
filters
|
|
272
|
-
id
|
|
270
|
+
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
271
|
+
filters?: _angular_core.Signal<_sinequa_atomic.LegacyFilter[] | undefined> | undefined;
|
|
272
|
+
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
273
273
|
setFromUrl: (url: string) => void;
|
|
274
274
|
getQueryParams: () => {
|
|
275
275
|
f?: string;
|
|
@@ -321,9 +321,9 @@ declare class MissingTermsComponent {
|
|
|
321
321
|
orderBy?: string | undefined;
|
|
322
322
|
groupBy?: string | undefined;
|
|
323
323
|
neuralSearch?: boolean | undefined;
|
|
324
|
-
path
|
|
325
|
-
filters
|
|
326
|
-
id
|
|
324
|
+
path?: string | undefined;
|
|
325
|
+
filters?: _sinequa_atomic.LegacyFilter[] | undefined;
|
|
326
|
+
id?: string | undefined;
|
|
327
327
|
}>;
|
|
328
328
|
router: Router;
|
|
329
329
|
missingTerms: _angular_core.Signal<{
|
|
@@ -962,7 +962,7 @@ declare class QueryService {
|
|
|
962
962
|
private readonly queryParamsStore;
|
|
963
963
|
private readonly transloco;
|
|
964
964
|
protected readonly API_URL: string;
|
|
965
|
-
result: Result
|
|
965
|
+
result: _angular_core.WritableSignal<Result>;
|
|
966
966
|
audit?: AuditEvents;
|
|
967
967
|
/**
|
|
968
968
|
* Performs a search query.
|
|
@@ -1290,9 +1290,9 @@ declare class AggregationsService {
|
|
|
1290
1290
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
1291
1291
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
1292
1292
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
1293
|
-
path
|
|
1294
|
-
filters
|
|
1295
|
-
id
|
|
1293
|
+
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
1294
|
+
filters?: _angular_core.Signal<LegacyFilter[] | undefined> | undefined;
|
|
1295
|
+
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
1296
1296
|
setFromUrl: (url: string) => void;
|
|
1297
1297
|
getQueryParams: () => {
|
|
1298
1298
|
f?: string;
|
|
@@ -1344,9 +1344,9 @@ declare class AggregationsService {
|
|
|
1344
1344
|
orderBy?: string | undefined;
|
|
1345
1345
|
groupBy?: string | undefined;
|
|
1346
1346
|
neuralSearch?: boolean | undefined;
|
|
1347
|
-
path
|
|
1348
|
-
filters
|
|
1349
|
-
id
|
|
1347
|
+
path?: string | undefined;
|
|
1348
|
+
filters?: LegacyFilter[] | undefined;
|
|
1349
|
+
id?: string | undefined;
|
|
1350
1350
|
}>;
|
|
1351
1351
|
nonSearchableColumns: string[];
|
|
1352
1352
|
protected API_URL: string;
|
|
@@ -3160,9 +3160,9 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
3160
3160
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
3161
3161
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
3162
3162
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
3163
|
-
path
|
|
3164
|
-
filters
|
|
3165
|
-
id
|
|
3163
|
+
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
3164
|
+
filters?: _angular_core.Signal<LegacyFilter[] | undefined> | undefined;
|
|
3165
|
+
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
3166
3166
|
setFromUrl: (url: string) => void;
|
|
3167
3167
|
getQueryParams: () => QueryParams;
|
|
3168
3168
|
addFilter: (filter: LegacyFilter, audit?: AuditEvents) => void;
|
|
@@ -3207,9 +3207,9 @@ declare const QueryParamsStore: _angular_core.Type<{
|
|
|
3207
3207
|
orderBy?: string | undefined;
|
|
3208
3208
|
groupBy?: string | undefined;
|
|
3209
3209
|
neuralSearch?: boolean | undefined;
|
|
3210
|
-
path
|
|
3211
|
-
filters
|
|
3212
|
-
id
|
|
3210
|
+
path?: string | undefined;
|
|
3211
|
+
filters?: LegacyFilter[] | undefined;
|
|
3212
|
+
id?: string | undefined;
|
|
3213
3213
|
}>>;
|
|
3214
3214
|
declare function withQueryParamsFeatures(): _ngrx_signals.SignalStoreFeature<_ngrx_signals.EmptyFeatureResult, {
|
|
3215
3215
|
state: {
|
|
@@ -3240,9 +3240,9 @@ declare function withQueryParamsFeatures(): _ngrx_signals.SignalStoreFeature<_ng
|
|
|
3240
3240
|
orderBy?: string | undefined;
|
|
3241
3241
|
groupBy?: string | undefined;
|
|
3242
3242
|
neuralSearch?: boolean | undefined;
|
|
3243
|
-
path
|
|
3244
|
-
filters
|
|
3245
|
-
id
|
|
3243
|
+
path?: string | undefined;
|
|
3244
|
+
filters?: LegacyFilter[] | undefined;
|
|
3245
|
+
id?: string | undefined;
|
|
3246
3246
|
};
|
|
3247
3247
|
props: {};
|
|
3248
3248
|
methods: {
|
|
@@ -3811,9 +3811,9 @@ declare class PreviewService {
|
|
|
3811
3811
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
3812
3812
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
3813
3813
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
3814
|
-
path
|
|
3815
|
-
filters
|
|
3816
|
-
id
|
|
3814
|
+
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
3815
|
+
filters?: _angular_core.Signal<_sinequa_atomic.LegacyFilter[] | undefined> | undefined;
|
|
3816
|
+
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
3817
3817
|
setFromUrl: (url: string) => void;
|
|
3818
3818
|
getQueryParams: () => {
|
|
3819
3819
|
f?: string;
|
|
@@ -3865,9 +3865,9 @@ declare class PreviewService {
|
|
|
3865
3865
|
orderBy?: string | undefined;
|
|
3866
3866
|
groupBy?: string | undefined;
|
|
3867
3867
|
neuralSearch?: boolean | undefined;
|
|
3868
|
-
path
|
|
3869
|
-
filters
|
|
3870
|
-
id
|
|
3868
|
+
path?: string | undefined;
|
|
3869
|
+
filters?: _sinequa_atomic.LegacyFilter[] | undefined;
|
|
3870
|
+
id?: string | undefined;
|
|
3871
3871
|
}>;
|
|
3872
3872
|
protected readonly appStore: {
|
|
3873
3873
|
name: _angular_core.Signal<string>;
|
|
@@ -4371,9 +4371,9 @@ declare class SavedSearchesService {
|
|
|
4371
4371
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4372
4372
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4373
4373
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4374
|
-
path
|
|
4375
|
-
filters
|
|
4376
|
-
id
|
|
4374
|
+
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
4375
|
+
filters?: _angular_core.Signal<_sinequa_atomic.LegacyFilter[] | undefined> | undefined;
|
|
4376
|
+
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
4377
4377
|
setFromUrl: (url: string) => void;
|
|
4378
4378
|
getQueryParams: () => {
|
|
4379
4379
|
f?: string;
|
|
@@ -4425,9 +4425,9 @@ declare class SavedSearchesService {
|
|
|
4425
4425
|
orderBy?: string | undefined;
|
|
4426
4426
|
groupBy?: string | undefined;
|
|
4427
4427
|
neuralSearch?: boolean | undefined;
|
|
4428
|
-
path
|
|
4429
|
-
filters
|
|
4430
|
-
id
|
|
4428
|
+
path?: string | undefined;
|
|
4429
|
+
filters?: _sinequa_atomic.LegacyFilter[] | undefined;
|
|
4430
|
+
id?: string | undefined;
|
|
4431
4431
|
}>;
|
|
4432
4432
|
/**
|
|
4433
4433
|
* Retrieves the list of saved searches from the user settings store.
|
|
@@ -4511,9 +4511,9 @@ declare class SearchService {
|
|
|
4511
4511
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4512
4512
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4513
4513
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4514
|
-
path
|
|
4515
|
-
filters
|
|
4516
|
-
id
|
|
4514
|
+
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
4515
|
+
filters?: _angular_core.Signal<_sinequa_atomic.LegacyFilter[] | undefined> | undefined;
|
|
4516
|
+
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
4517
4517
|
setFromUrl: (url: string) => void;
|
|
4518
4518
|
getQueryParams: () => {
|
|
4519
4519
|
f?: string;
|
|
@@ -4565,9 +4565,9 @@ declare class SearchService {
|
|
|
4565
4565
|
orderBy?: string | undefined;
|
|
4566
4566
|
groupBy?: string | undefined;
|
|
4567
4567
|
neuralSearch?: boolean | undefined;
|
|
4568
|
-
path
|
|
4569
|
-
filters
|
|
4570
|
-
id
|
|
4568
|
+
path?: string | undefined;
|
|
4569
|
+
filters?: _sinequa_atomic.LegacyFilter[] | undefined;
|
|
4570
|
+
id?: string | undefined;
|
|
4571
4571
|
}>;
|
|
4572
4572
|
protected readonly userSettingsStore: {
|
|
4573
4573
|
bookmarks: _angular_core.Signal<_sinequa_atomic_angular.Bookmark[]>;
|
|
@@ -4745,9 +4745,9 @@ declare class SelectionService {
|
|
|
4745
4745
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4746
4746
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4747
4747
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4748
|
-
path
|
|
4749
|
-
filters
|
|
4750
|
-
id
|
|
4748
|
+
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
4749
|
+
filters?: _angular_core.Signal<_sinequa_atomic.LegacyFilter[] | undefined> | undefined;
|
|
4750
|
+
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
4751
4751
|
setFromUrl: (url: string) => void;
|
|
4752
4752
|
getQueryParams: () => {
|
|
4753
4753
|
f?: string;
|
|
@@ -4799,9 +4799,9 @@ declare class SelectionService {
|
|
|
4799
4799
|
orderBy?: string | undefined;
|
|
4800
4800
|
groupBy?: string | undefined;
|
|
4801
4801
|
neuralSearch?: boolean | undefined;
|
|
4802
|
-
path
|
|
4803
|
-
filters
|
|
4804
|
-
id
|
|
4802
|
+
path?: string | undefined;
|
|
4803
|
+
filters?: _sinequa_atomic.LegacyFilter[] | undefined;
|
|
4804
|
+
id?: string | undefined;
|
|
4805
4805
|
}>;
|
|
4806
4806
|
/**
|
|
4807
4807
|
* Sets the current article in the selection store and optionally updates the query text.
|
|
@@ -4907,9 +4907,9 @@ declare class NavbarTabsComponent {
|
|
|
4907
4907
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4908
4908
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
4909
4909
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
4910
|
-
path
|
|
4911
|
-
filters
|
|
4912
|
-
id
|
|
4910
|
+
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
4911
|
+
filters?: _angular_core.Signal<_sinequa_atomic.LegacyFilter[] | undefined> | undefined;
|
|
4912
|
+
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
4913
4913
|
setFromUrl: (url: string) => void;
|
|
4914
4914
|
getQueryParams: () => {
|
|
4915
4915
|
f?: string;
|
|
@@ -4961,9 +4961,9 @@ declare class NavbarTabsComponent {
|
|
|
4961
4961
|
orderBy?: string | undefined;
|
|
4962
4962
|
groupBy?: string | undefined;
|
|
4963
4963
|
neuralSearch?: boolean | undefined;
|
|
4964
|
-
path
|
|
4965
|
-
filters
|
|
4966
|
-
id
|
|
4964
|
+
path?: string | undefined;
|
|
4965
|
+
filters?: _sinequa_atomic.LegacyFilter[] | undefined;
|
|
4966
|
+
id?: string | undefined;
|
|
4967
4967
|
}>;
|
|
4968
4968
|
readonly queryService: QueryService;
|
|
4969
4969
|
/**
|
|
@@ -4974,6 +4974,15 @@ declare class NavbarTabsComponent {
|
|
|
4974
4974
|
* This works only if tabSearch is enabled in the administration panel.
|
|
4975
4975
|
*/
|
|
4976
4976
|
showCount: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
4977
|
+
/**
|
|
4978
|
+
* The base path for the search routes.
|
|
4979
|
+
* This value is provided as an input property and defaults to "search".
|
|
4980
|
+
*
|
|
4981
|
+
* @remarks
|
|
4982
|
+
* This path is used to find the corresponding route configuration and its children
|
|
4983
|
+
* to populate the tabs in the navbar.
|
|
4984
|
+
*/
|
|
4985
|
+
path: _angular_core.InputSignal<string>;
|
|
4977
4986
|
searchText: _angular_core.Signal<string>;
|
|
4978
4987
|
readonly visibleTabCount: _angular_core.WritableSignal<number | undefined>;
|
|
4979
4988
|
readonly currentPath: _angular_core.Signal<string>;
|
|
@@ -4981,7 +4990,7 @@ declare class NavbarTabsComponent {
|
|
|
4981
4990
|
readonly moreTabs: _angular_core.Signal<NavbarTab[]>;
|
|
4982
4991
|
protected changeTab(): void;
|
|
4983
4992
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NavbarTabsComponent, never>;
|
|
4984
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NavbarTabsComponent, "navbar-tabs", never, { "showCount": { "alias": "showCount"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
4993
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NavbarTabsComponent, "navbar-tabs", never, { "showCount": { "alias": "showCount"; "required": false; "isSignal": true; }; "path": { "alias": "path"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
4985
4994
|
}
|
|
4986
4995
|
|
|
4987
4996
|
declare class NoResultComponent {
|
|
@@ -5980,9 +5989,9 @@ declare class SponsoredResultsComponent {
|
|
|
5980
5989
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5981
5990
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
5982
5991
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
5983
|
-
path
|
|
5984
|
-
filters
|
|
5985
|
-
id
|
|
5992
|
+
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
5993
|
+
filters?: _angular_core.Signal<_sinequa_atomic.LegacyFilter[] | undefined> | undefined;
|
|
5994
|
+
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
5986
5995
|
setFromUrl: (url: string) => void;
|
|
5987
5996
|
getQueryParams: () => {
|
|
5988
5997
|
f?: string;
|
|
@@ -6034,9 +6043,9 @@ declare class SponsoredResultsComponent {
|
|
|
6034
6043
|
orderBy?: string | undefined;
|
|
6035
6044
|
groupBy?: string | undefined;
|
|
6036
6045
|
neuralSearch?: boolean | undefined;
|
|
6037
|
-
path
|
|
6038
|
-
filters
|
|
6039
|
-
id
|
|
6046
|
+
path?: string | undefined;
|
|
6047
|
+
filters?: _sinequa_atomic.LegacyFilter[] | undefined;
|
|
6048
|
+
id?: string | undefined;
|
|
6040
6049
|
}>;
|
|
6041
6050
|
injector: Injector;
|
|
6042
6051
|
/**
|
|
@@ -6590,9 +6599,9 @@ declare class AdvancedSearchComponent {
|
|
|
6590
6599
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
6591
6600
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
6592
6601
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6593
|
-
path
|
|
6594
|
-
filters
|
|
6595
|
-
id
|
|
6602
|
+
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
6603
|
+
filters?: _angular_core.Signal<_sinequa_atomic.LegacyFilter[] | undefined> | undefined;
|
|
6604
|
+
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
6596
6605
|
setFromUrl: (url: string) => void;
|
|
6597
6606
|
getQueryParams: () => {
|
|
6598
6607
|
f?: string;
|
|
@@ -6644,9 +6653,9 @@ declare class AdvancedSearchComponent {
|
|
|
6644
6653
|
orderBy?: string | undefined;
|
|
6645
6654
|
groupBy?: string | undefined;
|
|
6646
6655
|
neuralSearch?: boolean | undefined;
|
|
6647
|
-
path
|
|
6648
|
-
filters
|
|
6649
|
-
id
|
|
6656
|
+
path?: string | undefined;
|
|
6657
|
+
filters?: _sinequa_atomic.LegacyFilter[] | undefined;
|
|
6658
|
+
id?: string | undefined;
|
|
6650
6659
|
}>;
|
|
6651
6660
|
protected readonly queryText: _angular_core.WritableSignal<string>;
|
|
6652
6661
|
queryName: _angular_core.Signal<string>;
|
|
@@ -6974,9 +6983,9 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
6974
6983
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
6975
6984
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
6976
6985
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
6977
|
-
path
|
|
6978
|
-
filters
|
|
6979
|
-
id
|
|
6986
|
+
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
6987
|
+
filters?: _angular_core.Signal<_sinequa_atomic.LegacyFilter[] | undefined> | undefined;
|
|
6988
|
+
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
6980
6989
|
setFromUrl: (url: string) => void;
|
|
6981
6990
|
getQueryParams: () => {
|
|
6982
6991
|
f?: string;
|
|
@@ -7028,9 +7037,9 @@ declare class DrawerPreviewComponent extends DrawerComponent {
|
|
|
7028
7037
|
orderBy?: string | undefined;
|
|
7029
7038
|
groupBy?: string | undefined;
|
|
7030
7039
|
neuralSearch?: boolean | undefined;
|
|
7031
|
-
path
|
|
7032
|
-
filters
|
|
7033
|
-
id
|
|
7040
|
+
path?: string | undefined;
|
|
7041
|
+
filters?: _sinequa_atomic.LegacyFilter[] | undefined;
|
|
7042
|
+
id?: string | undefined;
|
|
7034
7043
|
}>;
|
|
7035
7044
|
previewService: PreviewService;
|
|
7036
7045
|
getComponentsForDocumentType: (documentType?: string) => DocumentTypeMap;
|
|
@@ -7162,9 +7171,9 @@ declare class ExportDialog implements DialogInterface {
|
|
|
7162
7171
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7163
7172
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7164
7173
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7165
|
-
path
|
|
7166
|
-
filters
|
|
7167
|
-
id
|
|
7174
|
+
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
7175
|
+
filters?: _angular_core.Signal<_sinequa_atomic.LegacyFilter[] | undefined> | undefined;
|
|
7176
|
+
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
7168
7177
|
setFromUrl: (url: string) => void;
|
|
7169
7178
|
getQueryParams: () => {
|
|
7170
7179
|
f?: string;
|
|
@@ -7216,9 +7225,9 @@ declare class ExportDialog implements DialogInterface {
|
|
|
7216
7225
|
orderBy?: string | undefined;
|
|
7217
7226
|
groupBy?: string | undefined;
|
|
7218
7227
|
neuralSearch?: boolean | undefined;
|
|
7219
|
-
path
|
|
7220
|
-
filters
|
|
7221
|
-
id
|
|
7228
|
+
path?: string | undefined;
|
|
7229
|
+
filters?: _sinequa_atomic.LegacyFilter[] | undefined;
|
|
7230
|
+
id?: string | undefined;
|
|
7222
7231
|
}>;
|
|
7223
7232
|
readonly dialog: _angular_core.Signal<DialogComponent | undefined>;
|
|
7224
7233
|
private selection;
|
|
@@ -7537,9 +7546,9 @@ declare class SearchFeedbackComponent {
|
|
|
7537
7546
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7538
7547
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7539
7548
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7540
|
-
path
|
|
7541
|
-
filters
|
|
7542
|
-
id
|
|
7549
|
+
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
7550
|
+
filters?: _angular_core.Signal<_sinequa_atomic.LegacyFilter[] | undefined> | undefined;
|
|
7551
|
+
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
7543
7552
|
setFromUrl: (url: string) => void;
|
|
7544
7553
|
getQueryParams: () => {
|
|
7545
7554
|
f?: string;
|
|
@@ -7591,9 +7600,9 @@ declare class SearchFeedbackComponent {
|
|
|
7591
7600
|
orderBy?: string | undefined;
|
|
7592
7601
|
groupBy?: string | undefined;
|
|
7593
7602
|
neuralSearch?: boolean | undefined;
|
|
7594
|
-
path
|
|
7595
|
-
filters
|
|
7596
|
-
id
|
|
7603
|
+
path?: string | undefined;
|
|
7604
|
+
filters?: _sinequa_atomic.LegacyFilter[] | undefined;
|
|
7605
|
+
id?: string | undefined;
|
|
7597
7606
|
}>;
|
|
7598
7607
|
private readonly transloco;
|
|
7599
7608
|
liked: _angular_core.WritableSignal<boolean>;
|
|
@@ -7613,6 +7622,7 @@ type AggregationTitle = {
|
|
|
7613
7622
|
};
|
|
7614
7623
|
declare class AggregationComponent {
|
|
7615
7624
|
cn: typeof cn;
|
|
7625
|
+
searchInput: _angular_core.Signal<ElementRef<HTMLInputElement> | undefined>;
|
|
7616
7626
|
aggregationsStore: {
|
|
7617
7627
|
aggregations: _angular_core.Signal<Aggregation[]>;
|
|
7618
7628
|
update: (aggregations: Aggregation[]) => void;
|
|
@@ -7650,9 +7660,9 @@ declare class AggregationComponent {
|
|
|
7650
7660
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7651
7661
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
7652
7662
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
7653
|
-
path
|
|
7654
|
-
filters
|
|
7655
|
-
id
|
|
7663
|
+
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
7664
|
+
filters?: _angular_core.Signal<LegacyFilter[] | undefined> | undefined;
|
|
7665
|
+
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
7656
7666
|
setFromUrl: (url: string) => void;
|
|
7657
7667
|
getQueryParams: () => {
|
|
7658
7668
|
f?: string;
|
|
@@ -7704,9 +7714,9 @@ declare class AggregationComponent {
|
|
|
7704
7714
|
orderBy?: string | undefined;
|
|
7705
7715
|
groupBy?: string | undefined;
|
|
7706
7716
|
neuralSearch?: boolean | undefined;
|
|
7707
|
-
path
|
|
7708
|
-
filters
|
|
7709
|
-
id
|
|
7717
|
+
path?: string | undefined;
|
|
7718
|
+
filters?: LegacyFilter[] | undefined;
|
|
7719
|
+
id?: string | undefined;
|
|
7710
7720
|
}>;
|
|
7711
7721
|
appStore: {
|
|
7712
7722
|
name: _angular_core.Signal<string>;
|
|
@@ -8235,7 +8245,7 @@ declare class FilterButtonComponent {
|
|
|
8235
8245
|
column: _angular_core.InputSignal<string>;
|
|
8236
8246
|
position: _angular_core.InputSignal<Placement>;
|
|
8237
8247
|
offset: _angular_core.InputSignal<number>;
|
|
8238
|
-
protected variant: _angular_core.WritableSignal<"default" | "icon" | "none" | "
|
|
8248
|
+
protected variant: _angular_core.WritableSignal<"default" | "icon" | "none" | "primary" | "secondary" | "destructive" | "ai" | "outline" | "ghost" | "link" | null | undefined>;
|
|
8239
8249
|
protected filter: _angular_core.WritableSignal<CFilterEx>;
|
|
8240
8250
|
popoverRef: _angular_core.Signal<PopoverComponent | undefined>;
|
|
8241
8251
|
protected nativeElement: any;
|
|
@@ -8276,9 +8286,9 @@ declare class FilterButtonComponent {
|
|
|
8276
8286
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8277
8287
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8278
8288
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8279
|
-
path
|
|
8280
|
-
filters
|
|
8281
|
-
id
|
|
8289
|
+
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
8290
|
+
filters?: _angular_core.Signal<LegacyFilter[] | undefined> | undefined;
|
|
8291
|
+
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
8282
8292
|
setFromUrl: (url: string) => void;
|
|
8283
8293
|
getQueryParams: () => {
|
|
8284
8294
|
f?: string;
|
|
@@ -8330,9 +8340,9 @@ declare class FilterButtonComponent {
|
|
|
8330
8340
|
orderBy?: string | undefined;
|
|
8331
8341
|
groupBy?: string | undefined;
|
|
8332
8342
|
neuralSearch?: boolean | undefined;
|
|
8333
|
-
path
|
|
8334
|
-
filters
|
|
8335
|
-
id
|
|
8343
|
+
path?: string | undefined;
|
|
8344
|
+
filters?: LegacyFilter[] | undefined;
|
|
8345
|
+
id?: string | undefined;
|
|
8336
8346
|
}>;
|
|
8337
8347
|
protected appStore: {
|
|
8338
8348
|
name: _angular_core.Signal<string>;
|
|
@@ -8877,9 +8887,9 @@ declare class MoreButtonComponent {
|
|
|
8877
8887
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8878
8888
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
8879
8889
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
8880
|
-
path
|
|
8881
|
-
filters
|
|
8882
|
-
id
|
|
8890
|
+
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
8891
|
+
filters?: _angular_core.Signal<_sinequa_atomic.LegacyFilter[] | undefined> | undefined;
|
|
8892
|
+
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
8883
8893
|
setFromUrl: (url: string) => void;
|
|
8884
8894
|
getQueryParams: () => {
|
|
8885
8895
|
f?: string;
|
|
@@ -8931,9 +8941,9 @@ declare class MoreButtonComponent {
|
|
|
8931
8941
|
orderBy?: string | undefined;
|
|
8932
8942
|
groupBy?: string | undefined;
|
|
8933
8943
|
neuralSearch?: boolean | undefined;
|
|
8934
|
-
path
|
|
8935
|
-
filters
|
|
8936
|
-
id
|
|
8944
|
+
path?: string | undefined;
|
|
8945
|
+
filters?: _sinequa_atomic.LegacyFilter[] | undefined;
|
|
8946
|
+
id?: string | undefined;
|
|
8937
8947
|
}>;
|
|
8938
8948
|
nativeElement: any;
|
|
8939
8949
|
aggregationsService: AggregationsService;
|
|
@@ -9293,9 +9303,9 @@ declare class FiltersBarComponent {
|
|
|
9293
9303
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9294
9304
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9295
9305
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9296
|
-
path
|
|
9297
|
-
filters
|
|
9298
|
-
id
|
|
9306
|
+
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
9307
|
+
filters?: _angular_core.Signal<_sinequa_atomic.LegacyFilter[] | undefined> | undefined;
|
|
9308
|
+
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
9299
9309
|
setFromUrl: (url: string) => void;
|
|
9300
9310
|
getQueryParams: () => {
|
|
9301
9311
|
f?: string;
|
|
@@ -9347,9 +9357,9 @@ declare class FiltersBarComponent {
|
|
|
9347
9357
|
orderBy?: string | undefined;
|
|
9348
9358
|
groupBy?: string | undefined;
|
|
9349
9359
|
neuralSearch?: boolean | undefined;
|
|
9350
|
-
path
|
|
9351
|
-
filters
|
|
9352
|
-
id
|
|
9360
|
+
path?: string | undefined;
|
|
9361
|
+
filters?: _sinequa_atomic.LegacyFilter[] | undefined;
|
|
9362
|
+
id?: string | undefined;
|
|
9353
9363
|
}>;
|
|
9354
9364
|
protected el: ElementRef<any>;
|
|
9355
9365
|
protected readonly transloco: TranslocoService;
|
|
@@ -9717,9 +9727,9 @@ declare class MoreComponent {
|
|
|
9717
9727
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9718
9728
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
9719
9729
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
9720
|
-
path
|
|
9721
|
-
filters
|
|
9722
|
-
id
|
|
9730
|
+
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
9731
|
+
filters?: _angular_core.Signal<_sinequa_atomic.LegacyFilter[] | undefined> | undefined;
|
|
9732
|
+
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
9723
9733
|
setFromUrl: (url: string) => void;
|
|
9724
9734
|
getQueryParams: () => {
|
|
9725
9735
|
f?: string;
|
|
@@ -9771,9 +9781,9 @@ declare class MoreComponent {
|
|
|
9771
9781
|
orderBy?: string | undefined;
|
|
9772
9782
|
groupBy?: string | undefined;
|
|
9773
9783
|
neuralSearch?: boolean | undefined;
|
|
9774
|
-
path
|
|
9775
|
-
filters
|
|
9776
|
-
id
|
|
9784
|
+
path?: string | undefined;
|
|
9785
|
+
filters?: _sinequa_atomic.LegacyFilter[] | undefined;
|
|
9786
|
+
id?: string | undefined;
|
|
9777
9787
|
}>;
|
|
9778
9788
|
aggregationsService: AggregationsService;
|
|
9779
9789
|
/**
|
|
@@ -10163,7 +10173,7 @@ declare class LabelsEditDialog implements DialogInterface {
|
|
|
10163
10173
|
}
|
|
10164
10174
|
|
|
10165
10175
|
type Article = Article$1 & {
|
|
10166
|
-
[key: string]:
|
|
10176
|
+
[key: string]: unknown;
|
|
10167
10177
|
};
|
|
10168
10178
|
declare class MultiSelectLabelsComponent {
|
|
10169
10179
|
injector: Injector;
|
|
@@ -10178,6 +10188,7 @@ declare class MultiSelectLabelsComponent {
|
|
|
10178
10188
|
protected popover: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
10179
10189
|
protected popoverElement: _angular_core.Signal<any>;
|
|
10180
10190
|
protected labels: _angular_core.WritableSignal<string[]>;
|
|
10191
|
+
protected hasError: _angular_core.WritableSignal<boolean>;
|
|
10181
10192
|
protected id: _angular_core.WritableSignal<string>;
|
|
10182
10193
|
constructor();
|
|
10183
10194
|
itemClicked(label: string): void;
|
|
@@ -10216,7 +10227,6 @@ declare class MultiSelectLabelsComponent {
|
|
|
10216
10227
|
* Ensure that `this.article`, `this.labelsField`, and `this.labels` return valid values
|
|
10217
10228
|
* before invoking this method to avoid runtime errors.
|
|
10218
10229
|
*
|
|
10219
|
-
* @throws {TypeError} If `this.article` or `this.labelsField` returns `undefined`.
|
|
10220
10230
|
*/
|
|
10221
10231
|
updateArticleWithLabels(): void;
|
|
10222
10232
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MultiSelectLabelsComponent, never>;
|
|
@@ -10333,9 +10343,9 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
10333
10343
|
orderBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
10334
10344
|
groupBy?: _angular_core.Signal<string | undefined> | undefined;
|
|
10335
10345
|
neuralSearch?: _angular_core.Signal<boolean | undefined> | undefined;
|
|
10336
|
-
path
|
|
10337
|
-
filters
|
|
10338
|
-
id
|
|
10346
|
+
path?: _angular_core.Signal<string | undefined> | undefined;
|
|
10347
|
+
filters?: _angular_core.Signal<_sinequa_atomic.LegacyFilter[] | undefined> | undefined;
|
|
10348
|
+
id?: _angular_core.Signal<string | undefined> | undefined;
|
|
10339
10349
|
setFromUrl: (url: string) => void;
|
|
10340
10350
|
getQueryParams: () => {
|
|
10341
10351
|
f?: string;
|
|
@@ -10387,9 +10397,9 @@ declare class SavedSearchDialog implements DialogInterface {
|
|
|
10387
10397
|
orderBy?: string | undefined;
|
|
10388
10398
|
groupBy?: string | undefined;
|
|
10389
10399
|
neuralSearch?: boolean | undefined;
|
|
10390
|
-
path
|
|
10391
|
-
filters
|
|
10392
|
-
id
|
|
10400
|
+
path?: string | undefined;
|
|
10401
|
+
filters?: _sinequa_atomic.LegacyFilter[] | undefined;
|
|
10402
|
+
id?: string | undefined;
|
|
10393
10403
|
}>;
|
|
10394
10404
|
private readonly transloco;
|
|
10395
10405
|
dialog: _angular_core.Signal<DialogComponent | undefined>;
|