@muraldevkit/ui-toolkit 2.30.2 → 2.31.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.
|
@@ -49,6 +49,10 @@ export interface MrlTableItem extends Record<string, unknown> {
|
|
|
49
49
|
* A unique identifier for the row item.
|
|
50
50
|
*/
|
|
51
51
|
id: MrlTableItemId;
|
|
52
|
+
/**
|
|
53
|
+
* This makes the row item not selectable.
|
|
54
|
+
*/
|
|
55
|
+
isSelectable?: boolean;
|
|
52
56
|
}
|
|
53
57
|
export type MrlTableColumnSticky = 'left' | 'right';
|
|
54
58
|
export interface MrlSmartTableColumn {
|
|
@@ -17,6 +17,19 @@ export declare const SAMPLE_ITEMS: {
|
|
|
17
17
|
name: string;
|
|
18
18
|
type: string;
|
|
19
19
|
}[];
|
|
20
|
+
export declare const SAMPLE_ITEMS_WITH_NON_SELECTABLE_ITEM: ({
|
|
21
|
+
dateModified: string;
|
|
22
|
+
id: string;
|
|
23
|
+
name: string;
|
|
24
|
+
type: string;
|
|
25
|
+
isSelectable?: undefined;
|
|
26
|
+
} | {
|
|
27
|
+
dateModified: string;
|
|
28
|
+
id: string;
|
|
29
|
+
isSelectable: boolean;
|
|
30
|
+
name: string;
|
|
31
|
+
type: string;
|
|
32
|
+
})[];
|
|
20
33
|
export declare const SAMPLE_STICKY_COLUMNS: ({
|
|
21
34
|
allowsSorting: boolean;
|
|
22
35
|
id: string;
|