44 lines
1.4 KiB
Svelte
44 lines
1.4 KiB
Svelte
<input
|
|
class={"border border-darkborderc focus:border-borderc rounded-md shadow-sm text-textcolor bg-transparent focus:ring-borderc focus:ring-2 focus:outline-none transition-colors duration-200" + ((className) ? (' ' + className) : '')}
|
|
class:text-sm={size === 'sm'}
|
|
class:text-md={size === 'md'}
|
|
class:text-lg={size === 'lg'}
|
|
class:text-xl={size === 'xl'}
|
|
|
|
class:px-4={size === 'md' && padding}
|
|
class:py-2={size === 'md' && padding}
|
|
class:px-2={size === 'sm' && padding}
|
|
class:py-1={size === 'sm' && padding}
|
|
class:px-6={size === 'lg' || size === 'xl' && padding}
|
|
class:py-3={size === 'lg' || size === 'xl'&& padding}
|
|
|
|
class:mb-4={marginBottom}
|
|
class:mt-4={marginTop}
|
|
class:w-full={fullwidth}
|
|
class:h-full={fullh}
|
|
class:text-textcolor2={disabled}
|
|
{autocomplete}
|
|
{placeholder}
|
|
id={id}
|
|
type="text"
|
|
bind:value
|
|
disabled={disabled}
|
|
on:input={onInput}
|
|
/>
|
|
|
|
|
|
<script lang="ts">
|
|
export let size: 'sm'|'md'|'lg'|'xl' = 'md'
|
|
export let autocomplete: 'on'|'off' = 'off'
|
|
export let placeholder: string = ''
|
|
export let value:string
|
|
export let id:string = undefined
|
|
export let padding = true
|
|
export let marginBottom = false
|
|
export let marginTop = false
|
|
export let onInput = () => {}
|
|
export let fullwidth = false
|
|
export let fullh = false
|
|
export let className = ''
|
|
export let disabled = false
|
|
</script> |