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>
@@ -3,7 +3,7 @@
3
3
  border-radius: var(--flt-alert-info-border-radius, 8px);
4
4
  border: var(--flt-alert-info-border, initial);
5
5
  display: flex;
6
- gap: 16px;
6
+ gap: var(--flt-alert-info-gap, 16px);
7
7
  background: var(--flt-alert-info-background, #d6e7fc);
8
8
 
9
9
  &_warning {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fleetcor-lwc",
3
- "version": "3.12.1",
3
+ "version": "3.12.2",
4
4
  "description": "LWC framework by Fleetcor",
5
5
  "repository": {
6
6
  "type": "git",