@sunggang/ui-lib 0.1.4 → 0.1.7
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 +115 -0
- package/index.esm.js +1 -64143
- package/package.json +1 -1
- package/src/index.d.ts +0 -1
package/index.esm.css
CHANGED
|
@@ -424,6 +424,39 @@ video {
|
|
|
424
424
|
|
|
425
425
|
--radius: 0.5rem;
|
|
426
426
|
}
|
|
427
|
+
|
|
428
|
+
.dark {
|
|
429
|
+
--background: 224 71% 4%;
|
|
430
|
+
--foreground: 213 31% 91%;
|
|
431
|
+
|
|
432
|
+
--muted: 223 47% 11%;
|
|
433
|
+
--muted-foreground: 215.4 16.3% 56.9%;
|
|
434
|
+
|
|
435
|
+
--accent: 216 34% 17%;
|
|
436
|
+
--accent-foreground: 210 40% 98%;
|
|
437
|
+
|
|
438
|
+
--popover: 224 71% 4%;
|
|
439
|
+
--popover-foreground: 215 20.2% 65.1%;
|
|
440
|
+
|
|
441
|
+
--border: 216 34% 17%;
|
|
442
|
+
--input: 216 34% 17%;
|
|
443
|
+
|
|
444
|
+
--card: 224 71% 4%;
|
|
445
|
+
--card-foreground: 213 31% 91%;
|
|
446
|
+
|
|
447
|
+
--primary: 210 40% 98%;
|
|
448
|
+
--primary-foreground: 222.2 47.4% 1.2%;
|
|
449
|
+
|
|
450
|
+
--secondary: 222.2 47.4% 11.2%;
|
|
451
|
+
--secondary-foreground: 210 40% 98%;
|
|
452
|
+
|
|
453
|
+
--destructive: 0 63% 31%;
|
|
454
|
+
--destructive-foreground: 210 40% 98%;
|
|
455
|
+
|
|
456
|
+
--ring: 216 34% 17%;
|
|
457
|
+
|
|
458
|
+
--radius: 0.5rem;
|
|
459
|
+
}
|
|
427
460
|
* {
|
|
428
461
|
border-color: hsl(var(--border));
|
|
429
462
|
}
|
|
@@ -571,6 +604,15 @@ video {
|
|
|
571
604
|
.visible {
|
|
572
605
|
visibility: visible;
|
|
573
606
|
}
|
|
607
|
+
.invisible {
|
|
608
|
+
visibility: hidden;
|
|
609
|
+
}
|
|
610
|
+
.collapse {
|
|
611
|
+
visibility: collapse;
|
|
612
|
+
}
|
|
613
|
+
.static {
|
|
614
|
+
position: static;
|
|
615
|
+
}
|
|
574
616
|
.fixed {
|
|
575
617
|
position: fixed;
|
|
576
618
|
}
|
|
@@ -633,12 +675,24 @@ video {
|
|
|
633
675
|
.block {
|
|
634
676
|
display: block;
|
|
635
677
|
}
|
|
678
|
+
.inline-block {
|
|
679
|
+
display: inline-block;
|
|
680
|
+
}
|
|
681
|
+
.inline {
|
|
682
|
+
display: inline;
|
|
683
|
+
}
|
|
636
684
|
.flex {
|
|
637
685
|
display: flex;
|
|
638
686
|
}
|
|
639
687
|
.inline-flex {
|
|
640
688
|
display: inline-flex;
|
|
641
689
|
}
|
|
690
|
+
.table {
|
|
691
|
+
display: table;
|
|
692
|
+
}
|
|
693
|
+
.grid {
|
|
694
|
+
display: grid;
|
|
695
|
+
}
|
|
642
696
|
.hidden {
|
|
643
697
|
display: none;
|
|
644
698
|
}
|
|
@@ -717,6 +771,9 @@ video {
|
|
|
717
771
|
.shrink-0 {
|
|
718
772
|
flex-shrink: 0;
|
|
719
773
|
}
|
|
774
|
+
.transform {
|
|
775
|
+
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));
|
|
776
|
+
}
|
|
720
777
|
@keyframes spin {
|
|
721
778
|
|
|
722
779
|
to {
|
|
@@ -729,6 +786,9 @@ video {
|
|
|
729
786
|
.cursor-pointer {
|
|
730
787
|
cursor: pointer;
|
|
731
788
|
}
|
|
789
|
+
.resize {
|
|
790
|
+
resize: both;
|
|
791
|
+
}
|
|
732
792
|
.flex-col {
|
|
733
793
|
flex-direction: column;
|
|
734
794
|
}
|
|
@@ -970,6 +1030,12 @@ video {
|
|
|
970
1030
|
.font-normal {
|
|
971
1031
|
font-weight: 400;
|
|
972
1032
|
}
|
|
1033
|
+
.uppercase {
|
|
1034
|
+
text-transform: uppercase;
|
|
1035
|
+
}
|
|
1036
|
+
.italic {
|
|
1037
|
+
font-style: italic;
|
|
1038
|
+
}
|
|
973
1039
|
.tracking-tight {
|
|
974
1040
|
letter-spacing: -0.025em;
|
|
975
1041
|
}
|
|
@@ -1005,6 +1071,17 @@ video {
|
|
|
1005
1071
|
--tw-text-opacity: 1;
|
|
1006
1072
|
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
1007
1073
|
}
|
|
1074
|
+
.underline {
|
|
1075
|
+
text-decoration-line: underline;
|
|
1076
|
+
}
|
|
1077
|
+
.line-through {
|
|
1078
|
+
text-decoration-line: line-through;
|
|
1079
|
+
}
|
|
1080
|
+
.shadow {
|
|
1081
|
+
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
1082
|
+
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
1083
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1084
|
+
}
|
|
1008
1085
|
.shadow-lg {
|
|
1009
1086
|
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
1010
1087
|
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
@@ -1020,11 +1097,37 @@ video {
|
|
|
1020
1097
|
--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
|
|
1021
1098
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1022
1099
|
}
|
|
1100
|
+
.outline {
|
|
1101
|
+
outline-style: solid;
|
|
1102
|
+
}
|
|
1103
|
+
.ring {
|
|
1104
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1105
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1106
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1107
|
+
}
|
|
1023
1108
|
.ring-0 {
|
|
1024
1109
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1025
1110
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1026
1111
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1027
1112
|
}
|
|
1113
|
+
.blur {
|
|
1114
|
+
--tw-blur: blur(8px);
|
|
1115
|
+
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);
|
|
1116
|
+
}
|
|
1117
|
+
.drop-shadow {
|
|
1118
|
+
--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));
|
|
1119
|
+
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);
|
|
1120
|
+
}
|
|
1121
|
+
.filter {
|
|
1122
|
+
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);
|
|
1123
|
+
}
|
|
1124
|
+
.transition {
|
|
1125
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
|
|
1126
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
1127
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
|
|
1128
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1129
|
+
transition-duration: 150ms;
|
|
1130
|
+
}
|
|
1028
1131
|
.transition-colors {
|
|
1029
1132
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
|
1030
1133
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
@@ -1043,6 +1146,12 @@ video {
|
|
|
1043
1146
|
.duration-300 {
|
|
1044
1147
|
transition-duration: 300ms;
|
|
1045
1148
|
}
|
|
1149
|
+
.ease-in-out {
|
|
1150
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1151
|
+
}
|
|
1152
|
+
.ease-out {
|
|
1153
|
+
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
1154
|
+
}
|
|
1046
1155
|
@keyframes enter {
|
|
1047
1156
|
|
|
1048
1157
|
from {
|
|
@@ -1060,6 +1169,12 @@ video {
|
|
|
1060
1169
|
.duration-300 {
|
|
1061
1170
|
animation-duration: 300ms;
|
|
1062
1171
|
}
|
|
1172
|
+
.ease-in-out {
|
|
1173
|
+
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1174
|
+
}
|
|
1175
|
+
.ease-out {
|
|
1176
|
+
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
1177
|
+
}
|
|
1063
1178
|
|
|
1064
1179
|
/* gary */
|
|
1065
1180
|
|