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