@object-ui/plugin-dashboard 2.0.0 → 3.0.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 +5 -5
- package/CHANGELOG.md +20 -0
- package/dist/index.js +2122 -2042
- package/dist/index.umd.cjs +4 -4
- package/dist/src/DashboardGridLayout.d.ts +2 -0
- package/dist/src/DashboardGridLayout.d.ts.map +1 -1
- package/dist/src/DashboardRenderer.d.ts +6 -3
- package/dist/src/DashboardRenderer.d.ts.map +1 -1
- package/dist/src/DashboardRenderer.stories.d.ts +24 -0
- package/dist/src/DashboardRenderer.stories.d.ts.map +1 -0
- package/dist/src/index.d.ts +1 -5
- package/dist/src/index.d.ts.map +1 -1
- package/package.json +10 -10
- package/src/DashboardGridLayout.tsx +59 -6
- package/src/DashboardRenderer.stories.tsx +173 -0
- package/src/DashboardRenderer.tsx +161 -99
- package/src/__tests__/DashboardRenderer.autoRefresh.test.tsx +124 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @object-ui/plugin-dashboard@
|
|
2
|
+
> @object-ui/plugin-dashboard@3.0.0 build /home/runner/work/objectui/objectui/packages/plugin-dashboard
|
|
3
3
|
> vite build
|
|
4
4
|
|
|
5
5
|
[36mvite v7.3.1 [32mbuilding client environment for production...[36m[39m
|
|
@@ -10,11 +10,11 @@ rendering chunks...
|
|
|
10
10
|
[36m[vite:dts][32m Start generate declaration files...[39m
|
|
11
11
|
computing gzip size...
|
|
12
12
|
[2mdist/[22m[35mindex.css [39m[1m[2m 2.40 kB[22m[1m[22m[2m │ gzip: 0.58 kB[22m
|
|
13
|
-
[2mdist/[22m[36mindex.js [39m[1m[
|
|
14
|
-
[32m[36m[vite:dts][32m Declaration files built in
|
|
13
|
+
[2mdist/[22m[36mindex.js [39m[1m[2m144.36 kB[22m[1m[22m[2m │ gzip: 37.93 kB[22m
|
|
14
|
+
[32m[36m[vite:dts][32m Declaration files built in 22376ms.
|
|
15
15
|
[39m
|
|
16
16
|
[33mNo name was provided for external module "lucide-react" in "output.globals" – guessing "LucideIcons".[39m
|
|
17
17
|
[33mNo name was provided for external module "clsx" in "output.globals" – guessing "clsx".[39m
|
|
18
18
|
[2mdist/[22m[35mindex.css [39m[1m[2m 2.40 kB[22m[1m[22m[2m │ gzip: 0.58 kB[22m
|
|
19
|
-
[2mdist/[22m[36mindex.umd.cjs [39m[1m[
|
|
20
|
-
[32m✓ built in
|
|
19
|
+
[2mdist/[22m[36mindex.umd.cjs [39m[1m[2m91.71 kB[22m[1m[22m[2m │ gzip: 30.06 kB[22m
|
|
20
|
+
[32m✓ built in 27.74s[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @object-ui/plugin-dashboard
|
|
2
2
|
|
|
3
|
+
## 3.0.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 87979c3: Upgrade to @objectstack v3.0.0 and console bundle optimization
|
|
8
|
+
- Upgraded all @objectstack/\* packages from ^2.0.7 to ^3.0.0
|
|
9
|
+
- Breaking change migrations: Hub → Cloud namespace, definePlugin removed, PaginatedResult.value → .records, PaginatedResult.count → .total, client.meta.getObject() → client.meta.getItem()
|
|
10
|
+
- Console bundle optimization: split monolithic 3.7 MB chunk into 17 granular cacheable chunks (95% main entry reduction)
|
|
11
|
+
- Added gzip + brotli pre-compression via vite-plugin-compression2
|
|
12
|
+
- Lazy MSW loading for build:server (~150 KB gzip saved)
|
|
13
|
+
- Added bundle analysis with rollup-plugin-visualizer
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [87979c3]
|
|
18
|
+
- @object-ui/types@3.0.0
|
|
19
|
+
- @object-ui/core@3.0.0
|
|
20
|
+
- @object-ui/react@3.0.0
|
|
21
|
+
- @object-ui/components@3.0.0
|
|
22
|
+
|
|
3
23
|
## 2.0.0
|
|
4
24
|
|
|
5
25
|
### Major Changes
|