Skip to content

Commit

Permalink
Import v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
leewillis77 committed Nov 18, 2024
1 parent 4b8df2a commit 39df173
Show file tree
Hide file tree
Showing 6 changed files with 432 additions and 135 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# 1.1.0

- [new] Add palette actions to swap the currently active site
- [new] Add palette actions for blueprints
- [fix] Use localised strings, not always EN
- [new] Clicking outside the modal closes it

# 1.0.0

- Initial public release
247 changes: 135 additions & 112 deletions package-lock.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions resources/dist/build/assets/supersonic-e058825b.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion resources/dist/build/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"css": [
"assets/supersonic-71a66aee.css"
],
"file": "assets/supersonic-ff95129e.js",
"file": "assets/supersonic-e058825b.js",
"isEntry": true,
"src": "resources/js/supersonic.js"
},
Expand Down
5 changes: 5 additions & 0 deletions resources/js/components/supersonic-key-listener.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ export default {
};
},
mounted() {
document.addEventListener('click', (e) => {
if (e.target.classList.contains('modal-container')) {
this.$emit('visibilityHide');
}
});
document.addEventListener(
'keydown',
(e) => {
Expand Down
Loading

0 comments on commit 39df173

Please sign in to comment.