File tree 2 files changed +5
-1
lines changed
src/lib/models/reflections 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 4
4
5
5
- Updated Chinese translations, #2706 .
6
6
- Exported constants no longer render the type and default value if they are the same, #2717 .
7
+ - The HTML output now wraps tag blocks with ` <div> ` tags and includes the tag name in a class name, #2723 .
7
8
8
9
### Bug Fixes
9
10
10
11
- Correctly handle external link resolver link text when referencing an external symbol, #2700 .
11
12
- Big integer literals are now supported as default values, #2721 .
12
13
- Corrected handling of ` @link ` tags present in comments at the start of source files.
14
+ - ` ReflectionSymbolId.pos ` no longer references the position _ before_ any doc comments for a symbol.
15
+ This could cause typedoc-plugin-dt-links to produce links which didn't go to the expected location in a file.
13
16
14
17
### Thanks!
15
18
16
19
- @Corso02
20
+ - @lriggle-strib
17
21
- @XeroAlpha
18
22
19
23
## v0.26.7 (2024-09-09)
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ export class ReflectionSymbolId {
61
61
} else {
62
62
this . qualifiedName = getQualifiedName ( symbol , symbol . name ) ;
63
63
}
64
- this . pos = declaration ?. pos ?? Infinity ;
64
+ this . pos = declaration ?. getStart ( ) ?? Infinity ;
65
65
if ( symbol . flags & ts . SymbolFlags . Transient ) {
66
66
this . transientId = transientIds . get ( symbol ) ?? ++ transientCount ;
67
67
transientIds . set ( symbol , this . transientId ) ;
You can’t perform that action at this time.
0 commit comments