@orderly.network/ui 2.10.2 → 3.0.0-beta.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 +100 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +114 -52
- package/dist/index.d.ts +114 -52
- package/dist/index.js +536 -504
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +254 -296
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +4 -3
package/dist/index.css
CHANGED
|
@@ -557,6 +557,9 @@ body {
|
|
|
557
557
|
.-oui-right-\[6px\] {
|
|
558
558
|
right: -6px;
|
|
559
559
|
}
|
|
560
|
+
.-oui-right-px {
|
|
561
|
+
right: -1px;
|
|
562
|
+
}
|
|
560
563
|
.-oui-top-4 {
|
|
561
564
|
top: -1rem;
|
|
562
565
|
}
|
|
@@ -572,6 +575,9 @@ body {
|
|
|
572
575
|
.-oui-top-\[calc\(100vh\/2\)\] {
|
|
573
576
|
top: calc(calc(100vh / 2) * -1);
|
|
574
577
|
}
|
|
578
|
+
.-oui-top-px {
|
|
579
|
+
top: -1px;
|
|
580
|
+
}
|
|
575
581
|
.oui--bottom-12 {
|
|
576
582
|
bottom: -3rem;
|
|
577
583
|
}
|
|
@@ -716,6 +722,9 @@ body {
|
|
|
716
722
|
.oui-top-\[0px\] {
|
|
717
723
|
top: 0px;
|
|
718
724
|
}
|
|
725
|
+
.oui-top-\[100px\] {
|
|
726
|
+
top: 100px;
|
|
727
|
+
}
|
|
719
728
|
.oui-top-\[10px\] {
|
|
720
729
|
top: 10px;
|
|
721
730
|
}
|
|
@@ -1270,6 +1279,9 @@ body {
|
|
|
1270
1279
|
.oui-mt-\[7px\] {
|
|
1271
1280
|
margin-top: 7px;
|
|
1272
1281
|
}
|
|
1282
|
+
.oui-mt-\[9px\] {
|
|
1283
|
+
margin-top: 9px;
|
|
1284
|
+
}
|
|
1273
1285
|
.oui-mt-auto {
|
|
1274
1286
|
margin-top: auto;
|
|
1275
1287
|
}
|
|
@@ -1591,6 +1603,9 @@ body {
|
|
|
1591
1603
|
.oui-h-\[300px\] {
|
|
1592
1604
|
height: 300px;
|
|
1593
1605
|
}
|
|
1606
|
+
.oui-h-\[308px\] {
|
|
1607
|
+
height: 308px;
|
|
1608
|
+
}
|
|
1594
1609
|
.oui-h-\[30px\] {
|
|
1595
1610
|
height: 30px;
|
|
1596
1611
|
}
|
|
@@ -3216,6 +3231,9 @@ body {
|
|
|
3216
3231
|
.oui-rounded-bl-\[6px\] {
|
|
3217
3232
|
border-bottom-left-radius: 6px;
|
|
3218
3233
|
}
|
|
3234
|
+
.oui-rounded-bl-md {
|
|
3235
|
+
border-bottom-left-radius: var(--oui-rounded-md, 0.375rem);
|
|
3236
|
+
}
|
|
3219
3237
|
.oui-rounded-br-\[3px\] {
|
|
3220
3238
|
border-bottom-right-radius: 3px;
|
|
3221
3239
|
}
|
|
@@ -3237,6 +3255,9 @@ body {
|
|
|
3237
3255
|
.oui-rounded-tr-\[10px\] {
|
|
3238
3256
|
border-top-right-radius: 10px;
|
|
3239
3257
|
}
|
|
3258
|
+
.oui-rounded-tr-md {
|
|
3259
|
+
border-top-right-radius: var(--oui-rounded-md, 0.375rem);
|
|
3260
|
+
}
|
|
3240
3261
|
.\!oui-border {
|
|
3241
3262
|
border-width: 1px !important;
|
|
3242
3263
|
}
|
|
@@ -3308,6 +3329,10 @@ body {
|
|
|
3308
3329
|
--tw-border-opacity: 1 !important;
|
|
3309
3330
|
border-color: rgb(var(--oui-color-primary-light) / var(--tw-border-opacity, 1)) !important;
|
|
3310
3331
|
}
|
|
3332
|
+
.oui-border-\[\#38e2fe\] {
|
|
3333
|
+
--tw-border-opacity: 1;
|
|
3334
|
+
border-color: rgb(56 226 254 / var(--tw-border-opacity, 1));
|
|
3335
|
+
}
|
|
3311
3336
|
.oui-border-\[\#d9d9d9\] {
|
|
3312
3337
|
--tw-border-opacity: 1;
|
|
3313
3338
|
border-color: rgb(217 217 217 / var(--tw-border-opacity, 1));
|
|
@@ -3435,6 +3460,9 @@ body {
|
|
|
3435
3460
|
--tw-border-opacity: 1;
|
|
3436
3461
|
border-color: rgb(var(--oui-color-warning-light) / var(--tw-border-opacity, 1));
|
|
3437
3462
|
}
|
|
3463
|
+
.oui-border-white\/\[0\.12\] {
|
|
3464
|
+
border-color: rgb(255 255 255 / 0.12);
|
|
3465
|
+
}
|
|
3438
3466
|
.oui-border-b-line-4 {
|
|
3439
3467
|
border-bottom-color: rgb(var(--oui-color-line, 255 255 255) / 0.04);
|
|
3440
3468
|
}
|
|
@@ -3467,6 +3495,9 @@ body {
|
|
|
3467
3495
|
--tw-bg-opacity: 1 !important;
|
|
3468
3496
|
background-color: rgb(var(--oui-color-base-9) / var(--tw-bg-opacity, 1)) !important;
|
|
3469
3497
|
}
|
|
3498
|
+
.\!oui-bg-black\/10 {
|
|
3499
|
+
background-color: rgb(0 0 0 / 0.1) !important;
|
|
3500
|
+
}
|
|
3470
3501
|
.\!oui-bg-primary-darken {
|
|
3471
3502
|
--tw-bg-opacity: 1 !important;
|
|
3472
3503
|
background-color: rgb(var(--oui-color-primary-darken) / var(--tw-bg-opacity, 1)) !important;
|
|
@@ -3494,6 +3525,10 @@ body {
|
|
|
3494
3525
|
--tw-bg-opacity: 1;
|
|
3495
3526
|
background-color: rgb(51 95 252 / var(--tw-bg-opacity, 1));
|
|
3496
3527
|
}
|
|
3528
|
+
.oui-bg-\[\#38e2fe\] {
|
|
3529
|
+
--tw-bg-opacity: 1;
|
|
3530
|
+
background-color: rgb(56 226 254 / var(--tw-bg-opacity, 1));
|
|
3531
|
+
}
|
|
3497
3532
|
.oui-bg-\[\#3D79A9\] {
|
|
3498
3533
|
--tw-bg-opacity: 1;
|
|
3499
3534
|
background-color: rgb(61 121 169 / var(--tw-bg-opacity, 1));
|
|
@@ -4159,6 +4194,10 @@ body {
|
|
|
4159
4194
|
padding-left: 0.25rem !important;
|
|
4160
4195
|
padding-right: 0.25rem !important;
|
|
4161
4196
|
}
|
|
4197
|
+
.\!oui-py-0 {
|
|
4198
|
+
padding-top: 0px !important;
|
|
4199
|
+
padding-bottom: 0px !important;
|
|
4200
|
+
}
|
|
4162
4201
|
.\!oui-py-12 {
|
|
4163
4202
|
padding-top: 3rem !important;
|
|
4164
4203
|
padding-bottom: 3rem !important;
|
|
@@ -4410,6 +4449,9 @@ body {
|
|
|
4410
4449
|
.oui-pb-\[9px\] {
|
|
4411
4450
|
padding-bottom: 9px;
|
|
4412
4451
|
}
|
|
4452
|
+
.oui-pb-\[calc\(20px\+env\(safe-area-inset-bottom\)\)\] {
|
|
4453
|
+
padding-bottom: calc(20px + env(safe-area-inset-bottom));
|
|
4454
|
+
}
|
|
4413
4455
|
.oui-pb-\[calc\(env\(safe-area-inset-bottom\)\)\] {
|
|
4414
4456
|
padding-bottom: calc(env(safe-area-inset-bottom));
|
|
4415
4457
|
}
|
|
@@ -4687,6 +4729,12 @@ body {
|
|
|
4687
4729
|
.oui-leading-5 {
|
|
4688
4730
|
line-height: 1.25rem;
|
|
4689
4731
|
}
|
|
4732
|
+
.oui-leading-6 {
|
|
4733
|
+
line-height: 1.5rem;
|
|
4734
|
+
}
|
|
4735
|
+
.oui-leading-8 {
|
|
4736
|
+
line-height: 2rem;
|
|
4737
|
+
}
|
|
4690
4738
|
.oui-leading-\[0px\] {
|
|
4691
4739
|
line-height: 0px;
|
|
4692
4740
|
}
|
|
@@ -4753,6 +4801,9 @@ body {
|
|
|
4753
4801
|
.oui-tracking-\[0\.03em\] {
|
|
4754
4802
|
letter-spacing: 0.03em;
|
|
4755
4803
|
}
|
|
4804
|
+
.oui-tracking-\[0\.48px\] {
|
|
4805
|
+
letter-spacing: 0.48px;
|
|
4806
|
+
}
|
|
4756
4807
|
.oui-tracking-tight {
|
|
4757
4808
|
letter-spacing: -0.025em;
|
|
4758
4809
|
}
|
|
@@ -4959,6 +5010,10 @@ body {
|
|
|
4959
5010
|
--tw-text-opacity: 1;
|
|
4960
5011
|
color: rgb(var(--oui-color-warning-light) / var(--tw-text-opacity, 1));
|
|
4961
5012
|
}
|
|
5013
|
+
.oui-text-white {
|
|
5014
|
+
--tw-text-opacity: 1;
|
|
5015
|
+
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
5016
|
+
}
|
|
4962
5017
|
.oui-underline {
|
|
4963
5018
|
text-decoration-line: underline;
|
|
4964
5019
|
}
|
|
@@ -5031,6 +5086,9 @@ body {
|
|
|
5031
5086
|
.oui-opacity-80 {
|
|
5032
5087
|
opacity: 0.8;
|
|
5033
5088
|
}
|
|
5089
|
+
.oui-opacity-90 {
|
|
5090
|
+
opacity: 0.9;
|
|
5091
|
+
}
|
|
5034
5092
|
.oui-opacity-\[\.12\] {
|
|
5035
5093
|
opacity: .12;
|
|
5036
5094
|
}
|
|
@@ -5166,12 +5224,18 @@ body {
|
|
|
5166
5224
|
.oui-outline-danger-light {
|
|
5167
5225
|
outline-color: rgb(var(--oui-color-danger-light) / 1);
|
|
5168
5226
|
}
|
|
5227
|
+
.oui-outline-line {
|
|
5228
|
+
outline-color: rgb(var(--oui-color-line, 255 255 255) / 0.08);
|
|
5229
|
+
}
|
|
5169
5230
|
.oui-outline-line-12 {
|
|
5170
5231
|
outline-color: rgb(var(--oui-color-line, 255 255 255) / 0.12);
|
|
5171
5232
|
}
|
|
5172
5233
|
.oui-outline-primary-darken {
|
|
5173
5234
|
outline-color: rgb(var(--oui-color-primary-darken) / 1);
|
|
5174
5235
|
}
|
|
5236
|
+
.oui-outline-primary-light {
|
|
5237
|
+
outline-color: rgb(var(--oui-color-primary-light) / 1);
|
|
5238
|
+
}
|
|
5175
5239
|
.oui-outline-success {
|
|
5176
5240
|
outline-color: rgb(var(--oui-color-success) / 1);
|
|
5177
5241
|
}
|
|
@@ -5711,6 +5775,9 @@ body {
|
|
|
5711
5775
|
.hover\:oui-border-base-contrast-16:hover {
|
|
5712
5776
|
border-color: rgb(var(--oui-color-base-foreground) / 0.16);
|
|
5713
5777
|
}
|
|
5778
|
+
.hover\:oui-border-line-12:hover {
|
|
5779
|
+
border-color: rgb(var(--oui-color-line, 255 255 255) / 0.12);
|
|
5780
|
+
}
|
|
5714
5781
|
.hover\:oui-border-primary-light:hover {
|
|
5715
5782
|
--tw-border-opacity: 1;
|
|
5716
5783
|
border-color: rgb(var(--oui-color-primary-light) / var(--tw-border-opacity, 1));
|
|
@@ -5735,6 +5802,9 @@ body {
|
|
|
5735
5802
|
--tw-bg-opacity: 1;
|
|
5736
5803
|
background-color: rgb(var(--oui-color-base-3) / var(--tw-bg-opacity, 1));
|
|
5737
5804
|
}
|
|
5805
|
+
.hover\:oui-bg-base-3\/80:hover {
|
|
5806
|
+
background-color: rgb(var(--oui-color-base-3) / 0.8);
|
|
5807
|
+
}
|
|
5738
5808
|
.hover\:oui-bg-base-4:hover {
|
|
5739
5809
|
--tw-bg-opacity: 1;
|
|
5740
5810
|
background-color: rgb(var(--oui-color-base-4) / var(--tw-bg-opacity, 1));
|
|
@@ -5840,6 +5910,9 @@ body {
|
|
|
5840
5910
|
.hover\:oui-text-base-contrast-80:hover {
|
|
5841
5911
|
color: rgb(var(--oui-color-base-foreground) / 0.80);
|
|
5842
5912
|
}
|
|
5913
|
+
.hover\:oui-text-danger\/80:hover {
|
|
5914
|
+
color: rgb(var(--oui-color-danger) / 0.8);
|
|
5915
|
+
}
|
|
5843
5916
|
.hover\:oui-text-primary-darken:hover {
|
|
5844
5917
|
--tw-text-opacity: 1;
|
|
5845
5918
|
color: rgb(var(--oui-color-primary-darken) / var(--tw-text-opacity, 1));
|
|
@@ -5854,10 +5927,19 @@ body {
|
|
|
5854
5927
|
.hover\:oui-text-secondary\/80:hover {
|
|
5855
5928
|
color: rgb(var(--oui-color-secondary) / 0.8);
|
|
5856
5929
|
}
|
|
5930
|
+
.hover\:oui-text-success\/80:hover {
|
|
5931
|
+
color: rgb(var(--oui-color-success) / 0.8);
|
|
5932
|
+
}
|
|
5857
5933
|
.hover\:oui-text-warning-darken:hover {
|
|
5858
5934
|
--tw-text-opacity: 1;
|
|
5859
5935
|
color: rgb(var(--oui-color-warning-darken) / var(--tw-text-opacity, 1));
|
|
5860
5936
|
}
|
|
5937
|
+
.hover\:oui-text-warning-darken\/80:hover {
|
|
5938
|
+
color: rgb(var(--oui-color-warning-darken) / 0.8);
|
|
5939
|
+
}
|
|
5940
|
+
.hover\:oui-text-white\/80:hover {
|
|
5941
|
+
color: rgb(255 255 255 / 0.8);
|
|
5942
|
+
}
|
|
5861
5943
|
.hover\:oui-opacity-100:hover {
|
|
5862
5944
|
opacity: 1;
|
|
5863
5945
|
}
|
|
@@ -5992,6 +6074,9 @@ body {
|
|
|
5992
6074
|
.active\:oui-bg-base-2\/70:active {
|
|
5993
6075
|
background-color: rgb(var(--oui-color-base-2) / 0.7);
|
|
5994
6076
|
}
|
|
6077
|
+
.active\:oui-bg-base-3\/70:active {
|
|
6078
|
+
background-color: rgb(var(--oui-color-base-3) / 0.7);
|
|
6079
|
+
}
|
|
5995
6080
|
.active\:oui-bg-base-4\/70:active {
|
|
5996
6081
|
background-color: rgb(var(--oui-color-base-4) / 0.7);
|
|
5997
6082
|
}
|
|
@@ -6020,6 +6105,21 @@ body {
|
|
|
6020
6105
|
.active\:oui-bg-warning-darken\/70:active {
|
|
6021
6106
|
background-color: rgb(var(--oui-color-warning-darken) / 0.7);
|
|
6022
6107
|
}
|
|
6108
|
+
.active\:oui-text-danger\/70:active {
|
|
6109
|
+
color: rgb(var(--oui-color-danger) / 0.7);
|
|
6110
|
+
}
|
|
6111
|
+
.active\:oui-text-primary-darken\/70:active {
|
|
6112
|
+
color: rgb(var(--oui-color-primary-darken) / 0.7);
|
|
6113
|
+
}
|
|
6114
|
+
.active\:oui-text-success\/70:active {
|
|
6115
|
+
color: rgb(var(--oui-color-success) / 0.7);
|
|
6116
|
+
}
|
|
6117
|
+
.active\:oui-text-warning-darken\/70:active {
|
|
6118
|
+
color: rgb(var(--oui-color-warning-darken) / 0.7);
|
|
6119
|
+
}
|
|
6120
|
+
.active\:oui-text-white\/70:active {
|
|
6121
|
+
color: rgb(255 255 255 / 0.7);
|
|
6122
|
+
}
|
|
6023
6123
|
.active\:\!oui-shadow-\[0px_0px_4px_0px\]:active {
|
|
6024
6124
|
--tw-shadow: 0px 0px 4px 0px !important;
|
|
6025
6125
|
--tw-shadow-colored: 0px 0px 4px 0px var(--tw-shadow-color) !important;
|