fleetcor-lwc 3.9.3 → 3.9.4
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
|
@@ -430,7 +430,7 @@ Add / update `lwc.config.json` file in your project
|
|
|
430
430
|
| required | bool | | - | |
|
|
431
431
|
| disabled | bool | | - | |
|
|
432
432
|
| placeholde-visible | bool | | - | |
|
|
433
|
-
| prefix |
|
|
433
|
+
| prefix | html | | - | |
|
|
434
434
|
| reg-exp | string | | - | |
|
|
435
435
|
| placeholder | string | | - | |
|
|
436
436
|
| max-length | int | | - | |
|
|
@@ -553,7 +553,7 @@ This component fully extends from `Input Text`
|
|
|
553
553
|
| disabled | bool | | - | |
|
|
554
554
|
| show-dropdown-as-modal | bool | | - | Show modal with selected options |
|
|
555
555
|
| modal-dimention-start | int | 1280 | - | If showDropdownAsModal is true, by default modal become visible window width less then 1280px |
|
|
556
|
-
| prefix |
|
|
556
|
+
| prefix | html | | - | |
|
|
557
557
|
| reg-exp | string | | - | |
|
|
558
558
|
| max-length | int | | - | |
|
|
559
559
|
| min-value | int | | - | |
|
|
@@ -726,6 +726,10 @@ You can override them as you wish by global css variables as priority.
|
|
|
726
726
|
|
|
727
727
|
## Release Notes:
|
|
728
728
|
|
|
729
|
+
- v.3.9.4
|
|
730
|
+
|
|
731
|
+
- Bug fix `flt-input-text`
|
|
732
|
+
|
|
729
733
|
- v.3.9.3
|
|
730
734
|
|
|
731
735
|
- Bug fix `flt-picklist`
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<label class="flt-input-text__wrapp" onclick={handleClickHandler} for={name}>
|
|
4
4
|
<div class="flt-input-text__placeholder">{label}</div>
|
|
5
5
|
<div class="flt-input-text__input-block">
|
|
6
|
-
<span lwc:if={prefix} class="flt-input-text__prefix"
|
|
6
|
+
<span lwc:if={prefix} class="flt-input-text__prefix" lwc:inner-html={prefix}></span>
|
|
7
7
|
<input
|
|
8
8
|
id={name}
|
|
9
9
|
onfocus={handleFocused}
|