@thesage/charts 0.1.2 → 0.2.0
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/.turbo/turbo-build.log +4 -4
- package/CHANGELOG.md +30 -0
- package/package.json +2 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @thesage/charts@0.
|
|
2
|
+
> @thesage/charts@0.2.0 build /home/runner/work/ecosystem/ecosystem/packages/charts
|
|
3
3
|
> tsup src/index.ts --format cjs,esm --dts
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
[34mESM[39m Build start
|
|
13
13
|
[32mESM[39m [1mdist/index.mjs [22m[32m4.07 KB[39m
|
|
14
14
|
[32mESM[39m [1mdist/index.mjs.map [22m[32m17.02 KB[39m
|
|
15
|
-
[32mESM[39m ⚡️ Build success in
|
|
15
|
+
[32mESM[39m ⚡️ Build success in 65ms
|
|
16
16
|
[32mCJS[39m [1mdist/index.js [22m[32m4.97 KB[39m
|
|
17
17
|
[32mCJS[39m [1mdist/index.js.map [22m[32m17.17 KB[39m
|
|
18
|
-
[32mCJS[39m ⚡️ Build success in
|
|
18
|
+
[32mCJS[39m ⚡️ Build success in 67ms
|
|
19
19
|
[34mDTS[39m Build start
|
|
20
|
-
[32mDTS[39m ⚡️ Build success in
|
|
20
|
+
[32mDTS[39m ⚡️ Build success in 6162ms
|
|
21
21
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m2.31 KB[39m
|
|
22
22
|
[32mDTS[39m [1mdist/index.d.mts [22m[32m2.31 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# @thesage/charts
|
|
2
2
|
|
|
3
|
+
## 0.2.0 - 2026-02-06
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 39a3bcd: # Sage Design Engine v1.0.0-rc.1: Enterprise Readiness
|
|
8
|
+
|
|
9
|
+
## 🚀 React 19 Migration
|
|
10
|
+
|
|
11
|
+
- **Unified Architecture:** All 11 packages and applications now run on React 19.2.1.
|
|
12
|
+
- **Modern Patterns:** 146 instances of `forwardRef` migrated to React 19's `ref` as a prop.
|
|
13
|
+
- **Dependencies:** All 26 Radix UI primitives updated to latest versions.
|
|
14
|
+
|
|
15
|
+
## ⚡️ Performance & Optimization
|
|
16
|
+
|
|
17
|
+
- **WebGL Vendoring:** Replaced 80KB `ogl` dependency with a 1.1KB custom WebGL implementation (93% reduction).
|
|
18
|
+
- **Subpath Exports:** Created granular entry points for `@thesage/ui/forms`, `/dates`, `/tables`, `/dnd`, and `/webgl`.
|
|
19
|
+
- **Bundle Size:** Core bundle optimized to 146KB (brotli) with strict CI enforcement.
|
|
20
|
+
|
|
21
|
+
## 🛡️ Enterprise Grade
|
|
22
|
+
|
|
23
|
+
- **Test Suite:** Added Vitest + Testing Library with 63 tests across critical components.
|
|
24
|
+
- **Security:** 0 vulnerabilities in `@thesage/ui`.
|
|
25
|
+
- **Accessibility:** Critical fixes applied to Breadcrumbs, Customizer, and Code blocks.
|
|
26
|
+
|
|
27
|
+
## 💅 Brand & Documentation
|
|
28
|
+
|
|
29
|
+
- **Rebrand:** "Sage UI" is now **Sage Design Engine**.
|
|
30
|
+
- **Theme:** Default theme renamed to **Terra**.
|
|
31
|
+
- **Documentation:** Complete audit of `thesage.dev` with new CLI guides, troubleshooting, and integration docs.
|
|
32
|
+
|
|
3
33
|
## 0.1.2 - 2026-01-28
|
|
4
34
|
|
|
5
35
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thesage/charts",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"description": "Chart components for Sage
|
|
7
|
+
"description": "Chart components for Sage Design Engine",
|
|
8
8
|
"main": "./dist/index.js",
|
|
9
9
|
"module": "./dist/index.mjs",
|
|
10
10
|
"types": "./dist/index.d.ts",
|