@matbea-ui/matbea-ui 0.2.0-dev.137632 → 0.2.0-dev.140232
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 +22882 -97
- package/dist/matbea-ui.cjs.js.map +1 -1
- package/dist/matbea-ui.es.js +22700 -85
- package/dist/matbea-ui.es.js.map +1 -1
- package/dist/types/index.d.ts +414 -7
- package/package.json +5 -4
package/dist/types/index.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as react from 'react';
|
|
3
|
-
import react__default, { ReactNode, ButtonHTMLAttributes, ChangeEvent, FocusEventHandler } from 'react';
|
|
3
|
+
import react__default, { ReactNode, ButtonHTMLAttributes, ChangeEvent, FocusEventHandler, HTMLAttributes } from 'react';
|
|
4
4
|
import * as styled_components_dist_types from 'styled-components/dist/types';
|
|
5
5
|
import * as styled_components from 'styled-components';
|
|
6
|
+
import { Middleware } from 'stylis';
|
|
6
7
|
|
|
7
8
|
type ButtonVariant = "primary" | "secondary" | "tertiary";
|
|
8
9
|
type ButtonSize = "default" | "medium" | "small";
|
|
@@ -17,8 +18,10 @@ type ButtonProps = {
|
|
|
17
18
|
icon?: ReactNode;
|
|
18
19
|
iconPosition?: IconPosition;
|
|
19
20
|
children?: ReactNode;
|
|
21
|
+
ref?: React.Ref<HTMLButtonElement>;
|
|
22
|
+
disabled?: boolean;
|
|
20
23
|
} & ButtonHTMLAttributes<HTMLButtonElement>;
|
|
21
|
-
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;
|
|
22
25
|
|
|
23
26
|
type CopyTooltipProps = {
|
|
24
27
|
label: string;
|
|
@@ -60,8 +63,10 @@ type TextFieldProps = {
|
|
|
60
63
|
defaultValue?: string;
|
|
61
64
|
placeholder?: string;
|
|
62
65
|
label?: string;
|
|
66
|
+
labelVariant?: TypographyVariant;
|
|
63
67
|
error?: string;
|
|
64
68
|
disabled?: boolean;
|
|
69
|
+
labelColor?: string;
|
|
65
70
|
icon?: React.ReactNode;
|
|
66
71
|
action?: React.ReactNode;
|
|
67
72
|
name?: string;
|
|
@@ -110,6 +115,8 @@ type SelectFieldProps = {
|
|
|
110
115
|
defaultValue?: string;
|
|
111
116
|
placeholder?: string;
|
|
112
117
|
label?: string;
|
|
118
|
+
searchInput?: boolean;
|
|
119
|
+
searchPlaceholder?: string;
|
|
113
120
|
error?: string;
|
|
114
121
|
disabled?: boolean;
|
|
115
122
|
icon?: React.ReactNode;
|
|
@@ -205,6 +212,37 @@ declare const Checkbox: React.FC<CheckboxProps>;
|
|
|
205
212
|
|
|
206
213
|
declare const Logo: () => react_jsx_runtime.JSX.Element;
|
|
207
214
|
|
|
215
|
+
interface ButtonSwitcherProps {
|
|
216
|
+
active: boolean;
|
|
217
|
+
leftButtonLabel: string | React.ReactNode;
|
|
218
|
+
rightButtonLabel: string | React.ReactNode;
|
|
219
|
+
}
|
|
220
|
+
declare const ButtonSwitcher: React.FC<ButtonSwitcherProps>;
|
|
221
|
+
|
|
222
|
+
declare const Avatar: (props: HTMLAttributes<HTMLDivElement> & {
|
|
223
|
+
size?: number;
|
|
224
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
225
|
+
|
|
226
|
+
interface LangCountrySelectProps {
|
|
227
|
+
currentLang: string;
|
|
228
|
+
currentCurrency: string;
|
|
229
|
+
currentCountry: string;
|
|
230
|
+
countries: SelectFieldProps["options"];
|
|
231
|
+
currencies: SelectFieldProps["options"];
|
|
232
|
+
languages: SelectFieldProps["options"];
|
|
233
|
+
handleSave?: ({ lang, currency, country, }: {
|
|
234
|
+
lang: string;
|
|
235
|
+
currency: string;
|
|
236
|
+
country: string;
|
|
237
|
+
}) => void;
|
|
238
|
+
labelLang: string;
|
|
239
|
+
labelCurrency: string;
|
|
240
|
+
labelCountry: string;
|
|
241
|
+
saveText?: string;
|
|
242
|
+
searchPlaceholder?: string;
|
|
243
|
+
}
|
|
244
|
+
declare const LangCountrySelect: React.FC<LangCountrySelectProps>;
|
|
245
|
+
|
|
208
246
|
type ApplicationDataVariant = "primary" | "secondary";
|
|
209
247
|
interface ApplicationDataProps {
|
|
210
248
|
label: string;
|
|
@@ -219,7 +257,7 @@ type ApplicationInfoVariant = "primary" | "secondary";
|
|
|
219
257
|
|
|
220
258
|
interface ApplicationInfoProps {
|
|
221
259
|
children: React.ReactNode;
|
|
222
|
-
actions
|
|
260
|
+
actions?: React.ReactNode;
|
|
223
261
|
variant?: ApplicationInfoVariant;
|
|
224
262
|
}
|
|
225
263
|
declare const ApplicationInfo: React.FC<ApplicationInfoProps>;
|
|
@@ -274,6 +312,33 @@ interface TransactionStatusProps {
|
|
|
274
312
|
}
|
|
275
313
|
declare const TransactionStatus: React.FC<TransactionStatusProps>;
|
|
276
314
|
|
|
315
|
+
interface InputMessageProps {
|
|
316
|
+
onChangeMessage?: (value: string) => void;
|
|
317
|
+
message?: string;
|
|
318
|
+
onChangeFiles?: (files: File[]) => void;
|
|
319
|
+
files?: File[];
|
|
320
|
+
handleClickEmoji?: (value: string) => void;
|
|
321
|
+
onSend?: () => void;
|
|
322
|
+
}
|
|
323
|
+
declare const InputMessage: React.FC<InputMessageProps>;
|
|
324
|
+
|
|
325
|
+
type MessageVariant = "self" | "other";
|
|
326
|
+
|
|
327
|
+
interface ChatMessageProps {
|
|
328
|
+
children: React.ReactNode;
|
|
329
|
+
variant?: MessageVariant;
|
|
330
|
+
longName?: string;
|
|
331
|
+
date?: string;
|
|
332
|
+
}
|
|
333
|
+
declare const ChatMessage: React.FC<ChatMessageProps>;
|
|
334
|
+
|
|
335
|
+
interface ChatProps {
|
|
336
|
+
children: React.ReactNode;
|
|
337
|
+
inputMessage: React.ReactNode;
|
|
338
|
+
longName: string;
|
|
339
|
+
}
|
|
340
|
+
declare const Chat: React.FC<ChatProps>;
|
|
341
|
+
|
|
277
342
|
declare const maskEmail: (email: string, keep?: number, stars?: number) => string;
|
|
278
343
|
declare const formatCardNumber: (cardNum: number) => string;
|
|
279
344
|
declare const copyToClipboard: (text: string) => Promise<void>;
|
|
@@ -319,12 +384,354 @@ declare const theme: {
|
|
|
319
384
|
};
|
|
320
385
|
readonly media: {
|
|
321
386
|
readonly maxWidth: {
|
|
322
|
-
readonly mobile: "@media (max-width:
|
|
323
|
-
readonly tablet: "@media (max-width:
|
|
387
|
+
readonly mobile: "@media (max-width: 576px)";
|
|
388
|
+
readonly tablet: "@media (max-width: 1023px)";
|
|
324
389
|
};
|
|
325
390
|
};
|
|
326
391
|
};
|
|
327
392
|
type AppTheme = typeof theme;
|
|
328
393
|
|
|
329
|
-
|
|
330
|
-
|
|
394
|
+
interface IconProps extends react__default.SVGProps<SVGSVGElement> {
|
|
395
|
+
size?: number;
|
|
396
|
+
children?: react__default.ReactNode;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
declare const LogoAbankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
400
|
+
|
|
401
|
+
declare const LogoAbsolutIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
402
|
+
|
|
403
|
+
declare const LogoAcbaCreditIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
404
|
+
|
|
405
|
+
declare const LogoAlphabankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
406
|
+
|
|
407
|
+
declare const LogoArmEconomBankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
408
|
+
|
|
409
|
+
declare const LogoArshidBankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
410
|
+
|
|
411
|
+
declare const LogoBankcentercreditIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
412
|
+
|
|
413
|
+
declare const LogoBankofGeorgiaIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
414
|
+
|
|
415
|
+
declare const LogoEurobankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
416
|
+
|
|
417
|
+
declare const LogoForteBankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
418
|
+
|
|
419
|
+
declare const LogoHalykBankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
420
|
+
|
|
421
|
+
declare const LogoHomecreditIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
422
|
+
|
|
423
|
+
declare const LogoHumoCardIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
424
|
+
|
|
425
|
+
declare const LogoJysanBankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
426
|
+
|
|
427
|
+
declare const LogoKaspiBankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
428
|
+
|
|
429
|
+
declare const LogoMonobankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
430
|
+
|
|
431
|
+
declare const LogoMtsbankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
432
|
+
|
|
433
|
+
declare const LogoNetellerIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
434
|
+
|
|
435
|
+
declare const LogoOshadbankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
436
|
+
|
|
437
|
+
declare const LogoOtkrutieIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
438
|
+
|
|
439
|
+
declare const LogoPochtabankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
440
|
+
|
|
441
|
+
declare const LogoPrivatebankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
442
|
+
|
|
443
|
+
declare const LogoPumbIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
444
|
+
|
|
445
|
+
declare const LogoQiwiIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
446
|
+
|
|
447
|
+
declare const LogoRayfuzenbankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
448
|
+
|
|
449
|
+
declare const LogoRevolutIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
450
|
+
|
|
451
|
+
declare const LogoRnkbIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
452
|
+
|
|
453
|
+
declare const LogoRosbankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
454
|
+
|
|
455
|
+
declare const LogoRosselhozbankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
456
|
+
|
|
457
|
+
declare const LogoRusstandartIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
458
|
+
|
|
459
|
+
declare const LogoSberIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
460
|
+
|
|
461
|
+
declare const LogoSbpIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
462
|
+
|
|
463
|
+
declare const LogoSotovuyIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
464
|
+
|
|
465
|
+
declare const LogoTbcBankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
466
|
+
|
|
467
|
+
declare const LogoTinkoffIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
468
|
+
|
|
469
|
+
declare const LogoUkrsibbankIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
470
|
+
|
|
471
|
+
declare const LogoUzCardIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
472
|
+
|
|
473
|
+
declare const LogoVtbIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
474
|
+
|
|
475
|
+
declare const LogoWiseIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
476
|
+
|
|
477
|
+
declare const LogoYoumoneyIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
478
|
+
|
|
479
|
+
declare const ArrowIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
480
|
+
|
|
481
|
+
declare const AttachIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
482
|
+
|
|
483
|
+
declare const CheckIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
484
|
+
|
|
485
|
+
declare const CloseIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
486
|
+
|
|
487
|
+
declare const DashboardIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
488
|
+
|
|
489
|
+
declare const EmojiIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
490
|
+
|
|
491
|
+
declare const ExchangeIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
492
|
+
|
|
493
|
+
declare const HamburgerIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
494
|
+
|
|
495
|
+
declare const HeadphonesIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
496
|
+
|
|
497
|
+
declare const HistoryIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
498
|
+
|
|
499
|
+
declare const P2PIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
500
|
+
|
|
501
|
+
declare const ReciveCryptoIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
502
|
+
|
|
503
|
+
declare const SearchIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
504
|
+
|
|
505
|
+
declare const SendCryptoIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
506
|
+
|
|
507
|
+
declare const SettingsIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
508
|
+
|
|
509
|
+
declare const TopUpIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
510
|
+
|
|
511
|
+
declare const UserIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
512
|
+
|
|
513
|
+
declare const UsersIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
514
|
+
|
|
515
|
+
declare const WalletIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
516
|
+
|
|
517
|
+
declare const CircleSendCryptoIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
518
|
+
|
|
519
|
+
declare const ClockIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
520
|
+
|
|
521
|
+
declare const Close2Icon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
522
|
+
|
|
523
|
+
declare const CopyIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
524
|
+
|
|
525
|
+
declare const DepositIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
526
|
+
|
|
527
|
+
declare const DepositSimpleIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
528
|
+
|
|
529
|
+
declare const DropdownIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
530
|
+
|
|
531
|
+
declare const DropdownSmallIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
532
|
+
|
|
533
|
+
declare const DropdownUpIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
534
|
+
|
|
535
|
+
declare const EditIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
536
|
+
|
|
537
|
+
declare const ErrorBigIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
538
|
+
|
|
539
|
+
declare const ExchangeArrowsIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
540
|
+
|
|
541
|
+
declare const ExchangeSimpleIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
542
|
+
|
|
543
|
+
declare const HideUiIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
544
|
+
|
|
545
|
+
declare const InfoIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
546
|
+
|
|
547
|
+
declare const LinkIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
548
|
+
|
|
549
|
+
declare const LogoutIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
550
|
+
|
|
551
|
+
declare const MessageSendIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
552
|
+
|
|
553
|
+
declare const PlusIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
554
|
+
|
|
555
|
+
declare const ScanQrIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
556
|
+
|
|
557
|
+
declare const ShowUiIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
558
|
+
|
|
559
|
+
declare const SuccessfullBigIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
560
|
+
|
|
561
|
+
declare const SuccessfullSmallIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
562
|
+
|
|
563
|
+
declare const UpSmallIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
564
|
+
|
|
565
|
+
declare const WalletFillIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
566
|
+
|
|
567
|
+
declare const WarningIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
568
|
+
|
|
569
|
+
declare const WithdrawIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
570
|
+
|
|
571
|
+
declare const WithdrawSimpleIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
572
|
+
|
|
573
|
+
declare const CountryBrIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
574
|
+
|
|
575
|
+
declare const CountryCzechIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
576
|
+
|
|
577
|
+
declare const CountryKzIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
578
|
+
|
|
579
|
+
declare const CountryRusIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
580
|
+
|
|
581
|
+
declare const AaveIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
582
|
+
|
|
583
|
+
declare const AlgorandIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
584
|
+
|
|
585
|
+
declare const AvalancheIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
586
|
+
|
|
587
|
+
declare const BatIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
588
|
+
|
|
589
|
+
declare const BitcoinIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
590
|
+
|
|
591
|
+
declare const BnbSmallIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
592
|
+
|
|
593
|
+
declare const BtgIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
594
|
+
|
|
595
|
+
declare const BusdIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
596
|
+
|
|
597
|
+
declare const CakeIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
598
|
+
|
|
599
|
+
declare const CardanoIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
600
|
+
|
|
601
|
+
declare const ChainlinkIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
602
|
+
|
|
603
|
+
declare const CosmosIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
604
|
+
|
|
605
|
+
declare const DashSmallIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
606
|
+
|
|
607
|
+
declare const DecentralandIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
608
|
+
|
|
609
|
+
declare const DigibyteIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
610
|
+
|
|
611
|
+
declare const DogeSmallIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
612
|
+
|
|
613
|
+
declare const ElrondIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
614
|
+
|
|
615
|
+
declare const EnjinIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
616
|
+
|
|
617
|
+
declare const EosIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
618
|
+
|
|
619
|
+
declare const EtcIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
620
|
+
|
|
621
|
+
declare const EthIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
622
|
+
|
|
623
|
+
declare const EurIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
624
|
+
|
|
625
|
+
declare const FantomIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
626
|
+
|
|
627
|
+
declare const FilecoinIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
628
|
+
|
|
629
|
+
declare const FtxIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
630
|
+
|
|
631
|
+
declare const HederaIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
632
|
+
|
|
633
|
+
declare const IcomputerIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
634
|
+
|
|
635
|
+
declare const IconNeoIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
636
|
+
|
|
637
|
+
declare const IcxIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
638
|
+
|
|
639
|
+
declare const IlsIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
640
|
+
|
|
641
|
+
declare const IotaIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
642
|
+
|
|
643
|
+
declare const KlaytnIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
644
|
+
|
|
645
|
+
declare const LariIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
646
|
+
|
|
647
|
+
declare const LiskIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
648
|
+
|
|
649
|
+
declare const LitecoinIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
650
|
+
|
|
651
|
+
declare const LunaIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
652
|
+
|
|
653
|
+
declare const MakerIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
654
|
+
|
|
655
|
+
declare const MaticIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
656
|
+
|
|
657
|
+
declare const NearIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
658
|
+
|
|
659
|
+
declare const NemIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
660
|
+
|
|
661
|
+
declare const OmgnetworkIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
662
|
+
|
|
663
|
+
declare const OmiseIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
664
|
+
|
|
665
|
+
declare const OntologyIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
666
|
+
|
|
667
|
+
declare const PaxgIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
668
|
+
|
|
669
|
+
declare const PolkaIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
670
|
+
|
|
671
|
+
declare const QnekworkIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
672
|
+
|
|
673
|
+
declare const QutumIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
674
|
+
|
|
675
|
+
declare const RippleIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
676
|
+
|
|
677
|
+
declare const RubIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
678
|
+
|
|
679
|
+
declare const SandboxIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
680
|
+
|
|
681
|
+
declare const SolanaIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
682
|
+
|
|
683
|
+
declare const StellarIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
684
|
+
|
|
685
|
+
declare const StepnIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
686
|
+
|
|
687
|
+
declare const SushiIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
688
|
+
|
|
689
|
+
declare const SynthetixIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
690
|
+
|
|
691
|
+
declare const TetherIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
692
|
+
|
|
693
|
+
declare const TezosIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
694
|
+
|
|
695
|
+
declare const ThegraphIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
696
|
+
|
|
697
|
+
declare const ThetaIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
698
|
+
|
|
699
|
+
declare const TrxSmallIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
700
|
+
|
|
701
|
+
declare const UniswapIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
702
|
+
|
|
703
|
+
declare const UsdIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
704
|
+
|
|
705
|
+
declare const UsdcIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
706
|
+
|
|
707
|
+
declare const VechainIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
708
|
+
|
|
709
|
+
declare const WavesIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
710
|
+
|
|
711
|
+
declare const XmrSmallIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
712
|
+
|
|
713
|
+
declare const ZcashSmallIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
714
|
+
|
|
715
|
+
declare const ZilliqaIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
716
|
+
|
|
717
|
+
declare const ZrxIcon: (props: IconProps) => react_jsx_runtime.JSX.Element;
|
|
718
|
+
|
|
719
|
+
declare const CONFIG: {
|
|
720
|
+
minFontSize: number;
|
|
721
|
+
minLineHeight: number;
|
|
722
|
+
minValue: number;
|
|
723
|
+
excludeProps: string[];
|
|
724
|
+
scaleVariable: string;
|
|
725
|
+
vhVariable: string;
|
|
726
|
+
};
|
|
727
|
+
declare const adaptiveScalePlugin: Middleware;
|
|
728
|
+
declare const createAdaptiveScalePlugin: (customConfig?: Partial<typeof CONFIG>) => Middleware;
|
|
729
|
+
|
|
730
|
+
declare const StyledProvider: ({ children }: {
|
|
731
|
+
children: React.ReactNode;
|
|
732
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
733
|
+
|
|
734
|
+
declare const GlobalStyles: react.NamedExoticComponent<styled_components.ExecutionProps & object>;
|
|
735
|
+
|
|
736
|
+
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, 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, 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, copyToClipboard, createAdaptiveScalePlugin, formatCardNumber, maskEmail, theme };
|
|
737
|
+
export type { AppTheme, ApplicationDataProps, ApplicationInfoProps, ApplicationStatusProps, ChatProps, CurrencyNameProps, InformerProps, InformerType, LangCountrySelectProps, RequisitesProps, SelectFieldProps, SelectOption, 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.140232",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/matbea-ui.cjs.js",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"dist"
|
|
20
20
|
],
|
|
21
21
|
"scripts": {
|
|
22
|
-
"
|
|
22
|
+
"sb": "storybook dev -p 6006",
|
|
23
23
|
"build-storybook": "storybook build",
|
|
24
24
|
"test": "vitest",
|
|
25
25
|
"test:ui": "vitest --ui",
|
|
@@ -28,7 +28,6 @@
|
|
|
28
28
|
"build:watch": "rollup -c --watch",
|
|
29
29
|
"lint": "eslint .",
|
|
30
30
|
"lint:fix": "eslint . --fix",
|
|
31
|
-
"prepublishOnly": "npm run lint && npm run build",
|
|
32
31
|
"clean": "rm -rf dist",
|
|
33
32
|
"generate:icons": "node scripts/generate-icons.cjs",
|
|
34
33
|
"dev:publish": "node scripts/dev-publish.js dev",
|
|
@@ -45,8 +44,10 @@
|
|
|
45
44
|
"styled-components": "^6"
|
|
46
45
|
},
|
|
47
46
|
"dependencies": {
|
|
47
|
+
"emoji-picker-react": "^4.16.1",
|
|
48
48
|
"lodash": "^4.17.21",
|
|
49
|
-
"react-tooltip": "^5.30.0"
|
|
49
|
+
"react-tooltip": "^5.30.0",
|
|
50
|
+
"styled-components": "^6.1.19"
|
|
50
51
|
},
|
|
51
52
|
"devDependencies": {
|
|
52
53
|
"@chromatic-com/storybook": "^4.1.3",
|