@aurodesignsystem/auro-accordion 5.2.1 → 5.2.2

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 (71) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/README.md +1 -1
  3. package/coverage/lcov-report/index.html +23 -113
  4. package/coverage/lcov-report/{auro-accordion-button.js.html → src/auro-accordion-button.js.html} +89 -20
  5. package/coverage/lcov-report/{auro-accordion-group.js.html → src/auro-accordion-group.js.html} +10 -10
  6. package/coverage/lcov-report/{auro-accordion.js.html → src/auro-accordion.js.html} +127 -52
  7. package/coverage/lcov-report/{iconVersion.js.html → src/iconVersion.js.html} +11 -11
  8. package/coverage/lcov-report/src/index.html +161 -0
  9. package/coverage/lcov-report/{color-css.js.html → src/styles/color-css.js.html} +11 -11
  10. package/coverage/lcov-report/src/styles/index.html +161 -0
  11. package/coverage/lcov-report/{style-button-css.js.html → src/styles/style-button-css.js.html} +11 -11
  12. package/coverage/lcov-report/src/styles/style-css.js.html +91 -0
  13. package/coverage/lcov-report/{tokens-css.js.html → src/styles/tokens-css.js.html} +11 -11
  14. package/coverage/lcov.info +214 -146
  15. package/demo/api.html +18 -10
  16. package/demo/api.md +6 -6
  17. package/demo/api.min.js +967 -175
  18. package/demo/index.html +17 -10
  19. package/demo/index.min.js +967 -175
  20. package/dist/auro-accordion__bundled.js +967 -175
  21. package/dist/{auro-accordion-button.d.ts → src/auro-accordion-button.d.ts} +2 -0
  22. package/dist/src/auro-accordion-button.d.ts.map +1 -0
  23. package/dist/src/auro-accordion-group.d.ts.map +1 -0
  24. package/dist/{auro-accordion.d.ts → src/auro-accordion.d.ts} +4 -4
  25. package/dist/src/auro-accordion.d.ts.map +1 -0
  26. package/dist/src/iconVersion.d.ts +3 -0
  27. package/dist/src/iconVersion.d.ts.map +1 -0
  28. package/dist/{color-css.d.ts.map → src/styles/color-css.d.ts.map} +1 -1
  29. package/dist/src/styles/style-button-css.d.ts.map +1 -0
  30. package/dist/{style-css.d.ts.map → src/styles/style-css.d.ts.map} +1 -1
  31. package/dist/{tokens-css.d.ts.map → src/styles/tokens-css.d.ts.map} +1 -1
  32. package/dist/test/auro-accordion-group.test.d.ts +2 -0
  33. package/dist/test/auro-accordion-group.test.d.ts.map +1 -0
  34. package/dist/test/auro-accordion.test.d.ts +2 -0
  35. package/dist/test/auro-accordion.test.d.ts.map +1 -0
  36. package/package.json +37 -36
  37. package/src/auro-accordion-button.js +25 -2
  38. package/src/auro-accordion.js +49 -24
  39. package/src/iconVersion.js +1 -1
  40. package/src/styles/color-css.js +2 -0
  41. package/src/styles/color.css +43 -0
  42. package/src/{color.scss → styles/color.scss} +11 -7
  43. package/src/styles/style-button-css.js +2 -0
  44. package/src/styles/style-button.css +61 -0
  45. package/src/{style-button.scss → styles/style-button.scss} +16 -11
  46. package/src/styles/style-css.js +2 -0
  47. package/src/styles/style.css +347 -0
  48. package/src/{style.scss → styles/style.scss} +19 -33
  49. package/src/styles/tokens-css.js +2 -0
  50. package/src/styles/tokens.css +7 -0
  51. package/src/{tokens.scss → styles/tokens.scss} +4 -4
  52. package/coverage/lcov-report/style-css.js.html +0 -91
  53. package/dist/auro-accordion-button.d.ts.map +0 -1
  54. package/dist/auro-accordion-group.d.ts.map +0 -1
  55. package/dist/auro-accordion.d.ts.map +0 -1
  56. package/dist/iconVersion.d.ts +0 -3
  57. package/dist/iconVersion.d.ts.map +0 -1
  58. package/dist/style-button-css.d.ts.map +0 -1
  59. package/src/color-css.js +0 -2
  60. package/src/color.css +0 -39
  61. package/src/style-button-css.js +0 -2
  62. package/src/style-button.css +0 -53
  63. package/src/style-css.js +0 -2
  64. package/src/style.css +0 -147
  65. package/src/tokens-css.js +0 -2
  66. package/src/tokens.css +0 -7
  67. /package/dist/{auro-accordion-group.d.ts → src/auro-accordion-group.d.ts} +0 -0
  68. /package/dist/{color-css.d.ts → src/styles/color-css.d.ts} +0 -0
  69. /package/dist/{style-button-css.d.ts → src/styles/style-button-css.d.ts} +0 -0
  70. /package/dist/{style-css.d.ts → src/styles/style-css.d.ts} +0 -0
  71. /package/dist/{tokens-css.d.ts → src/styles/tokens-css.d.ts} +0 -0
package/demo/index.html CHANGED
@@ -16,24 +16,31 @@
16
16
  <head>
17
17
  <meta charset="UTF-8" />
18
18
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
19
- <title>Auro Web Component Generator | auro-accordion custom element</title>
20
- <link
21
- rel="stylesheet"
22
- type="text/css"
23
- href="https://cdn.jsdelivr.net/npm/prismjs@1.24.1/themes/prism.css"
24
- />
25
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/design-tokens@latest/dist/auro-classic/CSSCustomProperties.css">
26
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/design-tokens@latest/dist/alaska/CSSCustomProperties--alaska.css">
19
+ <title>Auro Web Component Demo | auro-accordion</title>
20
+
21
+ <!-- Prism.js Stylesheet -->
22
+ <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/prismjs@1.24.1/themes/prism.css"/>
23
+
24
+ <!-- Legacy reference is still needed to support auro-accordion's use of legacy token values at this time -->
25
+ <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/design-tokens@latest/dist/legacy/auro-classic/CSSCustomProperties.css"/>
26
+
27
+ <!-- Design Token Alaska Theme -->
28
+ <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/design-tokens@latest/dist/themes/alaska/CSSCustomProperties--alaska.min.css"/>
29
+
30
+ <!-- Webcore Stylesheet Alaska Theme -->
31
+ <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/webcorestylesheets@latest/dist/bundled/themes/alaska.global.min.css" />
32
+
33
+ <!-- Demo Specific Styles -->
27
34
  <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/webcorestylesheets@latest/dist/demoWrapper.css" />
28
35
  <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/webcorestylesheets@latest/dist/elementDemoStyles.css" />
29
- </head>
36
+ </head>
30
37
  <body class="auro-markdown">
31
38
  <main></main>
32
39
 
33
40
  <script type="module">
34
41
  import 'https://cdn.jsdelivr.net/npm/marked@5.1.0/marked.min.js';
35
42
  import 'https://cdn.jsdelivr.net/npm/prismjs@latest/prism.js';
36
- fetch('/demo/index.md')
43
+ fetch('./index.md')
37
44
  .then((response) => response.text())
38
45
  .then((text) => {
39
46
  const rawHtml = marked.parse(text);