@mintjamsinc/ichigojs 0.1.13 → 0.1.14
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 +64 -77
- 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 +64 -77
- 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/directives/VComponentDirective.d.ts +1 -8
- package/dist/types/ichigo/directives/VDirectiveManager.d.ts +4 -3
- package/package.json +1 -1
@@ -66,16 +66,9 @@ export declare class VComponentDirective implements VDirective {
|
|
66
66
|
* @inheritdoc
|
67
67
|
*/
|
68
68
|
get onUnmounted(): (() => void) | undefined;
|
69
|
+
cloneNode(): HTMLElement;
|
69
70
|
/**
|
70
71
|
* @inheritdoc
|
71
72
|
*/
|
72
73
|
destroy(): void;
|
73
|
-
/**
|
74
|
-
* Renders the component.
|
75
|
-
*/
|
76
|
-
private renderComponent;
|
77
|
-
/**
|
78
|
-
* Cleans up the component.
|
79
|
-
*/
|
80
|
-
private cleanupComponent;
|
81
74
|
}
|
@@ -3,6 +3,7 @@ import { VNode } from "../VNode";
|
|
3
3
|
import { VBindingsPreparer } from "../VBindingsPreparer";
|
4
4
|
import { VDOMUpdater } from "../VDOMUpdater";
|
5
5
|
import { VBindDirective } from "./VBindDirective";
|
6
|
+
import { VComponentDirective } from "./VComponentDirective";
|
6
7
|
/**
|
7
8
|
* Manages directives associated with a virtual node (VNode).
|
8
9
|
* This class is responsible for parsing, storing, and managing the lifecycle of directives.
|
@@ -38,10 +39,10 @@ export declare class VDirectiveManager {
|
|
38
39
|
*/
|
39
40
|
get keyDirective(): VBindDirective | undefined;
|
40
41
|
/**
|
41
|
-
* Gets
|
42
|
-
*
|
42
|
+
* Gets the v-component directive associated with this node, if any.
|
43
|
+
* This may be undefined if there is no v-component directive.
|
43
44
|
*/
|
44
|
-
get
|
45
|
+
get componentDirective(): VComponentDirective | undefined;
|
45
46
|
/**
|
46
47
|
* Gets the VBindDirective for options specific to the given directive name.
|
47
48
|
* Searches in order: `:options.{directive}` -> `:options`
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@mintjamsinc/ichigojs",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.14",
|
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",
|