@fileverse/ui 4.1.0-patch-3 → 4.1.0-patch-4

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
@@ -1373,6 +1373,9 @@ video {
1373
1373
  .w-9 {
1374
1374
  width: 2.25rem;
1375
1375
  }
1376
+ .w-\[100\%\] {
1377
+ width: 100%;
1378
+ }
1376
1379
  .w-\[16px\] {
1377
1380
  width: 16px;
1378
1381
  }
@@ -1409,6 +1412,9 @@ video {
1409
1412
  .w-\[68px\] {
1410
1413
  width: 68px;
1411
1414
  }
1415
+ .w-\[70\%\] {
1416
+ width: 70%;
1417
+ }
1412
1418
  .w-\[70vw\] {
1413
1419
  width: 70vw;
1414
1420
  }
@@ -1449,6 +1455,9 @@ video {
1449
1455
  .min-w-\[108px\] {
1450
1456
  min-width: 108px;
1451
1457
  }
1458
+ .min-w-\[110px\] {
1459
+ min-width: 110px;
1460
+ }
1452
1461
  .min-w-\[129px\] {
1453
1462
  min-width: 129px;
1454
1463
  }
@@ -1616,6 +1625,9 @@ video {
1616
1625
  .grid-flow-col {
1617
1626
  grid-auto-flow: column;
1618
1627
  }
1628
+ .grid-cols-1 {
1629
+ grid-template-columns: repeat(1, minmax(0, 1fr));
1630
+ }
1619
1631
  .grid-cols-2 {
1620
1632
  grid-template-columns: repeat(2, minmax(0, 1fr));
1621
1633
  }
@@ -1658,6 +1670,9 @@ video {
1658
1670
  .gap-1 {
1659
1671
  gap: 0.25rem;
1660
1672
  }
1673
+ .gap-10 {
1674
+ gap: 2.5rem;
1675
+ }
1661
1676
  .gap-16 {
1662
1677
  gap: 4rem;
1663
1678
  }
@@ -2857,6 +2872,10 @@ textarea:is(:-webkit-autofill, :autofill) {
2857
2872
  max-width: 24rem;
2858
2873
  }
2859
2874
 
2875
+ .sm\:grid-cols-1 {
2876
+ grid-template-columns: repeat(1, minmax(0, 1fr));
2877
+ }
2878
+
2860
2879
  .sm\:flex-row {
2861
2880
  flex-direction: row;
2862
2881
  }
@@ -2894,6 +2913,10 @@ textarea:is(:-webkit-autofill, :autofill) {
2894
2913
  width: auto;
2895
2914
  }
2896
2915
 
2916
+ .md\:grid-cols-2 {
2917
+ grid-template-columns: repeat(2, minmax(0, 1fr));
2918
+ }
2919
+
2897
2920
  .md\:flex-row {
2898
2921
  flex-direction: row;
2899
2922
  }
@@ -2971,6 +2994,10 @@ textarea:is(:-webkit-autofill, :autofill) {
2971
2994
  max-width: fit-content !important;
2972
2995
  }
2973
2996
 
2997
+ .lg\:grid-cols-3 {
2998
+ grid-template-columns: repeat(3, minmax(0, 1fr));
2999
+ }
3000
+
2974
3001
  .lg\:text-wrap {
2975
3002
  text-wrap: wrap;
2976
3003
  }
@@ -82,6 +82,8 @@ declare const avatarVariants: (props?: ({
82
82
  content?: "image" | "text" | null | undefined;
83
83
  } & ClassProp) | undefined) => string;
84
84
 
85
+ export declare const BottomDrawer: ({ open, onOpenChange, title, description, content, primaryAction, secondaryAction, className, contentClassName, hasCloseIcon, }: DynamicModalProps) => JSX_2.Element;
86
+
85
87
  export declare const Button: React_2.ForwardRefExoticComponent<ButtonProps & React_2.RefAttributes<HTMLButtonElement>>;
86
88
 
87
89
  export declare const ButtonGroup: React_2.FC<ButtonGroupProps>;