@muraldevkit/ui-toolkit 4.32.0 → 4.33.1
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.
|
@@ -163,6 +163,13 @@ export interface MrlSmartTableProps extends Partial<Pick<MrlTableProps, 'aria-la
|
|
|
163
163
|
* @default "mrl-smart-table"
|
|
164
164
|
*/
|
|
165
165
|
dataQaPrefix?: string;
|
|
166
|
+
/**
|
|
167
|
+
* Text to be displayed when there are no rows in the table.
|
|
168
|
+
* Will be ignored if `emptyState` is provided.
|
|
169
|
+
*
|
|
170
|
+
* @default "There's no data available to be displayed in this table."
|
|
171
|
+
*/
|
|
172
|
+
emptyStateText?: string;
|
|
166
173
|
/**
|
|
167
174
|
* Provides content to display when there are no rows in the table.
|
|
168
175
|
*
|