@ethlete/cdk 4.69.0 → 4.70.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -4180,7 +4180,7 @@ declare class BreadcrumbTemplateDirective {
4180
4180
 
4181
4181
  declare const BreadcrumbImports: readonly [typeof BreadcrumbOutletComponent, typeof BreadcrumbComponent, typeof BreadcrumbItemDirective, typeof BreadcrumbItemTemplateDirective, typeof BreadcrumbTemplateDirective];
4182
4182
 
4183
- declare const provideBreadcrumbManager: () => {
4183
+ declare const provideBreadcrumbManager: () => ({
4184
4184
  provide: i0.InjectionToken<{
4185
4185
  breadcrumbTemplate: i0.Signal<TemplateRef<unknown> | null>;
4186
4186
  setBreadcrumbTemplate: (tpl: TemplateRef<unknown> | null) => void;
@@ -4189,7 +4189,15 @@ declare const provideBreadcrumbManager: () => {
4189
4189
  breadcrumbTemplate: i0.Signal<TemplateRef<unknown> | null>;
4190
4190
  setBreadcrumbTemplate: (tpl: TemplateRef<unknown> | null) => void;
4191
4191
  };
4192
- };
4192
+ useExisting?: undefined;
4193
+ } | {
4194
+ provide: i0.InjectionToken<unknown>;
4195
+ useExisting: i0.InjectionToken<{
4196
+ breadcrumbTemplate: i0.Signal<TemplateRef<unknown> | null>;
4197
+ setBreadcrumbTemplate: (tpl: TemplateRef<unknown> | null) => void;
4198
+ }>;
4199
+ useFactory?: undefined;
4200
+ })[];
4193
4201
  declare const injectBreadcrumbManager: () => {
4194
4202
  breadcrumbTemplate: i0.Signal<TemplateRef<unknown> | null>;
4195
4203
  setBreadcrumbTemplate: (tpl: TemplateRef<unknown> | null) => void;
@@ -10105,7 +10113,7 @@ declare class HeaderRowDefDirective extends CdkHeaderRowDef {
10105
10113
  }
10106
10114
 
10107
10115
  declare class NoDataRowDirective extends CdkNoDataRow {
10108
- _contentClassName: string;
10116
+ _contentClassNames: string[];
10109
10117
  static ɵfac: i0.ɵɵFactoryDeclaration<NoDataRowDirective, never>;
10110
10118
  static ɵdir: i0.ɵɵDirectiveDeclaration<NoDataRowDirective, "ng-template[etNoDataRow]", never, {}, {}, never, never, true, never>;
10111
10119
  }
@@ -10573,11 +10581,20 @@ type CreateProviderOptions = {
10573
10581
  * If not provided, the name will be a generated string.
10574
10582
  */
10575
10583
  name?: string;
10584
+ /**
10585
+ * Optional existing InjectionToken to also provide the created provider under.
10586
+ */
10587
+ extraInjectionToken?: InjectionToken<unknown>;
10576
10588
  };
10577
- declare const createProvider: <T>(factory: () => T, options?: CreateProviderOptions) => readonly [() => {
10589
+ declare const createProvider: <T>(factory: () => T, options?: CreateProviderOptions) => readonly [() => ({
10578
10590
  provide: InjectionToken<T>;
10579
10591
  useFactory: () => T;
10580
- }, () => T];
10592
+ useExisting?: undefined;
10593
+ } | {
10594
+ provide: InjectionToken<unknown>;
10595
+ useExisting: InjectionToken<T>;
10596
+ useFactory?: undefined;
10597
+ })[], () => T];
10581
10598
 
10582
10599
  declare const FLOATING_UI_PLACEMENTS: Placement[];
10583
10600
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ethlete/cdk",
3
- "version": "4.69.0",
3
+ "version": "4.70.0",
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.0",
18
- "@angular/cdk": "20.2.2",
19
- "@angular/common": "20.3.0",
20
- "@angular/core": "20.3.0",
21
- "@angular/forms": "20.3.0",
22
- "@angular/platform-browser": "20.3.0",
23
- "@angular/router": "20.3.0",
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",