@spectrum-web-components/tabs 1.12.0-testing.20260223092154 → 1.12.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/package.json +7 -7
- package/src/Tabs.d.ts +1 -4
- package/src/TabsOverflow.d.ts +1 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spectrum-web-components/tabs",
|
|
3
|
-
"version": "1.12.0
|
|
3
|
+
"version": "1.12.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Adobe",
|
|
@@ -84,12 +84,12 @@
|
|
|
84
84
|
"types": "./src/index.d.ts",
|
|
85
85
|
"dependencies": {
|
|
86
86
|
"@lit-labs/observers": "2.0.2",
|
|
87
|
-
"@spectrum-web-components/action-button": "1.12.0
|
|
88
|
-
"@spectrum-web-components/base": "1.12.0
|
|
89
|
-
"@spectrum-web-components/icon": "1.12.0
|
|
90
|
-
"@spectrum-web-components/icons-ui": "1.12.0
|
|
91
|
-
"@spectrum-web-components/reactive-controllers": "1.12.0
|
|
92
|
-
"@spectrum-web-components/shared": "1.12.0
|
|
87
|
+
"@spectrum-web-components/action-button": "1.12.0",
|
|
88
|
+
"@spectrum-web-components/base": "1.12.0",
|
|
89
|
+
"@spectrum-web-components/icon": "1.12.0",
|
|
90
|
+
"@spectrum-web-components/icons-ui": "1.12.0",
|
|
91
|
+
"@spectrum-web-components/reactive-controllers": "1.12.0",
|
|
92
|
+
"@spectrum-web-components/shared": "1.12.0"
|
|
93
93
|
},
|
|
94
94
|
"keywords": [
|
|
95
95
|
"design-system",
|
package/src/Tabs.d.ts
CHANGED
|
@@ -31,10 +31,7 @@ export declare function calculateScrollTargetForRightSide(index: number, directi
|
|
|
31
31
|
* Returns the coordonate x it needs to scroll so that the tab with given index is visible.
|
|
32
32
|
*/
|
|
33
33
|
export declare function calculateScrollTargetForLeftSide(index: number, direction: CSSStyleDeclaration['direction'], tabs: Tab[], container: HTMLDivElement): number;
|
|
34
|
-
declare const Tabs_base: typeof Focusable &
|
|
35
|
-
new (...args: any[]): import("@spectrum-web-components/base").SizedElementInterface;
|
|
36
|
-
prototype: import("@spectrum-web-components/base").SizedElementInterface;
|
|
37
|
-
} & import("@spectrum-web-components/core/mixins").SizedElementConstructor;
|
|
34
|
+
declare const Tabs_base: typeof Focusable & import("@spectrum-web-components/base").Constructor<import("@spectrum-web-components/base").SizedElementInterface> & import("@spectrum-web-components/base").SizedElementConstructor;
|
|
38
35
|
/**
|
|
39
36
|
* @element sp-tabs
|
|
40
37
|
*
|
package/src/TabsOverflow.d.ts
CHANGED
|
@@ -14,10 +14,7 @@ import { CSSResultArray, PropertyValues, SpectrumElement, TemplateResult } from
|
|
|
14
14
|
import '@spectrum-web-components/action-button/sp-action-button.js';
|
|
15
15
|
import '@spectrum-web-components/icons-ui/icons/sp-icon-chevron100.js';
|
|
16
16
|
import { Tabs } from './Tabs.js';
|
|
17
|
-
declare const TabsOverflow_base: typeof SpectrumElement &
|
|
18
|
-
new (...args: any[]): import("@spectrum-web-components/base").SizedElementInterface;
|
|
19
|
-
prototype: import("@spectrum-web-components/base").SizedElementInterface;
|
|
20
|
-
} & import("@spectrum-web-components/core/mixins").SizedElementConstructor;
|
|
17
|
+
declare const TabsOverflow_base: typeof SpectrumElement & import("@spectrum-web-components/base").Constructor<import("@spectrum-web-components/base").SizedElementInterface> & import("@spectrum-web-components/base").SizedElementConstructor;
|
|
21
18
|
/**
|
|
22
19
|
* @element sp-tabs-overflow
|
|
23
20
|
*/
|