fleetcor-lwc 1.4.2 → 1.4.3
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
|
@@ -56,7 +56,9 @@ export default class Tooltip extends LightningElement {
|
|
|
56
56
|
}
|
|
57
57
|
|
|
58
58
|
get tooltipVisibility() {
|
|
59
|
-
return this.active
|
|
59
|
+
return this.active
|
|
60
|
+
? 'flt-tooltip__content flt-tooltip__content_visible'
|
|
61
|
+
: 'flt-tooltip__content'
|
|
60
62
|
}
|
|
61
63
|
|
|
62
64
|
get svgD() {
|
|
@@ -201,6 +203,7 @@ export default class Tooltip extends LightningElement {
|
|
|
201
203
|
|
|
202
204
|
connectedCallback() {
|
|
203
205
|
if (this.content) {
|
|
206
|
+
this.corner = parseInt(this.corner)
|
|
204
207
|
this.resizeObserver = new ResizeObserver(this.update.bind(this))
|
|
205
208
|
}
|
|
206
209
|
}
|