wave-ui 4.2.2 → 4.2.4

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.
@@ -210,6 +210,24 @@ export interface WaveTableProps {
210
210
  * @see https://antoniandre.github.io/wave-ui/w-table
211
211
  */
212
212
  light?: boolean;
213
+ /**
214
+ * A CSS class (string, array, or object) to apply to the inner `<table>` element.
215
+ * @property {string | Array<any> | Record<string, any>} tableClass
216
+ * @see https://antoniandre.github.io/wave-ui/w-table
217
+ */
218
+ tableClass?: string | Array<any> | Record<string, any>;
219
+ /**
220
+ * A CSS class (string, array, or object) to apply to every `<th>` header cell.
221
+ * @property {string | Array<any> | Record<string, any>} headerClass
222
+ * @see https://antoniandre.github.io/wave-ui/w-table
223
+ */
224
+ headerClass?: string | Array<any> | Record<string, any>;
225
+ /**
226
+ * A CSS class (string, array, or object) to apply to every `<tr>` item row.
227
+ * @property {string | Array<any> | Record<string, any>} itemClass
228
+ * @see https://antoniandre.github.io/wave-ui/w-table
229
+ */
230
+ itemClass?: string | Array<any> | Record<string, any>;
213
231
  /**
214
232
  * TODO: Add Description
215
233
  * @property {any} itemsPerPageOptions