@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.
- package/dist/components/ui3n-autocomplete/types.d.ts +5 -0
- package/dist/components/ui3n-menu/types.d.ts +5 -0
- package/dist/components/ui3n-menu/ui3n-menu.d.ts +1 -0
- package/dist/style.css +1 -1
- package/dist/ui3n-components.js +512 -463
- package/package.json +1 -1
- package/src/components/ui3n-autocomplete/types.ts +5 -0
- package/src/components/ui3n-autocomplete/ui3n-autocomplete.vue +7 -4
- package/src/components/ui3n-menu/types.ts +5 -0
- package/src/components/ui3n-menu/ui3n-menu.vue +126 -7
|
@@ -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
|
*/
|
|
@@ -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;
|