Files
klz-cables.com/.pnpm-store/v10/files/23/3581e40605c2be4d984f641371ad9eb5775237e6196e4f1a19e59ee7e42d6981780fb67b2acd2f4bf2f06f206addf720161932af4e1ca2364f39ef324b5788
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

33 lines
953 B
Plaintext

import './index.scss';
import React from 'react';
export declare const baseClass = "version-drawer";
export declare const formatVersionDrawerSlug: ({ depth, uuid, }: {
depth: number;
uuid: string;
}) => string;
export declare const VersionDrawerContent: React.FC<{
collectionSlug?: string;
docID?: number | string;
drawerSlug: string;
globalSlug?: string;
}>;
export declare const VersionDrawer: React.FC<{
collectionSlug?: string;
docID?: number | string;
drawerSlug: string;
globalSlug?: string;
}>;
export declare const useVersionDrawer: ({ collectionSlug, docID, globalSlug, }: {
collectionSlug?: string;
docID?: number | string;
globalSlug?: string;
}) => {
closeDrawer: () => void;
Drawer: () => React.JSX.Element;
drawerDepth: number;
drawerSlug: string;
isDrawerOpen: boolean;
openDrawer: () => void;
toggleDrawer: () => void;
};
//# sourceMappingURL=index.d.ts.map