@seeqdev/qomponents 0.0.138 → 0.0.140
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.esm.js +53 -30
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +53 -30
- package/dist/index.js.map +1 -1
- package/dist/styles.css +56 -30
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -2109,12 +2109,12 @@ ol,
|
|
|
2109
2109
|
height: 200px;
|
|
2110
2110
|
}
|
|
2111
2111
|
|
|
2112
|
-
.tw-h-\[
|
|
2113
|
-
height:
|
|
2112
|
+
.tw-h-\[25px\] {
|
|
2113
|
+
height: 25px;
|
|
2114
2114
|
}
|
|
2115
2115
|
|
|
2116
|
-
.tw-h-\[
|
|
2117
|
-
height:
|
|
2116
|
+
.tw-h-\[27px\] {
|
|
2117
|
+
height: 27px;
|
|
2118
2118
|
}
|
|
2119
2119
|
|
|
2120
2120
|
.tw-h-\[5px\] {
|
|
@@ -2260,6 +2260,10 @@ ol,
|
|
|
2260
2260
|
flex: 1 1 0%;
|
|
2261
2261
|
}
|
|
2262
2262
|
|
|
2263
|
+
.tw-flex-shrink-0 {
|
|
2264
|
+
flex-shrink: 0;
|
|
2265
|
+
}
|
|
2266
|
+
|
|
2263
2267
|
.tw-flex-grow {
|
|
2264
2268
|
flex-grow: 1;
|
|
2265
2269
|
}
|
|
@@ -2438,6 +2442,10 @@ ol,
|
|
|
2438
2442
|
overflow-y: auto;
|
|
2439
2443
|
}
|
|
2440
2444
|
|
|
2445
|
+
.tw-text-ellipsis {
|
|
2446
|
+
text-overflow: ellipsis;
|
|
2447
|
+
}
|
|
2448
|
+
|
|
2441
2449
|
.tw-whitespace-nowrap {
|
|
2442
2450
|
white-space: nowrap;
|
|
2443
2451
|
}
|
|
@@ -2446,8 +2454,12 @@ ol,
|
|
|
2446
2454
|
border-radius: 0.25rem;
|
|
2447
2455
|
}
|
|
2448
2456
|
|
|
2449
|
-
.tw-rounded-\[
|
|
2450
|
-
border-radius:
|
|
2457
|
+
.tw-rounded-\[10px\] {
|
|
2458
|
+
border-radius: 10px;
|
|
2459
|
+
}
|
|
2460
|
+
|
|
2461
|
+
.tw-rounded-\[15px\] {
|
|
2462
|
+
border-radius: 15px;
|
|
2451
2463
|
}
|
|
2452
2464
|
|
|
2453
2465
|
.tw-rounded-\[3px\] {
|
|
@@ -2467,7 +2479,7 @@ ol,
|
|
|
2467
2479
|
}
|
|
2468
2480
|
|
|
2469
2481
|
.tw-rounded-md {
|
|
2470
|
-
border-radius:
|
|
2482
|
+
border-radius: 15px;
|
|
2471
2483
|
}
|
|
2472
2484
|
|
|
2473
2485
|
.tw-rounded-none {
|
|
@@ -2483,14 +2495,29 @@ ol,
|
|
|
2483
2495
|
border-bottom-left-radius: 0.25rem;
|
|
2484
2496
|
}
|
|
2485
2497
|
|
|
2498
|
+
.tw-rounded-l-\[15px\] {
|
|
2499
|
+
border-top-left-radius: 15px;
|
|
2500
|
+
border-bottom-left-radius: 15px;
|
|
2501
|
+
}
|
|
2502
|
+
|
|
2503
|
+
.tw-rounded-l-md {
|
|
2504
|
+
border-top-left-radius: 15px;
|
|
2505
|
+
border-bottom-left-radius: 15px;
|
|
2506
|
+
}
|
|
2507
|
+
|
|
2486
2508
|
.tw-rounded-l-none {
|
|
2487
2509
|
border-top-left-radius: 0px;
|
|
2488
2510
|
border-bottom-left-radius: 0px;
|
|
2489
2511
|
}
|
|
2490
2512
|
|
|
2491
|
-
.tw-rounded-
|
|
2492
|
-
border-top-
|
|
2493
|
-
border-bottom-
|
|
2513
|
+
.tw-rounded-r-\[15px\] {
|
|
2514
|
+
border-top-right-radius: 15px;
|
|
2515
|
+
border-bottom-right-radius: 15px;
|
|
2516
|
+
}
|
|
2517
|
+
|
|
2518
|
+
.tw-rounded-r-md {
|
|
2519
|
+
border-top-right-radius: 15px;
|
|
2520
|
+
border-bottom-right-radius: 15px;
|
|
2494
2521
|
}
|
|
2495
2522
|
|
|
2496
2523
|
.tw-rounded-r-none {
|
|
@@ -2498,22 +2525,17 @@ ol,
|
|
|
2498
2525
|
border-bottom-right-radius: 0px;
|
|
2499
2526
|
}
|
|
2500
2527
|
|
|
2501
|
-
.tw-rounded-
|
|
2502
|
-
border-top-
|
|
2503
|
-
border-
|
|
2528
|
+
.tw-rounded-t-md {
|
|
2529
|
+
border-top-left-radius: 15px;
|
|
2530
|
+
border-top-right-radius: 15px;
|
|
2504
2531
|
}
|
|
2505
2532
|
|
|
2506
|
-
.tw-rounded-
|
|
2507
|
-
border-top-left-radius:
|
|
2508
|
-
border-top-right-radius: 3px;
|
|
2533
|
+
.tw-rounded-tl-md {
|
|
2534
|
+
border-top-left-radius: 15px;
|
|
2509
2535
|
}
|
|
2510
2536
|
|
|
2511
|
-
.tw-rounded-
|
|
2512
|
-
border-top-
|
|
2513
|
-
}
|
|
2514
|
-
|
|
2515
|
-
.tw-rounded-tr-sm {
|
|
2516
|
-
border-top-right-radius: 3px;
|
|
2537
|
+
.tw-rounded-tr-md {
|
|
2538
|
+
border-top-right-radius: 15px;
|
|
2517
2539
|
}
|
|
2518
2540
|
|
|
2519
2541
|
.tw-border {
|
|
@@ -2852,6 +2874,10 @@ ol,
|
|
|
2852
2874
|
padding-bottom: 5px;
|
|
2853
2875
|
}
|
|
2854
2876
|
|
|
2877
|
+
.tw-pb-\[3px\] {
|
|
2878
|
+
padding-bottom: 3px;
|
|
2879
|
+
}
|
|
2880
|
+
|
|
2855
2881
|
.tw-pl-0 {
|
|
2856
2882
|
padding-left: 0px;
|
|
2857
2883
|
}
|
|
@@ -3340,14 +3366,14 @@ ol,
|
|
|
3340
3366
|
content: var(--tw-content);
|
|
3341
3367
|
}
|
|
3342
3368
|
|
|
3343
|
-
.first\:tw-rounded-l-
|
|
3344
|
-
border-top-left-radius:
|
|
3345
|
-
border-bottom-left-radius:
|
|
3369
|
+
.first\:tw-rounded-l-md:first-child {
|
|
3370
|
+
border-top-left-radius: 15px;
|
|
3371
|
+
border-bottom-left-radius: 15px;
|
|
3346
3372
|
}
|
|
3347
3373
|
|
|
3348
|
-
.last\:tw-rounded-r-
|
|
3349
|
-
border-top-right-radius:
|
|
3350
|
-
border-bottom-right-radius:
|
|
3374
|
+
.last\:tw-rounded-r-md:last-child {
|
|
3375
|
+
border-top-right-radius: 15px;
|
|
3376
|
+
border-bottom-right-radius: 15px;
|
|
3351
3377
|
}
|
|
3352
3378
|
|
|
3353
3379
|
.last\:tw-border-r-0:last-child {
|
|
@@ -3373,8 +3399,8 @@ ol,
|
|
|
3373
3399
|
cursor: pointer;
|
|
3374
3400
|
}
|
|
3375
3401
|
|
|
3376
|
-
.hover\:tw-rounded
|
|
3377
|
-
border-radius:
|
|
3402
|
+
.hover\:tw-rounded-\[10px\]:hover {
|
|
3403
|
+
border-radius: 10px;
|
|
3378
3404
|
}
|
|
3379
3405
|
|
|
3380
3406
|
.hover\:tw-border:hover {
|