Skip to content

Commit ab9bb45

Browse files
authored
Merge pull request #236 from gethinode/develop
feat: include table arguments
2 parents cdc53e1 + 94ba317 commit ab9bb45

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
os: [macos-latest, windows-latest, ubuntu-latest]
19-
node-version: [20.x, 22.x]
19+
node-version: [22.x, 24.x]
2020
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2121

2222
runs-on: ${{ matrix.os }}

data/structures/_arguments.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -946,6 +946,13 @@ arguments:
946946
group: partial
947947
options:
948948
min: 1
949+
pagination-select:
950+
type: string
951+
optional: true
952+
comment: >-
953+
Sets the per page options in the dropdown. Must be an array of integers or
954+
arrays in the format [label (string), value (int)]. Requires
955+
`paginate = true`.
949956
pane:
950957
type: select
951958
optional: true
@@ -1137,6 +1144,10 @@ arguments:
11371144
type: string
11381145
optional: true
11391146
comment: Name of the content section.
1147+
searchable:
1148+
type: bool
1149+
optional: true
1150+
comment: Toggle the ability to search the dataset.
11401151
separator:
11411152
type: bool
11421153
optional: true
@@ -1197,6 +1208,10 @@ arguments:
11971208
- date
11981209
- title
11991210
- weight
1211+
sortable:
1212+
type: bool
1213+
optional: true
1214+
comment: Toggle the ability to sort the columns.
12001215
spacer:
12011216
type: bool
12021217
optional: true
@@ -1386,6 +1401,12 @@ arguments:
13861401
default: false
13871402
optional: true
13881403
comment: Flag to enable word wrapping of tab titles.
1404+
wrap:
1405+
type: bool
1406+
optional: true
1407+
comment: >-
1408+
Toggle the last column to wrap to a new row on smaller devices. This
1409+
setting is not compatible with data tables.
13891410
wrapper:
13901411
type: string
13911412
optional: true

0 commit comments

Comments
 (0)