@fileverse/ui 4.1.3-patch-10 → 4.1.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 +0 -5
- package/dist/index.es.d.ts +3 -1
- package/dist/index.es.js +647 -643
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -2722,11 +2722,6 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2722
2722
|
border-color: transparent !important;
|
|
2723
2723
|
}
|
|
2724
2724
|
|
|
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
2725
|
.hover\:bg-inherit:hover {
|
|
2731
2726
|
background-color: inherit;
|
|
2732
2727
|
}
|
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;
|