fleetcor-lwc 2.7.3 → 2.7.5
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,14 @@ $FLT_RADIO_GROUP_CIRCLE_DISABLED_SELECTED_BG_COLOR: var(
|
|
|
415
415
|
|
|
416
416
|
## Release Notes:
|
|
417
417
|
|
|
418
|
+
- v.2.7.5
|
|
419
|
+
- Tooltip bug fix with render content
|
|
420
|
+
|
|
421
|
+
---
|
|
422
|
+
- v.2.7.4
|
|
423
|
+
- Tooltip bug fix with render content
|
|
424
|
+
|
|
425
|
+
---
|
|
418
426
|
- v.2.7.3
|
|
419
427
|
- Added required class marker for the checkbox component
|
|
420
428
|
|
|
@@ -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 (text && this.content != text.innerHTML) {
|
|
359
|
+
this.update()
|
|
357
360
|
}
|
|
358
361
|
}
|
|
359
362
|
}
|