draply-dev 1.5.1 → 1.5.2

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 +1 -1
  2. package/src/overlay.js +0 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "draply-dev",
3
- "version": "1.5.1",
3
+ "version": "1.5.2",
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",
package/src/overlay.js CHANGED
@@ -1151,7 +1151,6 @@
1151
1151
  document.getElementById('__st_shadow__').onchange = e => {
1152
1152
  if (state.selectedEl) state.selectedEl.style.boxShadow = e.target.value === 'none' ? '' : e.target.value;
1153
1153
  };
1154
- }
1155
1154
 
1156
1155
  document.getElementById('__clr_apply__').onclick = () => {
1157
1156
  if (!state.selectedEl) { toast('⚠ Select an element first'); return; }