@lui-ui/lui-vue
Advanced tools
Comparing version 0.67.0 to 0.67.1
@@ -73,4 +73,4 @@ import type { PropType } from 'vue'; | ||
text: string; | ||
position: Position; | ||
filter: Filter; | ||
position: Position; | ||
variant: NarrowedVariant; | ||
@@ -77,0 +77,0 @@ color: Color; |
@@ -33,3 +33,3 @@ import type { PropType } from 'vue'; | ||
modalId: string; | ||
trapRef: import("vue").Ref<HTMLElement | null>; | ||
trapRef: import("vue").Ref<any>; | ||
createTeleportElement: () => void; | ||
@@ -36,0 +36,0 @@ computedDialogWrapperClasses: import("vue").ComputedRef<any[]>; |
@@ -21,2 +21,6 @@ import type { PropType } from 'vue'; | ||
}; | ||
block: { | ||
type: PropType<Boolean>; | ||
default: boolean; | ||
}; | ||
}, { | ||
@@ -69,4 +73,5 @@ props: any; | ||
triggerRef: import("vue").Ref<HTMLDivElement | undefined>; | ||
dialogWrapperRef: import("vue").Ref<HTMLDivElement | undefined>; | ||
dialogActive: import("vue").Ref<boolean>; | ||
dialogRef: import("vue").Ref<HTMLElement | null>; | ||
dialogRef: import("vue").Ref<any>; | ||
properPosition: import("vue").Ref<string>; | ||
@@ -162,6 +167,11 @@ triggerSlotProps: import("vue").ComputedRef<TriggerSlotType>; | ||
}; | ||
block: { | ||
type: PropType<Boolean>; | ||
default: boolean; | ||
}; | ||
}>>, { | ||
text: String; | ||
block: Boolean; | ||
dialogPosition: Position; | ||
}>; | ||
export default _sfc_main; |
@@ -1,6 +0,7 @@ | ||
declare function useFocusTrap(): { | ||
trapRef: import("vue").Ref<HTMLElement | null>; | ||
initFocusTrap: () => void; | ||
import type { Options } from 'focus-trap'; | ||
declare function useFocusTrap(focusTrapArgs?: Options): { | ||
trapRef: import("vue").Ref<any>; | ||
initFocusTrap: (el: any, focusTrapArgs?: Options) => void; | ||
clearFocusTrap: () => void; | ||
}; | ||
export default useFocusTrap; |
{ | ||
"name": "@lui-ui/lui-vue", | ||
"version": "0.67.0", | ||
"version": "0.67.1", | ||
"packageManager": "pnpm@8.5.1", | ||
@@ -46,2 +46,5 @@ "description": "This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.", | ||
}, | ||
"dependencies": { | ||
"focus-trap": "^7.5.2" | ||
}, | ||
"devDependencies": { | ||
@@ -48,0 +51,0 @@ "@antfu/eslint-config": "^0.39.5", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
473245
6941
3
+ Addedfocus-trap@^7.5.2
+ Addedfocus-trap@7.6.2(transitive)
+ Addedtabbable@6.2.0(transitive)