@fileverse/ui 4.1.4 → 4.1.5
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/index.css +26 -0
- package/dist/index.es.d.ts +1 -1
- package/dist/index.es.js +1558 -1422
- package/package.json +2 -2
package/dist/index.css
CHANGED
|
@@ -1318,6 +1318,9 @@ video {
|
|
|
1318
1318
|
.h-screen {
|
|
1319
1319
|
height: 100vh;
|
|
1320
1320
|
}
|
|
1321
|
+
.max-h-10 {
|
|
1322
|
+
max-height: 2.5rem;
|
|
1323
|
+
}
|
|
1321
1324
|
.max-h-40 {
|
|
1322
1325
|
max-height: 10rem;
|
|
1323
1326
|
}
|
|
@@ -1363,6 +1366,9 @@ video {
|
|
|
1363
1366
|
.w-16 {
|
|
1364
1367
|
width: 4rem;
|
|
1365
1368
|
}
|
|
1369
|
+
.w-20 {
|
|
1370
|
+
width: 5rem;
|
|
1371
|
+
}
|
|
1366
1372
|
.w-24 {
|
|
1367
1373
|
width: 6rem;
|
|
1368
1374
|
}
|
|
@@ -1529,6 +1535,9 @@ video {
|
|
|
1529
1535
|
.min-w-\[60\%\] {
|
|
1530
1536
|
min-width: 60%;
|
|
1531
1537
|
}
|
|
1538
|
+
.min-w-\[80px\] {
|
|
1539
|
+
min-width: 80px;
|
|
1540
|
+
}
|
|
1532
1541
|
.min-w-\[92vw\] {
|
|
1533
1542
|
min-width: 92vw;
|
|
1534
1543
|
}
|
|
@@ -1958,6 +1967,10 @@ video {
|
|
|
1958
1967
|
--tw-border-opacity: 1;
|
|
1959
1968
|
border-color: rgb(255 255 255 / var(--tw-border-opacity));
|
|
1960
1969
|
}
|
|
1970
|
+
.border-gray-200 {
|
|
1971
|
+
--tw-border-opacity: 1;
|
|
1972
|
+
border-color: rgb(229 231 235 / var(--tw-border-opacity));
|
|
1973
|
+
}
|
|
1961
1974
|
.border-transparent {
|
|
1962
1975
|
border-color: transparent;
|
|
1963
1976
|
}
|
|
@@ -2092,6 +2105,9 @@ video {
|
|
|
2092
2105
|
padding-top: 1.5rem;
|
|
2093
2106
|
padding-bottom: 1.5rem;
|
|
2094
2107
|
}
|
|
2108
|
+
.\!pt-4 {
|
|
2109
|
+
padding-top: 1rem !important;
|
|
2110
|
+
}
|
|
2095
2111
|
.pb-2 {
|
|
2096
2112
|
padding-bottom: 0.5rem;
|
|
2097
2113
|
}
|
|
@@ -2161,6 +2177,10 @@ video {
|
|
|
2161
2177
|
.text-\[32px\] {
|
|
2162
2178
|
font-size: 32px;
|
|
2163
2179
|
}
|
|
2180
|
+
.text-lg {
|
|
2181
|
+
font-size: 1.125rem;
|
|
2182
|
+
line-height: 1.75rem;
|
|
2183
|
+
}
|
|
2164
2184
|
.text-sm {
|
|
2165
2185
|
font-size: 0.875rem;
|
|
2166
2186
|
line-height: 1.25rem;
|
|
@@ -2177,6 +2197,12 @@ video {
|
|
|
2177
2197
|
.font-normal {
|
|
2178
2198
|
font-weight: 400;
|
|
2179
2199
|
}
|
|
2200
|
+
.leading-5 {
|
|
2201
|
+
line-height: 1.25rem;
|
|
2202
|
+
}
|
|
2203
|
+
.leading-6 {
|
|
2204
|
+
line-height: 1.5rem;
|
|
2205
|
+
}
|
|
2180
2206
|
.leading-none {
|
|
2181
2207
|
line-height: 1;
|
|
2182
2208
|
}
|
package/dist/index.es.d.ts
CHANGED
|
@@ -88,7 +88,7 @@ declare const avatarVariants: (props?: ({
|
|
|
88
88
|
content?: "image" | "text" | null | undefined;
|
|
89
89
|
} & ClassProp) | undefined) => string;
|
|
90
90
|
|
|
91
|
-
export declare const BottomDrawer: ({ open, onOpenChange, title, description, content, primaryAction, secondaryAction, className, contentClassName, hasCloseIcon, headerClassName, footerClassName, }: BottomDrawerProps) => JSX_2.Element;
|
|
91
|
+
export declare const BottomDrawer: ({ open, onOpenChange, title, description, content, primaryAction, secondaryAction, className, contentClassName, hasCloseIcon, headerClassName, footerClassName, overlayClasses, noOverlay, }: BottomDrawerProps) => JSX_2.Element;
|
|
92
92
|
|
|
93
93
|
export declare interface BottomDrawerProps extends DynamicModalProps {
|
|
94
94
|
headerClassName?: string;
|