Run "yarn build:docs"

This commit is contained in:
Eric Liu 2022-06-05 12:27:52 -07:00
commit 94472817a8
3 changed files with 48 additions and 10 deletions

View file

@ -11843,9 +11843,33 @@
"filePath": "src/DataTable/TableHeader.svelte",
"props": [
{
"name": "disableSorting",
"name": "sortable",
"kind": "let",
"description": "Set to `true` to disable sorting on this specific cell",
"description": "Set to `true` for the sortable variant",
"type": "boolean",
"value": "false",
"isFunction": false,
"isFunctionDeclaration": false,
"isRequired": false,
"constant": false,
"reactive": false
},
{
"name": "sortDirection",
"kind": "let",
"description": "Specify the sort direction",
"type": "\"none\" | \"ascending\" | \"descending\"",
"value": "\"none\"",
"isFunction": false,
"isFunctionDeclaration": false,
"isRequired": false,
"constant": false,
"reactive": false
},
{
"name": "active",
"kind": "let",
"description": "Set to `true` if the column sorting",
"type": "boolean",
"value": "false",
"isFunction": false,