@sunggang/ui-lib 0.3.46 → 0.3.47

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
@@ -574,35 +574,58 @@ video {
574
574
  color: hsl(var(--foreground));
575
575
  font-feature-settings: 'rlig' 1, 'calt' 1;
576
576
  }
577
+ .\!container {
578
+ width: 100% !important;
579
+ }
577
580
  .container {
578
581
  width: 100%;
579
582
  }
580
583
  @media (min-width: 640px) {
581
584
 
585
+ .\!container {
586
+ max-width: 640px !important;
587
+ }
588
+
582
589
  .container {
583
590
  max-width: 640px;
584
591
  }
585
592
  }
586
593
  @media (min-width: 768px) {
587
594
 
595
+ .\!container {
596
+ max-width: 768px !important;
597
+ }
598
+
588
599
  .container {
589
600
  max-width: 768px;
590
601
  }
591
602
  }
592
603
  @media (min-width: 1024px) {
593
604
 
605
+ .\!container {
606
+ max-width: 1024px !important;
607
+ }
608
+
594
609
  .container {
595
610
  max-width: 1024px;
596
611
  }
597
612
  }
598
613
  @media (min-width: 1280px) {
599
614
 
615
+ .\!container {
616
+ max-width: 1280px !important;
617
+ }
618
+
600
619
  .container {
601
620
  max-width: 1280px;
602
621
  }
603
622
  }
