@ui5/webcomponents-react
Version:
React Wrapper for UI5 Web Components and additional components
18 lines • 541 B
JavaScript
export let FlexBoxWrap = /*#__PURE__*/function (FlexBoxWrap) {
/**
* All will stay on one line. <br />
* <b>Note:</b> Corresponds to `nowrap`.
*/
FlexBoxWrap["NoWrap"] = "NoWrap";
/**
* Items will wrap onto multiple lines. (top to bottom)<br />
* <b>Note:</b> Corresponds to `wrap`.
*/
FlexBoxWrap["Wrap"] = "Wrap";
/**
* Items will wrap onto multiple lines. (bottom to top)<br />
* <b>Note:</b> Corresponds to `wrap-reverse`.
*/
FlexBoxWrap["WrapReverse"] = "WrapReverse";
return FlexBoxWrap;
}({});