@decidables/decidables-elements 0.4.6 → 0.4.8

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,23 @@
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.8](https://github.com/decidables/decidables/compare/@decidables/decidables-elements@0.4.7...@decidables/decidables-elements@0.4.8) (2025-01-26)
7
+
8
+ **Note:** Version bump only for package @decidables/decidables-elements
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.4.7](https://github.com/decidables/decidables/compare/@decidables/decidables-elements@0.4.6...@decidables/decidables-elements@0.4.7) (2025-01-17)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **decidables-elements:** fix disabled attribute for slider ([9dd5c5a](https://github.com/decidables/decidables/commit/9dd5c5a4f69fa67a5ec80eb7160e933609bfbc77))
20
+
21
+
22
+
6
23
  ## [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
24
 
8
25
  **Note:** Version bump only for package @decidables/decidables-elements
package/README.md CHANGED
@@ -287,10 +287,14 @@ And `this.stuff` will be a `Set` with members: `'this'`, `'that'`, and `'other'`
287
287
  - Lints markdown, scripts and styles
288
288
  - `yarn test`
289
289
  - Runs all tests and reports coverage in `test/coverage/`
290
- - `yarn test:watch`
290
+ - `yarn test --watch`
291
+ - `yarn test -w`
291
292
  - Runs all tests in watch mode and reports coverage in `test/coverage/`
292
- - `yarn test:file <filename>`
293
+ - `yarn test <directory/filename>`
293
294
  - Runs tests for a single file and reports coverage in `test/coverage/`
295
+ - `yarn test <directory/filename> --watch`
296
+ - `yarn test <directory/filename> -w`
297
+ - Runs tests for a single file in watch mode and reports coverage in `test/coverage/`
294
298
  - `yarn build`
295
299
  - Builds bundles from `src/` to `lib/`
296
300
 
@@ -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
  }