@innovastudio/contentbox 1.6.192 → 1.6.194

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@innovastudio/contentbox",
3
3
  "type": "module",
4
- "version": "1.6.192",
4
+ "version": "1.6.194",
5
5
  "description": "",
6
6
  "main": "public/contentbox/contentbox.esm.js",
7
7
  "types": "index.d.ts",
@@ -59,7 +59,7 @@
59
59
  "ws": "^8.13.0"
60
60
  },
61
61
  "dependencies": {
62
- "@innovastudio/contentbuilder": "^1.5.210",
62
+ "@innovastudio/contentbuilder": "^1.5.211",
63
63
  "js-beautify": "^1.14.0",
64
64
  "marked": "^17.0.0",
65
65
  "sortablejs": "^1.15.2"
@@ -2524,6 +2524,7 @@ body.frame-center.controlpanel .is-content-view {
2524
2524
  left: auto;
2525
2525
  width: 35px;
2526
2526
  height: auto;
2527
+ font-size: 13px;
2527
2528
  flex-direction: column;
2528
2529
  border-top-left-radius: 3px;
2529
2530
  border-bottom-left-radius: 3px;
@@ -13351,8 +13351,9 @@ class SettingsUIGenerator$1 {
13351
13351
  createSelectInput(name, config, value) {
13352
13352
  const label = document.createElement('label');
13353
13353
  label.className = 'label'; // label.style.fontWeight = 500;
13354
+ // const labelText = document.createTextNode((config.label || name) + ':');
13354
13355
 
13355
- const labelText = document.createTextNode((config.label || name) + ':');
13356
+ const labelText = document.createTextNode(config.label || name);
13356
13357
  label.appendChild(labelText);
13357
13358
  const select = document.createElement('select');
13358
13359
  select.name = name;
@@ -34055,8 +34056,8 @@ class Util$1 {
34055
34056
  }
34056
34057
  let editingInsidePlugin = false;
34057
34058
  let elm = this.builder.activeElement;
34058
- const plugin = elm.closest('[data-cb-type]');
34059
- const subblock = elm.closest('.is-subblock');
34059
+ const plugin = elm && elm.closest('[data-cb-type]');
34060
+ const subblock = elm && elm.closest('.is-subblock');
34060
34061
  if (plugin && subblock) {
34061
34062
  editingInsidePlugin = true;
34062
34063
  }
@@ -160592,6 +160593,7 @@ Add an image for each feature.`, 'Create a new block showcasing a photo gallery
160592
160593
  top: calc(17% - 14px);
160593
160594
  right: 0px;
160594
160595
  left: auto;
160596
+ font-size: 13px;
160595
160597
  width: 35px;
160596
160598
  height: auto;
160597
160599
  flex-direction: column;