Skip to content

Commit 3cad665

Browse files
committed
refactor(components): add needed values for PrimeVue 4.3.4
1 parent 9e927fc commit 3cad665

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/components/PrimeInputText.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ export interface FormKitPrimeInputTextProps {
1313
unstyled?: InputTextProps['unstyled']
1414
size?: InputTextProps['size']
1515
inputType?: string | undefined
16+
placeholder?: string
1617
}
1718
1819
const props = defineProps({

src/components/PrimeTextarea.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ export interface FormKitPrimeTextareaProps {
1111
unstyled?: TextareaProps['unstyled']
1212
autoResize?: TextareaProps['autoResize']
1313
size?: TextareaProps['size']
14-
14+
placeholder?: string
15+
rows?: number
1516
}
1617
1718
const props = defineProps({

0 commit comments

Comments
 (0)