@app-studio/web 0.8.25 → 0.8.26

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/web.esm.js CHANGED
@@ -166,16 +166,16 @@ var Text = TextComponent;
166
166
  var _excluded$1 = ["justifyContent", "isReversed"];
167
167
  var Vertical = /*#__PURE__*/React.forwardRef((_ref, ref) => {
168
168
  var {
169
- // Sets a default alignment for content within the Vertical container to 'flex-start'
170
169
  justifyContent = 'flex-start',
171
- // Determines the direction in which the Vertical elements are stacked, default not reversed
172
170
  isReversed = false
173
171
  } = _ref,
174
172
  props = _objectWithoutPropertiesLoose(_ref, _excluded$1);
175
- return /*#__PURE__*/React.createElement(View$1, Object.assign({
176
- display: "flex",
177
- justifyContent: justifyContent,
178
- flexDirection: isReversed ? 'column-reverse' : 'column'
173
+ return /*#__PURE__*/React.createElement("div", Object.assign({
174
+ style: {
175
+ display: 'flex',
176
+ justifyContent: justifyContent,
177
+ flexDirection: isReversed ? 'column-reverse' : 'column'
178
+ }
179
179
  }, props, {
180
180
  ref: ref
181
181
  }));