@detachhead/smui-floating-label
v7.0.0-beta.0-7aa154b58dd17d39757ade237397a003da4f0bdc
Published
Svelte Material UI - Floating Label
Downloads
2
Maintainers
Readme
Svelte Material UI - Floating Label
A floating label in an input field. This is usually provided by the input component, but you can set it up manually.
Installation
You won't generally need to install this package, unless you're manually creating text fields.
npm install --save-dev @smui/floating-label
Examples and Usage Information
https://sveltematerialui.com/demo/textfield
Exports
(default)
A Floating Label component.
Props / Defaults
use
:[]
- An array of Svelte actions and/or arrays of an action and its options.class
:''
- A CSS class string.for
:''
- The ID of the input the label is to be associated with.floatAbove
:false
- Float the label above.required
:false
- Add required styling (an asterisk).wrapped
:false
- If the label is wrapped, aspan
element is used with nofor
attribute, otherwise, alabel
element is used with afor
attribute.
Functions
shake(boolean)
- Shakes the label element.float(boolean)
- Floats the label element.getWidth()
- Get the width of the label element.setRequired(boolean)
- Set therequired
property.
More Information
See Text fields in the Material design spec.
See Floating Label in MDC-Web for information about the upstream library's architecture.