randmarcomps 1.621.0 → 1.623.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/randmarcomps.d.ts +3 -1
- package/dist/randmarcomps.js +1847 -1748
- package/dist/randmarcomps.umd.cjs +46 -46
- package/package.json +1 -1
package/dist/randmarcomps.d.ts
CHANGED
|
@@ -269,7 +269,7 @@ export declare const ChatProvider: default_2.FC<{
|
|
|
269
269
|
|
|
270
270
|
export declare const Checkbox: React_2.ForwardRefExoticComponent<Omit<CheckboxPrimitive.CheckboxProps & React_2.RefAttributes<HTMLButtonElement>, "ref"> & React_2.RefAttributes<HTMLButtonElement>>;
|
|
271
271
|
|
|
272
|
-
export declare function CheckboxCardList({ items, selectedIds, onSelectedIdsChange, disabled, loading, selectionMode, emptyState, loadingState, getItemAriaLabel, renderItem, className, ...props }: CheckboxCardListProps): JSX.Element;
|
|
272
|
+
export declare function CheckboxCardList({ items, selectedIds, onSelectedIdsChange, disabled, loading, selectionMode, layout, gridColumns, emptyState, loadingState, getItemAriaLabel, renderItem, className, ...props }: CheckboxCardListProps): JSX.Element;
|
|
273
273
|
|
|
274
274
|
export declare interface CheckboxCardListItem {
|
|
275
275
|
id: string;
|
|
@@ -287,6 +287,8 @@ export declare interface CheckboxCardListProps extends Omit<React_2.HTMLAttribut
|
|
|
287
287
|
disabled?: boolean;
|
|
288
288
|
loading?: boolean;
|
|
289
289
|
selectionMode?: "single" | "multiple";
|
|
290
|
+
layout?: "stack" | "grid";
|
|
291
|
+
gridColumns?: 1 | 2;
|
|
290
292
|
emptyState?: React_2.ReactNode;
|
|
291
293
|
loadingState?: React_2.ReactNode;
|
|
292
294
|
getItemAriaLabel?: (item: CheckboxCardListItem) => string;
|