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
@@ -129,6 +129,11 @@ $FLT_BUTTON_LINK_HOVER_COLOR: var(--flt-button-link-hover-color, #6b7280);
129
129
 
130
130
  ## Release Notes:
131
131
 
132
+ - v.1.4.3
133
+ - Bug fix at tooltip corner attribute
134
+
135
+ ---
136
+
132
137
  - v.1.4.2
133
138
  - Bug fix selectors conflicts
134
139
 
@@ -56,7 +56,9 @@ export default class Tooltip extends LightningElement {
56
56
  }
57
57
 
58
58
  get tooltipVisibility() {
59
- return this.active ? 'flt-tooltip__content flt-tooltip__content_visible' : 'flt-tooltip__content'
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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fleetcor-lwc",
3
- "version": "1.4.2",
3
+ "version": "1.4.3",
4
4
  "description": "LWC framework by Fleetcor",
5
5
  "repository": {
6
6
  "type": "git",