@dgithiomi/sbui-web 1.0.0 → 1.0.3
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/README.md +320 -0
- package/dist/{chunk-3QS3WKRC.mjs → chunk-LZOMFHX3.mjs} +9 -2
- package/dist/index.cjs +9225 -329
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +87 -2
- package/dist/index.d.ts +87 -2
- package/dist/index.mjs +9219 -327
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +64 -0
- package/dist/tailwind-preset.mjs +1 -1
- package/package.json +3 -3
- /package/dist/{chunk-3QS3WKRC.mjs.map → chunk-LZOMFHX3.mjs.map} +0 -0
package/dist/styles.css
CHANGED
|
@@ -731,6 +731,9 @@ video {
|
|
|
731
731
|
white-space: nowrap;
|
|
732
732
|
border-width: 0;
|
|
733
733
|
}
|
|
734
|
+
.pointer-events-none {
|
|
735
|
+
pointer-events: none;
|
|
736
|
+
}
|
|
734
737
|
.visible {
|
|
735
738
|
visibility: visible;
|
|
736
739
|
}
|
|
@@ -759,9 +762,15 @@ video {
|
|
|
759
762
|
.bottom-1\.5 {
|
|
760
763
|
bottom: 0.375rem;
|
|
761
764
|
}
|
|
765
|
+
.bottom-14 {
|
|
766
|
+
bottom: 3.5rem;
|
|
767
|
+
}
|
|
762
768
|
.bottom-2 {
|
|
763
769
|
bottom: 0.5rem;
|
|
764
770
|
}
|
|
771
|
+
.bottom-4 {
|
|
772
|
+
bottom: 1rem;
|
|
773
|
+
}
|
|
765
774
|
.bottom-\[-2px\] {
|
|
766
775
|
bottom: -2px;
|
|
767
776
|
}
|
|
@@ -840,6 +849,9 @@ video {
|
|
|
840
849
|
.z-\[-1\] {
|
|
841
850
|
z-index: -1;
|
|
842
851
|
}
|
|
852
|
+
.z-\[9999\] {
|
|
853
|
+
z-index: 9999;
|
|
854
|
+
}
|
|
843
855
|
.mb-1 {
|
|
844
856
|
margin-bottom: 0.25rem;
|
|
845
857
|
}
|
|
@@ -852,6 +864,9 @@ video {
|
|
|
852
864
|
.flex {
|
|
853
865
|
display: flex;
|
|
854
866
|
}
|
|
867
|
+
.grid {
|
|
868
|
+
display: grid;
|
|
869
|
+
}
|
|
855
870
|
.hidden {
|
|
856
871
|
display: none;
|
|
857
872
|
}
|
|
@@ -859,6 +874,10 @@ video {
|
|
|
859
874
|
width: 1.25rem;
|
|
860
875
|
height: 1.25rem;
|
|
861
876
|
}
|
|
877
|
+
.size-8 {
|
|
878
|
+
width: 2rem;
|
|
879
|
+
height: 2rem;
|
|
880
|
+
}
|
|
862
881
|
.h-1 {
|
|
863
882
|
height: 0.25rem;
|
|
864
883
|
}
|
|
@@ -877,6 +896,9 @@ video {
|
|
|
877
896
|
.h-\[100px\] {
|
|
878
897
|
height: 100px;
|
|
879
898
|
}
|
|
899
|
+
.h-\[3px\] {
|
|
900
|
+
height: 3px;
|
|
901
|
+
}
|
|
880
902
|
.h-full {
|
|
881
903
|
height: 100%;
|
|
882
904
|
}
|
|
@@ -902,6 +924,9 @@ video {
|
|
|
902
924
|
width: -moz-max-content;
|
|
903
925
|
width: max-content;
|
|
904
926
|
}
|
|
927
|
+
.flex-1 {
|
|
928
|
+
flex: 1 1 0%;
|
|
929
|
+
}
|
|
905
930
|
.origin-bottom {
|
|
906
931
|
transform-origin: bottom;
|
|
907
932
|
}
|
|
@@ -953,6 +978,9 @@ video {
|
|
|
953
978
|
.flex-col {
|
|
954
979
|
flex-direction: column;
|
|
955
980
|
}
|
|
981
|
+
.place-items-center {
|
|
982
|
+
place-items: center;
|
|
983
|
+
}
|
|
956
984
|
.items-start {
|
|
957
985
|
align-items: flex-start;
|
|
958
986
|
}
|
|
@@ -968,6 +996,12 @@ video {
|
|
|
968
996
|
.gap-1 {
|
|
969
997
|
gap: 0.25rem;
|
|
970
998
|
}
|
|
999
|
+
.gap-2 {
|
|
1000
|
+
gap: 0.5rem;
|
|
1001
|
+
}
|
|
1002
|
+
.gap-3 {
|
|
1003
|
+
gap: 0.75rem;
|
|
1004
|
+
}
|
|
971
1005
|
.overflow-hidden {
|
|
972
1006
|
overflow: hidden;
|
|
973
1007
|
}
|
|
@@ -980,6 +1014,9 @@ video {
|
|
|
980
1014
|
.rounded-sm {
|
|
981
1015
|
border-radius: 0.125rem;
|
|
982
1016
|
}
|
|
1017
|
+
.rounded-xl {
|
|
1018
|
+
border-radius: 0.75rem;
|
|
1019
|
+
}
|
|
983
1020
|
.rounded-b-full {
|
|
984
1021
|
border-bottom-right-radius: 9999px;
|
|
985
1022
|
border-bottom-left-radius: 9999px;
|
|
@@ -1062,6 +1099,9 @@ video {
|
|
|
1062
1099
|
.p-2 {
|
|
1063
1100
|
padding: 0.5rem;
|
|
1064
1101
|
}
|
|
1102
|
+
.p-3 {
|
|
1103
|
+
padding: 0.75rem;
|
|
1104
|
+
}
|
|
1065
1105
|
.px-2 {
|
|
1066
1106
|
padding-left: 0.5rem;
|
|
1067
1107
|
padding-right: 0.5rem;
|
|
@@ -1124,6 +1164,17 @@ video {
|
|
|
1124
1164
|
.opacity-0 {
|
|
1125
1165
|
opacity: 0;
|
|
1126
1166
|
}
|
|
1167
|
+
.opacity-50 {
|
|
1168
|
+
opacity: 0.5;
|
|
1169
|
+
}
|
|
1170
|
+
.opacity-80 {
|
|
1171
|
+
opacity: 0.8;
|
|
1172
|
+
}
|
|
1173
|
+
.shadow-xl {
|
|
1174
|
+
--tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
|
|
1175
|
+
--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
|
|
1176
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1177
|
+
}
|
|
1127
1178
|
.outline-none {
|
|
1128
1179
|
outline: 2px solid transparent;
|
|
1129
1180
|
outline-offset: 2px;
|
|
@@ -1153,6 +1204,11 @@ video {
|
|
|
1153
1204
|
.filter {
|
|
1154
1205
|
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);
|
|
1155
1206
|
}
|
|
1207
|
+
.transition {
|
|
1208
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
1209
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1210
|
+
transition-duration: 150ms;
|
|
1211
|
+
}
|
|
1156
1212
|
.transition-all {
|
|
1157
1213
|
transition-property: all;
|
|
1158
1214
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
@@ -1233,10 +1289,18 @@ video {
|
|
|
1233
1289
|
--tw-bg-opacity: 1;
|
|
1234
1290
|
background-color: rgb(var(--color-warning-500) / var(--tw-bg-opacity, 1));
|
|
1235
1291
|
}
|
|
1292
|
+
.hover\:opacity-100:hover {
|
|
1293
|
+
opacity: 1;
|
|
1294
|
+
}
|
|
1236
1295
|
.focus\:outline-none:focus {
|
|
1237
1296
|
outline: 2px solid transparent;
|
|
1238
1297
|
outline-offset: 2px;
|
|
1239
1298
|
}
|
|
1299
|
+
@media (min-width: 640px) {
|
|
1300
|
+
.sm\:w-\[22\.5rem\] {
|
|
1301
|
+
width: 22.5rem;
|
|
1302
|
+
}
|
|
1303
|
+
}
|
|
1240
1304
|
@media (prefers-color-scheme: dark) {
|
|
1241
1305
|
.dark\:text-fg-inverse {
|
|
1242
1306
|
--tw-text-opacity: 1;
|
package/dist/tailwind-preset.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dgithiomi/sbui-web",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "The web specific UI component library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"web",
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"access": "public"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
|
-
"react": "^19.0.0",
|
|
53
|
-
"react-dom": "^19.0.0",
|
|
52
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
53
|
+
"react-dom": "^18.0.0 || ^19.0.0",
|
|
54
54
|
"tailwindcss": "^3.4.0"
|
|
55
55
|
},
|
|
56
56
|
"peerDependenciesMeta": {
|
|
File without changes
|