Skip to content

Commit 4bcb8ac

Browse files
committed
Generating static files
1 parent a17cc98 commit 4bcb8ac

2 files changed

Lines changed: 48 additions & 0 deletions

File tree

static/arguments.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6118,6 +6118,18 @@
61186118
"default": "`false`",
61196119
"description": "Whether each `<tr>` additionally gets a DOM `id`, namespaced by the table id to stay unique across tables. Requires `row_id`."
61206120
},
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+
},
61216133
{
61226134
"name": "html_data",
61236135
"type": "Hash",
@@ -6221,6 +6233,18 @@
62216233
"type": "Numeric, String, nil",
62226234
"default": "`nil`",
62236235
"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."
62246248
}
62256249
]
62266250
},

static/info_arch.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20035,6 +20035,18 @@
2003520035
"default": "`false`",
2003620036
"description": "Whether each `<tr>` additionally gets a DOM `id`, namespaced by the table id to stay unique across tables. Requires `row_id`."
2003720037
},
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+
},
2003820050
{
2003920051
"name": "html_data",
2004020052
"type": "Hash",
@@ -20320,6 +20332,18 @@
2032020332
"type": "Numeric, String, nil",
2032120333
"default": "`nil`",
2032220334
"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."
2032320347
}
2032420348
],
2032520349
"slots": [],

0 commit comments

Comments
 (0)