@ethlete/cdk 4.70.0 → 4.70.1
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/CHANGELOG.md +6 -0
- package/fesm2022/ethlete-cdk.mjs +0 -1
- package/fesm2022/ethlete-cdk.mjs.map +1 -1
- package/index.d.ts +10 -449
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -11,9 +11,8 @@ import * as _angular_platform_browser from '@angular/platform-browser';
|
|
|
11
11
|
import * as i1 from '@ethlete/core';
|
|
12
12
|
import { ObserveVisibilityDirective, TypedQueryList, Primitive, SelectionModelBinding, SelectionModel, ActiveSelectionModel, AnimatedOverlayComponentBase, ClickOutsideDirective, AnimatedLifecycleDirective, AnimatedOverlayDirective, NgClassType, Breakpoint, RouterStateService, ViewportService, RootBoundaryDirective, AnimatedLifecycleState, ScrollObserverScrollState, ScrollToElementOptions } from '@ethlete/core';
|
|
13
13
|
import { OffsetOptions, Placement, Padding } from '@floating-ui/dom';
|
|
14
|
-
import * as _angular_common_module_d from '@angular/common/module.d';
|
|
15
14
|
import * as _ethlete_query from '@ethlete/query';
|
|
16
|
-
import { AnyQuery, AnyQueryCollection, EmptyObject, QueryResponseOf, QueryState, RequestError,
|
|
15
|
+
import { AnyQuery, ExperimentalQuery, AnyQueryCollection, EmptyObject, QueryResponseOf, QueryState, RequestError, SortDirection, Sort } from '@ethlete/query';
|
|
17
16
|
import { FocusOrigin, FocusTrapFactory, InteractivityChecker, FocusMonitor, FocusableOption, FocusKeyManager } from '@angular/cdk/a11y';
|
|
18
17
|
import { AbstractControl, ControlValueAccessor, ValidationErrors, FormGroup, FormControl } from '@angular/forms';
|
|
19
18
|
import { Platform } from '@angular/cdk/platform';
|
|
@@ -4262,452 +4261,14 @@ declare class QueryButtonDirective {
|
|
|
4262
4261
|
get skipLoading(): boolean;
|
|
4263
4262
|
set skipLoading(value: boolean);
|
|
4264
4263
|
private _skipLoading;
|
|
4265
|
-
get query(): AnyQuery | AnyQueryCollection | null;
|
|
4266
|
-
set query(v: AnyQuery | AnyQueryCollection | null);
|
|
4267
|
-
get query$(): rxjs.Observable<AnyQuery | {
|
|
4264
|
+
get query(): AnyQuery | ExperimentalQuery.AnyLegacyQuery | AnyQueryCollection | null;
|
|
4265
|
+
set query(v: AnyQuery | ExperimentalQuery.AnyLegacyQuery | AnyQueryCollection | null);
|
|
4266
|
+
get query$(): rxjs.Observable<AnyQuery | /*elided*/ any | {
|
|
4268
4267
|
type: string;
|
|
4269
4268
|
query: _ethlete_query.Query<any, any, any, any, any, any> | {
|
|
4270
|
-
newQuery:
|
|
4271
|
-
args: i0.Signal<Omit<any, "response"> | null>;
|
|
4272
|
-
response: i0.Signal<any>;
|
|
4273
|
-
latestHttpEvent: i0.Signal<_angular_common_module_d.HttpEvent<any> | null>;
|
|
4274
|
-
loading: i0.Signal<{
|
|
4275
|
-
executeTime: number;
|
|
4276
|
-
progress: {
|
|
4277
|
-
total: number;
|
|
4278
|
-
loaded: number;
|
|
4279
|
-
percentage: number;
|
|
4280
|
-
speed: number | null;
|
|
4281
|
-
remainingTime: number | null;
|
|
4282
|
-
} | null;
|
|
4283
|
-
} | null>;
|
|
4284
|
-
error: i0.Signal<({
|
|
4285
|
-
raw: _angular_common_module_d.HttpErrorResponse;
|
|
4286
|
-
retryState: {
|
|
4287
|
-
retry: false;
|
|
4288
|
-
} | {
|
|
4289
|
-
retry: true;
|
|
4290
|
-
delay: number;
|
|
4291
|
-
};
|
|
4292
|
-
code: _angular_common_module_d.HttpStatusCode;
|
|
4293
|
-
} & ({
|
|
4294
|
-
isList: true;
|
|
4295
|
-
errors: {
|
|
4296
|
-
message: string;
|
|
4297
|
-
}[];
|
|
4298
|
-
} | {
|
|
4299
|
-
isList: false;
|
|
4300
|
-
error: {
|
|
4301
|
-
message: string;
|
|
4302
|
-
};
|
|
4303
|
-
})) | null>;
|
|
4304
|
-
lastTimeExecutedAt: i0.Signal<number | null>;
|
|
4305
|
-
id: i0.Signal<string>;
|
|
4306
|
-
executionState: i0.Signal<({
|
|
4307
|
-
type: "failure";
|
|
4308
|
-
error: {
|
|
4309
|
-
raw: _angular_common_module_d.HttpErrorResponse;
|
|
4310
|
-
retryState: {
|
|
4311
|
-
retry: false;
|
|
4312
|
-
} | {
|
|
4313
|
-
retry: true;
|
|
4314
|
-
delay: number;
|
|
4315
|
-
};
|
|
4316
|
-
code: _angular_common_module_d.HttpStatusCode;
|
|
4317
|
-
} & ({
|
|
4318
|
-
isList: true;
|
|
4319
|
-
errors: {
|
|
4320
|
-
message: string;
|
|
4321
|
-
}[];
|
|
4322
|
-
} | {
|
|
4323
|
-
isList: false;
|
|
4324
|
-
error: {
|
|
4325
|
-
message: string;
|
|
4326
|
-
};
|
|
4327
|
-
});
|
|
4328
|
-
} | {
|
|
4329
|
-
type: "success";
|
|
4330
|
-
response: any;
|
|
4331
|
-
} | ({
|
|
4332
|
-
type: "loading";
|
|
4333
|
-
hasCachedResponse: false;
|
|
4334
|
-
loading: {
|
|
4335
|
-
executeTime: number;
|
|
4336
|
-
progress: {
|
|
4337
|
-
total: number;
|
|
4338
|
-
loaded: number;
|
|
4339
|
-
percentage: number;
|
|
4340
|
-
speed: number | null;
|
|
4341
|
-
remainingTime: number | null;
|
|
4342
|
-
} | null;
|
|
4343
|
-
};
|
|
4344
|
-
} | {
|
|
4345
|
-
type: "loading";
|
|
4346
|
-
hasCachedResponse: true;
|
|
4347
|
-
loading: {
|
|
4348
|
-
executeTime: number;
|
|
4349
|
-
progress: {
|
|
4350
|
-
total: number;
|
|
4351
|
-
loaded: number;
|
|
4352
|
-
percentage: number;
|
|
4353
|
-
speed: number | null;
|
|
4354
|
-
remainingTime: number | null;
|
|
4355
|
-
} | null;
|
|
4356
|
-
};
|
|
4357
|
-
cachedResponse: any;
|
|
4358
|
-
})) | null>;
|
|
4359
|
-
} & {
|
|
4360
|
-
execute: (executeArgs?: {
|
|
4361
|
-
args?: Omit<any, "response"> | null | undefined;
|
|
4362
|
-
options?: {
|
|
4363
|
-
allowCache?: boolean;
|
|
4364
|
-
};
|
|
4365
|
-
} | undefined) => void;
|
|
4366
|
-
createSnapshot: () => {
|
|
4367
|
-
args: i0.Signal<Omit<any, "response"> | null>;
|
|
4368
|
-
response: i0.Signal<any>;
|
|
4369
|
-
latestHttpEvent: i0.Signal<_angular_common_module_d.HttpEvent<any> | null>;
|
|
4370
|
-
loading: i0.Signal<{
|
|
4371
|
-
executeTime: number;
|
|
4372
|
-
progress: {
|
|
4373
|
-
total: number;
|
|
4374
|
-
loaded: number;
|
|
4375
|
-
percentage: number;
|
|
4376
|
-
speed: number | null;
|
|
4377
|
-
remainingTime: number | null;
|
|
4378
|
-
} | null;
|
|
4379
|
-
} | null>;
|
|
4380
|
-
error: i0.Signal<({
|
|
4381
|
-
raw: _angular_common_module_d.HttpErrorResponse;
|
|
4382
|
-
retryState: {
|
|
4383
|
-
retry: false;
|
|
4384
|
-
} | {
|
|
4385
|
-
retry: true;
|
|
4386
|
-
delay: number;
|
|
4387
|
-
};
|
|
4388
|
-
code: _angular_common_module_d.HttpStatusCode;
|
|
4389
|
-
} & ({
|
|
4390
|
-
isList: true;
|
|
4391
|
-
errors: {
|
|
4392
|
-
message: string;
|
|
4393
|
-
}[];
|
|
4394
|
-
} | {
|
|
4395
|
-
isList: false;
|
|
4396
|
-
error: {
|
|
4397
|
-
message: string;
|
|
4398
|
-
};
|
|
4399
|
-
})) | null>;
|
|
4400
|
-
lastTimeExecutedAt: i0.Signal<number | null>;
|
|
4401
|
-
id: i0.Signal<string>;
|
|
4402
|
-
executionState: i0.Signal<({
|
|
4403
|
-
type: "failure";
|
|
4404
|
-
error: {
|
|
4405
|
-
raw: _angular_common_module_d.HttpErrorResponse;
|
|
4406
|
-
retryState: {
|
|
4407
|
-
retry: false;
|
|
4408
|
-
} | {
|
|
4409
|
-
retry: true;
|
|
4410
|
-
delay: number;
|
|
4411
|
-
};
|
|
4412
|
-
code: _angular_common_module_d.HttpStatusCode;
|
|
4413
|
-
} & ({
|
|
4414
|
-
isList: true;
|
|
4415
|
-
errors: {
|
|
4416
|
-
message: string;
|
|
4417
|
-
}[];
|
|
4418
|
-
} | {
|
|
4419
|
-
isList: false;
|
|
4420
|
-
error: {
|
|
4421
|
-
message: string;
|
|
4422
|
-
};
|
|
4423
|
-
});
|
|
4424
|
-
} | {
|
|
4425
|
-
type: "success";
|
|
4426
|
-
response: any;
|
|
4427
|
-
} | ({
|
|
4428
|
-
type: "loading";
|
|
4429
|
-
hasCachedResponse: false;
|
|
4430
|
-
loading: {
|
|
4431
|
-
executeTime: number;
|
|
4432
|
-
progress: {
|
|
4433
|
-
total: number;
|
|
4434
|
-
loaded: number;
|
|
4435
|
-
percentage: number;
|
|
4436
|
-
speed: number | null;
|
|
4437
|
-
remainingTime: number | null;
|
|
4438
|
-
} | null;
|
|
4439
|
-
};
|
|
4440
|
-
} | {
|
|
4441
|
-
type: "loading";
|
|
4442
|
-
hasCachedResponse: true;
|
|
4443
|
-
loading: {
|
|
4444
|
-
executeTime: number;
|
|
4445
|
-
progress: {
|
|
4446
|
-
total: number;
|
|
4447
|
-
loaded: number;
|
|
4448
|
-
percentage: number;
|
|
4449
|
-
speed: number | null;
|
|
4450
|
-
remainingTime: number | null;
|
|
4451
|
-
} | null;
|
|
4452
|
-
};
|
|
4453
|
-
cachedResponse: any;
|
|
4454
|
-
})) | null>;
|
|
4455
|
-
} & {
|
|
4456
|
-
isAlive: i0.Signal<boolean>;
|
|
4457
|
-
};
|
|
4458
|
-
reset: () => void;
|
|
4459
|
-
asReadonly: () => {
|
|
4460
|
-
error: i0.Signal<({
|
|
4461
|
-
raw: _angular_common_module_d.HttpErrorResponse;
|
|
4462
|
-
retryState: {
|
|
4463
|
-
retry: false;
|
|
4464
|
-
} | {
|
|
4465
|
-
retry: true;
|
|
4466
|
-
delay: number;
|
|
4467
|
-
};
|
|
4468
|
-
code: _angular_common_module_d.HttpStatusCode;
|
|
4469
|
-
} & ({
|
|
4470
|
-
isList: true;
|
|
4471
|
-
errors: {
|
|
4472
|
-
message: string;
|
|
4473
|
-
}[];
|
|
4474
|
-
} | {
|
|
4475
|
-
isList: false;
|
|
4476
|
-
error: {
|
|
4477
|
-
message: string;
|
|
4478
|
-
};
|
|
4479
|
-
})) | null>;
|
|
4480
|
-
id: i0.Signal<string>;
|
|
4481
|
-
response: i0.Signal<any>;
|
|
4482
|
-
loading: i0.Signal<{
|
|
4483
|
-
executeTime: number;
|
|
4484
|
-
progress: {
|
|
4485
|
-
total: number;
|
|
4486
|
-
loaded: number;
|
|
4487
|
-
percentage: number;
|
|
4488
|
-
speed: number | null;
|
|
4489
|
-
remainingTime: number | null;
|
|
4490
|
-
} | null;
|
|
4491
|
-
} | null>;
|
|
4492
|
-
args: i0.Signal<Omit<any, "response"> | null>;
|
|
4493
|
-
latestHttpEvent: i0.Signal<_angular_common_module_d.HttpEvent<any> | null>;
|
|
4494
|
-
lastTimeExecutedAt: i0.Signal<number | null>;
|
|
4495
|
-
executionState: i0.Signal<({
|
|
4496
|
-
type: "failure";
|
|
4497
|
-
error: {
|
|
4498
|
-
raw: _angular_common_module_d.HttpErrorResponse;
|
|
4499
|
-
retryState: {
|
|
4500
|
-
retry: false;
|
|
4501
|
-
} | {
|
|
4502
|
-
retry: true;
|
|
4503
|
-
delay: number;
|
|
4504
|
-
};
|
|
4505
|
-
code: _angular_common_module_d.HttpStatusCode;
|
|
4506
|
-
} & ({
|
|
4507
|
-
isList: true;
|
|
4508
|
-
errors: {
|
|
4509
|
-
message: string;
|
|
4510
|
-
}[];
|
|
4511
|
-
} | {
|
|
4512
|
-
isList: false;
|
|
4513
|
-
error: {
|
|
4514
|
-
message: string;
|
|
4515
|
-
};
|
|
4516
|
-
});
|
|
4517
|
-
} | {
|
|
4518
|
-
type: "success";
|
|
4519
|
-
response: any;
|
|
4520
|
-
} | ({
|
|
4521
|
-
type: "loading";
|
|
4522
|
-
hasCachedResponse: false;
|
|
4523
|
-
loading: {
|
|
4524
|
-
executeTime: number;
|
|
4525
|
-
progress: {
|
|
4526
|
-
total: number;
|
|
4527
|
-
loaded: number;
|
|
4528
|
-
percentage: number;
|
|
4529
|
-
speed: number | null;
|
|
4530
|
-
remainingTime: number | null;
|
|
4531
|
-
} | null;
|
|
4532
|
-
};
|
|
4533
|
-
} | {
|
|
4534
|
-
type: "loading";
|
|
4535
|
-
hasCachedResponse: true;
|
|
4536
|
-
loading: {
|
|
4537
|
-
executeTime: number;
|
|
4538
|
-
progress: {
|
|
4539
|
-
total: number;
|
|
4540
|
-
loaded: number;
|
|
4541
|
-
percentage: number;
|
|
4542
|
-
speed: number | null;
|
|
4543
|
-
remainingTime: number | null;
|
|
4544
|
-
} | null;
|
|
4545
|
-
};
|
|
4546
|
-
cachedResponse: any;
|
|
4547
|
-
})) | null>;
|
|
4548
|
-
createSnapshot: () => {
|
|
4549
|
-
args: i0.Signal<Omit<any, "response"> | null>;
|
|
4550
|
-
response: i0.Signal<any>;
|
|
4551
|
-
latestHttpEvent: i0.Signal<_angular_common_module_d.HttpEvent<any> | null>;
|
|
4552
|
-
loading: i0.Signal<{
|
|
4553
|
-
executeTime: number;
|
|
4554
|
-
progress: {
|
|
4555
|
-
total: number;
|
|
4556
|
-
loaded: number;
|
|
4557
|
-
percentage: number;
|
|
4558
|
-
speed: number | null;
|
|
4559
|
-
remainingTime: number | null;
|
|
4560
|
-
} | null;
|
|
4561
|
-
} | null>;
|
|
4562
|
-
error: i0.Signal<({
|
|
4563
|
-
raw: _angular_common_module_d.HttpErrorResponse;
|
|
4564
|
-
retryState: {
|
|
4565
|
-
retry: false;
|
|
4566
|
-
} | {
|
|
4567
|
-
retry: true;
|
|
4568
|
-
delay: number;
|
|
4569
|
-
};
|
|
4570
|
-
code: _angular_common_module_d.HttpStatusCode;
|
|
4571
|
-
} & ({
|
|
4572
|
-
isList: true;
|
|
4573
|
-
errors: {
|
|
4574
|
-
message: string;
|
|
4575
|
-
}[];
|
|
4576
|
-
} | {
|
|
4577
|
-
isList: false;
|
|
4578
|
-
error: {
|
|
4579
|
-
message: string;
|
|
4580
|
-
};
|
|
4581
|
-
})) | null>;
|
|
4582
|
-
lastTimeExecutedAt: i0.Signal<number | null>;
|
|
4583
|
-
id: i0.Signal<string>;
|
|
4584
|
-
executionState: i0.Signal<({
|
|
4585
|
-
type: "failure";
|
|
4586
|
-
error: {
|
|
4587
|
-
raw: _angular_common_module_d.HttpErrorResponse;
|
|
4588
|
-
retryState: {
|
|
4589
|
-
retry: false;
|
|
4590
|
-
} | {
|
|
4591
|
-
retry: true;
|
|
4592
|
-
delay: number;
|
|
4593
|
-
};
|
|
4594
|
-
code: _angular_common_module_d.HttpStatusCode;
|
|
4595
|
-
} & ({
|
|
4596
|
-
isList: true;
|
|
4597
|
-
errors: {
|
|
4598
|
-
message: string;
|
|
4599
|
-
}[];
|
|
4600
|
-
} | {
|
|
4601
|
-
isList: false;
|
|
4602
|
-
error: {
|
|
4603
|
-
message: string;
|
|
4604
|
-
};
|
|
4605
|
-
});
|
|
4606
|
-
} | {
|
|
4607
|
-
type: "success";
|
|
4608
|
-
response: any;
|
|
4609
|
-
} | ({
|
|
4610
|
-
type: "loading";
|
|
4611
|
-
hasCachedResponse: false;
|
|
4612
|
-
loading: {
|
|
4613
|
-
executeTime: number;
|
|
4614
|
-
progress: {
|
|
4615
|
-
total: number;
|
|
4616
|
-
loaded: number;
|
|
4617
|
-
percentage: number;
|
|
4618
|
-
speed: number | null;
|
|
4619
|
-
remainingTime: number | null;
|
|
4620
|
-
} | null;
|
|
4621
|
-
};
|
|
4622
|
-
} | {
|
|
4623
|
-
type: "loading";
|
|
4624
|
-
hasCachedResponse: true;
|
|
4625
|
-
loading: {
|
|
4626
|
-
executeTime: number;
|
|
4627
|
-
progress: {
|
|
4628
|
-
total: number;
|
|
4629
|
-
loaded: number;
|
|
4630
|
-
percentage: number;
|
|
4631
|
-
speed: number | null;
|
|
4632
|
-
remainingTime: number | null;
|
|
4633
|
-
} | null;
|
|
4634
|
-
};
|
|
4635
|
-
cachedResponse: any;
|
|
4636
|
-
})) | null>;
|
|
4637
|
-
} & {
|
|
4638
|
-
isAlive: i0.Signal<boolean>;
|
|
4639
|
-
};
|
|
4640
|
-
};
|
|
4641
|
-
subtle: {
|
|
4642
|
-
destroy: () => void;
|
|
4643
|
-
setResponse: (response: any) => void;
|
|
4644
|
-
request: i0.Signal<{
|
|
4645
|
-
execute: (options?: {
|
|
4646
|
-
allowCache?: boolean;
|
|
4647
|
-
}) => boolean;
|
|
4648
|
-
destroy: () => boolean;
|
|
4649
|
-
loading: i0.Signal<{
|
|
4650
|
-
executeTime: number;
|
|
4651
|
-
progress: {
|
|
4652
|
-
total: number;
|
|
4653
|
-
loaded: number;
|
|
4654
|
-
percentage: number;
|
|
4655
|
-
speed: number | null;
|
|
4656
|
-
remainingTime: number | null;
|
|
4657
|
-
} | null;
|
|
4658
|
-
} | null>;
|
|
4659
|
-
error: i0.Signal<({
|
|
4660
|
-
raw: _angular_common_module_d.HttpErrorResponse;
|
|
4661
|
-
retryState: {
|
|
4662
|
-
retry: false;
|
|
4663
|
-
} | {
|
|
4664
|
-
retry: true;
|
|
4665
|
-
delay: number;
|
|
4666
|
-
};
|
|
4667
|
-
code: _angular_common_module_d.HttpStatusCode;
|
|
4668
|
-
} & ({
|
|
4669
|
-
isList: true;
|
|
4670
|
-
errors: {
|
|
4671
|
-
message: string;
|
|
4672
|
-
}[];
|
|
4673
|
-
} | {
|
|
4674
|
-
isList: false;
|
|
4675
|
-
error: {
|
|
4676
|
-
message: string;
|
|
4677
|
-
};
|
|
4678
|
-
})) | null>;
|
|
4679
|
-
response: i0.Signal<any>;
|
|
4680
|
-
currentEvent: i0.Signal<{
|
|
4681
|
-
type: "error";
|
|
4682
|
-
error: {
|
|
4683
|
-
raw: _angular_common_module_d.HttpErrorResponse;
|
|
4684
|
-
retryState: {
|
|
4685
|
-
retry: false;
|
|
4686
|
-
} | {
|
|
4687
|
-
retry: true;
|
|
4688
|
-
delay: number;
|
|
4689
|
-
};
|
|
4690
|
-
code: _angular_common_module_d.HttpStatusCode;
|
|
4691
|
-
} & ({
|
|
4692
|
-
isList: true;
|
|
4693
|
-
errors: {
|
|
4694
|
-
message: string;
|
|
4695
|
-
}[];
|
|
4696
|
-
} | {
|
|
4697
|
-
isList: false;
|
|
4698
|
-
error: {
|
|
4699
|
-
message: string;
|
|
4700
|
-
};
|
|
4701
|
-
});
|
|
4702
|
-
} | _angular_common_module_d.HttpEvent<any> | null>;
|
|
4703
|
-
isStale: i0.Signal<boolean>;
|
|
4704
|
-
} | null>;
|
|
4705
|
-
destroyRef: i0.DestroyRef;
|
|
4706
|
-
injector: i0.Injector;
|
|
4707
|
-
};
|
|
4708
|
-
};
|
|
4269
|
+
newQuery: ExperimentalQuery.Query<any>;
|
|
4709
4270
|
_arguments: Omit<any, "response">;
|
|
4710
|
-
entity?: _ethlete_query.QueryEntityConfig<any, any, any,
|
|
4271
|
+
entity?: _ethlete_query.QueryEntityConfig<any, any, any, Omit<any, "response" | "headers"> & _ethlete_query.WithHeaders, any> | undefined;
|
|
4711
4272
|
state$: rxjs.Observable<_ethlete_query.QueryState<any>>;
|
|
4712
4273
|
get rawState(): _ethlete_query.QueryState<any>;
|
|
4713
4274
|
get isExpired(): boolean | undefined;
|
|
@@ -8419,7 +7980,7 @@ declare class OverlayRef<T = any, R = any> {
|
|
|
8419
7980
|
}
|
|
8420
7981
|
|
|
8421
7982
|
declare const FILTER_OVERLAY_CONFIG: InjectionToken<FilterOverlayConfig<FormGroup<any>, AnyQuery>>;
|
|
8422
|
-
type FilterOverlayConfig<F extends FormGroup<any> = FormGroup<any>, Q extends AnyQuery = AnyQuery> = {
|
|
7983
|
+
type FilterOverlayConfig<F extends FormGroup<any> = FormGroup<any>, Q extends AnyQuery | ExperimentalQuery.AnyLegacyQuery = AnyQuery> = {
|
|
8423
7984
|
/**
|
|
8424
7985
|
* The form to use.
|
|
8425
7986
|
*/
|
|
@@ -8475,7 +8036,7 @@ declare class FilterOverlayService<F extends FormGroup, C extends ComponentType<
|
|
|
8475
8036
|
static ɵfac: i0.ɵɵFactoryDeclaration<FilterOverlayService<any, any>, never>;
|
|
8476
8037
|
static ɵprov: i0.ɵɵInjectableDeclaration<FilterOverlayService<any, any>>;
|
|
8477
8038
|
}
|
|
8478
|
-
declare const provideFilterOverlayConfig: <F extends FormGroup<any> = FormGroup<any>, Q extends AnyQuery = AnyQuery>(config: FilterOverlayConfig<F, Q>) => Provider[];
|
|
8039
|
+
declare const provideFilterOverlayConfig: <F extends FormGroup<any> = FormGroup<any>, Q extends AnyQuery | ExperimentalQuery.AnyLegacyQuery = AnyQuery>(config: FilterOverlayConfig<F, Q>) => Provider[];
|
|
8479
8040
|
|
|
8480
8041
|
declare const createOverlayConfig: <D = unknown>(globalConfig?: Partial<OverlayConfig<D>> | null | undefined, localConfig?: Partial<OverlayConfig<D>> | null | undefined) => OverlayConfig<D>;
|
|
8481
8042
|
|
|
@@ -9610,12 +9171,12 @@ interface QueryErrorItem {
|
|
|
9610
9171
|
declare const QUERY_ERROR_TOKEN: InjectionToken<QueryErrorDirective>;
|
|
9611
9172
|
declare class QueryErrorDirective {
|
|
9612
9173
|
error: i0.InputSignal<RequestError<unknown> | null>;
|
|
9613
|
-
query: i0.InputSignal<AnyQuery | {
|
|
9174
|
+
query: i0.InputSignal<AnyQuery | /*elided*/ any | {
|
|
9614
9175
|
type: string;
|
|
9615
9176
|
query: _ethlete_query.Query<any, any, any, any, any, any> | {
|
|
9616
9177
|
newQuery: ExperimentalQuery.Query<any>;
|
|
9617
9178
|
_arguments: Omit<any, "response">;
|
|
9618
|
-
entity?: _ethlete_query.QueryEntityConfig<any, any, any,
|
|
9179
|
+
entity?: _ethlete_query.QueryEntityConfig<any, any, any, Omit<any, "response" | "headers"> & _ethlete_query.WithHeaders, any> | undefined;
|
|
9619
9180
|
state$: rxjs.Observable<_ethlete_query.QueryState<any>>;
|
|
9620
9181
|
get rawState(): _ethlete_query.QueryState<any>;
|
|
9621
9182
|
get isExpired(): boolean | undefined;
|