@jbpark/ui-kit 2.0.0 → 2.1.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/dist/output.css CHANGED
@@ -11,7 +11,6 @@
11
11
  --color-yellow-400: oklch(85.2% 0.199 91.936);
12
12
  --color-green-400: oklch(79.2% 0.209 151.711);
13
13
  --color-blue-400: oklch(70.7% 0.165 254.624);
14
- --color-gray-100: oklch(96.7% 0.003 264.542);
15
14
  --color-gray-200: oklch(92.8% 0.006 264.531);
16
15
  --color-black: #000;
17
16
  --color-white: #fff;
@@ -46,6 +45,7 @@
46
45
  --radius-xs: 0.125rem;
47
46
  --radius-2xl: 1rem;
48
47
  --radius-3xl: 1.5rem;
48
+ --drop-shadow-md: 0 3px 3px rgb(0 0 0 / 0.12);
49
49
  --animate-spin: spin 1s linear infinite;
50
50
  --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
51
51
  --default-transition-duration: 150ms;
@@ -232,15 +232,12 @@
232
232
  .inset-0 {
233
233
  inset: calc(var(--spacing) * 0);
234
234
  }
235
- .inset-x-0 {
236
- inset-inline: calc(var(--spacing) * 0);
237
- }
238
- .inset-y-0 {
239
- inset-block: calc(var(--spacing) * 0);
240
- }
241
235
  .top-0 {
242
236
  top: calc(var(--spacing) * 0);
243
237
  }
238
+ .top-1\/2 {
239
+ top: calc(1/2 * 100%);
240
+ }
244
241
  .top-3 {
245
242
  top: calc(var(--spacing) * 3);
246
243
  }
@@ -259,12 +256,27 @@
259
256
  .right-5 {
260
257
  right: calc(var(--spacing) * 5);
261
258
  }
259
+ .right-full {
260
+ right: 100%;
261
+ }
262
+ .bottom-4 {
263
+ bottom: calc(var(--spacing) * 4);
264
+ }
262
265
  .bottom-5 {
263
266
  bottom: calc(var(--spacing) * 5);
264
267
  }
268
+ .bottom-full {
269
+ bottom: 100%;
270
+ }
265
271
  .left-0 {
266
272
  left: calc(var(--spacing) * 0);
267
273
  }
274
+ .left-1\/2 {
275
+ left: calc(1/2 * 100%);
276
+ }
277
+ .left-4 {
278
+ left: calc(var(--spacing) * 4);
279
+ }
268
280
  .left-\[50\%\] {
269
281
  left: 50%;
270
282
  }
@@ -373,6 +385,9 @@
373
385
  width: calc(var(--spacing) * 10);
374
386
  height: calc(var(--spacing) * 10);
375
387
  }
388
+ .h-0 {
389
+ height: calc(var(--spacing) * 0);
390
+ }
376
391
  .h-2 {
377
392
  height: calc(var(--spacing) * 2);
378
393
  }
@@ -409,11 +424,11 @@
409
424
  .h-full {
410
425
  height: 100%;
411
426
  }
