File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed
packages/kit-headless/src/components/combobox Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,6 @@ import type {
31
31
AutoPlacementOptions ,
32
32
HideOptions ,
33
33
InlineOptions ,
34
- Platform ,
35
34
} from '@floating-ui/core' ;
36
35
37
36
import ComboboxContextId from './combobox-context-id' ;
@@ -58,8 +57,7 @@ export type ComboboxListboxProps = {
58
57
onPositionComputed ?: ( resolvedData : ComputePositionReturn ) => void ;
59
58
60
59
// misc
61
- transform : string ;
62
- platform : Platform ;
60
+ transform ?: string ;
63
61
} & QwikIntrinsicElements [ 'ul' ] ;
64
62
65
63
export const ComboboxListbox = component$ (
@@ -79,7 +77,6 @@ export const ComboboxListbox = component$(
79
77
animationFrame = false ,
80
78
onPositionComputed,
81
79
transform,
82
- platform,
83
80
...props
84
81
} : ComboboxListboxProps ) => {
85
82
const context = useContext < ComboboxContext < O > > ( ComboboxContextId ) ;
@@ -109,7 +106,6 @@ export const ComboboxListbox = component$(
109
106
{
110
107
placement,
111
108
middleware,
112
- platform,
113
109
} ,
114
110
) . then ( ( resolvedData ) => {
115
111
const { x, y } = resolvedData ;
You can’t perform that action at this time.
0 commit comments