fleetcor-lwc 2.7.3 → 2.7.4

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
@@ -415,6 +415,10 @@ $FLT_RADIO_GROUP_CIRCLE_DISABLED_SELECTED_BG_COLOR: var(
415
415
 
416
416
  ## Release Notes:
417
417
 
418
+ - v.2.7.4
419
+ - Tooltip bug fix with render content
420
+
421
+ ---
418
422
  - v.2.7.3
419
423
  - Added required class marker for the checkbox component
420
424
 
@@ -351,9 +351,12 @@ export default class Tooltip extends BaseElement {
351
351
  }
352
352
 
353
353
  renderedCallback() {
354
+ const text = this.firstChild.querySelector('.flt-tooltip__text')
354
355
  if (this.firstSetup) {
355
356
  this.firstSetup = !this.firstSetup
356
357
  this.update()
358
+ } else if (this.content != text.innerHTML) {
359
+ this.update()
357
360
  }
358
361
  }
359
362
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fleetcor-lwc",
3
- "version": "2.7.3",
3
+ "version": "2.7.4",
4
4
  "description": "LWC framework by Fleetcor",
5
5
  "repository": {
6
6
  "type": "git",