@tuwaio/nova-transactions 0.4.0 → 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/index.css CHANGED
@@ -6,6 +6,9 @@
6
6
  --novatx-font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',
7
7
  monospace;
8
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);
9
12
  --novatx-color-gray-400: oklch(70.7% 0.022 261.325);
10
13
  --novatx-color-gray-500: oklch(55.1% 0.027 264.364);
11
14
  --novatx-color-white: #fff;
@@ -21,9 +24,14 @@
21
24
  --novatx-font-weight-medium: 500;
22
25
  --novatx-font-weight-semibold: 600;
23
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;
24
31
  --novatx-ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
25
32
  --novatx-animate-spin: spin 1s linear infinite;
26
33
  --novatx-animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
34
+ --novatx-blur-sm: 8px;
27
35
  --novatx-default-transition-duration: 150ms;
28
36
  --novatx-default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
29
37
  }
@@ -35,12 +43,18 @@
35
43
  .novatx\:relative {
36
44
  position: relative;
37
45
  }
46
+ .novatx\:-top-1 {
47
+ top: calc(var(--novatx-spacing) * -1);
48
+ }
38
49
  .novatx\:top-\[10px\] {
39
50
  top: 10px;
40
51
  }
41
52
  .novatx\:right-1\/2 {
42
53
  right: calc(1 / 2 * 100%);
43
54
  }
55
+ .novatx\:-left-1 {
56
+ left: calc(var(--novatx-spacing) * -1);
57
+ }
44
58
  .novatx\:z-10 {
45
59
  z-index: 10;
46
60
  }
@@ -59,12 +73,21 @@
59
73
  .novatx\:mb-2 {
60
74
  margin-bottom: calc(var(--novatx-spacing) * 2);
61
75
  }
76
+ .novatx\:ml-4 {
77
+ margin-left: calc(var(--novatx-spacing) * 4);
78
+ }
79
+ .novatx\:ml-auto {
80
+ margin-left: auto;
81
+ }
62
82
  .novatx\:block {
63
83
  display: block;
64
84
  }
65
85
  .novatx\:flex {
66
86
  display: flex;
67
87
  }
88
+ .novatx\:grid {
89
+ display: grid;
90
+ }
68
91
  .novatx\:inline-flex {
69
92
  display: inline-flex;
70
93
  }
@@ -77,12 +100,18 @@
77
100
  .novatx\:h-3 {
78
101
  height: calc(var(--novatx-spacing) * 3);
79
102
  }
103
+ .novatx\:h-3\.5 {
104
+ height: calc(var(--novatx-spacing) * 3.5);
105
+ }
80
106
  .novatx\:h-4 {
81
107
  height: calc(var(--novatx-spacing) * 4);
82
108
  }
83
109
  .novatx\:h-5 {
84
110
  height: calc(var(--novatx-spacing) * 5);
85
111
  }
112
+ .novatx\:h-6 {
113
+ height: calc(var(--novatx-spacing) * 6);
114
+ }
86
115
  .novatx\:h-8 {
87
116
  height: calc(var(--novatx-spacing) * 8);
88
117
  }
@@ -92,6 +121,9 @@
92
121
  .novatx\:h-16 {
93
122
  height: calc(var(--novatx-spacing) * 16);
94
123
  }
124
+ .novatx\:h-\[42px\] {
125
+ height: 42px;
126
+ }
95
127
  .novatx\:h-px {
96
128
  height: 1px;
97
129
  }
@@ -101,6 +133,9 @@
101
133
  .novatx\:max-h-\[95dvh\] {
102
134
  max-height: 95dvh;
103
135
  }
136
+ .novatx\:max-h-\[300px\] {
137
+ max-height: 300px;
138
+ }
104
139
  .novatx\:max-h-\[400px\] {
105
140
  max-height: 400px;
106
141
  }
@@ -113,12 +148,18 @@
113
148
  .novatx\:w-3 {
114
149
  width: calc(var(--novatx-spacing) * 3);
115
150
  }
151
+ .novatx\:w-3\.5 {
152
+ width: calc(var(--novatx-spacing) * 3.5);
153
+ }
116
154
  .novatx\:w-4 {
117
155
  width: calc(var(--novatx-spacing) * 4);
118
156
  }
