fleetcor-lwc 1.5.0 → 1.6.0
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
|
@@ -68,14 +68,10 @@ Icon:
|
|
|
68
68
|
|
|
69
69
|
<flt-icon icon="arrow-left"></flt-icon>
|
|
70
70
|
|
|
71
|
-
arrow-left
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
oil | key | blocked |
|
|
76
|
-
multiple-users | arrow-right | diesel |
|
|
77
|
-
hydrogen | signature | plus |
|
|
78
|
-
plus-small | document | close |
|
|
71
|
+
arrow-left | ev | carwash | car | van | unleaded | fuel | driver | vehicle |
|
|
72
|
+
both | shared-card | ev-and-fuel | oil | key | blocked | multiple-users |
|
|
73
|
+
arrow-right | diesel | hydrogen | signature | plus | plus-small | document |
|
|
74
|
+
close |
|
|
79
75
|
```
|
|
80
76
|
|
|
81
77
|
```html
|
|
@@ -133,26 +129,37 @@ $FLT_BUTTON_LINK_HOVER_COLOR: var(--flt-button-link-hover-color, #6b7280);
|
|
|
133
129
|
```
|
|
134
130
|
|
|
135
131
|
## Release Notes:
|
|
132
|
+
|
|
133
|
+
- v.1.6.0
|
|
134
|
+
- Added new extendable components: `BaseElement` and `LightningDomElement`
|
|
135
|
+
|
|
136
|
+
---
|
|
137
|
+
|
|
136
138
|
- v.1.5.0
|
|
137
139
|
- Added new icons: plus, plus-small, document, close
|
|
138
|
-
|
|
140
|
+
|
|
139
141
|
---
|
|
142
|
+
|
|
140
143
|
- v.1.4.7
|
|
141
144
|
- Added new icons: diesel, hydrogen, signature
|
|
142
|
-
|
|
145
|
+
|
|
143
146
|
---
|
|
147
|
+
|
|
144
148
|
- v.1.4.6
|
|
145
149
|
- Bug fix at mobile Safari tooltip
|
|
146
|
-
|
|
150
|
+
|
|
147
151
|
---
|
|
152
|
+
|
|
148
153
|
- v.1.4.5
|
|
149
154
|
- Tooltip text align centred
|
|
150
155
|
|
|
151
156
|
---
|
|
157
|
+
|
|
152
158
|
- v.1.4.4
|
|
153
159
|
- Bug fix tooltip mobile positions
|
|
154
160
|
|
|
155
161
|
---
|
|
162
|
+
|
|
156
163
|
- v.1.4.3
|
|
157
164
|
- Bug fix at tooltip corner attribute
|
|
158
165
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fleetcor-lwc",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"description": "LWC framework by Fleetcor",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"license": "ISC",
|
|
11
11
|
"files": [
|
|
12
12
|
"frontend/components/flt",
|
|
13
|
+
"frontend/components/ext",
|
|
13
14
|
"frontend/common",
|
|
14
15
|
"loader"
|
|
15
16
|
],
|
|
@@ -20,6 +21,8 @@
|
|
|
20
21
|
}
|
|
21
22
|
],
|
|
22
23
|
"expose": [
|
|
24
|
+
"ext/lightningDomElement",
|
|
25
|
+
"ext/baseElement",
|
|
23
26
|
"flt/button",
|
|
24
27
|
"flt/icon",
|
|
25
28
|
"flt/tooltip"
|