diff --git a/nojs/SKILL.md b/nojs/SKILL.md index a0fc824..6109095 100644 --- a/nojs/SKILL.md +++ b/nojs/SKILL.md @@ -573,7 +573,7 @@ NoJS.store // Access global stores NoJS.notify() // Flush UI updates after external mutation NoJS.router // push(), replace(), back(), forward() NoJS.locale // Get/set current locale -NoJS.version // "1.15.0" +NoJS.version // current framework version string NoJS.CANCEL // Interceptor sentinel: cancel request NoJS.RESPOND // Interceptor sentinel: short-circuit with response NoJS.REPLACE // Interceptor sentinel: replace response data @@ -701,7 +701,7 @@ All paths relative to `nojs/references/`: | Property | Value | |----------|-------| -| **Version** | 1.15.0 | +| **Version** | 1.20.0 | | **Website** | | | **CDN (core)** | `https://cdn.no-js.dev/` | | **CDN (elements)** | `https://cdn-elements.no-js.dev/` | diff --git a/nojs/references/core/api.md b/nojs/references/core/api.md index abc0f69..fbd5850 100644 --- a/nojs/references/core/api.md +++ b/nojs/references/core/api.md @@ -620,7 +620,7 @@ Setting the base URL after initialization triggers re-evaluation of any active f Read-only string with the current framework version. ```javascript -console.log(NoJS.version); // "1.14.1" +console.log(NoJS.version); // current framework version string ``` --- diff --git a/nojs/references/devtools.md b/nojs/references/devtools.md index b72d099..c6b29ab 100644 --- a/nojs/references/devtools.md +++ b/nojs/references/devtools.md @@ -90,7 +90,7 @@ dt.stores // Object — snapshot of all stores { name: { ...data } } dt.config // Object — shallow copy of current framework config dt.refs // Object — copy of all ref-registered elements dt.router // Object — live router instance (or null) -dt.version // String — framework version (e.g., "1.14.1") +dt.version // String — current framework version dt.plugins // Map — copy of installed plugins (name -> { plugin, options }) dt.globals // Object — copy of plugin globals ```