lizaui 10.0.55 → 10.0.57
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/lizaui.css +13 -34
- package/package.json +2 -2
package/dist/lizaui.css
CHANGED
|
@@ -763,19 +763,10 @@
|
|
|
763
763
|
}
|
|
764
764
|
|
|
765
765
|
.table-root--primary {
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
770
|
-
.table-root--primary {
|
|
771
|
-
background-color: color-mix(in oklab, var(--muted) 50%, transparent);
|
|
772
|
-
}
|
|
773
|
-
}
|
|
774
|
-
|
|
775
|
-
.table-root--primary {
|
|
766
|
+
border-radius: var(--radius);
|
|
767
|
+
background-color: var(--color-default-100);
|
|
776
768
|
padding-inline: calc(var(--spacing, .25rem) * 1);
|
|
777
769
|
padding-bottom: calc(var(--spacing, .25rem) * 1);
|
|
778
|
-
border-radius: calc(var(--radius) * 2.5);
|
|
779
770
|
}
|
|
780
771
|
|
|
781
772
|
.table-root--secondary .table__header {
|
|
@@ -785,23 +776,17 @@
|
|
|
785
776
|
}
|
|
786
777
|
|
|
787
778
|
.table-root--secondary .table__column {
|
|
788
|
-
background-color: var(--
|
|
789
|
-
}
|
|
790
|
-
|
|
791
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
792
|
-
.table-root--secondary .table__column {
|
|
793
|
-
background-color: color-mix(in oklab, var(--muted) 50%, transparent);
|
|
794
|
-
}
|
|
779
|
+
background-color: var(--color-default-100);
|
|
795
780
|
}
|
|
796
781
|
|
|
797
782
|
.table-root--secondary .table__column:first-child {
|
|
798
|
-
border-top-left-radius: var(--radius
|
|
799
|
-
border-bottom-left-radius: var(--radius
|
|
783
|
+
border-top-left-radius: var(--radius);
|
|
784
|
+
border-bottom-left-radius: var(--radius);
|
|
800
785
|
}
|
|
801
786
|
|
|
802
787
|
.table-root--secondary .table__column:last-child {
|
|
803
|
-
border-top-right-radius: var(--radius
|
|
804
|
-
border-bottom-right-radius: var(--radius
|
|
788
|
+
border-top-right-radius: var(--radius);
|
|
789
|
+
border-bottom-right-radius: var(--radius);
|
|
805
790
|
}
|
|
806
791
|
|
|
807
792
|
.table-root--secondary .table__body {
|
|
@@ -873,13 +858,7 @@
|
|
|
873
858
|
}
|
|
874
859
|
|
|
875
860
|
.table__header {
|
|
876
|
-
background-color: var(--
|
|
877
|
-
}
|
|
878
|
-
|
|
879
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
880
|
-
.table__header {
|
|
881
|
-
background-color: color-mix(in oklab, var(--muted) 50%, transparent);
|
|
882
|
-
}
|
|
861
|
+
background-color: var(--color-default-100);
|
|
883
862
|
}
|
|
884
863
|
|
|
885
864
|
.table__column {
|
|
@@ -930,23 +909,23 @@
|
|
|
930
909
|
}
|
|
931
910
|
|
|
932
911
|
.table__body tr:first-child td:first-child {
|
|
933
|
-
border-top-left-radius: var(--radius
|
|
912
|
+
border-top-left-radius: var(--radius);
|
|
934
913
|
}
|
|
935
914
|
|
|
936
915
|
.table__body tr:first-child td:last-child {
|
|
937
|
-
border-top-right-radius: var(--radius
|
|
916
|
+
border-top-right-radius: var(--radius);
|
|
938
917
|
}
|
|
939
918
|
|
|
940
919
|
.table__body tr:last-child td:first-child {
|
|
941
|
-
border-bottom-left-radius: var(--radius
|
|
920
|
+
border-bottom-left-radius: var(--radius);
|
|
942
921
|
}
|
|
943
922
|
|
|
944
923
|
.table__body tr:last-child td:last-child {
|
|
945
|
-
border-bottom-right-radius: var(--radius
|
|
924
|
+
border-bottom-right-radius: var(--radius);
|
|
946
925
|
}
|
|
947
926
|
|
|
948
927
|
.table__body:not(tbody) {
|
|
949
|
-
border-radius: var(--radius
|
|
928
|
+
border-radius: var(--radius);
|
|
950
929
|
height: 100%;
|
|
951
930
|
position: relative;
|
|
952
931
|
overflow: clip;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "lizaui",
|
|
3
3
|
"private": false,
|
|
4
4
|
"license": "ISC",
|
|
5
|
-
"version": "10.0.
|
|
5
|
+
"version": "10.0.57",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "dist/index.cjs.js",
|
|
8
8
|
"module": "dist/index.es.js",
|
|
@@ -244,4 +244,4 @@
|
|
|
244
244
|
"typescript-eslint": "^8.53.1",
|
|
245
245
|
"vite": "^7.3.1"
|
|
246
246
|
}
|
|
247
|
-
}
|
|
247
|
+
}
|