@aurodesignsystem/auro-accordion 4.4.1 → 5.0.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/CHANGELOG.md +15 -0
- package/README.md +3 -3
- package/coverage/lcov-report/auro-accordion-button.js.html +1 -1
- package/coverage/lcov-report/auro-accordion-group.js.html +1 -1
- package/coverage/lcov-report/auro-accordion.js.html +1 -1
- package/coverage/lcov-report/color-css.js.html +1 -1
- package/coverage/lcov-report/iconVersion.js.html +2 -2
- package/coverage/lcov-report/index.html +1 -1
- package/coverage/lcov-report/style-button-css.js.html +1 -1
- package/coverage/lcov-report/style-css.js.html +1 -1
- package/coverage/lcov-report/tokens-css.js.html +1 -1
- package/demo/api.min.js +2 -2
- package/demo/index.min.js +2 -2
- package/dist/auro-accordion__bundled.js +2 -2
- package/dist/iconVersion.d.ts +1 -1
- package/package.json +9 -13
- package/packageScripts/postinstall.mjs +1 -1
- package/src/iconVersion.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Semantic Release Automated Changelog
|
|
2
2
|
|
|
3
|
+
# [5.0.0](https://github.com/AlaskaAirlines/auro-accordion/compare/v4.4.1...v5.0.0) (2025-02-28)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
* feat!: move peer dependencies to "real" dependencies ([20b6416](https://github.com/AlaskaAirlines/auro-accordion/commit/20b64165437e3c9044f1d5622cfc856ac709fc0d))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### BREAKING CHANGES
|
|
10
|
+
|
|
11
|
+
* last change was breaking _on a patch version_ because of peer dependencies
|
|
12
|
+
|
|
13
|
+
Summary:
|
|
14
|
+
Our current build process relies on peer dependencies being present, but
|
|
15
|
+
the peer dependency pipeline is causing far more issues than it's worth.
|
|
16
|
+
Why not just make them regular dependencies? This is what this PR does :)
|
|
17
|
+
|
|
3
18
|
## [4.4.1](https://github.com/AlaskaAirlines/auro-accordion/compare/v4.4.0...v4.4.1) (2025-02-08)
|
|
4
19
|
|
|
5
20
|
|
package/README.md
CHANGED
|
@@ -123,9 +123,9 @@ In cases where the project is not able to process JS assets, there are pre-proce
|
|
|
123
123
|
<!-- AURO-GENERATED-CONTENT:START (REMOTE:url=https://raw.githubusercontent.com/AlaskaAirlines/WC-Generator/master/componentDocs/partials/usage/bundleUseModBrowsers.md) -->
|
|
124
124
|
|
|
125
125
|
```html
|
|
126
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/design-tokens
|
|
127
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/webcorestylesheets
|
|
128
|
-
<script src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-accordion@
|
|
126
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/design-tokens@/dist/auro-classic/CSSCustomProperties.css" />
|
|
127
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/webcorestylesheets@/dist/bundled/essentials.css" />
|
|
128
|
+
<script src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-accordion@5.0.0/dist/auro-accordion__bundled.js" type="module"></script>
|
|
129
129
|
```
|
|
130
130
|
|
|
131
131
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
@@ -169,7 +169,7 @@ export class AuroAccordionButton extends AuroButton {
|
|
|
169
169
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
170
170
|
Code coverage generated by
|
|
171
171
|
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
172
|
-
at 2025-02-
|
|
172
|
+
at 2025-02-28T20:41:17.171Z
|
|
173
173
|
</div>
|
|
174
174
|
<script src="prettify.js"></script>
|
|
175
175
|
<script>
|
|
@@ -457,7 +457,7 @@ export class AuroAccordionGroup extends LitElement {
|
|
|
457
457
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
458
458
|
Code coverage generated by
|
|
459
459
|
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
460
|
-
at 2025-02-
|
|
460
|
+
at 2025-02-28T20:41:17.171Z
|
|
461
461
|
</div>
|
|
462
462
|
<script src="prettify.js"></script>
|
|
463
463
|
<script>
|
|
@@ -745,7 +745,7 @@ export class AuroAccordion extends LitElement {
|
|
|
745
745
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
746
746
|
Code coverage generated by
|
|
747
747
|
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
748
|
-
at 2025-02-
|
|
748
|
+
at 2025-02-28T20:41:17.171Z
|
|
749
749
|
</div>
|
|
750
750
|
<script src="prettify.js"></script>
|
|
751
751
|
<script>
|
|
@@ -76,7 +76,7 @@ export default css`:host .trigger{color:var(--ds-auro-accordion-trigger-color);b
|
|
|
76
76
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
77
77
|
Code coverage generated by
|
|
78
78
|
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
79
|
-
at 2025-02-
|
|
79
|
+
at 2025-02-28T20:41:17.171Z
|
|
80
80
|
</div>
|
|
81
81
|
<script src="prettify.js"></script>
|
|
82
82
|
<script>
|
|
@@ -63,14 +63,14 @@
|
|
|
63
63
|
</div>
|
|
64
64
|
<div class='status-line high'></div>
|
|
65
65
|
<pre><table class="coverage">
|
|
66
|
-
<tr><td class="line-count quiet"><a name='L1'></a><a href='#L1'>1</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">2x</span></td><td class="text"><pre class="prettyprint lang-js">export default '
|
|
66
|
+
<tr><td class="line-count quiet"><a name='L1'></a><a href='#L1'>1</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">2x</span></td><td class="text"><pre class="prettyprint lang-js">export default '7.0.0'</pre></td></tr></table></pre>
|
|
67
67
|
|
|
68
68
|
<div class='push'></div><!-- for sticky footer -->
|
|
69
69
|
</div><!-- /wrapper -->
|
|
70
70
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
71
71
|
Code coverage generated by
|
|
72
72
|
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
73
|
-
at 2025-02-
|
|
73
|
+
at 2025-02-28T20:41:17.171Z
|
|
74
74
|
</div>
|
|
75
75
|
<script src="prettify.js"></script>
|
|
76
76
|
<script>
|
|
@@ -206,7 +206,7 @@
|
|
|
206
206
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
207
207
|
Code coverage generated by
|
|
208
208
|
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
209
|
-
at 2025-02-
|
|
209
|
+
at 2025-02-28T20:41:17.171Z
|
|
210
210
|
</div>
|
|
211
211
|
<script src="prettify.js"></script>
|
|
212
212
|
<script>
|
|
@@ -76,7 +76,7 @@ export default css`:focus:not(:focus-visible){outline:3px solid transparent}:hos
|
|
|
76
76
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
77
77
|
Code coverage generated by
|
|
78
78
|
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
79
|
-
at 2025-02-
|
|
79
|
+
at 2025-02-28T20:41:17.171Z
|
|
80
80
|
</div>
|
|
81
81
|
<script src="prettify.js"></script>
|
|
82
82
|
<script>
|
|
@@ -76,7 +76,7 @@ export default css`:host{interpolate-size:allow-keywords}:host .trigger{position
|
|
|
76
76
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
77
77
|
Code coverage generated by
|
|
78
78
|
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
79
|
-
at 2025-02-
|
|
79
|
+
at 2025-02-28T20:41:17.171Z
|
|
80
80
|
</div>
|
|
81
81
|
<script src="prettify.js"></script>
|
|
82
82
|
<script>
|
|
@@ -76,7 +76,7 @@ export default css`:host{--ds-auro-accordion-content-border-color:transparent;--
|
|
|
76
76
|
<div class='footer quiet pad2 space-top1 center small'>
|
|
77
77
|
Code coverage generated by
|
|
78
78
|
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
|
|
79
|
-
at 2025-02-
|
|
79
|
+
at 2025-02-28T20:41:17.171Z
|
|
80
80
|
</div>
|
|
81
81
|
<script src="prettify.js"></script>
|
|
82
82
|
<script>
|
package/demo/api.min.js
CHANGED
|
@@ -452,7 +452,7 @@ class AuroLoader extends r {
|
|
|
452
452
|
}
|
|
453
453
|
}
|
|
454
454
|
|
|
455
|
-
var loaderVersion = '
|
|
455
|
+
var loaderVersion = '4.0.0';
|
|
456
456
|
|
|
457
457
|
// Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
|
|
458
458
|
// See LICENSE in the project root for license information.
|
|
@@ -1155,7 +1155,7 @@ class AuroIcon extends BaseIcon {
|
|
|
1155
1155
|
}
|
|
1156
1156
|
}
|
|
1157
1157
|
|
|
1158
|
-
var iconVersion = '
|
|
1158
|
+
var iconVersion = '7.0.0';
|
|
1159
1159
|
|
|
1160
1160
|
var chevronUp = {"svg":"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" aria-labelledby=\"chevron-up__desc\" class=\"ico_squareLarge\" role=\"img\" style=\"min-width:var(--auro-size-lg, var(--ds-size-300, 1.5rem));height:var(--auro-size-lg, var(--ds-size-300, 1.5rem));fill:currentColor\" viewBox=\"0 0 24 24\" part=\"svg\"><title/><desc id=\"chevron-up__desc\">Directional indicator; up.</desc><path d=\"m17.603 14.343-.073.084a.75.75 0 0 1-.976.073l-.084-.073L12 9.957l-4.47 4.47a.75.75 0 0 1-.976.073l-.084-.073a.75.75 0 0 1-.073-.976l.073-.085 4.823-4.823a1 1 0 0 1 1.414 0l4.823 4.823a.75.75 0 0 1 .073.977\"/></svg>"};
|
|
1161
1161
|
|
package/demo/index.min.js
CHANGED
|
@@ -440,7 +440,7 @@ class AuroLoader extends r {
|
|
|
440
440
|
}
|
|
441
441
|
}
|
|
442
442
|
|
|
443
|
-
var loaderVersion = '
|
|
443
|
+
var loaderVersion = '4.0.0';
|
|
444
444
|
|
|
445
445
|
// Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
|
|
446
446
|
// See LICENSE in the project root for license information.
|
|
@@ -1143,7 +1143,7 @@ class AuroIcon extends BaseIcon {
|
|
|
1143
1143
|
}
|
|
1144
1144
|
}
|
|
1145
1145
|
|
|
1146
|
-
var iconVersion = '
|
|
1146
|
+
var iconVersion = '7.0.0';
|
|
1147
1147
|
|
|
1148
1148
|
var chevronUp = {"svg":"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" aria-labelledby=\"chevron-up__desc\" class=\"ico_squareLarge\" role=\"img\" style=\"min-width:var(--auro-size-lg, var(--ds-size-300, 1.5rem));height:var(--auro-size-lg, var(--ds-size-300, 1.5rem));fill:currentColor\" viewBox=\"0 0 24 24\" part=\"svg\"><title/><desc id=\"chevron-up__desc\">Directional indicator; up.</desc><path d=\"m17.603 14.343-.073.084a.75.75 0 0 1-.976.073l-.084-.073L12 9.957l-4.47 4.47a.75.75 0 0 1-.976.073l-.084-.073a.75.75 0 0 1-.073-.976l.073-.085 4.823-4.823a1 1 0 0 1 1.414 0l4.823 4.823a.75.75 0 0 1 .073.977\"/></svg>"};
|
|
1149
1149
|
|
|
@@ -440,7 +440,7 @@ class AuroLoader extends r {
|
|
|
440
440
|
}
|
|
441
441
|
}
|
|
442
442
|
|
|
443
|
-
var loaderVersion = '
|
|
443
|
+
var loaderVersion = '4.0.0';
|
|
444
444
|
|
|
445
445
|
// Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
|
|
446
446
|
// See LICENSE in the project root for license information.
|
|
@@ -1143,7 +1143,7 @@ class AuroIcon extends BaseIcon {
|
|
|
1143
1143
|
}
|
|
1144
1144
|
}
|
|
1145
1145
|
|
|
1146
|
-
var iconVersion = '
|
|
1146
|
+
var iconVersion = '7.0.0';
|
|
1147
1147
|
|
|
1148
1148
|
var chevronUp = {"svg":"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" aria-labelledby=\"chevron-up__desc\" class=\"ico_squareLarge\" role=\"img\" style=\"min-width:var(--auro-size-lg, var(--ds-size-300, 1.5rem));height:var(--auro-size-lg, var(--ds-size-300, 1.5rem));fill:currentColor\" viewBox=\"0 0 24 24\" part=\"svg\"><title/><desc id=\"chevron-up__desc\">Directional indicator; up.</desc><path d=\"m17.603 14.343-.073.084a.75.75 0 0 1-.976.073l-.084-.073L12 9.957l-4.47 4.47a.75.75 0 0 1-.976.073l-.084-.073a.75.75 0 0 1-.073-.976l.073-.085 4.823-4.823a1 1 0 0 1 1.414 0l4.823 4.823a.75.75 0 0 1 .073.977\"/></svg>"};
|
|
1149
1149
|
|
package/dist/iconVersion.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"================================================================================"
|
|
8
8
|
],
|
|
9
9
|
"name": "@aurodesignsystem/auro-accordion",
|
|
10
|
-
"version": "
|
|
10
|
+
"version": "5.0.0",
|
|
11
11
|
"description": "auro-accordion HTML custom element",
|
|
12
12
|
"repository": {
|
|
13
13
|
"type": "git",
|
|
@@ -20,21 +20,17 @@
|
|
|
20
20
|
"node": "^20.x || ^22.x "
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@alaskaairux/icons": "
|
|
24
|
-
"@aurodesignsystem/auro-button": "
|
|
25
|
-
"@aurodesignsystem/auro-icon": "
|
|
26
|
-
"@aurodesignsystem/auro-library": "
|
|
23
|
+
"@alaskaairux/icons": "5.2.0",
|
|
24
|
+
"@aurodesignsystem/auro-button": "9.0.0",
|
|
25
|
+
"@aurodesignsystem/auro-icon": "7.0.0",
|
|
26
|
+
"@aurodesignsystem/auro-library": "3.0.11",
|
|
27
27
|
"chalk": "^5.3.0",
|
|
28
|
-
"lit": "^3.2.1"
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
"@aurodesignsystem/design-tokens": "^4.13.0",
|
|
32
|
-
"@aurodesignsystem/webcorestylesheets": "^6.0.2"
|
|
28
|
+
"lit": "^3.2.1",
|
|
29
|
+
"@aurodesignsystem/webcorestylesheets": "6.1.0",
|
|
30
|
+
"@aurodesignsystem/design-tokens": "5.0.2"
|
|
33
31
|
},
|
|
34
32
|
"devDependencies": {
|
|
35
|
-
"@aurodesignsystem/
|
|
36
|
-
"@aurodesignsystem/eslint-config": "^1.3.3",
|
|
37
|
-
"@aurodesignsystem/webcorestylesheets": "^6.0.2",
|
|
33
|
+
"@aurodesignsystem/eslint-config": "1.3.4",
|
|
38
34
|
"@commitlint/cli": "^19.5.0",
|
|
39
35
|
"@commitlint/config-conventional": "^19.5.0",
|
|
40
36
|
"@open-wc/testing": "^4.0.0",
|
package/src/iconVersion.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export default '
|
|
1
|
+
export default '7.0.0'
|