fleetcor-lwc 3.12.1 → 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
|
|
|
@@ -914,6 +915,12 @@ v.3.12.1
|
|
|
914
915
|
|
|
915
916
|
---
|
|
916
917
|
|
|
918
|
+
v.3.12.1
|
|
919
|
+
|
|
920
|
+
- Bugfix `flt-alert-info`
|
|
921
|
+
|
|
922
|
+
---
|
|
923
|
+
|
|
917
924
|
v.3.12.0
|
|
918
925
|
|
|
919
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>
|