Files
klz-cables.com/.pnpm-store/v10/files/b2/9440c549fb464055d20e061fd5bc21ce40c33fd32a8089f25a3c0d65b9c1d9c3131ad4c68743f4912b57e22b1e54f955852886a3e9bbdc654e3177b0997ded
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

27 lines
1.0 KiB
Plaintext

import type { groupNavItems } from '@payloadcms/ui/shared';
import type { AdminViewServerPropsOnly, ClientUser, Locale } from 'payload';
import React from 'react';
export type DashboardViewClientProps = {
locale: Locale;
};
export type DashboardViewServerPropsOnly = {
globalData: Array<{
data: {
_isLocked: boolean;
_lastEditedAt: string;
_userEditing: ClientUser | number | string;
};
lockDuration?: number;
slug: string;
}>;
/**
* @deprecated
* This prop is deprecated and will be removed in the next major version.
* Components now import their own `Link` directly from `next/link`.
*/
Link?: React.ComponentType;
navGroups?: ReturnType<typeof groupNavItems>;
} & AdminViewServerPropsOnly;
export type DashboardViewServerProps = DashboardViewClientProps & DashboardViewServerPropsOnly;
export declare function DefaultDashboard(props: DashboardViewServerProps): React.JSX.Element;
//# sourceMappingURL=index.d.ts.map