@v1nt1248/3nclient-lib 0.3.29 → 0.3.30

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.
@@ -54,6 +54,11 @@ export interface Ui3nAutocompleteProps<T extends Ui3nAutocompleteOptionBase> {
54
54
  * @default false
55
55
  */
56
56
  hideSelected?: boolean;
57
+ /**
58
+ * Whether to lock scroll when menu is open
59
+ * @default false
60
+ */
61
+ lockScroll?: boolean;
57
62
  /**
58
63
  * Items to display
59
64
  */
@@ -30,6 +30,11 @@ export interface Ui3nMenuProps {
30
30
  * @default true
31
31
  */
32
32
  allowFlip?: boolean;
33
+ /**
34
+ * Whether to lock scroll when menu is open
35
+ * @default false
36
+ */
37
+ lockScroll?: boolean;
33
38
  /**
34
39
  * Offset X
35
40
  * @default 0
@@ -33,6 +33,7 @@ declare const __VLS_component: import('vue').DefineComponent<Ui3nMenuProps, {
33
33
  offsetY: number;
34
34
  positionStrategy: "absolute" | "fixed";
35
35
  allowFlip: boolean;
36
+ lockScroll: boolean;
36
37
  contentBorderRadius: number | number[];
37
38
  zIndex: number;
38
39
  closeOnClick: boolean;