@ark-ui/solid 3.6.0 → 3.6.1
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/dist/esm/index.js
CHANGED
|
@@ -4424,10 +4424,10 @@ const SelectHiddenSelect = props => {
|
|
|
4424
4424
|
get each() {
|
|
4425
4425
|
return select().collection.items;
|
|
4426
4426
|
},
|
|
4427
|
-
children:
|
|
4427
|
+
children: item => (() => {
|
|
4428
4428
|
var _el$2 = _tmpl$2$1();
|
|
4429
|
-
|
|
4430
|
-
effect(() => _el$2.value =
|
|
4429
|
+
effect(() => _el$2.disabled = select().collection.getItemDisabled(item));
|
|
4430
|
+
effect(() => _el$2.value = select().collection.getItemValue(item) ?? '');
|
|
4431
4431
|
return _el$2;
|
|
4432
4432
|
})()
|
|
4433
4433
|
})];
|