@shoplflow/base 0.24.10 → 0.24.12

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 CHANGED
@@ -1775,7 +1775,7 @@ exports.DropdownButtonIcon = styled5__default.default(framerMotion.motion.div)`
1775
1775
  align-items: center;
1776
1776
  justify-content: center;
1777
1777
 
1778
- // ${({ sizeVar }) => sizeVar && exports.getDropdownIconSizeBySizeVar(sizeVar)};
1778
+ ${({ sizeVar }) => sizeVar && exports.getDropdownIconSizeBySizeVar(sizeVar)};
1779
1779
  `;
1780
1780
  var DropdownContext = React2.createContext(null);
1781
1781
  var useDropdown = () => {
@@ -2404,8 +2404,8 @@ var List = (_a) => {
2404
2404
  };
2405
2405
  exports.Text2Rows = ({ title, subTitle }) => {
2406
2406
  return /* @__PURE__ */ jsxRuntime.jsxs(exports.StyledText2Rows, { children: [
2407
- /* @__PURE__ */ jsxRuntime.jsx(exports.Text, { typography: "body1_500", color: "neutral700", children: title }),
2408
- subTitle && /* @__PURE__ */ jsxRuntime.jsx(exports.Text, { typography: "body2_400", color: "neutral400", children: subTitle })
2407
+ /* @__PURE__ */ jsxRuntime.jsx(exports.Text, { typography: "body1_500", color: "neutral700", lineClamp: 1, wordBreak: "break-all", children: title }),
2408
+ subTitle && /* @__PURE__ */ jsxRuntime.jsx(exports.Text, { typography: "body2_400", color: "neutral400", lineClamp: 1, wordBreak: "break-all", children: subTitle })
2409
2409
  ] });
2410
2410
  };
2411
2411
  List.Text2Rows = exports.Text2Rows;