You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: example/src/Props.tsx
+27-6Lines changed: 27 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -121,6 +121,17 @@ const data: PropData[] = [
121
121
description:
122
122
"The height of the table in pixels. If no height is specified, this will try to fill the height of the parent. If the parent node does not have a height specified, a height for the table will be calculated based on the default header height and the rowHeight or the defaultRowHeight (37)."
123
123
},
124
+
{
125
+
prop: "minTableHeight",
126
+
type: "number",
127
+
description: "The min height of the table in pixels."
128
+
},
129
+
{
130
+
prop: "maxTableHeight",
131
+
type: "number",
132
+
description:
133
+
"The max height of the table in pixels. If tableHeight is specified, this is ignored."
134
+
},
124
135
{
125
136
prop: "tableWidth",
126
137
type: "number",
@@ -179,7 +190,7 @@ const data: PropData[] = [
179
190
},
180
191
{
181
192
prop: "headerClassname",
182
-
type: "object",
193
+
type: "string",
183
194
description: "Add custom css className to the table header"
184
195
},
185
196
{
@@ -212,9 +223,19 @@ const data: PropData[] = [
212
223
},
213
224
{
214
225
prop: "footerComponent",
215
-
type: "() => Element",
226
+
type: "(props: FooterProps) => Element",
216
227
description: "You can provide an optional footer"
217
228
},
229
+
{
230
+
prop: "footerStyle",
231
+
type: "object",
232
+
description: "Add custom css styles to the table footer"
233
+
},
234
+
{
235
+
prop: "footerClassname",
236
+
type: "string",
237
+
description: "Add custom css className to the table footer"
0 commit comments