@agg-market/ui 7.0.0 → 8.0.0
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/{chunk-KQKLLL4D.mjs → chunk-JE4MV5RL.mjs} +8 -11
- package/dist/{chunk-L5U7RGJV.mjs → chunk-KRCRD4AJ.mjs} +11 -14
- package/dist/{chunk-AVHMI47G.mjs → chunk-SBLIHCN2.mjs} +5 -6
- package/dist/{chunk-6I474QXG.mjs → chunk-TLFRGJ5B.mjs} +18 -21
- package/dist/{chunk-MUB7NYWZ.mjs → chunk-WKY3IN52.mjs} +3446 -990
- package/dist/events.js +2825 -2714
- package/dist/events.mjs +2 -4
- package/dist/index.js +1506 -1389
- package/dist/index.mjs +26 -32
- package/dist/modals.js +821 -687
- package/dist/modals.mjs +2 -3
- package/dist/pages.js +2362 -2249
- package/dist/pages.mjs +4 -7
- package/dist/primitives.js +407 -290
- package/dist/primitives.mjs +22 -28
- package/dist/trading.js +564 -451
- package/dist/trading.mjs +2 -4
- package/dist/types/primitives/icon/index.d.mts +2 -1
- package/dist/types/primitives/icon/index.d.ts +2 -1
- package/dist/types/primitives/icon/registry.d.mts +4 -0
- package/dist/types/primitives/icon/registry.d.ts +4 -0
- package/dist/types/primitives/icon/svg/image.d.mts +5 -0
- package/dist/types/primitives/icon/svg/image.d.ts +5 -0
- package/dist/types/primitives/index.d.mts +1 -0
- package/dist/types/primitives/index.d.ts +1 -0
- package/dist/types/primitives/remote-image/index.d.mts +6 -0
- package/dist/types/primitives/remote-image/index.d.ts +6 -0
- package/dist/types/primitives/remote-image/remote-image.constants.d.mts +4 -0
- package/dist/types/primitives/remote-image/remote-image.constants.d.ts +4 -0
- package/dist/types/primitives/remote-image/remote-image.types.d.mts +16 -0
- package/dist/types/primitives/remote-image/remote-image.types.d.ts +16 -0
- package/package.json +1 -1
- package/dist/chunk-EEQPPN7N.mjs +0 -214
- package/dist/chunk-EERL6BZF.mjs +0 -997
- package/dist/chunk-OAJBTVZT.mjs +0 -119
- package/dist/chunk-OVQVAUAI.mjs +0 -420
- package/dist/chunk-ZYUJ7YEJ.mjs +0 -645
package/dist/primitives.mjs
CHANGED
|
@@ -1,38 +1,13 @@
|
|
|
1
|
-
import {
|
|
2
|
-
HelloWorld,
|
|
3
|
-
LoadingIcon,
|
|
4
|
-
NumberValue,
|
|
5
|
-
Search
|
|
6
|
-
} from "./chunk-OVQVAUAI.mjs";
|
|
7
|
-
import {
|
|
8
|
-
Badge,
|
|
9
|
-
LineChart,
|
|
10
|
-
StateMessage,
|
|
11
|
-
SwitchButton,
|
|
12
|
-
Typography,
|
|
13
|
-
badgeSizes,
|
|
14
|
-
typographyVariants
|
|
15
|
-
} from "./chunk-ZYUJ7YEJ.mjs";
|
|
16
|
-
import {
|
|
17
|
-
Modal
|
|
18
|
-
} from "./chunk-EEQPPN7N.mjs";
|
|
19
|
-
import {
|
|
20
|
-
InlineAlert
|
|
21
|
-
} from "./chunk-OAJBTVZT.mjs";
|
|
22
|
-
import {
|
|
23
|
-
Card,
|
|
24
|
-
Skeleton,
|
|
25
|
-
Tabs,
|
|
26
|
-
skeletonViews
|
|
27
|
-
} from "./chunk-EERL6BZF.mjs";
|
|
28
1
|
import {
|
|
29
2
|
AppleIcon,
|
|
30
3
|
ArrowTrendUpIcon,
|
|
31
4
|
ArrowsToDotIcon,
|
|
5
|
+
Badge,
|
|
32
6
|
BankIcon,
|
|
33
7
|
BestPricesIcon,
|
|
34
8
|
BoltIcon,
|
|
35
9
|
Button,
|
|
10
|
+
Card,
|
|
36
11
|
ChartCandlestickIcon,
|
|
37
12
|
ChartLineIcon,
|
|
38
13
|
CheckCircleIcon,
|
|
@@ -52,30 +27,47 @@ import {
|
|
|
52
27
|
EthereumIcon,
|
|
53
28
|
ExternalLinkIcon,
|
|
54
29
|
GoogleIcon,
|
|
30
|
+
HelloWorld,
|
|
55
31
|
Icon,
|
|
32
|
+
ImageIcon,
|
|
56
33
|
InfoIcon,
|
|
34
|
+
InlineAlert,
|
|
35
|
+
LineChart,
|
|
57
36
|
LinkAccountsIcon,
|
|
37
|
+
LoadingIcon,
|
|
38
|
+
Modal,
|
|
39
|
+
NumberValue,
|
|
58
40
|
PencilIcon,
|
|
59
41
|
PlaySquareIcon,
|
|
60
42
|
ProfileIcon,
|
|
43
|
+
RemoteImage,
|
|
61
44
|
RevenueAltIcon,
|
|
45
|
+
Search,
|
|
62
46
|
SearchIcon,
|
|
63
47
|
Select,
|
|
64
48
|
ShieldTrustIcon,
|
|
49
|
+
Skeleton,
|
|
65
50
|
SolanaIcon,
|
|
51
|
+
StateMessage,
|
|
66
52
|
StayInControlIcon,
|
|
53
|
+
SwitchButton,
|
|
54
|
+
Tabs,
|
|
67
55
|
TriangleDownIcon,
|
|
68
56
|
TriangleUpFilledIcon,
|
|
69
57
|
TriangleUpIcon,
|
|
58
|
+
Typography,
|
|
70
59
|
UploadIcon,
|
|
71
60
|
VenueLogo,
|
|
72
61
|
WalletAvatarIcon,
|
|
73
62
|
WalletIcon,
|
|
74
63
|
WarningFilledIcon,
|
|
75
64
|
WarningIcon,
|
|
65
|
+
badgeSizes,
|
|
76
66
|
iconNames,
|
|
67
|
+
skeletonViews,
|
|
68
|
+
typographyVariants,
|
|
77
69
|
venueLogoNames
|
|
78
|
-
} from "./chunk-
|
|
70
|
+
} from "./chunk-WKY3IN52.mjs";
|
|
79
71
|
export {
|
|
80
72
|
AppleIcon,
|
|
81
73
|
ArrowTrendUpIcon,
|
|
@@ -107,6 +99,7 @@ export {
|
|
|
107
99
|
GoogleIcon,
|
|
108
100
|
HelloWorld,
|
|
109
101
|
Icon,
|
|
102
|
+
ImageIcon,
|
|
110
103
|
InfoIcon,
|
|
111
104
|
InlineAlert,
|
|
112
105
|
LineChart,
|
|
@@ -117,6 +110,7 @@ export {
|
|
|
117
110
|
PencilIcon,
|
|
118
111
|
PlaySquareIcon,
|
|
119
112
|
ProfileIcon,
|
|
113
|
+
RemoteImage,
|
|
120
114
|
RevenueAltIcon,
|
|
121
115
|
Search,
|
|
122
116
|
SearchIcon,
|