@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.
@@ -80,7 +80,7 @@ export declare const colorPictoStoryData: {
80
80
  export declare const animateStoryData: {
81
81
  args: {
82
82
  delay: number;
83
- state: "stop" | "play";
83
+ state: "play" | "stop";
84
84
  };
85
85
  argTypes: {
86
86
  delay: {
@@ -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
  *