@plasmicapp/react-web 0.2.288 → 0.2.290

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.
@@ -693,7 +693,7 @@ function wrapFlexContainerChildren(children, hasGap) {
693
693
  // otherwise if we toggle between with and without gap, React reconciliation
694
694
  // will blow away the children tree and all state if we switch from having
695
695
  // a wrapper and not.
696
- var className = hasGap ? "__wab_flex-container" : "__wab_passthrough";
696
+ var className = hasGap ? "__wab_flex-container ρfc" : "__wab_passthrough";
697
697
  if (!children) {
698
698
  return null;
699
699
  }
@@ -1538,7 +1538,7 @@ function renderPlasmicSlot(opts) {
1538
1538
  // container (you cannot apply margin to just a text node).
1539
1539
  var maybeString = maybeAsString(content);
1540
1540
  if (maybeString) {
1541
- content = React.createElement("span", { className: "__wab_slot-string-wrapper" }, maybeString);
1541
+ content = (React.createElement("span", { className: "__wab_slot-string-wrapper \u03C1sw" }, maybeString));
1542
1542
  }
1543
1543
  var nonEmptyProps = Object.keys(rest).filter(function (p) { return !!rest[p]; });
1544
1544
  if (nonEmptyProps.length === 0) {
@@ -1546,7 +1546,7 @@ function renderPlasmicSlot(opts) {
1546
1546
  // just render the content directly; no need for style wrapper.
1547
1547
  return content;
1548
1548
  }
1549
- return React.createElement(as || "span", mergeProps({ className: "__wab_slot" }, rest), content);
1549
+ return React.createElement(as || "span", mergeProps({ className: "__wab_slot ρs" }, rest), content);
1550
1550
  }
1551
1551
  function maybeAsString(node) {
1552
1552
  // Unwrap fragments