Files
klz-cables.com/.pnpm-store/v10/files/cc/98e5d3edc52511e89268e9ae282a6f57b9dc123b1959e4120f46f1e2a5bfb44f2ce95fc644990d4a45c22a33a42a4995ddcd627bebe6f6d6cb2c9e7799b576
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

24 lines
895 B
Plaintext

import type { LivePreviewConfig } from 'payload';
import React from 'react';
import type { LivePreviewContextType } from './context.js';
export type LivePreviewProviderProps = {
appIsReady?: boolean;
breakpoints?: LivePreviewConfig['breakpoints'];
children: React.ReactNode;
deviceSize?: {
height: number;
width: number;
};
isLivePreviewEnabled?: boolean;
isLivePreviewing: boolean;
/**
* This specifically relates to `admin.preview` function in the config instead of live preview.
*/
isPreviewEnabled?: boolean;
/**
* This specifically relates to `admin.preview` function in the config instead of live preview.
*/
previewURL?: string;
} & Pick<LivePreviewContextType, 'typeofLivePreviewURL' | 'url'>;
export declare const LivePreviewProvider: React.FC<LivePreviewProviderProps>;
//# sourceMappingURL=index.d.ts.map