fleetcor-lwc 2.16.0 → 2.17.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
|
@@ -4,6 +4,7 @@ import { api } from 'lwc'
|
|
|
4
4
|
|
|
5
5
|
import { LightningDomElement } from 'fleetcor-lwc'
|
|
6
6
|
|
|
7
|
+
import TMPL_SEARCH from './icons/tmpl-search.html'
|
|
7
8
|
import TMPL_EMPTY from './icons/tmpl-empty.html'
|
|
8
9
|
import TMPL_ARROW_RIGHT from './icons/tmpl-arrow-right.html'
|
|
9
10
|
import TMPL_ARROW_LEFT from './icons/tmpl-arrow-left.html'
|
|
@@ -56,6 +57,7 @@ export default class Icon extends LightningDomElement {
|
|
|
56
57
|
}
|
|
57
58
|
|
|
58
59
|
const ICONS = {
|
|
60
|
+
'search': TMPL_SEARCH,
|
|
59
61
|
'plus': TMPL_PLUS,
|
|
60
62
|
'plus-small': TMPL_SMALL_PLUS,
|
|
61
63
|
'document': TMPL_DOCUMENT,
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<template lwc:render-mode="light">
|
|
2
|
+
<svg
|
|
3
|
+
class="flt-icon flt-icon__search"
|
|
4
|
+
width="21"
|
|
5
|
+
height="20"
|
|
6
|
+
viewBox="0 0 21 20"
|
|
7
|
+
fill="none"
|
|
8
|
+
xmlns="http://www.w3.org/2000/svg">
|
|
9
|
+
<path
|
|
10
|
+
class="flt-icon__path-fill"
|
|
11
|
+
d="M13.8137 12.0598H13.1553L12.922 11.8348C13.922 10.6681 14.4387 9.07643 14.1553 7.38477C13.7637 5.0681 11.8303 3.2181 9.49701 2.93477C5.97201 2.50143 3.00534 5.4681 3.43867 8.9931C3.72201 11.3264 5.57201 13.2598 7.88867 13.6514C9.58034 13.9348 11.172 13.4181 12.3387 12.4181L12.5637 12.6514V13.3098L16.1053 16.8514C16.447 17.1931 17.0053 17.1931 17.347 16.8514C17.6887 16.5098 17.6887 15.9514 17.347 15.6098L13.8137 12.0598ZM8.81367 12.0598C6.73867 12.0598 5.06367 10.3848 5.06367 8.30977C5.06367 6.23477 6.73867 4.55977 8.81367 4.55977C10.8887 4.55977 12.5637 6.23477 12.5637 8.30977C12.5637 10.3848 10.8887 12.0598 8.81367 12.0598Z"></path>
|
|
12
|
+
</svg>
|
|
13
|
+
</template>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fleetcor-lwc",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.17.0",
|
|
4
4
|
"description": "LWC framework by Fleetcor",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -54,16 +54,18 @@
|
|
|
54
54
|
"@babel/preset-env": "^7.15.0",
|
|
55
55
|
"@salesforce/sfdx-lwc-jest": "^1.2.1",
|
|
56
56
|
"babel-loader": "^8.1.0",
|
|
57
|
-
"prettier": "^2.3.2",
|
|
58
57
|
"css-loader": "^6.2.0",
|
|
58
|
+
"d": "^1.0.1",
|
|
59
59
|
"html-loader": "^2.1.2",
|
|
60
60
|
"html-webpack-plugin": "^5.3.2",
|
|
61
|
+
"identity-obj-proxy": "^3.0.0",
|
|
62
|
+
"loader-utils": "^2.0.0",
|
|
61
63
|
"lwc": "^2.3.0",
|
|
62
64
|
"lwc-webpack-plugin": "^2.0.1",
|
|
63
65
|
"mini-css-extract-plugin": "^2.2.0",
|
|
64
|
-
"identity-obj-proxy": "^3.0.0",
|
|
65
66
|
"node-sass": "^7.0.1",
|
|
66
67
|
"postcss-loader": "^6.1.1",
|
|
68
|
+
"prettier": "^2.3.2",
|
|
67
69
|
"pug-html-loader": "^1.1.5",
|
|
68
70
|
"pug-loader": "^2.4.0",
|
|
69
71
|
"resolve-url-loader": "^4.0.0",
|
|
@@ -72,8 +74,9 @@
|
|
|
72
74
|
"style-loader": "^3.2.1",
|
|
73
75
|
"webpack": "^5.48.0",
|
|
74
76
|
"webpack-cli": "^4.7.2",
|
|
75
|
-
"webpack-dev-server": "^3.11.2"
|
|
76
|
-
|
|
77
|
-
|
|
77
|
+
"webpack-dev-server": "^3.11.2"
|
|
78
|
+
},
|
|
79
|
+
"dependencies": {
|
|
80
|
+
"@babel/runtime": "^7.28.4"
|
|
78
81
|
}
|
|
79
|
-
}
|
|
82
|
+
}
|