@forgecharts/sdk 1.5.49 → 1.5.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/compatibility.d.ts.map +1 -1
- package/dist/index.js +8 -1
- package/dist/index.js.map +1 -1
- package/dist/internal.js +8 -1
- package/dist/internal.js.map +1 -1
- package/dist/react/index.js +1 -1
- package/dist/react/internal.js +1 -1
- package/package.json +1 -1
package/dist/internal.js
CHANGED
|
@@ -25526,7 +25526,7 @@ var demonstrationTool = {
|
|
|
25526
25526
|
};
|
|
25527
25527
|
|
|
25528
25528
|
// src/version.ts
|
|
25529
|
-
var FORGECHARTS_VERSION = "1.5.
|
|
25529
|
+
var FORGECHARTS_VERSION = "1.5.51" ;
|
|
25530
25530
|
|
|
25531
25531
|
// src/compatibility.ts
|
|
25532
25532
|
var MIN_KIT_API = 1;
|
|
@@ -25573,6 +25573,13 @@ function checkKitCompatibility(kit) {
|
|
|
25573
25573
|
message: `Compatible, but the bundled SDK (${sdkVersion}) and the Kit (${kitVersion}) are different releases. Chart-side fixes reach the app only when @forgecharts/sdk is updated.`
|
|
25574
25574
|
};
|
|
25575
25575
|
}
|
|
25576
|
+
if (!kitVersion) {
|
|
25577
|
+
return {
|
|
25578
|
+
...base,
|
|
25579
|
+
level: "ok",
|
|
25580
|
+
message: `Compatible (API v${kitApiVersion}), but the Kit does not report a release version, so release drift cannot be shown. Set KIT_VERSION in the Kit runtime environment.`
|
|
25581
|
+
};
|
|
25582
|
+
}
|
|
25576
25583
|
return { ...base, level: "ok", message: `SDK ${sdkVersion} matches the Kit.` };
|
|
25577
25584
|
}
|
|
25578
25585
|
|