@ethlete/cdk 4.69.1 → 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 +12 -0
- package/fesm2022/ethlete-cdk.mjs +795 -793
- package/fesm2022/ethlete-cdk.mjs.map +1 -1
- package/index.d.ts +31 -453
- package/package.json +8 -8
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';
|
|
@@ -4180,7 +4179,7 @@ declare class BreadcrumbTemplateDirective {
|
|
|
4180
4179
|
|
|
4181
4180
|
declare const BreadcrumbImports: readonly [typeof BreadcrumbOutletComponent, typeof BreadcrumbComponent, typeof BreadcrumbItemDirective, typeof BreadcrumbItemTemplateDirective, typeof BreadcrumbTemplateDirective];
|
|
4182
4181
|
|
|
4183
|
-
declare const provideBreadcrumbManager: () => {
|
|
4182
|
+
declare const provideBreadcrumbManager: () => ({
|
|
4184
4183
|
provide: i0.InjectionToken<{
|
|
4185
4184
|
breadcrumbTemplate: i0.Signal<TemplateRef<unknown> | null>;
|
|
4186
4185
|
setBreadcrumbTemplate: (tpl: TemplateRef<unknown> | null) => void;
|
|
@@ -4189,7 +4188,15 @@ declare const provideBreadcrumbManager: () => {
|
|
|
4189
4188
|
breadcrumbTemplate: i0.Signal<TemplateRef<unknown> | null>;
|
|
4190
4189
|
setBreadcrumbTemplate: (tpl: TemplateRef<unknown> | null) => void;
|
|
4191
4190
|
};
|
|
4192
|
-
|
|
4191
|
+
useExisting?: undefined;
|
|
4192
|
+
} | {
|
|
4193
|
+
provide: i0.InjectionToken<unknown>;
|
|
4194
|
+
useExisting: i0.InjectionToken<{
|
|
4195
|
+
breadcrumbTemplate: i0.Signal<TemplateRef<unknown> | null>;
|
|
4196
|
+
setBreadcrumbTemplate: (tpl: TemplateRef<unknown> | null) => void;
|
|
4197
|
+
}>;
|
|
4198
|
+
useFactory?: undefined;
|
|
4199
|
+
})[];
|
|
4193
4200
|
declare const injectBreadcrumbManager: () => {
|
|
4194
4201
|
breadcrumbTemplate: i0.Signal<TemplateRef<unknown> | null>;
|
|
4195
4202
|
setBreadcrumbTemplate: (tpl: TemplateRef<unknown> | null) => void;
|
|
@@ -4254,452 +4261,14 @@ declare class QueryButtonDirective {
|
|
|
4254
4261
|
get skipLoading(): boolean;
|
|
4255
4262
|
set skipLoading(value: boolean);
|
|
4256
4263
|
private _skipLoading;
|
|
4257
|
-
get query(): AnyQuery | AnyQueryCollection | null;
|
|
4258
|
-
set query(v: AnyQuery | AnyQueryCollection | null);
|
|
4259
|
-
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 | {
|
|
4260
4267
|
type: string;
|
|
4261
4268
|
query: _ethlete_query.Query<any, any, any, any, any, any> | {
|
|
4262
|
-
newQuery:
|
|
4263
|
-
args: i0.Signal<Omit<any, "response"> | null>;
|
|
4264
|
-
response: i0.Signal<any>;
|
|
4265
|
-
latestHttpEvent: i0.Signal<_angular_common_module_d.HttpEvent<any> | null>;
|
|
4266
|
-
loading: i0.Signal<{
|
|
4267
|
-
executeTime: number;
|
|
4268
|
-
progress: {
|
|
4269
|
-
total: number;
|
|
4270
|
-
loaded: number;
|
|
4271
|
-
percentage: number;
|
|
4272
|
-
speed: number | null;
|
|
4273
|
-
remainingTime: number | null;
|
|
4274
|
-
} | null;
|
|
4275
|
-
} | null>;
|
|
4276
|
-
error: i0.Signal<({
|
|
4277
|
-
raw: _angular_common_module_d.HttpErrorResponse;
|
|
4278
|
-
retryState: {
|
|
4279
|
-
retry: false;
|
|
4280
|
-
} | {
|
|
4281
|
-
retry: true;
|
|
4282
|
-
delay: number;
|
|
4283
|
-
};
|
|
4284
|
-
code: _angular_common_module_d.HttpStatusCode;
|
|
4285
|
-
} & ({
|
|
4286
|
-
isList: true;
|
|
4287
|
-
errors: {
|
|
4288
|
-
message: string;
|
|
4289
|
-
}[];
|
|
4290
|
-
} | {
|
|
4291
|
-
isList: false;
|
|
4292
|
-
error: {
|
|
4293
|
-
message: string;
|
|
4294
|
-
};
|
|
4295
|
-
})) | null>;
|
|
4296
|
-
lastTimeExecutedAt: i0.Signal<number | null>;
|
|
4297
|
-
id: i0.Signal<string>;
|
|
4298
|
-
executionState: i0.Signal<({
|
|
4299
|
-
type: "failure";
|
|
4300
|
-
error: {
|
|
4301
|
-
raw: _angular_common_module_d.HttpErrorResponse;
|
|
4302
|
-
retryState: {
|
|
4303
|
-
retry: false;
|
|
4304
|
-
} | {
|
|
4305
|
-
retry: true;
|
|
4306
|
-
delay: number;
|
|
4307
|
-
};
|
|
4308
|
-
code: _angular_common_module_d.HttpStatusCode;
|
|
4309
|
-
} & ({
|
|
4310
|
-
isList: true;
|
|
4311
|
-
errors: {
|
|
4312
|
-
message: string;
|
|
4313
|
-
}[];
|
|
4314
|
-
} | {
|
|
4315
|
-
isList: false;
|
|
4316
|
-
error: {
|
|
4317
|
-
message: string;
|
|
4318
|
-
};
|
|
4319
|
-
});
|
|
4320
|
-
} | {
|
|
4321
|
-
type: "success";
|
|
4322
|
-
response: any;
|
|
4323
|
-
} | ({
|
|
4324
|
-
type: "loading";
|
|
4325
|
-
hasCachedResponse: false;
|
|
4326
|
-
loading: {
|
|
4327
|
-
executeTime: number;
|
|
4328
|
-
progress: {
|
|
4329
|
-
total: number;
|
|
4330
|
-
loaded: number;
|
|
4331
|
-
percentage: number;
|
|
4332
|
-
speed: number | null;
|
|
4333
|
-
remainingTime: number | null;
|
|
4334
|
-
} | null;
|
|
4335
|
-
};
|
|
4336
|
-
} | {
|
|
4337
|
-
type: "loading";
|
|
4338
|
-
hasCachedResponse: true;
|
|
4339
|
-
loading: {
|
|
4340
|
-
executeTime: number;
|
|
4341
|
-
progress: {
|
|
4342
|
-
total: number;
|
|
4343
|
-
loaded: number;
|
|
4344
|
-
percentage: number;
|
|
4345
|
-
speed: number | null;
|
|
4346
|
-
remainingTime: number | null;
|
|
4347
|
-
} | null;
|
|
4348
|
-
};
|
|
4349
|
-
cachedResponse: any;
|
|
4350
|
-
})) | null>;
|
|
4351
|
-
} & {
|
|
4352
|
-
execute: (executeArgs?: {
|
|
4353
|
-
args?: Omit<any, "response"> | null | undefined;
|
|
4354
|
-
options?: {
|
|
4355
|
-
allowCache?: boolean;
|
|
4356
|
-
};
|
|
4357
|
-
} | undefined) => void;
|
|
4358
|
-
createSnapshot: () => {
|
|
4359
|
-
args: i0.Signal<Omit<any, "response"> | null>;
|
|
4360
|
-
response: i0.Signal<any>;
|
|
4361
|
-
latestHttpEvent: i0.Signal<_angular_common_module_d.HttpEvent<any> | null>;
|
|
4362
|
-
loading: i0.Signal<{
|
|
4363
|
-
executeTime: number;
|
|
4364
|
-
progress: {
|
|
4365
|
-
total: number;
|
|
4366
|
-
loaded: number;
|
|
4367
|
-
percentage: number;
|
|
4368
|
-
speed: number | null;
|
|
4369
|
-
remainingTime: number | null;
|
|
4370
|
-
} | null;
|
|
4371
|
-
} | null>;
|
|
4372
|
-
error: i0.Signal<({
|
|
4373
|
-
raw: _angular_common_module_d.HttpErrorResponse;
|
|
4374
|
-
retryState: {
|
|
4375
|
-
retry: false;
|
|
4376
|
-
} | {
|
|
4377
|
-
retry: true;
|
|
4378
|
-
delay: number;
|
|
4379
|
-
};
|
|
4380
|
-
code: _angular_common_module_d.HttpStatusCode;
|
|
4381
|
-
} & ({
|
|
4382
|
-
isList: true;
|
|
4383
|
-
errors: {
|
|
4384
|
-
message: string;
|
|
4385
|
-
}[];
|
|
4386
|
-
} | {
|
|
4387
|
-
isList: false;
|
|
4388
|
-
error: {
|
|
4389
|
-
message: string;
|
|
4390
|
-
};
|
|
4391
|
-
})) | null>;
|
|
4392
|
-
lastTimeExecutedAt: i0.Signal<number | null>;
|
|
4393
|
-
id: i0.Signal<string>;
|
|
4394
|
-
executionState: i0.Signal<({
|
|
4395
|
-
type: "failure";
|
|
4396
|
-
error: {
|
|
4397
|
-
raw: _angular_common_module_d.HttpErrorResponse;
|
|
4398
|
-
retryState: {
|
|
4399
|
-
retry: false;
|
|
4400
|
-
} | {
|
|
4401
|
-
retry: true;
|
|
4402
|
-
delay: number;
|
|
4403
|
-
};
|
|
4404
|
-
code: _angular_common_module_d.HttpStatusCode;
|
|
4405
|
-
} & ({
|
|
4406
|
-
isList: true;
|
|
4407
|
-
errors: {
|
|
4408
|
-
message: string;
|
|
4409
|
-
}[];
|
|
4410
|
-
} | {
|
|
4411
|
-
isList: false;
|
|
4412
|
-
error: {
|
|
4413
|
-
message: string;
|
|
4414
|
-
};
|
|
4415
|
-
});
|
|
4416
|
-
} | {
|
|
4417
|
-
type: "success";
|
|
4418
|
-
response: any;
|
|
4419
|
-
} | ({
|
|
4420
|
-
type: "loading";
|
|
4421
|
-
hasCachedResponse: false;
|
|
4422
|
-
loading: {
|
|
4423
|
-
executeTime: number;
|
|
4424
|
-
progress: {
|
|
4425
|
-
total: number;
|
|
4426
|
-
loaded: number;
|
|
4427
|
-
percentage: number;
|
|
4428
|
-
speed: number | null;
|
|
4429
|
-
remainingTime: number | null;
|
|
4430
|
-
} | null;
|
|
4431
|
-
};
|
|
4432
|
-
} | {
|
|
4433
|
-
type: "loading";
|
|
4434
|
-
hasCachedResponse: true;
|
|
4435
|
-
loading: {
|
|
4436
|
-
executeTime: number;
|
|
4437
|
-
progress: {
|
|
4438
|
-
total: number;
|
|
4439
|
-
loaded: number;
|
|
4440
|
-
percentage: number;
|
|
4441
|
-
speed: number | null;
|
|
4442
|
-
remainingTime: number | null;
|
|
4443
|
-
} | null;
|
|
4444
|
-
};
|
|
4445
|
-
cachedResponse: any;
|
|
4446
|
-
})) | null>;
|
|
4447
|
-
} & {
|
|
4448
|
-
isAlive: i0.Signal<boolean>;
|
|
4449
|
-
};
|
|
4450
|
-
reset: () => void;
|
|
4451
|
-
asReadonly: () => {
|
|
4452
|
-
error: i0.Signal<({
|
|
4453
|
-
raw: _angular_common_module_d.HttpErrorResponse;
|
|
4454
|
-
retryState: {
|
|
4455
|
-
retry: false;
|
|
4456
|
-
} | {
|
|
4457
|
-
retry: true;
|
|
4458
|
-
delay: number;
|
|
4459
|
-
};
|
|
4460
|
-
code: _angular_common_module_d.HttpStatusCode;
|
|
4461
|
-
} & ({
|
|
4462
|
-
isList: true;
|
|
4463
|
-
errors: {
|
|
4464
|
-
message: string;
|
|
4465
|
-
}[];
|
|
4466
|
-
} | {
|
|
4467
|
-
isList: false;
|
|
4468
|
-
error: {
|
|
4469
|
-
message: string;
|
|
4470
|
-
};
|
|
4471
|
-
})) | null>;
|
|
4472
|
-
id: i0.Signal<string>;
|
|
4473
|
-
response: i0.Signal<any>;
|
|
4474
|
-
loading: i0.Signal<{
|
|
4475
|
-
executeTime: number;
|
|
4476
|
-
progress: {
|
|
4477
|
-
total: number;
|
|
4478
|
-
loaded: number;
|
|
4479
|
-
percentage: number;
|
|
4480
|
-
speed: number | null;
|
|
4481
|
-
remainingTime: number | null;
|
|
4482
|
-
} | null;
|
|
4483
|
-
} | null>;
|
|
4484
|
-
args: i0.Signal<Omit<any, "response"> | null>;
|
|
4485
|
-
latestHttpEvent: i0.Signal<_angular_common_module_d.HttpEvent<any> | null>;
|
|
4486
|
-
lastTimeExecutedAt: i0.Signal<number | null>;
|
|
4487
|
-
executionState: i0.Signal<({
|
|
4488
|
-
type: "failure";
|
|
4489
|
-
error: {
|
|
4490
|
-
raw: _angular_common_module_d.HttpErrorResponse;
|
|
4491
|
-
retryState: {
|
|
4492
|
-
retry: false;
|
|
4493
|
-
} | {
|
|
4494
|
-
retry: true;
|
|
4495
|
-
delay: number;
|
|
4496
|
-
};
|
|
4497
|
-
code: _angular_common_module_d.HttpStatusCode;
|
|
4498
|
-
} & ({
|
|
4499
|
-
isList: true;
|
|
4500
|
-
errors: {
|
|
4501
|
-
message: string;
|
|
4502
|
-
}[];
|
|
4503
|
-
} | {
|
|
4504
|
-
isList: false;
|
|
4505
|
-
error: {
|
|
4506
|
-
message: string;
|
|
4507
|
-
};
|
|
4508
|
-
});
|
|
4509
|
-
} | {
|
|
4510
|
-
type: "success";
|
|
4511
|
-
response: any;
|
|
4512
|
-
} | ({
|
|
4513
|
-
type: "loading";
|
|
4514
|
-
hasCachedResponse: false;
|
|
4515
|
-
loading: {
|
|
4516
|
-
executeTime: number;
|
|
4517
|
-
progress: {
|
|
4518
|
-
total: number;
|
|
4519
|
-
loaded: number;
|
|
4520
|
-
percentage: number;
|
|
4521
|
-
speed: number | null;
|
|
4522
|
-
remainingTime: number | null;
|
|
4523
|
-
} | null;
|
|
4524
|
-
};
|
|
4525
|
-
} | {
|
|
4526
|
-
type: "loading";
|
|
4527
|
-
hasCachedResponse: true;
|
|
4528
|
-
loading: {
|
|
4529
|
-
executeTime: number;
|
|
4530
|
-
progress: {
|
|
4531
|
-
total: number;
|
|
4532
|
-
loaded: number;
|
|
4533
|
-
percentage: number;
|
|
4534
|
-
speed: number | null;
|
|
4535
|
-
remainingTime: number | null;
|
|
4536
|
-
} | null;
|
|
4537
|
-
};
|
|
4538
|
-
cachedResponse: any;
|
|
4539
|
-
})) | null>;
|
|
4540
|
-
createSnapshot: () => {
|
|
4541
|
-
args: i0.Signal<Omit<any, "response"> | null>;
|
|
4542
|
-
response: i0.Signal<any>;
|
|
4543
|
-
latestHttpEvent: i0.Signal<_angular_common_module_d.HttpEvent<any> | null>;
|
|
4544
|
-
loading: i0.Signal<{
|
|
4545
|
-
executeTime: number;
|
|
4546
|
-
progress: {
|
|
4547
|
-
total: number;
|
|
4548
|
-
loaded: number;
|
|
4549
|
-
percentage: number;
|
|
4550
|
-
speed: number | null;
|
|
4551
|
-
remainingTime: number | null;
|
|
4552
|
-
} | null;
|
|
4553
|
-
} | null>;
|
|
4554
|
-
error: i0.Signal<({
|
|
4555
|
-
raw: _angular_common_module_d.HttpErrorResponse;
|
|
4556
|
-
retryState: {
|
|
4557
|
-
retry: false;
|
|
4558
|
-
} | {
|
|
4559
|
-
retry: true;
|
|
4560
|
-
delay: number;
|
|
4561
|
-
};
|
|
4562
|
-
code: _angular_common_module_d.HttpStatusCode;
|
|
4563
|
-
} & ({
|
|
4564
|
-
isList: true;
|
|
4565
|
-
errors: {
|
|
4566
|
-
message: string;
|
|
4567
|
-
}[];
|
|
4568
|
-
} | {
|
|
4569
|
-
isList: false;
|
|
4570
|
-
error: {
|
|
4571
|
-
message: string;
|
|
4572
|
-
};
|
|
4573
|
-
})) | null>;
|
|
4574
|
-
lastTimeExecutedAt: i0.Signal<number | null>;
|
|
4575
|
-
id: i0.Signal<string>;
|
|
4576
|
-
executionState: i0.Signal<({
|
|
4577
|
-
type: "failure";
|
|
4578
|
-
error: {
|
|
4579
|
-
raw: _angular_common_module_d.HttpErrorResponse;
|
|
4580
|
-
retryState: {
|
|
4581
|
-
retry: false;
|
|
4582
|
-
} | {
|
|
4583
|
-
retry: true;
|
|
4584
|
-
delay: number;
|
|
4585
|
-
};
|
|
4586
|
-
code: _angular_common_module_d.HttpStatusCode;
|
|
4587
|
-
} & ({
|
|
4588
|
-
isList: true;
|
|
4589
|
-
errors: {
|
|
4590
|
-
message: string;
|
|
4591
|
-
}[];
|
|
4592
|
-
} | {
|
|
4593
|
-
isList: false;
|
|
4594
|
-
error: {
|
|
4595
|
-
message: string;
|
|
4596
|
-
};
|
|
4597
|
-
});
|
|
4598
|
-
} | {
|
|
4599
|
-
type: "success";
|
|
4600
|
-
response: any;
|
|
4601
|
-
} | ({
|
|
4602
|
-
type: "loading";
|
|
4603
|
-
hasCachedResponse: false;
|
|
4604
|
-
loading: {
|
|
4605
|
-
executeTime: number;
|
|
4606
|
-
progress: {
|
|
4607
|
-
total: number;
|
|
4608
|
-
loaded: number;
|
|
4609
|
-
percentage: number;
|
|
4610
|
-
speed: number | null;
|
|
4611
|
-
remainingTime: number | null;
|
|
4612
|
-
} | null;
|
|
4613
|
-
};
|
|
4614
|
-
} | {
|
|
4615
|
-
type: "loading";
|
|
4616
|
-
hasCachedResponse: true;
|
|
4617
|
-
loading: {
|
|
4618
|
-
executeTime: number;
|
|
4619
|
-
progress: {
|
|
4620
|
-
total: number;
|
|
4621
|
-
loaded: number;
|
|
4622
|
-
percentage: number;
|
|
4623
|
-
speed: number | null;
|
|
4624
|
-
remainingTime: number | null;
|
|
4625
|
-
} | null;
|
|
4626
|
-
};
|
|
4627
|
-
cachedResponse: any;
|
|
4628
|
-
})) | null>;
|
|
4629
|
-
} & {
|
|
4630
|
-
isAlive: i0.Signal<boolean>;
|
|
4631
|
-
};
|
|
4632
|
-
};
|
|
4633
|
-
subtle: {
|
|
4634
|
-
destroy: () => void;
|
|
4635
|
-
setResponse: (response: any) => void;
|
|
4636
|
-
request: i0.Signal<{
|
|
4637
|
-
execute: (options?: {
|
|
4638
|
-
allowCache?: boolean;
|
|
4639
|
-
}) => boolean;
|
|
4640
|
-
destroy: () => boolean;
|
|
4641
|
-
loading: i0.Signal<{
|
|
4642
|
-
executeTime: number;
|
|
4643
|
-
progress: {
|
|
4644
|
-
total: number;
|
|
4645
|
-
loaded: number;
|
|
4646
|
-
percentage: number;
|
|
4647
|
-
speed: number | null;
|
|
4648
|
-
remainingTime: number | null;
|
|
4649
|
-
} | null;
|
|
4650
|
-
} | null>;
|
|
4651
|
-
error: i0.Signal<({
|
|
4652
|
-
raw: _angular_common_module_d.HttpErrorResponse;
|
|
4653
|
-
retryState: {
|
|
4654
|
-
retry: false;
|
|
4655
|
-
} | {
|
|
4656
|
-
retry: true;
|
|
4657
|
-
delay: number;
|
|
4658
|
-
};
|
|
4659
|
-
code: _angular_common_module_d.HttpStatusCode;
|
|
4660
|
-
} & ({
|
|
4661
|
-
isList: true;
|
|
4662
|
-
errors: {
|
|
4663
|
-
message: string;
|
|
4664
|
-
}[];
|
|
4665
|
-
} | {
|
|
4666
|
-
isList: false;
|
|
4667
|
-
error: {
|
|
4668
|
-
message: string;
|
|
4669
|
-
};
|
|
4670
|
-
})) | null>;
|
|
4671
|
-
response: i0.Signal<any>;
|
|
4672
|
-
currentEvent: i0.Signal<{
|
|
4673
|
-
type: "error";
|
|
4674
|
-
error: {
|
|
4675
|
-
raw: _angular_common_module_d.HttpErrorResponse;
|
|
4676
|
-
retryState: {
|
|
4677
|
-
retry: false;
|
|
4678
|
-
} | {
|
|
4679
|
-
retry: true;
|
|
4680
|
-
delay: number;
|
|
4681
|
-
};
|
|
4682
|
-
code: _angular_common_module_d.HttpStatusCode;
|
|
4683
|
-
} & ({
|
|
4684
|
-
isList: true;
|
|
4685
|
-
errors: {
|
|
4686
|
-
message: string;
|
|
4687
|
-
}[];
|
|
4688
|
-
} | {
|
|
4689
|
-
isList: false;
|
|
4690
|
-
error: {
|
|
4691
|
-
message: string;
|
|
4692
|
-
};
|
|
4693
|
-
});
|
|
4694
|
-
} | _angular_common_module_d.HttpEvent<any> | null>;
|
|
4695
|
-
isStale: i0.Signal<boolean>;
|
|
4696
|
-
} | null>;
|
|
4697
|
-
destroyRef: i0.DestroyRef;
|
|
4698
|
-
injector: i0.Injector;
|
|
4699
|
-
};
|
|
4700
|
-
};
|
|
4269
|
+
newQuery: ExperimentalQuery.Query<any>;
|
|
4701
4270
|
_arguments: Omit<any, "response">;
|
|
4702
|
-
entity?: _ethlete_query.QueryEntityConfig<any, any, any,
|
|
4271
|
+
entity?: _ethlete_query.QueryEntityConfig<any, any, any, Omit<any, "response" | "headers"> & _ethlete_query.WithHeaders, any> | undefined;
|
|
4703
4272
|
state$: rxjs.Observable<_ethlete_query.QueryState<any>>;
|
|
4704
4273
|
get rawState(): _ethlete_query.QueryState<any>;
|
|
4705
4274
|
get isExpired(): boolean | undefined;
|
|
@@ -8411,7 +7980,7 @@ declare class OverlayRef<T = any, R = any> {
|
|
|
8411
7980
|
}
|
|
8412
7981
|
|
|
8413
7982
|
declare const FILTER_OVERLAY_CONFIG: InjectionToken<FilterOverlayConfig<FormGroup<any>, AnyQuery>>;
|
|
8414
|
-
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> = {
|
|
8415
7984
|
/**
|
|
8416
7985
|
* The form to use.
|
|
8417
7986
|
*/
|
|
@@ -8467,7 +8036,7 @@ declare class FilterOverlayService<F extends FormGroup, C extends ComponentType<
|
|
|
8467
8036
|
static ɵfac: i0.ɵɵFactoryDeclaration<FilterOverlayService<any, any>, never>;
|
|
8468
8037
|
static ɵprov: i0.ɵɵInjectableDeclaration<FilterOverlayService<any, any>>;
|
|
8469
8038
|
}
|
|
8470
|
-
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[];
|
|
8471
8040
|
|
|
8472
8041
|
declare const createOverlayConfig: <D = unknown>(globalConfig?: Partial<OverlayConfig<D>> | null | undefined, localConfig?: Partial<OverlayConfig<D>> | null | undefined) => OverlayConfig<D>;
|
|
8473
8042
|
|
|
@@ -9602,12 +9171,12 @@ interface QueryErrorItem {
|
|
|
9602
9171
|
declare const QUERY_ERROR_TOKEN: InjectionToken<QueryErrorDirective>;
|
|
9603
9172
|
declare class QueryErrorDirective {
|
|
9604
9173
|
error: i0.InputSignal<RequestError<unknown> | null>;
|
|
9605
|
-
query: i0.InputSignal<AnyQuery | {
|
|
9174
|
+
query: i0.InputSignal<AnyQuery | /*elided*/ any | {
|
|
9606
9175
|
type: string;
|
|
9607
9176
|
query: _ethlete_query.Query<any, any, any, any, any, any> | {
|
|
9608
9177
|
newQuery: ExperimentalQuery.Query<any>;
|
|
9609
9178
|
_arguments: Omit<any, "response">;
|
|
9610
|
-
entity?: _ethlete_query.QueryEntityConfig<any, any, any,
|
|
9179
|
+
entity?: _ethlete_query.QueryEntityConfig<any, any, any, Omit<any, "response" | "headers"> & _ethlete_query.WithHeaders, any> | undefined;
|
|
9611
9180
|
state$: rxjs.Observable<_ethlete_query.QueryState<any>>;
|
|
9612
9181
|
get rawState(): _ethlete_query.QueryState<any>;
|
|
9613
9182
|
get isExpired(): boolean | undefined;
|
|
@@ -10573,11 +10142,20 @@ type CreateProviderOptions = {
|
|
|
10573
10142
|
* If not provided, the name will be a generated string.
|
|
10574
10143
|
*/
|
|
10575
10144
|
name?: string;
|
|
10145
|
+
/**
|
|
10146
|
+
* Optional existing InjectionToken to also provide the created provider under.
|
|
10147
|
+
*/
|
|
10148
|
+
extraInjectionToken?: InjectionToken<unknown>;
|
|
10576
10149
|
};
|
|
10577
|
-
declare const createProvider: <T>(factory: () => T, options?: CreateProviderOptions) => readonly [() => {
|
|
10150
|
+
declare const createProvider: <T>(factory: () => T, options?: CreateProviderOptions) => readonly [() => ({
|
|
10578
10151
|
provide: InjectionToken<T>;
|
|
10579
10152
|
useFactory: () => T;
|
|
10580
|
-
|
|
10153
|
+
useExisting?: undefined;
|
|
10154
|
+
} | {
|
|
10155
|
+
provide: InjectionToken<unknown>;
|
|
10156
|
+
useExisting: InjectionToken<T>;
|
|
10157
|
+
useFactory?: undefined;
|
|
10158
|
+
})[], () => T];
|
|
10581
10159
|
|
|
10582
10160
|
declare const FLOATING_UI_PLACEMENTS: Placement[];
|
|
10583
10161
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ethlete/cdk",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.70.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"exports": {
|
|
@@ -14,13 +14,13 @@
|
|
|
14
14
|
}
|
|
15
15
|
},
|
|
16
16
|
"peerDependencies": {
|
|
17
|
-
"@angular/animations": "20.3.
|
|
18
|
-
"@angular/cdk": "20.2.
|
|
19
|
-
"@angular/common": "20.3.
|
|
20
|
-
"@angular/core": "20.3.
|
|
21
|
-
"@angular/forms": "20.3.
|
|
22
|
-
"@angular/platform-browser": "20.3.
|
|
23
|
-
"@angular/router": "20.3.
|
|
17
|
+
"@angular/animations": "20.3.4",
|
|
18
|
+
"@angular/cdk": "20.2.8",
|
|
19
|
+
"@angular/common": "20.3.4",
|
|
20
|
+
"@angular/core": "20.3.4",
|
|
21
|
+
"@angular/forms": "20.3.4",
|
|
22
|
+
"@angular/platform-browser": "20.3.4",
|
|
23
|
+
"@angular/router": "20.3.4",
|
|
24
24
|
"@ethlete/core": "^4.0.3",
|
|
25
25
|
"@ethlete/query": "^5.0.3",
|
|
26
26
|
"@ethlete/types": "^1.6.2",
|