@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/cjs/index.js
CHANGED
|
@@ -4445,10 +4445,10 @@ const SelectHiddenSelect = props => {
|
|
|
4445
4445
|
get each() {
|
|
4446
4446
|
return select().collection.items;
|
|
4447
4447
|
},
|
|
4448
|
-
children:
|
|
4448
|
+
children: item => (() => {
|
|
4449
4449
|
var _el$2 = _tmpl$2$1();
|
|
4450
|
-
web.
|
|
4451
|
-
web.effect(() => _el$2.value =
|
|
4450
|
+
web.effect(() => _el$2.disabled = select().collection.getItemDisabled(item));
|
|
4451
|
+
web.effect(() => _el$2.value = select().collection.getItemValue(item) ?? '');
|
|
4452
4452
|
return _el$2;
|
|
4453
4453
|
})()
|
|
4454
4454
|
})];
|