A method that is invoked when an internal
property is assigned. The behavior is identical to
attributeChangedCallback
. It does trigger an update each time it is
invoked.
The callback is called right AFTER the property is assigned.
a property name (either string or symbolic).
a value of the property that was before the update started.
a new value to set to the property.
A method that is invoked when a regular
property is assigned. The behavior is identical to
attributeChangedCallback
. It does not trigger a re-rendering if the
oldValue
is equal to newValue
(by the strict equality check ===
).
The callback is called right AFTER the property is assigned.
a property name (either string or symbolic).
a value of the property that was before the update started.
a new value to set to the property.
A method that is invoked each time any of the component properties (either attribute, regular or internal) causes re-rendering. The method work synchronously; returned result of its work will be handled by a renderer function.
If you do not define this method, rendering won't ever happen on your element.
A method that is invoked each time the rendering is over and the component
acquires the new state. This method is not called during the initial render
(connectedCallback
is invoked instead).
Generated using TypeDoc
This interface is only for documentation purposes. It cannot be implemented since all methods have symbolic names.