@mintjamsinc/ichigojs 0.1.12 → 0.1.13
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/ichigo.esm.js +11 -2
- package/dist/ichigo.esm.js.map +1 -1
- package/dist/ichigo.esm.min.js +1 -1
- package/dist/ichigo.esm.min.js.map +1 -1
- package/dist/ichigo.umd.js +11 -2
- package/dist/ichigo.umd.js.map +1 -1
- package/dist/ichigo.umd.min.js +1 -1
- package/dist/ichigo.umd.min.js.map +1 -1
- package/dist/types/ichigo/VApplication.d.ts +4 -0
- package/package.json +1 -1
@@ -45,6 +45,10 @@ export declare class VApplication {
|
|
45
45
|
* @param target The CSS selector string or HTMLElement to mount the application to.
|
46
46
|
*/
|
47
47
|
mount(target: string | HTMLElement): void;
|
48
|
+
/**
|
49
|
+
* Unmounts the application and cleans up resources.
|
50
|
+
*/
|
51
|
+
unmount(): void;
|
48
52
|
/**
|
49
53
|
* Creates a child application instance with the same registries.
|
50
54
|
* @param options The application options for the child.
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@mintjamsinc/ichigojs",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.13",
|
4
4
|
"description": "ichigo.js - Simple and intuitive reactive framework. Lightweight, fast, and user-friendly virtual DOM library",
|
5
5
|
"main": "./dist/ichigo.umd.js",
|
6
6
|
"module": "./dist/ichigo.esm.js",
|