@wishbone-media/spark 0.43.0 → 0.44.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/dist/index.js +570 -565
- package/package.json +2 -1
- package/src/plugins/fontawesome.js +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wishbone-media/spark",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.44.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -97,6 +97,7 @@
|
|
|
97
97
|
"dependencies": {
|
|
98
98
|
"@fancyapps/ui": "^6.1.13",
|
|
99
99
|
"@floating-ui/vue": "^1.1.11",
|
|
100
|
+
"@fortawesome/pro-solid-svg-icons": "^7.2.0",
|
|
100
101
|
"@googlemaps/js-api-loader": "^2.0.2"
|
|
101
102
|
}
|
|
102
103
|
}
|
|
@@ -69,6 +69,8 @@ import {
|
|
|
69
69
|
faSortUp as faSortUpDuotone,
|
|
70
70
|
} from '@fortawesome/pro-duotone-svg-icons'
|
|
71
71
|
|
|
72
|
+
import { faStar as faStarSolid } from '@fortawesome/pro-solid-svg-icons'
|
|
73
|
+
|
|
72
74
|
export const Icons = {
|
|
73
75
|
farArrowLeftToLine: faArrowLeftToLine,
|
|
74
76
|
farArrowRightToLine: faArrowRightToLine,
|
|
@@ -167,7 +169,7 @@ const genesisIconMapping = {
|
|
|
167
169
|
radioDecorator: faCircleDot, // Circle with dot for radio indicator
|
|
168
170
|
select: faChevronDown,
|
|
169
171
|
spinner: faSpinnerThird,
|
|
170
|
-
star:
|
|
172
|
+
star: faStarSolid,
|
|
171
173
|
trash: faTrash,
|
|
172
174
|
fastForward: faAnglesRight,
|
|
173
175
|
right: faChevronRight,
|