@esic-lab/data-core-ui 0.0.27 → 0.0.29
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 +17 -0
- package/dist/index.d.mts +489 -64
- package/dist/index.d.ts +489 -64
- package/dist/index.js +324 -2338
- package/dist/index.mjs +323 -2343
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -64,6 +64,7 @@
|
|
|
64
64
|
--default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
65
65
|
--default-font-family: var(--font-sans);
|
|
66
66
|
--default-mono-font-family: var(--font-mono);
|
|
67
|
+
--color-primary-700: #3745af;
|
|
67
68
|
--color-primary-500: #4e61f6;
|
|
68
69
|
--color-primary-400: #7181f8;
|
|
69
70
|
--color-primary-200: #aeb6fb;
|
|
@@ -650,6 +651,9 @@
|
|
|
650
651
|
.gap-4 {
|
|
651
652
|
gap: calc(var(--spacing) * 4);
|
|
652
653
|
}
|
|
654
|
+
.gap-10 {
|
|
655
|
+
gap: calc(var(--spacing) * 10);
|
|
656
|
+
}
|
|
653
657
|
.gap-\[8px\] {
|
|
654
658
|
gap: 8px;
|
|
655
659
|
}
|
|
@@ -758,6 +762,10 @@
|
|
|
758
762
|
border-bottom-style: var(--tw-border-style);
|
|
759
763
|
border-bottom-width: 1px;
|
|
760
764
|
}
|
|
765
|
+
.border-b-2 {
|
|
766
|
+
border-bottom-style: var(--tw-border-style);
|
|
767
|
+
border-bottom-width: 2px;
|
|
768
|
+
}
|
|
761
769
|
.border-l-\[10px\] {
|
|
762
770
|
border-left-style: var(--tw-border-style);
|
|
763
771
|
border-left-width: 10px;
|
|
@@ -793,6 +801,12 @@
|
|
|
793
801
|
.border-white {
|
|
794
802
|
border-color: var(--color-white);
|
|
795
803
|
}
|
|
804
|
+
.border-b-gray-200 {
|
|
805
|
+
border-bottom-color: var(--color-gray-200);
|
|
806
|
+
}
|
|
807
|
+
.border-b-primary-700 {
|
|
808
|
+
border-bottom-color: var(--color-primary-700);
|
|
809
|
+
}
|
|
796
810
|
.bg-\[\#E9E9E9\] {
|
|
797
811
|
background-color: #E9E9E9;
|
|
798
812
|
}
|
|
@@ -960,6 +974,9 @@
|
|
|
960
974
|
.text-indigo-800 {
|
|
961
975
|
color: var(--color-indigo-800);
|
|
962
976
|
}
|
|
977
|
+
.text-primary-700 {
|
|
978
|
+
color: var(--color-primary-700);
|
|
979
|
+
}
|
|
963
980
|
.text-red-500 {
|
|
964
981
|
color: var(--color-red-500);
|
|
965
982
|
}
|