119
157
  .novatx\:w-5 {
120
158
  width: calc(var(--novatx-spacing) * 5);
121
159
  }
160
+ .novatx\:w-6 {
161
+ width: calc(var(--novatx-spacing) * 6);
162
+ }
122
163
  .novatx\:w-8 {
123
164
  width: calc(var(--novatx-spacing) * 8);
124
165
  }
@@ -134,6 +175,18 @@
134
175
  .novatx\:w-full {
135
176
  width: 100%;
136
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
+ }
137
190
  .novatx\:min-w-\[80px\] {
138
191
  min-width: 80px;
139
192
  }
@@ -143,6 +196,9 @@
143
196
  .novatx\:flex-shrink-0 {
144
197
  flex-shrink: 0;
145
198
  }
199
+ .novatx\:shrink-0 {
200
+ flex-shrink: 0;
201
+ }
146
202
  .novatx\:animate-\[novatx-fade-out_0\.4s_ease-out_2s_forwards\] {
147
203
  animation: novatx-fade-out 0.4s ease-out 2s forwards;
148
204
  }
@@ -155,6 +211,9 @@
155
211
  .novatx\:cursor-pointer {
156
212
  cursor: pointer;
157
213
  }
214
+ .novatx\:grid-cols-1 {
215
+ grid-template-columns: repeat(1, minmax(0, 1fr));
216
+ }
158
217
  .novatx\:flex-col {
159
218
  flex-direction: column;
160
219
  }
@@ -179,12 +238,49 @@
179
238
  .novatx\:gap-2 {
180
239
  gap: calc(var(--novatx-spacing) * 2);
181
240
  }
241
+ .novatx\:gap-2\.5 {
242
+ gap: calc(var(--novatx-spacing) * 2.5);
243
+ }
182
244
  .novatx\:gap-3 {
183
245
  gap: calc(var(--novatx-spacing) * 3);
184
246
  }
185
247
  .novatx\:gap-4 {
186
248
  gap: calc(var(--novatx-spacing) * 4);
187
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
+ }
188
284
  .novatx\:gap-x-1 {
189
285
  -moz-column-gap: calc(var(--novatx-spacing) * 1);
190
286
  column-gap: calc(var(--novatx-spacing) * 1);
@@ -203,6 +299,31 @@
203
299
  .novatx\:gap-y-3 {
204
300
  row-gap: calc(var(--novatx-spacing) * 3);
205
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
+ }
206
327
  .novatx\:overflow-y-auto {
207
328
  overflow-y: auto;
208
329
  }
@@ -235,6 +356,10 @@
235
356
  border-bottom-style: var(--tw-border-style);
236
357
  border-bottom-width: 1px;
237
358
  }
359
+ .novatx\:border-none {
360
+ --tw-border-style: none;
361
+ border-style: none;
362
+ }
238
363
  .novatx\:border-\[var\(--tuwa-border-primary\)\] {
239
364
  border-color: var(--tuwa-border-primary);
240
365
  }
@@ -256,9 +381,21 @@
256
381
  .novatx\:border-\[var\(--tuwa-pending-icon\)\] {
257
382
  border-color: var(--tuwa-pending-icon);
258
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
+ }
259
390
  .novatx\:border-\[var\(--tuwa-success-icon\)\] {
260
391
  border-color: var(--tuwa-success-icon);
261
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
+ }
262
399
  .novatx\:border-\[var\(--tuwa-text-secondary\)\] {
263
400
  border-color: var(--tuwa-text-secondary);
264
401
  }
@@ -271,9 +408,18 @@
271
408
  .novatx\:bg-\[var\(--tuwa-bg-muted\)\] {
272
409
  background-color: var(--tuwa-bg-muted);
273
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
+ }
274
417
  .novatx\:bg-\[var\(--tuwa-bg-primary\)\] {
275
418
  background-color: var(--tuwa-bg-primary);
276
419
  }
420
+ .novatx\:bg-\[var\(--tuwa-bg-secondary\)\] {
421
+ background-color: var(--tuwa-bg-secondary);
422
+ }
277
423
  .novatx\:bg-\[var\(--tuwa-border-primary\)\] {
278
424
  background-color: var(--tuwa-border-primary);
279
425
  }
