🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

view-binary-element

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

view-binary-element - npm Package Compare versions

Comparing version
0.0.4
to
0.0.5
+1
-1
bower.json
{
"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": [

# 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)

{
"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": {},

@@ -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>