@object-ui/plugin-gantt 0.3.0 → 0.5.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 +16 -0
- package/CHANGELOG.md +13 -0
- package/dist/index.js +13538 -406
- package/dist/index.umd.cjs +41 -2
- package/dist/src/GanttView.d.ts +30 -0
- package/dist/src/GanttView.d.ts.map +1 -0
- package/dist/src/ObjectGantt.d.ts.map +1 -1
- package/dist/src/index.d.ts +6 -0
- package/dist/src/index.d.ts.map +1 -1
- package/package.json +9 -8
- package/src/GanttView.tsx +333 -0
- package/src/ObjectGantt.test.tsx +88 -0
- package/src/ObjectGantt.tsx +65 -172
- package/src/index.test.tsx +25 -0
- package/src/index.tsx +9 -3
- package/vite.config.ts +3 -0
- package/vitest.config.ts +13 -0
- package/vitest.setup.ts +1 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
|
|
2
|
+
> @object-ui/plugin-gantt@0.5.0 build /home/runner/work/objectui/objectui/packages/plugin-gantt
|
|
3
|
+
> vite build
|
|
4
|
+
|
|
5
|
+
[36mvite v7.3.1 [32mbuilding client environment for production...[36m[39m
|
|
6
|
+
transforming...
|
|
7
|
+
[32m✓[39m 197 modules transformed.
|
|
8
|
+
rendering chunks...
|
|
9
|
+
[32m
|
|
10
|
+
[36m[vite:dts][32m Start generate declaration files...[39m
|
|
11
|
+
computing gzip size...
|
|
12
|
+
[2mdist/[22m[36mindex.js [39m[1m[33m581.20 kB[39m[22m[2m │ gzip: 102.95 kB[22m
|
|
13
|
+
[32m[36m[vite:dts][32m Declaration files built in 10726ms.
|
|
14
|
+
[39m
|
|
15
|
+
[2mdist/[22m[36mindex.umd.cjs [39m[1m[2m416.10 kB[22m[1m[22m[2m │ gzip: 90.02 kB[22m
|
|
16
|
+
[32m✓ built in 15.49s[39m
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# @object-ui/plugin-gantt
|
|
2
|
+
|
|
3
|
+
## 0.3.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Maintenance release - Documentation and build improvements
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @object-ui/types@0.3.1
|
|
10
|
+
- @object-ui/core@0.3.1
|
|
11
|
+
- @object-ui/react@0.3.1
|
|
12
|
+
- @object-ui/components@0.3.1
|
|
13
|
+
- @object-ui/fields@0.3.1
|