412
- .h-screen {
413
- height: 100vh;
427
+ .min-h-15 {
428
+ min-height: calc(var(--spacing) * 15);
414
429
  }
415
- .min-h-\[60px\] {
416
- min-height: 60px;
430
+ .w-0 {
431
+ width: calc(var(--spacing) * 0);
417
432
  }
418
433
  .w-4 {
419
434
  width: calc(var(--spacing) * 4);
@@ -427,6 +442,9 @@
427
442
  .w-15 {
428
443
  width: calc(var(--spacing) * 15);
429
444
  }
445
+ .w-25 {
446
+ width: calc(var(--spacing) * 25);
447
+ }
430
448
  .w-48 {
431
449
  width: calc(var(--spacing) * 48);
432
450
  }
@@ -439,27 +457,21 @@
439
457
  .w-100 {
440
458
  width: calc(var(--spacing) * 100);
441
459
  }
442
- .w-\[100px\] {
443
- width: 100px;
444
- }
445
460
  .w-\[200px\] {
446
461
  width: 200px;
447
462
  }
463
+ .w-auto {
464
+ width: auto;
465
+ }
448
466
  .w-full {
449
467
  width: 100%;
450
468
  }
451
- .w-screen {
452
- width: 100vw;
453
- }
454
469
  .max-w-\[calc\(100\%-2rem\)\] {
455
470
  max-width: calc(100% - 2rem);
456
471
  }
457
472
  .min-w-80 {
458
473
  min-width: calc(var(--spacing) * 80);
459
474
  }
460
- .min-w-\[180px\] {
461
- min-width: 180px;
462
- }
463
475
  .min-w-\[200px\] {
464
476
  min-width: 200px;
465
477
  }
@@ -484,13 +496,21 @@
484
496
  .basis-0 {
485
497
  flex-basis: calc(var(--spacing) * 0);
486
498
  }
487
- .basis-1\/6 {
488
- flex-basis: calc(1/6 * 100%);
499
+ .origin-\[--radix-popover-content-transform-origin\] {
500
+ transform-origin: --radix-popover-content-transform-origin;
501
+ }
502
+ .-translate-x-1\/2 {
503
+ --tw-translate-x: calc(calc(1/2 * 100%) * -1);
504
+ translate: var(--tw-translate-x) var(--tw-translate-y);
489
505
  }
490
506
  .translate-x-\[-50\%\] {
491
507
  --tw-translate-x: -50%;
492
508
  translate: var(--tw-translate-x) var(--tw-translate-y);
493
509
  }
510
+ .-translate-y-1\/2 {
511
+ --tw-translate-y: calc(calc(1/2 * 100%) * -1);
512
+ translate: var(--tw-translate-x) var(--tw-translate-y);
513
+ }
494
514
  .translate-y-\[-50\%\] {
495
515
  --tw-translate-y: -50%;
496
516
  translate: var(--tw-translate-x) var(--tw-translate-y);
@@ -604,9 +624,6 @@
604
624
  .gap-y-0 {
605
625
  row-gap: calc(var(--spacing) * 0);
606
626
  }
607
- .gap-y-4 {
608
- row-gap: calc(var(--spacing) * 4);
609
- }
610
627
  .gap-y-5 {
611
628
  row-gap: calc(var(--spacing) * 5);
612
629
  }
@@ -657,10 +674,18 @@
657
674
  border-style: var(--tw-border-style);
658
675
  border-width: 1px;
659
676
  }
677
+ .border-t-8 {
678
+ border-top-style: var(--tw-border-style);
679
+ border-top-width: 8px;
680
+ }
660
681
  .border-r-2 {
661
682
  border-right-style: var(--tw-border-style);
662
683
  border-right-width: 2px;
663
684
  }
685
+ .border-r-8 {
686
+ border-right-style: var(--tw-border-style);
687
+ border-right-width: 8px;
688
+ }
664
689
  .border-b {
665
690
  border-bottom-style: var(--tw-border-style);
666
691
  border-bottom-width: 1px;
@@ -669,6 +694,14 @@
669
694
  border-bottom-style: var(--tw-border-style);
670
695
  border-bottom-width: 2px;
671
696
  }
697
+ .border-b-8 {
698
+ border-bottom-style: var(--tw-border-style);
699
+ border-bottom-width: 8px;
700
+ }
701
+ .border-l-8 {
702
+ border-left-style: var(--tw-border-style);
703
+ border-left-width: 8px;
704
+ }
672
705
  .border-dashed {
673
706
  --tw-border-style: dashed;
674
707
  border-style: dashed;
@@ -698,6 +731,30 @@
698
731
  .border-transparent {
699
732
  border-color: transparent;
700
733
  }
734
+ .border-t-transparent {
735
+ border-top-color: transparent;
736
+ }
737
+ .border-t-white {
738
+ border-top-color: var(--color-white);
739
+ }
740
+ .border-r-transparent {
741
+ border-right-color: transparent;
742
+ }
743
+ .border-r-white {
744
+ border-right-color: var(--color-white);
745
+ }
746
+ .border-b-transparent {
747
+ border-bottom-color: transparent;
748
+ }
749
+ .border-b-white {
750
+ border-bottom-color: var(--color-white);
751
+ }
752
+ .border-l-transparent {
753
+ border-left-color: transparent;
754
+ }
755
+ .border-l-white {
756
+ border-left-color: var(--color-white);
757
+ }
701
758
  .bg-\(--btn-bg\) {
702
759
  background-color: var(--btn-bg);
703
760
  }
@@ -728,15 +785,15 @@
728
785
  .bg-destructive {
729
786
  background-color: var(--destructive);
730
787
  }
731
- .bg-gray-100 {
732
- background-color: var(--color-gray-100);
733
- }
734
788
  .bg-inherit {
735
789
  background-color: inherit;
736
790
  }
737
791
  .bg-muted {
738
792
  background-color: var(--muted);
739
793
  }
794
+ .bg-popover {
795
+ background-color: var(--popover);
796
+ }
740
797
  .bg-primary {
741
798
  background-color: var(--primary);
742
799
  }
@@ -770,8 +827,8 @@
770
827
  .p-6 {
771
828
  padding: calc(var(--spacing) * 6);
772
829
  }
773
- .p-8 {
774
- padding: calc(var(--spacing) * 8);
830
+ .px-1\.5 {
831
+ padding-inline: calc(var(--spacing) * 1.5);
775
832
  }
776
833
  .px-3 {
777
834
  padding-inline: calc(var(--spacing) * 3);
@@ -867,6 +924,10 @@
867
924
  font-size: var(--text-xs);
868
925
  line-height: var(--tw-leading, var(--text-xs--line-height));
869
926
  }
927
+ .leading-5\.75 {
928
+ --tw-leading: calc(var(--spacing) * 5.75);
929
+ line-height: calc(var(--spacing) * 5.75);
930
+ }
870
931
  .leading-none {
871
932
  --tw-leading: 1;
872
933
  line-height: 1;
@@ -894,9 +955,6 @@
894
955
  .text-nowrap {
895
956
  text-wrap: nowrap;
896
957
  }
897
- .text-wrap {
898
- text-wrap: wrap;
899
- }
900
958
  .break-all {
901
959
  word-break: break-all;
902
960
  }
@@ -927,6 +985,9 @@
927
985
  .text-muted-foreground {
928
986
  color: var(--muted-foreground);
929
987
  }
988
+ .text-popover-foreground {
989
+ color: var(--popover-foreground);
990
+ }
930
991
  .text-primary {
931
992
  color: var(--primary);
932
993
  }
@@ -998,6 +1059,11 @@
998
1059
  outline-style: var(--tw-outline-style);
999
1060
  outline-width: 1px;
1000
1061
  }
1062
+ .drop-shadow-md {
1063
+ --tw-drop-shadow-size: drop-shadow(0 3px 3px var(--tw-drop-shadow-color, rgb(0 0 0 / 0.12)));
1064
+ --tw-drop-shadow: drop-shadow(var(--drop-shadow-md));
1065
+ 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,);
1066
+ }
1001
1067
  .transition {
1002
1068
  transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
1003
1069
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
@@ -1328,6 +1394,26 @@
1328
1394
  }
1329
1395
  }
1330
1396
  }
1397
+ .data-\[side\=bottom\]\:slide-in-from-top-2 {
1398
+ &[data-side="bottom"] {
1399
+ --tw-enter-translate-y: calc(2*var(--spacing)*-1);
1400
+ }
1401
+ }
1402
+ .data-\[side\=left\]\:slide-in-from-right-2 {
1403
+ &[data-side="left"] {
1404
+ --tw-enter-translate-x: calc(2*var(--spacing));
1405
+ }
1406
+ }
1407
+ .data-\[side\=right\]\:slide-in-from-left-2 {
1408
+ &[data-side="right"] {
1409
+ --tw-enter-translate-x: calc(2*var(--spacing)*-1);
1410
+ }
1411
+ }
1412
+ .data-\[side\=top\]\:slide-in-from-bottom-2 {
1413
+ &[data-side="top"] {
1414
+ --tw-enter-translate-y: calc(2*var(--spacing));
1415
+ }
1416
+ }
1331
1417
  .data-\[state\=checked\]\:translate-x-\[calc\(100\%-2px\)\] {
1332
1418
  &[data-state="checked"] {
1333
1419
  --tw-translate-x: calc(100% - 2px);
@@ -2053,6 +2139,59 @@
2053
2139
  inherits: false;
2054
2140
  initial-value: solid;
2055
2141
  }
2142
+ @property --tw-blur {
2143
+ syntax: "*";
2144
+ inherits: false;
2145
+ }
2146
+ @property --tw-brightness {
2147
+ syntax: "*";
2148
+ inherits: false;
2149
+ }
2150
+ @property --tw-contrast {
2151
+ syntax: "*";
2152
+ inherits: false;
2153
+ }
2154
+ @property --tw-grayscale {
2155
+ syntax: "*";
2156
+ inherits: false;
2157
+ }
2158
+ @property --tw-hue-rotate {
2159
+ syntax: "*";
2160
+ inherits: false;
2161
+ }
2162
+ @property --tw-invert {
2163
+ syntax: "*";
2164
+ inherits: false;
2165
+ }
2166
+ @property --tw-opacity {
2167
+ syntax: "*";
2168
+ inherits: false;
2169
+ }
2170
+ @property --tw-saturate {
2171
+ syntax: "*";
2172
+ inherits: false;
2173
+ }
2174
+ @property --tw-sepia {
2175
+ syntax: "*";
2176
+ inherits: false;
2177
+ }
2178
+ @property --tw-drop-shadow {
2179
+ syntax: "*";
2180
+ inherits: false;
2181
+ }
2182
+ @property --tw-drop-shadow-color {
2183
+ syntax: "*";
2184
+ inherits: false;
2185
+ }
2186
+ @property --tw-drop-shadow-alpha {
2187
+ syntax: "<percentage>";
2188
+ inherits: false;
2189
+ initial-value: 100%;
2190
+ }
2191
+ @property --tw-drop-shadow-size {
2192
+ syntax: "*";
2193
+ inherits: false;
2194
+ }
2056
2195
  @property --tw-duration {
2057
2196
  syntax: "*";
2058
2197
  inherits: false;
@@ -2127,6 +2266,19 @@
2127
2266
  --tw-ring-offset-color: #fff;
2128
2267
  --tw-ring-offset-shadow: 0 0 #0000;
2129
2268
  --tw-outline-style: solid;
2269
+ --tw-blur: initial;
2270
+ --tw-brightness: initial;
2271
+ --tw-contrast: initial;
2272
+ --tw-grayscale: initial;
2273
+ --tw-hue-rotate: initial;
2274
+ --tw-invert: initial;
2275
+ --tw-opacity: initial;
2276
+ --tw-saturate: initial;
2277
+ --tw-sepia: initial;
2278
+ --tw-drop-shadow: initial;
2279
+ --tw-drop-shadow-color: initial;
2280
+ --tw-drop-shadow-alpha: 100%;
2281
+ --tw-drop-shadow-size: initial;
2130
2282
  --tw-duration: initial;
2131
2283
  --tw-animation-delay: 0s;
2132
2284
  --tw-animation-direction: normal;