@ethlete/cdk 3.22.4 → 3.22.6

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.
@@ -19,6 +19,10 @@ export declare class ButtonDirective {
19
19
  remove: (...tokens: string[]) => void;
20
20
  has: (token: string) => boolean;
21
21
  };
22
+ readonly hostClassBindings: {
23
+ remove: (...tokens: string[]) => void;
24
+ has: (token: string) => boolean;
25
+ };
22
26
  _removeDisabledBindings(): void;
23
27
  _removeTabIndexBindings(): void;
24
28
  static ɵfac: i0.ɵɵFactoryDeclaration<ButtonDirective, never>;
@@ -45,6 +45,7 @@ export declare class InlineTabsComponent implements AfterContentInit, AfterConte
45
45
  _getTabLabelId(i: number): string;
46
46
  _getTabContentId(i: number): string;
47
47
  _handleClick(tab: InlineTabComponent, tabHeader: InlineTabsBaseHeader, index: number): void;
48
+ _handleEnter(index: number): void;
48
49
  _getTabIndex(tab: InlineTabComponent, index: number): number | null;
49
50
  _tabFocusChanged(focusOrigin: FocusOrigin, index: number): void;
50
51
  private _subscribeToAllTabChanges;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ethlete/cdk",
3
- "version": "3.22.4",
3
+ "version": "3.22.6",
4
4
  "exports": {
5
5
  ".": {
6
6
  "css": "./src/lib/styles/index.css",
@@ -13,19 +13,25 @@
13
13
  "default": "./package.json"
14
14
  }
15
15
  },
16
- "dependencies": {
17
- "tslib": "^2.5.0"
18
- },
19
16
  "peerDependencies": {
20
- "@angular/common": "^15.2.1 || ^16.0.0",
21
- "@angular/core": "^15.2.1 || ^16.0.0",
22
17
  "@angular/animations": "16.2.10",
23
- "@angular/platform-browser": "16.2.10",
24
18
  "@angular/cdk": "16.2.9",
25
- "@ethlete/core": "3.13.1",
26
- "@ethlete/query": "4.20.2"
19
+ "@angular/common": "16.2.10",
20
+ "@angular/core": "16.2.10",
21
+ "@angular/forms": "16.2.10",
22
+ "@angular/platform-browser": "16.2.10",
23
+ "@angular/router": "16.2.10",
24
+ "@ethlete/core": "*",
25
+ "@ethlete/query": "*",
26
+ "@ethlete/theming": "*",
27
+ "@ethlete/types": "*",
28
+ "@floating-ui/dom": "1.5.3",
29
+ "rxjs": "7.8.1"
27
30
  },
28
31
  "module": "fesm2022/ethlete-cdk.mjs",
29
32
  "typings": "index.d.ts",
30
- "sideEffects": false
31
- }
33
+ "sideEffects": false,
34
+ "dependencies": {
35
+ "tslib": "^2.3.0"
36
+ }
37
+ }