@quasar/extras 1.16.7 → 1.16.8
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/bootstrap-icons/{LICENSE.md → LICENSE} +1 -1
- package/bootstrap-icons/bootstrap-icons.css +7 -5
- package/bootstrap-icons/icons.json +97 -0
- package/eva-icons/eva-icons.css +9 -3
- package/ionicons-v7/index.d.ts +1 -1
- package/ionicons-v7/index.js +1 -1
- package/ionicons-v7/index.mjs +1 -1
- package/line-awesome/line-awesome.css +8 -3
- package/material-icons-outlined/index.js +1 -1
- package/material-icons-outlined/index.mjs +1 -1
- package/material-icons-round/index.js +1 -1
- package/material-icons-round/index.mjs +1 -1
- package/material-symbols-outlined/icons.json +107 -0
- package/material-symbols-outlined/index.d.ts +107 -0
- package/material-symbols-outlined/index.js +199 -92
- package/material-symbols-outlined/index.mjs +199 -92
- package/material-symbols-outlined/web-font/kJEhBvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oFsLjBuVY.woff2 +0 -0
- package/material-symbols-outlined/web-font/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1p-p_4MrImHCIJIZrDCvHeel.woff +0 -0
- package/material-symbols-rounded/icons.json +107 -0
- package/material-symbols-rounded/index.d.ts +107 -0
- package/material-symbols-rounded/index.js +298 -191
- package/material-symbols-rounded/index.mjs +298 -191
- package/material-symbols-rounded/web-font/sykg-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjzaqkNCeE.woff2 +0 -0
- package/material-symbols-rounded/web-font/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcDTCVpeRL2w5rwZu2rIekXxE.woff +0 -0
- package/material-symbols-sharp/icons.json +107 -0
- package/material-symbols-sharp/index.d.ts +107 -0
- package/material-symbols-sharp/index.js +217 -110
- package/material-symbols-sharp/index.mjs +217 -110
- package/material-symbols-sharp/web-font/gNMVW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4aWHSSmlN.woff2 +0 -0
- package/material-symbols-sharp/web-font/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H_OdzEL3sVTgJtfbYxOLozCN.woff +0 -0
- package/mdi-v6/LICENSE +20 -20
- package/mdi-v6/license.md +20 -20
- package/mdi-v7/icons.json +71 -0
- package/mdi-v7/index.d.ts +72 -1
- package/mdi-v7/index.js +82 -11
- package/mdi-v7/index.mjs +82 -11
- package/mdi-v7/materialdesignicons-webfont.woff +0 -0
- package/mdi-v7/materialdesignicons-webfont.woff2 +0 -0
- package/mdi-v7/mdi-v7.css +1197 -110
- package/package.json +6 -6
- package/themify/themify.css +4 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quasar/extras",
|
|
3
|
-
"version": "1.16.
|
|
3
|
+
"version": "1.16.8",
|
|
4
4
|
"description": "Quasar Framework fonts, icons and animations",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "node build/index.js"
|
|
@@ -153,8 +153,9 @@
|
|
|
153
153
|
},
|
|
154
154
|
"devDependencies": {
|
|
155
155
|
"@fortawesome/fontawesome-free": "6.4.2",
|
|
156
|
-
"@mdi/font": "7.
|
|
157
|
-
"@mdi/svg": "7.
|
|
156
|
+
"@mdi/font": "7.3.67",
|
|
157
|
+
"@mdi/svg": "7.3.67",
|
|
158
|
+
"@xmldom/xmldom": "0.8.10",
|
|
158
159
|
"animate.css": "4.1.1",
|
|
159
160
|
"bootstrap-icons": "^1.11.1",
|
|
160
161
|
"cross-fetch": "^4.0.0",
|
|
@@ -162,9 +163,8 @@
|
|
|
162
163
|
"eva-icons": "1.1.3",
|
|
163
164
|
"fs-extra": "11.1.1",
|
|
164
165
|
"glob": "10.3.10",
|
|
165
|
-
"ionicons": "7.1
|
|
166
|
+
"ionicons": "7.2.1",
|
|
166
167
|
"line-awesome": "1.3.0",
|
|
167
|
-
"themify-icons": "https://github.com/lykmapipo/themify-icons"
|
|
168
|
-
"@xmldom/xmldom": "0.8.10"
|
|
168
|
+
"themify-icons": "https://github.com/lykmapipo/themify-icons"
|
|
169
169
|
}
|
|
170
170
|
}
|
package/themify/themify.css
CHANGED