File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed
Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " @patternfly/pfe-tooltip " : patch
3+ " @patternfly/pfe-tools " : patch
4+ ---
5+
6+ ` pfe-tools ` : Set typescript compilerOptions ` composite: true `
7+
8+ ` pfe-tooltip ` : Added return type for anonymous function for content in constructor
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ export abstract class BaseTooltip extends LitElement {
2121
2222 #float = new FloatingDOMController ( this , {
2323 arrow : true ,
24- content : ( ) => this . shadowRoot ?. querySelector ( '#tooltip' ) ,
24+ content : ( ) : HTMLElement | undefined | null => this . shadowRoot ?. querySelector ( '#tooltip' ) ,
2525 } ) ;
2626
2727 override connectedCallback ( ) : void {
Original file line number Diff line number Diff line change 88 ],
99 "compilerOptions" : {
1010 "target" : " es2022" ,
11- "composite" : false ,
11+ "composite" : true ,
1212 "allowJs" : false ,
1313 "checkJs" : false ,
1414 "emitDeclarationOnly" : false
You can’t perform that action at this time.
0 commit comments