@skirbi/sugar 0.0.19 → 0.0.20

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/Changes CHANGED
@@ -1,5 +1,9 @@
1
1
  Revision history for @skirbi/sugar
2
2
 
3
+ 0.0.20 2026-04-24 18:34:26Z
4
+
5
+ * And do not disable it
6
+
3
7
  0.0.19 2026-04-24 18:31:29Z
4
8
 
5
9
  * Fix nuking placeholder for select
@@ -129,7 +129,6 @@ export class HTMLElementSugarSelect extends HTMLElementSugarInput {
129
129
  const opt = document.createElement('option');
130
130
  opt.value = '';
131
131
  opt.textContent = text;
132
- opt.disabled = true;
133
132
 
134
133
  if (!select.value) opt.selected = true;
135
134
 
package/lib/index.mjs CHANGED
@@ -2,7 +2,7 @@
2
2
  //
3
3
  // SPDX-License-Identifier: MIT
4
4
 
5
- const VERSION = "0.0.19";
5
+ const VERSION = "0.0.20";
6
6
 
7
7
  export { HTMLElementSugar } from './htmlelement.mjs';
8
8
  export { HTMLElementSugarInput } from './htmlelement-input.mjs';
package/package.json CHANGED
@@ -52,5 +52,5 @@
52
52
  },
53
53
  "sideEffects": false,
54
54
  "type": "module",
55
- "version": "0.0.19"
55
+ "version": "0.0.20"
56
56
  }