fleetcor-lwc 2.4.2 → 2.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
<template lwc:render-mode="light">
|
|
2
2
|
<div onclick={handleClick} class={styleClass} autotests-value={option.value}>
|
|
3
3
|
<span class="flt-radio-item__circle"></span>
|
|
4
|
-
<
|
|
4
|
+
<template if:true={option.icon}>
|
|
5
|
+
<img class="flt-radio-item__icon" src={option.icon} alt={option.label} />
|
|
6
|
+
</template>
|
|
7
|
+
<template if:false={option.icon}>
|
|
8
|
+
<span class="flt-radio-item__label">{option.label}</span>
|
|
9
|
+
</template>
|
|
5
10
|
</div>
|
|
6
11
|
</template>
|