@fileverse/ui 4.1.3-patch-10 → 4.1.4-patch-1
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 -5
- package/dist/index.es.d.ts +3 -1
- package/dist/index.es.js +755 -750
- 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
|
}
|
|
@@ -2722,11 +2748,6 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2722
2748
|
border-color: transparent !important;
|
|
2723
2749
|
}
|
|
2724
2750
|
|
|
2725
|
-
.hover\:bg-gray-200:hover {
|
|
2726
|
-
--tw-bg-opacity: 1;
|
|
2727
|
-
background-color: rgb(229 231 235 / var(--tw-bg-opacity));
|
|
2728
|
-
}
|
|
2729
|
-
|
|
2730
2751
|
.hover\:bg-inherit:hover {
|
|
2731
2752
|
background-color: inherit;
|
|
2732
2753
|
}
|
package/dist/index.es.d.ts
CHANGED
|
@@ -386,7 +386,7 @@ export declare interface DynamicDrawerV2Props {
|
|
|
386
386
|
dismissible?: boolean;
|
|
387
387
|
}
|
|
388
388
|
|
|
389
|
-
export declare const DynamicDropdown: ({ content, anchorTrigger, ...props }: DynamicDropdownProps) => JSX_2.Element;
|
|
389
|
+
export declare const DynamicDropdown: ({ content, anchorTrigger, className, triggerClassName, ...props }: DynamicDropdownProps) => JSX_2.Element;
|
|
390
390
|
|
|
391
391
|
export declare interface DynamicDropdownProps {
|
|
392
392
|
content: default_2.ReactNode;
|
|
@@ -395,6 +395,8 @@ export declare interface DynamicDropdownProps {
|
|
|
395
395
|
align?: "start" | "center" | "end";
|
|
396
396
|
sideOffset?: number;
|
|
397
397
|
alignOffset?: number;
|
|
398
|
+
className?: string;
|
|
399
|
+
triggerClassName?: string;
|
|
398
400
|
}
|
|
399
401
|
|
|
400
402
|
export declare const DynamicDropdownV2: ({ content, anchorTrigger, controlled, isOpen: externalIsOpen, onClose, ...props }: DynamicDropdownV2Props) => JSX_2.Element;
|