@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.
@@ -13,7 +13,7 @@ export const SelectHiddenSelect = (props) => {
13
13
  <option value=""/>
14
14
  </Show>
15
15
  <Index each={select().collection.items}>
16
- {(option) => <option value={option().value}>{option().label}</option>}
16
+ {(item) => (<option value={select().collection.getItemValue(item) ?? ''} disabled={select().collection.getItemDisabled(item)}/>)}
17
17
  </Index>
18
18
  </ark.select>);
19
19
  };
@@ -1,2 +1,2 @@
1
1
  export { Highlight, type HighlightProps } from './highlight';
2
- export { useHighlight, type UseHighlightProps } from './use-highlight';
2
+ export { useHighlight, type UseHighlightProps, type HighlightChunk } from './use-highlight';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ark-ui/solid",
3
- "version": "3.6.0",
3
+ "version": "3.6.1",
4
4
  "description": "A collection of unstyled, accessible UI components for Solid, utilizing state machines for seamless interaction.",
5
5
  "keywords": [
6
6
  "accordion",