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.
2 parents a98f81a + 5ccb6c4 commit 1021514Copy full SHA for 1021514
src/lib/updating-element.ts
@@ -396,6 +396,13 @@ export abstract class UpdatingElement extends HTMLElement {
396
}
397
398
399
+ /**
400
+ * Allows for `super.disconnectedCallback()` in extensions while
401
+ * reserving the possibility of making non-breaking feature additions
402
+ * when disconnecting at some point in the future.
403
+ */
404
+ disconnectedCallback() {}
405
+
406
/**
407
* Synchronizes property values when attributes change.
408
*/
@@ -610,4 +617,4 @@ export abstract class UpdatingElement extends HTMLElement {
610
617
* * @param _changedProperties Map of changed properties with old values
611
618
612
619
protected firstUpdated(_changedProperties: PropertyValues) {}
613
-}
620
+}
0 commit comments