1.4.2 • Published 5 years ago
@zestui/select v1.4.2
<zest-select>
Simple select dropdown web-component to be use accross web irrespective of frameworks.
Installation
npm install @zestui/selectAttributes
| Name | Type | Default | Description |
|---|---|---|---|
id | string | '' | Sets the id attribute for the select. Preferred when used inside forms. |
name | string | '' | Sets the name attribute for the select. Preferred when used inside forms. |
label | string | '' | Label to display for the select. |
placeholder | string | 'Select an option' | Sets the select placeholder. |
disabled | string | 'false' | When 'true' select is disabled cannot be interacted with. |
autofocus | boolean | false | Autofocus the select element. |
list | Array | [] | Creates the select options based on this attribute. Should be a array of value string or object with value and label. |
value | string | '' | Sets the default selected value. |
theme | string | 'light | When 'dark', the input will adapt to dark theme. |
full-width | string | 'false' | When 'true', the select will take full width of the container. |
error-msg | string | '' | When error message string is provided, the input will be error themed and error message is displayed. |
help-msg | string | '' | When help message string is provided, help message is displayed. |
filter-on-type | string | false | Enables filter in to filter select list |
Examples
Default Select

<zest-select id='state' value='West Bengal' list='["West Bengal", "Karnataka", "Uttar Pradesh", "Kerala", "Tamil Nadu", "Madhya Pradesh"]'>
</zest-select>Select with error

<zest-select id='state' error-msg='Select an option please' list='["West Bengal", "Karnataka", "Uttar Pradesh", "Kerala", "Tamil Nadu", "Madhya Pradesh"]'>
</zest-select>Disabled Select

<zest-select id='state' disabled='true' list='["West Bengal", "Karnataka", "Uttar Pradesh", "Kerala", "Tamil Nadu", "Madhya Pradesh"]'>
</zest-select>Cutomizable property list
| Name | Default |
|---|---|
| --color-primary | #1eba68; |
| --color-primary-dark | #1ba75e; |
| --color-secondary | #f6f6f6; |
| --color-secondary-dark | #efefef; |
| --color-secondary-darktheme | rgba(255, 255, 255, 0.3); |
| --color-secondary-dark-darktheme | rgba(255, 255, 255, 0.6); |
| --color-error | #dd4421; |
| --color-error-background | #ffebe6; |
| --color-placeholder | #737373; |
| --color-placeholder-disabled | #e0e0e0; |
| --color-placeholder-darktheme | #e0e0e0; |
| --color-label | #909090; |
| --color-black | #2c2c2c; |
| --color-header-black | #252525; |
| --color-header-tag | #747373; |
| --color-white | #ffffff; |
| --color-border | #edebeb; |
| --border-radius | 0.5rem; |
| --border-width | 1px; |
| --border-width-hover | 3px; |
| --label-spacing | 0.2rem; |
| --label-case | uppercase; |
| --label-font-size | 0.8rem; |
| --button-font-weight | 500; |
1.4.2
5 years ago
1.4.1
5 years ago
1.4.0
5 years ago
1.3.6
5 years ago
1.3.5
5 years ago
1.3.4
5 years ago
1.3.3
5 years ago
1.3.2
5 years ago
1.3.1
5 years ago
1.3.0
5 years ago
1.2.1
5 years ago
1.2.0
5 years ago
1.1.2
5 years ago
1.1.1
5 years ago
1.1.0
5 years ago
1.0.10
5 years ago
1.0.9
5 years ago
1.0.8
5 years ago
1.0.7
5 years ago
1.0.6
5 years ago
1.0.2
6 years ago
1.0.5
6 years ago
1.0.4
6 years ago
1.0.3
6 years ago
1.0.1
6 years ago
1.0.0
6 years ago