fonteva-design-guide
Version:
## Dev, Build and Test
46 lines (45 loc) • 1.6 kB
HTML
<template>
<div class="slds-form-element__control slds-grow" data-id="picklist-wrapper">
<div class="slds-select_container">
<select
aria-label={label}
id="picklistCmp"
name=""
tabindex={tabIndex}
class="slds-select"
disabled={disabled}
onchange={optionSelected}
>
<template for:each={localOptions} for:item="option">
<option
value={option.value}
selected={option.isSelected}
key={option.value}
disabled={option.disabled}
>{option.label}</option
>
</template>
</select>
<div
if:true={showError}
data-help-message="true"
role="alert"
class="slds-form-element__help pfm-error-input"
style="user-select: auto;"
>
<c-pfm-text type="body" size="x-small" color="danger">
<slot name="error">
{errorMsg}
</slot>
</c-pfm-text>
</div>
</div>
</div>
<!--<lightning-combobox-->
<!--name={name}-->
<!--value={localVal}-->
<!--label={label}-->
<!--options={localOptions}-->
<!--required={required}-->
<!--variant='label-hidden'></lightning-combobox>-->
</template>