@orderly.network/ui 2.8.13-rc.0 → 2.8.14-alpha.0
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 +22 -3
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +351 -334
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +146 -130
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +3 -3
package/dist/index.css
CHANGED
|
@@ -1489,6 +1489,9 @@ body {
|
|
|
1489
1489
|
.oui-h-\[14px\] {
|
|
1490
1490
|
height: 14px;
|
|
1491
1491
|
}
|
|
1492
|
+
.oui-h-\[152px\] {
|
|
1493
|
+
height: 152px;
|
|
1494
|
+
}
|
|
1492
1495
|
.oui-h-\[15px\] {
|
|
1493
1496
|
height: 15px;
|
|
1494
1497
|
}
|
|
@@ -1861,6 +1864,9 @@ body {
|
|
|
1861
1864
|
.oui-min-h-\[48px\] {
|
|
1862
1865
|
min-height: 48px;
|
|
1863
1866
|
}
|
|
1867
|
+
.oui-min-h-\[4px\] {
|
|
1868
|
+
min-height: 4px;
|
|
1869
|
+
}
|
|
1864
1870
|
.oui-min-h-\[50px\] {
|
|
1865
1871
|
min-height: 50px;
|
|
1866
1872
|
}
|
|
@@ -2662,6 +2668,9 @@ body {
|
|
|
2662
2668
|
.oui-grid-cols-\[4fr\,6fr\] {
|
|
2663
2669
|
grid-template-columns: 4fr 6fr;
|
|
2664
2670
|
}
|
|
2671
|
+
.oui-grid-cols-\[6fr\,4fr\] {
|
|
2672
|
+
grid-template-columns: 6fr 4fr;
|
|
2673
|
+
}
|
|
2665
2674
|
.oui-grid-cols-none {
|
|
2666
2675
|
grid-template-columns: none;
|
|
2667
2676
|
}
|
|
@@ -3196,6 +3205,9 @@ body {
|
|
|
3196
3205
|
.oui-border-0 {
|
|
3197
3206
|
border-width: 0px;
|
|
3198
3207
|
}
|
|
3208
|
+
.oui-border-4 {
|
|
3209
|
+
border-width: 4px;
|
|
3210
|
+
}
|
|
3199
3211
|
.oui-border-\[0\.5px\] {
|
|
3200
3212
|
border-width: 0.5px;
|
|
3201
3213
|
}
|
|
@@ -5939,9 +5951,6 @@ body {
|
|
|
5939
5951
|
.active\:oui-bg-primary-darken\/70:active {
|
|
5940
5952
|
background-color: rgb(var(--oui-color-primary-darken) / 0.7);
|
|
5941
5953
|
}
|
|
5942
|
-
.active\:oui-bg-primary-darken\/80:active {
|
|
5943
|
-
background-color: rgb(var(--oui-color-primary-darken) / 0.8);
|
|
5944
|
-
}
|
|
5945
5954
|
.active\:oui-bg-success-darken\/80:active {
|
|
5946
5955
|
background-color: rgb(var(--oui-color-success-darken) / 0.8);
|
|
5947
5956
|
}
|
|
@@ -6045,6 +6054,10 @@ body {
|
|
|
6045
6054
|
--tw-translate-x: 0px;
|
|
6046
6055
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
6047
6056
|
}
|
|
6057
|
+
.oui-group:hover .group-hover\:oui-border-base-4 {
|
|
6058
|
+
--tw-border-opacity: 1;
|
|
6059
|
+
border-color: rgb(var(--oui-color-base-4) / var(--tw-border-opacity, 1));
|
|
6060
|
+
}
|
|
6048
6061
|
.oui-group:hover .group-hover\:oui-border-primary-light {
|
|
6049
6062
|
--tw-border-opacity: 1;
|
|
6050
6063
|
border-color: rgb(var(--oui-color-primary-light) / var(--tw-border-opacity, 1));
|
|
@@ -6409,6 +6422,12 @@ body {
|
|
|
6409
6422
|
.oui-group[data-state=open] .group-data-\[state\=open\]\:oui-font-semibold {
|
|
6410
6423
|
font-weight: 600;
|
|
6411
6424
|
}
|
|
6425
|
+
.oui-group[data-state=active] .group-data-\[state\=active\]\:oui-text-base-contrast {
|
|
6426
|
+
color: rgb(var(--oui-color-base-foreground) / 0.98);
|
|
6427
|
+
}
|
|
6428
|
+
.oui-group[data-state=inactive] .group-data-\[state\=inactive\]\:oui-text-base-contrast-36 {
|
|
6429
|
+
color: rgb(var(--oui-color-base-foreground) / 0.36);
|
|
6430
|
+
}
|
|
6412
6431
|
.oui-peer[data-state=closed] ~ .peer-data-\[state\=closed\]\:oui-rotate-0 {
|
|
6413
6432
|
--tw-rotate: 0deg;
|
|
6414
6433
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|