edu-webcomponents 1.15.2 → 1.15.3

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.
@@ -14,6 +14,6 @@ jobs:
14
14
  - name: release
15
15
  uses: dexwritescode/release-on-merge-action@v1
16
16
  with:
17
- version-increment-strategy: patch
17
+ version-increment-strategy: minor
18
18
  initial-version: '1.6.0'
19
19
  tag-prefix: v
package/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 1.15.3 - 2025-08-02
4
+ - Fix EduButton is always disabled
5
+
3
6
  ## 1.15.2 - 2025-08-02
4
7
  - Fix EduButton is always disabled
5
8
 
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  ],
12
12
  "license": "MIT",
13
13
  "author": "edu-webcomponents",
14
- "version": "1.15.2",
14
+ "version": "1.15.3",
15
15
  "repository": {
16
16
  "type": "git",
17
17
  "url": "https://github.com/eduardocruzpalacios/edu-webcomponents"
package/src/EduButton.js CHANGED
@@ -39,7 +39,6 @@ export class EduButton extends LitElement {
39
39
  this.text = 'Default text';
40
40
  this.type = 'button';
41
41
  this.ariaLabel = this.text;
42
- this.disabled = true;
43
42
  }
44
43
 
45
44
  render() {