604
623
  @media (min-width: 1536px) {
605
624
 
625
+ .\!container {
626
+ max-width: 1536px !important;
627
+ }
628
+
606
629
  .container {
607
630
  max-width: 1536px;
608
631
  }
@@ -613,6 +636,9 @@ video {
613
636
  .pointer-events-auto {
614
637
  pointer-events: auto;
615
638
  }
639
+ .\!visible {
640
+ visibility: visible !important;
641
+ }
616
642
  .visible {
617
643
  visibility: visible;
618
644
  }
@@ -625,15 +651,24 @@ video {
625
651
  .static {
626
652
  position: static;
627
653
  }
654
+ .\!fixed {
655
+ position: fixed !important;
656
+ }
628
657
  .fixed {
629
658
  position: fixed;
630
659
  }
631
660
  .absolute {
632
661
  position: absolute;
633
662
  }
663
+ .\!relative {
664
+ position: relative !important;
665
+ }
634
666
  .relative {
635
667
  position: relative;
636
668
  }
669
+ .sticky {
670
+ position: sticky;
671
+ }
637
672
  .inset-0 {
638
673
  inset: 0px;
639
674
  }
@@ -696,9 +731,15 @@ video {
696
731
  .top-\[72px\] {
697
732
  top: 72px;
698
733
  }
734
+ .isolate {
735
+ isolation: isolate;
736
+ }
699
737
  .z-10 {
700
738
  z-index: 10;
701
739
  }
740
+ .z-20 {
741
+ z-index: 20;
742
+ }
702
743
  .z-50 {
703
744
  z-index: 50;
704
745
  }
@@ -711,6 +752,9 @@ video {
711
752
  .z-\[9999\] {
712
753
  z-index: 9999;
713
754
  }
755
+ .m-1 {
756
+ margin: 0.25rem;
757
+ }
714
758
  .m-4 {
715
759
  margin: 1rem;
716
760
  }
@@ -795,6 +839,9 @@ video {
795
839
  .mt-5 {
796
840
  margin-top: 1.25rem;
797
841
  }
842
+ .\!block {
843
+ display: block !important;
844
+ }
798
845
  .block {
799
846
  display: block;
800
847
  }
@@ -810,12 +857,42 @@ video {
810
857
  .inline-flex {
811
858
  display: inline-flex;
812
859
  }
860
+ .\!table {
861
+ display: table !important;
862
+ }
813
863
  .table {
814
864
  display: table;
815
865
  }
866
+ .inline-table {
867
+ display: inline-table;
868
+ }
869
+ .table-caption {
870
+ display: table-caption;
871
+ }
872
+ .table-cell {
873
+ display: table-cell;
874
+ }
875
+ .flow-root {
876
+ display: flow-root;
877
+ }
878
+ .\!grid {
879
+ display: grid !important;
880
+ }
816
881
  .grid {
817
882
  display: grid;
818
883
  }
884
+ .inline-grid {
885
+ display: inline-grid;
886
+ }
887
+ .\!contents {
888
+ display: contents !important;
889
+ }
890
+ .contents {
891
+ display: contents;
892
+ }
893
+ .list-item {
894
+ display: list-item;
895
+ }
819
896
  .hidden {
820
897
  display: none;
821
898
  }
@@ -899,6 +976,9 @@ video {
899
976
  .h-screen {
900
977
  height: 100vh;
901
978
  }
979
+ .max-h-60 {
980
+ max-height: 15rem;
981
+ }
902
982
  .max-h-72 {
903
983
  max-height: 18rem;
904
984
  }
@@ -1029,9 +1109,18 @@ video {
1029
1109
  .flex-none {
1030
1110
  flex: none;
1031
1111
  }
1112
+ .flex-shrink {
1113
+ flex-shrink: 1;
1114
+ }
1115
+ .shrink {
1116
+ flex-shrink: 1;
1117
+ }
1032
1118
  .shrink-0 {
1033
1119
  flex-shrink: 0;
1034
1120
  }
1121
+ .flex-grow {
1122
+ flex-grow: 1;
1123
+ }
1035
1124
  .grow {
1036
1125
  flex-grow: 1;
1037
1126
  }
@@ -1072,6 +1161,9 @@ video {
1072
1161
  --tw-rotate: 90deg;
1073
1162
  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));
1074
1163
  }
1164
+ .\!transform {
1165
+ 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)) !important;
1166
+ }
1075
1167
  .transform {
1076
1168
  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));
1077
1169
  }
@@ -1098,6 +1190,11 @@ video {
1098
1190
  -moz-user-select: none;
1099
1191
  user-select: none;
1100
1192
  }
1193
+ .select-all {
1194
+ -webkit-user-select: all;
1195
+ -moz-user-select: all;
1196
+ user-select: all;
1197
+ }
1101
1198
  .resize {
1102
1199
  resize: both;
1103
1200
  }
@@ -1255,6 +1352,9 @@ video {
1255
1352
  .border-4 {
1256
1353
  border-width: 4px;
1257
1354
  }
1355
+ .border-\[1\.5px\] {
1356
+ border-width: 1.5px;
1357
+ }
1258
1358
  .border-y {
1259
1359
  border-top-width: 1px;
1260
1360
  border-bottom-width: 1px;
@@ -1303,6 +1403,10 @@ video {
1303
1403
  --tw-border-opacity: 1;
1304
1404
  border-color: rgb(184 184 184 / var(--tw-border-opacity, 1));
1305
1405
  }
1406
+ .border-\[\#C7C7CC\] {
1407
+ --tw-border-opacity: 1;
1408
+ border-color: rgb(199 199 204 / var(--tw-border-opacity, 1));
1409
+ }
1306
1410
  .border-\[\#C8C8C8\] {
1307
1411
  --tw-border-opacity: 1;
1308
1412
  border-color: rgb(200 200 200 / var(--tw-border-opacity, 1));
@@ -1322,6 +1426,9 @@ video {
1322
1426
  .border-\[\#ffffff33\] {
1323
1427
  border-color: #ffffff33;
1324
1428
  }
1429
+ .border-\[top\2c left\2c right\2c bottom\] {
1430
+ border-color: top,left,right,bottom;
1431
+ }
1325
1432
  .border-gray-200 {
1326
1433
  --tw-border-opacity: 1;
1327
1434
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
@@ -1388,6 +1495,14 @@ video {
1388
1495
  --tw-bg-opacity: 1;
1389
1496
  background-color: rgb(86 207 207 / var(--tw-bg-opacity, 1));
1390
1497
  }
1498
+ .bg-\[\#C7C7CC\] {
1499
+ --tw-bg-opacity: 1;
1500
+ background-color: rgb(199 199 204 / var(--tw-bg-opacity, 1));
1501
+ }
1502
+ .bg-\[\#E5E5EA\] {
1503
+ --tw-bg-opacity: 1;
1504
+ background-color: rgb(229 229 234 / var(--tw-bg-opacity, 1));
1505
+ }
1391
1506
  .bg-\[\#F1F1F1\] {
1392
1507
  --tw-bg-opacity: 1;
1393
1508
  background-color: rgb(241 241 241 / var(--tw-bg-opacity, 1));
@@ -1541,6 +1656,10 @@ video {
1541
1656
  --tw-bg-opacity: 1;
1542
1657
  background-color: rgb(234 179 8 / var(--tw-bg-opacity, 1));
1543
1658
  }
1659
+ .bg-zinc-300 {
1660
+ --tw-bg-opacity: 1;
1661
+ background-color: rgb(212 212 216 / var(--tw-bg-opacity, 1));
1662
+ }
1544
1663
  .bg-opacity-10 {
1545
1664
  --tw-bg-opacity: 0.1;
1546
1665
  }
@@ -1718,6 +1837,9 @@ video {
1718
1837
  .text-right {
1719
1838
  text-align: right;
1720
1839
  }
1840
+ .text-justify {
1841
+ text-align: justify;
1842
+ }
1721
1843
  .indent-1 {
1722
1844
  text-indent: 0.25rem;
1723
1845
  }
@@ -1766,6 +1888,9 @@ video {
1766
1888
  .font-bold {
1767
1889
  font-weight: 700;
1768
1890
  }
1891
+ .font-light {
1892
+ font-weight: 300;
1893
+ }
1769
1894
  .font-medium {
1770
1895
  font-weight: 500;
1771
1896
  }
@@ -1787,6 +1912,10 @@ video {
1787
1912
  .italic {
1788
1913
  font-style: italic;
1789
1914
  }
1915
+ .ordinal {
1916
+ --tw-ordinal: ordinal;
1917
+ font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
1918
+ }
1790
1919
  .tracking-tight {
1791
1920
  letter-spacing: -0.025em;
1792
1921
  }
@@ -1812,6 +1941,10 @@ video {
1812
1941
  --tw-text-opacity: 1;
1813
1942
  color: rgb(23 26 31 / var(--tw-text-opacity, 1));
1814
1943
  }
1944
+ .text-\[\#1A1A1A\] {
1945
+ --tw-text-opacity: 1;
1946
+ color: rgb(26 26 26 / var(--tw-text-opacity, 1));
1947
+ }
1815
1948
  .text-\[\#2052ce\] {
1816
1949
  --tw-text-opacity: 1;
1817
1950
  color: rgb(32 82 206 / var(--tw-text-opacity, 1));
@@ -1998,12 +2131,23 @@ video {
1998
2131
  .underline {
1999
2132
  text-decoration-line: underline;
2000
2133
  }
2134
+ .overline {
2135
+ text-decoration-line: overline;
2136
+ }
2001
2137
  .line-through {
2002
2138
  text-decoration-line: line-through;
2003
2139
  }
2004
2140
  .underline-offset-4 {
2005
2141
  text-underline-offset: 4px;
2006
2142
  }
2143
+ .antialiased {
2144
+ -webkit-font-smoothing: antialiased;
2145
+ -moz-osx-font-smoothing: grayscale;
2146
+ }
2147
+ .subpixel-antialiased {
2148
+ -webkit-font-smoothing: auto;
2149
+ -moz-osx-font-smoothing: auto;
2150
+ }
2007
2151
  .opacity-0 {
2008
2152
  opacity: 0;
2009
2153
  }
@@ -2091,9 +2235,28 @@ video {
2091
2235
  --tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
2092
2236
  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);
2093
2237
  }
2238
+ .grayscale {
2239
+ --tw-grayscale: grayscale(100%);
2240
+ 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);
2241
+ }
2242
+ .invert {
2243
+ --tw-invert: invert(100%);
2244
+ 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);
2245
+ }
2246
+ .sepia {
2247
+ --tw-sepia: sepia(100%);
2248
+ 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);
2249
+ }
2250
+ .\!filter {
2251
+ 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) !important;
2252
+ }
2094
2253
  .filter {
2095
2254
  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);
2096
2255
  }
2256
+ .backdrop-filter {
2257
+ -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
2258
+ backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
2259
+ }
2097
2260
  .transition {
2098
2261
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
2099
2262
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
@@ -2133,6 +2296,9 @@ video {
2133
2296
  .duration-500 {
2134
2297
  transition-duration: 500ms;
2135
2298
  }
2299
+ .ease-in {
2300
+ transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
2301
+ }
2136
2302
  .ease-in-out {
2137
2303
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2138
2304
  }
@@ -2153,6 +2319,12 @@ video {
2153
2319
  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));
2154
2320
  }
2155
2321
  }
2322
+ .zoom-in {
2323
+ --tw-enter-scale: 0;
2324
+ }
2325
+ .zoom-out {
2326
+ --tw-exit-scale: 0;
2327
+ }
2156
2328
  .duration-1000 {
2157
2329
  animation-duration: 1000ms;
2158
2330
  }
@@ -2165,12 +2337,57 @@ video {
2165
2337
  .duration-500 {
2166
2338
  animation-duration: 500ms;
2167
2339
  }
2340
+ .ease-in {
2341
+ animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
2342
+ }
2168
2343
  .ease-in-out {
2169
2344
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2170
2345
  }
2171
2346
  .ease-out {
2172
2347
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
2173
2348
  }
2349
+ .\!running {
2350
+ animation-play-state: running !important;
2351
+ }
2352
+ .running {
2353
+ animation-play-state: running;
2354
+ }
2355
+ .paused {
2356
+ animation-play-state: paused;
2357
+ }
2358
+ .\[a-zA-Z0-9\:\\\\-\\\\\._\$\] {
2359
+ a-z-a--z0-9: \\-\\. $;
2360
+ }
2361
+ .\[hash\:base64\] {
2362
+ hash: base64;
2363
+ }
2364
+ .\[key\:string\] {
2365
+ key: string;
2366
+ }
2367
+ .\[module\:ckbox\/ckbox\~CKBoxConfig\#assetsOrigin\] {
2368
+ module: ckbox/ckbox~CKBoxConfig#assetsOrigin;
2369
+ }
2370
+ .\[module\:ckbox\/ckbox\~CKBoxConfig\#defaultUploadCategories\] {
2371
+ module: ckbox/ckbox~CKBoxConfig#defaultUploadCategories;
2372
+ }
2373
+ .\[module\:ckbox\/ckbox\~CKBoxConfig\#ignoreDataId\] {
2374
+ module: ckbox/ckbox~CKBoxConfig#ignoreDataId;
2375
+ }
2376
+ .\[module\:ckbox\/ckbox\~CKBoxConfig\#language\] {
2377
+ module: ckbox/ckbox~CKBoxConfig#language;
2378
+ }
2379
+ .\[module\:ckbox\/ckbox\~CKBoxConfig\#serviceOrigin\] {
2380
+ module: ckbox/ckbox~CKBoxConfig#serviceOrigin;
2381
+ }
2382
+ .\[module\:media-embed\/mediaembed\~MediaEmbedConfig\#elementName\] {
2383
+ module: media-embed/mediaembed~MediaEmbedConfig#elementName;
2384
+ }
2385
+ .\[module\:media-embed\/mediaembed\~MediaEmbedConfig\#previewsInData\=false\] {
2386
+ module: media-embed/mediaembed~MediaEmbedConfig#previewsInData=false;
2387
+ }
2388
+ .\[module\:ui\/template\~TemplateBinding\#callback\] {
2389
+ module: ui/template~TemplateBinding#callback;
2390
+ }
2174
2391
 
2175
2392
  /* gary */
2176
2393
 
@@ -2211,6 +2428,14 @@ video {
2211
2428
  font-weight: 500;
2212
2429
  }
2213
2430
 
2431
+ .placeholder\:text-\[\#00000033\]::-moz-placeholder {
2432
+ color: #00000033;
2433
+ }
2434
+
2435
+ .placeholder\:text-\[\#00000033\]::placeholder {
2436
+ color: #00000033;
2437
+ }
2438
+
2214
2439
  .placeholder\:text-muted-foreground::-moz-placeholder {
2215
2440
  color: hsl(var(--muted-foreground));
2216
2441
  }
@@ -2260,6 +2485,11 @@ video {
2260
2485
  background-color: rgb(217 217 217 / var(--tw-bg-opacity, 1));
2261
2486
  }
2262
2487
 
2488
+ .hover\:bg-\[\#d9d9e2\]:hover {
2489
+ --tw-bg-opacity: 1;
2490
+ background-color: rgb(217 217 226 / var(--tw-bg-opacity, 1));
2491
+ }
2492
+
2263
2493
  .hover\:bg-accent:hover {
2264
2494
  background-color: hsl(var(--accent));
2265
2495
  }
@@ -2375,6 +2605,11 @@ video {
2375
2605
  background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1));
2376
2606
  }
2377
2607
 
2608
+ .hover\:bg-zinc-100:hover {
2609
+ --tw-bg-opacity: 1;
2610
+ background-color: rgb(244 244 245 / var(--tw-bg-opacity, 1));
2611
+ }
2612
+
2378
2613
  .hover\:text-\[\#fff\]:hover {
2379
2614
  --tw-text-opacity: 1;
2380
2615
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));