@sunggang/ui-lib 0.1.24 → 0.1.26

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/index.esm.css CHANGED
@@ -634,6 +634,9 @@ video {
634
634
  .relative {
635
635
  position: relative;
636
636
  }
637
+ .inset-0 {
638
+ inset: 0px;
639
+ }
637
640
  .bottom-0 {
638
641
  bottom: 0px;
639
642
  }
@@ -658,6 +661,9 @@ video {
658
661
  .top-2\/4 {
659
662
  top: 50%;
660
663
  }
664
+ .z-10 {
665
+ z-index: 10;
666
+ }
661
667
  .z-50 {
662
668
  z-index: 50;
663
669
  }
@@ -814,6 +820,9 @@ video {
814
820
  .w-full {
815
821
  width: 100%;
816
822
  }
823
+ .w-px {
824
+ width: 1px;
825
+ }
817
826
  .min-w-\[16rem\] {
818
827
  min-width: 16rem;
819
828
  }
@@ -856,6 +865,9 @@ video {
856
865
  .flex-col {
857
866
  flex-direction: column;
858
867
  }
868
+ .flex-wrap {
869
+ flex-wrap: wrap;
870
+ }
859
871
  .items-end {
860
872
  align-items: flex-end;
861
873
  }
@@ -934,9 +946,16 @@ video {
934
946
  .border-4 {
935
947
  border-width: 4px;
936
948
  }
949
+ .border-y {
950
+ border-top-width: 1px;
951
+ border-bottom-width: 1px;
952
+ }
937
953
  .border-b {
938
954
  border-bottom-width: 1px;
939
955
  }
956
+ .border-r {
957
+ border-right-width: 1px;
958
+ }
940
959
  .border-solid {
941
960
  border-style: solid;
942
961
  }
@@ -1003,6 +1022,9 @@ video {
1003
1022
  .bg-destructive {
1004
1023
  background-color: hsl(var(--destructive));
1005
1024
  }
1025
+ .bg-foreground {
1026
+ background-color: hsl(var(--foreground));
1027
+ }
1006
1028
  .bg-gray-100 {
1007
1029
  --tw-bg-opacity: 1;
1008
1030
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
@@ -1243,6 +1265,10 @@ video {
1243
1265
  .text-primary-foreground {
1244
1266
  color: hsl(var(--primary-foreground));
1245
1267
  }
1268
+ .text-red-600 {
1269
+ --tw-text-opacity: 1;
1270
+ color: rgb(220 38 38 / var(--tw-text-opacity));
1271
+ }
1246
1272
  .text-secondary-foreground {
1247
1273
  color: hsl(var(--secondary-foreground));
1248
1274
  }
@@ -1305,6 +1331,11 @@ video {
1305
1331
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
1306
1332
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
1307
1333
  }
1334
+ .ring-1 {
1335
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1336
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
1337
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
1338
+ }
1308
1339
  .blur {
1309
1340
  --tw-blur: blur(8px);
1310
1341
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
@@ -1323,6 +1354,11 @@ video {
1323
1354
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1324
1355
  transition-duration: 150ms;
1325
1356
  }
1357
+ .transition-all {
1358
+ transition-property: all;
1359
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1360
+ transition-duration: 150ms;
1361
+ }
1326
1362
  .transition-colors {
1327
1363
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
1328
1364
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
@@ -1338,6 +1374,9 @@ video {
1338
1374
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1339
1375
  transition-duration: 150ms;
1340
1376
  }
1377
+ .duration-1000 {
1378
+ transition-duration: 1000ms;
1379
+ }
1341
1380
  .duration-300 {
1342
1381
  transition-duration: 300ms;
1343
1382
  }
@@ -1361,6 +1400,9 @@ video {
1361
1400
  transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0));
1362
1401
  }
1363
1402
  }
1403
+ .duration-1000 {
1404
+ animation-duration: 1000ms;
1405
+ }
1364
1406
  .duration-300 {
1365
1407
  animation-duration: 300ms;
1366
1408
  }
@@ -1373,6 +1415,20 @@ video {
1373
1415
 
1374
1416
  /* gary */
1375
1417
 
1418
+ .first\:rounded-l-md:first-child {
1419
+ border-top-left-radius: calc(var(--radius) - 2px);
1420
+ border-bottom-left-radius: calc(var(--radius) - 2px);
1421
+ }
1422
+
1423
+ .first\:border-l:first-child {
1424
+ border-left-width: 1px;
1425
+ }
1426
+
1427
+ .last\:rounded-r-md:last-child {
1428
+ border-top-right-radius: calc(var(--radius) - 2px);
1429
+ border-bottom-right-radius: calc(var(--radius) - 2px);
1430
+ }
1431
+
1376
1432
  .focus-within\:relative:focus-within {
1377
1433
  position: relative;
1378
1434
  }
@@ -1475,6 +1531,10 @@ video {
1475
1531
  opacity: 0.5;
1476
1532
  }
1477
1533
 
1534
+ .has-\[\:disabled\]\:opacity-50:has(:disabled) {
1535
+ opacity: 0.5;
1536
+ }
1537
+
1478
1538
  .aria-selected\:bg-accent[aria-selected="true"] {
1479
1539
  background-color: hsl(var(--accent));
1480
1540
  }
@@ -1588,6 +1648,13 @@ video {
1588
1648
  }
1589
1649
  }
1590
1650
 
1651
+ @media (min-width: 768px) {
1652
+
1653
+ .md\:flex-nowrap {
1654
+ flex-wrap: nowrap;
1655
+ }
1656
+ }
1657
+
1591
1658
  @media (min-width: 1024px) {
1592
1659
 
1593
1660
  .lg\:flex {