You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A popup that goes above other content on the page. You can still interact with the rest of the page while the popover is open.
@@ -24,6 +43,7 @@ A popup that goes above other content on the page. You can still interact with t
24
43
'Polyfill for unsupported browsers',
25
44
'Executes code on interaction',
26
45
'Float and position the popover',
46
+
'Supports RTL',
27
47
]}
28
48
/>
29
49
@@ -342,9 +362,15 @@ To read more about the popover API you can check it out on:
342
362
},
343
363
{
344
364
name: 'floating',
345
-
type: 'boolean | TPlacement',
365
+
type: 'boolean | Placement',
346
366
description: 'Enables extra JavaScript behavior for floating elements.',
347
367
},
368
+
{
369
+
name: 'strategy',
370
+
type: 'absolute | fixed',
371
+
description:
372
+
'The strategy to use when positioning the floating element. The default value is absolute, which suites most cases, while fixed position might be better in legacy browsers like iOS 15.4.',
Copy file name to clipboardExpand all lines: packages/kit-headless/CHANGELOG.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,17 @@
1
1
# Changelog
2
2
3
+
## 0.7.0
4
+
5
+
### Minor Changes
6
+
7
+
- minor: adds strategy prop to use when positioning the floating element in popover (by [@ignatvilesov](https://github.com/ignatvilesov) in [#1114](https://github.com/qwikifiers/qwik-ui/pull/1114))
8
+
9
+
### Patch Changes
10
+
11
+
- 🐞🩹 Modal.Close now of type button (by [@Caesarovich](https://github.com/Caesarovich) in [#1110](https://github.com/qwikifiers/qwik-ui/pull/1110))
12
+
13
+
- Support rtl for elements using floating ui (by [@omerman](https://github.com/omerman) in [#1109](https://github.com/qwikifiers/qwik-ui/pull/1109))
0 commit comments