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