@decidables/decidables-elements 0.4.6 → 0.4.7

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
@@ -3,6 +3,15 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.4.7](https://github.com/decidables/decidables/compare/@decidables/decidables-elements@0.4.6...@decidables/decidables-elements@0.4.7) (2025-01-17)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **decidables-elements:** fix disabled attribute for slider ([9dd5c5a](https://github.com/decidables/decidables/commit/9dd5c5a4f69fa67a5ec80eb7160e933609bfbc77))
12
+
13
+
14
+
6
15
  ## [0.4.6](https://github.com/decidables/decidables/compare/@decidables/decidables-elements@0.4.5...@decidables/decidables-elements@0.4.6) (2024-05-04)
7
16
 
8
17
  **Note:** Version bump only for package @decidables/decidables-elements
@@ -3782,9 +3782,9 @@ class DecidablesSlider extends DecidablesElement {
3782
3782
  <slot></slot>
3783
3783
  </label>
3784
3784
  <div class="range">
3785
- <input type="range" id="slider" min=${o(this.min)} max=${o(this.max)} step=${o(this.step)} .value=${this.value} @change=${this.changed.bind(this)} @input=${this.inputted.bind(this)}>
3785
+ <input ?disabled=${this.disabled} type="range" id="slider" min=${o(this.min)} max=${o(this.max)} step=${o(this.step)} .value=${this.value} @change=${this.changed.bind(this)} @input=${this.inputted.bind(this)}>
3786
3786
  </div>
3787
- <decidables-spinner min=${o(this.min)} max=${o(this.max)} step=${o(this.step)} .value=${this.value} @input=${this.inputted.bind(this)}></decidables-spinner>
3787
+ <decidables-spinner ?disabled=${this.disabled} min=${o(this.min)} max=${o(this.max)} step=${o(this.step)} .value=${this.value} @input=${this.inputted.bind(this)}></decidables-spinner>
3788
3788
  `;
3789
3789
  }
3790
3790
  }