draply-dev 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/package.json +20 -5
  2. package/src/overlay.js +1 -1
package/package.json CHANGED
@@ -1,12 +1,27 @@
1
1
  {
2
2
  "name": "draply-dev",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Visual overlay for any frontend project — move, resize, restyle live in the browser, save to CSS",
5
5
  "author": "Arman",
6
6
  "type": "commonjs",
7
- "bin": { "draply": "./bin/cli.js" },
8
- "files": ["bin/", "src/"],
9
- "keywords": ["css", "visual-editor", "frontend", "overlay", "design-tool", "no-code", "drag-and-drop"],
7
+ "bin": {
8
+ "draply": "./bin/cli.js"
9
+ },
10
+ "files": [
11
+ "bin/",
12
+ "src/"
13
+ ],
14
+ "keywords": [
15
+ "css",
16
+ "visual-editor",
17
+ "frontend",
18
+ "overlay",
19
+ "design-tool",
20
+ "no-code",
21
+ "drag-and-drop"
22
+ ],
10
23
  "license": "MIT",
11
- "engines": { "node": ">=16.0.0" }
24
+ "engines": {
25
+ "node": ">=16.0.0"
26
+ }
12
27
  }
package/src/overlay.js CHANGED
@@ -9,7 +9,7 @@
9
9
  dragSX: 0, dragSY: 0, dragOrigL: 0, dragOrigT: 0,
10
10
  dragOrigPositions: [], // [{el, origL, origT, prevL, prevT}] for multi-drag
11
11
  resizeDir: '', resizeOrigW: 0, resizeOrigH: 0, resizeOrigX: 0, resizeOrigY: 0, resizeOrigL: 0, resizeOrigT: 0,
12
- isPro: false, // set to true when user has paid
12
+ isPro: true, // set to true when user has paid
13
13
  changes: []
14
14
  };
15
15