@@ -295,6 +441,12 @@
295
441
  .novatx\:bg-\[var\(--tuwa-pending-bg\)\] {
296
442
  background-color: var(--tuwa-pending-bg);
297
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
+ }
298
450
  .novatx\:bg-\[var\(--tuwa-pending-icon\)\] {
299
451
  background-color: var(--tuwa-pending-icon);
300
452
  }
@@ -304,12 +456,30 @@
304
456
  .novatx\:bg-\[var\(--tuwa-success-icon\)\] {
305
457
  background-color: var(--tuwa-success-icon);
306
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
+ }
307
471
  .novatx\:bg-gray-400 {
308
472
  background-color: var(--novatx-color-gray-400);
309
473
  }
310
474
  .novatx\:bg-gray-500 {
311
475
  background-color: var(--novatx-color-gray-500);
312
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
+ }
313
483
  .novatx\:bg-transparent {
314
484
  background-color: transparent;
315
485
  }
@@ -328,6 +498,9 @@
328
498
  .novatx\:\!p-0 {
329
499
  padding: calc(var(--novatx-spacing) * 0) !important;
330
500
  }
501
+ .novatx\:p-0 {
502
+ padding: calc(var(--novatx-spacing) * 0);
503
+ }
331
504
  .novatx\:p-1 {
332
505
  padding: calc(var(--novatx-spacing) * 1);
333
506
  }
@@ -343,6 +516,9 @@
343
516
  .novatx\:p-8 {
344
517
  padding: calc(var(--novatx-spacing) * 8);
345
518
  }
519
+ .novatx\:px-1\.5 {
520
+ padding-inline: calc(var(--novatx-spacing) * 1.5);
521
+ }
346
522
  .novatx\:px-2 {
347
523
  padding-inline: calc(var(--novatx-spacing) * 2);
348
524
  }
@@ -352,6 +528,9 @@
352
528
  .novatx\:px-4 {
353
529
  padding-inline: calc(var(--novatx-spacing) * 4);
354
530
  }
531
+ .novatx\:py-0\.5 {
532
+ padding-block: calc(var(--novatx-spacing) * 0.5);
533
+ }
355
534
  .novatx\:py-1 {
356
535
  padding-block: calc(var(--novatx-spacing) * 1);
357
536
  }
@@ -361,6 +540,9 @@
361
540
  .novatx\:py-2 {
362
541
  padding-block: calc(var(--novatx-spacing) * 2);
363
542
  }
543
+ .novatx\:py-2\.5 {
544
+ padding-block: calc(var(--novatx-spacing) * 2.5);
545
+ }
364
546
  .novatx\:py-3 {
365
547
  padding-block: calc(var(--novatx-spacing) * 3);
366
548
  }
@@ -373,15 +555,24 @@
373
555
  .novatx\:pt-3 {
374
556
  padding-top: calc(var(--novatx-spacing) * 3);
375
557
  }
558
+ .novatx\:pt-6 {
559
+ padding-top: calc(var(--novatx-spacing) * 6);
560
+ }
376
561
  .novatx\:pr-1 {
377
562
  padding-right: calc(var(--novatx-spacing) * 1);
378
563
  }
379
564
  .novatx\:pb-1 {
380
565
  padding-bottom: calc(var(--novatx-spacing) * 1);
381
566
  }
567
+ .novatx\:pb-2 {
568
+ padding-bottom: calc(var(--novatx-spacing) * 2);
569
+ }
382
570
  .novatx\:text-center {
383
571
  text-align: center;
384
572
  }
573
+ .novatx\:text-right {
574
+ text-align: right;
575
+ }
385
576
  .novatx\:font-mono {
386
577
  font-family: var(--novatx-font-mono);
387
578
  }
@@ -397,6 +588,17 @@
397
588
  font-size: var(--novatx-text-xs);
398
589
  line-height: var(--tw-leading, var(--novatx-text-xs--line-height));
