<labeled-input></labeled-input>
import LabeledInput from 'svelte-labeled-input'
css3 layout label transition input text field validates errormessage password style
npm install svelte-labeled-input
Import the component.
import LabeledInput from 'svelte-labeled-input'
Use the component.
<LabeledInput id="prename"
placeholder="Your prename"
label="Prename:"
bind:value={prename}/>
<LabeledInput id="interval"
placeholder="Interval in days"
label="Interval :"
type="number"
min="1"
max="21"
on:blur={setInterval}
on:keypress={handleKeys}
bind:value={daysInterval} />
<LabeledInput id="description"
placeholder="Description"
label="Description:"
validator={descriptionValidator}
errormessage={errormessage}
type="area"
size="50"
rows="4"
bind:value={description} />
The styled and labeled input "html"-element offers the optional parameters:
name; // id and name of the component in DOM
placeholder; // Placeholder for no input value
value; // Value of the input field.
label; // Label of the input field
type // default "text". ["text", "area", "number", "password"]
validator; // text validation function. Returns [true || false]. Dispatches an Error-Event on `false`
errormessage;// Errormessage for validation error
min, max for inpt{type=number}
size for inpt{type=text}
size, rows for textarea
Events:
input // checks the input with the `validator` function and fires input-event with the `value`
keyup // fires input-event with the `key`
change // fires change-event with the `value`
blur // fires blur-event with the `value`
keypress // fires keypress-event with the `value`
<custom-element-demo>
<template>
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width,initial-scale=1'>
<title>Generic Crud Table</title>
<link rel='icon' type='image/png' href='favicon.png'>
<link rel='stylesheet' href='https://ivosdc.github.io/svelte-labeled-input/build/labeled-input.css'>
<script defer src='https://ivosdc.github.io/svelte-labeled-input/build/labeled-input.js'></script>
</head>
<body>
<hr>
<labeled-input id="prename"
name="prename-input"
placeholder="Your prename"
label="Prename:"
size="30"
value=""></labeled-input>
<labeled-input name="fullname"
placeholder="Your family name"
label="Name:"
size="30"
value=""></labeled-input>
<div style="width: 60px;">
<labeled-input id="interval"
name="interval-input"
placeholder="Interval in days"
label="Interval :"
type="number"
min="1"
max="21"
value="5"></labeled-input>
</div>
<labeled-input id="description"
name="description-input"
placeholder="Description"
label="Description:"
type="area"
size="50"
rows="4"
value=""></labeled-input>
</body>
<script>
</script>
</template>
</custom-element-demo>
<labeled-input></labeled-input>
<script>
import LabeledInput from 'svelte-labeled-input'
let prename;
let fullname;
// Example validator: Prename can only have 3 chars
const prenameValidator = (value) => {
return (value.length > 3) ? false : true;
}
</script>
<main>
<hr>
<LabeledInput name="prename"
errormessage="Prename can only have 3 characters."
validator={prenameValidator(prename)}
placeholder="Your prename"
label="Prename:"
bind:value={prename}/>
<LabeledInput name="fullname"
placeholder="Your name"
label="Family name:"
bind:value={fullname}/>
<LabeledInput name="password"
placeholder="Enter password"
label="Password:"
type="password"
bind:value={password}/>
</main>