Files
klz-cables.com/.pnpm-store/v10/files/d0/dae2b5dd3eb3b5048f27eca912247631a40f808065ccf6f5807b2494d1ec314f6b985ddaa6cad04bf00833118ca5989cccf5136d2ab8d7f96e40ead4838f47
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

21 lines
642 B
Plaintext

import type { ClientWidget, WidgetWidth } from 'payload';
import React from 'react';
export type WidgetItem = {
id: string;
maxWidth: WidgetWidth;
minWidth: WidgetWidth;
width: WidgetWidth;
};
export type WidgetInstanceClient = {
component: React.ReactNode;
item: WidgetItem;
};
export type DropTargetWidget = {
position: 'after' | 'before';
widget: WidgetInstanceClient;
} | null;
export declare function ModularDashboardClient({ clientLayout: initialLayout, widgets, }: {
clientLayout: WidgetInstanceClient[];
widgets: ClientWidget[];
}): React.JSX.Element;
//# sourceMappingURL=index.client.d.ts.map