tg-ganttchart 0.0.5 → 0.0.7
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 +9232 -0
- package/dist/tgganttchart.common.js.map +1 -0
- package/dist/tgganttchart.css +1 -0
- package/dist/tgganttchart.umd.js +9243 -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/components/GanttElastic.standalone.vue +0 -48
- package/src/components/GanttElastic.vue +0 -1646
- 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 -264
- 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/vue.config.js +0 -42
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tg-ganttchart",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"description": "Vue js compnonet for dynamic list in which we can provide and schema and data. It will render the table view according to the dynamic fields",
|
|
5
5
|
"main": "./dist/tgganttchart.umd.cjs",
|
|
6
6
|
"module": "./dist/tgganttchart.es.js",
|
|
@@ -56,6 +56,9 @@
|
|
|
56
56
|
"no-prototype-builtins": "off"
|
|
57
57
|
}
|
|
58
58
|
},
|
|
59
|
+
"files": [
|
|
60
|
+
"dist/*"
|
|
61
|
+
],
|
|
59
62
|
"browserslist": [
|
|
60
63
|
"> 1%",
|
|
61
64
|
"last 2 versions",
|
package/babel.config.js
DELETED
|
@@ -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>
|