Files
klz-cables.com/.pnpm-store/v10/files/76/881c04bd77cb335f8ade5d9cd6e8e7c3d640912cbdfd85684e170eb1a93fbddae7b0db158a0e00eed082898bf2829856ec22d4c075c23718f1e3ad6457e1d0
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
898 B
Plaintext

import React from 'react';
import type { LoadingOverlayTypes } from '../../elements/LoadingOverlay/types.js';
import './index.scss';
type LoadingOverlayProps = {
animationDuration?: string;
loadingText?: string;
overlayType?: string;
show?: boolean;
};
export declare const LoadingOverlay: React.FC<LoadingOverlayProps>;
export type UseLoadingOverlayToggleProps = {
loadingText?: string;
name: string;
show: boolean;
type?: LoadingOverlayTypes;
};
export declare const LoadingOverlayToggle: React.FC<UseLoadingOverlayToggleProps>;
export type FormLoadingOverlayToggleProps = {
action: 'create' | 'loading' | 'update';
formIsLoading?: boolean;
loadingSuffix?: string;
name: string;
type?: LoadingOverlayTypes;
};
export declare const FormLoadingOverlayToggle: React.FC<FormLoadingOverlayToggleProps>;
export {};
//# sourceMappingURL=index.d.ts.map