tg-ganttchart 0.0.8 → 0.0.10
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/dist/demo.html +1 -0
- package/dist/tgganttchart.common.js +11480 -0
- package/dist/tgganttchart.common.js.map +1 -0
- package/dist/tgganttchart.css +1 -0
- package/dist/tgganttchart.umd.js +11491 -0
- package/dist/tgganttchart.umd.js.map +1 -0
- package/dist/tgganttchart.umd.min.js +7 -0
- package/dist/tgganttchart.umd.min.js.map +1 -0
- package/package.json +4 -1
- package/babel.config.js +0 -5
- package/src/.eslintrc.js +0 -18
- package/src/App.vue +0 -780
- package/src/GanttElastic.standalone.vue +0 -48
- package/src/GanttElastic.vue +0 -2305
- package/src/assets/logo.png +0 -0
- package/src/components/Calendar/Calendar.vue +0 -559
- package/src/components/Calendar/CalendarRow.vue +0 -112
- package/src/components/Chart/Chart.vue +0 -117
- package/src/components/Chart/DaysHighlight.vue +0 -60
- package/src/components/Chart/DependencyLines.vue +0 -112
- package/src/components/Chart/Grid.vue +0 -205
- package/src/components/Chart/ProgressBar.vue +0 -110
- package/src/components/Chart/Row/Epic.vue +0 -131
- package/src/components/Chart/Row/Milestone.vue +0 -117
- package/src/components/Chart/Row/Project.vue +0 -132
- package/src/components/Chart/Row/Story.vue +0 -127
- package/src/components/Chart/Row/Subtask.vue +0 -117
- package/src/components/Chart/Row/Task.mixin.js +0 -47
- package/src/components/Chart/Row/Task.vue +0 -82
- package/src/components/Chart/Text.vue +0 -105
- package/src/components/Expander.vue +0 -114
- package/src/components/GanttElastic.standalone.vue +0 -48
- package/src/components/GanttElastic.vue +0 -1646
- package/src/components/Header/GanttViewFilter.vue +0 -154
- package/src/components/Header/Header.vue +0 -266
- package/src/components/MainView.vue +0 -283
- package/src/components/TaskList/ItemColumn.vue +0 -212
- package/src/components/TaskList/TaskList.vue +0 -45
- package/src/components/TaskList/TaskListHeader.vue +0 -143
- package/src/components/TaskList/TaskListItem.vue +0 -35
- package/src/components/bundle.js +0 -28
- package/src/components/components/Calendar/Calendar.vue +0 -332
- package/src/components/components/Calendar/CalendarRow.vue +0 -96
- package/src/components/components/Chart/Chart.vue +0 -111
- package/src/components/components/Chart/DaysHighlight.vue +0 -71
- package/src/components/components/Chart/DependencyLines.vue +0 -112
- package/src/components/components/Chart/Grid.vue +0 -164
- package/src/components/components/Chart/ProgressBar.vue +0 -110
- package/src/components/components/Chart/Row/Milestone.vue +0 -117
- package/src/components/components/Chart/Row/Project.vue +0 -131
- package/src/components/components/Chart/Row/Task.mixin.js +0 -46
- package/src/components/components/Chart/Row/Task.vue +0 -107
- package/src/components/components/Chart/Text.vue +0 -105
- package/src/components/components/Expander.vue +0 -126
- package/src/components/components/Header/Header.vue +0 -265
- package/src/components/components/MainView.vue +0 -282
- package/src/components/components/TaskList/ItemColumn.vue +0 -121
- package/src/components/components/TaskList/TaskList.vue +0 -45
- package/src/components/components/TaskList/TaskListHeader.vue +0 -143
- package/src/components/components/TaskList/TaskListItem.vue +0 -35
- package/src/components/components/bundle.js +0 -28
- package/src/components/style.js +0 -308
- package/src/index.js +0 -12
- package/src/main.js +0 -6
- package/src/style.js +0 -398
- package/vue.config.js +0 -42
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<gantt-elastic :tasks="tasks" :options="options" :dynamicStyle="dynamicStyle">
|
|
3
|
-
<component v-if="components.header" :is="components.header" slot="header"></component>
|
|
4
|
-
<component v-if="components.footer" :is="components.footer" slot="footer"></component>
|
|
5
|
-
</gantt-elastic>
|
|
6
|
-
</template>
|
|
7
|
-
|
|
8
|
-
<script>
|
|
9
|
-
import GanttElastic from './GanttElastic.vue';
|
|
10
|
-
|
|
11
|
-
export default {
|
|
12
|
-
name: 'GanttElasticStandalone',
|
|
13
|
-
components: {
|
|
14
|
-
'gantt-elastic': GanttElastic,
|
|
15
|
-
},
|
|
16
|
-
props: {
|
|
17
|
-
// Props to receive from parent
|
|
18
|
-
tasks: {
|
|
19
|
-
type: Array,
|
|
20
|
-
default: () => [],
|
|
21
|
-
},
|
|
22
|
-
options: {
|
|
23
|
-
type: Object,
|
|
24
|
-
default: () => ({}),
|
|
25
|
-
},
|
|
26
|
-
dynamicStyle: {
|
|
27
|
-
type: Object,
|
|
28
|
-
default: () => ({}),
|
|
29
|
-
},
|
|
30
|
-
header: {
|
|
31
|
-
type: Object,
|
|
32
|
-
default: () => ({}),
|
|
33
|
-
},
|
|
34
|
-
footer: {
|
|
35
|
-
type: Object,
|
|
36
|
-
default: () => ({}),
|
|
37
|
-
},
|
|
38
|
-
},
|
|
39
|
-
data() {
|
|
40
|
-
return {
|
|
41
|
-
components: {
|
|
42
|
-
header: this.header,
|
|
43
|
-
footer: this.footer,
|
|
44
|
-
},
|
|
45
|
-
};
|
|
46
|
-
},
|
|
47
|
-
};
|
|
48
|
-
</script>
|