We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5060fe2 commit e4fbb1cCopy full SHA for e4fbb1c
CHANGELOG.md
@@ -1,5 +1,9 @@
1
# Unreleased
2
3
+### Bug Fixes
4
+
5
+- The private member visibility option will now be respected in generated sites, #1992.
6
7
## v0.23.6 (2022-07-08)
8
9
### Features
src/lib/output/themes/default/DefaultTheme.tsx
@@ -276,6 +276,10 @@ export class DefaultTheme extends Theme {
276
if (reflection.flags.isProtected) {
277
classes.push("tsd-is-protected");
278
}
279
+ } else if (key === "private") {
280
+ if (reflection.flags.isPrivate) {
281
+ classes.push("tsd-is-private");
282
+ }
283
} else if (key === "external") {
284
if (reflection.flags.isExternal) {
285
classes.push("tsd-is-external");
0 commit comments