@spectrum-web-components/accordion 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 +6 -6
- package/src/Accordion.d.ts +1 -4
- package/src/AccordionItem.d.ts +1 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spectrum-web-components/accordion",
|
|
3
|
-
"version": "1.12.0
|
|
3
|
+
"version": "1.12.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Adobe",
|
|
@@ -64,11 +64,11 @@
|
|
|
64
64
|
],
|
|
65
65
|
"types": "./src/index.d.ts",
|
|
66
66
|
"dependencies": {
|
|
67
|
-
"@spectrum-web-components/base": "1.12.0
|
|
68
|
-
"@spectrum-web-components/icon": "1.12.0
|
|
69
|
-
"@spectrum-web-components/icons-ui": "1.12.0
|
|
70
|
-
"@spectrum-web-components/reactive-controllers": "1.12.0
|
|
71
|
-
"@spectrum-web-components/shared": "1.12.0
|
|
67
|
+
"@spectrum-web-components/base": "1.12.0",
|
|
68
|
+
"@spectrum-web-components/icon": "1.12.0",
|
|
69
|
+
"@spectrum-web-components/icons-ui": "1.12.0",
|
|
70
|
+
"@spectrum-web-components/reactive-controllers": "1.12.0",
|
|
71
|
+
"@spectrum-web-components/shared": "1.12.0"
|
|
72
72
|
},
|
|
73
73
|
"keywords": [
|
|
74
74
|
"design-system",
|
package/src/Accordion.d.ts
CHANGED
|
@@ -12,10 +12,7 @@
|
|
|
12
12
|
import { CSSResultArray, PropertyValues, SpectrumElement, TemplateResult } from '@spectrum-web-components/base';
|
|
13
13
|
import { FocusGroupController } from '@spectrum-web-components/reactive-controllers/src/FocusGroup.js';
|
|
14
14
|
import { AccordionItem } from './AccordionItem.js';
|
|
15
|
-
declare const Accordion_base: typeof SpectrumElement &
|
|
16
|
-
new (...args: any[]): import("@spectrum-web-components/base").SizedElementInterface;
|
|
17
|
-
prototype: import("@spectrum-web-components/base").SizedElementInterface;
|
|
18
|
-
} & import("@spectrum-web-components/core/mixins/sized-mixin.js").SizedElementConstructor;
|
|
15
|
+
declare const Accordion_base: typeof SpectrumElement & import("@spectrum-web-components/base").Constructor<import("@spectrum-web-components/base").SizedElementInterface> & import("@spectrum-web-components/base").SizedElementConstructor;
|
|
19
16
|
/**
|
|
20
17
|
* @element sp-accordion
|
|
21
18
|
* @slot - The sp-accordion-item children to display.
|
package/src/AccordionItem.d.ts
CHANGED
|
@@ -12,10 +12,7 @@
|
|
|
12
12
|
import { CSSResultArray, PropertyValues, TemplateResult } from '@spectrum-web-components/base';
|
|
13
13
|
import { Focusable } from '@spectrum-web-components/shared/src/focusable.js';
|
|
14
14
|
import '@spectrum-web-components/icons-ui/icons/sp-icon-chevron100.js';
|
|
15
|
-
declare const AccordionItem_base: typeof Focusable &
|
|
16
|
-
new (...args: any[]): import("@spectrum-web-components/base").SizedElementInterface;
|
|
17
|
-
prototype: import("@spectrum-web-components/base").SizedElementInterface;
|
|
18
|
-
} & import("@spectrum-web-components/core/mixins/sized-mixin.js").SizedElementConstructor;
|
|
15
|
+
declare const AccordionItem_base: typeof Focusable & import("@spectrum-web-components/base").Constructor<import("@spectrum-web-components/base").SizedElementInterface> & import("@spectrum-web-components/base").SizedElementConstructor;
|
|
19
16
|
/**
|
|
20
17
|
* @element sp-accordion-item
|
|
21
18
|
* @slot - The content of the item that is hidden when the item is not open
|