@digital-realty/ix-tabs 1.1.5 → 1.1.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.
@@ -4,5 +4,5 @@ export declare class IxPrimaryTab extends LitElement {
4
4
  static styles: import("lit").CSSResult;
5
5
  active: boolean;
6
6
  inlineIcon: boolean;
7
- render(): import("lit").TemplateResult<1>;
7
+ render(): import("lit-html").TemplateResult<1>;
8
8
  }
@@ -3,5 +3,5 @@ import './mdtabs/secondary-tab.js';
3
3
  export declare class IxSecondaryTab extends LitElement {
4
4
  static styles: import("lit").CSSResult;
5
5
  active: boolean;
6
- render(): import("lit").TemplateResult<1>;
6
+ render(): import("lit-html").TemplateResult<1>;
7
7
  }
package/dist/IxTabs.d.ts CHANGED
@@ -21,5 +21,5 @@ export declare class IxTabs extends LitElement {
21
21
  slotChange(): Promise<void>;
22
22
  disconnectedCallback(): void;
23
23
  private scrollTabs;
24
- render(): import("lit").TemplateResult<1>;
24
+ render(): import("lit-html").TemplateResult<1>;
25
25
  }
@@ -51,7 +51,7 @@ export declare class Tab extends LitElement {
51
51
  private readonly assignedIcons;
52
52
  private readonly internals;
53
53
  constructor();
54
- protected render(): import("lit").TemplateResult<1>;
54
+ protected render(): import("lit-html").TemplateResult<1>;
55
55
  protected getContentClasses(): {
56
56
  'has-icon': boolean;
57
57
  'has-label': boolean;
@@ -62,7 +62,7 @@ export declare class Tabs extends LitElement {
62
62
  * @return A Promise that resolves after the tab has been scrolled to.
63
63
  */
64
64
  scrollToTab(tabToScrollTo?: Tab | null): Promise<void>;
65
- protected render(): import("lit").TemplateResult<1>;
65
+ protected render(): import("lit-html").TemplateResult<1>;
66
66
  private handleTabClick;
67
67
  private activateTab;
68
68
  private updateFocusableTab;
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Webcomponent ix-tabs following open-wc recommendations",
4
4
  "license": "MIT",
5
5
  "author": "Digital Realty",
6
- "version": "1.1.5",
6
+ "version": "1.1.6",
7
7
  "type": "module",
8
8
  "main": "dist/index.js",
9
9
  "module": "dist/index.js",
@@ -31,11 +31,10 @@
31
31
  "test:watch": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wtr --watch\""
32
32
  },
33
33
  "dependencies": {
34
- "@digital-realty/ix-icon-button": "^1.1.5",
35
- "@digital-realty/theme": "^1.0.30",
34
+ "@digital-realty/ix-icon-button": "^1.1.6",
36
35
  "@lit/react": "^1.0.2",
37
36
  "@material/web": "1.2.0",
38
- "lit": "^2.8.0 || ^3.0.0",
37
+ "lit": "^3.2.1",
39
38
  "react": "^18.2.0"
40
39
  },
41
40
  "devDependencies": {
@@ -106,5 +105,5 @@
106
105
  "README.md",
107
106
  "LICENSE"
108
107
  ],
109
- "gitHead": "3590ef8890b3526a1395c48f0e94c72757c33c35"
108
+ "gitHead": "a781e30ec63dcc3307d86b94e35fa93c4e61f22f"
110
109
  }