[feat] fix textarea

This commit is contained in:
kwaroran
2023-08-03 10:18:00 +09:00
parent afc705ddce
commit 8894038e17

View File

@@ -14,6 +14,7 @@
class:mt-2={margin === 'both'} class:mt-2={margin === 'both'}
class:w-full={fullwidth} class:w-full={fullwidth}
class:h-20={height === '20'} class:h-20={height === '20'}
class:h-24={height === '24'}
class:h-32={height === '32'} class:h-32={height === '32'}
class:h-full={height === 'full'} class:h-full={height === 'full'}
class:min-h-20={height === '20'} class:min-h-20={height === '20'}
@@ -50,6 +51,7 @@
class:mt-2={margin === 'both'} class:mt-2={margin === 'both'}
class:w-full={fullwidth} class:w-full={fullwidth}
class:h-20={height === '20'} class:h-20={height === '20'}
class:h-24={height === '24'}
class:h-32={height === '32'} class:h-32={height === '32'}
class:h-full={height === 'full'} class:h-full={height === 'full'}
class:min-h-20={height === '20'} class:min-h-20={height === '20'}
@@ -71,7 +73,7 @@
export let margin:"none"|"top"|"bottom"|"both" = "none" export let margin:"none"|"top"|"bottom"|"both" = "none"
export let onInput = () => {} export let onInput = () => {}
export let fullwidth = false export let fullwidth = false
export let height:'20'|'32'|'full' = '20' export let height:'20'|'24'|'32'|'full' = '20'
export let additionalClass = '' export let additionalClass = ''
export let optimaizedInput = true export let optimaizedInput = true
let inpa = 0 let inpa = 0