frappe-ui 0.1.251 → 0.1.252

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "frappe-ui",
3
- "version": "0.1.251",
3
+ "version": "0.1.252",
4
4
  "description": "A set of components and utilities for rapid UI development",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -24,6 +24,7 @@
24
24
  <PopoverContent
25
25
  :side="placementSide"
26
26
  :align="placementAlign"
27
+ :sideOffset="offset"
27
28
  :style="{
28
29
  minWidth: matchTargetWidth
29
30
  ? 'var(--reka-popover-trigger-width)'
@@ -20,6 +20,7 @@ export interface PopoverProps {
20
20
  transition?: 'default' | null
21
21
  hideOnBlur?: boolean
22
22
  matchTargetWidth?: boolean
23
+ offset?: number
23
24
  }
24
25
 
25
26
  export interface PopoverEmits {