@decidables/discountable-elements 0.3.6 → 0.3.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 +8 -0
- package/lib/discountableElements.esm.js +2 -2
- package/lib/discountableElements.esm.js.map +1 -1
- package/lib/discountableElements.esm.min.js +2 -2
- package/lib/discountableElements.esm.min.js.map +1 -1
- package/lib/discountableElements.umd.js +2 -2
- package/lib/discountableElements.umd.js.map +1 -1
- package/lib/discountableElements.umd.min.js +2 -2
- package/lib/discountableElements.umd.min.js.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.3.7](https://github.com/decidables/decidables/compare/@decidables/discountable-elements@0.3.6...@decidables/discountable-elements@0.3.7) (2025-01-17)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @decidables/discountable-elements
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [0.3.6](https://github.com/decidables/decidables/compare/@decidables/discountable-elements@0.3.5...@decidables/discountable-elements@0.3.6) (2024-05-04)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @decidables/discountable-elements
|
|
@@ -10884,9 +10884,9 @@ class DecidablesSlider extends DecidablesElement {
|
|
|
10884
10884
|
<slot></slot>
|
|
10885
10885
|
</label>
|
|
10886
10886
|
<div class="range">
|
|
10887
|
-
<input type="range" id="slider" min=${o$2(this.min)} max=${o$2(this.max)} step=${o$2(this.step)} .value=${this.value} @change=${this.changed.bind(this)} @input=${this.inputted.bind(this)}>
|
|
10887
|
+
<input ?disabled=${this.disabled} type="range" id="slider" min=${o$2(this.min)} max=${o$2(this.max)} step=${o$2(this.step)} .value=${this.value} @change=${this.changed.bind(this)} @input=${this.inputted.bind(this)}>
|
|
10888
10888
|
</div>
|
|
10889
|
-
<decidables-spinner min=${o$2(this.min)} max=${o$2(this.max)} step=${o$2(this.step)} .value=${this.value} @input=${this.inputted.bind(this)}></decidables-spinner>
|
|
10889
|
+
<decidables-spinner ?disabled=${this.disabled} min=${o$2(this.min)} max=${o$2(this.max)} step=${o$2(this.step)} .value=${this.value} @input=${this.inputted.bind(this)}></decidables-spinner>
|
|
10890
10890
|
`;
|
|
10891
10891
|
}
|
|
10892
10892
|
}
|