@quasar/extras 1.16.2 → 1.16.4

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.
Files changed (37) hide show
  1. package/README.md +8 -8
  2. package/bootstrap-icons/bootstrap-icons.css +0 -44
  3. package/bootstrap-icons/bootstrap-icons.woff +0 -0
  4. package/bootstrap-icons/bootstrap-icons.woff2 +0 -0
  5. package/bootstrap-icons/index.d.ts +1 -1
  6. package/bootstrap-icons/index.js +4 -4
  7. package/bootstrap-icons/index.mjs +4 -4
  8. package/fontawesome-v6/fontawesome-v6.css +1 -1
  9. package/material-icons/index.js +4 -4
  10. package/material-icons/index.mjs +4 -4
  11. package/material-icons-outlined/index.js +4 -4
  12. package/material-icons-outlined/index.mjs +4 -4
  13. package/material-icons-round/index.js +4 -4
  14. package/material-icons-round/index.mjs +4 -4
  15. package/material-icons-sharp/index.js +3 -3
  16. package/material-icons-sharp/index.mjs +3 -3
  17. package/material-symbols-outlined/icons.json +72 -0
  18. package/material-symbols-outlined/index.d.ts +72 -0
  19. package/material-symbols-outlined/index.js +117 -45
  20. package/material-symbols-outlined/index.mjs +117 -45
  21. package/material-symbols-outlined/web-font/kJEhBvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oFsLjBuVY.woff2 +0 -0
  22. package/material-symbols-outlined/web-font/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1p-p_4MrImHCIJIZrDCvHeel.woff +0 -0
  23. package/material-symbols-rounded/icons.json +72 -0
  24. package/material-symbols-rounded/index.d.ts +72 -0
  25. package/material-symbols-rounded/index.js +554 -482
  26. package/material-symbols-rounded/index.mjs +554 -482
  27. package/material-symbols-rounded/web-font/sykg-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjzaqkNCeE.woff2 +0 -0
  28. package/material-symbols-rounded/web-font/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcDTCVpeRL2w5rwZu2rIekXxE.woff +0 -0
  29. package/material-symbols-sharp/icons.json +72 -0
  30. package/material-symbols-sharp/index.d.ts +72 -0
  31. package/material-symbols-sharp/index.js +401 -329
  32. package/material-symbols-sharp/index.mjs +401 -329
  33. package/material-symbols-sharp/web-font/gNMVW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4aWHSSmlN.woff2 +0 -0
  34. package/material-symbols-sharp/web-font/gNNBW2J8Roq16WD5tFNRaeLQk6-SHQ_R00k4c2_whPnoY9ruReaU4bHmz74m0ZkGH-VBYe1x0TV6x4yFH8F-H_OdzEL3sVTgJtfbYxOLozCN.woff +0 -0
  35. package/mdi-v4/index.d.ts +4997 -0
  36. package/package.json +4 -9
  37. package/postcss.config.cjs +5 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quasar/extras",
3
- "version": "1.16.2",
3
+ "version": "1.16.4",
4
4
  "description": "Quasar Framework fonts, icons and animations",
5
5
  "scripts": {
6
6
  "build": "node build/index.js"
@@ -93,11 +93,6 @@
93
93
  "import": "./material-symbols-sharp/index.mjs",
94
94
  "require": "./material-symbols-sharp/index.js"
95
95
  },
96
- "./mdi-v3": {
97
- "types": "./mdi-v3/index.d.ts",
98
- "import": "./mdi-v3/index.mjs",
99
- "require": "./mdi-v3/index.js"
100
- },
101
96
  "./mdi-v4": {
102
97
  "types": "./mdi-v4/index.d.ts",
103
98
  "import": "./mdi-v4/index.mjs",
@@ -161,12 +156,12 @@
161
156
  "@mdi/font": "7.2.96",
162
157
  "@mdi/svg": "7.2.96",
163
158
  "animate.css": "4.1.1",
164
- "bootstrap-icons": "^1.10.3",
165
- "cross-fetch": "^3.1.5",
159
+ "bootstrap-icons": "^1.10.5",
160
+ "cross-fetch": "^3.1.6",
166
161
  "cross-spawn": "7.0.3",
167
162
  "eva-icons": "1.1.3",
168
163
  "fs-extra": "11.1.1",
169
- "glob": "9.3.4",
164
+ "glob": "10.2.4",
170
165
  "ionicons": "7.1.0",
171
166
  "line-awesome": "1.3.0",
172
167
  "themify-icons": "https://github.com/lykmapipo/themify-icons",
@@ -0,0 +1,5 @@
1
+ // https://github.com/michael-ciniawsky/postcss-load-config
2
+
3
+ module.exports = {
4
+ plugins: []
5
+ }