File tree 2 files changed +4
-1
lines changed
src/components/hive-input-search
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " vue3-hive-ui-kit" ,
3
3
"private" : false ,
4
- "version" : " 0.7.27 " ,
4
+ "version" : " 0.7.28 " ,
5
5
"type" : " module" ,
6
6
"description" : " UI kit for Vue 3" ,
7
7
"files" : [
Original file line number Diff line number Diff line change @@ -24,9 +24,11 @@ export interface Props extends CommonProps {
24
24
placeholder? : string ;
25
25
label? : string ;
26
26
timeout? : number ;
27
+ disabled? : boolean ;
27
28
}
28
29
const props = withDefaults (defineProps <Props >(), {
29
30
timeout: 250 ,
31
+ disabled: false ,
30
32
});
31
33
32
34
type Emit = Event & Mount & Unmount & Update <string > & Focusin & Focusout & Keydown & Input <string >;
@@ -78,6 +80,7 @@ const handleInput = () => {
78
80
id =" input"
79
81
:placeholder =" placeholder"
80
82
@input =" handleInput"
83
+ :disabled =" disabled"
81
84
/>
82
85
</div >
83
86
</template >
You can’t perform that action at this time.
0 commit comments