@mintjamsinc/ichigojs 0.1.49 → 0.1.51
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.cjs +87 -10
- package/dist/ichigo.cjs.map +1 -1
- package/dist/ichigo.esm.js +87 -10
- package/dist/ichigo.esm.js.map +1 -1
- package/dist/ichigo.esm.min.js +1 -1
- package/dist/ichigo.min.cjs +1 -1
- package/dist/ichigo.umd.js +87 -10
- package/dist/ichigo.umd.js.map +1 -1
- package/dist/ichigo.umd.min.js +1 -1
- package/dist/types/ichigo/VBindings.d.ts +11 -0
- package/package.json +1 -1
|
@@ -70,4 +70,15 @@ export declare class VBindings {
|
|
|
70
70
|
* @param key The identifier to mark as changed.
|
|
71
71
|
*/
|
|
72
72
|
markChanged(key: string): void;
|
|
73
|
+
/**
|
|
74
|
+
* Resolves a local path alias for the given identifier by walking up the bindings chain.
|
|
75
|
+
* Returns the resolved source path, or undefined if no alias is found.
|
|
76
|
+
*/
|
|
77
|
+
resolveAlias(identifier: string): string | undefined;
|
|
78
|
+
/**
|
|
79
|
+
* Checks whether a reactive change path matches a given identifier, taking local path
|
|
80
|
+
* aliases into account. Falls back to ReactiveProxy.doesChangeMatchIdentifier for
|
|
81
|
+
* global aliases (computed properties etc.).
|
|
82
|
+
*/
|
|
83
|
+
doesChangeMatchIdentifier(changePath: string, identifier: string): boolean;
|
|
73
84
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mintjamsinc/ichigojs",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.51",
|
|
4
4
|
"description": "ichigo.js - Simple and intuitive reactive framework. Lightweight, fast, and user-friendly virtual DOM library",
|
|
5
5
|
"main": "./dist/ichigo.cjs",
|
|
6
6
|
"module": "./dist/ichigo.esm.js",
|