@matbea-ui/matbea-ui 0.2.0-dev.437135 → 0.2.0-dev.438353
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/matbea-ui.cjs.js +22611 -280
- package/dist/matbea-ui.cjs.js.map +1 -1
- package/dist/matbea-ui.es.js +22545 -220
- package/dist/matbea-ui.es.js.map +1 -1
- package/dist/types/index.d.ts +138 -30
- package/package.json +4 -2
package/dist/types/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as react from 'react';
|
|
3
3
|
import react__default, { ReactNode, ButtonHTMLAttributes, ChangeEvent, FocusEventHandler, HTMLAttributes } from 'react';
|
|
4
|
-
import * as styled_components_dist_types from 'styled-components/dist/types';
|
|
5
4
|
import * as styled_components from 'styled-components';
|
|
5
|
+
import * as styled_components_dist_types from 'styled-components/dist/types';
|
|
6
6
|
import { Middleware } from 'stylis';
|
|
7
7
|
|
|
8
8
|
type ButtonVariant = "primary" | "secondary" | "tertiary";
|
|
@@ -18,8 +18,10 @@ type ButtonProps = {
|
|
|
18
18
|
icon?: ReactNode;
|
|
19
19
|
iconPosition?: IconPosition;
|
|
20
20
|
children?: ReactNode;
|
|
21
|
+
ref?: React.Ref<HTMLButtonElement>;
|
|
22
|
+
disabled?: boolean;
|
|
21
23
|
} & ButtonHTMLAttributes<HTMLButtonElement>;
|
|
22
|
-
declare const Button: ({ variant, size, form, fullWidth, icon, iconPosition, children, disabled, ...rest }: ButtonProps) => react_jsx_runtime.JSX.Element;
|
|
24
|
+
declare const Button: ({ variant, size, form, fullWidth, icon, iconPosition, children, disabled, ref, ...rest }: ButtonProps) => react_jsx_runtime.JSX.Element;
|
|
23
25
|
|
|
24
26
|
type CopyTooltipProps = {
|
|
25
27
|
label: string;
|
|
@@ -29,7 +31,7 @@ type CopyTooltipProps = {
|
|
|
29
31
|
};
|
|
30
32
|
declare const CopyTooltip: React.FC<CopyTooltipProps>;
|
|
31
33
|
|
|
32
|
-
type TypographyVariant = "h1" | "h2" | "h3" | "h4" | "h5" | "body-xl-semibold" | "body-xl" | "body-l-semibold" | "body-l" | "body-m-bold" | "body-m-semibold" | "body-m" | "body-s-semibold" | "body-s" | "button" | "form-input" | "avatar-basic" | "avatar-m" | "avatar-s";
|
|
34
|
+
type TypographyVariant = "h1" | "h2" | "h3" | "h4" | "h5" | "body-xl-semibold" | "body-xl" | "body-l-semibold" | "body-l" | "body-m-bold" | "body-m-semibold" | "body-m" | "body-s-semibold" | "body-xl-bold" | "body-s" | "button" | "form-input" | "avatar-basic" | "avatar-m" | "avatar-s";
|
|
33
35
|
|
|
34
36
|
type ElementTypeProp = React.ElementType;
|
|
35
37
|
type TypographyOwnProps = {
|
|
@@ -75,6 +77,60 @@ type TextFieldProps = {
|
|
|
75
77
|
className?: string;
|
|
76
78
|
};
|
|
77
79
|
declare const TextField: react.ForwardRefExoticComponent<TextFieldProps & react.RefAttributes<HTMLInputElement>>;
|
|
80
|
+
declare const Label: styled_components_dist_types.IStyledComponentBase<"web", styled_components_dist_types.Substitute<styled_components.FastOmit<styled_components_dist_types.Substitute<{
|
|
81
|
+
variant?: TypographyVariant;
|
|
82
|
+
color?: string;
|
|
83
|
+
align?: "left" | "center" | "right" | "justify";
|
|
84
|
+
uppercase?: boolean;
|
|
85
|
+
truncate?: boolean;
|
|
86
|
+
inline?: boolean;
|
|
87
|
+
} & Omit<Omit<any, "ref">, keyof {
|
|
88
|
+
variant?: TypographyVariant;
|
|
89
|
+
color?: string;
|
|
90
|
+
align?: "left" | "center" | "right" | "justify";
|
|
91
|
+
uppercase?: boolean;
|
|
92
|
+
truncate?: boolean;
|
|
93
|
+
inline?: boolean;
|
|
94
|
+
}> & {
|
|
95
|
+
as?: ("symbol" | "object" | "small" | "form" | "slot" | "style" | "title" | "label" | "button" | "image" | "search" | "text" | "time" | "h1" | "h2" | "h3" | "h4" | "h5" | "a" | "abbr" | "address" | "area" | "article" | "aside" | "audio" | "b" | "base" | "bdi" | "bdo" | "big" | "blockquote" | "body" | "br" | "canvas" | "caption" | "cite" | "code" | "col" | "colgroup" | "data" | "datalist" | "dd" | "del" | "details" | "dfn" | "dialog" | "div" | "dl" | "dt" | "em" | "embed" | "fieldset" | "figcaption" | "figure" | "footer" | "h6" | "header" | "hgroup" | "hr" | "html" | "i" | "iframe" | "img" | "input" | "ins" | "kbd" | "keygen" | "legend" | "li" | "link" | "main" | "map" | "mark" | "menu" | "menuitem" | "meta" | "meter" | "nav" | "noscript" | "ol" | "optgroup" | "option" | "output" | "p" | "param" | "picture" | "pre" | "progress" | "q" | "rp" | "rt" | "ruby" | "s" | "samp" | "script" | "section" | "select" | "source" | "span" | "strong" | "sub" | "summary" | "sup" | "table" | "tbody" | "td" | "textarea" | "tfoot" | "th" | "thead" | "tr" | "track" | "u" | "ul" | "use" | "var" | "video" | "wbr" | "circle" | "clipPath" | "defs" | "ellipse" | "foreignObject" | "g" | "line" | "linearGradient" | "marker" | "mask" | "path" | "pattern" | "polygon" | "polyline" | "radialGradient" | "rect" | "stop" | "svg" | "tspan" | react.ComponentType<any> | "center" | "head" | "noindex" | "template" | "webview" | "animate" | "animateMotion" | "animateTransform" | "desc" | "feBlend" | "feColorMatrix" | "feComponentTransfer" | "feComposite" | "feConvolveMatrix" | "feDiffuseLighting" | "feDisplacementMap" | "feDistantLight" | "feDropShadow" | "feFlood" | "feFuncA" | "feFuncB" | "feFuncG" | "feFuncR" | "feGaussianBlur" | "feImage" | "feMerge" | "feMergeNode" | "feMorphology" | "feOffset" | "fePointLight" | "feSpecularLighting" | "feSpotLight" | "feTile" | "feTurbulence" | "filter" | "metadata" | "mpath" | "set" | "switch" | "textPath" | "view") | undefined;
|
|
96
|
+
forwardedAs?: ("symbol" | "object" | "small" | "form" | "slot" | "style" | "title" | "label" | "button" | "image" | "search" | "text" | "time" | "h1" | "h2" | "h3" | "h4" | "h5" | "a" | "abbr" | "address" | "area" | "article" | "aside" | "audio" | "b" | "base" | "bdi" | "bdo" | "big" | "blockquote" | "body" | "br" | "canvas" | "caption" | "cite" | "code" | "col" | "colgroup" | "data" | "datalist" | "dd" | "del" | "details" | "dfn" | "dialog" | "div" | "dl" | "dt" | "em" | "embed" | "fieldset" | "figcaption" | "figure" | "footer" | "h6" | "header" | "hgroup" | "hr" | "html" | "i" | "iframe" | "img" | "input" | "ins" | "kbd" | "keygen" | "legend" | "li" | "link" | "main" | "map" | "mark" | "menu" | "menuitem" | "meta" | "meter" | "nav" | "noscript" | "ol" | "optgroup" | "option" | "output" | "p" | "param" | "picture" | "pre" | "progress" | "q" | "rp" | "rt" | "ruby" | "s" | "samp" | "script" | "section" | "select" | "source" | "span" | "strong" | "sub" | "summary" | "sup" | "table" | "tbody" | "td" | "textarea" | "tfoot" | "th" | "thead" | "tr" | "track" | "u" | "ul" | "use" | "var" | "video" | "wbr" | "circle" | "clipPath" | "defs" | "ellipse" | "foreignObject" | "g" | "line" | "linearGradient" | "marker" | "mask" | "path" | "pattern" | "polygon" | "polyline" | "radialGradient" | "rect" | "stop" | "svg" | "tspan" | react.ComponentType<any> | "center" | "head" | "noindex" | "template" | "webview" | "animate" | "animateMotion" | "animateTransform" | "desc" | "feBlend" | "feColorMatrix" | "feComponentTransfer" | "feComposite" | "feConvolveMatrix" | "feDiffuseLighting" | "feDisplacementMap" | "feDistantLight" | "feDropShadow" | "feFlood" | "feFuncA" | "feFuncB" | "feFuncG" | "feFuncR" | "feGaussianBlur" | "feImage" | "feMerge" | "feMergeNode" | "feMorphology" | "feOffset" | "fePointLight" | "feSpecularLighting" | "feSpotLight" | "feTile" | "feTurbulence" | "filter" | "metadata" | "mpath" | "set" | "switch" | "textPath" | "view") | undefined;
|
|
97
|
+
}, {
|
|
98
|
+
variant?: TypographyVariant;
|
|
99
|
+
color?: string;
|
|
100
|
+
align?: "left" | "center" | "right" | "justify";
|
|
101
|
+
uppercase?: boolean;
|
|
102
|
+
truncate?: boolean;
|
|
103
|
+
inline?: boolean;
|
|
104
|
+
} & Omit<Omit<any, "ref">, keyof {
|
|
105
|
+
variant?: TypographyVariant;
|
|
106
|
+
color?: string;
|
|
107
|
+
align?: "left" | "center" | "right" | "justify";
|
|
108
|
+
uppercase?: boolean;
|
|
109
|
+
truncate?: boolean;
|
|
110
|
+
inline?: boolean;
|
|
111
|
+
}> & {
|
|
112
|
+
as?: ("symbol" | "object" | "small" | "form" | "slot" | "style" | "title" | "label" | "button" | "image" | "search" | "text" | "time" | "h1" | "h2" | "h3" | "h4" | "h5" | "a" | "abbr" | "address" | "area" | "article" | "aside" | "audio" | "b" | "base" | "bdi" | "bdo" | "big" | "blockquote" | "body" | "br" | "canvas" | "caption" | "cite" | "code" | "col" | "colgroup" | "data" | "datalist" | "dd" | "del" | "details" | "dfn" | "dialog" | "div" | "dl" | "dt" | "em" | "embed" | "fieldset" | "figcaption" | "figure" | "footer" | "h6" | "header" | "hgroup" | "hr" | "html" | "i" | "iframe" | "img" | "input" | "ins" | "kbd" | "keygen" | "legend" | "li" | "link" | "main" | "map" | "mark" | "menu" | "menuitem" | "meta" | "meter" | "nav" | "noscript" | "ol" | "optgroup" | "option" | "output" | "p" | "param" | "picture" | "pre" | "progress" | "q" | "rp" | "rt" | "ruby" | "s" | "samp" | "script" | "section" | "select" | "source" | "span" | "strong" | "sub" | "summary" | "sup" | "table" | "tbody" | "td" | "textarea" | "tfoot" | "th" | "thead" | "tr" | "track" | "u" | "ul" | "use" | "var" | "video" | "wbr" | "circle" | "clipPath" | "defs" | "ellipse" | "foreignObject" | "g" | "line" | "linearGradient" | "marker" | "mask" | "path" | "pattern" | "polygon" | "polyline" | "radialGradient" | "rect" | "stop" | "svg" | "tspan" | react.ComponentType<any> | "center" | "head" | "noindex" | "template" | "webview" | "animate" | "animateMotion" | "animateTransform" | "desc" | "feBlend" | "feColorMatrix" | "feComponentTransfer" | "feComposite" | "feConvolveMatrix" | "feDiffuseLighting" | "feDisplacementMap" | "feDistantLight" | "feDropShadow" | "feFlood" | "feFuncA" | "feFuncB" | "feFuncG" | "feFuncR" | "feGaussianBlur" | "feImage" | "feMerge" | "feMergeNode" | "feMorphology" | "feOffset" | "fePointLight" | "feSpecularLighting" | "feSpotLight" | "feTile" | "feTurbulence" | "filter" | "metadata" | "mpath" | "set" | "switch" | "textPath" | "view") | undefined;
|
|
113
|
+
forwardedAs?: ("symbol" | "object" | "small" | "form" | "slot" | "style" | "title" | "label" | "button" | "image" | "search" | "text" | "time" | "h1" | "h2" | "h3" | "h4" | "h5" | "a" | "abbr" | "address" | "area" | "article" | "aside" | "audio" | "b" | "base" | "bdi" | "bdo" | "big" | "blockquote" | "body" | "br" | "canvas" | "caption" | "cite" | "code" | "col" | "colgroup" | "data" | "datalist" | "dd" | "del" | "details" | "dfn" | "dialog" | "div" | "dl" | "dt" | "em" | "embed" | "fieldset" | "figcaption" | "figure" | "footer" | "h6" | "header" | "hgroup" | "hr" | "html" | "i" | "iframe" | "img" | "input" | "ins" | "kbd" | "keygen" | "legend" | "li" | "link" | "main" | "map" | "mark" | "menu" | "menuitem" | "meta" | "meter" | "nav" | "noscript" | "ol" | "optgroup" | "option" | "output" | "p" | "param" | "picture" | "pre" | "progress" | "q" | "rp" | "rt" | "ruby" | "s" | "samp" | "script" | "section" | "select" | "source" | "span" | "strong" | "sub" | "summary" | "sup" | "table" | "tbody" | "td" | "textarea" | "tfoot" | "th" | "thead" | "tr" | "track" | "u" | "ul" | "use" | "var" | "video" | "wbr" | "circle" | "clipPath" | "defs" | "ellipse" | "foreignObject" | "g" | "line" | "linearGradient" | "marker" | "mask" | "path" | "pattern" | "polygon" | "polyline" | "radialGradient" | "rect" | "stop" | "svg" | "tspan" | react.ComponentType<any> | "center" | "head" | "noindex" | "template" | "webview" | "animate" | "animateMotion" | "animateTransform" | "desc" | "feBlend" | "feColorMatrix" | "feComponentTransfer" | "feComposite" | "feConvolveMatrix" | "feDiffuseLighting" | "feDisplacementMap" | "feDistantLight" | "feDropShadow" | "feFlood" | "feFuncA" | "feFuncB" | "feFuncG" | "feFuncR" | "feGaussianBlur" | "feImage" | "feMerge" | "feMergeNode" | "feMorphology" | "feOffset" | "fePointLight" | "feSpecularLighting" | "feSpotLight" | "feTile" | "feTurbulence" | "filter" | "metadata" | "mpath" | "set" | "switch" | "textPath" | "view") | undefined;
|
|
114
|
+
}>, never>, {
|
|
115
|
+
$color?: string;
|
|
116
|
+
}>> & string & Omit<(<C extends "symbol" | "object" | "small" | "form" | "slot" | "style" | "title" | "label" | "button" | "image" | "search" | "text" | "time" | "h1" | "h2" | "h3" | "h4" | "h5" | "a" | "abbr" | "address" | "area" | "article" | "aside" | "audio" | "b" | "base" | "bdi" | "bdo" | "big" | "blockquote" | "body" | "br" | "canvas" | "caption" | "cite" | "code" | "col" | "colgroup" | "data" | "datalist" | "dd" | "del" | "details" | "dfn" | "dialog" | "div" | "dl" | "dt" | "em" | "embed" | "fieldset" | "figcaption" | "figure" | "footer" | "h6" | "header" | "hgroup" | "hr" | "html" | "i" | "iframe" | "img" | "input" | "ins" | "kbd" | "keygen" | "legend" | "li" | "link" | "main" | "map" | "mark" | "menu" | "menuitem" | "meta" | "meter" | "nav" | "noscript" | "ol" | "optgroup" | "option" | "output" | "p" | "param" | "picture" | "pre" | "progress" | "q" | "rp" | "rt" | "ruby" | "s" | "samp" | "script" | "section" | "select" | "source" | "span" | "strong" | "sub" | "summary" | "sup" | "table" | "tbody" | "td" | "textarea" | "tfoot" | "th" | "thead" | "tr" | "track" | "u" | "ul" | "use" | "var" | "video" | "wbr" | "circle" | "clipPath" | "defs" | "ellipse" | "foreignObject" | "g" | "line" | "linearGradient" | "marker" | "mask" | "path" | "pattern" | "polygon" | "polyline" | "radialGradient" | "rect" | "stop" | "svg" | "tspan" | react.ComponentType<any> | "center" | "head" | "noindex" | "template" | "webview" | "animate" | "animateMotion" | "animateTransform" | "desc" | "feBlend" | "feColorMatrix" | "feComponentTransfer" | "feComposite" | "feConvolveMatrix" | "feDiffuseLighting" | "feDisplacementMap" | "feDistantLight" | "feDropShadow" | "feFlood" | "feFuncA" | "feFuncB" | "feFuncG" | "feFuncR" | "feGaussianBlur" | "feImage" | "feMerge" | "feMergeNode" | "feMorphology" | "feOffset" | "fePointLight" | "feSpecularLighting" | "feSpotLight" | "feTile" | "feTurbulence" | "filter" | "metadata" | "mpath" | "set" | "switch" | "textPath" | "view" = "span">(props: {
|
|
117
|
+
variant?: TypographyVariant;
|
|
118
|
+
color?: string;
|
|
119
|
+
align?: "left" | "center" | "right" | "justify";
|
|
120
|
+
uppercase?: boolean;
|
|
121
|
+
truncate?: boolean;
|
|
122
|
+
inline?: boolean;
|
|
123
|
+
} & Omit<react.PropsWithoutRef<react.ComponentProps<C>>, keyof {
|
|
124
|
+
variant?: TypographyVariant;
|
|
125
|
+
color?: string;
|
|
126
|
+
align?: "left" | "center" | "right" | "justify";
|
|
127
|
+
uppercase?: boolean;
|
|
128
|
+
truncate?: boolean;
|
|
129
|
+
inline?: boolean;
|
|
130
|
+
}> & {
|
|
131
|
+
as?: C | undefined;
|
|
132
|
+
forwardedAs?: C | undefined;
|
|
133
|
+
}) => React.ReactElement | null), keyof react.Component<any, {}, any>>;
|
|
78
134
|
|
|
79
135
|
declare const Container: styled_components_dist_types.IStyledComponentBase<"web", styled_components.FastOmit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
80
136
|
|
|
@@ -113,6 +169,8 @@ type SelectFieldProps = {
|
|
|
113
169
|
defaultValue?: string;
|
|
114
170
|
placeholder?: string;
|
|
115
171
|
label?: string;
|
|
172
|
+
searchInput?: boolean;
|
|
173
|
+
searchPlaceholder?: string;
|
|
116
174
|
error?: string;
|
|
117
175
|
disabled?: boolean;
|
|
118
176
|
icon?: React.ReactNode;
|
|
@@ -215,7 +273,50 @@ interface ButtonSwitcherProps {
|
|
|
215
273
|
}
|
|
216
274
|
declare const ButtonSwitcher: React.FC<ButtonSwitcherProps>;
|
|
217
275
|
|
|
218
|
-
declare const Avatar: (props: HTMLAttributes<HTMLDivElement>
|
|
276
|
+
declare const Avatar: (props: HTMLAttributes<HTMLDivElement> & {
|
|
277
|
+
size?: number;
|
|
278
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
279
|
+
|
|
280
|
+
interface LangCountrySelectProps {
|
|
281
|
+
currentLang: string;
|
|
282
|
+
currentCurrency: string;
|
|
283
|
+
currentCountry: string;
|
|
284
|
+
countries: SelectFieldProps["options"];
|
|
285
|
+
currencies: SelectFieldProps["options"];
|
|
286
|
+
languages: SelectFieldProps["options"];
|
|
287
|
+
handleSave?: ({ lang, currency, country, }: {
|
|
288
|
+
lang: string;
|
|
289
|
+
currency: string;
|
|
290
|
+
country: string;
|
|
291
|
+
}) => void;
|
|
292
|
+
labelLang: string;
|
|
293
|
+
labelCurrency: string;
|
|
294
|
+
labelCountry: string;
|
|
295
|
+
saveText?: string;
|
|
296
|
+
searchPlaceholder?: string;
|
|
297
|
+
}
|
|
298
|
+
declare const LangCountrySelect: React.FC<LangCountrySelectProps>;
|
|
299
|
+
|
|
300
|
+
interface SkeletonProps {
|
|
301
|
+
$variant?: SkeletonVariant;
|
|
302
|
+
$width?: string | number;
|
|
303
|
+
$height?: string | number;
|
|
304
|
+
className?: string;
|
|
305
|
+
$animation?: SkeletonAnimation;
|
|
306
|
+
$borderRadius?: string | number;
|
|
307
|
+
}
|
|
308
|
+
type SkeletonVariant = "text" | "circular" | "rectangular";
|
|
309
|
+
type SkeletonAnimation = "pulse" | "wave" | false;
|
|
310
|
+
|
|
311
|
+
declare const Skeleton: React.FC<SkeletonProps>;
|
|
312
|
+
|
|
313
|
+
interface ModalProps {
|
|
314
|
+
children: React.ReactNode;
|
|
315
|
+
title: string;
|
|
316
|
+
onClose?: () => void;
|
|
317
|
+
open: boolean;
|
|
318
|
+
}
|
|
319
|
+
declare const Modal: React.FC<ModalProps>;
|
|
219
320
|
|
|
220
321
|
type ApplicationDataVariant = "primary" | "secondary";
|
|
221
322
|
interface ApplicationDataProps {
|
|
@@ -231,7 +332,7 @@ type ApplicationInfoVariant = "primary" | "secondary";
|
|
|
231
332
|
|
|
232
333
|
interface ApplicationInfoProps {
|
|
233
334
|
children: React.ReactNode;
|
|
234
|
-
actions
|
|
335
|
+
actions?: React.ReactNode;
|
|
235
336
|
variant?: ApplicationInfoVariant;
|
|
236
337
|
}
|
|
237
338
|
declare const ApplicationInfo: React.FC<ApplicationInfoProps>;
|
|
@@ -286,6 +387,33 @@ interface TransactionStatusProps {
|
|
|
286
387
|
}
|
|
287
388
|
declare const TransactionStatus: React.FC<TransactionStatusProps>;
|
|
288
389
|
|
|
390
|
+
interface InputMessageProps {
|
|
391
|
+
onChangeMessage?: (value: string) => void;
|
|
392
|
+
message?: string;
|
|
393
|
+
onChangeFiles?: (files: File[]) => void;
|
|
394
|
+
files?: File[];
|
|
395
|
+
handleClickEmoji?: (value: string) => void;
|
|
396
|
+
onSend?: () => void;
|
|
397
|
+
}
|
|
398
|
+
declare const InputMessage: React.FC<InputMessageProps>;
|
|
399
|
+
|
|
400
|
+
type MessageVariant = "self" | "other";
|
|
401
|
+
|
|
402
|
+
interface ChatMessageProps {
|
|
403
|
+
children: React.ReactNode;
|
|
404
|
+
variant?: MessageVariant;
|
|
405
|
+
longName?: string;
|
|
406
|
+
date?: string;
|
|
407
|
+
}
|
|
408
|
+
declare const ChatMessage: React.FC<ChatMessageProps>;
|
|
409
|
+
|
|
410
|
+
interface ChatProps {
|
|
411
|
+
children: React.ReactNode;
|
|
412
|
+
inputMessage: React.ReactNode;
|
|
413
|
+
longName: string;
|
|
414
|
+
}
|
|
415
|
+
declare const Chat: React.FC<ChatProps>;
|
|
416
|
+
|
|
289
417
|
declare const maskEmail: (email: string, keep?: number, stars?: number) => string;
|
|
290
418
|
declare const formatCardNumber: (cardNum: number) => string;
|
|
291
419
|
declare const copyToClipboard: (text: string) => Promise<void>;
|
|
@@ -331,15 +459,15 @@ declare const theme: {
|
|
|
331
459
|
};
|
|
332
460
|
readonly media: {
|
|
333
461
|
readonly maxWidth: {
|
|
334
|
-
readonly mobile: "@media (max-width:
|
|
335
|
-
readonly tablet: "@media (max-width:
|
|
462
|
+
readonly mobile: "@media (max-width: 576px)";
|
|
463
|
+
readonly tablet: "@media (max-width: 1023px)";
|
|
336
464
|
};
|
|
337
465
|
};
|
|
338
466
|
};
|
|
339
467
|
type AppTheme = typeof theme;
|
|
340
468
|
|
|
341
469
|
interface IconProps extends react__default.SVGProps<SVGSVGElement> {
|
|
342
|
-
size?: number
|
|
470
|
+
size?: number;
|
|
343
471
|
children?: react__default.ReactNode;
|
|
344
472
|
}
|
|
345
473
|
|
|
@@ -678,27 +806,7 @@ declare const StyledProvider: ({ children }: {
|
|
|
678
806
|
children: React.ReactNode;
|
|
679
807
|
}) => react_jsx_runtime.JSX.Element;
|
|
680
808
|
|
|
681
|
-
declare const breakpoints: {
|
|
682
|
-
mobile: {
|
|
683
|
-
max: number;
|
|
684
|
-
scale: number;
|
|
685
|
-
};
|
|
686
|
-
tablet: {
|
|
687
|
-
min: number;
|
|
688
|
-
max: number;
|
|
689
|
-
scale: number;
|
|
690
|
-
};
|
|
691
|
-
desktop: {
|
|
692
|
-
min: number;
|
|
693
|
-
max: number;
|
|
694
|
-
scale: number;
|
|
695
|
-
};
|
|
696
|
-
wide: {
|
|
697
|
-
min: number;
|
|
698
|
-
scale: number;
|
|
699
|
-
};
|
|
700
|
-
};
|
|
701
809
|
declare const GlobalStyles: react.NamedExoticComponent<styled_components.ExecutionProps & object>;
|
|
702
810
|
|
|
703
|
-
export { AaveIcon, AlgorandIcon, ApplicationData, ApplicationInfo, ApplicationStatus, ArrowIcon, AttachIcon, AvalancheIcon, Avatar, BalanceRow, BatIcon, BitcoinIcon, BnbSmallIcon, BtgIcon, BusdIcon, Button, ButtonSwitcher, CakeIcon, CardanoIcon, ChainlinkIcon, CheckIcon, Checkbox, CircleSendCryptoIcon, ClockIcon, Close2Icon, CloseIcon, Container, CopyIcon, CopyTooltip, CosmosIcon, Counter, CountryBrIcon, CountryCzechIcon, CountryKzIcon, CountryRusIcon, CurrencyName, CurrencyRate, DashSmallIcon, DashboardIcon, DecentralandIcon, DepositIcon, DepositSimpleIcon, DigibyteIcon, DogeSmallIcon, DropdownIcon, DropdownSmallIcon, DropdownUpIcon, EditIcon, ElrondIcon, EmojiIcon, EnjinIcon, EosIcon, ErrorBigIcon, EtcIcon, EthIcon, EurIcon, ExchangeArrowsIcon, ExchangeIcon, ExchangeSimpleIcon, FantomIcon, FilecoinIcon, FtxIcon, GlobalStyles, HamburgerButton, HamburgerIcon, HeadphonesIcon, HederaIcon, HideUiIcon, HistoryIcon, IcomputerIcon, IconNeoIcon, IcxIcon, IlsIcon, InfoIcon, Informer, IotaIcon, KlaytnIcon, LariIcon, LinkIcon, LiskIcon, LitecoinIcon, Loader, Logo, LogoAbankIcon, LogoAbsolutIcon, LogoAcbaCreditIcon, LogoAlphabankIcon, LogoArmEconomBankIcon, LogoArshidBankIcon, LogoBankcentercreditIcon, LogoBankofGeorgiaIcon, LogoEurobankIcon, LogoForteBankIcon, LogoHalykBankIcon, LogoHomecreditIcon, LogoHumoCardIcon, LogoJysanBankIcon, LogoKaspiBankIcon, LogoMonobankIcon, LogoMtsbankIcon, LogoNetellerIcon, LogoOshadbankIcon, LogoOtkrutieIcon, LogoPochtabankIcon, LogoPrivatebankIcon, LogoPumbIcon, LogoQiwiIcon, LogoRayfuzenbankIcon, LogoRevolutIcon, LogoRnkbIcon, LogoRosbankIcon, LogoRosselhozbankIcon, LogoRusstandartIcon, LogoSberIcon, LogoSbpIcon, LogoSotovuyIcon, LogoTbcBankIcon, LogoTinkoffIcon, LogoUkrsibbankIcon, LogoUzCardIcon, LogoVtbIcon, LogoWiseIcon, LogoYoumoneyIcon, LogoutIcon, LunaIcon, MakerIcon, MaticIcon, MessageSendIcon, NearIcon, NemIcon, OmgnetworkIcon, OmiseIcon, OntologyIcon, P2PIcon, PaxgIcon, PlusIcon, PolkaIcon, QnekworkIcon, QutumIcon, RadioButton, ReciveCryptoIcon, Requisites, RippleIcon, RubIcon, SandboxIcon, ScanQrIcon, SearchIcon, SelectField, SendCryptoIcon, SettingsIcon, ShowUiIcon, SolanaIcon, StellarIcon, StepnIcon, StyledProvider, SuccessfullBigIcon, SuccessfullSmallIcon, SushiIcon, Switcher, SynthetixIcon, TabList, Table, TetherIcon, TextField, TezosIcon, ThegraphIcon, ThetaIcon, Tooltip, TopUpIcon, TransactionStatus, TrxSmallIcon, Typography, UniswapIcon, UpSmallIcon, UsdIcon, UsdcIcon, UserAccount, UserIcon, UsersIcon, VechainIcon, WalletFillIcon, WalletIcon, WarningIcon, WavesIcon, WithdrawIcon, WithdrawSimpleIcon, XmrSmallIcon, ZcashSmallIcon, ZilliqaIcon, ZrxIcon, adaptiveScalePlugin,
|
|
704
|
-
export type { AppTheme, ApplicationDataProps, ApplicationInfoProps, ApplicationStatusProps, CurrencyNameProps, InformerProps, InformerType, RequisitesProps, SelectFieldProps, SelectOption, TextFieldProps, TransactionStatusProps, TypographyVariant };
|
|
811
|
+
export { AaveIcon, AlgorandIcon, ApplicationData, ApplicationInfo, ApplicationStatus, ArrowIcon, AttachIcon, AvalancheIcon, Avatar, BalanceRow, BatIcon, BitcoinIcon, BnbSmallIcon, BtgIcon, BusdIcon, Button, ButtonSwitcher, CakeIcon, CardanoIcon, ChainlinkIcon, Chat, ChatMessage, CheckIcon, Checkbox, CircleSendCryptoIcon, ClockIcon, Close2Icon, CloseIcon, Container, CopyIcon, CopyTooltip, CosmosIcon, Counter, CountryBrIcon, CountryCzechIcon, CountryKzIcon, CountryRusIcon, CurrencyName, CurrencyRate, DashSmallIcon, DashboardIcon, DecentralandIcon, DepositIcon, DepositSimpleIcon, DigibyteIcon, DogeSmallIcon, DropdownIcon, DropdownSmallIcon, DropdownUpIcon, EditIcon, ElrondIcon, EmojiIcon, EnjinIcon, EosIcon, ErrorBigIcon, EtcIcon, EthIcon, EurIcon, ExchangeArrowsIcon, ExchangeIcon, ExchangeSimpleIcon, FantomIcon, FilecoinIcon, FtxIcon, GlobalStyles, HamburgerButton, HamburgerIcon, HeadphonesIcon, HederaIcon, HideUiIcon, HistoryIcon, IcomputerIcon, IconNeoIcon, IcxIcon, IlsIcon, InfoIcon, Informer, InputMessage, IotaIcon, KlaytnIcon, Label, LangCountrySelect, LariIcon, LinkIcon, LiskIcon, LitecoinIcon, Loader, Logo, LogoAbankIcon, LogoAbsolutIcon, LogoAcbaCreditIcon, LogoAlphabankIcon, LogoArmEconomBankIcon, LogoArshidBankIcon, LogoBankcentercreditIcon, LogoBankofGeorgiaIcon, LogoEurobankIcon, LogoForteBankIcon, LogoHalykBankIcon, LogoHomecreditIcon, LogoHumoCardIcon, LogoJysanBankIcon, LogoKaspiBankIcon, LogoMonobankIcon, LogoMtsbankIcon, LogoNetellerIcon, LogoOshadbankIcon, LogoOtkrutieIcon, LogoPochtabankIcon, LogoPrivatebankIcon, LogoPumbIcon, LogoQiwiIcon, LogoRayfuzenbankIcon, LogoRevolutIcon, LogoRnkbIcon, LogoRosbankIcon, LogoRosselhozbankIcon, LogoRusstandartIcon, LogoSberIcon, LogoSbpIcon, LogoSotovuyIcon, LogoTbcBankIcon, LogoTinkoffIcon, LogoUkrsibbankIcon, LogoUzCardIcon, LogoVtbIcon, LogoWiseIcon, LogoYoumoneyIcon, LogoutIcon, LunaIcon, MakerIcon, MaticIcon, MessageSendIcon, Modal, NearIcon, NemIcon, OmgnetworkIcon, OmiseIcon, OntologyIcon, P2PIcon, PaxgIcon, PlusIcon, PolkaIcon, QnekworkIcon, QutumIcon, RadioButton, ReciveCryptoIcon, Requisites, RippleIcon, RubIcon, SandboxIcon, ScanQrIcon, SearchIcon, SelectField, SendCryptoIcon, SettingsIcon, ShowUiIcon, Skeleton, SolanaIcon, StellarIcon, StepnIcon, StyledProvider, SuccessfullBigIcon, SuccessfullSmallIcon, SushiIcon, Switcher, SynthetixIcon, TabList, Table, TetherIcon, TextField, TezosIcon, ThegraphIcon, ThetaIcon, Tooltip, TopUpIcon, TransactionStatus, TrxSmallIcon, Typography, UniswapIcon, UpSmallIcon, UsdIcon, UsdcIcon, UserAccount, UserIcon, UsersIcon, VechainIcon, WalletFillIcon, WalletIcon, WarningIcon, WavesIcon, WithdrawIcon, WithdrawSimpleIcon, XmrSmallIcon, ZcashSmallIcon, ZilliqaIcon, ZrxIcon, adaptiveScalePlugin, copyToClipboard, createAdaptiveScalePlugin, formatCardNumber, maskEmail, theme };
|
|
812
|
+
export type { AppTheme, ApplicationDataProps, ApplicationInfoProps, ApplicationStatusProps, ChatProps, CurrencyNameProps, InformerProps, InformerType, LangCountrySelectProps, RequisitesProps, SelectFieldProps, SelectOption, SkeletonProps, TextFieldProps, TransactionStatusProps, TypographyVariant };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@matbea-ui/matbea-ui",
|
|
3
|
-
"version": "0.2.0-dev.
|
|
3
|
+
"version": "0.2.0-dev.438353",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/matbea-ui.cjs.js",
|
|
@@ -44,8 +44,10 @@
|
|
|
44
44
|
"styled-components": "^6"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
+
"emoji-picker-react": "^4.16.1",
|
|
47
48
|
"lodash": "^4.17.21",
|
|
48
|
-
"react-tooltip": "^5.30.0"
|
|
49
|
+
"react-tooltip": "^5.30.0",
|
|
50
|
+
"styled-components": "^6.1.19"
|
|
49
51
|
},
|
|
50
52
|
"devDependencies": {
|
|
51
53
|
"@chromatic-com/storybook": "^4.1.3",
|