@tuwaio/nova-transactions 1.0.0-fix-integrate-orbit-alpha.23.c69d70b → 1.0.0-fix-integrate-orbit-alpha.24.6471ec9
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 +41 -0
- package/package.json +2 -2
package/dist/index.css
CHANGED
@@ -597,8 +597,10 @@
|
|
597
597
|
--novacore-text-sm--line-height: calc(1.25 / 0.875);
|
598
598
|
--novacore-text-lg: 1.125rem;
|
599
599
|
--novacore-text-lg--line-height: calc(1.75 / 1.125);
|
600
|
+
--novacore-font-weight-semibold: 600;
|
600
601
|
--novacore-font-weight-bold: 700;
|
601
602
|
--novacore-tracking-tight: -0.025em;
|
603
|
+
--novacore-radius-md: 0.375rem;
|
602
604
|
--novacore-radius-2xl: 1rem;
|
603
605
|
--novacore-blur-sm: 8px;
|
604
606
|
--novacore-default-transition-duration: 150ms;
|
@@ -666,6 +668,9 @@
|
|
666
668
|
.novacore\:w-full {
|
667
669
|
width: 100%;
|
668
670
|
}
|
671
|
+
.novacore\:cursor-pointer {
|
672
|
+
cursor: pointer;
|
673
|
+
}
|
669
674
|
.novacore\:flex-col {
|
670
675
|
flex-direction: column;
|
671
676
|
}
|
@@ -681,6 +686,9 @@
|
|
681
686
|
.novacore\:justify-between {
|
682
687
|
justify-content: space-between;
|
683
688
|
}
|
689
|
+
.novacore\:gap-1 {
|
690
|
+
gap: calc(var(--novacore-spacing) * 1);
|
691
|
+
}
|
684
692
|
.novacore\:gap-3 {
|
685
693
|
gap: calc(var(--novacore-spacing) * 3);
|
686
694
|
}
|
@@ -690,6 +698,9 @@
|
|
690
698
|
.novacore\:overflow-y-auto {
|
691
699
|
overflow-y: auto;
|
692
700
|
}
|
701
|
+
.novacore\:rounded-md {
|
702
|
+
border-radius: var(--novacore-radius-md);
|
703
|
+
}
|
693
704
|
.novacore\:rounded-t-2xl {
|
694
705
|
border-top-left-radius: var(--novacore-radius-2xl);
|
695
706
|
border-top-right-radius: var(--novacore-radius-2xl);
|
@@ -708,6 +719,9 @@
|
|
708
719
|
.novacore\:bg-\[var\(--tuwa-bg-primary\)\] {
|
709
720
|
background-color: var(--tuwa-bg-primary);
|
710
721
|
}
|
722
|
+
.novacore\:bg-\[var\(--tuwa-standart-button-bg\)\] {
|
723
|
+
background-color: var(--tuwa-standart-button-bg);
|
724
|
+
}
|
711
725
|
.novacore\:bg-black\/55 {
|
712
726
|
background-color: var(--novacore-color-black);
|
713
727
|
@supports (color: color-mix(in lab, red, red)) {
|
@@ -723,6 +737,12 @@
|
|
723
737
|
.novacore\:p-4 {
|
724
738
|
padding: calc(var(--novacore-spacing) * 4);
|
725
739
|
}
|
740
|
+
.novacore\:px-3 {
|
741
|
+
padding-inline: calc(var(--novacore-spacing) * 3);
|
742
|
+
}
|
743
|
+
.novacore\:py-2 {
|
744
|
+
padding-block: calc(var(--novacore-spacing) * 2);
|
745
|
+
}
|
726
746
|
.novacore\:text-lg {
|
727
747
|
font-size: var(--novacore-text-lg);
|
728
748
|
line-height: var(--tw-leading, var(--novacore-text-lg--line-height));
|
@@ -739,6 +759,10 @@
|
|
739
759
|
--tw-font-weight: var(--novacore-font-weight-bold);
|
740
760
|
font-weight: var(--novacore-font-weight-bold);
|
741
761
|
}
|
762
|
+
.novacore\:font-semibold {
|
763
|
+
--tw-font-weight: var(--novacore-font-weight-semibold);
|
764
|
+
font-weight: var(--novacore-font-weight-semibold);
|
765
|
+
}
|
742
766
|
.novacore\:tracking-tight {
|
743
767
|
--tw-tracking: var(--novacore-tracking-tight);
|
744
768
|
letter-spacing: var(--novacore-tracking-tight);
|
@@ -770,6 +794,23 @@
|
|
770
794
|
--tw-outline-style: none;
|
771
795
|
outline-style: none;
|
772
796
|
}
|
797
|
+
.novacore\:hover\:bg-\[var\(--tuwa-standart-button-hover\)\] {
|
798
|
+
&:hover {
|
799
|
+
@media (hover: hover) {
|
800
|
+
background-color: var(--tuwa-standart-button-hover);
|
801
|
+
}
|
802
|
+
}
|
803
|
+
}
|
804
|
+
.novacore\:disabled\:cursor-not-allowed {
|
805
|
+
&:disabled {
|
806
|
+
cursor: not-allowed;
|
807
|
+
}
|
808
|
+
}
|
809
|
+
.novacore\:disabled\:opacity-50 {
|
810
|
+
&:disabled {
|
811
|
+
opacity: 50%;
|
812
|
+
}
|
813
|
+
}
|
773
814
|
.novacore\:sm\:top-\[50\%\] {
|
774
815
|
@media (width >= 40rem) {
|
775
816
|
top: 50%;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@tuwaio/nova-transactions",
|
3
|
-
"version": "1.0.0-fix-integrate-orbit-alpha.
|
3
|
+
"version": "1.0.0-fix-integrate-orbit-alpha.24.6471ec9",
|
4
4
|
"private": false,
|
5
5
|
"author": "Oleksandr Tkach",
|
6
6
|
"license": "Apache-2.0",
|
@@ -96,7 +96,7 @@
|
|
96
96
|
"typescript": "~5.9.2",
|
97
97
|
"tailwindcss": "^4.1.13",
|
98
98
|
"zustand": "^5.0.8",
|
99
|
-
"@tuwaio/nova-core": "^1.0.0-fix-integrate-orbit-alpha.
|
99
|
+
"@tuwaio/nova-core": "^1.0.0-fix-integrate-orbit-alpha.24.6471ec9"
|
100
100
|
},
|
101
101
|
"scripts": {
|
102
102
|
"build": "tsup && pnpm exec postcss ./src/styles/app.css -o ./dist/index.css"
|