elseware-ui 2.40.3 → 3.0.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/LICENSE +20 -20
- package/dist/index.css +124 -24
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +82 -251
- package/dist/index.d.ts +82 -251
- package/dist/index.js +630 -430
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +320 -123
- package/dist/index.mjs.map +1 -1
- package/dist/index.native.d.mts +7 -0
- package/dist/index.native.d.ts +7 -0
- package/dist/index.native.js +351 -0
- package/dist/index.native.js.map +1 -0
- package/dist/index.native.mjs +346 -0
- package/dist/index.native.mjs.map +1 -0
- package/dist/resolveGlobalConfigs-CcaOIQCE.d.mts +228 -0
- package/dist/resolveGlobalConfigs-CcaOIQCE.d.ts +228 -0
- package/package.json +32 -4
- package/tailwind.preset.js +116 -0
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2026 elseware Technology
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 elseware Technology
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
21
|
SOFTWARE.
|
package/dist/index.css
CHANGED
|
@@ -715,12 +715,21 @@ video {
|
|
|
715
715
|
.h-\[130px\] {
|
|
716
716
|
height: 130px;
|
|
717
717
|
}
|
|
718
|
+
.h-\[14px\] {
|
|
719
|
+
height: 14px;
|
|
720
|
+
}
|
|
721
|
+
.h-\[18px\] {
|
|
722
|
+
height: 18px;
|
|
723
|
+
}
|
|
718
724
|
.h-\[200px\] {
|
|
719
725
|
height: 200px;
|
|
720
726
|
}
|
|
721
727
|
.h-\[20px\] {
|
|
722
728
|
height: 20px;
|
|
723
729
|
}
|
|
730
|
+
.h-\[22px\] {
|
|
731
|
+
height: 22px;
|
|
732
|
+
}
|
|
724
733
|
.h-\[250px\] {
|
|
725
734
|
height: 250px;
|
|
726
735
|
}
|
|
@@ -782,6 +791,12 @@ video {
|
|
|
782
791
|
.min-h-10 {
|
|
783
792
|
min-height: 2.5rem;
|
|
784
793
|
}
|
|
794
|
+
.min-h-11 {
|
|
795
|
+
min-height: 2.75rem;
|
|
796
|
+
}
|
|
797
|
+
.min-h-14 {
|
|
798
|
+
min-height: 3.5rem;
|
|
799
|
+
}
|
|
785
800
|
.min-h-3 {
|
|
786
801
|
min-height: .75rem;
|
|
787
802
|
}
|
|
@@ -797,6 +812,9 @@ video {
|
|
|
797
812
|
.min-h-8 {
|
|
798
813
|
min-height: 2rem;
|
|
799
814
|
}
|
|
815
|
+
.min-h-9 {
|
|
816
|
+
min-height: 2.25rem;
|
|
817
|
+
}
|
|
800
818
|
.min-h-\[1\.25rem\] {
|
|
801
819
|
min-height: 1.25rem;
|
|
802
820
|
}
|
|
@@ -806,6 +824,9 @@ video {
|
|
|
806
824
|
.min-h-\[260px\] {
|
|
807
825
|
min-height: 260px;
|
|
808
826
|
}
|
|
827
|
+
.min-h-\[30px\] {
|
|
828
|
+
min-height: 30px;
|
|
829
|
+
}
|
|
809
830
|
.min-h-\[3rem\] {
|
|
810
831
|
min-height: 3rem;
|
|
811
832
|
}
|
|
@@ -914,9 +935,15 @@ video {
|
|
|
914
935
|
.w-\[180px\] {
|
|
915
936
|
width: 180px;
|
|
916
937
|
}
|
|
938
|
+
.w-\[18px\] {
|
|
939
|
+
width: 18px;
|
|
940
|
+
}
|
|
917
941
|
.w-\[220px\] {
|
|
918
942
|
width: 220px;
|
|
919
943
|
}
|
|
944
|
+
.w-\[22px\] {
|
|
945
|
+
width: 22px;
|
|
946
|
+
}
|
|
920
947
|
.w-\[300px\] {
|
|
921
948
|
width: 300px;
|
|
922
949
|
}
|
|
@@ -1024,6 +1051,9 @@ video {
|
|
|
1024
1051
|
.min-w-\[1\.25rem\] {
|
|
1025
1052
|
min-width: 1.25rem;
|
|
1026
1053
|
}
|
|
1054
|
+
.min-w-\[112px\] {
|
|
1055
|
+
min-width: 112px;
|
|
1056
|
+
}
|
|
1027
1057
|
.min-w-\[120px\] {
|
|
1028
1058
|
min-width: 120px;
|
|
1029
1059
|
}
|
|
@@ -2555,6 +2585,9 @@ video {
|
|
|
2555
2585
|
-o-object-fit: cover;
|
|
2556
2586
|
object-fit: cover;
|
|
2557
2587
|
}
|
|
2588
|
+
.p-0 {
|
|
2589
|
+
padding: 0;
|
|
2590
|
+
}
|
|
2558
2591
|
.p-1 {
|
|
2559
2592
|
padding: .25rem;
|
|
2560
2593
|
}
|
|
@@ -2615,6 +2648,14 @@ video {
|
|
|
2615
2648
|
padding-left: 1.5rem;
|
|
2616
2649
|
padding-right: 1.5rem;
|
|
2617
2650
|
}
|
|
2651
|
+
.px-\[18px\] {
|
|
2652
|
+
padding-left: 18px;
|
|
2653
|
+
padding-right: 18px;
|
|
2654
|
+
}
|
|
2655
|
+
.px-\[22px\] {
|
|
2656
|
+
padding-left: 22px;
|
|
2657
|
+
padding-right: 22px;
|
|
2658
|
+
}
|
|
2618
2659
|
.py-0 {
|
|
2619
2660
|
padding-bottom: 0;
|
|
2620
2661
|
padding-top: 0;
|
|
@@ -2809,9 +2850,15 @@ video {
|
|
|
2809
2850
|
.text-\[15px\] {
|
|
2810
2851
|
font-size: 15px;
|
|
2811
2852
|
}
|
|
2853
|
+
.text-\[17px\] {
|
|
2854
|
+
font-size: 17px;
|
|
2855
|
+
}
|
|
2812
2856
|
.text-\[18px\] {
|
|
2813
2857
|
font-size: 18px;
|
|
2814
2858
|
}
|
|
2859
|
+
.text-\[19px\] {
|
|
2860
|
+
font-size: 19px;
|
|
2861
|
+
}
|
|
2815
2862
|
.text-\[20px\] {
|
|
2816
2863
|
font-size: 20px;
|
|
2817
2864
|
}
|
|
@@ -2869,6 +2916,12 @@ video {
|
|
|
2869
2916
|
--tw-numeric-spacing:tabular-nums;
|
|
2870
2917
|
font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
|
|
2871
2918
|
}
|
|
2919
|
+
.leading-3 {
|
|
2920
|
+
line-height: .75rem;
|
|
2921
|
+
}
|
|
2922
|
+
.leading-4 {
|
|
2923
|
+
line-height: 1rem;
|
|
2924
|
+
}
|
|
2872
2925
|
.leading-5 {
|
|
2873
2926
|
line-height: 1.25rem;
|
|
2874
2927
|
}
|
|
@@ -2887,6 +2940,9 @@ video {
|
|
|
2887
2940
|
.leading-\[120px\] {
|
|
2888
2941
|
line-height: 120px;
|
|
2889
2942
|
}
|
|
2943
|
+
.leading-\[14px\] {
|
|
2944
|
+
line-height: 14px;
|
|
2945
|
+
}
|
|
2890
2946
|
.leading-\[18px\] {
|
|
2891
2947
|
line-height: 18px;
|
|
2892
2948
|
}
|
|
@@ -3347,6 +3403,9 @@ video {
|
|
|
3347
3403
|
.opacity-50 {
|
|
3348
3404
|
opacity: .5;
|
|
3349
3405
|
}
|
|
3406
|
+
.opacity-55 {
|
|
3407
|
+
opacity: .55;
|
|
3408
|
+
}
|
|
3350
3409
|
.opacity-60 {
|
|
3351
3410
|
opacity: .6;
|
|
3352
3411
|
}
|
|
@@ -3393,14 +3452,6 @@ video {
|
|
|
3393
3452
|
var(--tw-ring-shadow,0 0 #0000),
|
|
3394
3453
|
var(--tw-shadow);
|
|
3395
3454
|
}
|
|
3396
|
-
.shadow-\[0_0_30px_rgba\(34\,211\,238\,0\.7\)\] {
|
|
3397
|
-
--tw-shadow:0 0 30px rgba(34,211,238,.7);
|
|
3398
|
-
--tw-shadow-colored:0 0 30px var(--tw-shadow-color);
|
|
3399
|
-
box-shadow:
|
|
3400
|
-
var(--tw-ring-offset-shadow,0 0 #0000),
|
|
3401
|
-
var(--tw-ring-shadow,0 0 #0000),
|
|
3402
|
-
var(--tw-shadow);
|
|
3403
|
-
}
|
|
3404
3455
|
.shadow-\[0_0_40px_rgba\(168\,85\,247\,0\.5\)\] {
|
|
3405
3456
|
--tw-shadow:0 0 40px rgba(168,85,247,.5);
|
|
3406
3457
|
--tw-shadow-colored:0 0 40px var(--tw-shadow-color);
|
|
@@ -3994,10 +4045,6 @@ video {
|
|
|
3994
4045
|
.hover\:bg-gray-900\/80:hover {
|
|
3995
4046
|
background-color: rgba(17, 24, 39, .8);
|
|
3996
4047
|
}
|
|
3997
|
-
.hover\:bg-green-500:hover {
|
|
3998
|
-
--tw-bg-opacity:1;
|
|
3999
|
-
background-color: rgb(34 197 94/var(--tw-bg-opacity,1));
|
|
4000
|
-
}
|
|
4001
4048
|
.hover\:bg-green-600\/20:hover {
|
|
4002
4049
|
background-color: rgba(22, 163, 74, .2);
|
|
4003
4050
|
}
|
|
@@ -4206,6 +4253,9 @@ video {
|
|
|
4206
4253
|
--tw-scale-y:.95;
|
|
4207
4254
|
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));
|
|
4208
4255
|
}
|
|
4256
|
+
.active\:opacity-80:active {
|
|
4257
|
+
opacity: .8;
|
|
4258
|
+
}
|
|
4209
4259
|
.disabled\:cursor-not-allowed:disabled {
|
|
4210
4260
|
cursor: not-allowed;
|
|
4211
4261
|
}
|
|
@@ -5784,12 +5834,21 @@ video {
|
|
|
5784
5834
|
.h-\[130px\] {
|
|
5785
5835
|
height: 130px;
|
|
5786
5836
|
}
|
|
5837
|
+
.h-\[14px\] {
|
|
5838
|
+
height: 14px;
|
|
5839
|
+
}
|
|
5840
|
+
.h-\[18px\] {
|
|
5841
|
+
height: 18px;
|
|
5842
|
+
}
|
|
5787
5843
|
.h-\[200px\] {
|
|
5788
5844
|
height: 200px;
|
|
5789
5845
|
}
|
|
5790
5846
|
.h-\[20px\] {
|
|
5791
5847
|
height: 20px;
|
|
5792
5848
|
}
|
|
5849
|
+
.h-\[22px\] {
|
|
5850
|
+
height: 22px;
|
|
5851
|
+
}
|
|
5793
5852
|
.h-\[250px\] {
|
|
5794
5853
|
height: 250px;
|
|
5795
5854
|
}
|
|
@@ -5851,6 +5910,12 @@ video {
|
|
|
5851
5910
|
.min-h-10 {
|
|
5852
5911
|
min-height: 2.5rem;
|
|
5853
5912
|
}
|
|
5913
|
+
.min-h-11 {
|
|
5914
|
+
min-height: 2.75rem;
|
|
5915
|
+
}
|
|
5916
|
+
.min-h-14 {
|
|
5917
|
+
min-height: 3.5rem;
|
|
5918
|
+
}
|
|
5854
5919
|
.min-h-3 {
|
|
5855
5920
|
min-height: .75rem;
|
|
5856
5921
|
}
|
|
@@ -5866,6 +5931,9 @@ video {
|
|
|
5866
5931
|
.min-h-8 {
|
|
5867
5932
|
min-height: 2rem;
|
|
5868
5933
|
}
|
|
5934
|
+
.min-h-9 {
|
|
5935
|
+
min-height: 2.25rem;
|
|
5936
|
+
}
|
|
5869
5937
|
.min-h-\[1\.25rem\] {
|
|
5870
5938
|
min-height: 1.25rem;
|
|
5871
5939
|
}
|
|
@@ -5875,6 +5943,9 @@ video {
|
|
|
5875
5943
|
.min-h-\[260px\] {
|
|
5876
5944
|
min-height: 260px;
|
|
5877
5945
|
}
|
|
5946
|
+
.min-h-\[30px\] {
|
|
5947
|
+
min-height: 30px;
|
|
5948
|
+
}
|
|
5878
5949
|
.min-h-\[3rem\] {
|
|
5879
5950
|
min-height: 3rem;
|
|
5880
5951
|
}
|
|
@@ -5983,9 +6054,15 @@ video {
|
|
|
5983
6054
|
.w-\[180px\] {
|
|
5984
6055
|
width: 180px;
|
|
5985
6056
|
}
|
|
6057
|
+
.w-\[18px\] {
|
|
6058
|
+
width: 18px;
|
|
6059
|
+
}
|
|
5986
6060
|
.w-\[220px\] {
|
|
5987
6061
|
width: 220px;
|
|
5988
6062
|
}
|
|
6063
|
+
.w-\[22px\] {
|
|
6064
|
+
width: 22px;
|
|
6065
|
+
}
|
|
5989
6066
|
.w-\[300px\] {
|
|
5990
6067
|
width: 300px;
|
|
5991
6068
|
}
|
|
@@ -6093,6 +6170,9 @@ video {
|
|
|
6093
6170
|
.min-w-\[1\.25rem\] {
|
|
6094
6171
|
min-width: 1.25rem;
|
|
6095
6172
|
}
|
|
6173
|
+
.min-w-\[112px\] {
|
|
6174
|
+
min-width: 112px;
|
|
6175
|
+
}
|
|
6096
6176
|
.min-w-\[120px\] {
|
|
6097
6177
|
min-width: 120px;
|
|
6098
6178
|
}
|
|
@@ -7624,6 +7704,9 @@ video {
|
|
|
7624
7704
|
-o-object-fit: cover;
|
|
7625
7705
|
object-fit: cover;
|
|
7626
7706
|
}
|
|
7707
|
+
.p-0 {
|
|
7708
|
+
padding: 0;
|
|
7709
|
+
}
|
|
7627
7710
|
.p-1 {
|
|
7628
7711
|
padding: .25rem;
|
|
7629
7712
|
}
|
|
@@ -7684,6 +7767,14 @@ video {
|
|
|
7684
7767
|
padding-left: 1.5rem;
|
|
7685
7768
|
padding-right: 1.5rem;
|
|
7686
7769
|
}
|
|
7770
|
+
.px-\[18px\] {
|
|
7771
|
+
padding-left: 18px;
|
|
7772
|
+
padding-right: 18px;
|
|
7773
|
+
}
|
|
7774
|
+
.px-\[22px\] {
|
|
7775
|
+
padding-left: 22px;
|
|
7776
|
+
padding-right: 22px;
|
|
7777
|
+
}
|
|
7687
7778
|
.py-0 {
|
|
7688
7779
|
padding-bottom: 0;
|
|
7689
7780
|
padding-top: 0;
|
|
@@ -7878,9 +7969,15 @@ video {
|
|
|
7878
7969
|
.text-\[15px\] {
|
|
7879
7970
|
font-size: 15px;
|
|
7880
7971
|
}
|
|
7972
|
+
.text-\[17px\] {
|
|
7973
|
+
font-size: 17px;
|
|
7974
|
+
}
|
|
7881
7975
|
.text-\[18px\] {
|
|
7882
7976
|
font-size: 18px;
|
|
7883
7977
|
}
|
|
7978
|
+
.text-\[19px\] {
|
|
7979
|
+
font-size: 19px;
|
|
7980
|
+
}
|
|
7884
7981
|
.text-\[20px\] {
|
|
7885
7982
|
font-size: 20px;
|
|
7886
7983
|
}
|
|
@@ -7938,6 +8035,12 @@ video {
|
|
|
7938
8035
|
--tw-numeric-spacing:tabular-nums;
|
|
7939
8036
|
font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
|
|
7940
8037
|
}
|
|
8038
|
+
.leading-3 {
|
|
8039
|
+
line-height: .75rem;
|
|
8040
|
+
}
|
|
8041
|
+
.leading-4 {
|
|
8042
|
+
line-height: 1rem;
|
|
8043
|
+
}
|
|
7941
8044
|
.leading-5 {
|
|
7942
8045
|
line-height: 1.25rem;
|
|
7943
8046
|
}
|
|
@@ -7956,6 +8059,9 @@ video {
|
|
|
7956
8059
|
.leading-\[120px\] {
|
|
7957
8060
|
line-height: 120px;
|
|
7958
8061
|
}
|
|
8062
|
+
.leading-\[14px\] {
|
|
8063
|
+
line-height: 14px;
|
|
8064
|
+
}
|
|
7959
8065
|
.leading-\[18px\] {
|
|
7960
8066
|
line-height: 18px;
|
|
7961
8067
|
}
|
|
@@ -8416,6 +8522,9 @@ video {
|
|
|
8416
8522
|
.opacity-50 {
|
|
8417
8523
|
opacity: .5;
|
|
8418
8524
|
}
|
|
8525
|
+
.opacity-55 {
|
|
8526
|
+
opacity: .55;
|
|
8527
|
+
}
|
|
8419
8528
|
.opacity-60 {
|
|
8420
8529
|
opacity: .6;
|
|
8421
8530
|
}
|
|
@@ -8462,14 +8571,6 @@ video {
|
|
|
8462
8571
|
var(--tw-ring-shadow,0 0 #0000),
|
|
8463
8572
|
var(--tw-shadow);
|
|
8464
8573
|
}
|
|
8465
|
-
.shadow-\[0_0_30px_rgba\(34\,211\,238\,0\.7\)\] {
|
|
8466
|
-
--tw-shadow:0 0 30px rgba(34,211,238,.7);
|
|
8467
|
-
--tw-shadow-colored:0 0 30px var(--tw-shadow-color);
|
|
8468
|
-
box-shadow:
|
|
8469
|
-
var(--tw-ring-offset-shadow,0 0 #0000),
|
|
8470
|
-
var(--tw-ring-shadow,0 0 #0000),
|
|
8471
|
-
var(--tw-shadow);
|
|
8472
|
-
}
|
|
8473
8574
|
.shadow-\[0_0_40px_rgba\(168\,85\,247\,0\.5\)\] {
|
|
8474
8575
|
--tw-shadow:0 0 40px rgba(168,85,247,.5);
|
|
8475
8576
|
--tw-shadow-colored:0 0 40px var(--tw-shadow-color);
|
|
@@ -9148,10 +9249,6 @@ video {
|
|
|
9148
9249
|
.hover\:bg-gray-900\/80:hover {
|
|
9149
9250
|
background-color: rgba(17, 24, 39, .8);
|
|
9150
9251
|
}
|
|
9151
|
-
.hover\:bg-green-500:hover {
|
|
9152
|
-
--tw-bg-opacity:1;
|
|
9153
|
-
background-color: rgb(34 197 94/var(--tw-bg-opacity,1));
|
|
9154
|
-
}
|
|
9155
9252
|
.hover\:bg-green-600\/20:hover {
|
|
9156
9253
|
background-color: rgba(22, 163, 74, .2);
|
|
9157
9254
|
}
|
|
@@ -9360,6 +9457,9 @@ video {
|
|
|
9360
9457
|
--tw-scale-y:.95;
|
|
9361
9458
|
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));
|
|
9362
9459
|
}
|
|
9460
|
+
.active\:opacity-80:active {
|
|
9461
|
+
opacity: .8;
|
|
9462
|
+
}
|
|
9363
9463
|
.disabled\:cursor-not-allowed:disabled {
|
|
9364
9464
|
cursor: not-allowed;
|
|
9365
9465
|
}
|