@fileverse/ui 4.1.3-patch-6 → 4.1.3-patch-8

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
@@ -1100,9 +1100,6 @@ video {
1100
1100
  .top-3 {
1101
1101
  top: 0.75rem;
1102
1102
  }
1103
- .top-\[10px\] {
1104
- top: 10px;
1105
- }
1106
1103
  .top-\[50\%\] {
1107
1104
  top: 50%;
1108
1105
  }
@@ -397,6 +397,20 @@ export declare interface DynamicDropdownProps {
397
397
  alignOffset?: number;
398
398
  }
399
399
 
400
+ export declare const DynamicDropdownV2: ({ content, anchorTrigger, controlled, isOpen: externalIsOpen, onClose, ...props }: DynamicDropdownV2Props) => JSX_2.Element;
401
+
402
+ export declare interface DynamicDropdownV2Props {
403
+ content: default_2.ReactNode;
404
+ anchorTrigger?: default_2.ReactNode;
405
+ side?: "top" | "right" | "bottom" | "left";
406
+ align?: "start" | "center" | "end";
407
+ sideOffset?: number;
408
+ alignOffset?: number;
409
+ controlled?: boolean;
410
+ isOpen?: boolean;
411
+ onClose?: () => void;
412
+ }
413
+
400
414
  export declare const DynamicModal: ({ open, onOpenChange, title, description, content, primaryAction, secondaryAction, className, contentClassName, disableOutsideClick, hasCloseIcon, overlayClasses, noOverlay, }: DynamicModalProps) => JSX_2.Element;
401
415
 
402
416
  export declare interface DynamicModalProps {