@matbea-ui/matbea-ui 0.2.0-dev.619284 → 0.2.0-dev.709240

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.
@@ -167,7 +167,6 @@ const StyledButton = styled.button `
167
167
  const IconSlot = styled.span `
168
168
  display: inline-flex;
169
169
  align-items: center;
170
- width: max-content;
171
170
  justify-content: center;
172
171
  line-height: 0;
173
172
  ${({ $iconOnly }) => $iconOnly &&
@@ -576,10 +575,7 @@ const StyledTypography = styled.styled.span `
576
575
  const Typography = ({ as = "span", forwardedAs, variant = "body-m-semibold", color, align, uppercase = false, truncate = false, inline = false, children, ...rest }) => (jsxRuntime.jsx(StyledTypography, { as: as, forwardedAs: forwardedAs, "$variant": variant, "$color": color, "$align": align, "$uppercase": uppercase, "$truncate": truncate, "$inline": inline, ...rest, children: children }));
577
576
 
578
577
  const Icon = ({ size = 24, children, ...rest }) => {
579
- return (jsxRuntime.jsx("svg", { style: {
580
- width: size,
581
- height: size,
582
- }, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...rest, children: children }));
578
+ return (jsxRuntime.jsx("svg", { width: size, height: size, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...rest, children: children }));
583
579
  };
584
580
 
585
581
  const LogoAbankIcon = (props) => (jsxRuntime.jsxs(Icon, { ...props, children: [jsxRuntime.jsxs("g", { "clip-path": "url(#clip0_348_2416)", children: [jsxRuntime.jsx("circle", { cx: "12", cy: "12", r: "12", fill: "#F5F5F5" }), jsxRuntime.jsx("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M11.2589 7.98674C7.53128 8.31962 6.81257 6.30884 6.3125 3.00224C10.4015 2.97341 12.2754 3.18291 12.1754 5.99132C12.1172 6.06513 12.0622 6.1397 12.0098 6.2162C11.4594 5.19946 10.2518 4.30843 7.75728 3.83024C9.57266 4.44681 10.9399 5.69495 11.3993 7.37362C11.3396 7.57351 11.2938 7.77724 11.2589 7.98674ZM11.6388 9.04691C11.7904 7.71881 12.2529 6.60021 13.4042 5.75569C13.9803 5.33323 14.7726 5.87101 13.9469 6.35919C12.9495 6.94771 11.9955 8.32385 11.8459 9.03922C11.7783 9.05701 11.7076 9.05963 11.6388 9.04691Z", fill: "#007F2D" }), jsxRuntime.jsx("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M11.1018 9.30787C11.3545 9.34554 11.565 9.36169 11.7693 9.35131C11.9775 9.33977 12.1888 9.30057 12.4427 9.2283C13.9274 8.80469 15.8889 9.07146 17.153 9.96942C18.7727 11.1192 19.2064 13.078 18.9161 15.0273C18.5672 17.3706 16.2785 21.9634 13.3339 20.8202C12.9703 20.6795 12.6144 20.5638 12.2178 20.5773C11.803 20.5911 11.6383 20.7249 11.0328 20.8717C7.71099 21.6751 5.31607 17.1969 5.0389 14.5514C4.86058 12.8447 5.28079 11.1964 6.6023 10.1797C7.7513 9.2948 9.69848 8.96729 11.1018 9.30787Z", fill: "#65B32E" })] }), jsxRuntime.jsx("defs", { children: jsxRuntime.jsx("clipPath", { id: "clip0_348_2416", children: jsxRuntime.jsx("rect", { width: "24", height: "24", fill: "white" }) }) })] }));
@@ -932,7 +928,7 @@ const Informer = ({ label, description, type, icon, }) => {
932
928
  const Wrapper$1 = styled.styled.div `
933
929
  display: flex;
934
930
  flex-direction: column;
935
- gap: 12px;
931
+ gap: 4px;
936
932
  width: 100%;
937
933
  `;
938
934
  const Label$2 = styled.styled(Typography).attrs({
@@ -1012,7 +1008,7 @@ const ErrorText$1 = styled.styled.span `
1012
1008
  color: ${({ theme }) => theme.colors.accent.red};
1013
1009
  `;
1014
1010
 
1015
- const TextField = react.forwardRef(({ value, defaultValue, placeholder = "Text", label, error, disabled = false, icon, action, name, type = "text", onChange, onFocus, onBlur, className, labelVariant, }, ref) => {
1011
+ const TextField = react.forwardRef(({ value, defaultValue, placeholder = "Text", label, error, disabled = false, icon, action, name, type = "text", onChange, onFocus, onBlur, className, }, ref) => {
1016
1012
  const [focused, setFocused] = react.useState(false);
1017
1013
  const hasError = Boolean(error);
1018
1014
  const handleFocus = (evt) => {
@@ -1023,7 +1019,7 @@ const TextField = react.forwardRef(({ value, defaultValue, placeholder = "Text",
1023
1019
  setFocused(false);
1024
1020
  onBlur?.(evt);
1025
1021
  };
1026
- return (jsxRuntime.jsxs(Wrapper$1, { className: className, children: [label && jsxRuntime.jsx(Label$2, { variant: labelVariant, children: label }), jsxRuntime.jsxs(FieldContainer$1, { "$hasError": hasError, "$disabled": disabled, "data-state": hasError ? "error" : focused ? "active" : undefined, children: [icon && jsxRuntime.jsx(LeadingIcon$1, { children: icon }), jsxRuntime.jsx(Input, { ref: ref, type: type, name: name, value: value, defaultValue: defaultValue, placeholder: placeholder, disabled: disabled, onChange: onChange, onFocus: handleFocus, onBlur: handleBlur }), action && jsxRuntime.jsx(ActionSlot, { children: action })] }), error && jsxRuntime.jsx(ErrorText$1, { children: error })] }));
1022
+ return (jsxRuntime.jsxs(Wrapper$1, { className: className, children: [label && jsxRuntime.jsx(Label$2, { children: label }), jsxRuntime.jsxs(FieldContainer$1, { "$hasError": hasError, "$disabled": disabled, "data-state": hasError ? "error" : focused ? "active" : undefined, children: [icon && jsxRuntime.jsx(LeadingIcon$1, { children: icon }), jsxRuntime.jsx(Input, { ref: ref, type: type, name: name, value: value, defaultValue: defaultValue, placeholder: placeholder, disabled: disabled, onChange: onChange, onFocus: handleFocus, onBlur: handleBlur }), action && jsxRuntime.jsx(ActionSlot, { children: action })] }), error && jsxRuntime.jsx(ErrorText$1, { children: error })] }));
1027
1023
  });
1028
1024
  TextField.displayName = "TextField";
1029
1025
 
@@ -2165,10 +2161,7 @@ const ButtonSwitcher = ({ active, leftButtonLabel, rightButtonLabel, }) => {
2165
2161
  return (jsxRuntime.jsxs(ButtonSwitcherStyled, { children: [jsxRuntime.jsx(ButtonSwitcherItem, { "data-active": !active, children: leftButtonLabel }), jsxRuntime.jsx(ButtonSwitcherItem, { "data-active": active, children: rightButtonLabel })] }));
2166
2162
  };
2167
2163
 
2168
- const AvatarStyled = styled.styled(Typography).attrs({
2169
- forwardedAs: "div",
2170
- variant: "avatar-basic",
2171
- }) `
2164
+ const AvatarStyled = styled.styled.div `
2172
2165
  display: flex;
2173
2166
  align-items: center;
2174
2167
  justify-content: center;
@@ -2177,7 +2170,6 @@ const AvatarStyled = styled.styled(Typography).attrs({
2177
2170
  width: 40px;
2178
2171
  height: 40px;
2179
2172
  border-radius: 50%;
2180
- color: ${({ theme }) => theme.colors.primary.white};
2181
2173
  background-color: ${({ theme, $color }) => {
2182
2174
  if (!$color)
2183
2175
  return theme.colors.primary.hoverBlue;
@@ -2704,9 +2696,9 @@ const StyledProvider = ({ children }) => {
2704
2696
 
2705
2697
  const breakpoints = {
2706
2698
  mobile: { max: 576, scale: 0.7 },
2707
- tablet: { min: 576, max: 1024, scale: 0.85 },
2708
- desktop: { min: 1024, max: 1920, scale: 1 },
2709
- wide: { min: 1920, scale: 1.15 },
2699
+ tablet: { min: 577, max: 768, scale: 0.85 },
2700
+ desktop: { min: 769, max: 1024, scale: 1 },
2701
+ wide: { min: 1025, scale: 1.15 },
2710
2702
  };
2711
2703
  const GlobalStyles = styled.createGlobalStyle `
2712
2704
  :root {