deploy: v0.12 fix 存档key名

This commit is contained in:
2026-06-24 03:09:02 +00:00
parent 7a08d49fe3
commit e0a5281119
58743 changed files with 7297269 additions and 39505 deletions
@@ -0,0 +1,2 @@
export declare function lock(): void;
export declare function unlock(): void;
@@ -0,0 +1,2 @@
export { Overlay } from './overlay';
export { OverlayBackdrop } from './overlay-backdrop';
@@ -0,0 +1,5 @@
type OverlayBackdropProps = {
fixed?: boolean;
} & React.HTMLAttributes<HTMLDivElement>;
export declare function OverlayBackdrop({ fixed, ...props }: OverlayBackdropProps): import("react/jsx-runtime").JSX.Element;
export {};
@@ -0,0 +1,7 @@
import * as React from 'react';
export type OverlayProps = React.HTMLAttributes<HTMLDivElement> & {
fixed?: boolean;
ref?: React.Ref<HTMLDivElement>;
};
declare const Overlay: React.FC<OverlayProps>;
export { Overlay };
@@ -0,0 +1,2 @@
declare const styles: string;
export { styles };