@tuwaio/nova-transactions 0.3.1 → 0.4.1
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/{TransactionsInfoModal-D7eykTZp.d.cts → TransactionsInfoModal-EKgcn7Ot.d.cts} +217 -8
- package/dist/{TransactionsInfoModal-D7eykTZp.d.ts → TransactionsInfoModal-EKgcn7Ot.d.ts} +217 -8
- package/dist/chunk-66O24XG2.cjs +2 -0
- package/dist/chunk-QNGBNGYN.js +2 -0
- package/dist/index.cjs +1 -1
- package/dist/index.css +336 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/dist/providers/index.cjs +1 -1
- package/dist/providers/index.d.cts +2 -2
- package/dist/providers/index.d.ts +2 -2
- package/dist/providers/index.js +1 -1
- package/package.json +16 -16
- package/dist/chunk-IUJ7P7EE.cjs +0 -1
- package/dist/chunk-PUSPAQGZ.js +0 -1
package/dist/index.css
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
|
-
/*! tailwindcss v4.2.
|
|
1
|
+
/*! tailwindcss v4.2.4 | MIT License | https://tailwindcss.com */
|
|
2
2
|
@layer properties;
|
|
3
3
|
@layer theme, base, components, utilities;
|
|
4
4
|
@layer theme {
|
|
5
5
|
:root, :host {
|
|
6
6
|
--novatx-font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',
|
|
7
7
|
monospace;
|
|
8
|
+
--novatx-color-red-500: oklch(63.7% 0.237 25.331);
|
|
9
|
+
--novatx-color-amber-500: oklch(76.9% 0.188 70.08);
|
|
10
|
+
--novatx-color-emerald-500: oklch(69.6% 0.17 162.48);
|
|
11
|
+
--novatx-color-rose-500: oklch(64.5% 0.246 16.439);
|
|
8
12
|
--novatx-color-gray-400: oklch(70.7% 0.022 261.325);
|
|
9
13
|
--novatx-color-gray-500: oklch(55.1% 0.027 264.364);
|
|
10
14
|
--novatx-color-white: #fff;
|
|
@@ -20,9 +24,14 @@
|
|
|
20
24
|
--novatx-font-weight-medium: 500;
|
|
21
25
|
--novatx-font-weight-semibold: 600;
|
|
22
26
|
--novatx-font-weight-bold: 700;
|
|
27
|
+
--novatx-font-weight-black: 900;
|
|
28
|
+
--novatx-tracking-tight: -0.025em;
|
|
29
|
+
--novatx-tracking-widest: 0.1em;
|
|
30
|
+
--novatx-leading-relaxed: 1.625;
|
|
23
31
|
--novatx-ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
|
|
24
32
|
--novatx-animate-spin: spin 1s linear infinite;
|
|
25
33
|
--novatx-animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
34
|
+
--novatx-blur-sm: 8px;
|
|
26
35
|
--novatx-default-transition-duration: 150ms;
|
|
27
36
|
--novatx-default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
28
37
|
}
|
|
@@ -34,12 +43,18 @@
|
|
|
34
43
|
.novatx\:relative {
|
|
35
44
|
position: relative;
|
|
36
45
|
}
|
|
46
|
+
.novatx\:-top-1 {
|
|
47
|
+
top: calc(var(--novatx-spacing) * -1);
|
|
48
|
+
}
|
|
37
49
|
.novatx\:top-\[10px\] {
|
|
38
50
|
top: 10px;
|
|
39
51
|
}
|
|
40
52
|
.novatx\:right-1\/2 {
|
|
41
53
|
right: calc(1 / 2 * 100%);
|
|
42
54
|
}
|
|
55
|
+
.novatx\:-left-1 {
|
|
56
|
+
left: calc(var(--novatx-spacing) * -1);
|
|
57
|
+
}
|
|
43
58
|
.novatx\:z-10 {
|
|
44
59
|
z-index: 10;
|
|
45
60
|
}
|
|
@@ -58,12 +73,21 @@
|
|
|
58
73
|
.novatx\:mb-2 {
|
|
59
74
|
margin-bottom: calc(var(--novatx-spacing) * 2);
|
|
60
75
|
}
|
|
76
|
+
.novatx\:ml-4 {
|
|
77
|
+
margin-left: calc(var(--novatx-spacing) * 4);
|
|
78
|
+
}
|
|
79
|
+
.novatx\:ml-auto {
|
|
80
|
+
margin-left: auto;
|
|
81
|
+
}
|
|
61
82
|
.novatx\:block {
|
|
62
83
|
display: block;
|
|
63
84
|
}
|
|
64
85
|
.novatx\:flex {
|
|
65
86
|
display: flex;
|
|
66
87
|
}
|
|
88
|
+
.novatx\:grid {
|
|
89
|
+
display: grid;
|
|
90
|
+
}
|
|
67
91
|
.novatx\:inline-flex {
|
|
68
92
|
display: inline-flex;
|
|
69
93
|
}
|
|
@@ -76,12 +100,18 @@
|
|
|
76
100
|
.novatx\:h-3 {
|
|
77
101
|
height: calc(var(--novatx-spacing) * 3);
|
|
78
102
|
}
|
|
103
|
+
.novatx\:h-3\.5 {
|
|
104
|
+
height: calc(var(--novatx-spacing) * 3.5);
|
|
105
|
+
}
|
|
79
106
|
.novatx\:h-4 {
|
|
80
107
|
height: calc(var(--novatx-spacing) * 4);
|
|
81
108
|
}
|
|
82
109
|
.novatx\:h-5 {
|
|
83
110
|
height: calc(var(--novatx-spacing) * 5);
|
|
84
111
|
}
|
|
112
|
+
.novatx\:h-6 {
|
|
113
|
+
height: calc(var(--novatx-spacing) * 6);
|
|
114
|
+
}
|
|
85
115
|
.novatx\:h-8 {
|
|
86
116
|
height: calc(var(--novatx-spacing) * 8);
|
|
87
117
|
}
|
|
@@ -91,12 +121,21 @@
|
|
|
91
121
|
.novatx\:h-16 {
|
|
92
122
|
height: calc(var(--novatx-spacing) * 16);
|
|
93
123
|
}
|
|
124
|
+
.novatx\:h-\[42px\] {
|
|
125
|
+
height: 42px;
|
|
126
|
+
}
|
|
127
|
+
.novatx\:h-px {
|
|
128
|
+
height: 1px;
|
|
129
|
+
}
|
|
94
130
|
.novatx\:max-h-24 {
|
|
95
131
|
max-height: calc(var(--novatx-spacing) * 24);
|
|
96
132
|
}
|
|
97
133
|
.novatx\:max-h-\[95dvh\] {
|
|
98
134
|
max-height: 95dvh;
|
|
99
135
|
}
|
|
136
|
+
.novatx\:max-h-\[300px\] {
|
|
137
|
+
max-height: 300px;
|
|
138
|
+
}
|
|
100
139
|
.novatx\:max-h-\[400px\] {
|
|
101
140
|
max-height: 400px;
|
|
102
141
|
}
|
|
@@ -109,12 +148,18 @@
|
|
|
109
148
|
.novatx\:w-3 {
|
|
110
149
|
width: calc(var(--novatx-spacing) * 3);
|
|
111
150
|
}
|
|
151
|
+
.novatx\:w-3\.5 {
|
|
152
|
+
width: calc(var(--novatx-spacing) * 3.5);
|
|
153
|
+
}
|
|
112
154
|
.novatx\:w-4 {
|
|
113
155
|
width: calc(var(--novatx-spacing) * 4);
|
|
114
156
|
}
|
|
115
157
|
.novatx\:w-5 {
|
|
116
158
|
width: calc(var(--novatx-spacing) * 5);
|
|
117
159
|
}
|
|
160
|
+
.novatx\:w-6 {
|
|
161
|
+
width: calc(var(--novatx-spacing) * 6);
|
|
162
|
+
}
|
|
118
163
|
.novatx\:w-8 {
|
|
119
164
|
width: calc(var(--novatx-spacing) * 8);
|
|
120
165
|
}
|
|
@@ -130,6 +175,18 @@
|
|
|
130
175
|
.novatx\:w-full {
|
|
131
176
|
width: 100%;
|
|
132
177
|
}
|
|
178
|
+
.novatx\:max-w-\[55\%\] {
|
|
179
|
+
max-width: 55%;
|
|
180
|
+
}
|
|
181
|
+
.novatx\:max-w-\[200px\] {
|
|
182
|
+
max-width: 200px;
|
|
183
|
+
}
|
|
184
|
+
.novatx\:min-w-0 {
|
|
185
|
+
min-width: calc(var(--novatx-spacing) * 0);
|
|
186
|
+
}
|
|
187
|
+
.novatx\:min-w-\[18px\] {
|
|
188
|
+
min-width: 18px;
|
|
189
|
+
}
|
|
133
190
|
.novatx\:min-w-\[80px\] {
|
|
134
191
|
min-width: 80px;
|
|
135
192
|
}
|
|
@@ -139,6 +196,12 @@
|
|
|
139
196
|
.novatx\:flex-shrink-0 {
|
|
140
197
|
flex-shrink: 0;
|
|
141
198
|
}
|
|
199
|
+
.novatx\:shrink-0 {
|
|
200
|
+
flex-shrink: 0;
|
|
201
|
+
}
|
|
202
|
+
.novatx\:animate-\[novatx-fade-out_0\.4s_ease-out_2s_forwards\] {
|
|
203
|
+
animation: novatx-fade-out 0.4s ease-out 2s forwards;
|
|
204
|
+
}
|
|
142
205
|
.novatx\:animate-pulse {
|
|
143
206
|
animation: var(--novatx-animate-pulse);
|
|
144
207
|
}
|
|
@@ -148,6 +211,9 @@
|
|
|
148
211
|
.novatx\:cursor-pointer {
|
|
149
212
|
cursor: pointer;
|
|
150
213
|
}
|
|
214
|
+
.novatx\:grid-cols-1 {
|
|
215
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
216
|
+
}
|
|
151
217
|
.novatx\:flex-col {
|
|
152
218
|
flex-direction: column;
|
|
153
219
|
}
|
|
@@ -172,12 +238,49 @@
|
|
|
172
238
|
.novatx\:gap-2 {
|
|
173
239
|
gap: calc(var(--novatx-spacing) * 2);
|
|
174
240
|
}
|
|
241
|
+
.novatx\:gap-2\.5 {
|
|
242
|
+
gap: calc(var(--novatx-spacing) * 2.5);
|
|
243
|
+
}
|
|
175
244
|
.novatx\:gap-3 {
|
|
176
245
|
gap: calc(var(--novatx-spacing) * 3);
|
|
177
246
|
}
|
|
178
247
|
.novatx\:gap-4 {
|
|
179
248
|
gap: calc(var(--novatx-spacing) * 4);
|
|
180
249
|
}
|
|
250
|
+
.novatx\:gap-6 {
|
|
251
|
+
gap: calc(var(--novatx-spacing) * 6);
|
|
252
|
+
}
|
|
253
|
+
.novatx\:gap-8 {
|
|
254
|
+
gap: calc(var(--novatx-spacing) * 8);
|
|
255
|
+
}
|
|
256
|
+
.novatx\:space-y-1 {
|
|
257
|
+
:where(& > :not(:last-child)) {
|
|
258
|
+
--tw-space-y-reverse: 0;
|
|
259
|
+
margin-block-start: calc(calc(var(--novatx-spacing) * 1) * var(--tw-space-y-reverse));
|
|
260
|
+
margin-block-end: calc(calc(var(--novatx-spacing) * 1) * calc(1 - var(--tw-space-y-reverse)));
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
.novatx\:space-y-1\.5 {
|
|
264
|
+
:where(& > :not(:last-child)) {
|
|
265
|
+
--tw-space-y-reverse: 0;
|
|
266
|
+
margin-block-start: calc(calc(var(--novatx-spacing) * 1.5) * var(--tw-space-y-reverse));
|
|
267
|
+
margin-block-end: calc(calc(var(--novatx-spacing) * 1.5) * calc(1 - var(--tw-space-y-reverse)));
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
.novatx\:space-y-2 {
|
|
271
|
+
:where(& > :not(:last-child)) {
|
|
272
|
+
--tw-space-y-reverse: 0;
|
|
273
|
+
margin-block-start: calc(calc(var(--novatx-spacing) * 2) * var(--tw-space-y-reverse));
|
|
274
|
+
margin-block-end: calc(calc(var(--novatx-spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
.novatx\:space-y-6 {
|
|
278
|
+
:where(& > :not(:last-child)) {
|
|
279
|
+
--tw-space-y-reverse: 0;
|
|
280
|
+
margin-block-start: calc(calc(var(--novatx-spacing) * 6) * var(--tw-space-y-reverse));
|
|
281
|
+
margin-block-end: calc(calc(var(--novatx-spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));
|
|
282
|
+
}
|
|
283
|
+
}
|
|
181
284
|
.novatx\:gap-x-1 {
|
|
182
285
|
-moz-column-gap: calc(var(--novatx-spacing) * 1);
|
|
183
286
|
column-gap: calc(var(--novatx-spacing) * 1);
|
|
@@ -196,6 +299,31 @@
|
|
|
196
299
|
.novatx\:gap-y-3 {
|
|
197
300
|
row-gap: calc(var(--novatx-spacing) * 3);
|
|
198
301
|
}
|
|
302
|
+
.novatx\:divide-y {
|
|
303
|
+
:where(& > :not(:last-child)) {
|
|
304
|
+
--tw-divide-y-reverse: 0;
|
|
305
|
+
border-bottom-style: var(--tw-border-style);
|
|
306
|
+
border-top-style: var(--tw-border-style);
|
|
307
|
+
border-top-width: calc(1px * var(--tw-divide-y-reverse));
|
|
308
|
+
border-bottom-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
.novatx\:divide-\[var\(--tuwa-border-primary\)\] {
|
|
312
|
+
:where(& > :not(:last-child)) {
|
|
313
|
+
border-color: var(--tuwa-border-primary);
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
.novatx\:truncate {
|
|
317
|
+
overflow: hidden;
|
|
318
|
+
text-overflow: ellipsis;
|
|
319
|
+
white-space: nowrap;
|
|
320
|
+
}
|
|
321
|
+
.novatx\:overflow-auto {
|
|
322
|
+
overflow: auto;
|
|
323
|
+
}
|
|
324
|
+
.novatx\:overflow-hidden {
|
|
325
|
+
overflow: hidden;
|
|
326
|
+
}
|
|
199
327
|
.novatx\:overflow-y-auto {
|
|
200
328
|
overflow-y: auto;
|
|
201
329
|
}
|
|
@@ -228,6 +356,10 @@
|
|
|
228
356
|
border-bottom-style: var(--tw-border-style);
|
|
229
357
|
border-bottom-width: 1px;
|
|
230
358
|
}
|
|
359
|
+
.novatx\:border-none {
|
|
360
|
+
--tw-border-style: none;
|
|
361
|
+
border-style: none;
|
|
362
|
+
}
|
|
231
363
|
.novatx\:border-\[var\(--tuwa-border-primary\)\] {
|
|
232
364
|
border-color: var(--tuwa-border-primary);
|
|
233
365
|
}
|
|
@@ -249,18 +381,45 @@
|
|
|
249
381
|
.novatx\:border-\[var\(--tuwa-pending-icon\)\] {
|
|
250
382
|
border-color: var(--tuwa-pending-icon);
|
|
251
383
|
}
|
|
384
|
+
.novatx\:border-\[var\(--tuwa-pending-icon\)\]\/30 {
|
|
385
|
+
border-color: var(--tuwa-pending-icon);
|
|
386
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
387
|
+
border-color: color-mix(in oklab, var(--tuwa-pending-icon) 30%, transparent);
|
|
388
|
+
}
|
|
389
|
+
}
|
|
252
390
|
.novatx\:border-\[var\(--tuwa-success-icon\)\] {
|
|
253
391
|
border-color: var(--tuwa-success-icon);
|
|
254
392
|
}
|
|
393
|
+
.novatx\:border-\[var\(--tuwa-success-icon\)\]\/30 {
|
|
394
|
+
border-color: var(--tuwa-success-icon);
|
|
395
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
396
|
+
border-color: color-mix(in oklab, var(--tuwa-success-icon) 30%, transparent);
|
|
397
|
+
}
|
|
398
|
+
}
|
|
399
|
+
.novatx\:border-\[var\(--tuwa-text-secondary\)\] {
|
|
400
|
+
border-color: var(--tuwa-text-secondary);
|
|
401
|
+
}
|
|
402
|
+
.novatx\:border-t-transparent {
|
|
403
|
+
border-top-color: transparent;
|
|
404
|
+
}
|
|
255
405
|
.novatx\:\!bg-transparent {
|
|
256
406
|
background-color: transparent !important;
|
|
257
407
|
}
|
|
258
408
|
.novatx\:bg-\[var\(--tuwa-bg-muted\)\] {
|
|
259
409
|
background-color: var(--tuwa-bg-muted);
|
|
260
410
|
}
|
|
411
|
+
.novatx\:bg-\[var\(--tuwa-bg-muted\)\]\/50 {
|
|
412
|
+
background-color: var(--tuwa-bg-muted);
|
|
413
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
414
|
+
background-color: color-mix(in oklab, var(--tuwa-bg-muted) 50%, transparent);
|
|
415
|
+
}
|
|
416
|
+
}
|
|
261
417
|
.novatx\:bg-\[var\(--tuwa-bg-primary\)\] {
|
|
262
418
|
background-color: var(--tuwa-bg-primary);
|
|
263
419
|
}
|
|
420
|
+
.novatx\:bg-\[var\(--tuwa-bg-secondary\)\] {
|
|
421
|
+
background-color: var(--tuwa-bg-secondary);
|
|
422
|
+
}
|
|
264
423
|
.novatx\:bg-\[var\(--tuwa-border-primary\)\] {
|
|
265
424
|
background-color: var(--tuwa-border-primary);
|
|
266
425
|
}
|
|
@@ -282,6 +441,12 @@
|
|
|
282
441
|
.novatx\:bg-\[var\(--tuwa-pending-bg\)\] {
|
|
283
442
|
background-color: var(--tuwa-pending-bg);
|
|
284
443
|
}
|
|
444
|
+
.novatx\:bg-\[var\(--tuwa-pending-bg\)\]\/50 {
|
|
445
|
+
background-color: var(--tuwa-pending-bg);
|
|
446
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
447
|
+
background-color: color-mix(in oklab, var(--tuwa-pending-bg) 50%, transparent);
|
|
448
|
+
}
|
|
449
|
+
}
|
|
285
450
|
.novatx\:bg-\[var\(--tuwa-pending-icon\)\] {
|
|
286
451
|
background-color: var(--tuwa-pending-icon);
|
|
287
452
|
}
|
|
@@ -291,12 +456,30 @@
|
|
|
291
456
|
.novatx\:bg-\[var\(--tuwa-success-icon\)\] {
|
|
292
457
|
background-color: var(--tuwa-success-icon);
|
|
293
458
|
}
|
|
459
|
+
.novatx\:bg-amber-500\/10 {
|
|
460
|
+
background-color: var(--novatx-color-amber-500);
|
|
461
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
462
|
+
background-color: color-mix(in oklab, var(--novatx-color-amber-500) 10%, transparent);
|
|
463
|
+
}
|
|
464
|
+
}
|
|
465
|
+
.novatx\:bg-emerald-500\/10 {
|
|
466
|
+
background-color: var(--novatx-color-emerald-500);
|
|
467
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
468
|
+
background-color: color-mix(in oklab, var(--novatx-color-emerald-500) 10%, transparent);
|
|
469
|
+
}
|
|
470
|
+
}
|
|
294
471
|
.novatx\:bg-gray-400 {
|
|
295
472
|
background-color: var(--novatx-color-gray-400);
|
|
296
473
|
}
|
|
297
474
|
.novatx\:bg-gray-500 {
|
|
298
475
|
background-color: var(--novatx-color-gray-500);
|
|
299
476
|
}
|
|
477
|
+
.novatx\:bg-rose-500\/10 {
|
|
478
|
+
background-color: var(--novatx-color-rose-500);
|
|
479
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
480
|
+
background-color: color-mix(in oklab, var(--novatx-color-rose-500) 10%, transparent);
|
|
481
|
+
}
|
|
482
|
+
}
|
|
300
483
|
.novatx\:bg-transparent {
|
|
301
484
|
background-color: transparent;
|
|
302
485
|
}
|
|
@@ -315,6 +498,9 @@
|
|
|
315
498
|
.novatx\:\!p-0 {
|
|
316
499
|
padding: calc(var(--novatx-spacing) * 0) !important;
|
|
317
500
|
}
|
|
501
|
+
.novatx\:p-0 {
|
|
502
|
+
padding: calc(var(--novatx-spacing) * 0);
|
|
503
|
+
}
|
|
318
504
|
.novatx\:p-1 {
|
|
319
505
|
padding: calc(var(--novatx-spacing) * 1);
|
|
320
506
|
}
|
|
@@ -330,6 +516,9 @@
|
|
|
330
516
|
.novatx\:p-8 {
|
|
331
517
|
padding: calc(var(--novatx-spacing) * 8);
|
|
332
518
|
}
|
|
519
|
+
.novatx\:px-1\.5 {
|
|
520
|
+
padding-inline: calc(var(--novatx-spacing) * 1.5);
|
|
521
|
+
}
|
|
333
522
|
.novatx\:px-2 {
|
|
334
523
|
padding-inline: calc(var(--novatx-spacing) * 2);
|
|
335
524
|
}
|
|
@@ -339,6 +528,9 @@
|
|
|
339
528
|
.novatx\:px-4 {
|
|
340
529
|
padding-inline: calc(var(--novatx-spacing) * 4);
|
|
341
530
|
}
|
|
531
|
+
.novatx\:py-0\.5 {
|
|
532
|
+
padding-block: calc(var(--novatx-spacing) * 0.5);
|
|
533
|
+
}
|
|
342
534
|
.novatx\:py-1 {
|
|
343
535
|
padding-block: calc(var(--novatx-spacing) * 1);
|
|
344
536
|
}
|
|
@@ -348,6 +540,12 @@
|
|
|
348
540
|
.novatx\:py-2 {
|
|
349
541
|
padding-block: calc(var(--novatx-spacing) * 2);
|
|
350
542
|
}
|
|
543
|
+
.novatx\:py-2\.5 {
|
|
544
|
+
padding-block: calc(var(--novatx-spacing) * 2.5);
|
|
545
|
+
}
|
|
546
|
+
.novatx\:py-3 {
|
|
547
|
+
padding-block: calc(var(--novatx-spacing) * 3);
|
|
548
|
+
}
|
|
351
549
|
.novatx\:py-4 {
|
|
352
550
|
padding-block: calc(var(--novatx-spacing) * 4);
|
|
353
551
|
}
|
|
@@ -357,15 +555,24 @@
|
|
|
357
555
|
.novatx\:pt-3 {
|
|
358
556
|
padding-top: calc(var(--novatx-spacing) * 3);
|
|
359
557
|
}
|
|
558
|
+
.novatx\:pt-6 {
|
|
559
|
+
padding-top: calc(var(--novatx-spacing) * 6);
|
|
560
|
+
}
|
|
360
561
|
.novatx\:pr-1 {
|
|
361
562
|
padding-right: calc(var(--novatx-spacing) * 1);
|
|
362
563
|
}
|
|
363
564
|
.novatx\:pb-1 {
|
|
364
565
|
padding-bottom: calc(var(--novatx-spacing) * 1);
|
|
365
566
|
}
|
|
567
|
+
.novatx\:pb-2 {
|
|
568
|
+
padding-bottom: calc(var(--novatx-spacing) * 2);
|
|
569
|
+
}
|
|
366
570
|
.novatx\:text-center {
|
|
367
571
|
text-align: center;
|
|
368
572
|
}
|
|
573
|
+
.novatx\:text-right {
|
|
574
|
+
text-align: right;
|
|
575
|
+
}
|
|
369
576
|
.novatx\:font-mono {
|
|
370
577
|
font-family: var(--novatx-font-mono);
|
|
371
578
|
}
|
|
@@ -381,6 +588,17 @@
|
|
|
381
588
|
font-size: var(--novatx-text-xs);
|
|
382
589
|
line-height: var(--tw-leading, var(--novatx-text-xs--line-height));
|
|
383
590
|
}
|
|
591
|
+
.novatx\:text-\[10px\] {
|
|
592
|
+
font-size: 10px;
|
|
593
|
+
}
|
|
594
|
+
.novatx\:leading-relaxed {
|
|
595
|
+
--tw-leading: var(--novatx-leading-relaxed);
|
|
596
|
+
line-height: var(--novatx-leading-relaxed);
|
|
597
|
+
}
|
|
598
|
+
.novatx\:font-black {
|
|
599
|
+
--tw-font-weight: var(--novatx-font-weight-black);
|
|
600
|
+
font-weight: var(--novatx-font-weight-black);
|
|
601
|
+
}
|
|
384
602
|
.novatx\:font-bold {
|
|
385
603
|
--tw-font-weight: var(--novatx-font-weight-bold);
|
|
386
604
|
font-weight: var(--novatx-font-weight-bold);
|
|
@@ -393,9 +611,20 @@
|
|
|
393
611
|
--tw-font-weight: var(--novatx-font-weight-semibold);
|
|
394
612
|
font-weight: var(--novatx-font-weight-semibold);
|
|
395
613
|
}
|
|
614
|
+
.novatx\:tracking-tight {
|
|
615
|
+
--tw-tracking: var(--novatx-tracking-tight);
|
|
616
|
+
letter-spacing: var(--novatx-tracking-tight);
|
|
617
|
+
}
|
|
618
|
+
.novatx\:tracking-widest {
|
|
619
|
+
--tw-tracking: var(--novatx-tracking-widest);
|
|
620
|
+
letter-spacing: var(--novatx-tracking-widest);
|
|
621
|
+
}
|
|
396
622
|
.novatx\:break-all {
|
|
397
623
|
word-break: break-all;
|
|
398
624
|
}
|
|
625
|
+
.novatx\:whitespace-pre-wrap {
|
|
626
|
+
white-space: pre-wrap;
|
|
627
|
+
}
|
|
399
628
|
.novatx\:text-\[var\(--tuwa-error-icon\)\] {
|
|
400
629
|
color: var(--tuwa-error-icon);
|
|
401
630
|
}
|
|
@@ -441,9 +670,27 @@
|
|
|
441
670
|
.novatx\:text-\[var\(--tuwa-text-tertiary\)\] {
|
|
442
671
|
color: var(--tuwa-text-tertiary);
|
|
443
672
|
}
|
|
673
|
+
.novatx\:text-amber-500 {
|
|
674
|
+
color: var(--novatx-color-amber-500);
|
|
675
|
+
}
|
|
676
|
+
.novatx\:text-emerald-500 {
|
|
677
|
+
color: var(--novatx-color-emerald-500);
|
|
678
|
+
}
|
|
679
|
+
.novatx\:text-red-500 {
|
|
680
|
+
color: var(--novatx-color-red-500);
|
|
681
|
+
}
|
|
682
|
+
.novatx\:text-rose-500 {
|
|
683
|
+
color: var(--novatx-color-rose-500);
|
|
684
|
+
}
|
|
444
685
|
.novatx\:text-white {
|
|
445
686
|
color: var(--novatx-color-white);
|
|
446
687
|
}
|
|
688
|
+
.novatx\:capitalize {
|
|
689
|
+
text-transform: capitalize;
|
|
690
|
+
}
|
|
691
|
+
.novatx\:uppercase {
|
|
692
|
+
text-transform: uppercase;
|
|
693
|
+
}
|
|
447
694
|
.novatx\:\!shadow-none {
|
|
448
695
|
--tw-shadow: 0 0 #0000 !important;
|
|
449
696
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow) !important;
|
|
@@ -456,6 +703,14 @@
|
|
|
456
703
|
--tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
457
704
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
458
705
|
}
|
|
706
|
+
.novatx\:shadow-sm {
|
|
707
|
+
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
708
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
709
|
+
}
|
|
710
|
+
.novatx\:backdrop-blur-sm {
|
|
711
|
+
--tw-backdrop-blur: blur(var(--novatx-blur-sm));
|
|
712
|
+
backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
|
|
713
|
+
}
|
|
459
714
|
.novatx\:transition-all {
|
|
460
715
|
transition-property: all;
|
|
461
716
|
transition-timing-function: var(--tw-ease, var(--novatx-default-transition-timing-function));
|
|
@@ -479,6 +734,12 @@
|
|
|
479
734
|
--tw-ease: var(--novatx-ease-in-out);
|
|
480
735
|
transition-timing-function: var(--novatx-ease-in-out);
|
|
481
736
|
}
|
|
737
|
+
.novatx\:last\:border-b-0 {
|
|
738
|
+
&:last-child {
|
|
739
|
+
border-bottom-style: var(--tw-border-style);
|
|
740
|
+
border-bottom-width: 0px;
|
|
741
|
+
}
|
|
742
|
+
}
|
|
482
743
|
.novatx\:hover\:bg-\[var\(--tuwa-bg-muted\)\] {
|
|
483
744
|
&:hover {
|
|
484
745
|
@media (hover: hover) {
|
|
@@ -523,6 +784,13 @@
|
|
|
523
784
|
}
|
|
524
785
|
}
|
|
525
786
|
}
|
|
787
|
+
.novatx\:hover\:text-\[var\(--tuwa-text-accent\)\] {
|
|
788
|
+
&:hover {
|
|
789
|
+
@media (hover: hover) {
|
|
790
|
+
color: var(--tuwa-text-accent);
|
|
791
|
+
}
|
|
792
|
+
}
|
|
793
|
+
}
|
|
526
794
|
.novatx\:hover\:text-\[var\(--tuwa-text-primary\)\] {
|
|
527
795
|
&:hover {
|
|
528
796
|
@media (hover: hover) {
|
|
@@ -605,6 +873,16 @@
|
|
|
605
873
|
}
|
|
606
874
|
}
|
|
607
875
|
}
|
|
876
|
+
@property --tw-space-y-reverse {
|
|
877
|
+
syntax: "*";
|
|
878
|
+
inherits: false;
|
|
879
|
+
initial-value: 0;
|
|
880
|
+
}
|
|
881
|
+
@property --tw-divide-y-reverse {
|
|
882
|
+
syntax: "*";
|
|
883
|
+
inherits: false;
|
|
884
|
+
initial-value: 0;
|
|
885
|
+
}
|
|
608
886
|
@property --tw-border-style {
|
|
609
887
|
syntax: "*";
|
|
610
888
|
inherits: false;
|
|
@@ -652,10 +930,18 @@
|
|
|
652
930
|
inherits: false;
|
|
653
931
|
initial-value: 100%;
|
|
654
932
|
}
|
|
933
|
+
@property --tw-leading {
|
|
934
|
+
syntax: "*";
|
|
935
|
+
inherits: false;
|
|
936
|
+
}
|
|
655
937
|
@property --tw-font-weight {
|
|
656
938
|
syntax: "*";
|
|
657
939
|
inherits: false;
|
|
658
940
|
}
|
|
941
|
+
@property --tw-tracking {
|
|
942
|
+
syntax: "*";
|
|
943
|
+
inherits: false;
|
|
944
|
+
}
|
|
659
945
|
@property --tw-shadow {
|
|
660
946
|
syntax: "*";
|
|
661
947
|
inherits: false;
|
|
@@ -721,6 +1007,42 @@
|
|
|
721
1007
|
inherits: false;
|
|
722
1008
|
initial-value: 0 0 #0000;
|
|
723
1009
|
}
|
|
1010
|
+
@property --tw-backdrop-blur {
|
|
1011
|
+
syntax: "*";
|
|
1012
|
+
inherits: false;
|
|
1013
|
+
}
|
|
1014
|
+
@property --tw-backdrop-brightness {
|
|
1015
|
+
syntax: "*";
|
|
1016
|
+
inherits: false;
|
|
1017
|
+
}
|
|
1018
|
+
@property --tw-backdrop-contrast {
|
|
1019
|
+
syntax: "*";
|
|
1020
|
+
inherits: false;
|
|
1021
|
+
}
|
|
1022
|
+
@property --tw-backdrop-grayscale {
|
|
1023
|
+
syntax: "*";
|
|
1024
|
+
inherits: false;
|
|
1025
|
+
}
|
|
1026
|
+
@property --tw-backdrop-hue-rotate {
|
|
1027
|
+
syntax: "*";
|
|
1028
|
+
inherits: false;
|
|
1029
|
+
}
|
|
1030
|
+
@property --tw-backdrop-invert {
|
|
1031
|
+
syntax: "*";
|
|
1032
|
+
inherits: false;
|
|
1033
|
+
}
|
|
1034
|
+
@property --tw-backdrop-opacity {
|
|
1035
|
+
syntax: "*";
|
|
1036
|
+
inherits: false;
|
|
1037
|
+
}
|
|
1038
|
+
@property --tw-backdrop-saturate {
|
|
1039
|
+
syntax: "*";
|
|
1040
|
+
inherits: false;
|
|
1041
|
+
}
|
|
1042
|
+
@property --tw-backdrop-sepia {
|
|
1043
|
+
syntax: "*";
|
|
1044
|
+
inherits: false;
|
|
1045
|
+
}
|
|
724
1046
|
@property --tw-duration {
|
|
725
1047
|
syntax: "*";
|
|
726
1048
|
inherits: false;
|
|
@@ -757,6 +1079,8 @@
|
|
|
757
1079
|
@layer properties {
|
|
758
1080
|
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
759
1081
|
*, ::before, ::after, ::backdrop {
|
|
1082
|
+
--tw-space-y-reverse: 0;
|
|
1083
|
+
--tw-divide-y-reverse: 0;
|
|
760
1084
|
--tw-border-style: solid;
|
|
761
1085
|
--tw-gradient-position: initial;
|
|
762
1086
|
--tw-gradient-from: #0000;
|
|
@@ -767,7 +1091,9 @@
|
|
|
767
1091
|
--tw-gradient-from-position: 0%;
|
|
768
1092
|
--tw-gradient-via-position: 50%;
|
|
769
1093
|
--tw-gradient-to-position: 100%;
|
|
1094
|
+
--tw-leading: initial;
|
|
770
1095
|
--tw-font-weight: initial;
|
|
1096
|
+
--tw-tracking: initial;
|
|
771
1097
|
--tw-shadow: 0 0 #0000;
|
|
772
1098
|
--tw-shadow-color: initial;
|
|
773
1099
|
--tw-shadow-alpha: 100%;
|
|
@@ -782,6 +1108,15 @@
|
|
|
782
1108
|
--tw-ring-offset-width: 0px;
|
|
783
1109
|
--tw-ring-offset-color: #fff;
|
|
784
1110
|
--tw-ring-offset-shadow: 0 0 #0000;
|
|
1111
|
+
--tw-backdrop-blur: initial;
|
|
1112
|
+
--tw-backdrop-brightness: initial;
|
|
1113
|
+
--tw-backdrop-contrast: initial;
|
|
1114
|
+
--tw-backdrop-grayscale: initial;
|
|
1115
|
+
--tw-backdrop-hue-rotate: initial;
|
|
1116
|
+
--tw-backdrop-invert: initial;
|
|
1117
|
+
--tw-backdrop-opacity: initial;
|
|
1118
|
+
--tw-backdrop-saturate: initial;
|
|
1119
|
+
--tw-backdrop-sepia: initial;
|
|
785
1120
|
--tw-duration: initial;
|
|
786
1121
|
--tw-ease: initial;
|
|
787
1122
|
--tw-scale-x: 1;
|
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { N as NovaTransactionsLabels } from './TransactionsInfoModal-
|
|
2
|
-
export { a as HashLink, H as HashLinkProps, b as StatusAwareText, S as StatusAwareTextProps, o as StepClassNames, p as StepProps, n as StepStatus, d as ToastTransaction, T as ToastTransactionCustomization, c as ToastTransactionProps, g as TrackingTxModal, e as TrackingTxModalCustomization, f as TrackingTxModalProps, x as
|
|
1
|
+
import { N as NovaTransactionsLabels } from './TransactionsInfoModal-EKgcn7Ot.cjs';
|
|
2
|
+
export { C as CopyableFieldProps, D as DetailItemProps, a as HashLink, H as HashLinkProps, J as JsonBlockProps, M as MetadataRowProps, b as StatusAwareText, S as StatusAwareTextProps, o as StepClassNames, p as StepProps, n as StepStatus, d as ToastTransaction, T as ToastTransactionCustomization, c as ToastTransactionProps, g as TrackingTxModal, e as TrackingTxModalCustomization, f as TrackingTxModalProps, x as TransactionDetails, v as TransactionDetailsCustomization, w as TransactionDetailsProps, A as TransactionHistoryItem, y as TransactionHistoryItemCustomization, z as TransactionHistoryItemProps, E as TransactionKey, B as TransactionKeyProps, R as TransactionStatusBadge, Q as TransactionStatusBadgeProps, K as TransactionsHistory, G as TransactionsHistoryCustomization, F as TransactionsHistoryLoaderProps, I as TransactionsHistoryProps, P as TransactionsInfoModal, L as TransactionsInfoModalCustomization, O as TransactionsInfoModalProps, j as TxErrorBlock, h as TxErrorBlockClassNames, i as TxErrorBlockProps, m as TxInfoBlock, k as TxInfoBlockCustomization, l as TxInfoBlockProps, r as TxProgressIndicator, q as TxProgressIndicatorProps, u as TxStatusVisual, s as TxStatusVisualClassNames, t as TxStatusVisualProps } from './TransactionsInfoModal-EKgcn7Ot.cjs';
|
|
3
3
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
4
|
import { Transaction, TransactionPool } from '@tuwaio/pulsar-core';
|
|
5
5
|
import { ButtonHTMLAttributes, ReactNode } from 'react';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { N as NovaTransactionsLabels } from './TransactionsInfoModal-
|
|
2
|
-
export { a as HashLink, H as HashLinkProps, b as StatusAwareText, S as StatusAwareTextProps, o as StepClassNames, p as StepProps, n as StepStatus, d as ToastTransaction, T as ToastTransactionCustomization, c as ToastTransactionProps, g as TrackingTxModal, e as TrackingTxModalCustomization, f as TrackingTxModalProps, x as
|
|
1
|
+
import { N as NovaTransactionsLabels } from './TransactionsInfoModal-EKgcn7Ot.js';
|
|
2
|
+
export { C as CopyableFieldProps, D as DetailItemProps, a as HashLink, H as HashLinkProps, J as JsonBlockProps, M as MetadataRowProps, b as StatusAwareText, S as StatusAwareTextProps, o as StepClassNames, p as StepProps, n as StepStatus, d as ToastTransaction, T as ToastTransactionCustomization, c as ToastTransactionProps, g as TrackingTxModal, e as TrackingTxModalCustomization, f as TrackingTxModalProps, x as TransactionDetails, v as TransactionDetailsCustomization, w as TransactionDetailsProps, A as TransactionHistoryItem, y as TransactionHistoryItemCustomization, z as TransactionHistoryItemProps, E as TransactionKey, B as TransactionKeyProps, R as TransactionStatusBadge, Q as TransactionStatusBadgeProps, K as TransactionsHistory, G as TransactionsHistoryCustomization, F as TransactionsHistoryLoaderProps, I as TransactionsHistoryProps, P as TransactionsInfoModal, L as TransactionsInfoModalCustomization, O as TransactionsInfoModalProps, j as TxErrorBlock, h as TxErrorBlockClassNames, i as TxErrorBlockProps, m as TxInfoBlock, k as TxInfoBlockCustomization, l as TxInfoBlockProps, r as TxProgressIndicator, q as TxProgressIndicatorProps, u as TxStatusVisual, s as TxStatusVisualClassNames, t as TxStatusVisualProps } from './TransactionsInfoModal-EKgcn7Ot.js';
|
|
3
3
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
4
|
import { Transaction, TransactionPool } from '@tuwaio/pulsar-core';
|
|
5
5
|
import { ButtonHTMLAttributes, ReactNode } from 'react';
|
package/dist/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export{e as HashLink,f as StatusAwareText,i as ToastTransaction,j as TrackingTxModal,o as TransactionHistoryItem,g as TransactionKey,h as TransactionStatusBadge,
|
|
1
|
+
export{e as HashLink,f as StatusAwareText,i as ToastTransaction,j as TrackingTxModal,o as TransactionDetails,p as TransactionHistoryItem,g as TransactionKey,h as TransactionStatusBadge,q as TransactionsHistory,r as TransactionsInfoModal,s as TxActionButton,k as TxErrorBlock,l as TxInfoBlock,m as TxProgressIndicator,n as TxStatusVisual,a as defaultLabels}from'./chunk-QNGBNGYN.js';
|
package/dist/providers/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';var
|
|
1
|
+
'use strict';var chunk66O24XG2_cjs=require('../chunk-66O24XG2.cjs');Object.defineProperty(exports,"NovaTransactionsLabelsProvider",{enumerable:true,get:function(){return chunk66O24XG2_cjs.b}});Object.defineProperty(exports,"NovaTransactionsProvider",{enumerable:true,get:function(){return chunk66O24XG2_cjs.d}});Object.defineProperty(exports,"useLabels",{enumerable:true,get:function(){return chunk66O24XG2_cjs.c}});
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import { ReactNode } from 'react';
|
|
3
|
-
import { N as NovaTransactionsLabels } from '../TransactionsInfoModal-
|
|
4
|
-
export {
|
|
3
|
+
import { N as NovaTransactionsLabels } from '../TransactionsInfoModal-EKgcn7Ot.cjs';
|
|
4
|
+
export { V as NovaTransactionsProvider, U as NovaTransactionsProviderProps } from '../TransactionsInfoModal-EKgcn7Ot.cjs';
|
|
5
5
|
import '@tuwaio/nova-core';
|
|
6
6
|
import '@tuwaio/pulsar-core';
|
|
7
7
|
import '@tuwaio/orbit-core';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import { ReactNode } from 'react';
|
|
3
|
-
import { N as NovaTransactionsLabels } from '../TransactionsInfoModal-
|
|
4
|
-
export {
|
|
3
|
+
import { N as NovaTransactionsLabels } from '../TransactionsInfoModal-EKgcn7Ot.js';
|
|
4
|
+
export { V as NovaTransactionsProvider, U as NovaTransactionsProviderProps } from '../TransactionsInfoModal-EKgcn7Ot.js';
|
|
5
5
|
import '@tuwaio/nova-core';
|
|
6
6
|
import '@tuwaio/pulsar-core';
|
|
7
7
|
import '@tuwaio/orbit-core';
|
package/dist/providers/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export{b as NovaTransactionsLabelsProvider,d as NovaTransactionsProvider,c as useLabels}from'../chunk-
|
|
1
|
+
export{b as NovaTransactionsLabelsProvider,d as NovaTransactionsProvider,c as useLabels}from'../chunk-QNGBNGYN.js';
|