399
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
+ }
400
602
  .novatx\:font-bold {
401
603
  --tw-font-weight: var(--novatx-font-weight-bold);
402
604
  font-weight: var(--novatx-font-weight-bold);
@@ -409,9 +611,20 @@
409
611
  --tw-font-weight: var(--novatx-font-weight-semibold);
410
612
  font-weight: var(--novatx-font-weight-semibold);
411
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
+ }
412
622
  .novatx\:break-all {
413
623
  word-break: break-all;
414
624
  }
625
+ .novatx\:whitespace-pre-wrap {
626
+ white-space: pre-wrap;
627
+ }
415
628
  .novatx\:text-\[var\(--tuwa-error-icon\)\] {
416
629
  color: var(--tuwa-error-icon);
417
630
  }
@@ -457,12 +670,27 @@
457
670
  .novatx\:text-\[var\(--tuwa-text-tertiary\)\] {
458
671
  color: var(--tuwa-text-tertiary);
459
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
+ }
460
679
  .novatx\:text-red-500 {
461
680
  color: var(--novatx-color-red-500);
462
681
  }
682
+ .novatx\:text-rose-500 {
683
+ color: var(--novatx-color-rose-500);
684
+ }
463
685
  .novatx\:text-white {
464
686
  color: var(--novatx-color-white);
465
687
  }
688
+ .novatx\:capitalize {
689
+ text-transform: capitalize;
690
+ }
691
+ .novatx\:uppercase {
692
+ text-transform: uppercase;
693
+ }
466
694
  .novatx\:\!shadow-none {
467
695
  --tw-shadow: 0 0 #0000 !important;
468
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;
@@ -475,6 +703,14 @@
475
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));
476
704
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
477
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
+ }
478
714
  .novatx\:transition-all {
479
715
  transition-property: all;
480
716
  transition-timing-function: var(--tw-ease, var(--novatx-default-transition-timing-function));
@@ -498,6 +734,12 @@
498
734
  --tw-ease: var(--novatx-ease-in-out);
499
735
  transition-timing-function: var(--novatx-ease-in-out);
500
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
+ }
501
743
  .novatx\:hover\:bg-\[var\(--tuwa-bg-muted\)\] {
502
744
  &:hover {
503
745
  @media (hover: hover) {
@@ -542,6 +784,13 @@
542
784
  }
543
785
  }
544
786
  }
787
+ .novatx\:hover\:text-\[var\(--tuwa-text-accent\)\] {
788
+ &:hover {
789
+ @media (hover: hover) {
790
+ color: var(--tuwa-text-accent);
791
+ }
792
+ }
793
+ }
545
794
  .novatx\:hover\:text-\[var\(--tuwa-text-primary\)\] {
546
795
  &:hover {
547
796
  @media (hover: hover) {
@@ -624,6 +873,16 @@
624
873
  }
625
874
  }
626
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
+ }
627
886
  @property --tw-border-style {
628
887
  syntax: "*";
629
888
  inherits: false;
@@ -671,10 +930,18 @@
671
930
  inherits: false;
672
931
  initial-value: 100%;
673
932
  }
933
+ @property --tw-leading {
934
+ syntax: "*";
935
+ inherits: false;
936
+ }
674
937
  @property --tw-font-weight {
675
938
  syntax: "*";
676
939
  inherits: false;
677
940
  }
