fleetcor-lwc 3.9.1 → 3.9.2
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 +23 -19
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -528,7 +528,7 @@ This component fully extends from `Input Text`
|
|
|
528
528
|
show-dropdown-as-modal
|
|
529
529
|
placeholder="{picklist:'picklistPlaceholder', input:'inputPlaceholder'}"
|
|
530
530
|
onchange="{handleInputWithPicklist}"
|
|
531
|
-
hide-placeholder
|
|
531
|
+
hide-placeholder-picklist
|
|
532
532
|
min-value="100"
|
|
533
533
|
max-value="1000"
|
|
534
534
|
max-length="4000"
|
|
@@ -541,24 +541,24 @@ This component fully extends from `Input Text`
|
|
|
541
541
|
|
|
542
542
|
#### Input With Picklist variables
|
|
543
543
|
|
|
544
|
-
| @api variables
|
|
545
|
-
|
|
|
546
|
-
| name
|
|
547
|
-
| label
|
|
548
|
-
| value
|
|
549
|
-
| placeholder
|
|
550
|
-
| error-message
|
|
551
|
-
| required
|
|
552
|
-
| hide-placeholder
|
|
553
|
-
| disabled
|
|
554
|
-
| show-dropdown-as-modal
|
|
555
|
-
| modal-dimention-start
|
|
556
|
-
| prefix
|
|
557
|
-
| reg-exp
|
|
558
|
-
| max-length
|
|
559
|
-
| min-value
|
|
560
|
-
| options
|
|
561
|
-
| max-value
|
|
544
|
+
| @api variables | type | values | required | description |
|
|
545
|
+
| ------------------------- | ------ | ------ | -------- | --------------------------------------------------------------------------------------------- |
|
|
546
|
+
| name | object | | + | in format `{picklist:'value', input:'value'}` |
|
|
547
|
+
| label | object | | - | in format `{picklist:'value', input:'value'}` |
|
|
548
|
+
| value | object | | - | in format `{picklist:'value', input:'value'}` |
|
|
549
|
+
| placeholder | object | | - | in format `{picklist:'value', input:'value'}` |
|
|
550
|
+
| error-message | string | | - | |
|
|
551
|
+
| required | bool | | - | |
|
|
552
|
+
| hide-placeholder-picklist | bool | | - | Hide placeholder on picklist in desktop version and if value is exist |
|
|
553
|
+
| disabled | bool | | - | |
|
|
554
|
+
| show-dropdown-as-modal | bool | | - | Show modal with selected options |
|
|
555
|
+
| modal-dimention-start | int | 1280 | - | If showDropdownAsModal is true, by default modal become visible window width less then 1280px |
|
|
556
|
+
| prefix | string | | - | |
|
|
557
|
+
| reg-exp | string | | - | |
|
|
558
|
+
| max-length | int | | - | |
|
|
559
|
+
| min-value | int | | - | |
|
|
560
|
+
| options | array | | + | Array of available items with `label` and `value` as unique string |
|
|
561
|
+
| max-value | int | | - | |
|
|
562
562
|
|
|
563
563
|
#### Input With Picklist methods
|
|
564
564
|
|
|
@@ -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.2
|
|
730
|
+
|
|
731
|
+
- Bug fix `Readmi.md`
|
|
732
|
+
|
|
729
733
|
- v.3.9.1
|
|
730
734
|
|
|
731
735
|
- Bug fix `flt-input-with-picklist` and `flt-picklist`
|