edu-webcomponents 1.31.0 → 1.31.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
CHANGED
|
@@ -4,9 +4,16 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
+
#### [v1.31.1](https://github.com/eduardocruzpalacios/edu-webcomponents/compare/v1.31.0...v1.31.1)
|
|
8
|
+
|
|
9
|
+
- fix: add separation between lines in EduSkeletonText [`944bc37`](https://github.com/eduardocruzpalacios/edu-webcomponents/commit/944bc374e4c15d7413d64aa81321c62960609637)
|
|
10
|
+
|
|
7
11
|
#### [v1.31.0](https://github.com/eduardocruzpalacios/edu-webcomponents/compare/v1.30.1...v1.31.0)
|
|
8
12
|
|
|
9
|
-
|
|
13
|
+
> 21 January 2026
|
|
14
|
+
|
|
15
|
+
- feat: add EduLabel component [`c3bf1bb`](https://github.com/eduardocruzpalacios/edu-webcomponents/commit/c3bf1bb2d6fc9ee4c050c008132438fd3370b369)
|
|
16
|
+
- chore: release v1.31.0 [`4e2451d`](https://github.com/eduardocruzpalacios/edu-webcomponents/commit/4e2451d3a8369daef09958cdb23fc92b5f82e529)
|
|
10
17
|
|
|
11
18
|
#### [v1.30.1](https://github.com/eduardocruzpalacios/edu-webcomponents/compare/v1.30.0...v1.30.1)
|
|
12
19
|
|
package/package.json
CHANGED
|
@@ -18,9 +18,9 @@ export class EduSkeletonText extends LitElement {
|
|
|
18
18
|
static styles = [
|
|
19
19
|
colorsConstants,
|
|
20
20
|
css`
|
|
21
|
-
|
|
21
|
+
.container {
|
|
22
22
|
display: grid;
|
|
23
|
-
gap: 0.
|
|
23
|
+
gap: 0.125em;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
.line {
|
|
@@ -54,7 +54,12 @@ export class EduSkeletonText extends LitElement {
|
|
|
54
54
|
|
|
55
55
|
render() {
|
|
56
56
|
return html`
|
|
57
|
-
<div
|
|
57
|
+
<div
|
|
58
|
+
class="container"
|
|
59
|
+
role="status"
|
|
60
|
+
aria-live="polite"
|
|
61
|
+
aria-label="Loading content"
|
|
62
|
+
>
|
|
58
63
|
${Array.from(
|
|
59
64
|
{ length: this.lines },
|
|
60
65
|
() =>
|