@spectrum-web-components/accordion 0.7.4 → 0.7.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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -8,20 +8,20 @@ The `<sp-accordion>` element contains a list of items that can be expanded or co
8
8
  [![How big is this package in your project?](https://img.shields.io/bundlephobia/minzip/@spectrum-web-components/accordion?style=for-the-badge)](https://bundlephobia.com/result?p=@spectrum-web-components/accordion)
9
9
  [![Try it on webcomponents.dev](https://img.shields.io/badge/Try%20it%20on-webcomponents.dev-green?style=for-the-badge)](https://webcomponents.dev/edit/collection/fO75441E1Q5ZlI0e9pgq/Muvuvbd79YCP9tcdtnsW/src/index.ts)
10
10
 
11
- ```
11
+ ```bash
12
12
  yarn add @spectrum-web-components/accordion
13
13
  ```
14
14
 
15
15
  Import the side effectful registration of `<sp-accordion>` and `<sp-accordion-item>` via:
16
16
 
17
- ```
17
+ ```js
18
18
  import '@spectrum-web-components/accordion/sp-accordion.js';
19
19
  import '@spectrum-web-components/accordion/sp-accordion-item.js';
20
20
  ```
21
21
 
22
22
  When looking to leverage the `Accordion` and `AccordionItem` base class as a type and/or for extension purposes, do so via:
23
23
 
24
- ```
24
+ ```js
25
25
  import { Accordion, AccordionItem } from '@spectrum-web-components/accordion';
26
26
  ```
27
27
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spectrum-web-components/accordion",
3
- "version": "0.7.4",
3
+ "version": "0.7.6",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -66,14 +66,14 @@
66
66
  "lit-html"
67
67
  ],
68
68
  "dependencies": {
69
- "@spectrum-web-components/base": "^0.7.1",
70
- "@spectrum-web-components/icon": "^0.12.3",
71
- "@spectrum-web-components/icons-ui": "^0.9.3",
72
- "@spectrum-web-components/reactive-controllers": "^0.3.3",
73
- "@spectrum-web-components/shared": "^0.15.2"
69
+ "@spectrum-web-components/base": "^0.7.2",
70
+ "@spectrum-web-components/icon": "^0.12.5",
71
+ "@spectrum-web-components/icons-ui": "^0.9.5",
72
+ "@spectrum-web-components/reactive-controllers": "^0.3.4",
73
+ "@spectrum-web-components/shared": "^0.15.3"
74
74
  },
75
75
  "devDependencies": {
76
- "@spectrum-css/accordion": "^3.0.24"
76
+ "@spectrum-css/accordion": "^3.0.25"
77
77
  },
78
78
  "types": "./src/index.d.ts",
79
79
  "customElements": "custom-elements.json",
@@ -81,5 +81,5 @@
81
81
  "./sp-*.js",
82
82
  "./**/*.dev.js"
83
83
  ],
84
- "gitHead": "8bd87724e91e23df83dbf63a434bbbe10b8daaa6"
84
+ "gitHead": "34bbc8bf1636f2d78ca9d5dbabc0b89da625572f"
85
85
  }