@mintjamsinc/ichigojs 0.1.13 → 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.
- package/dist/ichigo.esm.js +61 -106
- 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 +61 -106
- 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 +0 -8
- package/dist/types/ichigo/directives/VDirectiveManager.d.ts +0 -5
- package/package.json +1 -1
@@ -70,12 +70,4 @@ export declare class VComponentDirective implements VDirective {
|
|
70
70
|
* @inheritdoc
|
71
71
|
*/
|
72
72
|
destroy(): void;
|
73
|
-
/**
|
74
|
-
* Renders the component.
|
75
|
-
*/
|
76
|
-
private renderComponent;
|
77
|
-
/**
|
78
|
-
* Cleans up the component.
|
79
|
-
*/
|
80
|
-
private cleanupComponent;
|
81
73
|
}
|
@@ -37,11 +37,6 @@ export declare class VDirectiveManager {
|
|
37
37
|
* If no such directive exists, this returns undefined.
|
38
38
|
*/
|
39
39
|
get keyDirective(): VBindDirective | undefined;
|
40
|
-
/**
|
41
|
-
* Gets a record of VBindDirectives for options specific to certain directives.
|
42
|
-
* The keys are directive names (e.g., 'options', 'options.intersection').
|
43
|
-
*/
|
44
|
-
get optionsDirectives(): Record<string, VBindDirective | undefined>;
|
45
40
|
/**
|
46
41
|
* Gets the VBindDirective for options specific to the given directive name.
|
47
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.
|
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",
|