@lumx/icons 3.0.7 → 3.1.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.
@@ -0,0 +1,19 @@
1
+ # @lumx/icons migration from @mdi v4 to v5
2
+
3
+ Starting with LumX v1, the @lumx/icons lib now uses material design icon v5.
4
+ To ease the migration, we managed to alias old icon names to new icon names when possible.
5
+
6
+ However, some icons could not be aliases and seem to be very uncommon so can still encounter breaking change when
7
+ updating to LumX v1.
8
+
9
+ The list of deleted icons in both CSS and JS: `square-inc-cash`, `behance`, `slackware`, `quicktime`, `shopify`, `strava`, `houzz`, `glassdoor`,
10
+ `beats`, `venmo`, `etsy`, `dribbble-box`, `accusoft`, `lyft`, `mixcloud`, `paypal`, `language-python-text`,
11
+ `pinterest-box`, `wunderlist`, `vk-box`, `vk-circle`, `yelp`, `adchoices`, `mixer`, `tumblr-box`, `tumblr`, `uber`,
12
+ `google-adwords`, `basecamp`, `google-physical-web`, `medium`, `meetup`, `flickr`, `houzz-box`, `itunes`,
13
+ `lastfm`, `amazon-drive`, `blackberry`, `dribbble`, `xing`, `xing-circle`, `steam-box`,
14
+ `mastodon-variant`, `maxcdn`, `flattr`, `eventbrite`, `xda`, `disqus-outline`,
15
+ `android-head`, `pocket`, `periscope`, `xing-box`, `foursquare`.
16
+
17
+ The list of delete icons only in CSS: `google-pages`.
18
+
19
+ The script used to generate the SCSS and JS icon aliases from V4 to V5: [mdi-v4-to-v5.js](https://gist.github.com/gcornut/5ffa16f1d09d00eedad1c9ab92c26d59)
File without changes
File without changes
package/dist/font.scss ADDED
@@ -0,0 +1,4 @@
1
+ $mdi-font-path: '~@mdi/font/fonts';
2
+
3
+ @import '~@mdi/font/scss/materialdesignicons';
4
+ @import './v4-to-v5-aliases';
@@ -0,0 +1,3 @@
1
+ export * from '@mdi/js';
2
+
3
+ export * from './v4-to-v5-aliases';