@m3e/segmented-button 1.0.5 → 1.1.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/README.md +3 -2
- package/dist/custom-elements.json +8 -0
- package/dist/index.js +567 -435
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +6 -236
- package/dist/index.min.js.map +1 -1
- package/dist/src/SegmentedButtonElement.d.ts +2 -0
- package/dist/src/SegmentedButtonElement.d.ts.map +1 -1
- package/package.json +2 -16
package/README.md
CHANGED
|
@@ -43,13 +43,14 @@ In addition, you must use an [import map](https://developer.mozilla.org/en-US/do
|
|
|
43
43
|
"imports": {
|
|
44
44
|
"lit": "https://cdn.jsdelivr.net/npm/lit@3.3.0/+esm",
|
|
45
45
|
"@m3e/core": "/node_modules/@m3e/core/dist/index.js",
|
|
46
|
-
"@m3e/core/a11y": "/node_modules/@m3e/core/dist/a11y.js"
|
|
46
|
+
"@m3e/core/a11y": "/node_modules/@m3e/core/dist/a11y.js",
|
|
47
|
+
"@m3e/core/bidi": "/node_modules/@m3e/core/dist/bidi.js"
|
|
47
48
|
}
|
|
48
49
|
}
|
|
49
50
|
</script>
|
|
50
51
|
```
|
|
51
52
|
|
|
52
|
-
> For production, use index.min.js and
|
|
53
|
+
> For production, use index.min.js, a11y.min.js and bidi.min.js for faster load times.
|
|
53
54
|
|
|
54
55
|
## 🗂️ Elements
|
|
55
56
|
|