feat: add typed WRN declarations
This commit is contained in:
@@ -1,16 +1,16 @@
|
||||
component DateInput {
|
||||
props {
|
||||
id = ""
|
||||
name = ""
|
||||
label = "Date"
|
||||
value = ""
|
||||
placeholder = ""
|
||||
help = ""
|
||||
error = ""
|
||||
required = false
|
||||
disabled = false
|
||||
readonly = false
|
||||
autocomplete = ""
|
||||
id: string = ""
|
||||
name: string = ""
|
||||
label: string = "Date"
|
||||
value: string = ""
|
||||
placeholder: string = ""
|
||||
help: string = ""
|
||||
error: string = ""
|
||||
required: boolean = false
|
||||
disabled: boolean = false
|
||||
readonly: boolean = false
|
||||
autocomplete: string = ""
|
||||
}
|
||||
view {
|
||||
<div class="space-y-2">
|
||||
|
||||
Reference in New Issue
Block a user