purgetss 6.0.9 → 6.0.11
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/assets/fonts/MaterialSymbolsOutlined-Regular.ttf +0 -0
- package/assets/fonts/MaterialSymbolsRounded-Regular.ttf +0 -0
- package/assets/fonts/MaterialSymbolsSharp-Regular.ttf +0 -0
- package/dist/materialdesignicons.js +1 -1
- package/dist/materialdesignicons.tss +1 -1
- package/dist/materialsymbols.js +2406 -0
- package/dist/materialsymbols.tss +2410 -0
- package/index.js +40 -1
- package/lib/build-material-symbols-js.js +64 -0
- package/lib/build-material-symbols-tss.js +54 -0
- package/lib/templates/materialicons/template.js +1 -1
- package/lib/templates/materialicons/template.tss +1 -1
- package/lib/templates/materialsymbols/MaterialSymbolsOutlined[FILL,GRAD,opsz,wght].codepoints +2373 -0
- package/lib/templates/materialsymbols/MaterialSymbolsRounded[FILL,GRAD,opsz,wght].codepoints +2373 -0
- package/lib/templates/materialsymbols/MaterialSymbolsSharp[FILL,GRAD,opsz,wght].codepoints +2373 -0
- package/lib/templates/materialsymbols/reset.tss +32 -0
- package/lib/templates/materialsymbols/template.js +6 -0
- package/lib/templates/materialsymbols/template.tss +4 -0
- package/package.json +4 -2
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Are delightful, beautifully crafted symbols for common actions and items. https://material.io/resources/icons/?style=baseline
|
|
4
4
|
* Material design icons is the official icon set from Google. https://material.io/design/iconography/system-icons.html
|
|
5
5
|
* Material design guidelines: https://material.io/guidelines/.
|
|
6
|
-
* Update material icons [
|
|
6
|
+
* Update material icons [09/19/22]
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
exports.getIcon = function getIcon(selector) {
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Are delightful, beautifully crafted symbols for common actions and items. https://material.io/resources/icons/?style=baseline
|
|
3
3
|
// Material design icons is the official icon set from Google. https://material.io/design/iconography/system-icons.html
|
|
4
4
|
// Material design guidelines: https://material.io/guidelines/.
|
|
5
|
-
// Update material icons [
|
|
5
|
+
// Update material icons [09/19/22]
|
|
6
6
|
|
|
7
7
|
// Font Families
|
|
8
8
|
'.md': { font: { fontFamily: 'MaterialIcons-Regular' } }
|