Skip to content
This repository was archived by the owner on Oct 5, 2022. It is now read-only.

Commit 9d5c9da

Browse files
authored
3.4 updates (#16)
1 parent 924203f commit 9d5c9da

12 files changed

+6625
-7690
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
All notable changes to this project will be documented here.
44

5+
<a name="3.4.1"></a>
6+
## [3.4.1](https://github.com/rawilk/vue-context/releases/tag/3.4.1)
7+
8+
Released 2019-04-03
9+
10+
### Updates 3.4.1
11+
- **Scroll Listener:** Only attach the close scroll event listener when opened and immediately remove it when menu is closed
12+
to prevent it being called unnecessarily.
13+
- **Dependencies:** Removed Vue as a dependency as it never really was one since v3.0.0.
14+
- **Dependencies:** Ran `npm audit fix` to fix vulnerabilities found from dependencies.
15+
516
<a name="3.4.0"></a>
617
## [3.4.0](https://github.com/rawilk/vue-context/releases/tag/3.4.0)
718

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
[![VueJS version](https://img.shields.io/badge/vue.js-2.x-green.svg?style=for-the-badge)](https://vuejs.org)
88

99
`vue-context` provides a simple yet flexible context menu for Vue. It is styled for the standard `<ul>` tag, but any menu template can be used.
10-
The only dependencies the menu has are Vue and vue-clickaway, so the majority of styling is up to you, and any of the package
11-
styles for the menu can easily be overridden.
10+
The menu is lightweight with its only dependency being `vue-clickaway`. The menu has some basic styles applied to it but they can be easily
11+
overridden by your own styles.
1212
<br><br>
1313
The menu disappears when you expect by utilizing `vue-clickaway` and it also optionally disappears when clicked on.
1414

build/webpack-test.mix.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
const { mix } = require('laravel-mix');
1+
const mix = require('laravel-mix');
22

33
mix
44
.setPublicPath('test/js/dist')
55
.js('test/js/src/index.js', 'index.js')
6-
.js('test/js/src/test_issue_4.js', 'test_issue_4.js')
76
.sourceMaps();

build/webpack.mix.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const { mix } = require('laravel-mix');
1+
const mix = require('laravel-mix');
22

33
const inProduction = mix.inProduction();
44

dist/vue-context.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)