@app-studio/web 0.8.21 → 0.8.22
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/components/Layout/Center/Center.d.ts +3 -2
- package/dist/components/Layout/Center/{Center/Center.props.d.ts → Center.props.d.ts} +1 -1
- package/dist/components/Layout/Horizontal/Horizontal.d.ts +3 -2
- package/dist/components/Layout/Vertical/Vertical.d.ts +3 -2
- package/dist/web.cjs.development.js +6 -12
- package/dist/web.cjs.development.js.map +1 -1
- package/dist/web.cjs.production.min.js +1 -1
- package/dist/web.cjs.production.min.js.map +1 -1
- package/dist/web.esm.js +6 -12
- package/dist/web.esm.js.map +1 -1
- package/dist/web.umd.development.js +6 -12
- package/dist/web.umd.development.js.map +1 -1
- package/dist/web.umd.production.min.js +1 -1
- package/dist/web.umd.production.min.js.map +1 -1
- package/package.json +1 -1
- package/dist/components/Layout/Center/Center/Center.view.d.ts +0 -4
- package/dist/components/Layout/Horizontal/Horizontal/Horizontal.view.d.ts +0 -4
- package/dist/components/Layout/Vertical/Vertical/Vertical.view.d.ts +0 -4
- /package/dist/components/Layout/Horizontal/{Horizontal/Horizontal.props.d.ts → Horizontal.props.d.ts} +0 -0
- /package/dist/components/Layout/Vertical/{Vertical/Vertical.props.d.ts → Vertical.props.d.ts} +0 -0
package/dist/web.esm.js
CHANGED
|
@@ -164,7 +164,7 @@ var TextComponent = props => {
|
|
|
164
164
|
var Text = TextComponent;
|
|
165
165
|
|
|
166
166
|
var _excluded$1 = ["justifyContent", "isReversed"];
|
|
167
|
-
var
|
|
167
|
+
var Vertical = /*#__PURE__*/React.forwardRef((_ref, ref) => {
|
|
168
168
|
var {
|
|
169
169
|
// Sets a default alignment for content within the Vertical container to 'flex-start'
|
|
170
170
|
justifyContent = 'flex-start',
|
|
@@ -180,12 +180,10 @@ var VerticalView = /*#__PURE__*/React.forwardRef((_ref, ref) => {
|
|
|
180
180
|
ref: ref
|
|
181
181
|
}));
|
|
182
182
|
});
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
var Vertical = props => (/*#__PURE__*/React.createElement(VerticalView, Object.assign({}, props)));
|
|
183
|
+
Vertical.displayName = 'Vertical';
|
|
186
184
|
|
|
187
185
|
var _excluded$2 = ["justifyContent", "isReversed"];
|
|
188
|
-
var
|
|
186
|
+
var Horizontal = /*#__PURE__*/React.forwardRef((_ref, ref) => {
|
|
189
187
|
var {
|
|
190
188
|
// Sets a default alignment for content within the Horizontal container to 'flex-start'
|
|
191
189
|
justifyContent = 'flex-start',
|
|
@@ -201,12 +199,10 @@ var HorizontalView = /*#__PURE__*/React.forwardRef((_ref, ref) => {
|
|
|
201
199
|
ref: ref
|
|
202
200
|
}));
|
|
203
201
|
});
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
var Horizontal = props => (/*#__PURE__*/React.createElement(HorizontalView, Object.assign({}, props)));
|
|
202
|
+
Horizontal.displayName = 'Horizontal';
|
|
207
203
|
|
|
208
204
|
var _excluded$3 = ["isReversed"];
|
|
209
|
-
var
|
|
205
|
+
var Center = /*#__PURE__*/React.forwardRef((_ref, ref) => {
|
|
210
206
|
var props = _objectWithoutPropertiesLoose(_ref, _excluded$3);
|
|
211
207
|
return /*#__PURE__*/React.createElement(View$1, Object.assign({
|
|
212
208
|
display: "flex",
|
|
@@ -216,9 +212,7 @@ var CenterView = /*#__PURE__*/React.forwardRef((_ref, ref) => {
|
|
|
216
212
|
ref: ref
|
|
217
213
|
}));
|
|
218
214
|
});
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
var Center = props => (/*#__PURE__*/React.createElement(CenterView, Object.assign({}, props)));
|
|
215
|
+
Center.displayName = 'Center';
|
|
222
216
|
|
|
223
217
|
var _excluded$4 = ["size", "color"],
|
|
224
218
|
_excluded2 = ["size", "color"],
|