aochen-ui 0.1.23 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,24 +1,24 @@
1
- # aochen-ui
2
-
3
- ## Project setup
4
- ```
5
- yarn install
6
- ```
7
-
8
- ### Compiles and hot-reloads for development
9
- ```
10
- yarn serve
11
- ```
12
-
13
- ### Compiles and minifies for production
14
- ```
15
- yarn build
16
- ```
17
-
18
- ### Lints and fixes files
19
- ```
20
- yarn lint
21
- ```
22
-
23
- ### Customize configuration
24
- See [Configuration Reference](https://cli.vuejs.org/config/).
1
+ # aochen-ui
2
+
3
+ ## Project setup
4
+ ```
5
+ yarn install
6
+ ```
7
+
8
+ ### Compiles and hot-reloads for development
9
+ ```
10
+ yarn serve
11
+ ```
12
+
13
+ ### Compiles and minifies for production
14
+ ```
15
+ yarn build
16
+ ```
17
+
18
+ ### Lints and fixes files
19
+ ```
20
+ yarn lint
21
+ ```
22
+
23
+ ### Customize configuration
24
+ See [Configuration Reference](https://cli.vuejs.org/config/).
@@ -21605,7 +21605,7 @@ module.exports = DESCRIPTORS ? function (object, key, value) {
21605
21605
  /***/ "9224":
21606
21606
  /***/ (function(module) {
21607
21607
 
21608
- module.exports = JSON.parse("{\"name\":\"aochen-ui\",\"version\":\"0.1.23\",\"private\":false,\"main\":\"lib/AochenUI.umd.min.js\",\"style\":\"lib/AochenUI.css\",\"scripts\":{\"serve\":\"vue-cli-service serve\",\"build\":\"vue-cli-service build\",\"lint\":\"vue-cli-service lint\",\"build:pkg\":\"vue-cli-service build --target lib --dest lib packages/index.js --name AochenUI\",\"dev:pkg\":\"vue-cli-service build --target lib --dest lib packages/index.js --name AochenUI --watch\"},\"license\":\"MIT\",\"dependencies\":{\"core-js\":\"^3.6.5\",\"element-ui\":\"^2.15.4\",\"highlight.js\":\"^11.2.0\",\"jodit\":\"^3.7.2\",\"vue\":\"^2.6.11\",\"vue-router\":\"^3.2.0\",\"vuex\":\"^3.4.0\",\"xss\":\"^1.0.9\"},\"devDependencies\":{\"@vue/cli-plugin-babel\":\"~4.5.0\",\"@vue/cli-plugin-eslint\":\"~4.5.0\",\"@vue/cli-plugin-router\":\"~4.5.0\",\"@vue/cli-plugin-vuex\":\"~4.5.0\",\"@vue/cli-service\":\"~4.5.0\",\"@vue/eslint-config-prettier\":\"^6.0.0\",\"babel-eslint\":\"^10.1.0\",\"eslint\":\"^6.7.2\",\"eslint-plugin-prettier\":\"^3.3.1\",\"eslint-plugin-vue\":\"^6.2.2\",\"prettier\":\"^2.2.1\",\"sass\":\"^1.37.5\",\"sass-loader\":\"8.0.2\",\"vue-template-compiler\":\"^2.6.11\",\"vue-virtual-scroller\":\"^1.0.10\"},\"files\":[\"lib\"]}");
21608
+ module.exports = JSON.parse("{\"name\":\"aochen-ui\",\"version\":\"0.2.0\",\"private\":false,\"main\":\"lib/AochenUI.umd.min.js\",\"style\":\"lib/AochenUI.css\",\"scripts\":{\"serve\":\"vue-cli-service serve\",\"build\":\"vue-cli-service build\",\"lint\":\"vue-cli-service lint\",\"build:pkg\":\"vue-cli-service build --target lib --dest lib packages/index.js --name AochenUI\",\"dev:pkg\":\"vue-cli-service build --target lib --dest lib packages/index.js --name AochenUI --watch\"},\"license\":\"MIT\",\"dependencies\":{\"core-js\":\"^3.6.5\",\"element-ui\":\"^2.15.4\",\"highlight.js\":\"^11.2.0\",\"jodit\":\"^3.7.2\",\"vue\":\"^2.6.11\",\"vue-router\":\"^3.2.0\",\"vuex\":\"^3.4.0\",\"xss\":\"^1.0.9\"},\"devDependencies\":{\"@vue/cli-plugin-babel\":\"~4.5.0\",\"@vue/cli-plugin-eslint\":\"~4.5.0\",\"@vue/cli-plugin-router\":\"~4.5.0\",\"@vue/cli-plugin-vuex\":\"~4.5.0\",\"@vue/cli-service\":\"~4.5.0\",\"@vue/eslint-config-prettier\":\"^6.0.0\",\"babel-eslint\":\"^10.1.0\",\"eslint\":\"^6.7.2\",\"eslint-plugin-prettier\":\"^3.3.1\",\"eslint-plugin-vue\":\"^6.2.2\",\"prettier\":\"^2.2.1\",\"sass\":\"^1.37.5\",\"sass-loader\":\"8.0.2\",\"vue-template-compiler\":\"^2.6.11\",\"vue-virtual-scroller\":\"^1.0.10\"},\"files\":[\"lib\"]}");
21609
21609
 
21610
21610
  /***/ }),
21611
21611
 
@@ -27033,7 +27033,7 @@ var es_string_replace = __webpack_require__("5319");
27033
27033
 
27034
27034
  function dialogDrag(Vue) {
27035
27035
  Vue.directive("dialogDrag", {
27036
- bind: function bind(el, binding) {
27036
+ bind: function bind(el, binding, vnode) {
27037
27037
  if (binding.value === false) {
27038
27038
  return;
27039
27039
  }
@@ -27084,6 +27084,7 @@ function dialogDrag(Vue) {
27084
27084
  t = maxDragDomTop;
27085
27085
  }
27086
27086
 
27087
+ vnode.context.$emit("move");
27087
27088
  dragDom.style.left = "".concat(l + styL, "px");
27088
27089
  dragDom.style.top = "".concat(t + styT, "px");
27089
27090
  };