@fileverse/ui 4.1.7-patch-3 → 4.1.7-patch-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 CHANGED
@@ -1243,6 +1243,9 @@ video {
1243
1243
  .mb-4 {
1244
1244
  margin-bottom: 1rem;
1245
1245
  }
1246
+ .mb-6 {
1247
+ margin-bottom: 1.5rem;
1248
+ }
1246
1249
  .ml-1 {
1247
1250
  margin-left: 0.25rem;
1248
1251
  }
@@ -1442,18 +1445,31 @@ video {
1442
1445
  .min-h-10 {
1443
1446
  min-height: 2.5rem;
1444
1447
  }
1448
+ .min-h-4 {
1449
+ min-height: 1rem;
1450
+ }
1445
1451
  .min-h-7 {
1446
1452
  min-height: 1.75rem;
1447
1453
  }
1448
1454
  .min-h-9 {
1449
1455
  min-height: 2.25rem;
1450
1456
  }
1457
+ .min-h-\[296px\] {
1458
+ min-height: 296px;
1459
+ }
1451
1460
  .min-h-\[2vh\] {
1452
1461
  min-height: 2vh;
1453
1462
  }
1463
+ .min-h-\[468px\] {
1464
+ min-height: 468px;
1465
+ }
1454
1466
  .min-h-\[80px\] {
1455
1467
  min-height: 80px;
1456
1468
  }
1469
+ .min-h-fit {
1470
+ min-height: -moz-fit-content;
1471
+ min-height: fit-content;
1472
+ }
1457
1473
  .min-h-screen {
1458
1474
  min-height: 100vh;
1459
1475
  }
@@ -1666,6 +1682,9 @@ video {
1666
1682
  .min-w-\[36px\] {
1667
1683
  min-width: 36px;
1668
1684
  }
1685
+ .min-w-\[394px\] {
1686
+ min-width: 394px;
1687
+ }
1669
1688
  .min-w-\[40px\] {
1670
1689
  min-width: 40px;
1671
1690
  }
@@ -1675,6 +1694,9 @@ video {
1675
1694
  .min-w-\[80px\] {
1676
1695
  min-width: 80px;
1677
1696
  }
1697
+ .min-w-\[90vw\] {
1698
+ min-width: 90vw;
1699
+ }
1678
1700
  .min-w-\[92vw\] {
1679
1701
  min-width: 92vw;
1680
1702
  }
@@ -1713,6 +1735,10 @@ video {
1713
1735
  .max-w-lg {
1714
1736
  max-width: 32rem;
1715
1737
  }
1738
+ .max-w-min {
1739
+ max-width: -moz-min-content;
1740
+ max-width: min-content;
1741
+ }
1716
1742
  .max-w-screen-md {
1717
1743
  max-width: 768px;
1718
1744
  }
@@ -2275,6 +2301,9 @@ video {
2275
2301
  padding-top: 1.5rem;
2276
2302
  padding-bottom: 1.5rem;
2277
2303
  }
2304
+ .\!pb-0 {
2305
+ padding-bottom: 0px !important;
2306
+ }
2278
2307
  .\!pt-4 {
2279
2308
  padding-top: 1rem !important;
2280
2309
  }
@@ -2311,6 +2340,9 @@ video {
2311
2340
  .pt-0 {
2312
2341
  padding-top: 0px;
2313
2342
  }
2343
+ .pt-1 {
2344
+ padding-top: 0.25rem;
2345
+ }
2314
2346
  .pt-2 {
2315
2347
  padding-top: 0.5rem;
2316
2348
  }
@@ -2549,6 +2581,12 @@ video {
2549
2581
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2550
2582
  }
2551
2583
 
2584
+ *,
2585
+ ::before,
2586
+ ::after {
2587
+ border-style: none;
2588
+ }
2589
+
2552
2590
  #selected-value > div > div > p {
2553
2591
  display: none;
2554
2592
  }
@@ -3471,6 +3509,11 @@ textarea:is(:-webkit-autofill, :autofill) {
3471
3509
  max-width: 420px;
3472
3510
  }
3473
3511
 
3512
+ .md\:max-w-min {
3513
+ max-width: -moz-min-content;
3514
+ max-width: min-content;
3515
+ }
3516
+
3474
3517
  .md\:grid-cols-2 {
3475
3518
  grid-template-columns: repeat(2, minmax(0, 1fr));
3476
3519
  }
@@ -3551,6 +3594,10 @@ textarea:is(:-webkit-autofill, :autofill) {
3551
3594
  min-width: 420px;
3552
3595
  }
3553
3596
 
3597
+ .lg\:min-w-\[884px\] {
3598
+ min-width: 884px;
3599
+ }
3600
+
3554
3601
  .lg\:\!max-w-fit {
3555
3602
  max-width: -moz-fit-content !important;
3556
3603
  max-width: fit-content !important;
@@ -98,6 +98,16 @@ export declare interface BottomDrawerProps extends DynamicModalProps {
98
98
 
99
99
  export declare const Button: React_2.ForwardRefExoticComponent<ButtonProps & React_2.RefAttributes<HTMLButtonElement>>;
100
100
 
101
+ declare interface ButtonConfig {
102
+ show: boolean;
103
+ label: string | default_2.ReactNode;
104
+ onClick?: () => void | Promise<void>;
105
+ href?: string;
106
+ variant?: "default" | "secondary" | "ghost" | "danger";
107
+ icon?: string;
108
+ className?: string;
109
+ }
110
+
101
111
  export declare const ButtonGroup: React_2.FC<ButtonGroupProps>;
102
112
 
103
113
  /**
@@ -485,6 +495,30 @@ export { EmojiPicker }
485
495
 
486
496
  export { EmojiStyle }
487
497
 
498
+ export declare const FeatureReleaseModal: ({ open, onOpenChange, orientation, media, title, subtitle, primaryButton, secondaryButton, hasCloseIcon, disableOutsideClick, className, contentClassName, noOverlay, overlayClasses, features, }: FeatureReleaseModalProps) => JSX_2.Element | null;
499
+
500
+ export declare interface FeatureReleaseModalProps {
501
+ open: boolean;
502
+ onOpenChange: (open: boolean) => void;
503
+ orientation?: "portrait" | "landscape";
504
+ media?: default_2.ReactNode;
505
+ title: string | default_2.ReactNode;
506
+ subtitle?: string | default_2.ReactNode;
507
+ primaryButton?: ButtonConfig;
508
+ secondaryButton?: ButtonConfig;
509
+ hasCloseIcon?: boolean;
510
+ disableOutsideClick?: boolean;
511
+ noOverlay?: boolean;
512
+ overlayClasses?: string;
513
+ className?: string;
514
+ contentClassName?: string;
515
+ features?: {
516
+ title: string | default_2.ReactNode;
517
+ description: string | default_2.ReactNode;
518
+ icon: default_2.ReactNode;
519
+ }[];
520
+ }
521
+
488
522
  export declare type FileType = "dDoc" | "dPage" | "whiteboard" | "note" | "link" | "media";
489
523
 
490
524
  export declare const FloatingToolbar: default_2.ForwardRefExoticComponent<FloatingToolbarProps & default_2.RefAttributes<HTMLDivElement>>;