@fileverse/ui 4.1.4-patch-4 → 4.1.4-patch-6

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 CHANGED
@@ -1334,6 +1334,9 @@ video {
1334
1334
  .h-6 {
1335
1335
  height: 1.5rem;
1336
1336
  }
1337
+ .h-7 {
1338
+ height: 1.75rem;
1339
+ }
1337
1340
  .h-8 {
1338
1341
  height: 2rem;
1339
1342
  }
@@ -1425,6 +1428,9 @@ video {
1425
1428
  .min-h-10 {
1426
1429
  min-height: 2.5rem;
1427
1430
  }
1431
+ .min-h-7 {
1432
+ min-height: 1.75rem;
1433
+ }
1428
1434
  .min-h-9 {
1429
1435
  min-height: 2.25rem;
1430
1436
  }
@@ -1488,6 +1494,9 @@ video {
1488
1494
  .w-64 {
1489
1495
  width: 16rem;
1490
1496
  }
1497
+ .w-7 {
1498
+ width: 1.75rem;
1499
+ }
1491
1500
  .w-72 {
1492
1501
  width: 18rem;
1493
1502
  }
@@ -1594,6 +1603,9 @@ video {
1594
1603
  .min-w-5 {
1595
1604
  min-width: 1.25rem;
1596
1605
  }
1606
+ .min-w-7 {
1607
+ min-width: 1.75rem;
1608
+ }
1597
1609
  .min-w-9 {
1598
1610
  min-width: 2.25rem;
1599
1611
  }
@@ -2259,9 +2271,6 @@ video {
2259
2271
  .pt-4 {
2260
2272
  padding-top: 1rem;
2261
2273
  }
2262
- .pt-6 {
2263
- padding-top: 1.5rem;
2264
- }
2265
2274
  .text-left {
2266
2275
  text-align: left;
2267
2276
  }
@@ -2300,6 +2309,10 @@ video {
2300
2309
  font-size: 0.875rem;
2301
2310
  line-height: 1.25rem;
2302
2311
  }
2312
+ .text-xs {
2313
+ font-size: 0.75rem;
2314
+ line-height: 1rem;
2315
+ }
2303
2316
  .\!font-bold {
2304
2317
  font-weight: 700 !important;
2305
2318
  }
@@ -947,7 +947,7 @@ declare const toggleVariants: (props?: ({
947
947
  export declare const Tooltip: React_2.ForwardRefExoticComponent<TooltipProps & React_2.RefAttributes<HTMLDivElement>>;
948
948
 
949
949
  export declare interface TooltipProps extends React_2.HTMLAttributes<HTMLElement>, VariantProps<typeof tooltipVariants> {
950
- text: string;
950
+ text: string | React_2.ReactNode;
951
951
  sideOffset?: number;
952
952
  }
953
953