@object-ui/plugin-gantt 3.1.5 → 3.3.1
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 +31 -0
- package/README.md +21 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +360 -362
- package/dist/index.umd.cjs +3 -3
- package/dist/packages/plugin-gantt/src/GanttView.d.ts.map +1 -0
- package/dist/packages/plugin-gantt/src/ObjectGantt.d.ts.map +1 -0
- package/dist/packages/plugin-gantt/src/index.d.ts.map +1 -0
- package/package.json +35 -12
- package/.turbo/turbo-build.log +0 -22
- package/dist/src/GanttView.d.ts.map +0 -1
- package/dist/src/ObjectGantt.d.ts.map +0 -1
- package/dist/src/index.d.ts.map +0 -1
- package/src/GanttView.tsx +0 -428
- package/src/ObjectGantt.stories.tsx +0 -112
- package/src/ObjectGantt.test.tsx +0 -88
- package/src/ObjectGantt.tsx +0 -324
- package/src/__tests__/GanttView.test.tsx +0 -69
- package/src/index.test.tsx +0 -25
- package/src/index.tsx +0 -45
- package/tsconfig.json +0 -18
- package/vite.config.ts +0 -53
- package/vitest.config.ts +0 -13
- package/vitest.setup.ts +0 -1
- /package/dist/{src → packages/plugin-gantt/src}/GanttView.d.ts +0 -0
- /package/dist/{src → packages/plugin-gantt/src}/ObjectGantt.d.ts +0 -0
- /package/dist/{src → packages/plugin-gantt/src}/index.d.ts +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# @object-ui/plugin-gantt
|
|
2
2
|
|
|
3
|
+
## 3.3.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [b429568]
|
|
8
|
+
- @object-ui/components@3.3.1
|
|
9
|
+
- @object-ui/fields@3.3.1
|
|
10
|
+
- @object-ui/types@3.3.1
|
|
11
|
+
- @object-ui/core@3.3.1
|
|
12
|
+
- @object-ui/react@3.3.1
|
|
13
|
+
|
|
14
|
+
## 3.3.0
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- @object-ui/types@3.3.0
|
|
19
|
+
- @object-ui/core@3.3.0
|
|
20
|
+
- @object-ui/react@3.3.0
|
|
21
|
+
- @object-ui/components@3.3.0
|
|
22
|
+
- @object-ui/fields@3.3.0
|
|
23
|
+
|
|
24
|
+
## 3.2.0
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- @object-ui/types@3.2.0
|
|
29
|
+
- @object-ui/core@3.2.0
|
|
30
|
+
- @object-ui/react@3.2.0
|
|
31
|
+
- @object-ui/components@3.2.0
|
|
32
|
+
- @object-ui/fields@3.2.0
|
|
33
|
+
|
|
3
34
|
## 3.1.5
|
|
4
35
|
|
|
5
36
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -255,6 +255,26 @@ const gantt: GanttSchema = {
|
|
|
255
255
|
};
|
|
256
256
|
```
|
|
257
257
|
|
|
258
|
+
<!-- release-metadata:v3.3.0 -->
|
|
259
|
+
|
|
260
|
+
## Compatibility
|
|
261
|
+
|
|
262
|
+
- **React:** 18.x or 19.x
|
|
263
|
+
- **Node.js:** ≥ 18
|
|
264
|
+
- **TypeScript:** ≥ 5.0 (strict mode)
|
|
265
|
+
- **`@objectstack/spec`:** ^3.3.0
|
|
266
|
+
- **`@objectstack/client`:** ^3.3.0
|
|
267
|
+
- **Tailwind CSS:** ≥ 3.4 (for packages with UI)
|
|
268
|
+
|
|
269
|
+
## Links
|
|
270
|
+
|
|
271
|
+
- 📚 [Documentation](https://www.objectui.org/docs/plugins/plugin-gantt)
|
|
272
|
+
- 📦 [npm package](https://www.npmjs.com/package/@object-ui/plugin-gantt)
|
|
273
|
+
- 📝 [Changelog](./CHANGELOG.md)
|
|
274
|
+
- 🐛 [Report an issue](https://github.com/objectstack-ai/objectui/issues)
|
|
275
|
+
- 🤝 [Contributing Guide](https://github.com/objectstack-ai/objectui/blob/main/CONTRIBUTING.md)
|
|
276
|
+
- 🗺️ [Roadmap](https://github.com/objectstack-ai/objectui/blob/main/ROADMAP.md)
|
|
277
|
+
|
|
258
278
|
## License
|
|
259
279
|
|
|
260
|
-
MIT
|
|
280
|
+
MIT — see [LICENSE](./LICENSE).
|
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './src/index'
|
|
1
|
+
export * from './packages/plugin-gantt/src/index'
|
|
2
2
|
export {}
|