@plasmicapp/react-web 0.2.289 → 0.2.291

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/dist/index.cjs.js CHANGED
@@ -711,7 +711,7 @@ function wrapFlexContainerChildren(children, hasGap) {
711
711
  // otherwise if we toggle between with and without gap, React reconciliation
712
712
  // will blow away the children tree and all state if we switch from having
713
713
  // a wrapper and not.
714
- var className = hasGap ? "__wab_flex-container" : "__wab_passthrough";
714
+ var className = hasGap ? "__wab_flex-container ρfc" : "__wab_passthrough";
715
715
  if (!children) {
716
716
  return null;
717
717
  }
@@ -1556,7 +1556,7 @@ function renderPlasmicSlot(opts) {
1556
1556
  // container (you cannot apply margin to just a text node).
1557
1557
  var maybeString = maybeAsString(content);
1558
1558
  if (maybeString) {
1559
- content = React__namespace.createElement("span", { className: "__wab_slot-string-wrapper" }, maybeString);
1559
+ content = (React__namespace.createElement("span", { className: "__wab_slot-string-wrapper \u03C1sw" }, maybeString));
1560
1560
  }
1561
1561
  var nonEmptyProps = Object.keys(rest).filter(function (p) { return !!rest[p]; });
1562
1562
  if (nonEmptyProps.length === 0) {
@@ -1564,7 +1564,7 @@ function renderPlasmicSlot(opts) {
1564
1564
  // just render the content directly; no need for style wrapper.
1565
1565
  return content;
1566
1566
  }
1567
- return React__namespace.createElement(as || "span", mergeProps({ className: "__wab_slot" }, rest), content);
1567
+ return React__namespace.createElement(as || "span", mergeProps({ className: "__wab_slot ρs" }, rest), content);
1568
1568
  }
1569
1569
  function maybeAsString(node) {
1570
1570
  // Unwrap fragments