Skip to content

Commit 80aae5d

Browse files
committed
update to v0.0.1. Here we go.
1 parent f9d670c commit 80aae5d

File tree

8 files changed

+22
-7
lines changed

8 files changed

+22
-7
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## [0.0.1](https://github.com/xpyjs/gantt/compare/v0.0.1-rc.5...v0.0.1) (2025-11-17)
2+
3+
4+
### Features
5+
6+
* **core:** add a time param on click.row / dblclick.row / contextmenu.row. User can create a schedule quickly by event. ([4c8f9dc](https://github.com/xpyjs/gantt/commit/4c8f9dcbf96bec01a4b954620a2373f425b88170))
7+
* **core:** add drag function. User can allow a drag icon at left on table. When dragging, it will be appeared a prompt area/line on gantt. ([2cfc30f](https://github.com/xpyjs/gantt/commit/2cfc30f761b9c30a4f97396b777c19316cfe8b3a))
8+
* **core:** change log default level to warn. ([bcd2394](https://github.com/xpyjs/gantt/commit/bcd23945fb84d03dbe5ffadaea021affc8015d0c))
9+
* **react:** add drag function on react. ([8aa69df](https://github.com/xpyjs/gantt/commit/8aa69dff946cefa6a3deb9506ae5b5dd91ef17d8))
10+
* **react:** update parameters description ([9354030](https://github.com/xpyjs/gantt/commit/935403003ed6e62e956a6f962809f09c91b49d44))
11+
* **vue:** Adaptation parameters ([486ee41](https://github.com/xpyjs/gantt/commit/486ee41bb4c234e5437ed1b773edc486ee856321))
12+
* **vue:** add drag function on vue. ([68bfee0](https://github.com/xpyjs/gantt/commit/68bfee061ce455b0804da9a625e2e177f82f9341))
13+
14+
15+
116
## [0.0.1-rc.5](https://github.com/xpyjs/gantt/compare/v0.0.1-rc.4...v0.0.1-rc.5) (2025-10-22)
217

318

docs/src/template/react/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { CodeBlock } from "@/types/demo";
22
import { toJSON } from "@/utils/common";
33
import { cloneDeep } from "lodash-es";
44

5-
const VERSION = "0.0.1-rc.5";
5+
const VERSION = "0.0.1";
66

77
const VITE_CONFIG = `import { defineConfig } from 'vite'
88
import react from '@vitejs/plugin-react'

docs/src/template/vanilla/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { CodeBlock } from "@/types/demo";
22
import { toJSON } from "@/utils/common";
33
import { cloneDeep } from "lodash-es";
44

5-
const VERSION = "0.0.1-rc.5";
5+
const VERSION = "0.0.1";
66

77
const VITE_CONFIG = `import { defineConfig } from "vite";
88

docs/src/template/vue/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { CodeBlock } from "@/types/demo";
22
import { toJSON } from "@/utils/common";
33
import { cloneDeep } from "lodash-es";
44

5-
const VERSION = "0.0.1-rc.5";
5+
const VERSION = "0.0.1";
66

77
const VITE_CONFIG = `import { defineConfig } from "vite";
88
import vue from "@vitejs/plugin-vue";

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"private": true,
3-
"version": "0.0.1-rc.5",
3+
"version": "0.0.1",
44
"type": "module",
55
"scripts": {
66
"dev:core": "node scripts/dev.js core",

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@xpyjs/gantt-core",
33
"private": false,
4-
"version": "0.0.1-rc.5",
4+
"version": "0.0.1",
55
"description": "A powerful and flexible Gantt chart component library for modern web applications with TypeScript support",
66
"type": "module",
77
"main": "./dist/x-gantt.umd.cjs",

packages/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@xpyjs/gantt-react",
3-
"version": "0.0.1-rc.5",
3+
"version": "0.0.1",
44
"private": false,
55
"description": "React wrapper for x-gantt",
66
"author": "JeremyJone",

packages/vue/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@xpyjs/gantt-vue",
33
"private": false,
4-
"version": "0.0.1-rc.5",
4+
"version": "0.0.1",
55
"description": "Vue wrapper for x-gantt",
66
"type": "module",
77
"main": "./dist/index.umd.cjs",

0 commit comments

Comments
 (0)