Files
klz-cables.com/.pnpm-store/v10/files/f4/8b50b531600881b3c232ce8cc29f8d52738a7b1d6237a8407a3ffbf003ed4d93638ddb23f8b3cb0a7300f9262ee5851bd918107c643c8c6ffed84af9607cc2
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

31 lines
896 B
Plaintext

import type { TypeWithVersion } from 'payload';
import React from 'react';
import './index.scss';
export declare const VersionPillLabel: React.FC<{
currentlyPublishedVersion?: TypeWithVersion<any>;
disableDate?: boolean;
doc: {
[key: string]: unknown;
id: number | string;
publishedLocale?: string;
updatedAt?: string;
version: {
[key: string]: unknown;
_status: 'draft' | 'published';
updatedAt: string;
};
};
/**
* By default, the date is displayed first, followed by the version label.
* @default false
*/
labelFirst?: boolean;
labelOverride?: React.ReactNode;
/**
* @default 'pill'
*/
labelStyle?: 'pill' | 'text';
labelSuffix?: React.ReactNode;
latestDraftVersion?: TypeWithVersion<any>;
}>;
//# sourceMappingURL=VersionPillLabel.d.ts.map