Skip to content

Commit

Permalink
chore: missing typedocs
Browse files Browse the repository at this point in the history
  • Loading branch information
SiTaggart committed Oct 3, 2023
1 parent 02a036d commit 822d30b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
24 changes: 12 additions & 12 deletions packages/paste-core/components/data-grid/type-docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -3276,18 +3276,6 @@
}
},
"DataGridRow": {
"role": {
"type": "string",
"defaultValue": null,
"required": true,
"externalProp": false
},
"striped": {
"type": "boolean",
"defaultValue": null,
"required": true,
"externalProp": false
},
"about": {
"type": "string",
"defaultValue": null,
Expand Down Expand Up @@ -4797,6 +4785,12 @@
"required": false,
"externalProp": true
},
"role": {
"type": "string",
"defaultValue": null,
"required": false,
"externalProp": false
},
"security": {
"type": "string",
"defaultValue": null,
Expand All @@ -4822,6 +4816,12 @@
"required": false,
"externalProp": true
},
"striped": {
"type": "boolean",
"defaultValue": null,
"required": false,
"externalProp": false
},
"suppressContentEditableWarning": {
"type": "boolean",
"defaultValue": null,
Expand Down
2 changes: 1 addition & 1 deletion tools/build/generate-type-docs/check-uncommited-type.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ MODIFIED_FILES=$(git status --porcelain | grep "^ M.*type-docs.json$" | awk '{pr

# If there are any modified files, exit with a non-zero status code
if [ -n "$MODIFIED_FILES" ]; then
echo "Error: The following type-docs.json files have been modified but not committed:"
echo "Error: The following type-docs.json files have been modified but not committed, run 'yarn build:typedocs' to update:"
echo "$MODIFIED_FILES"
exit 1
fi
Expand Down

0 comments on commit 822d30b

Please sign in to comment.