@obolnetwork/obol-ui 1.0.6 → 1.0.9
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/atoms/Box/Box.d.ts +5 -0
- package/dist/components/atoms/Button/Button.d.ts +12 -7
- package/dist/components/atoms/Container/Container.d.ts +10 -0
- package/dist/components/atoms/Dialog/Dialog.d.ts +1455 -0
- package/dist/components/atoms/IconButton/IconButton.d.ts +508 -0
- package/dist/components/atoms/Image/Image.d.ts +5 -0
- package/dist/components/atoms/Link/Link.d.ts +9 -1
- package/dist/components/atoms/NumberField/NumberField.d.ts +7 -0
- package/dist/components/atoms/Spin/Spin.d.ts +6 -1
- package/dist/components/atoms/SvgIcon/SvgIcon.d.ts +6 -1
- package/dist/components/atoms/Tabs/Tabs.d.ts +20 -0
- package/dist/components/atoms/Text/Text.d.ts +11 -6
- package/dist/components/atoms/TextField/TextField.d.ts +970 -0
- package/dist/components/atoms/Toggle/Toggle.d.ts +10 -0
- package/dist/components/atoms/Tooltip/Tooltip.d.ts +13 -0
- package/dist/components/atoms/index.d.ts +3 -0
- package/dist/components/icons/AlertIcon.d.ts +2 -0
- package/dist/components/icons/GlowIconBox.d.ts +5 -0
- package/dist/components/icons/Planet.d.ts +5 -0
- package/dist/components/icons/index.d.ts +6 -1
- package/dist/components/icons/static-icons/BulletCheckIcon.d.ts +1 -0
- package/dist/components/icons/static-icons/CheckIcon.d.ts +1 -0
- package/dist/components/icons/static-icons/Coinbase.d.ts +1 -0
- package/dist/components/icons/static-icons/CopyIcon.d.ts +1 -0
- package/dist/components/icons/static-icons/Metamask.d.ts +1 -0
- package/dist/components/icons/static-icons/TrashIcon.d.ts +1 -0
- package/dist/components/icons/static-icons/WalletConnect.d.ts +1 -0
- package/dist/components/molecules/Accordion/Accordion.d.ts +10 -0
- package/dist/components/molecules/AdvisoryToggle/AdvisoryToggle.d.ts +968 -0
- package/dist/components/molecules/Card/Card.d.ts +10 -0
- package/dist/components/molecules/NotificationCard/NotificationCard.d.ts +967 -0
- package/dist/components/molecules/ProgressTracker/ProgressTracker.d.ts +11 -0
- package/dist/components/molecules/RadioGroup/RadioGroup.d.ts +1454 -0
- package/dist/components/molecules/Table/Table.d.ts +20 -0
- package/dist/components/organisms/Advisory/Advisory.d.ts +978 -0
- package/dist/components/utils/color-variants.d.ts +5 -0
- package/dist/components/utils/styles.d.ts +5 -0
- package/dist/index.es.js +333 -33
- package/dist/index.js +342 -31
- package/dist/stitches.config.d.ts +50 -0
- package/package.json +7 -2
|
@@ -40,6 +40,7 @@ export declare const styled: <Type extends import("@stitches/react/types/util").
|
|
|
40
40
|
cardBackgroundLight: string;
|
|
41
41
|
textMiddle: string;
|
|
42
42
|
textLight: string;
|
|
43
|
+
textLighter: string;
|
|
43
44
|
textTabHover: string;
|
|
44
45
|
textTabInactive: string;
|
|
45
46
|
textGreenDark: string;
|
|
@@ -52,11 +53,13 @@ export declare const styled: <Type extends import("@stitches/react/types/util").
|
|
|
52
53
|
textGrayHover: string;
|
|
53
54
|
txButton: string;
|
|
54
55
|
obolGreen: string;
|
|
56
|
+
obolMidGreen: string;
|
|
55
57
|
obolGreenHover: string;
|
|
56
58
|
obolGreenLight: string;
|
|
57
59
|
obolDarkDark: string;
|
|
58
60
|
obolDisabled: string;
|
|
59
61
|
linkButtonHover: string;
|
|
62
|
+
progressTrackerGreen: string;
|
|
60
63
|
coordinate: string;
|
|
61
64
|
coordinateHover: string;
|
|
62
65
|
test: string;
|
|
@@ -72,6 +75,8 @@ export declare const styled: <Type extends import("@stitches/react/types/util").
|
|
|
72
75
|
bg03: string;
|
|
73
76
|
bg04: string;
|
|
74
77
|
bg05: string;
|
|
78
|
+
tooltip: string;
|
|
79
|
+
tooltip2: string;
|
|
75
80
|
};
|
|
76
81
|
space: {
|
|
77
82
|
1: string;
|
|
@@ -445,6 +450,7 @@ export declare const styled: <Type extends import("@stitches/react/types/util").
|
|
|
445
450
|
cardBackgroundLight: string;
|
|
446
451
|
textMiddle: string;
|
|
447
452
|
textLight: string;
|
|
453
|
+
textLighter: string;
|
|
448
454
|
textTabHover: string;
|
|
449
455
|
textTabInactive: string;
|
|
450
456
|
textGreenDark: string;
|
|
@@ -457,11 +463,13 @@ export declare const styled: <Type extends import("@stitches/react/types/util").
|
|
|
457
463
|
textGrayHover: string;
|
|
458
464
|
txButton: string;
|
|
459
465
|
obolGreen: string;
|
|
466
|
+
obolMidGreen: string;
|
|
460
467
|
obolGreenHover: string;
|
|
461
468
|
obolGreenLight: string;
|
|
462
469
|
obolDarkDark: string;
|
|
463
470
|
obolDisabled: string;
|
|
464
471
|
linkButtonHover: string;
|
|
472
|
+
progressTrackerGreen: string;
|
|
465
473
|
coordinate: string;
|
|
466
474
|
coordinateHover: string;
|
|
467
475
|
test: string;
|
|
@@ -477,6 +485,8 @@ export declare const styled: <Type extends import("@stitches/react/types/util").
|
|
|
477
485
|
bg03: string;
|
|
478
486
|
bg04: string;
|
|
479
487
|
bg05: string;
|
|
488
|
+
tooltip: string;
|
|
489
|
+
tooltip2: string;
|
|
480
490
|
};
|
|
481
491
|
space: {
|
|
482
492
|
1: string;
|
|
@@ -831,6 +841,7 @@ export declare const styled: <Type extends import("@stitches/react/types/util").
|
|
|
831
841
|
cardBackgroundLight: string;
|
|
832
842
|
textMiddle: string;
|
|
833
843
|
textLight: string;
|
|
844
|
+
textLighter: string;
|
|
834
845
|
textTabHover: string;
|
|
835
846
|
textTabInactive: string;
|
|
836
847
|
textGreenDark: string;
|
|
@@ -843,11 +854,13 @@ export declare const styled: <Type extends import("@stitches/react/types/util").
|
|
|
843
854
|
textGrayHover: string;
|
|
844
855
|
txButton: string;
|
|
845
856
|
obolGreen: string;
|
|
857
|
+
obolMidGreen: string;
|
|
846
858
|
obolGreenHover: string;
|
|
847
859
|
obolGreenLight: string;
|
|
848
860
|
obolDarkDark: string;
|
|
849
861
|
obolDisabled: string;
|
|
850
862
|
linkButtonHover: string;
|
|
863
|
+
progressTrackerGreen: string;
|
|
851
864
|
coordinate: string;
|
|
852
865
|
coordinateHover: string;
|
|
853
866
|
test: string;
|
|
@@ -863,6 +876,8 @@ export declare const styled: <Type extends import("@stitches/react/types/util").
|
|
|
863
876
|
bg03: string;
|
|
864
877
|
bg04: string;
|
|
865
878
|
bg05: string;
|
|
879
|
+
tooltip: string;
|
|
880
|
+
tooltip2: string;
|
|
866
881
|
};
|
|
867
882
|
space: {
|
|
868
883
|
1: string;
|
|
@@ -1242,6 +1257,7 @@ export declare const styled: <Type extends import("@stitches/react/types/util").
|
|
|
1242
1257
|
cardBackgroundLight: string;
|
|
1243
1258
|
textMiddle: string;
|
|
1244
1259
|
textLight: string;
|
|
1260
|
+
textLighter: string;
|
|
1245
1261
|
textTabHover: string;
|
|
1246
1262
|
textTabInactive: string;
|
|
1247
1263
|
textGreenDark: string;
|
|
@@ -1254,11 +1270,13 @@ export declare const styled: <Type extends import("@stitches/react/types/util").
|
|
|
1254
1270
|
textGrayHover: string;
|
|
1255
1271
|
txButton: string;
|
|
1256
1272
|
obolGreen: string;
|
|
1273
|
+
obolMidGreen: string;
|
|
1257
1274
|
obolGreenHover: string;
|
|
1258
1275
|
obolGreenLight: string;
|
|
1259
1276
|
obolDarkDark: string;
|
|
1260
1277
|
obolDisabled: string;
|
|
1261
1278
|
linkButtonHover: string;
|
|
1279
|
+
progressTrackerGreen: string;
|
|
1262
1280
|
coordinate: string;
|
|
1263
1281
|
coordinateHover: string;
|
|
1264
1282
|
test: string;
|
|
@@ -1274,6 +1292,8 @@ export declare const styled: <Type extends import("@stitches/react/types/util").
|
|
|
1274
1292
|
bg03: string;
|
|
1275
1293
|
bg04: string;
|
|
1276
1294
|
bg05: string;
|
|
1295
|
+
tooltip: string;
|
|
1296
|
+
tooltip2: string;
|
|
1277
1297
|
};
|
|
1278
1298
|
space: {
|
|
1279
1299
|
1: string;
|
|
@@ -1627,6 +1647,7 @@ export declare const styled: <Type extends import("@stitches/react/types/util").
|
|
|
1627
1647
|
cardBackgroundLight: string;
|
|
1628
1648
|
textMiddle: string;
|
|
1629
1649
|
textLight: string;
|
|
1650
|
+
textLighter: string;
|
|
1630
1651
|
textTabHover: string;
|
|
1631
1652
|
textTabInactive: string;
|
|
1632
1653
|
textGreenDark: string;
|
|
@@ -1639,11 +1660,13 @@ export declare const styled: <Type extends import("@stitches/react/types/util").
|
|
|
1639
1660
|
textGrayHover: string;
|
|
1640
1661
|
txButton: string;
|
|
1641
1662
|
obolGreen: string;
|
|
1663
|
+
obolMidGreen: string;
|
|
1642
1664
|
obolGreenHover: string;
|
|
1643
1665
|
obolGreenLight: string;
|
|
1644
1666
|
obolDarkDark: string;
|
|
1645
1667
|
obolDisabled: string;
|
|
1646
1668
|
linkButtonHover: string;
|
|
1669
|
+
progressTrackerGreen: string;
|
|
1647
1670
|
coordinate: string;
|
|
1648
1671
|
coordinateHover: string;
|
|
1649
1672
|
test: string;
|
|
@@ -1659,6 +1682,8 @@ export declare const styled: <Type extends import("@stitches/react/types/util").
|
|
|
1659
1682
|
bg03: string;
|
|
1660
1683
|
bg04: string;
|
|
1661
1684
|
bg05: string;
|
|
1685
|
+
tooltip: string;
|
|
1686
|
+
tooltip2: string;
|
|
1662
1687
|
};
|
|
1663
1688
|
space: {
|
|
1664
1689
|
1: string;
|
|
@@ -2012,6 +2037,7 @@ export declare const styled: <Type extends import("@stitches/react/types/util").
|
|
|
2012
2037
|
cardBackgroundLight: string;
|
|
2013
2038
|
textMiddle: string;
|
|
2014
2039
|
textLight: string;
|
|
2040
|
+
textLighter: string;
|
|
2015
2041
|
textTabHover: string;
|
|
2016
2042
|
textTabInactive: string;
|
|
2017
2043
|
textGreenDark: string;
|
|
@@ -2024,11 +2050,13 @@ export declare const styled: <Type extends import("@stitches/react/types/util").
|
|
|
2024
2050
|
textGrayHover: string;
|
|
2025
2051
|
txButton: string;
|
|
2026
2052
|
obolGreen: string;
|
|
2053
|
+
obolMidGreen: string;
|
|
2027
2054
|
obolGreenHover: string;
|
|
2028
2055
|
obolGreenLight: string;
|
|
2029
2056
|
obolDarkDark: string;
|
|
2030
2057
|
obolDisabled: string;
|
|
2031
2058
|
linkButtonHover: string;
|
|
2059
|
+
progressTrackerGreen: string;
|
|
2032
2060
|
coordinate: string;
|
|
2033
2061
|
coordinateHover: string;
|
|
2034
2062
|
test: string;
|
|
@@ -2044,6 +2072,8 @@ export declare const styled: <Type extends import("@stitches/react/types/util").
|
|
|
2044
2072
|
bg03: string;
|
|
2045
2073
|
bg04: string;
|
|
2046
2074
|
bg05: string;
|
|
2075
|
+
tooltip: string;
|
|
2076
|
+
tooltip2: string;
|
|
2047
2077
|
};
|
|
2048
2078
|
space: {
|
|
2049
2079
|
1: string;
|
|
@@ -2393,6 +2423,7 @@ export declare const styled: <Type extends import("@stitches/react/types/util").
|
|
|
2393
2423
|
cardBackgroundLight: import("@stitches/react/types/theme").Token<"cardBackgroundLight", string, "colors", "">;
|
|
2394
2424
|
textMiddle: import("@stitches/react/types/theme").Token<"textMiddle", string, "colors", "">;
|
|
2395
2425
|
textLight: import("@stitches/react/types/theme").Token<"textLight", string, "colors", "">;
|
|
2426
|
+
textLighter: import("@stitches/react/types/theme").Token<"textLighter", string, "colors", "">;
|
|
2396
2427
|
textTabHover: import("@stitches/react/types/theme").Token<"textTabHover", string, "colors", "">;
|
|
2397
2428
|
textTabInactive: import("@stitches/react/types/theme").Token<"textTabInactive", string, "colors", "">;
|
|
2398
2429
|
textGreenDark: import("@stitches/react/types/theme").Token<"textGreenDark", string, "colors", "">;
|
|
@@ -2405,11 +2436,13 @@ export declare const styled: <Type extends import("@stitches/react/types/util").
|
|
|
2405
2436
|
textGrayHover: import("@stitches/react/types/theme").Token<"textGrayHover", string, "colors", "">;
|
|
2406
2437
|
txButton: import("@stitches/react/types/theme").Token<"txButton", string, "colors", "">;
|
|
2407
2438
|
obolGreen: import("@stitches/react/types/theme").Token<"obolGreen", string, "colors", "">;
|
|
2439
|
+
obolMidGreen: import("@stitches/react/types/theme").Token<"obolMidGreen", string, "colors", "">;
|
|
2408
2440
|
obolGreenHover: import("@stitches/react/types/theme").Token<"obolGreenHover", string, "colors", "">;
|
|
2409
2441
|
obolGreenLight: import("@stitches/react/types/theme").Token<"obolGreenLight", string, "colors", "">;
|
|
2410
2442
|
obolDarkDark: import("@stitches/react/types/theme").Token<"obolDarkDark", string, "colors", "">;
|
|
2411
2443
|
obolDisabled: import("@stitches/react/types/theme").Token<"obolDisabled", string, "colors", "">;
|
|
2412
2444
|
linkButtonHover: import("@stitches/react/types/theme").Token<"linkButtonHover", string, "colors", "">;
|
|
2445
|
+
progressTrackerGreen: import("@stitches/react/types/theme").Token<"progressTrackerGreen", string, "colors", "">;
|
|
2413
2446
|
coordinate: import("@stitches/react/types/theme").Token<"coordinate", string, "colors", "">;
|
|
2414
2447
|
coordinateHover: import("@stitches/react/types/theme").Token<"coordinateHover", string, "colors", "">;
|
|
2415
2448
|
test: import("@stitches/react/types/theme").Token<"test", string, "colors", "">;
|
|
@@ -2425,6 +2458,8 @@ export declare const styled: <Type extends import("@stitches/react/types/util").
|
|
|
2425
2458
|
bg03: import("@stitches/react/types/theme").Token<"bg03", string, "colors", "">;
|
|
2426
2459
|
bg04: import("@stitches/react/types/theme").Token<"bg04", string, "colors", "">;
|
|
2427
2460
|
bg05: import("@stitches/react/types/theme").Token<"bg05", string, "colors", "">;
|
|
2461
|
+
tooltip: import("@stitches/react/types/theme").Token<"tooltip", string, "colors", "">;
|
|
2462
|
+
tooltip2: import("@stitches/react/types/theme").Token<"tooltip2", string, "colors", "">;
|
|
2428
2463
|
};
|
|
2429
2464
|
space: {
|
|
2430
2465
|
1: import("@stitches/react/types/theme").Token<"1", string, "space", "">;
|
|
@@ -2539,6 +2574,7 @@ export declare const styled: <Type extends import("@stitches/react/types/util").
|
|
|
2539
2574
|
cardBackgroundLight?: string | number | boolean | undefined;
|
|
2540
2575
|
textMiddle?: string | number | boolean | undefined;
|
|
2541
2576
|
textLight?: string | number | boolean | undefined;
|
|
2577
|
+
textLighter?: string | number | boolean | undefined;
|
|
2542
2578
|
textTabHover?: string | number | boolean | undefined;
|
|
2543
2579
|
textTabInactive?: string | number | boolean | undefined;
|
|
2544
2580
|
textGreenDark?: string | number | boolean | undefined;
|
|
@@ -2551,11 +2587,13 @@ export declare const styled: <Type extends import("@stitches/react/types/util").
|
|
|
2551
2587
|
textGrayHover?: string | number | boolean | undefined;
|
|
2552
2588
|
txButton?: string | number | boolean | undefined;
|
|
2553
2589
|
obolGreen?: string | number | boolean | undefined;
|
|
2590
|
+
obolMidGreen?: string | number | boolean | undefined;
|
|
2554
2591
|
obolGreenHover?: string | number | boolean | undefined;
|
|
2555
2592
|
obolGreenLight?: string | number | boolean | undefined;
|
|
2556
2593
|
obolDarkDark?: string | number | boolean | undefined;
|
|
2557
2594
|
obolDisabled?: string | number | boolean | undefined;
|
|
2558
2595
|
linkButtonHover?: string | number | boolean | undefined;
|
|
2596
|
+
progressTrackerGreen?: string | number | boolean | undefined;
|
|
2559
2597
|
coordinate?: string | number | boolean | undefined;
|
|
2560
2598
|
coordinateHover?: string | number | boolean | undefined;
|
|
2561
2599
|
test?: string | number | boolean | undefined;
|
|
@@ -2571,6 +2609,8 @@ export declare const styled: <Type extends import("@stitches/react/types/util").
|
|
|
2571
2609
|
bg03?: string | number | boolean | undefined;
|
|
2572
2610
|
bg04?: string | number | boolean | undefined;
|
|
2573
2611
|
bg05?: string | number | boolean | undefined;
|
|
2612
|
+
tooltip?: string | number | boolean | undefined;
|
|
2613
|
+
tooltip2?: string | number | boolean | undefined;
|
|
2574
2614
|
} | undefined;
|
|
2575
2615
|
space?: {
|
|
2576
2616
|
1?: string | number | boolean | undefined;
|
|
@@ -2690,6 +2730,7 @@ export declare const styled: <Type extends import("@stitches/react/types/util").
|
|
|
2690
2730
|
cardBackgroundLight?: string | number | boolean | undefined;
|
|
2691
2731
|
textMiddle?: string | number | boolean | undefined;
|
|
2692
2732
|
textLight?: string | number | boolean | undefined;
|
|
2733
|
+
textLighter?: string | number | boolean | undefined;
|
|
2693
2734
|
textTabHover?: string | number | boolean | undefined;
|
|
2694
2735
|
textTabInactive?: string | number | boolean | undefined;
|
|
2695
2736
|
textGreenDark?: string | number | boolean | undefined;
|
|
@@ -2702,11 +2743,13 @@ export declare const styled: <Type extends import("@stitches/react/types/util").
|
|
|
2702
2743
|
textGrayHover?: string | number | boolean | undefined;
|
|
2703
2744
|
txButton?: string | number | boolean | undefined;
|
|
2704
2745
|
obolGreen?: string | number | boolean | undefined;
|
|
2746
|
+
obolMidGreen?: string | number | boolean | undefined;
|
|
2705
2747
|
obolGreenHover?: string | number | boolean | undefined;
|
|
2706
2748
|
obolGreenLight?: string | number | boolean | undefined;
|
|
2707
2749
|
obolDarkDark?: string | number | boolean | undefined;
|
|
2708
2750
|
obolDisabled?: string | number | boolean | undefined;
|
|
2709
2751
|
linkButtonHover?: string | number | boolean | undefined;
|
|
2752
|
+
progressTrackerGreen?: string | number | boolean | undefined;
|
|
2710
2753
|
coordinate?: string | number | boolean | undefined;
|
|
2711
2754
|
coordinateHover?: string | number | boolean | undefined;
|
|
2712
2755
|
test?: string | number | boolean | undefined;
|
|
@@ -2722,6 +2765,8 @@ export declare const styled: <Type extends import("@stitches/react/types/util").
|
|
|
2722
2765
|
bg03?: string | number | boolean | undefined;
|
|
2723
2766
|
bg04?: string | number | boolean | undefined;
|
|
2724
2767
|
bg05?: string | number | boolean | undefined;
|
|
2768
|
+
tooltip?: string | number | boolean | undefined;
|
|
2769
|
+
tooltip2?: string | number | boolean | undefined;
|
|
2725
2770
|
} | undefined;
|
|
2726
2771
|
space?: {
|
|
2727
2772
|
1?: string | number | boolean | undefined;
|
|
@@ -2857,6 +2902,7 @@ export declare const styled: <Type extends import("@stitches/react/types/util").
|
|
|
2857
2902
|
cardBackgroundLight: string;
|
|
2858
2903
|
textMiddle: string;
|
|
2859
2904
|
textLight: string;
|
|
2905
|
+
textLighter: string;
|
|
2860
2906
|
textTabHover: string;
|
|
2861
2907
|
textTabInactive: string;
|
|
2862
2908
|
textGreenDark: string;
|
|
@@ -2869,11 +2915,13 @@ export declare const styled: <Type extends import("@stitches/react/types/util").
|
|
|
2869
2915
|
textGrayHover: string;
|
|
2870
2916
|
txButton: string;
|
|
2871
2917
|
obolGreen: string;
|
|
2918
|
+
obolMidGreen: string;
|
|
2872
2919
|
obolGreenHover: string;
|
|
2873
2920
|
obolGreenLight: string;
|
|
2874
2921
|
obolDarkDark: string;
|
|
2875
2922
|
obolDisabled: string;
|
|
2876
2923
|
linkButtonHover: string;
|
|
2924
|
+
progressTrackerGreen: string;
|
|
2877
2925
|
coordinate: string;
|
|
2878
2926
|
coordinateHover: string;
|
|
2879
2927
|
test: string;
|
|
@@ -2889,6 +2937,8 @@ export declare const styled: <Type extends import("@stitches/react/types/util").
|
|
|
2889
2937
|
bg03: string;
|
|
2890
2938
|
bg04: string;
|
|
2891
2939
|
bg05: string;
|
|
2940
|
+
tooltip: string;
|
|
2941
|
+
tooltip2: string;
|
|
2892
2942
|
};
|
|
2893
2943
|
space: {
|
|
2894
2944
|
1: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@obolnetwork/obol-ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.9",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "dist/index.es.js",
|
|
6
6
|
"license": "MIT",
|
|
@@ -20,12 +20,17 @@
|
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@radix-ui/react-accordion": "^0.1.6",
|
|
23
|
+
"@radix-ui/react-dialog": "^0.1.7",
|
|
24
|
+
"@radix-ui/react-icons": "^1.1.1",
|
|
25
|
+
"@radix-ui/react-radio-group": "^0.1.5",
|
|
23
26
|
"@radix-ui/react-tabs": "^0.1.5",
|
|
24
27
|
"@radix-ui/react-toggle-group": "^0.1.5",
|
|
28
|
+
"@radix-ui/react-tooltip": "^0.1.7",
|
|
25
29
|
"@stitches/react": "~1.2.8",
|
|
26
30
|
"next": "12.1.0",
|
|
27
31
|
"react": "17.0.2",
|
|
28
|
-
"react-dom": "17.0.2"
|
|
32
|
+
"react-dom": "17.0.2",
|
|
33
|
+
"uuidv4": "^6.2.13"
|
|
29
34
|
},
|
|
30
35
|
"devDependencies": {
|
|
31
36
|
"@babel/core": "^7.17.8",
|