Files
klz-cables.com/.pnpm-store/v10/files/bb/09391c3ef045b667d74676864b620e8f3235d550ca72190fb6f0e6c1b6949797b8d51b6ecdbfc9761220e00bed4d554a98e755ea62a5d7d65947c3216ffa33
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

15 lines
786 B
Plaintext

import type { CollectionSlug } from 'payload';
import React from 'react';
export declare function ListCreateNewDocInFolderButton({ buttonLabel, buttonSize, buttonStyle, collectionSlugs, folderAssignedCollections, onCreateSuccess, slugPrefix, }: {
buttonLabel: string;
buttonSize?: 'large' | 'medium' | 'small' | 'xsmall';
buttonStyle?: 'error' | 'icon-label' | 'none' | 'pill' | 'primary' | 'secondary' | 'subtle' | 'tab' | 'transparent';
collectionSlugs: CollectionSlug[];
folderAssignedCollections: CollectionSlug[];
onCreateSuccess: (args: {
collectionSlug: CollectionSlug;
doc: Record<string, unknown>;
}) => Promise<void> | void;
slugPrefix: string;
}): React.JSX.Element;
//# sourceMappingURL=ListCreateNewDocInFolderButton.d.ts.map