@zekidev/ui 2.1.0 → 2.2.1
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/components/section-shell.d.ts +13 -0
- package/dist/index.cjs +5893 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1196 -1095
- package/dist/leaflet-map-inner-E52RWDEC.cjs +171 -0
- package/dist/types/index.d.ts +11 -0
- package/package.json +17 -27
- package/src/styles/globals.css +8 -8
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { MediaAsset } from "../types";
|
|
2
|
+
export interface SectionShellProps {
|
|
3
|
+
id?: string;
|
|
4
|
+
backgroundImage?: MediaAsset;
|
|
5
|
+
backgroundVideoUrl?: string;
|
|
6
|
+
/** 0–100 opacity of a dark overlay on top of the background media */
|
|
7
|
+
backgroundOverlay?: number;
|
|
8
|
+
/** Fade-up entrance animation triggered once when scrolled into view */
|
|
9
|
+
animate?: boolean;
|
|
10
|
+
children: React.ReactNode;
|
|
11
|
+
className?: string;
|
|
12
|
+
}
|
|
13
|
+
export declare function SectionShell({ id, backgroundImage, backgroundVideoUrl, backgroundOverlay, animate, children, className, }: SectionShellProps): import("react/jsx-runtime").JSX.Element;
|