@jbpark/ui-kit 2.0.1 → 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
@@ -45,6 +45,7 @@
45
45
  --radius-xs: 0.125rem;
46
46
  --radius-2xl: 1rem;
47
47
  --radius-3xl: 1.5rem;
48
+ --drop-shadow-md: 0 3px 3px rgb(0 0 0 / 0.12);
48
49
  --animate-spin: spin 1s linear infinite;
49
50
  --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
50
51
  --default-transition-duration: 150ms;
@@ -234,6 +235,9 @@
234
235
  .top-0 {
235
236
  top: calc(var(--spacing) * 0);
236
237
  }
238
+ .top-1\/2 {
239
+ top: calc(1/2 * 100%);
240
+ }
237
241
  .top-3 {
238
242
  top: calc(var(--spacing) * 3);
239
243
  }
@@ -252,12 +256,27 @@
252
256
  .right-5 {
253
257
  right: calc(var(--spacing) * 5);
254
258
  }
259
+ .right-full {
260
+ right: 100%;
261
+ }
262
+ .bottom-4 {
263
+ bottom: calc(var(--spacing) * 4);
264
+ }
255
265
  .bottom-5 {
256
266
  bottom: calc(var(--spacing) * 5);
257
267
  }
268
+ .bottom-full {
269
+ bottom: 100%;
270
+ }
258
271
  .left-0 {
259
272
  left: calc(var(--spacing) * 0);
260
273
  }
274
+ .left-1\/2 {
275
+ left: calc(1/2 * 100%);
276
+ }
277
+ .left-4 {
278
+ left: calc(var(--spacing) * 4);
279
+ }
261
280
  .left-\[50\%\] {
262
281
  left: 50%;
263
282
  }
@@ -366,6 +385,9 @@
366
385
  width: calc(var(--spacing) * 10);
367
386
  height: calc(var(--spacing) * 10);
368
387
  }
388
+ .h-0 {
389
+ height: calc(var(--spacing) * 0);
390
+ }
369
391
  .h-2 {
370
392
  height: calc(var(--spacing) * 2);
371
393
  }
@@ -402,8 +424,11 @@
402
424
  .h-full {
403
425
  height: 100%;
404
426
  }
405
- .min-h-\[60px\] {
406
- min-height: 60px;
427
+ .min-h-15 {
428
+ min-height: calc(var(--spacing) * 15);
429
+ }
430
+ .w-0 {
431
+ width: calc(var(--spacing) * 0);
407
432
  }
408
433
  .w-4 {
409
434
  width: calc(var(--spacing) * 4);
@@ -417,6 +442,9 @@
417
442
  .w-15 {
418
443
  width: calc(var(--spacing) * 15);
419
444
  }
445
+ .w-25 {
446
+ width: calc(var(--spacing) * 25);
447
+ }
420
448
  .w-48 {
421
449
  width: calc(var(--spacing) * 48);
422
450
  }
@@ -429,12 +457,12 @@
429
457
  .w-100 {
430
458
  width: calc(var(--spacing) * 100);
431
459
  }
432
- .w-\[100px\] {
433
- width: 100px;
434
- }
435
460
  .w-\[200px\] {
436
461
  width: 200px;
437
462
  }
463
+ .w-auto {
464
+ width: auto;
465
+ }
438
466
  .w-full {
439
467
  width: 100%;
440
468
  }
@@ -471,10 +499,18 @@
471
499
  .origin-\[--radix-popover-content-transform-origin\] {
472
500
  transform-origin: --radix-popover-content-transform-origin;
473
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);
505
+ }
474
506
  .translate-x-\[-50\%\] {
475
507
  --tw-translate-x: -50%;
476
508
  translate: var(--tw-translate-x) var(--tw-translate-y);
477
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
+ }
478
514
  .translate-y-\[-50\%\] {
479
515
  --tw-translate-y: -50%;
480
516
  translate: var(--tw-translate-x) var(--tw-translate-y);
@@ -638,10 +674,18 @@
638
674
  border-style: var(--tw-border-style);
639
675
  border-width: 1px;
640
676
  }
677
+ .border-t-8 {
678
+ border-top-style: var(--tw-border-style);
679
+ border-top-width: 8px;
680
+ }
641
681
  .border-r-2 {
642
682
  border-right-style: var(--tw-border-style);
643
683
  border-right-width: 2px;
644
684
  }
685
+ .border-r-8 {
686
+ border-right-style: var(--tw-border-style);
687
+ border-right-width: 8px;
688
+ }
645
689
  .border-b {
646
690
  border-bottom-style: var(--tw-border-style);
647
691
  border-bottom-width: 1px;
@@ -650,6 +694,14 @@
650
694
  border-bottom-style: var(--tw-border-style);
651
695
  border-bottom-width: 2px;
652
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
+ }
653
705
  .border-dashed {
654
706
  --tw-border-style: dashed;
655
707
  border-style: dashed;
@@ -679,6 +731,30 @@
679
731
  .border-transparent {
680
732
  border-color: transparent;
681
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
+ }
682
758
  .bg-\(--btn-bg\) {
683
759
  background-color: var(--btn-bg);
684
760
  }
@@ -751,6 +827,9 @@
751
827
  .p-6 {
752
828
  padding: calc(var(--spacing) * 6);
753
829
  }
830
+ .px-1\.5 {
831
+ padding-inline: calc(var(--spacing) * 1.5);
832
+ }
754
833
  .px-3 {
755
834
  padding-inline: calc(var(--spacing) * 3);
756
835
  }
@@ -845,6 +924,10 @@
845
924
  font-size: var(--text-xs);
846
925
  line-height: var(--tw-leading, var(--text-xs--line-height));
847
926
  }
927
+ .leading-5\.75 {
928
+ --tw-leading: calc(var(--spacing) * 5.75);
929
+ line-height: calc(var(--spacing) * 5.75);
930
+ }
848
931
  .leading-none {
849
932
  --tw-leading: 1;
850
933
  line-height: 1;
@@ -976,6 +1059,11 @@
976
1059
  outline-style: var(--tw-outline-style);
977
1060
  outline-width: 1px;
978
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
+ }
979
1067
  .transition {
980
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;
981
1069
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
@@ -2051,6 +2139,59 @@
2051
2139
  inherits: false;
2052
2140
  initial-value: solid;
2053
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
+ }
2054
2195
  @property --tw-duration {
2055
2196
  syntax: "*";
2056
2197
  inherits: false;
@@ -2125,6 +2266,19 @@
2125
2266
  --tw-ring-offset-color: #fff;
2126
2267
  --tw-ring-offset-shadow: 0 0 #0000;
2127
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;
2128
2282
  --tw-duration: initial;
2129
2283
  --tw-animation-delay: 0s;
2130
2284
  --tw-animation-direction: normal;