Skip to content
This repository was archived by the owner on Mar 17, 2024. It is now read-only.

Commit fb0edaa

Browse files
committed
build v0.5.6
1 parent b2d7d7b commit fb0edaa

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@xsoulspace/vue_flutter_tailwind",
33
"description": "Vue3 styled like Flutter with Tailwind CSS",
4-
"version": "0.5.5",
4+
"version": "0.5.6",
55
"private": false,
66
"author": {
77
"name": "Anton Malofeev",

src/components/DropdownButton.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { onClickOutside } from '@vueuse/core'
21
import { Component, computed, defineComponent, h, ref, Ref } from 'vue'
32
import { Maybe, ValueChanged } from '../abstract/BasicTypes'
43
import { BoxDecoration } from '../abstract/BoxDecoration'
@@ -123,7 +122,7 @@ export const DropdownButton = <
123122
name: 'DropdownButton',
124123
setup() {
125124
const target = ref(null)
126-
onClickOutside(target, (event) => (isMenuOpened.value = false))
125+
// onClickOutside(target, (event) => (isMenuOpened.value = false))
127126
return () =>
128127
h(
129128
<div ref={target}>

0 commit comments

Comments
 (0)