@object-ui/plugin-dashboard 4.0.4 → 4.0.6

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +44 -0
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,49 @@
1
1
  # @object-ui/plugin-dashboard
2
2
 
3
+ ## 4.0.6
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [925051d]
8
+ - Updated dependencies [1b6dc64]
9
+ - @object-ui/components@4.0.6
10
+ - @object-ui/types@4.0.6
11
+ - @object-ui/core@4.0.6
12
+ - @object-ui/i18n@4.0.6
13
+ - @object-ui/react@4.0.6
14
+
15
+ ## 4.0.5
16
+
17
+ ### Patch Changes
18
+
19
+ - 1dc6061: fix(build): inline dynamic imports in library outputs
20
+
21
+ Library `vite build --lib` outputs were emitting separate code-split chunks
22
+ (`rolldown-runtime-*.js`, `LookupField-*.js`, etc.) when source files used
23
+ `React.lazy()` / dynamic `import()`. When consumer apps re-bundled these
24
+ multi-file dists, the library's per-chunk rolldown-runtime collided with the
25
+ consumer's own runtime, causing "TypeError: i is not a function" at runtime
26
+ when lazy components tried to register themselves (e.g. TextField in
27
+ `@object-ui/fields` after 4.0.4).
28
+
29
+ Adding `output.inlineDynamicImports: true` to all `@object-ui/*` library vite
30
+ configs forces a single `dist/index.js` per package, which lets consumer
31
+ bundlers handle the library as an opaque ESM module without identifier
32
+ mismatches across chunks.
33
+
34
+ Affected packages: components, fields, layout, plugin-aggrid, plugin-ai,
35
+ plugin-calendar, plugin-charts, plugin-chatbot, plugin-dashboard,
36
+ plugin-designer, plugin-detail, plugin-editor, plugin-form, plugin-gantt,
37
+ plugin-grid, plugin-kanban, plugin-list, plugin-map, plugin-markdown,
38
+ plugin-report, plugin-timeline, plugin-view, plugin-workflow.
39
+
40
+ - Updated dependencies [1dc6061]
41
+ - @object-ui/components@4.0.5
42
+ - @object-ui/types@4.0.5
43
+ - @object-ui/core@4.0.5
44
+ - @object-ui/i18n@4.0.5
45
+ - @object-ui/react@4.0.5
46
+
3
47
  ## 4.0.4
4
48
 
5
49
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@object-ui/plugin-dashboard",
3
- "version": "4.0.4",
3
+ "version": "4.0.6",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "Dashboard plugin for Object UI",
@@ -20,11 +20,11 @@
20
20
  "react": "19.2.5",
21
21
  "react-dom": "19.2.5",
22
22
  "tailwind-merge": "^3.5.0",
23
- "@object-ui/components": "4.0.4",
24
- "@object-ui/core": "4.0.4",
25
- "@object-ui/i18n": "4.0.4",
26
- "@object-ui/react": "4.0.4",
27
- "@object-ui/types": "4.0.4"
23
+ "@object-ui/components": "4.0.6",
24
+ "@object-ui/core": "4.0.6",
25
+ "@object-ui/i18n": "4.0.6",
26
+ "@object-ui/react": "4.0.6",
27
+ "@object-ui/types": "4.0.6"
28
28
  },
29
29
  "peerDependencies": {
30
30
  "react": "^18.0.0 || ^19.0.0",