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