view-binary-element
Advanced tools
+1
-1
| { | ||
| "name": "view-binary-element", | ||
| "version": "0.0.4", | ||
| "version": "0.0.5", | ||
| "description": "Native Web Component for previewing a few common types of binary files", | ||
@@ -5,0 +5,0 @@ "main": [ |
+11
-0
| # Change Log | ||
| ## [0.0.5](https://github.com/grtjn/view-binary-element/tree/0.0.5) (2020-11-18) | ||
| [Full Changelog](https://github.com/grtjn/view-binary-element/compare/0.0.4...0.0.5) | ||
| **Implemented enhancements:** | ||
| - Move over progress icons to Fontawesome 5 [\#9](https://github.com/grtjn/view-binary-element/issues/9) | ||
| **Fixed bugs:** | ||
| - HTML-loader strict checking [\#16](https://github.com/grtjn/view-binary-element/issues/16) | ||
| ## [0.0.4](https://github.com/grtjn/view-binary-element/tree/0.0.4) (2020-03-16) | ||
@@ -4,0 +15,0 @@ [Full Changelog](https://github.com/grtjn/view-binary-element/compare/0.0.3...0.0.4) |
+1
-1
| { | ||
| "name": "view-binary-element", | ||
| "version": "0.0.4", | ||
| "version": "0.0.5", | ||
| "description": "Native Web Component for previewing a few common types of binary files", | ||
@@ -5,0 +5,0 @@ "dependencies": {}, |
+7
-7
@@ -19,6 +19,6 @@ <template id="view-binary-template"> | ||
| /* fontawesome (copied because of Shadow DOM isolation) */ | ||
| /* Replaced fontawesome font for unicode character to eliminate peer dependency */ | ||
| .fa { | ||
| display: inline-block; | ||
| font: normal normal normal 14px/1 FontAwesome; | ||
| font-size: inherit; | ||
| font: normal normal normal 14px/1 Lucida Sans Unicode; | ||
| text-rendering: auto; | ||
@@ -29,3 +29,3 @@ -webkit-font-smoothing: antialiased; | ||
| .fa-refresh:before { | ||
| content: "\F021"; | ||
| content: "\21bb"; | ||
| } | ||
@@ -67,11 +67,11 @@ .fa-refresh[hidden]:before { | ||
| <div id="view-binary-viewer"> | ||
| <audio id="view-binary-audio" controls preload="metadata" src="" title=""> | ||
| <audio id="view-binary-audio" controls preload="metadata" title=""> | ||
| <slot id="fallback" name="fallback"></slot> | ||
| </audio> | ||
| <video id="view-binary-video" controls preload="metadata" src="" title="" playsinline> | ||
| <video id="view-binary-video" controls preload="metadata" title="" playsinline> | ||
| </video> | ||
| <picture id="view-binary-picture"> | ||
| <img src="" alt=""> | ||
| <img alt=""> | ||
| </picture> | ||
| <object id="view-binary-object" data="" type="" title=""> | ||
| <object id="view-binary-object" type="" title=""> | ||
| </object> | ||
@@ -78,0 +78,0 @@ </div> |
3321479
0.01%