@aurodesignsystem-dev/auro-accordion 0.0.0-pr200.0 → 0.0.0-pr200.1
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/demo/api.html +1 -1
- package/demo/api.min.js +2 -1
- package/dist/registered.js +1 -1
- package/package.json +5 -6
package/demo/api.html
CHANGED
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
Prism.highlightAll();
|
|
49
49
|
});
|
|
50
50
|
</script>
|
|
51
|
-
<script src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-button@latest
|
|
51
|
+
<script src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-button@latest/+esm" type="module"></script>
|
|
52
52
|
<script type="module" data-demo-script="true">
|
|
53
53
|
import { initExamples } from './api.min.js';
|
|
54
54
|
initExamples();
|
package/demo/api.min.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { A as AuroAccordion } from './auro-accordion.min.js';
|
|
1
|
+
import { A as AuroAccordion, a as AuroAccordionGroup } from './auro-accordion.min.js';
|
|
2
2
|
|
|
3
3
|
function expandedExample() {
|
|
4
4
|
const expandedExampleElem = document.querySelector(
|
|
@@ -19,6 +19,7 @@ function expandedExample() {
|
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
AuroAccordion.register();
|
|
22
|
+
AuroAccordionGroup.register();
|
|
22
23
|
|
|
23
24
|
function initExamples(initCount) {
|
|
24
25
|
// biome-ignore lint/style/noParameterAssign: recursion, just for demos
|
package/dist/registered.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{A as i}from"./auro-accordion-B6aPKaGa.js";import"lit";import"lit/directives/class-map.js";import"lit/directives/unsafe-html.js";import"lit/static-html.js";import"lit/directives/if-defined.js";i.register();
|
|
1
|
+
import{A as i,a as t}from"./auro-accordion-B6aPKaGa.js";import"lit";import"lit/directives/class-map.js";import"lit/directives/unsafe-html.js";import"lit/static-html.js";import"lit/directives/if-defined.js";i.register(),t.register();
|
package/package.json
CHANGED
|
@@ -7,17 +7,18 @@
|
|
|
7
7
|
"================================================================================"
|
|
8
8
|
],
|
|
9
9
|
"name": "@aurodesignsystem-dev/auro-accordion",
|
|
10
|
-
"version": "0.0.0-pr200.
|
|
10
|
+
"version": "0.0.0-pr200.1",
|
|
11
11
|
"description": "auro-accordion HTML custom element",
|
|
12
12
|
"repository": {
|
|
13
13
|
"type": "git",
|
|
14
14
|
"url": "https://github.com/AlaskaAirlines/auro-accordion"
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
|
-
"main": "
|
|
17
|
+
"main": "dist/registered.js",
|
|
18
|
+
"types": "dist/index.d.ts",
|
|
18
19
|
"license": "Apache-2.0",
|
|
19
20
|
"engines": {
|
|
20
|
-
"node": "^20.x || ^22.x
|
|
21
|
+
"node": "^20.x || ^22.x"
|
|
21
22
|
},
|
|
22
23
|
"dependencies": {
|
|
23
24
|
"lit": "^3.3.1"
|
|
@@ -33,9 +34,6 @@
|
|
|
33
34
|
"@aurodesignsystem/webcorestylesheets": "^10.1.1",
|
|
34
35
|
"husky": "^9.1.7"
|
|
35
36
|
},
|
|
36
|
-
"optionalDependencies": {
|
|
37
|
-
"@rollup/rollup-linux-x64-gnu": "*"
|
|
38
|
-
},
|
|
39
37
|
"browserslist": [
|
|
40
38
|
"last 2 Chrome versions",
|
|
41
39
|
"last 2 iOS major versions",
|
|
@@ -61,6 +59,7 @@
|
|
|
61
59
|
"lint:fix": "biome check --fix --no-errors-on-unmatched && stylelint \"./src/**/*.scss\" --fix",
|
|
62
60
|
"test": "auro test",
|
|
63
61
|
"test:watch": "auro test --watch",
|
|
62
|
+
"test:coverage": "auro test --coverage-report --open",
|
|
64
63
|
"prepare": "husky"
|
|
65
64
|
},
|
|
66
65
|
"exports": {
|