-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8e20c30
commit e9cdc30
Showing
18 changed files
with
47 additions
and
34 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "hivemind-widget", | ||
"version": "1.4.1", | ||
"version": "1.4.2", | ||
"description": "Web component widget for hivemind", | ||
"author": "Irfan Vigma Taufik", | ||
"email": "[email protected]", | ||
|
@@ -9,9 +9,8 @@ | |
"main": "./dist/bundle.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1", | ||
"postinstall": "npm run build", | ||
"prepare": "npm run build", | ||
"build": "rimraf dist && cross-env NODE_ENV=production rollup -c", | ||
"prepublish": "npm run build", | ||
"dev": "rollup -c -w" | ||
}, | ||
"repository": { | ||
|
@@ -36,7 +35,6 @@ | |
"rollup-watch": "^4.3.1", | ||
"vue": "^2.2.6", | ||
"vue-custom-element": "^1.1.0", | ||
"vue-simple-spinner": "^1.2.8", | ||
"vuetrend": "^0.2.3" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<template> | ||
<div class="hivemind-loading"> | ||
<div class="hivemind-spinner"></div> | ||
<div class="hivemind-spinner-text">Loading..</div> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
export default {} | ||
</script> | ||
|
||
<style> | ||
.hivemind-spinner { | ||
transition: all 0.3s linear; | ||
margin: 0 auto; | ||
border-radius: 100%; | ||
border: 4px solid #eee; | ||
border-top: 4px solid #059B85; | ||
width: 32px; | ||
height: 32px; | ||
animation: hivemind-spinner-spin 0.8s linear infinite; | ||
} | ||
.hivemind-spinner-text { | ||
margin-top: 25px; | ||
font-size: 16px; | ||
text-align: center; | ||
color: #555; | ||
} | ||
@keyframes hivemind-spinner-spin { | ||
0% { transform: rotate(0deg); } | ||
100% { transform: rotate(360deg); } | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters