@innovastudio/contentbuilder 1.0.57 → 1.0.58

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@innovastudio/contentbuilder",
3
- "version": "1.0.57",
3
+ "version": "1.0.58",
4
4
  "description": "",
5
5
  "main": "public/contentbuilder/contentbuilder.esm.js",
6
6
  "files": [
@@ -41426,6 +41426,8 @@ class Module {
41426
41426
  var index = 1;
41427
41427
  const builders = module.querySelectorAll('[data-subblock]');
41428
41428
  Array.prototype.forEach.call(builders, builder => {
41429
+ // Glide Slider Support
41430
+ if (dom$t.hasClass(builder.parentNode, 'glide__slide--clone')) return;
41429
41431
  let builderhtml = builder.innerHTML;
41430
41432
  module.setAttribute('data-html-' + index, encodeURIComponent(builderhtml));
41431
41433
  index++;