@innovastudio/contentbox 1.6.11 → 1.6.12

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@innovastudio/contentbox",
3
3
  "type": "module",
4
- "version": "1.6.11",
4
+ "version": "1.6.12",
5
5
  "description": "",
6
6
  "main": "public/contentbox/contentbox.esm.js",
7
7
  "files": [
@@ -52,7 +52,7 @@
52
52
  "ws": "^8.13.0"
53
53
  },
54
54
  "dependencies": {
55
- "@innovastudio/contentbuilder": "^1.4.133",
55
+ "@innovastudio/contentbuilder": "^1.4.135",
56
56
  "js-beautify": "^1.14.0"
57
57
  }
58
58
  }
@@ -22799,7 +22799,6 @@ class Util$1 {
22799
22799
  const dom = this.dom;
22800
22800
  const html = `
22801
22801
  <input type="text" class="style-helper-input" style="display:none;">
22802
- <label class="style-helper-label" style="display:none;"></label>
22803
22802
  <button class="style-helper-button-classic classic" style="display:none;"><svg><use xlink:href="#ion-code-working"></use></svg></button>
22804
22803
  <select class="style-helper-select" style="display:none;"><option value=""></option></select>
22805
22804
 
@@ -22847,7 +22846,6 @@ class Util$1 {
22847
22846
  return window.getComputedStyle(btn.querySelector('svg'), null).getPropertyValue('fill');
22848
22847
  };
22849
22848
  const inp = this.builder.builderStuff.querySelector('.style-helper-input');
22850
- const lbl = this.builder.builderStuff.querySelector('.style-helper-label');
22851
22849
  const sel = this.builder.builderStuff.querySelector('.style-helper-select');
22852
22850
  const btnClassic = this.builder.builderStuff.querySelector('.style-helper-button-classic');
22853
22851
  this.builder.styleModalColor = getVal('.modal-color', 'background-color');
@@ -22892,9 +22890,6 @@ class Util$1 {
22892
22890
  this.builder.styleInputBorderBottom = window.getComputedStyle(inp, null).getPropertyValue('border-bottom');
22893
22891
  this.builder.styleInputColor = window.getComputedStyle(inp, null).getPropertyValue('color');
22894
22892
 
22895
- // Label (ex. used in 'Search & Replace' plugin)
22896
- this.builder.styleLabelColor = window.getComputedStyle(lbl, null).getPropertyValue('color');
22897
-
22898
22893
  // Button Classic (ex. used in 'Search & Replace' plugin)
22899
22894
  this.builder.styleButtonClassicBackground = window.getComputedStyle(btnClassic, null).getPropertyValue('background-color');
22900
22895
  this.builder.styleButtonClassicColor = window.getComputedStyle(btnClassic, null).getPropertyValue('color');