bits-ui 0.21.7 → 0.21.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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { EventHandler, HTMLInputAttributes } from "svelte/elements";
|
|
1
|
+
import type { EventHandler, HTMLInputAttributes, HTMLLabelAttributes } from "svelte/elements";
|
|
2
2
|
import type { ComboboxOptionProps as MeltComboboxOptionProps, CreateComboboxProps as MeltComboboxProps } from "@melt-ui/svelte";
|
|
3
3
|
import type { DOMElement, Expand, HTMLDivAttributes, OmitFloating, OnChangeFn, Transition } from "../../internal/index.js";
|
|
4
4
|
import type { CustomEventHandler, Selected } from "../../index.js";
|
|
@@ -65,7 +65,7 @@ export type ComboboxIndicatorPropsWithoutHTML = DOMElement;
|
|
|
65
65
|
export type ComboboxProps<T, Multiple extends boolean = false> = ComboboxPropsWithoutHTML<T, Multiple>;
|
|
66
66
|
export type ComboboxContentProps<T extends Transition = Transition, In extends Transition = Transition, Out extends Transition = Transition> = ComboboxContentPropsWithoutHTML<T, In, Out> & HTMLDivAttributes;
|
|
67
67
|
export type ComboboxInputProps = ComboboxInputPropsWithoutHTML & HTMLInputAttributes;
|
|
68
|
-
export type ComboboxLabelProps = ComboboxLabelPropsWithoutHTML &
|
|
68
|
+
export type ComboboxLabelProps = ComboboxLabelPropsWithoutHTML & HTMLLabelAttributes;
|
|
69
69
|
export type ComboboxGroupProps = ComboboxGroupPropsWithoutHTML & HTMLDivAttributes;
|
|
70
70
|
export type ComboboxGroupLabelProps = ComboboxGroupLabelPropsWithoutHTML & HTMLDivAttributes;
|
|
71
71
|
export type ComboboxItemProps = ComboboxItemPropsWithoutHTML & HTMLDivAttributes;
|