@aurodesignsystem/auro-accordion 6.0.0-rc-1.1 → 6.0.0-rc-216.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/CHANGELOG.md +12 -1
- package/README.md +135 -84
- package/custom-elements.json +1331 -0
- package/demo/api.js +2 -0
- package/demo/api.md +311 -232
- package/demo/api.min.js +16 -3
- package/demo/auro-accordion.min.js +95 -50
- package/demo/index.md +16 -11
- package/dist/{auro-accordion-B6aPKaGa.js → auro-accordion-BmwXsHxz.js} +17 -13
- package/dist/index.d.ts +247 -121
- package/dist/index.js +1 -1
- package/dist/registered.js +1 -1
- package/package.json +21 -13
package/dist/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export{A as AuroAccordion,
|
|
1
|
+
export{A as AuroAccordion,a as AuroAccordionGroup}from"./auro-accordion-BmwXsHxz.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";
|
package/dist/registered.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{A as i,a as t}from"./auro-accordion-
|
|
1
|
+
import{A as i,a as t}from"./auro-accordion-BmwXsHxz.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,7 +7,7 @@
|
|
|
7
7
|
"================================================================================"
|
|
8
8
|
],
|
|
9
9
|
"name": "@aurodesignsystem/auro-accordion",
|
|
10
|
-
"version": "6.0.0-rc-
|
|
10
|
+
"version": "6.0.0-rc-216.1",
|
|
11
11
|
"description": "auro-accordion HTML custom element",
|
|
12
12
|
"repository": {
|
|
13
13
|
"type": "git",
|
|
@@ -18,20 +18,20 @@
|
|
|
18
18
|
"types": "dist/index.d.ts",
|
|
19
19
|
"license": "Apache-2.0",
|
|
20
20
|
"engines": {
|
|
21
|
-
"node": "
|
|
21
|
+
"node": ">=20"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"lit": "^3.3.1"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"@alaskaairux/icons": "^5.
|
|
28
|
-
"@aurodesignsystem/auro-button": "^12.
|
|
29
|
-
"@aurodesignsystem/auro-cli": "^3.0
|
|
30
|
-
"@aurodesignsystem/auro-config": "^1.3.
|
|
31
|
-
"@aurodesignsystem/auro-icon": "9.
|
|
32
|
-
"@aurodesignsystem/auro-library": "^5.5.
|
|
33
|
-
"@aurodesignsystem/design-tokens": "^8.
|
|
34
|
-
"@aurodesignsystem/webcorestylesheets": "^10.1.
|
|
27
|
+
"@alaskaairux/icons": "^5.14.0",
|
|
28
|
+
"@aurodesignsystem/auro-button": "^12.3.0",
|
|
29
|
+
"@aurodesignsystem/auro-cli": "^3.5.0",
|
|
30
|
+
"@aurodesignsystem/auro-config": "^1.3.1",
|
|
31
|
+
"@aurodesignsystem/auro-icon": "^9.1.1",
|
|
32
|
+
"@aurodesignsystem/auro-library": "^5.5.4",
|
|
33
|
+
"@aurodesignsystem/design-tokens": "^8.7.0",
|
|
34
|
+
"@aurodesignsystem/webcorestylesheets": "^10.1.4",
|
|
35
35
|
"husky": "^9.1.7"
|
|
36
36
|
},
|
|
37
37
|
"browserslist": [
|
|
@@ -42,7 +42,8 @@
|
|
|
42
42
|
"last 2 Safari major versions"
|
|
43
43
|
],
|
|
44
44
|
"publishConfig": {
|
|
45
|
-
"access": "public"
|
|
45
|
+
"access": "public",
|
|
46
|
+
"provenance": true
|
|
46
47
|
},
|
|
47
48
|
"keywords": [
|
|
48
49
|
"alaska airlines",
|
|
@@ -64,8 +65,13 @@
|
|
|
64
65
|
},
|
|
65
66
|
"exports": {
|
|
66
67
|
"./package.json": "./package.json",
|
|
68
|
+
"./custom-elements.json": "./custom-elements.json",
|
|
67
69
|
"./readme.md": "./README.md",
|
|
68
|
-
".":
|
|
70
|
+
".": {
|
|
71
|
+
"module": "./dist/registered.js",
|
|
72
|
+
"types": "./dist/index.d.ts",
|
|
73
|
+
"default": "./dist/registered.js"
|
|
74
|
+
},
|
|
69
75
|
"./demo/*.md": "./demo/*.md",
|
|
70
76
|
"./demo/*.js": "./demo/*.min.js",
|
|
71
77
|
"./class": {
|
|
@@ -75,11 +81,13 @@
|
|
|
75
81
|
}
|
|
76
82
|
},
|
|
77
83
|
"files": [
|
|
84
|
+
"custom-elements.json",
|
|
78
85
|
"dist/**/*",
|
|
79
86
|
"demo/**/*",
|
|
80
87
|
"CHANGELOG.md",
|
|
81
88
|
"README.md",
|
|
82
89
|
"LICENSE",
|
|
83
90
|
"NOTICE"
|
|
84
|
-
]
|
|
91
|
+
],
|
|
92
|
+
"customElements": "custom-elements.json"
|
|
85
93
|
}
|