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: static/arguments.json
+24Lines changed: 24 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -6118,6 +6118,18 @@
6118
6118
"default": "`false`",
6119
6119
"description": "Whether each `<tr>` additionally gets a DOM `id`, namespaced by the table id to stay unique across tables. Requires `row_id`."
6120
6120
},
6121
+
{
6122
+
"name": "row_classes",
6123
+
"type": "Proc, nil",
6124
+
"default": "`nil`",
6125
+
"description": "Optional `->(row)` returning extra CSS classes for the row's `<tr>`."
6126
+
},
6127
+
{
6128
+
"name": "row_data",
6129
+
"type": "Proc, nil",
6130
+
"default": "`nil`",
6131
+
"description": "Optional `->(row)` returning a Hash of data attributes for the row's `<tr>`."
6132
+
},
6121
6133
{
6122
6134
"name": "html_data",
6123
6135
"type": "Hash",
@@ -6221,6 +6233,18 @@
6221
6233
"type": "Numeric, String, nil",
6222
6234
"default": "`nil`",
6223
6235
"description": "Maximum width"
6236
+
},
6237
+
{
6238
+
"name": "cell_classes",
6239
+
"type": "Proc, nil",
6240
+
"default": "`nil`",
6241
+
"description": "Optional `->(row)` returning extra CSS classes for this column's cell on the given row. Callable rather than static so callers can vary a cell's classes per row."
6242
+
},
6243
+
{
6244
+
"name": "cell_data",
6245
+
"type": "Proc, nil",
6246
+
"default": "`nil`",
6247
+
"description": "Optional `->(row)` returning a Hash of data attributes for this column's cell on the given row."
Copy file name to clipboardExpand all lines: static/info_arch.json
+24Lines changed: 24 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -20035,6 +20035,18 @@
20035
20035
"default": "`false`",
20036
20036
"description": "Whether each `<tr>` additionally gets a DOM `id`, namespaced by the table id to stay unique across tables. Requires `row_id`."
20037
20037
},
20038
+
{
20039
+
"name": "row_classes",
20040
+
"type": "Proc, nil",
20041
+
"default": "`nil`",
20042
+
"description": "Optional `->(row)` returning extra CSS classes for the row's `<tr>`."
20043
+
},
20044
+
{
20045
+
"name": "row_data",
20046
+
"type": "Proc, nil",
20047
+
"default": "`nil`",
20048
+
"description": "Optional `->(row)` returning a Hash of data attributes for the row's `<tr>`."
20049
+
},
20038
20050
{
20039
20051
"name": "html_data",
20040
20052
"type": "Hash",
@@ -20320,6 +20332,18 @@
20320
20332
"type": "Numeric, String, nil",
20321
20333
"default": "`nil`",
20322
20334
"description": "Maximum width"
20335
+
},
20336
+
{
20337
+
"name": "cell_classes",
20338
+
"type": "Proc, nil",
20339
+
"default": "`nil`",
20340
+
"description": "Optional `->(row)` returning extra CSS classes for this column's cell on the given row. Callable rather than static so callers can vary a cell's classes per row."
20341
+
},
20342
+
{
20343
+
"name": "cell_data",
20344
+
"type": "Proc, nil",
20345
+
"default": "`nil`",
20346
+
"description": "Optional `->(row)` returning a Hash of data attributes for this column's cell on the given row."
0 commit comments