941
+ @property --tw-tracking {
942
+ syntax: "*";
943
+ inherits: false;
944
+ }
678
945
  @property --tw-shadow {
679
946
  syntax: "*";
680
947
  inherits: false;
@@ -740,6 +1007,42 @@
740
1007
  inherits: false;
741
1008
  initial-value: 0 0 #0000;
742
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
+ }
743
1046
  @property --tw-duration {
744
1047
  syntax: "*";
745
1048
  inherits: false;
@@ -776,6 +1079,8 @@
776
1079
  @layer properties {
777
1080
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
778
1081
  *, ::before, ::after, ::backdrop {
1082
+ --tw-space-y-reverse: 0;
1083
+ --tw-divide-y-reverse: 0;
779
1084
  --tw-border-style: solid;
780
1085
  --tw-gradient-position: initial;
781
1086
  --tw-gradient-from: #0000;
@@ -786,7 +1091,9 @@
786
1091
  --tw-gradient-from-position: 0%;
787
1092
  --tw-gradient-via-position: 50%;
788
1093
  --tw-gradient-to-position: 100%;
1094
+ --tw-leading: initial;
789
1095
  --tw-font-weight: initial;
1096
+ --tw-tracking: initial;
790
1097
  --tw-shadow: 0 0 #0000;
791
1098
  --tw-shadow-color: initial;
792
1099
  --tw-shadow-alpha: 100%;
@@ -801,6 +1108,15 @@
801
1108
  --tw-ring-offset-width: 0px;
802
1109
  --tw-ring-offset-color: #fff;
803
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;
804
1120
  --tw-duration: initial;
805
1121
  --tw-ease: initial;
806
1122
  --tw-scale-x: 1;
package/dist/index.d.cts CHANGED
@@ -1,5 +1,5 @@
1
- import { N as NovaTransactionsLabels } from './TransactionsInfoModal-QOEXpTDM.cjs';
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 TransactionHistoryItem, v as TransactionHistoryItemCustomization, w as TransactionHistoryItemProps, z as TransactionKey, y as TransactionKeyProps, J as TransactionStatusBadge, I as TransactionStatusBadgeProps, D as TransactionsHistory, B as TransactionsHistoryCustomization, A as TransactionsHistoryLoaderProps, C as TransactionsHistoryProps, G as TransactionsInfoModal, E as TransactionsInfoModalCustomization, F 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-QOEXpTDM.cjs';
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-QOEXpTDM.js';
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 TransactionHistoryItem, v as TransactionHistoryItemCustomization, w as TransactionHistoryItemProps, z as TransactionKey, y as TransactionKeyProps, J as TransactionStatusBadge, I as TransactionStatusBadgeProps, D as TransactionsHistory, B as TransactionsHistoryCustomization, A as TransactionsHistoryLoaderProps, C as TransactionsHistoryProps, G as TransactionsInfoModal, E as TransactionsInfoModalCustomization, F 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-QOEXpTDM.js';
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,p as TransactionsHistory,q as TransactionsInfoModal,r as TxActionButton,k as TxErrorBlock,l as TxInfoBlock,m as TxProgressIndicator,n as TxStatusVisual,a as defaultLabels}from'./chunk-5X6M2VT6.js';
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';
@@ -1 +1 @@
1
- 'use strict';var chunkIEFOVIBR_cjs=require('../chunk-IEFOVIBR.cjs');Object.defineProperty(exports,"NovaTransactionsLabelsProvider",{enumerable:true,get:function(){return chunkIEFOVIBR_cjs.b}});Object.defineProperty(exports,"NovaTransactionsProvider",{enumerable:true,get:function(){return chunkIEFOVIBR_cjs.d}});Object.defineProperty(exports,"useLabels",{enumerable:true,get:function(){return chunkIEFOVIBR_cjs.c}});
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-QOEXpTDM.cjs';
4
- export { L as NovaTransactionsProvider, K as NovaTransactionsProviderProps } from '../TransactionsInfoModal-QOEXpTDM.cjs';
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-QOEXpTDM.js';
4
- export { L as NovaTransactionsProvider, K as NovaTransactionsProviderProps } from '../TransactionsInfoModal-QOEXpTDM.js';
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';
@@ -1 +1 @@
1
- export{b as NovaTransactionsLabelsProvider,d as NovaTransactionsProvider,c as useLabels}from'../chunk-5X6M2VT6.js';
1
+ export{b as NovaTransactionsLabelsProvider,d as NovaTransactionsProvider,c as useLabels}from'../chunk-QNGBNGYN.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tuwaio/nova-transactions",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "private": false,
5
5
  "author": "Oleksandr Tkach",
6
6
  "license": "Apache-2.0",
@@ -96,7 +96,7 @@
96
96
  "typescript": "~6.0.3",
97
97
  "tailwindcss": "^4.2.4",
98
98
  "zustand": "^5.0.12",
99
- "@tuwaio/nova-core": "^0.4.0"
99
+ "@tuwaio/nova-core": "^0.4.1"
100
100
  },
101
101
  "scripts": {
102
102
  "build": "tsup && pnpm exec postcss ./src/styles/app.css -o ./dist/index.css"