File tree Expand file tree Collapse file tree 3 files changed +0
-12
lines changed Expand file tree Collapse file tree 3 files changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -19,11 +19,6 @@ export class Avatar extends Component<avatar.Api> {
19
19
static styles = unsafeCSS ( style )
20
20
21
21
override render ( ) {
22
- console . log ( "rendering" , {
23
- getRootProps : this . api . getRootProps ( ) ,
24
- getFallbackProps : this . api . getFallbackProps ( ) ,
25
- getImageProps : this . api . getImageProps ( ) ,
26
- } )
27
22
return html `< div ${ spread ( this . api . getRootProps ( ) ) } class ="avatar ">
28
23
< span ${ spread ( this . api . getFallbackProps ( ) ) } class ="avatar-fallback "> PA</ span >
29
24
< img
Original file line number Diff line number Diff line change @@ -21,12 +21,6 @@ export class Checkbox extends Component<checkbox.Api> {
21
21
static styles = unsafeCSS ( style )
22
22
23
23
override render ( ) {
24
- console . log ( "rendering" , {
25
- getRootProps : this . api . getRootProps ( ) ,
26
- getControlProps : this . api . getControlProps ( ) ,
27
- getLabelProps : this . api . getLabelProps ( ) ,
28
- getHiddenInputProps : this . api . getHiddenInputProps ( ) ,
29
- } )
30
24
return html `< label ${ spread ( this . api . getRootProps ( ) ) } class ="checkbox ">
31
25
< div ${ spread ( this . api . getControlProps ( ) ) } class ="checkbox-control "> </ div >
32
26
< span ${ spread ( this . api . getLabelProps ( ) ) } class ="checkbox-label "> Checkbox Label</ span >
Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ export abstract class Component<Api> extends LitElement implements ComponentInte
26
26
27
27
this . machine . subscribe ( ( service ) => {
28
28
this . api = this . initApi ( )
29
- console . log ( "request update" , service )
30
29
this . requestUpdate ( )
31
30
} )
32
31
this . machine . start ( )
You can’t perform that action at this time.
0 commit comments