fleetcor-lwc 3.12.0 → 3.12.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
CHANGED
|
@@ -896,6 +896,7 @@ You can override them as you wish by global css variables as priority.
|
|
|
896
896
|
--flt-alert-info-content-font-weight: 400;
|
|
897
897
|
--flt-alert-info-content-color: #1a1a1a;
|
|
898
898
|
--flt-alert-info-icon-max-width: 20px;
|
|
899
|
+
--flt-alert-info-gap: 16px;
|
|
899
900
|
}
|
|
900
901
|
```
|
|
901
902
|
|
|
@@ -908,6 +909,18 @@ You can override them as you wish by global css variables as priority.
|
|
|
908
909
|
<details>
|
|
909
910
|
<summary>Click to expand/collapse</summary>
|
|
910
911
|
|
|
912
|
+
v.3.12.1
|
|
913
|
+
|
|
914
|
+
- Bugfix `flt-alert-info`
|
|
915
|
+
|
|
916
|
+
---
|
|
917
|
+
|
|
918
|
+
v.3.12.1
|
|
919
|
+
|
|
920
|
+
- Bugfix `flt-alert-info`
|
|
921
|
+
|
|
922
|
+
---
|
|
923
|
+
|
|
911
924
|
v.3.12.0
|
|
912
925
|
|
|
913
926
|
- Added icons for component `flt-icon` : `question`
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
</div>
|
|
8
8
|
<div class="flt-alert-info__block">
|
|
9
9
|
<slot name="title">
|
|
10
|
-
<div class="flt-alert-info__title" lwc:inner-html={title}></div>
|
|
10
|
+
<div lwc:if={title} class="flt-alert-info__title" lwc:inner-html={title}></div>
|
|
11
11
|
</slot>
|
|
12
12
|
<slot name="content">
|
|
13
13
|
<div class="flt-alert-info__content" lwc:inner-html={content}></div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fleetcor-lwc",
|
|
3
|
-
"version": "3.12.
|
|
3
|
+
"version": "3.12.2",
|
|
4
4
|
"description": "LWC framework by Fleetcor",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
}
|
|
26
26
|
],
|
|
27
27
|
"expose": [
|
|
28
|
+
"flt/alertInfo",
|
|
28
29
|
"flt/button",
|
|
29
30
|
"flt/checkbox",
|
|
30
31
|
"flt/card",
|