update doc (#8386)

This commit is contained in:
Eugenio Romano
2023-03-17 16:21:38 +01:00
committed by GitHub
parent 1b2575b2db
commit 96a04588b3
80 changed files with 8108 additions and 436 deletions

7608
tools/doc/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -38,13 +38,13 @@ var PropInfo = /** @class */ (function () {
}
}
if (!_this.docText && !_this.isDeprecated) {
_this.errorMessages.push("Warning: Input \"".concat(sourceData.name, "\" has no doc text."));
_this.errorMessages.push("Error: Input \"".concat(sourceData.name, "\" has no doc text."));
}
}
if (dec.name === 'Output') {
_this.isOutput = true;
if (!_this.docText && !_this.isDeprecated) {
_this.errorMessages.push("Warning: Output \"".concat(sourceData.name, "\" has no doc text."));
_this.errorMessages.push("Error: Output \"".concat(sourceData.name, "\" has no doc text."));
}
}
});

View File

@@ -55,7 +55,7 @@ export class PropInfo {
}
if (!this.docText && !this.isDeprecated) {
this.errorMessages.push(`Warning: Input "${sourceData.name}" has no doc text.`);
this.errorMessages.push(`Error: Input "${sourceData.name}" has no doc text.`);
}
}
@@ -63,7 +63,7 @@ export class PropInfo {
this.isOutput = true;
if (!this.docText && !this.isDeprecated) {
this.errorMessages.push(`Warning: Output "${sourceData.name}" has no doc text.`);
this.errorMessages.push(`Error: Output "${sourceData.name}" has no doc text.`);
}
}
});