@mintjamsinc/ichigojs 0.1.14 → 0.1.15

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.
@@ -66,7 +66,6 @@ export declare class VComponentDirective implements VDirective {
66
66
  * @inheritdoc
67
67
  */
68
68
  get onUnmounted(): (() => void) | undefined;
69
- cloneNode(): HTMLElement;
70
69
  /**
71
70
  * @inheritdoc
72
71
  */
@@ -3,7 +3,6 @@ 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";
7
6
  /**
8
7
  * Manages directives associated with a virtual node (VNode).
9
8
  * This class is responsible for parsing, storing, and managing the lifecycle of directives.
@@ -38,11 +37,6 @@ export declare class VDirectiveManager {
38
37
  * If no such directive exists, this returns undefined.
39
38
  */
40
39
  get keyDirective(): VBindDirective | undefined;
41
- /**
42
- * Gets the v-component directive associated with this node, if any.
43
- * This may be undefined if there is no v-component directive.
44
- */
45
- get componentDirective(): VComponentDirective | undefined;
46
40
  /**
47
41
  * Gets the VBindDirective for options specific to the given directive name.
48
42
  * 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.14",
3
+ "version": "0.1.15",
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",