Files
klz-cables.com/.pnpm-store/v10/files/f7/10e28c0f9d237b6139bcff2b991ea96077297f1c638d4d7b2f6217454517a388071d37eb85dfdb74fbb7154b9e40c5149efed2000f13a6d59e30515a74e7d0
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

41 lines
1.8 KiB
Plaintext

import type { ClientUser, Data, SanitizedCollectionConfig, SanitizedCollectionPermission, SanitizedGlobalPermission } from 'payload';
import React from 'react';
import type { DocumentDrawerContextType } from '../DocumentDrawer/Provider.js';
import './index.scss';
export declare const DocumentControls: React.FC<{
readonly apiURL: string;
readonly BeforeDocumentControls?: React.ReactNode;
readonly customComponents?: {
readonly PreviewButton?: React.ReactNode;
readonly PublishButton?: React.ReactNode;
readonly SaveButton?: React.ReactNode;
readonly SaveDraftButton?: React.ReactNode;
readonly Status?: React.ReactNode;
readonly UnpublishButton?: React.ReactNode;
};
readonly data?: Data;
readonly disableActions?: boolean;
readonly disableCreate?: boolean;
readonly EditMenuItems?: React.ReactNode;
readonly hasPublishPermission?: boolean;
readonly hasSavePermission?: boolean;
readonly id?: number | string;
readonly isAccountView?: boolean;
readonly isEditing?: boolean;
readonly isInDrawer?: boolean;
readonly isTrashed?: boolean;
readonly onDelete?: DocumentDrawerContextType['onDelete'];
readonly onDrawerCreateNew?: () => void;
readonly onDuplicate?: DocumentDrawerContextType['onDuplicate'];
readonly onRestore?: DocumentDrawerContextType['onRestore'];
readonly onSave?: DocumentDrawerContextType['onSave'];
readonly onTakeOver?: () => void;
readonly permissions: null | SanitizedCollectionPermission | SanitizedGlobalPermission;
readonly readOnlyForIncomingUser?: boolean;
readonly redirectAfterDelete?: boolean;
readonly redirectAfterDuplicate?: boolean;
readonly redirectAfterRestore?: boolean;
readonly slug: SanitizedCollectionConfig['slug'];
readonly user?: ClientUser;
}>;
//# sourceMappingURL=index.d.ts.map