Files
klz-cables.com/.pnpm-store/v10/files/55/c822dcb8700395b5d380f1fdd8cf02232eb7f6adfa84eb98a6952e42519fddb8059c5743c0f5216c70905511cb8e20bb854f2e3da05793e8178912a01fd03e
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

26 lines
907 B
Plaintext

import React from 'react';
import type { Props as ButtonProps } from '../Button/types.js';
import './index.scss';
type ListSelection_v4Props = {
/**
* The count of selected items
*/
readonly count: number;
/**
* Actions that apply to the list as a whole
*
* @example select all, clear selection
*/
readonly ListActions?: React.ReactNode[];
/**
* Actions that apply to the selected items
*
* @example edit, delete, publish, unpublish
*/
readonly SelectionActions?: React.ReactNode[];
};
export declare function ListSelection_v4({ count, ListActions, SelectionActions }: ListSelection_v4Props): React.JSX.Element;
type ListSelectionButtonProps = {} & ButtonProps;
export declare function ListSelectionButton({ children, className, ...props }: ListSelectionButtonProps): React.JSX.Element;
export {};
//# sourceMappingURL=index.d.ts.map