@easyv/config 1.3.6 → 1.3.8

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/lib/control.js CHANGED
@@ -92,6 +92,11 @@ var control = function control() {
92
92
  name: "drag",
93
93
  displayName: "详情区域",
94
94
  value: [{
95
+ "name": "enableStretch",
96
+ "displayName": "启动拉伸",
97
+ "value": false,
98
+ "type": "boolean"
99
+ }, {
95
100
  name: "start",
96
101
  displayName: "起始位置",
97
102
  value: start,
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "@easyv/config",
3
- "version": "1.3.6",
3
+ "version": "1.3.8",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "make": "babel src -d lib",
8
+ "watch": "babel --watch src -d lib",
8
9
  "release": "standard-version"
9
10
  },
10
11
  "keywords": [],
package/src/control.js CHANGED
@@ -88,6 +88,12 @@ export const control = ({
88
88
  name: "drag",
89
89
  displayName: "详情区域",
90
90
  value: [
91
+ {
92
+ "name": "enableStretch",
93
+ "displayName": "启动拉伸",
94
+ "value": false,
95
+ "type": "boolean"
96
+ },
91
97
  {
92
98
  name: "start",
93
99
  displayName: "起始位置",