@orderly.network/ui 3.0.4-alpha.1 → 3.0.4-alpha.3
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 +10 -15
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +124 -123
- package/dist/index.d.ts +124 -123
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +4 -4
package/dist/index.css
CHANGED
|
@@ -527,6 +527,9 @@ body {
|
|
|
527
527
|
.oui-inset-0 {
|
|
528
528
|
inset: 0px;
|
|
529
529
|
}
|
|
530
|
+
.oui-inset-3 {
|
|
531
|
+
inset: 0.75rem;
|
|
532
|
+
}
|
|
530
533
|
.oui-inset-x-0 {
|
|
531
534
|
left: 0px;
|
|
532
535
|
right: 0px;
|
|
@@ -596,9 +599,6 @@ body {
|
|
|
596
599
|
.oui-bottom-1 {
|
|
597
600
|
bottom: 0.25rem;
|
|
598
601
|
}
|
|
599
|
-
.oui-bottom-3 {
|
|
600
|
-
bottom: 0.75rem;
|
|
601
|
-
}
|
|
602
602
|
.oui-bottom-6 {
|
|
603
603
|
bottom: 1.5rem;
|
|
604
604
|
}
|
|
@@ -701,9 +701,6 @@ body {
|
|
|
701
701
|
.oui-top-2\/4 {
|
|
702
702
|
top: 50%;
|
|
703
703
|
}
|
|
704
|
-
.oui-top-3 {
|
|
705
|
-
top: 0.75rem;
|
|
706
|
-
}
|
|
707
704
|
.oui-top-4 {
|
|
708
705
|
top: 1rem;
|
|
709
706
|
}
|
|
@@ -794,9 +791,6 @@ body {
|
|
|
794
791
|
.oui-z-\[2\] {
|
|
795
792
|
z-index: 2;
|
|
796
793
|
}
|
|
797
|
-
.oui-z-\[40\] {
|
|
798
|
-
z-index: 40;
|
|
799
|
-
}
|
|
800
794
|
.oui-z-\[60\] {
|
|
801
795
|
z-index: 60;
|
|
802
796
|
}
|
|
@@ -1724,12 +1718,6 @@ body {
|
|
|
1724
1718
|
.oui-h-\[calc\(100\%_-_49px\)\] {
|
|
1725
1719
|
height: calc(100% - 49px);
|
|
1726
1720
|
}
|
|
1727
|
-
.oui-h-\[calc\(100\%_-_52px\)\] {
|
|
1728
|
-
height: calc(100% - 52px);
|
|
1729
|
-
}
|
|
1730
|
-
.oui-h-\[calc\(100\%_-_56px\)\] {
|
|
1731
|
-
height: calc(100% - 56px);
|
|
1732
|
-
}
|
|
1733
1721
|
.oui-h-\[calc\(100\%_-_59px\)\] {
|
|
1734
1722
|
height: calc(100% - 59px);
|
|
1735
1723
|
}
|
|
@@ -2771,6 +2759,9 @@ body {
|
|
|
2771
2759
|
.oui-grid-rows-\[auto\,auto\,1fr\,auto\,1fr\] {
|
|
2772
2760
|
grid-template-rows: auto auto 1fr auto 1fr;
|
|
2773
2761
|
}
|
|
2762
|
+
.oui-grid-rows-\[auto_minmax\(0\,1fr\)\] {
|
|
2763
|
+
grid-template-rows: auto minmax(0, 1fr);
|
|
2764
|
+
}
|
|
2774
2765
|
.oui-grid-rows-none {
|
|
2775
2766
|
grid-template-rows: none;
|
|
2776
2767
|
}
|
|
@@ -3190,6 +3181,10 @@ body {
|
|
|
3190
3181
|
border-top-right-radius: var(--oui-rounded, 0.25rem) !important;
|
|
3191
3182
|
border-bottom-right-radius: var(--oui-rounded, 0.25rem) !important;
|
|
3192
3183
|
}
|
|
3184
|
+
.oui-rounded-b-2xl {
|
|
3185
|
+
border-bottom-right-radius: var(--oui-rounded-2xl, 1rem);
|
|
3186
|
+
border-bottom-left-radius: var(--oui-rounded-2xl, 1rem);
|
|
3187
|
+
}
|
|
3193
3188
|
.oui-rounded-b-sm {
|
|
3194
3189
|
border-bottom-right-radius: var(--oui-rounded-sm, 0.125rem);
|
|
3195
3190
|
border-bottom-left-radius: var(--oui-rounded-sm, 0.125rem);
|