@fileverse-dev/dsheet 0.0.26 → 0.0.27
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.
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
export declare const SkeletonToolbar: () => import("react/jsx-runtime").JSX.Element;
|
|
2
|
-
export declare const SkeletonGrid: (
|
|
2
|
+
export declare const SkeletonGrid: ({ isReadOnly, }: {
|
|
3
|
+
isReadOnly: boolean | undefined;
|
|
4
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
3
5
|
declare const SkeletonLoader: ({ isReadOnly, }: {
|
|
4
6
|
isReadOnly: boolean | undefined;
|
|
5
7
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
interface TransitionWrapperProps {
|
|
2
|
+
/** Whether the component should be shown */
|
|
3
|
+
show: boolean;
|
|
4
|
+
/** The content to be rendered with transition */
|
|
5
|
+
children: React.ReactNode;
|
|
6
|
+
/** Optional duration in milliseconds, defaults to 500 */
|
|
7
|
+
duration?: number;
|
|
8
|
+
/** Optional custom transition classes */
|
|
9
|
+
transitionClasses?: string;
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* A wrapper component that provides smooth enter/exit transitions for its children
|
|
13
|
+
* using opacity and transform animations.
|
|
14
|
+
*/
|
|
15
|
+
export declare const TransitionWrapper: ({ show, children, duration, transitionClasses, }: TransitionWrapperProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
16
|
+
export {};
|