@plasmicapp/react-web 0.2.129 → 0.2.131

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.
@@ -1412,7 +1412,7 @@ function renderPlasmicSlot(opts) {
1412
1412
  var maybeString = maybeAsString(content);
1413
1413
 
1414
1414
  if (maybeString) {
1415
- content = createElement("div", {
1415
+ content = createElement("span", {
1416
1416
  className: "__wab_slot-string-wrapper"
1417
1417
  }, maybeString);
1418
1418
  }
@@ -1427,7 +1427,7 @@ function renderPlasmicSlot(opts) {
1427
1427
  return createElement(Fragment, null, content);
1428
1428
  }
1429
1429
 
1430
- return createElement(as || "div", mergeProps({
1430
+ return createElement(as || "span", mergeProps({
1431
1431
  className: "__wab_slot"
1432
1432
  }, rest), content);
1433
1433
  }