easy-forms-core 1.4.3 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/easy-form.d.ts +5 -0
- package/dist/easy-form.js +29 -29
- package/dist/easy-form.js.map +1 -1
- package/dist/index.d.ts +5 -0
- package/dist/index.js +27 -27
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/easy-form.d.ts
CHANGED
|
@@ -610,6 +610,11 @@ declare class EasyForm extends BrowserHTMLElement {
|
|
|
610
610
|
* Se llama cuando el componente se conecta al DOM
|
|
611
611
|
*/
|
|
612
612
|
connectedCallback(): void;
|
|
613
|
+
/**
|
|
614
|
+
* Se llama cuando el componente se desconecta del DOM
|
|
615
|
+
* Limpia todos los recursos para evitar memory leaks
|
|
616
|
+
*/
|
|
617
|
+
disconnectedCallback(): void;
|
|
613
618
|
/**
|
|
614
619
|
* Se llama cuando un atributo cambia
|
|
615
620
|
*/
|