thailife-react 0.0.14 → 0.0.15
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/Checkbox/Checkbox.d.ts.map +1 -1
- package/dist/components/Input/Input.d.ts.map +1 -1
- package/dist/components/InputFile/InputFile.d.ts.map +1 -1
- package/dist/components/Radio/Radio.d.ts.map +1 -1
- package/dist/components/Select/Select.d.ts.map +1 -1
- package/dist/components/Textarea/Textarea.d.ts.map +1 -1
- package/dist/index.esm.js +329 -298
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +330 -299
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
package/dist/index.esm.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import React__default from 'react';
|
|
3
3
|
export { default as React, default } from 'react';
|
|
4
|
-
import styled
|
|
4
|
+
import styled from '@emotion/styled';
|
|
5
|
+
import { ThemeProvider as ThemeProvider$1 } from '@emotion/react';
|
|
5
6
|
|
|
6
7
|
function _defineProperty(e, r, t) {
|
|
7
8
|
return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, {
|
|
@@ -1521,7 +1522,7 @@ const theme = {
|
|
|
1521
1522
|
};
|
|
1522
1523
|
|
|
1523
1524
|
const _excluded$6 = ["className", "color", "variant", "size", "fullWidth", "loading", "disabled", "children"];
|
|
1524
|
-
var _templateObject$6
|
|
1525
|
+
var _templateObject$6;
|
|
1525
1526
|
const StyledButton = styled.button(_templateObject$6 || (_templateObject$6 = _taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n justify-content: center;\n border: none;\n border-radius: ", ";\n font-family: ", ";\n font-weight: 500;\n cursor: pointer;\n transition: all ", ";\n outline: none;\n\n &:focus-visible {\n outline: 2px solid ", ";\n outline-offset: 2px;\n }\n\n &:disabled {\n opacity: 0.5;\n cursor: not-allowed;\n }\n\n ", "\n\n ", "\n\n ", "\n"])), _ref => {
|
|
1526
1527
|
var _theme$borderRadius;
|
|
1527
1528
|
let {
|
|
@@ -1554,15 +1555,15 @@ const StyledButton = styled.button(_templateObject$6 || (_templateObject$6 = _ta
|
|
|
1554
1555
|
} = _ref5;
|
|
1555
1556
|
const currentTheme = theme$1 || theme;
|
|
1556
1557
|
if (variant === "contained") {
|
|
1557
|
-
return
|
|
1558
|
+
return "\n background-color: ".concat(currentTheme.colors[color || "primary"], ";\n color: ").concat(currentTheme.colors.white, ";\n &:hover:not(:disabled) {\n background-color: ").concat(currentTheme.colors[color || "primary"], "cc;\n }\n ");
|
|
1558
1559
|
}
|
|
1559
1560
|
if (variant === "outlined") {
|
|
1560
|
-
return
|
|
1561
|
+
return "\n background-color: transparent;\n border: 1px solid ".concat(currentTheme.colors[color || "primary"], ";\n color: ").concat(currentTheme.colors[color || "primary"], ";\n &:hover:not(:disabled) {\n background-color: ").concat(currentTheme.colors[color || "primary"], "1a;\n }\n ");
|
|
1561
1562
|
}
|
|
1562
1563
|
if (variant === "link") {
|
|
1563
|
-
return
|
|
1564
|
+
return "\n background-color: transparent;\n color: ".concat(currentTheme.colors[color || "primary"], ";\n text-decoration: underline;\n &:hover:not(:disabled) {\n text-decoration: none;\n }\n ");
|
|
1564
1565
|
}
|
|
1565
|
-
return
|
|
1566
|
+
return "";
|
|
1566
1567
|
}, _ref6 => {
|
|
1567
1568
|
let {
|
|
1568
1569
|
size,
|
|
@@ -1570,20 +1571,20 @@ const StyledButton = styled.button(_templateObject$6 || (_templateObject$6 = _ta
|
|
|
1570
1571
|
} = _ref6;
|
|
1571
1572
|
const currentTheme = theme$1 || theme;
|
|
1572
1573
|
if (size === "sm") {
|
|
1573
|
-
return
|
|
1574
|
+
return "\n padding: ".concat(currentTheme.spacing[3], " ").concat(currentTheme.spacing[3], ";\n font-size: ").concat(currentTheme.fontSize.sm, ";\n ");
|
|
1574
1575
|
}
|
|
1575
1576
|
if (size === "md") {
|
|
1576
|
-
return
|
|
1577
|
+
return "\n padding: ".concat(currentTheme.spacing[2], " ").concat(currentTheme.spacing[4], ";\n font-size: ").concat(currentTheme.fontSize.sm, ";\n ");
|
|
1577
1578
|
}
|
|
1578
1579
|
if (size === "lg") {
|
|
1579
|
-
return
|
|
1580
|
+
return "\n padding: ".concat(currentTheme.spacing[3], " ").concat(currentTheme.spacing[6], ";\n font-size: ").concat(currentTheme.fontSize.base, ";\n ");
|
|
1580
1581
|
}
|
|
1581
|
-
return
|
|
1582
|
+
return "";
|
|
1582
1583
|
}, _ref7 => {
|
|
1583
1584
|
let {
|
|
1584
1585
|
fullWidth
|
|
1585
1586
|
} = _ref7;
|
|
1586
|
-
return fullWidth &&
|
|
1587
|
+
return fullWidth && "\n width: 100%;\n ";
|
|
1587
1588
|
});
|
|
1588
1589
|
const Button = /*#__PURE__*/React__default.forwardRef((_ref8, ref) => {
|
|
1589
1590
|
let {
|
|
@@ -1613,14 +1614,14 @@ const Button = /*#__PURE__*/React__default.forwardRef((_ref8, ref) => {
|
|
|
1613
1614
|
Button.displayName = "Button";
|
|
1614
1615
|
|
|
1615
1616
|
const _excluded$5 = ["className", "type", "label", "error", "helperText", "size", "fullWidth", "id"];
|
|
1616
|
-
var _templateObject$5, _templateObject2$5, _templateObject3$5, _templateObject4$5
|
|
1617
|
+
var _templateObject$5, _templateObject2$5, _templateObject3$5, _templateObject4$5;
|
|
1617
1618
|
const InputContainer = styled.div(_templateObject$5 || (_templateObject$5 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n ", "\n"])), _ref => {
|
|
1618
1619
|
let {
|
|
1619
1620
|
fullWidth
|
|
1620
1621
|
} = _ref;
|
|
1621
|
-
return fullWidth &&
|
|
1622
|
+
return fullWidth && "\n width: 100%;\n ";
|
|
1622
1623
|
});
|
|
1623
|
-
const InputLabel = styled.label(
|
|
1624
|
+
const InputLabel = styled.label(_templateObject2$5 || (_templateObject2$5 = _taggedTemplateLiteral(["\n margin-bottom: ", ";\n font-size: ", ";\n font-weight: 500;\n color: ", ";\n"])), _ref2 => {
|
|
1624
1625
|
var _theme$spacing;
|
|
1625
1626
|
let {
|
|
1626
1627
|
theme: theme$1
|
|
@@ -1639,7 +1640,7 @@ const InputLabel = styled.label(_templateObject3$5 || (_templateObject3$5 = _tag
|
|
|
1639
1640
|
} = _ref4;
|
|
1640
1641
|
return (theme$1 === null || theme$1 === void 0 || (_theme$colors = theme$1.colors) === null || _theme$colors === void 0 || (_theme$colors = _theme$colors.gray) === null || _theme$colors === void 0 ? void 0 : _theme$colors[700]) || theme.colors.gray[700];
|
|
1641
1642
|
});
|
|
1642
|
-
const StyledInput = styled.input(
|
|
1643
|
+
const StyledInput = styled.input(_templateObject3$5 || (_templateObject3$5 = _taggedTemplateLiteral(["\n border: 1px solid ", ";\n border-radius: ", ";\n transition: border-color ", ";\n outline: none;\n font-family: ", ";\n padding: ", " ", ";\n font-size: ", ";\n\n &:focus {\n border-color: ", ";\n }\n\n &:disabled {\n opacity: 0.5;\n cursor: not-allowed;\n background-color: ", ";\n }\n\n ", "\n"])), _ref5 => {
|
|
1643
1644
|
var _theme$colors2, _theme$colors3;
|
|
1644
1645
|
let {
|
|
1645
1646
|
theme: theme$1,
|
|
@@ -1665,61 +1666,63 @@ const StyledInput = styled.input(_templateObject4$5 || (_templateObject4$5 = _ta
|
|
|
1665
1666
|
} = _ref8;
|
|
1666
1667
|
return (theme$1 === null || theme$1 === void 0 || (_theme$fontFamily = theme$1.fontFamily) === null || _theme$fontFamily === void 0 || (_theme$fontFamily = _theme$fontFamily.sans) === null || _theme$fontFamily === void 0 ? void 0 : _theme$fontFamily.join(", ")) || theme.fontFamily.sans.join(", ");
|
|
1667
1668
|
}, _ref9 => {
|
|
1668
|
-
var _theme$
|
|
1669
|
+
var _theme$spacing2;
|
|
1669
1670
|
let {
|
|
1670
|
-
theme: theme$1
|
|
1671
|
-
hasError
|
|
1671
|
+
theme: theme$1
|
|
1672
1672
|
} = _ref9;
|
|
1673
|
-
return
|
|
1673
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$spacing2 = theme$1.spacing) === null || _theme$spacing2 === void 0 ? void 0 : _theme$spacing2[2]) || theme.spacing[2];
|
|
1674
1674
|
}, _ref0 => {
|
|
1675
|
-
var _theme$
|
|
1675
|
+
var _theme$spacing3;
|
|
1676
1676
|
let {
|
|
1677
1677
|
theme: theme$1
|
|
1678
1678
|
} = _ref0;
|
|
1679
|
-
return (theme$1 === null || theme$1 === void 0 || (_theme$
|
|
1679
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$spacing3 = theme$1.spacing) === null || _theme$spacing3 === void 0 ? void 0 : _theme$spacing3[4]) || theme.spacing[4];
|
|
1680
1680
|
}, _ref1 => {
|
|
1681
|
+
var _theme$fontSize2;
|
|
1681
1682
|
let {
|
|
1682
|
-
size,
|
|
1683
1683
|
theme: theme$1
|
|
1684
1684
|
} = _ref1;
|
|
1685
|
-
|
|
1686
|
-
if (size === "sm") {
|
|
1687
|
-
return css(_templateObject5$5 || (_templateObject5$5 = _taggedTemplateLiteral(["\n padding: ", " ", ";\n font-size: ", ";\n "])), currentTheme.spacing[3], currentTheme.spacing[3], currentTheme.fontSize.sm);
|
|
1688
|
-
}
|
|
1689
|
-
if (size === "md") {
|
|
1690
|
-
return css(_templateObject6$5 || (_templateObject6$5 = _taggedTemplateLiteral(["\n padding: ", " ", ";\n font-size: ", ";\n "])), currentTheme.spacing[2], currentTheme.spacing[4], currentTheme.fontSize.sm);
|
|
1691
|
-
}
|
|
1692
|
-
if (size === "lg") {
|
|
1693
|
-
return css(_templateObject7$5 || (_templateObject7$5 = _taggedTemplateLiteral(["\n padding: ", " ", ";\n font-size: ", ";\n "])), currentTheme.spacing[3], currentTheme.spacing[4], currentTheme.fontSize.base);
|
|
1694
|
-
}
|
|
1695
|
-
return css(_templateObject8$5 || (_templateObject8$5 = _taggedTemplateLiteral([""])));
|
|
1685
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$fontSize2 = theme$1.fontSize) === null || _theme$fontSize2 === void 0 ? void 0 : _theme$fontSize2.sm) || theme.fontSize.sm;
|
|
1696
1686
|
}, _ref10 => {
|
|
1687
|
+
var _theme$colors4, _theme$colors5;
|
|
1697
1688
|
let {
|
|
1698
|
-
|
|
1689
|
+
theme: theme$1,
|
|
1690
|
+
hasError
|
|
1699
1691
|
} = _ref10;
|
|
1700
|
-
return
|
|
1701
|
-
}
|
|
1702
|
-
|
|
1703
|
-
var _theme$spacing2;
|
|
1692
|
+
return hasError ? (theme$1 === null || theme$1 === void 0 || (_theme$colors4 = theme$1.colors) === null || _theme$colors4 === void 0 ? void 0 : _theme$colors4.error) || theme.colors.error : (theme$1 === null || theme$1 === void 0 || (_theme$colors5 = theme$1.colors) === null || _theme$colors5 === void 0 ? void 0 : _theme$colors5.primary) || theme.colors.primary;
|
|
1693
|
+
}, _ref11 => {
|
|
1694
|
+
var _theme$colors6;
|
|
1704
1695
|
let {
|
|
1705
1696
|
theme: theme$1
|
|
1706
1697
|
} = _ref11;
|
|
1707
|
-
return (theme$1 === null || theme$1 === void 0 || (_theme$
|
|
1698
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$colors6 = theme$1.colors) === null || _theme$colors6 === void 0 || (_theme$colors6 = _theme$colors6.gray) === null || _theme$colors6 === void 0 ? void 0 : _theme$colors6[50]) || theme.colors.gray[50];
|
|
1708
1699
|
}, _ref12 => {
|
|
1709
|
-
var _theme$fontSize2;
|
|
1710
1700
|
let {
|
|
1711
|
-
|
|
1701
|
+
fullWidth
|
|
1712
1702
|
} = _ref12;
|
|
1713
|
-
return
|
|
1714
|
-
}
|
|
1703
|
+
return fullWidth && "\n width: 100%;\n ";
|
|
1704
|
+
});
|
|
1705
|
+
const HelperText$5 = styled.p(_templateObject4$5 || (_templateObject4$5 = _taggedTemplateLiteral(["\n margin-top: ", ";\n font-size: ", ";\n color: ", ";\n"])), _ref13 => {
|
|
1706
|
+
var _theme$spacing4;
|
|
1707
|
+
let {
|
|
1708
|
+
theme: theme$1
|
|
1709
|
+
} = _ref13;
|
|
1710
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$spacing4 = theme$1.spacing) === null || _theme$spacing4 === void 0 ? void 0 : _theme$spacing4[1]) || theme.spacing[1];
|
|
1711
|
+
}, _ref14 => {
|
|
1712
|
+
var _theme$fontSize3;
|
|
1713
|
+
let {
|
|
1714
|
+
theme: theme$1
|
|
1715
|
+
} = _ref14;
|
|
1716
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$fontSize3 = theme$1.fontSize) === null || _theme$fontSize3 === void 0 ? void 0 : _theme$fontSize3.xs) || theme.fontSize.xs;
|
|
1717
|
+
}, _ref15 => {
|
|
1715
1718
|
var _theme$colors7, _theme$colors8;
|
|
1716
1719
|
let {
|
|
1717
1720
|
theme: theme$1,
|
|
1718
1721
|
hasError
|
|
1719
|
-
} =
|
|
1722
|
+
} = _ref15;
|
|
1720
1723
|
return hasError ? (theme$1 === null || theme$1 === void 0 || (_theme$colors7 = theme$1.colors) === null || _theme$colors7 === void 0 ? void 0 : _theme$colors7.error) || theme.colors.error : (theme$1 === null || theme$1 === void 0 || (_theme$colors8 = theme$1.colors) === null || _theme$colors8 === void 0 || (_theme$colors8 = _theme$colors8.gray) === null || _theme$colors8 === void 0 ? void 0 : _theme$colors8[500]) || theme.colors.gray[500];
|
|
1721
1724
|
});
|
|
1722
|
-
const Input = /*#__PURE__*/React__default.forwardRef((
|
|
1725
|
+
const Input = /*#__PURE__*/React__default.forwardRef((_ref16, ref) => {
|
|
1723
1726
|
let {
|
|
1724
1727
|
className,
|
|
1725
1728
|
type = "text",
|
|
@@ -1729,8 +1732,8 @@ const Input = /*#__PURE__*/React__default.forwardRef((_ref14, ref) => {
|
|
|
1729
1732
|
size = "md",
|
|
1730
1733
|
fullWidth = false,
|
|
1731
1734
|
id
|
|
1732
|
-
} =
|
|
1733
|
-
props = _objectWithoutProperties(
|
|
1735
|
+
} = _ref16,
|
|
1736
|
+
props = _objectWithoutProperties(_ref16, _excluded$5);
|
|
1734
1737
|
const inputId = id || "input-".concat(Math.random().toString(36).substr(2, 9));
|
|
1735
1738
|
return jsxRuntimeExports.jsxs(InputContainer, {
|
|
1736
1739
|
fullWidth: fullWidth,
|
|
@@ -1739,7 +1742,6 @@ const Input = /*#__PURE__*/React__default.forwardRef((_ref14, ref) => {
|
|
|
1739
1742
|
children: label
|
|
1740
1743
|
}), jsxRuntimeExports.jsx(StyledInput, _objectSpread2({
|
|
1741
1744
|
type: type,
|
|
1742
|
-
size: size,
|
|
1743
1745
|
fullWidth: fullWidth,
|
|
1744
1746
|
hasError: !!error,
|
|
1745
1747
|
className: className,
|
|
@@ -1754,98 +1756,111 @@ const Input = /*#__PURE__*/React__default.forwardRef((_ref14, ref) => {
|
|
|
1754
1756
|
Input.displayName = "Input";
|
|
1755
1757
|
|
|
1756
1758
|
const _excluded$4 = ["className", "label", "error", "helperText", "size", "fullWidth", "rows", "id"];
|
|
1757
|
-
var _templateObject$4, _templateObject2$4, _templateObject3$4, _templateObject4$4
|
|
1759
|
+
var _templateObject$4, _templateObject2$4, _templateObject3$4, _templateObject4$4;
|
|
1758
1760
|
const TextareaContainer = styled.div(_templateObject$4 || (_templateObject$4 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n ", "\n"])), _ref => {
|
|
1759
1761
|
let {
|
|
1760
1762
|
fullWidth
|
|
1761
1763
|
} = _ref;
|
|
1762
|
-
return fullWidth &&
|
|
1764
|
+
return fullWidth && "\n width: 100%;\n ";
|
|
1763
1765
|
});
|
|
1764
|
-
const TextareaLabel = styled.label(
|
|
1766
|
+
const TextareaLabel = styled.label(_templateObject2$4 || (_templateObject2$4 = _taggedTemplateLiteral(["\n margin-bottom: ", ";\n font-size: ", ";\n font-weight: 500;\n color: ", ";\n"])), _ref2 => {
|
|
1767
|
+
var _theme$spacing;
|
|
1765
1768
|
let {
|
|
1766
|
-
theme
|
|
1769
|
+
theme: theme$1
|
|
1767
1770
|
} = _ref2;
|
|
1768
|
-
return theme.spacing[1];
|
|
1771
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$spacing = theme$1.spacing) === null || _theme$spacing === void 0 ? void 0 : _theme$spacing[1]) || theme.spacing[1];
|
|
1769
1772
|
}, _ref3 => {
|
|
1773
|
+
var _theme$fontSize;
|
|
1770
1774
|
let {
|
|
1771
|
-
theme
|
|
1775
|
+
theme: theme$1
|
|
1772
1776
|
} = _ref3;
|
|
1773
|
-
return theme.fontSize.sm;
|
|
1777
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$fontSize = theme$1.fontSize) === null || _theme$fontSize === void 0 ? void 0 : _theme$fontSize.sm) || theme.fontSize.sm;
|
|
1774
1778
|
}, _ref4 => {
|
|
1779
|
+
var _theme$colors;
|
|
1775
1780
|
let {
|
|
1776
|
-
theme
|
|
1781
|
+
theme: theme$1
|
|
1777
1782
|
} = _ref4;
|
|
1778
|
-
return theme.colors.gray[700];
|
|
1783
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$colors = theme$1.colors) === null || _theme$colors === void 0 || (_theme$colors = _theme$colors.gray) === null || _theme$colors === void 0 ? void 0 : _theme$colors[700]) || theme.colors.gray[700];
|
|
1779
1784
|
});
|
|
1780
|
-
const StyledTextarea = styled.textarea(
|
|
1785
|
+
const StyledTextarea = styled.textarea(_templateObject3$4 || (_templateObject3$4 = _taggedTemplateLiteral(["\n border: 1px solid ", ";\n border-radius: ", ";\n transition: border-color ", ";\n outline: none;\n resize: vertical;\n font-family: ", ";\n\n &:focus {\n border-color: ", ";\n }\n\n &:disabled {\n opacity: 0.5;\n cursor: not-allowed;\n background-color: ", ";\n }\n\n ", "\n\n ", "\n"])), _ref5 => {
|
|
1786
|
+
var _theme$colors2, _theme$colors3;
|
|
1781
1787
|
let {
|
|
1782
|
-
theme,
|
|
1788
|
+
theme: theme$1,
|
|
1783
1789
|
hasError
|
|
1784
1790
|
} = _ref5;
|
|
1785
|
-
return hasError ? theme.colors.error : theme.colors.gray[300];
|
|
1791
|
+
return hasError ? (theme$1 === null || theme$1 === void 0 || (_theme$colors2 = theme$1.colors) === null || _theme$colors2 === void 0 ? void 0 : _theme$colors2.error) || theme.colors.error : (theme$1 === null || theme$1 === void 0 || (_theme$colors3 = theme$1.colors) === null || _theme$colors3 === void 0 || (_theme$colors3 = _theme$colors3.gray) === null || _theme$colors3 === void 0 ? void 0 : _theme$colors3[300]) || theme.colors.gray[300];
|
|
1786
1792
|
}, _ref6 => {
|
|
1793
|
+
var _theme$borderRadius;
|
|
1787
1794
|
let {
|
|
1788
|
-
theme
|
|
1795
|
+
theme: theme$1
|
|
1789
1796
|
} = _ref6;
|
|
1790
|
-
return theme.borderRadius.md;
|
|
1797
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$borderRadius = theme$1.borderRadius) === null || _theme$borderRadius === void 0 ? void 0 : _theme$borderRadius.md) || theme.borderRadius.md;
|
|
1791
1798
|
}, _ref7 => {
|
|
1799
|
+
var _theme$transitions;
|
|
1792
1800
|
let {
|
|
1793
|
-
theme
|
|
1801
|
+
theme: theme$1
|
|
1794
1802
|
} = _ref7;
|
|
1795
|
-
return theme.transitions.base;
|
|
1803
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$transitions = theme$1.transitions) === null || _theme$transitions === void 0 ? void 0 : _theme$transitions.base) || theme.transitions.base;
|
|
1796
1804
|
}, _ref8 => {
|
|
1805
|
+
var _theme$fontFamily;
|
|
1797
1806
|
let {
|
|
1798
|
-
theme
|
|
1807
|
+
theme: theme$1
|
|
1799
1808
|
} = _ref8;
|
|
1800
|
-
return theme.fontFamily.sans.join(", ");
|
|
1809
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$fontFamily = theme$1.fontFamily) === null || _theme$fontFamily === void 0 || (_theme$fontFamily = _theme$fontFamily.sans) === null || _theme$fontFamily === void 0 ? void 0 : _theme$fontFamily.join(", ")) || theme.fontFamily.sans.join(", ");
|
|
1801
1810
|
}, _ref9 => {
|
|
1811
|
+
var _theme$colors4, _theme$colors5;
|
|
1802
1812
|
let {
|
|
1803
|
-
theme,
|
|
1813
|
+
theme: theme$1,
|
|
1804
1814
|
hasError
|
|
1805
1815
|
} = _ref9;
|
|
1806
|
-
return hasError ? theme.colors.error : theme.colors.primary;
|
|
1816
|
+
return hasError ? (theme$1 === null || theme$1 === void 0 || (_theme$colors4 = theme$1.colors) === null || _theme$colors4 === void 0 ? void 0 : _theme$colors4.error) || theme.colors.error : (theme$1 === null || theme$1 === void 0 || (_theme$colors5 = theme$1.colors) === null || _theme$colors5 === void 0 ? void 0 : _theme$colors5.primary) || theme.colors.primary;
|
|
1807
1817
|
}, _ref0 => {
|
|
1818
|
+
var _theme$colors6;
|
|
1808
1819
|
let {
|
|
1809
|
-
theme
|
|
1820
|
+
theme: theme$1
|
|
1810
1821
|
} = _ref0;
|
|
1811
|
-
return theme.colors.gray[50];
|
|
1822
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$colors6 = theme$1.colors) === null || _theme$colors6 === void 0 || (_theme$colors6 = _theme$colors6.gray) === null || _theme$colors6 === void 0 ? void 0 : _theme$colors6[50]) || theme.colors.gray[50];
|
|
1812
1823
|
}, _ref1 => {
|
|
1813
1824
|
let {
|
|
1814
1825
|
size,
|
|
1815
|
-
theme
|
|
1826
|
+
theme: theme$1
|
|
1816
1827
|
} = _ref1;
|
|
1828
|
+
const currentTheme = theme$1 || theme;
|
|
1817
1829
|
if (size === "sm") {
|
|
1818
|
-
return
|
|
1830
|
+
return "\n padding: ".concat(currentTheme.spacing[3], " ").concat(currentTheme.spacing[3], ";\n font-size: ").concat(currentTheme.fontSize.sm, ";\n ");
|
|
1819
1831
|
}
|
|
1820
1832
|
if (size === "md") {
|
|
1821
|
-
return
|
|
1833
|
+
return "\n padding: ".concat(currentTheme.spacing[2], " ").concat(currentTheme.spacing[4], ";\n font-size: ").concat(currentTheme.fontSize.sm, ";\n ");
|
|
1822
1834
|
}
|
|
1823
1835
|
if (size === "lg") {
|
|
1824
|
-
return
|
|
1836
|
+
return "\n padding: ".concat(currentTheme.spacing[3], " ").concat(currentTheme.spacing[4], ";\n font-size: ").concat(currentTheme.fontSize.base, ";\n ");
|
|
1825
1837
|
}
|
|
1826
|
-
return
|
|
1838
|
+
return "";
|
|
1827
1839
|
}, _ref10 => {
|
|
1828
1840
|
let {
|
|
1829
1841
|
fullWidth
|
|
1830
1842
|
} = _ref10;
|
|
1831
|
-
return fullWidth &&
|
|
1843
|
+
return fullWidth && "\n width: 100%;\n ";
|
|
1832
1844
|
});
|
|
1833
|
-
const HelperText$4 = styled.p(
|
|
1845
|
+
const HelperText$4 = styled.p(_templateObject4$4 || (_templateObject4$4 = _taggedTemplateLiteral(["\n margin-top: ", ";\n font-size: ", ";\n color: ", ";\n"])), _ref11 => {
|
|
1846
|
+
var _theme$spacing2;
|
|
1834
1847
|
let {
|
|
1835
|
-
theme
|
|
1848
|
+
theme: theme$1
|
|
1836
1849
|
} = _ref11;
|
|
1837
|
-
return theme.spacing[1];
|
|
1850
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$spacing2 = theme$1.spacing) === null || _theme$spacing2 === void 0 ? void 0 : _theme$spacing2[1]) || theme.spacing[1];
|
|
1838
1851
|
}, _ref12 => {
|
|
1852
|
+
var _theme$fontSize2;
|
|
1839
1853
|
let {
|
|
1840
|
-
theme
|
|
1854
|
+
theme: theme$1
|
|
1841
1855
|
} = _ref12;
|
|
1842
|
-
return theme.fontSize.xs;
|
|
1856
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$fontSize2 = theme$1.fontSize) === null || _theme$fontSize2 === void 0 ? void 0 : _theme$fontSize2.xs) || theme.fontSize.xs;
|
|
1843
1857
|
}, _ref13 => {
|
|
1858
|
+
var _theme$colors7, _theme$colors8;
|
|
1844
1859
|
let {
|
|
1845
|
-
theme,
|
|
1860
|
+
theme: theme$1,
|
|
1846
1861
|
hasError
|
|
1847
1862
|
} = _ref13;
|
|
1848
|
-
return hasError ? theme.colors.error : theme.colors.gray[500];
|
|
1863
|
+
return hasError ? (theme$1 === null || theme$1 === void 0 || (_theme$colors7 = theme$1.colors) === null || _theme$colors7 === void 0 ? void 0 : _theme$colors7.error) || theme.colors.error : (theme$1 === null || theme$1 === void 0 || (_theme$colors8 = theme$1.colors) === null || _theme$colors8 === void 0 || (_theme$colors8 = _theme$colors8.gray) === null || _theme$colors8 === void 0 ? void 0 : _theme$colors8[500]) || theme.colors.gray[500];
|
|
1849
1864
|
});
|
|
1850
1865
|
const Textarea = /*#__PURE__*/React__default.forwardRef((_ref14, ref) => {
|
|
1851
1866
|
let {
|
|
@@ -1882,113 +1897,128 @@ const Textarea = /*#__PURE__*/React__default.forwardRef((_ref14, ref) => {
|
|
|
1882
1897
|
Textarea.displayName = "Textarea";
|
|
1883
1898
|
|
|
1884
1899
|
const _excluded$3 = ["className", "label", "error", "helperText", "size", "fullWidth", "accept", "multiple", "buttonText", "id"];
|
|
1885
|
-
var _templateObject$3, _templateObject2$3, _templateObject3$3, _templateObject4$3, _templateObject5$3, _templateObject6$3, _templateObject7
|
|
1900
|
+
var _templateObject$3, _templateObject2$3, _templateObject3$3, _templateObject4$3, _templateObject5$3, _templateObject6$3, _templateObject7, _templateObject8;
|
|
1886
1901
|
const InputFileContainer = styled.div(_templateObject$3 || (_templateObject$3 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n ", "\n"])), _ref => {
|
|
1887
1902
|
let {
|
|
1888
1903
|
fullWidth
|
|
1889
1904
|
} = _ref;
|
|
1890
|
-
return fullWidth &&
|
|
1905
|
+
return fullWidth && "\n width: 100%;\n ";
|
|
1891
1906
|
});
|
|
1892
|
-
const InputFileLabel = styled.label(
|
|
1907
|
+
const InputFileLabel = styled.label(_templateObject2$3 || (_templateObject2$3 = _taggedTemplateLiteral(["\n margin-bottom: ", ";\n font-size: ", ";\n font-weight: 500;\n color: ", ";\n"])), _ref2 => {
|
|
1908
|
+
var _theme$spacing;
|
|
1893
1909
|
let {
|
|
1894
|
-
theme
|
|
1910
|
+
theme: theme$1
|
|
1895
1911
|
} = _ref2;
|
|
1896
|
-
return theme.spacing[1];
|
|
1912
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$spacing = theme$1.spacing) === null || _theme$spacing === void 0 ? void 0 : _theme$spacing[1]) || theme.spacing[1];
|
|
1897
1913
|
}, _ref3 => {
|
|
1914
|
+
var _theme$fontSize;
|
|
1898
1915
|
let {
|
|
1899
|
-
theme
|
|
1916
|
+
theme: theme$1
|
|
1900
1917
|
} = _ref3;
|
|
1901
|
-
return theme.fontSize.sm;
|
|
1918
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$fontSize = theme$1.fontSize) === null || _theme$fontSize === void 0 ? void 0 : _theme$fontSize.sm) || theme.fontSize.sm;
|
|
1902
1919
|
}, _ref4 => {
|
|
1920
|
+
var _theme$colors;
|
|
1903
1921
|
let {
|
|
1904
|
-
theme
|
|
1922
|
+
theme: theme$1
|
|
1905
1923
|
} = _ref4;
|
|
1906
|
-
return theme.colors.gray[700];
|
|
1924
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$colors = theme$1.colors) === null || _theme$colors === void 0 || (_theme$colors = _theme$colors.gray) === null || _theme$colors === void 0 ? void 0 : _theme$colors[700]) || theme.colors.gray[700];
|
|
1907
1925
|
});
|
|
1908
|
-
const InputFileWrapper = styled.div(
|
|
1909
|
-
const HiddenInput = styled.input(
|
|
1910
|
-
const FileUploadArea = styled.div(
|
|
1926
|
+
const InputFileWrapper = styled.div(_templateObject3$3 || (_templateObject3$3 = _taggedTemplateLiteral(["\n position: relative;\n"])));
|
|
1927
|
+
const HiddenInput = styled.input(_templateObject4$3 || (_templateObject4$3 = _taggedTemplateLiteral(["\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n opacity: 0;\n cursor: pointer;\n"])));
|
|
1928
|
+
const FileUploadArea = styled.div(_templateObject5$3 || (_templateObject5$3 = _taggedTemplateLiteral(["\n border: 2px dashed ", ";\n transition: all ", ";\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n\n &:hover {\n border-color: ", ";\n }\n\n &:focus-within {\n border-color: ", ";\n }\n\n ", "\n\n ", "\n"])), _ref5 => {
|
|
1929
|
+
var _theme$colors2, _theme$colors3;
|
|
1911
1930
|
let {
|
|
1912
|
-
theme,
|
|
1931
|
+
theme: theme$1,
|
|
1913
1932
|
hasError
|
|
1914
1933
|
} = _ref5;
|
|
1915
|
-
return hasError ? theme.colors.error : theme.colors.gray[300];
|
|
1934
|
+
return hasError ? (theme$1 === null || theme$1 === void 0 || (_theme$colors2 = theme$1.colors) === null || _theme$colors2 === void 0 ? void 0 : _theme$colors2.error) || theme.colors.error : (theme$1 === null || theme$1 === void 0 || (_theme$colors3 = theme$1.colors) === null || _theme$colors3 === void 0 || (_theme$colors3 = _theme$colors3.gray) === null || _theme$colors3 === void 0 ? void 0 : _theme$colors3[300]) || theme.colors.gray[300];
|
|
1916
1935
|
}, _ref6 => {
|
|
1936
|
+
var _theme$transitions;
|
|
1917
1937
|
let {
|
|
1918
|
-
theme
|
|
1938
|
+
theme: theme$1
|
|
1919
1939
|
} = _ref6;
|
|
1920
|
-
return theme.transitions.base;
|
|
1940
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$transitions = theme$1.transitions) === null || _theme$transitions === void 0 ? void 0 : _theme$transitions.base) || theme.transitions.base;
|
|
1921
1941
|
}, _ref7 => {
|
|
1942
|
+
var _theme$colors4, _theme$colors5;
|
|
1922
1943
|
let {
|
|
1923
|
-
theme,
|
|
1944
|
+
theme: theme$1,
|
|
1924
1945
|
hasError
|
|
1925
1946
|
} = _ref7;
|
|
1926
|
-
return hasError ? theme.colors.error : theme.colors.primary;
|
|
1947
|
+
return hasError ? (theme$1 === null || theme$1 === void 0 || (_theme$colors4 = theme$1.colors) === null || _theme$colors4 === void 0 ? void 0 : _theme$colors4.error) || theme.colors.error : (theme$1 === null || theme$1 === void 0 || (_theme$colors5 = theme$1.colors) === null || _theme$colors5 === void 0 ? void 0 : _theme$colors5.primary) || theme.colors.primary;
|
|
1927
1948
|
}, _ref8 => {
|
|
1949
|
+
var _theme$colors6, _theme$colors7;
|
|
1928
1950
|
let {
|
|
1929
|
-
theme,
|
|
1951
|
+
theme: theme$1,
|
|
1930
1952
|
hasError
|
|
1931
1953
|
} = _ref8;
|
|
1932
|
-
return hasError ? theme.colors.error : theme.colors.primary;
|
|
1954
|
+
return hasError ? (theme$1 === null || theme$1 === void 0 || (_theme$colors6 = theme$1.colors) === null || _theme$colors6 === void 0 ? void 0 : _theme$colors6.error) || theme.colors.error : (theme$1 === null || theme$1 === void 0 || (_theme$colors7 = theme$1.colors) === null || _theme$colors7 === void 0 ? void 0 : _theme$colors7.primary) || theme.colors.primary;
|
|
1933
1955
|
}, _ref9 => {
|
|
1934
1956
|
let {
|
|
1935
1957
|
size,
|
|
1936
|
-
theme
|
|
1958
|
+
theme: theme$1
|
|
1937
1959
|
} = _ref9;
|
|
1960
|
+
const currentTheme = theme$1 || theme;
|
|
1938
1961
|
if (size === "sm") {
|
|
1939
|
-
return
|
|
1962
|
+
return "\n padding: ".concat(currentTheme.spacing[3], " ").concat(currentTheme.spacing[3], ";\n font-size: ").concat(currentTheme.fontSize.sm, ";\n ");
|
|
1940
1963
|
}
|
|
1941
1964
|
if (size === "md") {
|
|
1942
|
-
return
|
|
1965
|
+
return "\n padding: ".concat(currentTheme.spacing[2], " ").concat(currentTheme.spacing[4], ";\n font-size: ").concat(currentTheme.fontSize.base, ";\n ");
|
|
1943
1966
|
}
|
|
1944
1967
|
if (size === "lg") {
|
|
1945
|
-
return
|
|
1968
|
+
return "\n padding: ".concat(currentTheme.spacing[3], " ").concat(currentTheme.spacing[4], ";\n font-size: ").concat(currentTheme.fontSize.base, ";\n ");
|
|
1946
1969
|
}
|
|
1947
|
-
return
|
|
1970
|
+
return "";
|
|
1948
1971
|
}, _ref0 => {
|
|
1949
1972
|
let {
|
|
1950
1973
|
fullWidth
|
|
1951
1974
|
} = _ref0;
|
|
1952
|
-
return fullWidth &&
|
|
1975
|
+
return fullWidth && "\n width: 100%;\n ";
|
|
1953
1976
|
});
|
|
1954
|
-
const ButtonText = styled.span(
|
|
1977
|
+
const ButtonText = styled.span(_templateObject6$3 || (_templateObject6$3 = _taggedTemplateLiteral(["\n color: ", ";\n"])), _ref1 => {
|
|
1978
|
+
var _theme$colors8;
|
|
1955
1979
|
let {
|
|
1956
|
-
theme
|
|
1980
|
+
theme: theme$1
|
|
1957
1981
|
} = _ref1;
|
|
1958
|
-
return theme.colors.gray[600];
|
|
1982
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$colors8 = theme$1.colors) === null || _theme$colors8 === void 0 || (_theme$colors8 = _theme$colors8.gray) === null || _theme$colors8 === void 0 ? void 0 : _theme$colors8[600]) || theme.colors.gray[600];
|
|
1959
1983
|
});
|
|
1960
|
-
const MultipleText = styled.span(
|
|
1984
|
+
const MultipleText = styled.span(_templateObject7 || (_templateObject7 = _taggedTemplateLiteral(["\n margin-left: ", ";\n font-size: ", ";\n color: ", ";\n"])), _ref10 => {
|
|
1985
|
+
var _theme$spacing2;
|
|
1961
1986
|
let {
|
|
1962
|
-
theme
|
|
1987
|
+
theme: theme$1
|
|
1963
1988
|
} = _ref10;
|
|
1964
|
-
return theme.spacing[1];
|
|
1989
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$spacing2 = theme$1.spacing) === null || _theme$spacing2 === void 0 ? void 0 : _theme$spacing2[1]) || theme.spacing[1];
|
|
1965
1990
|
}, _ref11 => {
|
|
1991
|
+
var _theme$fontSize2;
|
|
1966
1992
|
let {
|
|
1967
|
-
theme
|
|
1993
|
+
theme: theme$1
|
|
1968
1994
|
} = _ref11;
|
|
1969
|
-
return theme.fontSize.xs;
|
|
1995
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$fontSize2 = theme$1.fontSize) === null || _theme$fontSize2 === void 0 ? void 0 : _theme$fontSize2.xs) || theme.fontSize.xs;
|
|
1970
1996
|
}, _ref12 => {
|
|
1997
|
+
var _theme$colors9;
|
|
1971
1998
|
let {
|
|
1972
|
-
theme
|
|
1999
|
+
theme: theme$1
|
|
1973
2000
|
} = _ref12;
|
|
1974
|
-
return theme.colors.gray[500];
|
|
2001
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$colors9 = theme$1.colors) === null || _theme$colors9 === void 0 || (_theme$colors9 = _theme$colors9.gray) === null || _theme$colors9 === void 0 ? void 0 : _theme$colors9[500]) || theme.colors.gray[500];
|
|
1975
2002
|
});
|
|
1976
|
-
const HelperText$3 = styled.p(
|
|
2003
|
+
const HelperText$3 = styled.p(_templateObject8 || (_templateObject8 = _taggedTemplateLiteral(["\n margin-top: ", ";\n font-size: ", ";\n color: ", ";\n"])), _ref13 => {
|
|
2004
|
+
var _theme$spacing3;
|
|
1977
2005
|
let {
|
|
1978
|
-
theme
|
|
2006
|
+
theme: theme$1
|
|
1979
2007
|
} = _ref13;
|
|
1980
|
-
return theme.spacing[1];
|
|
2008
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$spacing3 = theme$1.spacing) === null || _theme$spacing3 === void 0 ? void 0 : _theme$spacing3[1]) || theme.spacing[1];
|
|
1981
2009
|
}, _ref14 => {
|
|
2010
|
+
var _theme$fontSize3;
|
|
1982
2011
|
let {
|
|
1983
|
-
theme
|
|
2012
|
+
theme: theme$1
|
|
1984
2013
|
} = _ref14;
|
|
1985
|
-
return theme.fontSize.xs;
|
|
2014
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$fontSize3 = theme$1.fontSize) === null || _theme$fontSize3 === void 0 ? void 0 : _theme$fontSize3.xs) || theme.fontSize.xs;
|
|
1986
2015
|
}, _ref15 => {
|
|
2016
|
+
var _theme$colors0, _theme$colors1;
|
|
1987
2017
|
let {
|
|
1988
|
-
theme,
|
|
2018
|
+
theme: theme$1,
|
|
1989
2019
|
hasError
|
|
1990
2020
|
} = _ref15;
|
|
1991
|
-
return hasError ? theme.colors.error : theme.colors.gray[500];
|
|
2021
|
+
return hasError ? (theme$1 === null || theme$1 === void 0 || (_theme$colors0 = theme$1.colors) === null || _theme$colors0 === void 0 ? void 0 : _theme$colors0.error) || theme.colors.error : (theme$1 === null || theme$1 === void 0 || (_theme$colors1 = theme$1.colors) === null || _theme$colors1 === void 0 || (_theme$colors1 = _theme$colors1.gray) === null || _theme$colors1 === void 0 ? void 0 : _theme$colors1[500]) || theme.colors.gray[500];
|
|
1992
2022
|
});
|
|
1993
2023
|
const InputFile = /*#__PURE__*/React__default.forwardRef((_ref16, ref) => {
|
|
1994
2024
|
let {
|
|
@@ -2037,100 +2067,92 @@ const InputFile = /*#__PURE__*/React__default.forwardRef((_ref16, ref) => {
|
|
|
2037
2067
|
InputFile.displayName = "InputFile";
|
|
2038
2068
|
|
|
2039
2069
|
const _excluded$2 = ["className", "label", "error", "helperText", "size", "fullWidth", "indeterminate", "id"];
|
|
2040
|
-
var _templateObject$2, _templateObject2$2, _templateObject3$2, _templateObject4$2, _templateObject5$2, _templateObject6$2
|
|
2070
|
+
var _templateObject$2, _templateObject2$2, _templateObject3$2, _templateObject4$2, _templateObject5$2, _templateObject6$2;
|
|
2041
2071
|
const CheckboxContainer = styled.div(_templateObject$2 || (_templateObject$2 = _taggedTemplateLiteral(["\n display: flex;\n align-items: flex-start;\n ", "\n"])), _ref => {
|
|
2042
2072
|
let {
|
|
2043
2073
|
fullWidth
|
|
2044
2074
|
} = _ref;
|
|
2045
|
-
return fullWidth &&
|
|
2075
|
+
return fullWidth && "\n width: 100%;\n ";
|
|
2046
2076
|
});
|
|
2047
|
-
const CheckboxWrapper = styled.div(
|
|
2077
|
+
const CheckboxWrapper = styled.div(_templateObject2$2 || (_templateObject2$2 = _taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n height: ", ";\n"])), _ref2 => {
|
|
2078
|
+
var _theme$spacing;
|
|
2048
2079
|
let {
|
|
2049
|
-
theme
|
|
2080
|
+
theme: theme$1
|
|
2050
2081
|
} = _ref2;
|
|
2051
|
-
return theme.spacing[5];
|
|
2082
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$spacing = theme$1.spacing) === null || _theme$spacing === void 0 ? void 0 : _theme$spacing[5]) || theme.spacing[5];
|
|
2052
2083
|
});
|
|
2053
|
-
const StyledCheckbox = styled.input(
|
|
2084
|
+
const StyledCheckbox = styled.input(_templateObject3$2 || (_templateObject3$2 = _taggedTemplateLiteral(["\n border-radius: ", ";\n border: 1px solid ", ";\n transition: all ", ";\n outline: none;\n\n &:focus {\n outline: none;\n box-shadow: 0 0 0 2px ", ";\n }\n\n &:disabled {\n opacity: 0.5;\n cursor: not-allowed;\n }\n\n ", "\n"])), _ref3 => {
|
|
2085
|
+
var _theme$borderRadius;
|
|
2054
2086
|
let {
|
|
2055
|
-
theme
|
|
2087
|
+
theme: theme$1
|
|
2056
2088
|
} = _ref3;
|
|
2057
|
-
return theme.borderRadius.md;
|
|
2089
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$borderRadius = theme$1.borderRadius) === null || _theme$borderRadius === void 0 ? void 0 : _theme$borderRadius.md) || theme.borderRadius.md;
|
|
2058
2090
|
}, _ref4 => {
|
|
2091
|
+
var _theme$colors, _theme$colors2;
|
|
2059
2092
|
let {
|
|
2060
|
-
theme,
|
|
2093
|
+
theme: theme$1,
|
|
2061
2094
|
hasError
|
|
2062
2095
|
} = _ref4;
|
|
2063
|
-
return hasError ? theme.colors.error : theme.colors.gray[300];
|
|
2096
|
+
return hasError ? (theme$1 === null || theme$1 === void 0 || (_theme$colors = theme$1.colors) === null || _theme$colors === void 0 ? void 0 : _theme$colors.error) || theme.colors.error : (theme$1 === null || theme$1 === void 0 || (_theme$colors2 = theme$1.colors) === null || _theme$colors2 === void 0 || (_theme$colors2 = _theme$colors2.gray) === null || _theme$colors2 === void 0 ? void 0 : _theme$colors2[300]) || theme.colors.gray[300];
|
|
2064
2097
|
}, _ref5 => {
|
|
2098
|
+
var _theme$transitions;
|
|
2065
2099
|
let {
|
|
2066
|
-
theme
|
|
2100
|
+
theme: theme$1
|
|
2067
2101
|
} = _ref5;
|
|
2068
|
-
return theme.transitions.base;
|
|
2102
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$transitions = theme$1.transitions) === null || _theme$transitions === void 0 ? void 0 : _theme$transitions.base) || theme.transitions.base;
|
|
2069
2103
|
}, _ref6 => {
|
|
2104
|
+
var _theme$colors3, _theme$colors4;
|
|
2070
2105
|
let {
|
|
2071
|
-
theme,
|
|
2106
|
+
theme: theme$1,
|
|
2072
2107
|
hasError
|
|
2073
2108
|
} = _ref6;
|
|
2074
|
-
return hasError ? theme.colors.error : theme.colors.primary;
|
|
2109
|
+
return hasError ? (theme$1 === null || theme$1 === void 0 || (_theme$colors3 = theme$1.colors) === null || _theme$colors3 === void 0 ? void 0 : _theme$colors3.error) || theme.colors.error : (theme$1 === null || theme$1 === void 0 || (_theme$colors4 = theme$1.colors) === null || _theme$colors4 === void 0 ? void 0 : _theme$colors4.primary) || theme.colors.primary;
|
|
2075
2110
|
}, _ref7 => {
|
|
2076
2111
|
let {
|
|
2077
|
-
|
|
2078
|
-
theme
|
|
2112
|
+
theme: theme$1
|
|
2079
2113
|
} = _ref7;
|
|
2080
|
-
|
|
2081
|
-
|
|
2082
|
-
}
|
|
2083
|
-
if (size === "md") {
|
|
2084
|
-
return css(_templateObject6$2 || (_templateObject6$2 = _taggedTemplateLiteral(["\n width: ", ";\n height: ", ";\n "])), theme.spacing[5], theme.spacing[5]);
|
|
2085
|
-
}
|
|
2086
|
-
if (size === "lg") {
|
|
2087
|
-
return css(_templateObject7$2 || (_templateObject7$2 = _taggedTemplateLiteral(["\n width: ", ";\n height: ", ";\n "])), theme.spacing[6], theme.spacing[6]);
|
|
2088
|
-
}
|
|
2089
|
-
return css(_templateObject8$2 || (_templateObject8$2 = _taggedTemplateLiteral([""])));
|
|
2114
|
+
const currentTheme = theme$1 || theme;
|
|
2115
|
+
return "\n width: ".concat(currentTheme.spacing[5], ";\n height: ").concat(currentTheme.spacing[5], ";\n ");
|
|
2090
2116
|
});
|
|
2091
|
-
const LabelContainer$1 = styled.div(
|
|
2117
|
+
const LabelContainer$1 = styled.div(_templateObject4$2 || (_templateObject4$2 = _taggedTemplateLiteral(["\n margin-left: ", ";\n"])), _ref8 => {
|
|
2118
|
+
var _theme$spacing2;
|
|
2092
2119
|
let {
|
|
2093
|
-
theme
|
|
2120
|
+
theme: theme$1
|
|
2094
2121
|
} = _ref8;
|
|
2095
|
-
return theme.spacing[3];
|
|
2122
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$spacing2 = theme$1.spacing) === null || _theme$spacing2 === void 0 ? void 0 : _theme$spacing2[3]) || theme.spacing[3];
|
|
2096
2123
|
});
|
|
2097
|
-
const CheckboxLabel = styled.label(
|
|
2124
|
+
const CheckboxLabel = styled.label(_templateObject5$2 || (_templateObject5$2 = _taggedTemplateLiteral(["\n font-weight: 500;\n color: ", ";\n cursor: pointer;\n font-size: ", ";\n"])), _ref9 => {
|
|
2125
|
+
var _theme$colors5;
|
|
2098
2126
|
let {
|
|
2099
|
-
theme
|
|
2127
|
+
theme: theme$1
|
|
2100
2128
|
} = _ref9;
|
|
2101
|
-
return theme.colors.gray[700];
|
|
2129
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$colors5 = theme$1.colors) === null || _theme$colors5 === void 0 || (_theme$colors5 = _theme$colors5.gray) === null || _theme$colors5 === void 0 ? void 0 : _theme$colors5[700]) || theme.colors.gray[700];
|
|
2102
2130
|
}, _ref0 => {
|
|
2131
|
+
var _theme$fontSize;
|
|
2103
2132
|
let {
|
|
2104
|
-
|
|
2105
|
-
theme
|
|
2133
|
+
theme: theme$1
|
|
2106
2134
|
} = _ref0;
|
|
2107
|
-
|
|
2108
|
-
return css(_templateObject1$2 || (_templateObject1$2 = _taggedTemplateLiteral(["\n font-size: ", ";\n "])), theme.fontSize.sm);
|
|
2109
|
-
}
|
|
2110
|
-
if (size === "md") {
|
|
2111
|
-
return css(_templateObject10$2 || (_templateObject10$2 = _taggedTemplateLiteral(["\n font-size: ", ";\n "])), theme.fontSize.sm);
|
|
2112
|
-
}
|
|
2113
|
-
if (size === "lg") {
|
|
2114
|
-
return css(_templateObject11$1 || (_templateObject11$1 = _taggedTemplateLiteral(["\n font-size: ", ";\n "])), theme.fontSize.base);
|
|
2115
|
-
}
|
|
2116
|
-
return css(_templateObject12$1 || (_templateObject12$1 = _taggedTemplateLiteral([""])));
|
|
2135
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$fontSize = theme$1.fontSize) === null || _theme$fontSize === void 0 ? void 0 : _theme$fontSize.sm) || theme.fontSize.sm;
|
|
2117
2136
|
});
|
|
2118
|
-
const HelperText$2 = styled.p(
|
|
2137
|
+
const HelperText$2 = styled.p(_templateObject6$2 || (_templateObject6$2 = _taggedTemplateLiteral(["\n margin-top: ", ";\n font-size: ", ";\n color: ", ";\n"])), _ref1 => {
|
|
2138
|
+
var _theme$spacing3;
|
|
2119
2139
|
let {
|
|
2120
|
-
theme
|
|
2140
|
+
theme: theme$1
|
|
2121
2141
|
} = _ref1;
|
|
2122
|
-
return theme.spacing[1];
|
|
2142
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$spacing3 = theme$1.spacing) === null || _theme$spacing3 === void 0 ? void 0 : _theme$spacing3[1]) || theme.spacing[1];
|
|
2123
2143
|
}, _ref10 => {
|
|
2144
|
+
var _theme$fontSize2;
|
|
2124
2145
|
let {
|
|
2125
|
-
theme
|
|
2146
|
+
theme: theme$1
|
|
2126
2147
|
} = _ref10;
|
|
2127
|
-
return theme.fontSize.xs;
|
|
2148
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$fontSize2 = theme$1.fontSize) === null || _theme$fontSize2 === void 0 ? void 0 : _theme$fontSize2.xs) || theme.fontSize.xs;
|
|
2128
2149
|
}, _ref11 => {
|
|
2150
|
+
var _theme$colors6, _theme$colors7;
|
|
2129
2151
|
let {
|
|
2130
|
-
theme,
|
|
2152
|
+
theme: theme$1,
|
|
2131
2153
|
hasError
|
|
2132
2154
|
} = _ref11;
|
|
2133
|
-
return hasError ? theme.colors.error : theme.colors.gray[500];
|
|
2155
|
+
return hasError ? (theme$1 === null || theme$1 === void 0 || (_theme$colors6 = theme$1.colors) === null || _theme$colors6 === void 0 ? void 0 : _theme$colors6.error) || theme.colors.error : (theme$1 === null || theme$1 === void 0 || (_theme$colors7 = theme$1.colors) === null || _theme$colors7 === void 0 || (_theme$colors7 = _theme$colors7.gray) === null || _theme$colors7 === void 0 ? void 0 : _theme$colors7[500]) || theme.colors.gray[500];
|
|
2134
2156
|
});
|
|
2135
2157
|
const Checkbox = /*#__PURE__*/React__default.forwardRef((_ref12, ref) => {
|
|
2136
2158
|
let {
|
|
@@ -2155,7 +2177,6 @@ const Checkbox = /*#__PURE__*/React__default.forwardRef((_ref12, ref) => {
|
|
|
2155
2177
|
children: [jsxRuntimeExports.jsx(CheckboxWrapper, {
|
|
2156
2178
|
children: jsxRuntimeExports.jsx(StyledCheckbox, _objectSpread2({
|
|
2157
2179
|
type: "checkbox",
|
|
2158
|
-
size: size,
|
|
2159
2180
|
hasError: !!error,
|
|
2160
2181
|
className: className,
|
|
2161
2182
|
ref: ref,
|
|
@@ -2164,7 +2185,6 @@ const Checkbox = /*#__PURE__*/React__default.forwardRef((_ref12, ref) => {
|
|
|
2164
2185
|
}), jsxRuntimeExports.jsxs(LabelContainer$1, {
|
|
2165
2186
|
children: [label && jsxRuntimeExports.jsx(CheckboxLabel, {
|
|
2166
2187
|
htmlFor: checkboxId,
|
|
2167
|
-
size: size,
|
|
2168
2188
|
children: label
|
|
2169
2189
|
}), (error || helperText) && jsxRuntimeExports.jsx(HelperText$2, {
|
|
2170
2190
|
hasError: !!error,
|
|
@@ -2176,97 +2196,94 @@ const Checkbox = /*#__PURE__*/React__default.forwardRef((_ref12, ref) => {
|
|
|
2176
2196
|
Checkbox.displayName = "Checkbox";
|
|
2177
2197
|
|
|
2178
2198
|
const _excluded$1 = ["className", "label", "error", "helperText", "size", "fullWidth", "id"];
|
|
2179
|
-
var _templateObject$1, _templateObject2$1, _templateObject3$1, _templateObject4$1, _templateObject5$1, _templateObject6$1
|
|
2199
|
+
var _templateObject$1, _templateObject2$1, _templateObject3$1, _templateObject4$1, _templateObject5$1, _templateObject6$1;
|
|
2180
2200
|
const RadioContainer = styled.div(_templateObject$1 || (_templateObject$1 = _taggedTemplateLiteral(["\n display: flex;\n align-items: flex-start;\n ", "\n"])), _ref => {
|
|
2181
2201
|
let {
|
|
2182
2202
|
fullWidth
|
|
2183
2203
|
} = _ref;
|
|
2184
|
-
return fullWidth &&
|
|
2204
|
+
return fullWidth && "\n width: 100%;\n ";
|
|
2185
2205
|
});
|
|
2186
|
-
const RadioWrapper = styled.div(
|
|
2206
|
+
const RadioWrapper = styled.div(_templateObject2$1 || (_templateObject2$1 = _taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n height: ", ";\n"])), _ref2 => {
|
|
2207
|
+
var _theme$spacing;
|
|
2187
2208
|
let {
|
|
2188
|
-
theme
|
|
2209
|
+
theme: theme$1
|
|
2189
2210
|
} = _ref2;
|
|
2190
|
-
return theme.spacing[5];
|
|
2211
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$spacing = theme$1.spacing) === null || _theme$spacing === void 0 ? void 0 : _theme$spacing[5]) || theme.spacing[5];
|
|
2191
2212
|
});
|
|
2192
|
-
const StyledRadio = styled.input(
|
|
2213
|
+
const StyledRadio = styled.input(_templateObject3$1 || (_templateObject3$1 = _taggedTemplateLiteral(["\n border: 2px solid ", ";\n transition: all ", ";\n outline: none;\n width: ", ";\n height: ", ";\n\n &:focus {\n outline: none;\n box-shadow: 0 0 0 2px ", ";\n }\n\n &:disabled {\n opacity: 0.5;\n cursor: not-allowed;\n }\n"])), _ref3 => {
|
|
2214
|
+
var _theme$colors, _theme$colors2;
|
|
2193
2215
|
let {
|
|
2194
|
-
theme,
|
|
2216
|
+
theme: theme$1,
|
|
2195
2217
|
hasError
|
|
2196
2218
|
} = _ref3;
|
|
2197
|
-
return hasError ? theme.colors.error : theme.colors.gray[300];
|
|
2219
|
+
return hasError ? (theme$1 === null || theme$1 === void 0 || (_theme$colors = theme$1.colors) === null || _theme$colors === void 0 ? void 0 : _theme$colors.error) || theme.colors.error : (theme$1 === null || theme$1 === void 0 || (_theme$colors2 = theme$1.colors) === null || _theme$colors2 === void 0 || (_theme$colors2 = _theme$colors2.gray) === null || _theme$colors2 === void 0 ? void 0 : _theme$colors2[300]) || theme.colors.gray[300];
|
|
2198
2220
|
}, _ref4 => {
|
|
2221
|
+
var _theme$transitions;
|
|
2199
2222
|
let {
|
|
2200
|
-
theme
|
|
2223
|
+
theme: theme$1
|
|
2201
2224
|
} = _ref4;
|
|
2202
|
-
return theme.transitions.base;
|
|
2225
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$transitions = theme$1.transitions) === null || _theme$transitions === void 0 ? void 0 : _theme$transitions.base) || theme.transitions.base;
|
|
2203
2226
|
}, _ref5 => {
|
|
2227
|
+
var _theme$spacing2;
|
|
2204
2228
|
let {
|
|
2205
|
-
theme
|
|
2206
|
-
hasError
|
|
2229
|
+
theme: theme$1
|
|
2207
2230
|
} = _ref5;
|
|
2208
|
-
return
|
|
2231
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$spacing2 = theme$1.spacing) === null || _theme$spacing2 === void 0 ? void 0 : _theme$spacing2[5]) || theme.spacing[5];
|
|
2209
2232
|
}, _ref6 => {
|
|
2233
|
+
var _theme$spacing3;
|
|
2210
2234
|
let {
|
|
2211
|
-
|
|
2212
|
-
theme
|
|
2235
|
+
theme: theme$1
|
|
2213
2236
|
} = _ref6;
|
|
2214
|
-
|
|
2215
|
-
|
|
2216
|
-
|
|
2217
|
-
if (size === "md") {
|
|
2218
|
-
return css(_templateObject6$1 || (_templateObject6$1 = _taggedTemplateLiteral(["\n width: ", ";\n height: ", ";\n "])), theme.spacing[5], theme.spacing[5]);
|
|
2219
|
-
}
|
|
2220
|
-
if (size === "lg") {
|
|
2221
|
-
return css(_templateObject7$1 || (_templateObject7$1 = _taggedTemplateLiteral(["\n width: ", ";\n height: ", ";\n "])), theme.spacing[6], theme.spacing[6]);
|
|
2222
|
-
}
|
|
2223
|
-
return css(_templateObject8$1 || (_templateObject8$1 = _taggedTemplateLiteral([""])));
|
|
2224
|
-
});
|
|
2225
|
-
const LabelContainer = styled.div(_templateObject9$1 || (_templateObject9$1 = _taggedTemplateLiteral(["\n margin-left: ", ";\n"])), _ref7 => {
|
|
2237
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$spacing3 = theme$1.spacing) === null || _theme$spacing3 === void 0 ? void 0 : _theme$spacing3[5]) || theme.spacing[5];
|
|
2238
|
+
}, _ref7 => {
|
|
2239
|
+
var _theme$colors3, _theme$colors4;
|
|
2226
2240
|
let {
|
|
2227
|
-
theme
|
|
2241
|
+
theme: theme$1,
|
|
2242
|
+
hasError
|
|
2228
2243
|
} = _ref7;
|
|
2229
|
-
return theme.
|
|
2244
|
+
return hasError ? (theme$1 === null || theme$1 === void 0 || (_theme$colors3 = theme$1.colors) === null || _theme$colors3 === void 0 ? void 0 : _theme$colors3.error) || theme.colors.error : (theme$1 === null || theme$1 === void 0 || (_theme$colors4 = theme$1.colors) === null || _theme$colors4 === void 0 ? void 0 : _theme$colors4.primary) || theme.colors.primary;
|
|
2230
2245
|
});
|
|
2231
|
-
const
|
|
2246
|
+
const LabelContainer = styled.div(_templateObject4$1 || (_templateObject4$1 = _taggedTemplateLiteral(["\n margin-left: ", ";\n"])), _ref8 => {
|
|
2247
|
+
var _theme$spacing4;
|
|
2232
2248
|
let {
|
|
2233
|
-
theme
|
|
2249
|
+
theme: theme$1
|
|
2234
2250
|
} = _ref8;
|
|
2235
|
-
return theme.
|
|
2236
|
-
}
|
|
2251
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$spacing4 = theme$1.spacing) === null || _theme$spacing4 === void 0 ? void 0 : _theme$spacing4[3]) || theme.spacing[3];
|
|
2252
|
+
});
|
|
2253
|
+
const RadioLabel = styled.label(_templateObject5$1 || (_templateObject5$1 = _taggedTemplateLiteral(["\n font-weight: 500;\n color: ", ";\n cursor: pointer;\n font-size: ", ";\n"])), _ref9 => {
|
|
2254
|
+
var _theme$colors5;
|
|
2237
2255
|
let {
|
|
2238
|
-
|
|
2239
|
-
theme
|
|
2256
|
+
theme: theme$1
|
|
2240
2257
|
} = _ref9;
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
|
|
2244
|
-
if (size === "md") {
|
|
2245
|
-
return css(_templateObject10$1 || (_templateObject10$1 = _taggedTemplateLiteral(["\n font-size: ", ";\n "])), theme.fontSize.sm);
|
|
2246
|
-
}
|
|
2247
|
-
if (size === "lg") {
|
|
2248
|
-
return css(_templateObject11 || (_templateObject11 = _taggedTemplateLiteral(["\n font-size: ", ";\n "])), theme.fontSize.base);
|
|
2249
|
-
}
|
|
2250
|
-
return css(_templateObject12 || (_templateObject12 = _taggedTemplateLiteral([""])));
|
|
2251
|
-
});
|
|
2252
|
-
const HelperText$1 = styled.p(_templateObject13 || (_templateObject13 = _taggedTemplateLiteral(["\n margin-top: ", ";\n font-size: ", ";\n color: ", ";\n"])), _ref0 => {
|
|
2258
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$colors5 = theme$1.colors) === null || _theme$colors5 === void 0 || (_theme$colors5 = _theme$colors5.gray) === null || _theme$colors5 === void 0 ? void 0 : _theme$colors5[700]) || theme.colors.gray[700];
|
|
2259
|
+
}, _ref0 => {
|
|
2260
|
+
var _theme$fontSize;
|
|
2253
2261
|
let {
|
|
2254
|
-
theme
|
|
2262
|
+
theme: theme$1
|
|
2255
2263
|
} = _ref0;
|
|
2256
|
-
return theme.
|
|
2257
|
-
}
|
|
2264
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$fontSize = theme$1.fontSize) === null || _theme$fontSize === void 0 ? void 0 : _theme$fontSize.sm) || theme.fontSize.sm;
|
|
2265
|
+
});
|
|
2266
|
+
const HelperText$1 = styled.p(_templateObject6$1 || (_templateObject6$1 = _taggedTemplateLiteral(["\n margin-top: ", ";\n font-size: ", ";\n color: ", ";\n"])), _ref1 => {
|
|
2267
|
+
var _theme$spacing5;
|
|
2258
2268
|
let {
|
|
2259
|
-
theme
|
|
2269
|
+
theme: theme$1
|
|
2260
2270
|
} = _ref1;
|
|
2261
|
-
return theme.
|
|
2271
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$spacing5 = theme$1.spacing) === null || _theme$spacing5 === void 0 ? void 0 : _theme$spacing5[1]) || theme.spacing[1];
|
|
2262
2272
|
}, _ref10 => {
|
|
2273
|
+
var _theme$fontSize2;
|
|
2263
2274
|
let {
|
|
2264
|
-
theme
|
|
2265
|
-
hasError
|
|
2275
|
+
theme: theme$1
|
|
2266
2276
|
} = _ref10;
|
|
2267
|
-
return
|
|
2277
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$fontSize2 = theme$1.fontSize) === null || _theme$fontSize2 === void 0 ? void 0 : _theme$fontSize2.xs) || theme.fontSize.xs;
|
|
2278
|
+
}, _ref11 => {
|
|
2279
|
+
var _theme$colors6, _theme$colors7;
|
|
2280
|
+
let {
|
|
2281
|
+
theme: theme$1,
|
|
2282
|
+
hasError
|
|
2283
|
+
} = _ref11;
|
|
2284
|
+
return hasError ? (theme$1 === null || theme$1 === void 0 || (_theme$colors6 = theme$1.colors) === null || _theme$colors6 === void 0 ? void 0 : _theme$colors6.error) || theme.colors.error : (theme$1 === null || theme$1 === void 0 || (_theme$colors7 = theme$1.colors) === null || _theme$colors7 === void 0 || (_theme$colors7 = _theme$colors7.gray) === null || _theme$colors7 === void 0 ? void 0 : _theme$colors7[500]) || theme.colors.gray[500];
|
|
2268
2285
|
});
|
|
2269
|
-
const Radio = /*#__PURE__*/React__default.forwardRef((
|
|
2286
|
+
const Radio = /*#__PURE__*/React__default.forwardRef((_ref12, ref) => {
|
|
2270
2287
|
let {
|
|
2271
2288
|
className,
|
|
2272
2289
|
label,
|
|
@@ -2275,15 +2292,14 @@ const Radio = /*#__PURE__*/React__default.forwardRef((_ref11, ref) => {
|
|
|
2275
2292
|
size = "md",
|
|
2276
2293
|
fullWidth = false,
|
|
2277
2294
|
id
|
|
2278
|
-
} =
|
|
2279
|
-
props = _objectWithoutProperties(
|
|
2295
|
+
} = _ref12,
|
|
2296
|
+
props = _objectWithoutProperties(_ref12, _excluded$1);
|
|
2280
2297
|
const radioId = id || "radio-".concat(Math.random().toString(36).substr(2, 9));
|
|
2281
2298
|
return jsxRuntimeExports.jsxs(RadioContainer, {
|
|
2282
2299
|
fullWidth: fullWidth,
|
|
2283
2300
|
children: [jsxRuntimeExports.jsx(RadioWrapper, {
|
|
2284
2301
|
children: jsxRuntimeExports.jsx(StyledRadio, _objectSpread2({
|
|
2285
2302
|
type: "radio",
|
|
2286
|
-
size: size,
|
|
2287
2303
|
hasError: !!error,
|
|
2288
2304
|
className: className,
|
|
2289
2305
|
ref: ref,
|
|
@@ -2292,7 +2308,6 @@ const Radio = /*#__PURE__*/React__default.forwardRef((_ref11, ref) => {
|
|
|
2292
2308
|
}), jsxRuntimeExports.jsxs(LabelContainer, {
|
|
2293
2309
|
children: [label && jsxRuntimeExports.jsx(RadioLabel, {
|
|
2294
2310
|
htmlFor: radioId,
|
|
2295
|
-
size: size,
|
|
2296
2311
|
children: label
|
|
2297
2312
|
}), (error || helperText) && jsxRuntimeExports.jsx(HelperText$1, {
|
|
2298
2313
|
hasError: !!error,
|
|
@@ -2304,112 +2319,129 @@ const Radio = /*#__PURE__*/React__default.forwardRef((_ref11, ref) => {
|
|
|
2304
2319
|
Radio.displayName = "Radio";
|
|
2305
2320
|
|
|
2306
2321
|
const _excluded = ["className", "label", "error", "helperText", "size", "fullWidth", "options", "placeholder", "id"];
|
|
2307
|
-
var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6
|
|
2322
|
+
var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6;
|
|
2308
2323
|
const SelectContainer = styled.div(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n ", "\n"])), _ref => {
|
|
2309
2324
|
let {
|
|
2310
2325
|
fullWidth
|
|
2311
2326
|
} = _ref;
|
|
2312
|
-
return fullWidth &&
|
|
2327
|
+
return fullWidth && "\n width: 100%;\n ";
|
|
2313
2328
|
});
|
|
2314
|
-
const SelectLabel = styled.label(
|
|
2329
|
+
const SelectLabel = styled.label(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n margin-bottom: ", ";\n font-size: ", ";\n font-weight: 500;\n color: ", ";\n"])), _ref2 => {
|
|
2330
|
+
var _theme$spacing;
|
|
2315
2331
|
let {
|
|
2316
|
-
theme
|
|
2332
|
+
theme: theme$1
|
|
2317
2333
|
} = _ref2;
|
|
2318
|
-
return theme.spacing[1];
|
|
2334
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$spacing = theme$1.spacing) === null || _theme$spacing === void 0 ? void 0 : _theme$spacing[1]) || theme.spacing[1];
|
|
2319
2335
|
}, _ref3 => {
|
|
2336
|
+
var _theme$fontSize;
|
|
2320
2337
|
let {
|
|
2321
|
-
theme
|
|
2338
|
+
theme: theme$1
|
|
2322
2339
|
} = _ref3;
|
|
2323
|
-
return theme.fontSize.sm;
|
|
2340
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$fontSize = theme$1.fontSize) === null || _theme$fontSize === void 0 ? void 0 : _theme$fontSize.sm) || theme.fontSize.sm;
|
|
2324
2341
|
}, _ref4 => {
|
|
2342
|
+
var _theme$colors;
|
|
2325
2343
|
let {
|
|
2326
|
-
theme
|
|
2344
|
+
theme: theme$1
|
|
2327
2345
|
} = _ref4;
|
|
2328
|
-
return theme.colors.gray[700];
|
|
2346
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$colors = theme$1.colors) === null || _theme$colors === void 0 || (_theme$colors = _theme$colors.gray) === null || _theme$colors === void 0 ? void 0 : _theme$colors[700]) || theme.colors.gray[700];
|
|
2329
2347
|
});
|
|
2330
|
-
const SelectWrapper = styled.div(
|
|
2331
|
-
const StyledSelect = styled.select(
|
|
2348
|
+
const SelectWrapper = styled.div(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["\n position: relative;\n"])));
|
|
2349
|
+
const StyledSelect = styled.select(_templateObject4 || (_templateObject4 = _taggedTemplateLiteral(["\n border: 1px solid ", ";\n border-radius: ", ";\n transition: border-color ", ";\n outline: none;\n appearance: none;\n background-color: ", ";\n font-family: ", ";\n padding: ", " ", ";\n font-size: ", ";\n\n &:focus {\n border-color: ", ";\n }\n\n &:disabled {\n opacity: 0.5;\n cursor: not-allowed;\n background-color: ", ";\n }\n\n ", "\n"])), _ref5 => {
|
|
2350
|
+
var _theme$colors2, _theme$colors3;
|
|
2332
2351
|
let {
|
|
2333
|
-
theme,
|
|
2352
|
+
theme: theme$1,
|
|
2334
2353
|
hasError
|
|
2335
2354
|
} = _ref5;
|
|
2336
|
-
return hasError ? theme.colors.error : theme.colors.gray[300];
|
|
2355
|
+
return hasError ? (theme$1 === null || theme$1 === void 0 || (_theme$colors2 = theme$1.colors) === null || _theme$colors2 === void 0 ? void 0 : _theme$colors2.error) || theme.colors.error : (theme$1 === null || theme$1 === void 0 || (_theme$colors3 = theme$1.colors) === null || _theme$colors3 === void 0 || (_theme$colors3 = _theme$colors3.gray) === null || _theme$colors3 === void 0 ? void 0 : _theme$colors3[300]) || theme.colors.gray[300];
|
|
2337
2356
|
}, _ref6 => {
|
|
2357
|
+
var _theme$borderRadius;
|
|
2338
2358
|
let {
|
|
2339
|
-
theme
|
|
2359
|
+
theme: theme$1
|
|
2340
2360
|
} = _ref6;
|
|
2341
|
-
return theme.borderRadius.md;
|
|
2361
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$borderRadius = theme$1.borderRadius) === null || _theme$borderRadius === void 0 ? void 0 : _theme$borderRadius.md) || theme.borderRadius.md;
|
|
2342
2362
|
}, _ref7 => {
|
|
2363
|
+
var _theme$transitions;
|
|
2343
2364
|
let {
|
|
2344
|
-
theme
|
|
2365
|
+
theme: theme$1
|
|
2345
2366
|
} = _ref7;
|
|
2346
|
-
return theme.transitions.base;
|
|
2367
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$transitions = theme$1.transitions) === null || _theme$transitions === void 0 ? void 0 : _theme$transitions.base) || theme.transitions.base;
|
|
2347
2368
|
}, _ref8 => {
|
|
2369
|
+
var _theme$colors4;
|
|
2348
2370
|
let {
|
|
2349
|
-
theme
|
|
2371
|
+
theme: theme$1
|
|
2350
2372
|
} = _ref8;
|
|
2351
|
-
return theme.colors.white;
|
|
2373
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$colors4 = theme$1.colors) === null || _theme$colors4 === void 0 ? void 0 : _theme$colors4.white) || theme.colors.white;
|
|
2352
2374
|
}, _ref9 => {
|
|
2375
|
+
var _theme$fontFamily;
|
|
2353
2376
|
let {
|
|
2354
|
-
theme
|
|
2377
|
+
theme: theme$1
|
|
2355
2378
|
} = _ref9;
|
|
2356
|
-
return theme.fontFamily.sans.join(", ");
|
|
2379
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$fontFamily = theme$1.fontFamily) === null || _theme$fontFamily === void 0 || (_theme$fontFamily = _theme$fontFamily.sans) === null || _theme$fontFamily === void 0 ? void 0 : _theme$fontFamily.join(", ")) || theme.fontFamily.sans.join(", ");
|
|
2357
2380
|
}, _ref0 => {
|
|
2381
|
+
var _theme$spacing2;
|
|
2358
2382
|
let {
|
|
2359
|
-
theme
|
|
2360
|
-
hasError
|
|
2383
|
+
theme: theme$1
|
|
2361
2384
|
} = _ref0;
|
|
2362
|
-
return
|
|
2385
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$spacing2 = theme$1.spacing) === null || _theme$spacing2 === void 0 ? void 0 : _theme$spacing2[2]) || theme.spacing[2];
|
|
2363
2386
|
}, _ref1 => {
|
|
2387
|
+
var _theme$spacing3;
|
|
2364
2388
|
let {
|
|
2365
|
-
theme
|
|
2389
|
+
theme: theme$1
|
|
2366
2390
|
} = _ref1;
|
|
2367
|
-
return theme.
|
|
2391
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$spacing3 = theme$1.spacing) === null || _theme$spacing3 === void 0 ? void 0 : _theme$spacing3[4]) || theme.spacing[4];
|
|
2368
2392
|
}, _ref10 => {
|
|
2393
|
+
var _theme$fontSize2;
|
|
2369
2394
|
let {
|
|
2370
|
-
|
|
2371
|
-
theme
|
|
2395
|
+
theme: theme$1
|
|
2372
2396
|
} = _ref10;
|
|
2373
|
-
|
|
2374
|
-
return css(_templateObject6 || (_templateObject6 = _taggedTemplateLiteral(["\n padding: ", " ", ";\n font-size: ", ";\n "])), theme.spacing[3], theme.spacing[3], theme.fontSize.sm);
|
|
2375
|
-
}
|
|
2376
|
-
if (size === "md") {
|
|
2377
|
-
return css(_templateObject7 || (_templateObject7 = _taggedTemplateLiteral(["\n padding: ", " ", ";\n font-size: ", ";\n "])), theme.spacing[2], theme.spacing[4], theme.fontSize.sm);
|
|
2378
|
-
}
|
|
2379
|
-
if (size === "lg") {
|
|
2380
|
-
return css(_templateObject8 || (_templateObject8 = _taggedTemplateLiteral(["\n padding: ", " ", ";\n font-size: ", ";\n "])), theme.spacing[3], theme.spacing[4], theme.fontSize.base);
|
|
2381
|
-
}
|
|
2382
|
-
return css(_templateObject9 || (_templateObject9 = _taggedTemplateLiteral([""])));
|
|
2397
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$fontSize2 = theme$1.fontSize) === null || _theme$fontSize2 === void 0 ? void 0 : _theme$fontSize2.sm) || theme.fontSize.sm;
|
|
2383
2398
|
}, _ref11 => {
|
|
2399
|
+
var _theme$colors5, _theme$colors6;
|
|
2384
2400
|
let {
|
|
2385
|
-
|
|
2401
|
+
theme: theme$1,
|
|
2402
|
+
hasError
|
|
2386
2403
|
} = _ref11;
|
|
2387
|
-
return
|
|
2388
|
-
}
|
|
2389
|
-
|
|
2404
|
+
return hasError ? (theme$1 === null || theme$1 === void 0 || (_theme$colors5 = theme$1.colors) === null || _theme$colors5 === void 0 ? void 0 : _theme$colors5.error) || theme.colors.error : (theme$1 === null || theme$1 === void 0 || (_theme$colors6 = theme$1.colors) === null || _theme$colors6 === void 0 ? void 0 : _theme$colors6.primary) || theme.colors.primary;
|
|
2405
|
+
}, _ref12 => {
|
|
2406
|
+
var _theme$colors7;
|
|
2390
2407
|
let {
|
|
2391
|
-
theme
|
|
2408
|
+
theme: theme$1
|
|
2392
2409
|
} = _ref12;
|
|
2393
|
-
return theme.
|
|
2394
|
-
}
|
|
2395
|
-
const HelperText = styled.p(_templateObject10 || (_templateObject10 = _taggedTemplateLiteral(["\n margin-top: ", ";\n font-size: ", ";\n color: ", ";\n"])), _ref13 => {
|
|
2410
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$colors7 = theme$1.colors) === null || _theme$colors7 === void 0 || (_theme$colors7 = _theme$colors7.gray) === null || _theme$colors7 === void 0 ? void 0 : _theme$colors7[50]) || theme.colors.gray[50];
|
|
2411
|
+
}, _ref13 => {
|
|
2396
2412
|
let {
|
|
2397
|
-
|
|
2413
|
+
fullWidth
|
|
2398
2414
|
} = _ref13;
|
|
2399
|
-
return
|
|
2400
|
-
}
|
|
2415
|
+
return fullWidth && "\n width: 100%;\n ";
|
|
2416
|
+
});
|
|
2417
|
+
const SelectIcon = styled.div(_templateObject5 || (_templateObject5 = _taggedTemplateLiteral(["\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n display: flex;\n align-items: center;\n padding-right: ", ";\n pointer-events: none;\n"])), _ref14 => {
|
|
2418
|
+
var _theme$spacing4;
|
|
2401
2419
|
let {
|
|
2402
|
-
theme
|
|
2420
|
+
theme: theme$1
|
|
2403
2421
|
} = _ref14;
|
|
2404
|
-
return theme.
|
|
2405
|
-
}
|
|
2422
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$spacing4 = theme$1.spacing) === null || _theme$spacing4 === void 0 ? void 0 : _theme$spacing4[3]) || theme.spacing[3];
|
|
2423
|
+
});
|
|
2424
|
+
const HelperText = styled.p(_templateObject6 || (_templateObject6 = _taggedTemplateLiteral(["\n margin-top: ", ";\n font-size: ", ";\n color: ", ";\n"])), _ref15 => {
|
|
2425
|
+
var _theme$spacing5;
|
|
2406
2426
|
let {
|
|
2407
|
-
theme
|
|
2408
|
-
hasError
|
|
2427
|
+
theme: theme$1
|
|
2409
2428
|
} = _ref15;
|
|
2410
|
-
return
|
|
2429
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$spacing5 = theme$1.spacing) === null || _theme$spacing5 === void 0 ? void 0 : _theme$spacing5[1]) || theme.spacing[1];
|
|
2430
|
+
}, _ref16 => {
|
|
2431
|
+
var _theme$fontSize3;
|
|
2432
|
+
let {
|
|
2433
|
+
theme: theme$1
|
|
2434
|
+
} = _ref16;
|
|
2435
|
+
return (theme$1 === null || theme$1 === void 0 || (_theme$fontSize3 = theme$1.fontSize) === null || _theme$fontSize3 === void 0 ? void 0 : _theme$fontSize3.xs) || theme.fontSize.xs;
|
|
2436
|
+
}, _ref17 => {
|
|
2437
|
+
var _theme$colors8, _theme$colors9;
|
|
2438
|
+
let {
|
|
2439
|
+
theme: theme$1,
|
|
2440
|
+
hasError
|
|
2441
|
+
} = _ref17;
|
|
2442
|
+
return hasError ? (theme$1 === null || theme$1 === void 0 || (_theme$colors8 = theme$1.colors) === null || _theme$colors8 === void 0 ? void 0 : _theme$colors8.error) || theme.colors.error : (theme$1 === null || theme$1 === void 0 || (_theme$colors9 = theme$1.colors) === null || _theme$colors9 === void 0 || (_theme$colors9 = _theme$colors9.gray) === null || _theme$colors9 === void 0 ? void 0 : _theme$colors9[500]) || theme.colors.gray[500];
|
|
2411
2443
|
});
|
|
2412
|
-
const Select = /*#__PURE__*/React__default.forwardRef((
|
|
2444
|
+
const Select = /*#__PURE__*/React__default.forwardRef((_ref18, ref) => {
|
|
2413
2445
|
let {
|
|
2414
2446
|
className,
|
|
2415
2447
|
label,
|
|
@@ -2420,8 +2452,8 @@ const Select = /*#__PURE__*/React__default.forwardRef((_ref16, ref) => {
|
|
|
2420
2452
|
options,
|
|
2421
2453
|
placeholder,
|
|
2422
2454
|
id
|
|
2423
|
-
} =
|
|
2424
|
-
props = _objectWithoutProperties(
|
|
2455
|
+
} = _ref18,
|
|
2456
|
+
props = _objectWithoutProperties(_ref18, _excluded);
|
|
2425
2457
|
const selectId = id || "select-".concat(Math.random().toString(36).substr(2, 9));
|
|
2426
2458
|
return jsxRuntimeExports.jsxs(SelectContainer, {
|
|
2427
2459
|
fullWidth: fullWidth,
|
|
@@ -2430,7 +2462,6 @@ const Select = /*#__PURE__*/React__default.forwardRef((_ref16, ref) => {
|
|
|
2430
2462
|
children: label
|
|
2431
2463
|
}), jsxRuntimeExports.jsxs(SelectWrapper, {
|
|
2432
2464
|
children: [jsxRuntimeExports.jsxs(StyledSelect, _objectSpread2(_objectSpread2({
|
|
2433
|
-
size: size,
|
|
2434
2465
|
fullWidth: fullWidth,
|
|
2435
2466
|
hasError: !!error,
|
|
2436
2467
|
className: className,
|