fleetcor-lwc 3.11.0 → 3.12.1

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
@@ -908,6 +908,18 @@ You can override them as you wish by global css variables as priority.
908
908
  <details>
909
909
  <summary>Click to expand/collapse</summary>
910
910
 
911
+ v.3.12.1
912
+
913
+ - Bugfix `flt-alert-info`
914
+
915
+ ---
916
+
917
+ v.3.12.0
918
+
919
+ - Added icons for component `flt-icon` : `question`
920
+
921
+ ---
922
+
911
923
  v.3.11.0
912
924
 
913
925
  - Added icons for component `flt-icon` : `info`, `warning`
@@ -53,6 +53,7 @@ import TMPL_PUBLIC from './icons/tmpl-public.html'
53
53
  import TMPL_PLACE from './icons/tmpl-place.html'
54
54
  import TMPL_WARNING from './icons/tmpl-warning.html'
55
55
  import TMPL_INFO from './icons/tmpl-info.html'
56
+ import TMPL_QUESTION from './icons/tmpl-question.html'
56
57
 
57
58
  /**
58
59
  * @class Icon
@@ -121,7 +122,8 @@ const ICONS = {
121
122
  public: TMPL_PUBLIC,
122
123
  place: TMPL_PLACE,
123
124
  warning: TMPL_WARNING,
124
- info: TMPL_INFO
125
+ info: TMPL_INFO,
126
+ question: TMPL_QUESTION,
125
127
  }
126
128
 
127
129
  export const ICONS_LIST = Object.keys(ICONS)
@@ -0,0 +1,8 @@
1
+ <template lwc:render-mode="light">
2
+ <svg class="flt-icon flt-icon__question" width="19" height="19" viewBox="0 0 19 19" fill="none">
3
+ <path
4
+ class="flt-icon__prop-fill"
5
+ d="M9.50065 1.58398C5.13065 1.58398 1.58398 5.13065 1.58398 9.50065C1.58398 13.8707 5.13065 17.4173 9.50065 17.4173C13.8707 17.4173 17.4173 13.8707 17.4173 9.50065C17.4173 5.13065 13.8707 1.58398 9.50065 1.58398ZM9.50065 15.834C6.0094 15.834 3.16732 12.9919 3.16732 9.50065C3.16732 6.0094 6.0094 3.16732 9.50065 3.16732C12.9919 3.16732 15.834 6.0094 15.834 9.50065C15.834 12.9919 12.9919 15.834 9.50065 15.834ZM8.70898 12.6673H10.2923V14.2507H8.70898V12.6673ZM9.98357 4.78232C8.35273 4.54482 6.9119 5.55023 6.47648 6.99107C6.33398 7.45023 6.68232 7.91732 7.16523 7.91732H7.32357C7.64815 7.91732 7.9094 7.68773 8.02023 7.3869C8.27357 6.68232 9.02565 6.1994 9.84107 6.37357C10.5932 6.5319 11.1473 7.26815 11.084 8.03607C11.0048 9.0969 9.80148 9.32648 9.1444 10.3161C9.1444 10.324 9.13648 10.324 9.13648 10.3319C9.12857 10.3477 9.12065 10.3557 9.11273 10.3715C9.04148 10.4902 8.97023 10.6248 8.91482 10.7673C8.9069 10.7911 8.89107 10.8069 8.88315 10.8307C8.87523 10.8465 8.87523 10.8623 8.86732 10.8861C8.77232 11.1552 8.70898 11.4798 8.70898 11.8757H10.2923C10.2923 11.5432 10.3794 11.2661 10.514 11.0286C10.5298 11.0048 10.5377 10.9811 10.5536 10.9573C10.6169 10.8465 10.6961 10.7436 10.7752 10.6486C10.7832 10.6407 10.7911 10.6248 10.799 10.6169C10.8782 10.5219 10.9652 10.4348 11.0602 10.3477C11.8202 9.62732 12.8494 9.04148 12.6357 7.5294C12.4457 6.1519 11.3611 4.98815 9.98357 4.78232Z"
6
+ fill="#4C4C4C"></path>
7
+ </svg>
8
+ </template>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fleetcor-lwc",
3
- "version": "3.11.0",
3
+ "version": "3.12.1",
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",