Skip to content

Commit 892de48

Browse files
committed
Merge branch 'feature/update_docs' into develop
2 parents fe77645 + 0a42d96 commit 892de48

File tree

15 files changed

+49
-111
lines changed

15 files changed

+49
-111
lines changed

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2024
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
A powerful Gantt chart component for Vue 3, evolved from vue-ganttastic. Provides flexible and performant timeline visualization for modern applications.
44

5+
<img src="https://github.com/Xeyos88/HyVueGantt/blob/main/docs/.vitepress/public/logo.png?raw=true" alt="logo HyVueGantt" witdh="300" height="300">
6+
7+
## Guide and Docs
8+
9+
For further guides and references, check out the [documentation](https://github.com/Xeyos88/HyVueGantt).
10+
511
## 🚀 Installation
612

713
```bash

deploy.sh

Lines changed: 0 additions & 12 deletions
This file was deleted.

docs-deploy.yml

Lines changed: 0 additions & 63 deletions
This file was deleted.

docs/.vitepress/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ export default defineConfig({
66
title: "Hyper Vue Gantt",
77
description: "Documentation for the Huper Vue Gantt Chart Library",
88
base: '/HyVueGantt/',
9-
head: [['link', { rel: 'icon', href: '/favicon.ico' }]],
9+
head: [['link', { rel: 'icon', href: 'https://raw.githubusercontent.com/Xeyos88/HyVueGantt/refs/heads/main/public/favicon.ico' }]],
1010

1111
themeConfig: {
1212
logo: {
13-
src: '/logo.png',
13+
src: 'https://github.com/Xeyos88/HyVueGantt/blob/main/docs/.vitepress/public/logo.png?raw=true',
1414
alt: 'Hyper Vue Gantt Logo'
1515
},
1616

docs/.vitepress/theme/components/AdvancedGanttDemo.vue

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
<script setup lang="ts">
22
import { ref, onMounted } from 'vue'
3-
import dayjs from 'dayjs'
4-
import isSameOrBefore from 'dayjs/plugin/isSameOrBefore'
53
import { GGanttChart, GGanttRow } from 'hy-vue-gantt'
64
7-
dayjs.extend(isSameOrBefore)
8-
95
const isLibraryReady = ref(false)
106
const currentScheme = ref('default')
117
@@ -70,8 +66,8 @@ onMounted(() => {
7066
</select>
7167
</div>
7268
<g-gantt-chart
73-
chart-start="2024-12-10"
74-
chart-end="2024-12-20"
69+
chart-start="2024-12-11"
70+
chart-end="2024-12-17"
7571
precision="day"
7672
bar-start="start"
7773
bar-end="end"

docs/.vitepress/theme/components/BasicGanttDemo.vue

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
<script setup lang="ts">
22
import { ref, onMounted } from 'vue'
3-
import dayjs from 'dayjs'
4-
import isSameOrBefore from 'dayjs/plugin/isSameOrBefore'
53
import { GGanttChart, GGanttRow } from 'hy-vue-gantt'
64
7-
dayjs.extend(isSameOrBefore)
8-
95
const isLibraryReady = ref(false)
106
117
const rows = ref([

docs/.vitepress/theme/components/ConnectionsGanttDemo.vue

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
<script setup lang="ts">
22
import { ref, onMounted } from 'vue'
3-
import dayjs from 'dayjs'
4-
import isSameOrBefore from 'dayjs/plugin/isSameOrBefore'
53
import { GGanttChart, GGanttRow } from 'hy-vue-gantt'
64
7-
dayjs.extend(isSameOrBefore)
8-
95
const isLibraryReady = ref(false)
106
117
const rows = ref([

docs/.vitepress/theme/components/OtherGanttDemo.vue

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
<script setup lang="ts">
22
import { ref, onMounted } from 'vue'
3-
import dayjs from 'dayjs'
4-
import isSameOrBefore from 'dayjs/plugin/isSameOrBefore'
53
import { GGanttChart, GGanttRow } from 'hy-vue-gantt'
6-
7-
dayjs.extend(isSameOrBefore)
8-
94
const isLibraryReady = ref(false)
105
116
const rows = ref([

docs/.vitepress/theme/components/TimeGanttDemo.vue

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
<script setup lang="ts">
22
import { ref, onMounted } from 'vue'
3-
import dayjs from 'dayjs'
4-
import isSameOrBefore from 'dayjs/plugin/isSameOrBefore'
53
import { GGanttChart, GGanttRow } from 'hy-vue-gantt'
64
7-
dayjs.extend(isSameOrBefore)
85
96
const isLibraryReady = ref(false)
107
const currentPrecision = ref('hour')

0 commit comments

Comments
 (0)