File tree Expand file tree Collapse file tree 2 files changed +0
-11
lines changed Expand file tree Collapse file tree 2 files changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -25,16 +25,6 @@ export default class SgdsElement extends LitElement {
25
25
26
26
return event ;
27
27
}
28
- relayNativeEvent ( event : Event , eventOptions ?: EventInit ) {
29
- event . stopImmediatePropagation ( ) ;
30
-
31
- this . dispatchEvent (
32
- new ( event . constructor as typeof Event ) ( event . type , {
33
- ...event ,
34
- ...eventOptions
35
- } )
36
- ) ;
37
- }
38
28
static define ( name : string , elementConstructor = this , options : ElementDefinitionOptions = { } ) {
39
29
const currentlyRegisteredConstructor = customElements . get ( name ) as CustomElementConstructor | typeof SgdsElement ;
40
30
Original file line number Diff line number Diff line change @@ -148,7 +148,6 @@ export class SgdsSelect extends SelectElement {
148
148
?required=${ this . required }
149
149
.value=${ this . displayValue }
150
150
@blur=${ this . _handleInputBlur }
151
- @change=${ ( ) => console . log ( "native change" ) }
152
151
@focus=${ this . _handleFocus }
153
152
aria-describedby=${ ifDefined ( this . invalid && this . hasFeedback ? `${ this . _controlId } -invalid` : undefined ) }
154
153
aria-labelledby="${ this . _labelId } ${ this . _controlId } Help ${ this . invalid && this . hasFeedback
You can’t perform that action at this time.
0 commit comments