design-zystem 1.0.245 → 1.0.246

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.js CHANGED
@@ -1917,7 +1917,7 @@ var SelectInput = import_styled_components17.default.div`
1917
1917
  border-radius: 5px;
1918
1918
  cursor: ${(props) => props.disabled ? "not-allowed" : "pointer"};
1919
1919
  background-color: ${(props) => props.disabled ? colors.grey_200 : colors.white};
1920
- height: ${(props) => props.height || "45px"};
1920
+ height: ${(props) => props.height || "36px"};
1921
1921
  display: flex;
1922
1922
  padding: 0 10px;
1923
1923
  align-items: center;
@@ -2097,7 +2097,7 @@ var Select = ({
2097
2097
  document.removeEventListener("mousedown", handleClickOutside);
2098
2098
  };
2099
2099
  }, [isOpen]);
2100
- return /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(StyledContainer, { width, noFlex, children: [
2100
+ return /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(StyledContainer, { width, noFlex, label, children: [
2101
2101
  /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(Text, { size: "xs", children: [
2102
2102
  label,
2103
2103
  " ",
package/dist/index.mjs CHANGED
@@ -1823,7 +1823,7 @@ var SelectInput = styled17.div`
1823
1823
  border-radius: 5px;
1824
1824
  cursor: ${(props) => props.disabled ? "not-allowed" : "pointer"};
1825
1825
  background-color: ${(props) => props.disabled ? colors.grey_200 : colors.white};
1826
- height: ${(props) => props.height || "45px"};
1826
+ height: ${(props) => props.height || "36px"};
1827
1827
  display: flex;
1828
1828
  padding: 0 10px;
1829
1829
  align-items: center;
@@ -2003,7 +2003,7 @@ var Select = ({
2003
2003
  document.removeEventListener("mousedown", handleClickOutside);
2004
2004
  };
2005
2005
  }, [isOpen]);
2006
- return /* @__PURE__ */ jsxs8(StyledContainer, { width, noFlex, children: [
2006
+ return /* @__PURE__ */ jsxs8(StyledContainer, { width, noFlex, label, children: [
2007
2007
  /* @__PURE__ */ jsxs8(Text, { size: "xs", children: [
2008
2008
  label,
2009
2009
  " ",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "design-zystem",
3
- "version": "1.0.245",
3
+ "version": "1.0.246",
4
4
  "description": "A React design system of importable components",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",