elseware-ui 3.0.2 → 3.0.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/LICENSE +20 -20
- package/dist/index.css +68 -12
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +13 -3
- package/dist/index.d.ts +13 -3
- package/dist/index.js +394 -196
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +393 -196
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
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
|
@@ -408,6 +408,9 @@ video {
|
|
|
408
408
|
.bottom-1 {
|
|
409
409
|
bottom: .25rem;
|
|
410
410
|
}
|
|
411
|
+
.bottom-2 {
|
|
412
|
+
bottom: .5rem;
|
|
413
|
+
}
|
|
411
414
|
.bottom-3 {
|
|
412
415
|
bottom: .75rem;
|
|
413
416
|
}
|
|
@@ -453,6 +456,9 @@ video {
|
|
|
453
456
|
.top-12 {
|
|
454
457
|
top: 3rem;
|
|
455
458
|
}
|
|
459
|
+
.top-2 {
|
|
460
|
+
top: .5rem;
|
|
461
|
+
}
|
|
456
462
|
.top-20 {
|
|
457
463
|
top: 5rem;
|
|
458
464
|
}
|
|
@@ -715,6 +721,9 @@ video {
|
|
|
715
721
|
.h-8 {
|
|
716
722
|
height: 2rem;
|
|
717
723
|
}
|
|
724
|
+
.h-9 {
|
|
725
|
+
height: 2.25rem;
|
|
726
|
+
}
|
|
718
727
|
.h-96 {
|
|
719
728
|
height: 24rem;
|
|
720
729
|
}
|
|
@@ -1114,12 +1123,6 @@ video {
|
|
|
1114
1123
|
.max-w-\[180px\] {
|
|
1115
1124
|
max-width: 180px;
|
|
1116
1125
|
}
|
|
1117
|
-
.max-w-\[360px\] {
|
|
1118
|
-
max-width: 360px;
|
|
1119
|
-
}
|
|
1120
|
-
.max-w-\[400px\] {
|
|
1121
|
-
max-width: 400px;
|
|
1122
|
-
}
|
|
1123
1126
|
.max-w-\[500px\] {
|
|
1124
1127
|
max-width: 500px;
|
|
1125
1128
|
}
|
|
@@ -1989,6 +1992,9 @@ video {
|
|
|
1989
1992
|
.bg-black\/50 {
|
|
1990
1993
|
background-color: rgba(0, 0, 0, .5);
|
|
1991
1994
|
}
|
|
1995
|
+
.bg-black\/60 {
|
|
1996
|
+
background-color: rgba(0, 0, 0, .6);
|
|
1997
|
+
}
|
|
1992
1998
|
.bg-black\/75 {
|
|
1993
1999
|
background-color: rgba(0, 0, 0, .75);
|
|
1994
2000
|
}
|
|
@@ -2206,6 +2212,10 @@ video {
|
|
|
2206
2212
|
.bg-green-500\/5 {
|
|
2207
2213
|
background-color: rgba(34, 197, 94, .05);
|
|
2208
2214
|
}
|
|
2215
|
+
.bg-green-600 {
|
|
2216
|
+
--tw-bg-opacity:1;
|
|
2217
|
+
background-color: rgb(22 163 74/var(--tw-bg-opacity,1));
|
|
2218
|
+
}
|
|
2209
2219
|
.bg-green-600\/40 {
|
|
2210
2220
|
background-color: rgba(22, 163, 74, .4);
|
|
2211
2221
|
}
|
|
@@ -2239,6 +2249,10 @@ video {
|
|
|
2239
2249
|
.bg-red-500\/5 {
|
|
2240
2250
|
background-color: rgba(239, 68, 68, .05);
|
|
2241
2251
|
}
|
|
2252
|
+
.bg-red-600 {
|
|
2253
|
+
--tw-bg-opacity:1;
|
|
2254
|
+
background-color: rgb(220 38 38/var(--tw-bg-opacity,1));
|
|
2255
|
+
}
|
|
2242
2256
|
.bg-red-600\/40 {
|
|
2243
2257
|
background-color: rgba(220, 38, 38, .4);
|
|
2244
2258
|
}
|
|
@@ -3950,6 +3964,9 @@ video {
|
|
|
3950
3964
|
.hover\:border-white\/20:hover {
|
|
3951
3965
|
border-color: hsla(0, 0%, 100%, .2);
|
|
3952
3966
|
}
|
|
3967
|
+
.hover\:bg-black\/80:hover {
|
|
3968
|
+
background-color: rgba(0, 0, 0, .8);
|
|
3969
|
+
}
|
|
3953
3970
|
.hover\:bg-eui-danger-500\/10:hover {
|
|
3954
3971
|
background-color: rgba(220, 53, 69, .1);
|
|
3955
3972
|
}
|
|
@@ -4038,12 +4055,20 @@ video {
|
|
|
4038
4055
|
.hover\:bg-green-600\/20:hover {
|
|
4039
4056
|
background-color: rgba(22, 163, 74, .2);
|
|
4040
4057
|
}
|
|
4058
|
+
.hover\:bg-green-700:hover {
|
|
4059
|
+
--tw-bg-opacity:1;
|
|
4060
|
+
background-color: rgb(21 128 61/var(--tw-bg-opacity,1));
|
|
4061
|
+
}
|
|
4041
4062
|
.hover\:bg-purple-500\/20:hover {
|
|
4042
4063
|
background-color: rgba(168, 85, 247, .2);
|
|
4043
4064
|
}
|
|
4044
4065
|
.hover\:bg-red-500\/10:hover {
|
|
4045
4066
|
background-color: rgba(239, 68, 68, .1);
|
|
4046
4067
|
}
|
|
4068
|
+
.hover\:bg-red-700:hover {
|
|
4069
|
+
--tw-bg-opacity:1;
|
|
4070
|
+
background-color: rgb(185 28 28/var(--tw-bg-opacity,1));
|
|
4071
|
+
}
|
|
4047
4072
|
.hover\:bg-slate-700:hover {
|
|
4048
4073
|
--tw-bg-opacity:1;
|
|
4049
4074
|
background-color: rgb(51 65 85/var(--tw-bg-opacity,1));
|
|
@@ -4237,6 +4262,9 @@ video {
|
|
|
4237
4262
|
--tw-scale-y:.95;
|
|
4238
4263
|
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));
|
|
4239
4264
|
}
|
|
4265
|
+
.active\:cursor-grabbing:active {
|
|
4266
|
+
cursor: grabbing;
|
|
4267
|
+
}
|
|
4240
4268
|
.active\:opacity-80:active {
|
|
4241
4269
|
opacity: .8;
|
|
4242
4270
|
}
|
|
@@ -5554,6 +5582,9 @@ video {
|
|
|
5554
5582
|
.bottom-1 {
|
|
5555
5583
|
bottom: .25rem;
|
|
5556
5584
|
}
|
|
5585
|
+
.bottom-2 {
|
|
5586
|
+
bottom: .5rem;
|
|
5587
|
+
}
|
|
5557
5588
|
.bottom-3 {
|
|
5558
5589
|
bottom: .75rem;
|
|
5559
5590
|
}
|
|
@@ -5599,6 +5630,9 @@ video {
|
|
|
5599
5630
|
.top-12 {
|
|
5600
5631
|
top: 3rem;
|
|
5601
5632
|
}
|
|
5633
|
+
.top-2 {
|
|
5634
|
+
top: .5rem;
|
|
5635
|
+
}
|
|
5602
5636
|
.top-20 {
|
|
5603
5637
|
top: 5rem;
|
|
5604
5638
|
}
|
|
@@ -5861,6 +5895,9 @@ video {
|
|
|
5861
5895
|
.h-8 {
|
|
5862
5896
|
height: 2rem;
|
|
5863
5897
|
}
|
|
5898
|
+
.h-9 {
|
|
5899
|
+
height: 2.25rem;
|
|
5900
|
+
}
|
|
5864
5901
|
.h-96 {
|
|
5865
5902
|
height: 24rem;
|
|
5866
5903
|
}
|
|
@@ -6260,12 +6297,6 @@ video {
|
|
|
6260
6297
|
.max-w-\[180px\] {
|
|
6261
6298
|
max-width: 180px;
|
|
6262
6299
|
}
|
|
6263
|
-
.max-w-\[360px\] {
|
|
6264
|
-
max-width: 360px;
|
|
6265
|
-
}
|
|
6266
|
-
.max-w-\[400px\] {
|
|
6267
|
-
max-width: 400px;
|
|
6268
|
-
}
|
|
6269
6300
|
.max-w-\[500px\] {
|
|
6270
6301
|
max-width: 500px;
|
|
6271
6302
|
}
|
|
@@ -7135,6 +7166,9 @@ video {
|
|
|
7135
7166
|
.bg-black\/50 {
|
|
7136
7167
|
background-color: rgba(0, 0, 0, .5);
|
|
7137
7168
|
}
|
|
7169
|
+
.bg-black\/60 {
|
|
7170
|
+
background-color: rgba(0, 0, 0, .6);
|
|
7171
|
+
}
|
|
7138
7172
|
.bg-black\/75 {
|
|
7139
7173
|
background-color: rgba(0, 0, 0, .75);
|
|
7140
7174
|
}
|
|
@@ -7352,6 +7386,10 @@ video {
|
|
|
7352
7386
|
.bg-green-500\/5 {
|
|
7353
7387
|
background-color: rgba(34, 197, 94, .05);
|
|
7354
7388
|
}
|
|
7389
|
+
.bg-green-600 {
|
|
7390
|
+
--tw-bg-opacity:1;
|
|
7391
|
+
background-color: rgb(22 163 74/var(--tw-bg-opacity,1));
|
|
7392
|
+
}
|
|
7355
7393
|
.bg-green-600\/40 {
|
|
7356
7394
|
background-color: rgba(22, 163, 74, .4);
|
|
7357
7395
|
}
|
|
@@ -7385,6 +7423,10 @@ video {
|
|
|
7385
7423
|
.bg-red-500\/5 {
|
|
7386
7424
|
background-color: rgba(239, 68, 68, .05);
|
|
7387
7425
|
}
|
|
7426
|
+
.bg-red-600 {
|
|
7427
|
+
--tw-bg-opacity:1;
|
|
7428
|
+
background-color: rgb(220 38 38/var(--tw-bg-opacity,1));
|
|
7429
|
+
}
|
|
7388
7430
|
.bg-red-600\/40 {
|
|
7389
7431
|
background-color: rgba(220, 38, 38, .4);
|
|
7390
7432
|
}
|
|
@@ -9181,6 +9223,9 @@ video {
|
|
|
9181
9223
|
.hover\:border-white\/20:hover {
|
|
9182
9224
|
border-color: hsla(0, 0%, 100%, .2);
|
|
9183
9225
|
}
|
|
9226
|
+
.hover\:bg-black\/80:hover {
|
|
9227
|
+
background-color: rgba(0, 0, 0, .8);
|
|
9228
|
+
}
|
|
9184
9229
|
.hover\:bg-eui-danger-500\/10:hover {
|
|
9185
9230
|
background-color: rgba(220, 53, 69, .1);
|
|
9186
9231
|
}
|
|
@@ -9269,12 +9314,20 @@ video {
|
|
|
9269
9314
|
.hover\:bg-green-600\/20:hover {
|
|
9270
9315
|
background-color: rgba(22, 163, 74, .2);
|
|
9271
9316
|
}
|
|
9317
|
+
.hover\:bg-green-700:hover {
|
|
9318
|
+
--tw-bg-opacity:1;
|
|
9319
|
+
background-color: rgb(21 128 61/var(--tw-bg-opacity,1));
|
|
9320
|
+
}
|
|
9272
9321
|
.hover\:bg-purple-500\/20:hover {
|
|
9273
9322
|
background-color: rgba(168, 85, 247, .2);
|
|
9274
9323
|
}
|
|
9275
9324
|
.hover\:bg-red-500\/10:hover {
|
|
9276
9325
|
background-color: rgba(239, 68, 68, .1);
|
|
9277
9326
|
}
|
|
9327
|
+
.hover\:bg-red-700:hover {
|
|
9328
|
+
--tw-bg-opacity:1;
|
|
9329
|
+
background-color: rgb(185 28 28/var(--tw-bg-opacity,1));
|
|
9330
|
+
}
|
|
9278
9331
|
.hover\:bg-slate-700:hover {
|
|
9279
9332
|
--tw-bg-opacity:1;
|
|
9280
9333
|
background-color: rgb(51 65 85/var(--tw-bg-opacity,1));
|
|
@@ -9468,6 +9521,9 @@ video {
|
|
|
9468
9521
|
--tw-scale-y:.95;
|
|
9469
9522
|
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));
|
|
9470
9523
|
}
|
|
9524
|
+
.active\:cursor-grabbing:active {
|
|
9525
|
+
cursor: grabbing;
|
|
9526
|
+
}
|
|
9471
9527
|
.active\:opacity-80:active {
|
|
9472
9528
|
opacity: .8;
|
|
9473
9529
|
}
|