@worktile/gantt 12.0.0 → 12.0.1

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.
Files changed (230) hide show
  1. package/.all-contributorsrc +53 -0
  2. package/.angulardoc.json +4 -0
  3. package/.circleci/config.yml +17 -0
  4. package/.coveralls.yml +1 -0
  5. package/.docgenirc.js +64 -0
  6. package/.editorconfig +22 -0
  7. package/.prettierrc +24 -0
  8. package/.travis.yml +23 -0
  9. package/CHANGELOG.md +564 -0
  10. package/Dockerfile +4 -0
  11. package/LICENSE +21 -0
  12. package/README.md +116 -13
  13. package/angular.json +136 -0
  14. package/docs/guides/basic/components.md +54 -0
  15. package/docs/guides/basic/event.md +70 -0
  16. package/docs/guides/basic/index.md +4 -0
  17. package/docs/guides/basic/style.md +68 -0
  18. package/docs/guides/basic/type.md +70 -0
  19. package/docs/guides/basic/usage.md +189 -0
  20. package/docs/guides/index.md +5 -0
  21. package/docs/guides/intro/getting-started.md +79 -0
  22. package/docs/guides/intro/index.md +51 -0
  23. package/docs/index.md +0 -0
  24. package/example/browserslist +12 -0
  25. package/example/src/app/app-routing.module.ts +26 -0
  26. package/example/src/app/app.component.html +2 -0
  27. package/example/src/app/app.component.ts +11 -0
  28. package/example/src/app/app.module.ts +57 -0
  29. package/example/src/app/components/components.component.html +6 -0
  30. package/example/src/app/components/components.component.ts +33 -0
  31. package/example/src/app/configuration/parameters/api/zh-cn.js +350 -0
  32. package/example/src/app/configuration/parameters/doc/zh-cn.md +5 -0
  33. package/example/src/app/gantt/gantt.component.html +51 -0
  34. package/example/src/app/gantt/gantt.component.ts +119 -0
  35. package/example/src/app/gantt-advanced/component/flat.component.html +30 -0
  36. package/example/src/app/gantt-advanced/component/flat.component.ts +72 -0
  37. package/example/src/app/gantt-advanced/component/flat.scss +31 -0
  38. package/example/src/app/gantt-advanced/gantt-advanced.component.html +32 -0
  39. package/example/src/app/gantt-advanced/gantt-advanced.component.ts +34 -0
  40. package/example/src/app/gantt-advanced/mocks.ts +158 -0
  41. package/example/src/app/gantt-groups/gantt-groups.component.html +42 -0
  42. package/example/src/app/gantt-groups/gantt-groups.component.ts +62 -0
  43. package/example/src/app/gantt-range/gantt-range.component.html +66 -0
  44. package/example/src/app/gantt-range/gantt-range.component.ts +67 -0
  45. package/example/src/app/gantt-range/mocks.ts +150 -0
  46. package/example/src/app/helper.ts +38 -0
  47. package/example/src/assets/.gitkeep +0 -0
  48. package/example/src/environments/environment.prod.ts +3 -0
  49. package/example/src/environments/environment.ts +16 -0
  50. package/example/src/favicon.ico +0 -0
  51. package/example/src/index.html +13 -0
  52. package/example/src/main.ts +12 -0
  53. package/example/src/polyfills.ts +63 -0
  54. package/example/src/styles.scss +56 -0
  55. package/example/tsconfig.app.json +18 -0
  56. package/nginx.conf +17 -0
  57. package/package.json +113 -17
  58. package/packages/gantt/README.md +24 -0
  59. package/packages/gantt/karma.conf.js +46 -0
  60. package/packages/gantt/ng-package.json +7 -0
  61. package/packages/gantt/ng-package.prod.json +7 -0
  62. package/packages/gantt/package.json +16 -0
  63. package/packages/gantt/src/class/date-point.ts +14 -0
  64. package/{class/event.d.ts → packages/gantt/src/class/event.ts} +12 -6
  65. package/packages/gantt/src/class/group.ts +36 -0
  66. package/{class/index.d.ts → packages/gantt/src/class/index.ts} +0 -0
  67. package/packages/gantt/src/class/item.ts +129 -0
  68. package/packages/gantt/src/class/test/group.spec.ts +21 -0
  69. package/packages/gantt/src/class/test/item.spec.ts +102 -0
  70. package/packages/gantt/src/class/view-type.ts +7 -0
  71. package/packages/gantt/src/components/bar/bar-drag.ts +298 -0
  72. package/packages/gantt/src/components/bar/bar.component.html +17 -0
  73. package/packages/gantt/src/components/bar/bar.component.scss +169 -0
  74. package/packages/gantt/src/components/bar/bar.component.ts +109 -0
  75. package/packages/gantt/src/components/bar/test/bar.component.spec.ts +54 -0
  76. package/packages/gantt/src/components/bar/test/bar.drag.spec.ts +196 -0
  77. package/packages/gantt/src/components/calendar/calendar.component.html +52 -0
  78. package/packages/gantt/src/components/calendar/calendar.component.scss +77 -0
  79. package/packages/gantt/src/components/calendar/calendar.component.ts +100 -0
  80. package/packages/gantt/src/components/drag-backdrop/drag-backdrop.component.html +6 -0
  81. package/packages/gantt/src/components/drag-backdrop/drag-backdrop.component.scss +48 -0
  82. package/packages/gantt/src/components/drag-backdrop/drag-backdrop.component.ts +13 -0
  83. package/packages/gantt/src/components/icon/icon.component.scss +13 -0
  84. package/packages/gantt/src/components/icon/icon.component.ts +28 -0
  85. package/packages/gantt/src/components/icon/icons.ts +86 -0
  86. package/packages/gantt/src/components/links/links.component.html +19 -0
  87. package/packages/gantt/src/components/links/links.component.scss +27 -0
  88. package/packages/gantt/src/components/links/links.component.ts +263 -0
  89. package/packages/gantt/src/components/main/gantt-main.component.html +35 -0
  90. package/packages/gantt/src/components/main/gantt-main.component.ts +35 -0
  91. package/packages/gantt/src/components/range/range.component.html +8 -0
  92. package/packages/gantt/src/components/range/range.component.scss +35 -0
  93. package/packages/gantt/src/components/range/range.component.ts +27 -0
  94. package/packages/gantt/src/components/range/test/range.component.spec.ts +80 -0
  95. package/packages/gantt/src/components/table/gantt-table.component.html +105 -0
  96. package/packages/gantt/src/components/table/gantt-table.component.scss +144 -0
  97. package/packages/gantt/src/components/table/gantt-table.component.ts +166 -0
  98. package/packages/gantt/src/components/table/test/table.spec.ts +129 -0
  99. package/packages/gantt/src/gantt-abstract.ts +14 -0
  100. package/packages/gantt/src/gantt-dom.service.ts +134 -0
  101. package/packages/gantt/src/gantt-drag-container.ts +73 -0
  102. package/packages/gantt/src/gantt-item-upper.ts +50 -0
  103. package/packages/gantt/src/gantt-print.service.ts +104 -0
  104. package/packages/gantt/src/gantt-upper.ts +289 -0
  105. package/packages/gantt/src/gantt.component.html +18 -0
  106. package/packages/gantt/src/gantt.component.scss +77 -0
  107. package/packages/gantt/src/gantt.component.ts +134 -0
  108. package/packages/gantt/src/gantt.module.ts +47 -0
  109. package/packages/gantt/src/gantt.pipe.ts +31 -0
  110. package/packages/gantt/src/gantt.styles.ts +28 -0
  111. package/{public-api.d.ts → packages/gantt/src/public-api.ts} +6 -0
  112. package/packages/gantt/src/root.component.html +12 -0
  113. package/packages/gantt/src/root.component.ts +121 -0
  114. package/packages/gantt/src/styles/index.scss +9 -0
  115. package/packages/gantt/src/styles/variables.scss +46 -0
  116. package/packages/gantt/src/table/gantt-column.component.ts +25 -0
  117. package/packages/gantt/src/table/gantt-table.component.ts +14 -0
  118. package/packages/gantt/src/table/test/table.spec.ts +56 -0
  119. package/packages/gantt/src/test/gantt.component.spec.ts +404 -0
  120. package/packages/gantt/src/test/mocks/data.ts +303 -0
  121. package/packages/gantt/src/test.ts +21 -0
  122. package/packages/gantt/src/utils/date.ts +276 -0
  123. package/packages/gantt/src/utils/helpers.ts +66 -0
  124. package/packages/gantt/src/utils/test/date.spec.ts +105 -0
  125. package/packages/gantt/src/utils/test/helpers.spec.ts +73 -0
  126. package/packages/gantt/src/utils/testing.ts +64 -0
  127. package/packages/gantt/src/views/day.ts +74 -0
  128. package/packages/gantt/src/views/factory.ts +25 -0
  129. package/packages/gantt/src/views/month.ts +66 -0
  130. package/packages/gantt/src/views/quarter.ts +68 -0
  131. package/packages/gantt/src/views/test/day.spec.ts +45 -0
  132. package/packages/gantt/src/views/test/factory.spec.ts +41 -0
  133. package/packages/gantt/src/views/test/mock.ts +14 -0
  134. package/packages/gantt/src/views/test/month.spec.ts +45 -0
  135. package/packages/gantt/src/views/test/quarter.spec.ts +45 -0
  136. package/packages/gantt/src/views/test/view.spec.ts +144 -0
  137. package/packages/gantt/src/views/test/week.spec.ts +45 -0
  138. package/packages/gantt/src/views/test/year.spec.ts +45 -0
  139. package/packages/gantt/src/views/view.ts +186 -0
  140. package/packages/gantt/src/views/week.ts +66 -0
  141. package/packages/gantt/src/views/year.ts +62 -0
  142. package/packages/gantt/tsconfig.lib.json +20 -0
  143. package/packages/gantt/tsconfig.lib.prod.json +9 -0
  144. package/packages/gantt/tsconfig.schematics.json +25 -0
  145. package/packages/gantt/tsconfig.spec.json +17 -0
  146. package/packages/gantt/tslint.json +18 -0
  147. package/scss-bundle.config.json +7 -0
  148. package/tsconfig.json +26 -0
  149. package/tslint.json +51 -0
  150. package/bundles/worktile-gantt.umd.js +0 -3128
  151. package/bundles/worktile-gantt.umd.js.map +0 -1
  152. package/class/date-point.d.ts +0 -15
  153. package/class/group.d.ts +0 -22
  154. package/class/item.d.ts +0 -70
  155. package/class/view-type.d.ts +0 -7
  156. package/components/bar/bar-drag.d.ts +0 -34
  157. package/components/bar/bar.component.d.ts +0 -23
  158. package/components/calendar/calendar.component.d.ts +0 -25
  159. package/components/drag-backdrop/drag-backdrop.component.d.ts +0 -6
  160. package/components/icon/icon.component.d.ts +0 -10
  161. package/components/icon/icons.d.ts +0 -8
  162. package/components/links/links.component.d.ts +0 -44
  163. package/components/main/gantt-main.component.d.ts +0 -18
  164. package/components/range/range.component.d.ts +0 -10
  165. package/components/table/gantt-table.component.d.ts +0 -31
  166. package/esm2015/class/date-point.js +0 -10
  167. package/esm2015/class/event.js +0 -13
  168. package/esm2015/class/group.js +0 -17
  169. package/esm2015/class/index.js +0 -6
  170. package/esm2015/class/item.js +0 -78
  171. package/esm2015/class/view-type.js +0 -9
  172. package/esm2015/components/bar/bar-drag.js +0 -266
  173. package/esm2015/components/bar/bar.component.js +0 -91
  174. package/esm2015/components/calendar/calendar.component.js +0 -82
  175. package/esm2015/components/drag-backdrop/drag-backdrop.component.js +0 -18
  176. package/esm2015/components/icon/icon.component.js +0 -36
  177. package/esm2015/components/icon/icons.js +0 -87
  178. package/esm2015/components/links/links.component.js +0 -207
  179. package/esm2015/components/main/gantt-main.component.js +0 -35
  180. package/esm2015/components/range/range.component.js +0 -32
  181. package/esm2015/components/table/gantt-table.component.js +0 -125
  182. package/esm2015/gantt-dom.service.js +0 -101
  183. package/esm2015/gantt-drag-container.js +0 -57
  184. package/esm2015/gantt-item-upper.js +0 -55
  185. package/esm2015/gantt-print.service.js +0 -92
  186. package/esm2015/gantt-upper.js +0 -231
  187. package/esm2015/gantt.component.js +0 -105
  188. package/esm2015/gantt.module.js +0 -43
  189. package/esm2015/gantt.pipe.js +0 -33
  190. package/esm2015/gantt.styles.js +0 -15
  191. package/esm2015/public-api.js +0 -16
  192. package/esm2015/root.component.js +0 -111
  193. package/esm2015/table/gantt-column.component.js +0 -28
  194. package/esm2015/table/gantt-table.component.js +0 -18
  195. package/esm2015/utils/date.js +0 -160
  196. package/esm2015/utils/helpers.js +0 -45
  197. package/esm2015/views/day.js +0 -54
  198. package/esm2015/views/factory.js +0 -23
  199. package/esm2015/views/month.js +0 -48
  200. package/esm2015/views/quarter.js +0 -51
  201. package/esm2015/views/view.js +0 -121
  202. package/esm2015/views/week.js +0 -49
  203. package/esm2015/views/year.js +0 -50
  204. package/esm2015/worktile-gantt.js +0 -16
  205. package/fesm2015/worktile-gantt.js +0 -2488
  206. package/fesm2015/worktile-gantt.js.map +0 -1
  207. package/gantt-dom.service.d.ts +0 -29
  208. package/gantt-drag-container.d.ts +0 -20
  209. package/gantt-item-upper.d.ts +0 -17
  210. package/gantt-print.service.d.ts +0 -10
  211. package/gantt-upper.d.ts +0 -62
  212. package/gantt.component.d.ts +0 -28
  213. package/gantt.module.d.ts +0 -2
  214. package/gantt.pipe.d.ts +0 -11
  215. package/gantt.styles.d.ts +0 -15
  216. package/main.bundle.scss +0 -645
  217. package/root.component.d.ts +0 -25
  218. package/table/gantt-column.component.d.ts +0 -12
  219. package/table/gantt-table.component.d.ts +0 -7
  220. package/utils/date.d.ts +0 -59
  221. package/utils/helpers.d.ts +0 -11
  222. package/views/day.d.ts +0 -14
  223. package/views/factory.d.ts +0 -8
  224. package/views/month.d.ts +0 -12
  225. package/views/quarter.d.ts +0 -12
  226. package/views/view.d.ts +0 -56
  227. package/views/week.d.ts +0 -12
  228. package/views/year.d.ts +0 -12
  229. package/worktile-gantt.d.ts +0 -15
  230. package/worktile-gantt.metadata.json +0 -1
package/CHANGELOG.md ADDED
@@ -0,0 +1,564 @@
1
+ Changelog
2
+ All notable changes to ngx-gantt will be documented in this file.
3
+
4
+ ### [12.0.1](https://github.com/worktile/ngx-gantt/compare/11.0.3...12.0.1) (2022-01-18)
5
+
6
+
7
+ ### Bug Fixes
8
+
9
+ * setup expanded state with item children ([#166](https://github.com/worktile/ngx-gantt/issues/166)) ([be7fc38](https://github.com/worktile/ngx-gantt/commit/be7fc3893539cfb9fbf8479afa682ed26d43545e))
10
+
11
+ ## [12.0.0](https://github.com/worktile/ngx-gantt/compare/11.0.0...12.0.0) (2021-07-20)
12
+
13
+
14
+ ### Features
15
+
16
+ * bump angular 12 ([7b4511c](https://github.com/worktile/ngx-gantt/commit/7b4511c567307c2a73724f89bcf594f3607068d9))
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+ * change favicon.ico ([74c8c1a](https://github.com/worktile/ngx-gantt/commit/74c8c1a8f3d54f3d6f4d45c960c0290320f32300))
22
+
23
+ ## [11.0.0](https://github.com/worktile/ngx-gantt/compare/0.0.50...11.0.0) (2021-07-09)
24
+
25
+
26
+ ### Features
27
+
28
+ * add empty table #INFR-2051 ([#129](https://github.com/worktile/ngx-gantt/issues/129)) ([5f24470](https://github.com/worktile/ngx-gantt/commit/5f24470f11d73dfec1f07e7621de915b6abcfff3)), closes [#INFR-2051](https://github.com/worktile/ngx-gantt/issues/INFR-2051) [#INFR-2051](https://github.com/worktile/ngx-gantt/issues/INFR-2051)
29
+ * bump angular 11 ([1c0f562](https://github.com/worktile/ngx-gantt/commit/1c0f56222dd580eaf6a260e8bf0bb97ccdd3368c))
30
+
31
+
32
+ ### Bug Fixes
33
+
34
+ * bump cdk 11 and fix drag error ([be009d4](https://github.com/worktile/ngx-gantt/commit/be009d43439b6debc0e0995d3a2ea0f1cd2f4e26))
35
+ * change bar width after change view type ([031e080](https://github.com/worktile/ngx-gantt/commit/031e08098e70de11db53b18ba2374224be2bf449))
36
+ * change cdk version ([59865f0](https://github.com/worktile/ngx-gantt/commit/59865f0b95add9bf5e30fb4f2e099d46f48ce05f))
37
+ * delete console ([efec479](https://github.com/worktile/ngx-gantt/commit/efec479008535bdaadd3e74459d83e1371321744))
38
+ * fix karma conf ([2677d36](https://github.com/worktile/ngx-gantt/commit/2677d36120d52a8ddb47553bfc4e2abee12c5cd6))
39
+ * fix test error ([d807b82](https://github.com/worktile/ngx-gantt/commit/d807b82ba6a4240fe4d660c1a630a28e01f5d214))
40
+ * npm i ([d834c79](https://github.com/worktile/ngx-gantt/commit/d834c79dd7ee61b733ccb8c65046b40943536623))
41
+
42
+ ## [11.0.0-next.1](https://github.com/worktile/ngx-gantt/compare/11.0.0-next...11.0.0.next.1) (2021-07-02)
43
+
44
+
45
+ ### Features
46
+
47
+ * bump angular 11 ([be1ea0f](https://github.com/worktile/ngx-gantt/commit/be1ea0fa1986a29d424870370c645e3f73a5b091))
48
+
49
+
50
+ ### Bug Fixes
51
+
52
+ * bump cdk 11 and fix drag error ([052264c](https://github.com/worktile/ngx-gantt/commit/052264cc4aa89a11bdf4f7ca3c4149a9a59f2828))
53
+ * change bar width after change view type ([6c6de0a](https://github.com/worktile/ngx-gantt/commit/6c6de0a1f6fbf7f58a27ee0acbe5f988dc6e3be4))
54
+ * change cdk version ([c7114ab](https://github.com/worktile/ngx-gantt/commit/c7114abf808933660b676ea7e11db18a2d19ebba))
55
+ * delete console ([ebe8ef8](https://github.com/worktile/ngx-gantt/commit/ebe8ef89a21caf9ae4d9addba6ebd4aad3b0b2b8))
56
+ * fix karma conf ([79e86b4](https://github.com/worktile/ngx-gantt/commit/79e86b4f43165e7ecc21044827ebc6e11f38e8f4))
57
+ * npm i ([d88d97f](https://github.com/worktile/ngx-gantt/commit/d88d97f36d4c2dc261faea9463ae31d62355e0d4))
58
+
59
+ ### [11.0.0-next](https://github.com/worktile/ngx-gantt/compare/0.0.50...11.0.0-next) (2021-07-01)
60
+
61
+
62
+ ### Features
63
+
64
+ * bump angular 11 ([be1ea0f](https://github.com/worktile/ngx-gantt/commit/be1ea0fa1986a29d424870370c645e3f73a5b091))
65
+
66
+
67
+ ### Bug Fixes
68
+
69
+ * change bar width after change view type ([6c6de0a](https://github.com/worktile/ngx-gantt/commit/6c6de0a1f6fbf7f58a27ee0acbe5f988dc6e3be4))
70
+ * change cdk version ([c7114ab](https://github.com/worktile/ngx-gantt/commit/c7114abf808933660b676ea7e11db18a2d19ebba))
71
+ * delete console ([ebe8ef8](https://github.com/worktile/ngx-gantt/commit/ebe8ef89a21caf9ae4d9addba6ebd4aad3b0b2b8))
72
+ * npm i ([d88d97f](https://github.com/worktile/ngx-gantt/commit/d88d97f36d4c2dc261faea9463ae31d62355e0d4))
73
+
74
+ ### [0.0.50](https://github.com/worktile/ngx-gantt/compare/0.0.48...0.0.50) (2021-06-30)
75
+
76
+
77
+ ### Features
78
+
79
+ * add bar drag test ([a0d0e3a](https://github.com/worktile/ngx-gantt/commit/a0d0e3a17ac882a76778d7265d2de6c24d4d594d))
80
+ * add gantt component test #INFR-1694 ([#105](https://github.com/worktile/ngx-gantt/issues/105)) ([28e05a1](https://github.com/worktile/ngx-gantt/commit/28e05a1052d1539109e6fa1ffc46e80f4a72e2f5)), closes [#INFR-1694](https://github.com/worktile/ngx-gantt/issues/INFR-1694)
81
+ * add gantt table test #INFR-1716 ([a57d546](https://github.com/worktile/ngx-gantt/commit/a57d54666a7092dfb66b9ce358f7c38a9fae1cb4)), closes [#INFR-1716](https://github.com/worktile/ngx-gantt/issues/INFR-1716)
82
+ * add test(#INFR-2013) ([a31da21](https://github.com/worktile/ngx-gantt/commit/a31da21ecb5ea25b15dd952cbe6ec0105a419bfd)), closes [#INFR-2013](https://github.com/worktile/ngx-gantt/issues/INFR-2013)
83
+ * support week view and add test(#INFR-1996) ([75a6930](https://github.com/worktile/ngx-gantt/commit/75a6930b7f57235571ef0f4cfa713caa99bca13b)), closes [#INFR-1996](https://github.com/worktile/ngx-gantt/issues/INFR-1996)
84
+ * support week view and add test(#INFR-1996) ([#113](https://github.com/worktile/ngx-gantt/issues/113)) ([ac1c252](https://github.com/worktile/ngx-gantt/commit/ac1c25259db73ff814ddd8f4662c29a3d3bea7b4)), closes [#INFR-1996](https://github.com/worktile/ngx-gantt/issues/INFR-1996) [#INFR-1996](https://github.com/worktile/ngx-gantt/issues/INFR-1996)
85
+ * support year view and add test(#INFR-2007) ([#117](https://github.com/worktile/ngx-gantt/issues/117)) ([0f12338](https://github.com/worktile/ngx-gantt/commit/0f1233857da0acc377332a3f602909525ed1d93a)), closes [#INFR-2007](https://github.com/worktile/ngx-gantt/issues/INFR-2007) [#INFR-2007](https://github.com/worktile/ngx-gantt/issues/INFR-2007) [#INFR-2007](https://github.com/worktile/ngx-gantt/issues/INFR-2007)
86
+ * 修改日视图的bar长度(#INFR-2013) ([9ac28e7](https://github.com/worktile/ngx-gantt/commit/9ac28e754936c1ba7bad76a247cc8e8d3a0b163a)), closes [#INFR-2013](https://github.com/worktile/ngx-gantt/issues/INFR-2013)
87
+
88
+
89
+ ### Bug Fixes
90
+
91
+ * add gantt date test ([f4f8a16](https://github.com/worktile/ngx-gantt/commit/f4f8a1636ebe1d004007215a71147bda00cad911))
92
+ * add gantt view test ([e25a5b0](https://github.com/worktile/ngx-gantt/commit/e25a5b04ce0c964d65b90a1e81f37c5227895cae))
93
+ * add gantt with groups and load children test ([e14ebb9](https://github.com/worktile/ngx-gantt/commit/e14ebb95ac2bb978f8a488ed87821dbe878e2277))
94
+ * add missed component configuration ([67eb9f7](https://github.com/worktile/ngx-gantt/commit/67eb9f7907b46d64f923186a2e139fa1d979c39f))
95
+ * add range component test and move flat component to example ([19a167d](https://github.com/worktile/ngx-gantt/commit/19a167d3d4120621595658a59856c3ff9812e998))
96
+ * delete mock data ([9970c3f](https://github.com/worktile/ngx-gantt/commit/9970c3f01a777ea187cd4ff85d9ba82ba47cc8bb))
97
+ * fix drag-auxiliary-line position error when drag ([a815a98](https://github.com/worktile/ngx-gantt/commit/a815a98e2a2f21dd8325259b2ba6f9789dd0dca3))
98
+ * **class:** add gantt item class and gantt group class test #INFR-1692 ([#100](https://github.com/worktile/ngx-gantt/issues/100)) ([97aa4d1](https://github.com/worktile/ngx-gantt/commit/97aa4d11ab9616c0e53d4c7475d272c07f6fe534)), closes [#INFR-1692](https://github.com/worktile/ngx-gantt/issues/INFR-1692)
99
+ * fix error ([42b5785](https://github.com/worktile/ngx-gantt/commit/42b5785c804a012a601e435b2501849e7ec87723))
100
+ * **doc:** fix docs start and end ([febfaaa](https://github.com/worktile/ngx-gantt/commit/febfaaa1b085bad47d23503439bc9bf31f5a6445))
101
+ * **docs:** add more docs ([0fe700b](https://github.com/worktile/ngx-gantt/commit/0fe700bc0e9923b23cbfb96332060326029292bc))
102
+ * **docs:** fix docs guide ([fa11e43](https://github.com/worktile/ngx-gantt/commit/fa11e433e302b3923d86bb835c28b3d6ed6ff183))
103
+ * **util:** add util test #INFR-1693 ([4a642ac](https://github.com/worktile/ngx-gantt/commit/4a642acc9d9a137c61735803dbf23b5ea396c2a3)), closes [#INFR-1693](https://github.com/worktile/ngx-gantt/issues/INFR-1693)
104
+ * **view:** fix view test #INFR-1690 ([#98](https://github.com/worktile/ngx-gantt/issues/98)) ([6ca26af](https://github.com/worktile/ngx-gantt/commit/6ca26af2d69fd03de129c9a3141d29f150ee5de3)), closes [#INFR-1690](https://github.com/worktile/ngx-gantt/issues/INFR-1690)
105
+ * fix function ([88d66d3](https://github.com/worktile/ngx-gantt/commit/88d66d33af800e708acb321e77c3964894a715a3))
106
+ * fix review code ([e570b43](https://github.com/worktile/ngx-gantt/commit/e570b431ced5ab2d1ea41cb9ae3719c39b58e29e))
107
+ * review code ([51d583f](https://github.com/worktile/ngx-gantt/commit/51d583fae89e9dcc021d662d7c0479ca1d4c8cdd))
108
+ * 当开始时间或者截止时间未设时,甘特图中显示的默认bar的长度应该因视图不同而不同(#INFR-2013) ([1c31fc6](https://github.com/worktile/ngx-gantt/commit/1c31fc6f641f48e94b7999c3cf73d5499107f499)), closes [#INFR-2013](https://github.com/worktile/ngx-gantt/issues/INFR-2013)
109
+
110
+ ### [0.0.49](https://github.com/worktile/ngx-gantt/compare/0.0.48...0.0.49) (2021-01-18)
111
+
112
+
113
+ ### Bug Fixes
114
+
115
+ * fix drag-auxiliary-line position error when drag ([a815a98](https://github.com/worktile/ngx-gantt/commit/a815a98e2a2f21dd8325259b2ba6f9789dd0dca3))
116
+
117
+ ### [0.0.48](https://github.com/worktile/ngx-gantt/compare/0.0.47...0.0.48) (2021-01-15)
118
+
119
+
120
+ ### Bug Fixes
121
+
122
+ * **table:** drag table and delete cache ([826f2d2](https://github.com/worktile/ngx-gantt/commit/826f2d27b97705eba58cb830b46ed8ec74784f98))
123
+ * **table:** fixed drag when column width less than min column width ([a11735b](https://github.com/worktile/ngx-gantt/commit/a11735b54c8835601dc9d3a1fd0ec5e0a34e63a9))
124
+ * change columnChange to columnChanges ([f271d82](https://github.com/worktile/ngx-gantt/commit/f271d827a94f429e8df883758e826ba258d2148f))
125
+ * merge angular 9.0.0 and update docs ([a8ebdd3](https://github.com/worktile/ngx-gantt/commit/a8ebdd302921429dbbc287f0f443382da630df26))
126
+
127
+ ### [0.0.47](https://github.com/worktile/ngx-gantt/compare/0.0.46...0.0.47) (2021-01-06)
128
+
129
+
130
+ ### Bug Fixes
131
+
132
+ * fix error when columns change ([16207e9](https://github.com/worktile/ngx-gantt/commit/16207e9f9e1b04e3f077cd4e6ed818ac2bc92441))
133
+
134
+ ### [0.0.46](https://github.com/worktile/ngx-gantt/compare/0.0.44...0.0.46) (2021-01-04)
135
+
136
+
137
+ ### Features
138
+
139
+ * support custom group header ([32184bf](https://github.com/worktile/ngx-gantt/commit/32184bf8a303398c98fa8a4d32be03a98a8f3fca))
140
+ * **table:** change column width by brag ([b6dac72](https://github.com/worktile/ngx-gantt/commit/b6dac728b96685c21f803c30df79edfde52d0588))
141
+
142
+
143
+ ### Bug Fixes
144
+
145
+ * add class in GanttGroup ([a32dd04](https://github.com/worktile/ngx-gantt/commit/a32dd040bdf16ccf66f900eaf075678e9183b60d))
146
+ * delete storage-cache and column-compute ([cf0d647](https://github.com/worktile/ngx-gantt/commit/cf0d6477593f390a4e0aeade88501333954e5b42))
147
+
148
+ ### [0.0.45](https://github.com/worktile/ngx-gantt/compare/0.0.44...0.0.45) (2020-11-21)
149
+
150
+
151
+ ### Features
152
+
153
+ * support custom group header ([32184bf](https://github.com/worktile/ngx-gantt/commit/32184bf8a303398c98fa8a4d32be03a98a8f3fca))
154
+
155
+ ### [0.0.44](https://github.com/worktile/ngx-gantt/compare/0.0.43...0.0.44) (2020-11-16)
156
+
157
+
158
+ ### Bug Fixes
159
+
160
+ * **calendar:** hide today date when view type is not day #INFR-1241 ([#82](https://github.com/worktile/ngx-gantt/issues/82)) ([2610f22](https://github.com/worktile/ngx-gantt/commit/2610f2203fbf752efd3e6307e3450fdaa2a1841a)), closes [#INFR-1241](https://github.com/worktile/ngx-gantt/issues/INFR-1241)
161
+
162
+ ### [0.0.43](https://github.com/worktile/ngx-gantt/compare/0.0.42...0.0.43) (2020-10-29)
163
+
164
+
165
+ ### Bug Fixes
166
+
167
+ * fix item position error when item start less than gantt start ([a29f273](https://github.com/worktile/ngx-gantt/commit/a29f273e7f5c1d470867771a8b458643e83cb736))
168
+ * fix item position error when item start less than gantt start ([5295f20](https://github.com/worktile/ngx-gantt/commit/5295f20458ec96ade26e2373faca8490588bac9d))
169
+
170
+ ### [0.0.42](https://github.com/worktile/ngx-gantt/compare/0.0.41...0.0.42) (2020-10-23)
171
+
172
+
173
+ ### Bug Fixes
174
+
175
+ * hide today line when today is not in date range ([f8c088d](https://github.com/worktile/ngx-gantt/commit/f8c088d748113329096c9a3e72413b0dcef7b94d))
176
+
177
+ ### [0.0.41](https://github.com/worktile/ngx-gantt/compare/0.0.40...0.0.41) (2020-09-01)
178
+
179
+
180
+ ### Bug Fixes
181
+
182
+ * just hide today line and support safari browser ([02b2157](https://github.com/worktile/ngx-gantt/commit/02b21579be6f5ba274add28c491afe04fb421a7c))
183
+
184
+ ### [0.0.40](https://github.com/worktile/ngx-gantt/compare/0.0.39...0.0.40) (2020-08-27)
185
+
186
+
187
+ ### Bug Fixes
188
+
189
+ * perfect link links ([d211bcf](https://github.com/worktile/ngx-gantt/commit/d211bcfe9e1887bf93fc187de63dea05e8cba8b0))
190
+
191
+ ### [0.0.39](https://github.com/worktile/ngx-gantt/compare/0.0.37...0.0.39) (2020-08-26)
192
+
193
+
194
+ ### Bug Fixes
195
+
196
+ * add scroll class when scroll ([#71](https://github.com/worktile/ngx-gantt/issues/71)) ([a6c8776](https://github.com/worktile/ngx-gantt/commit/a6c87761aee50228a2420b6b6316fffe863e886e))
197
+ * bump html2canvas 1.0.0-rc.7 ([52327b4](https://github.com/worktile/ngx-gantt/commit/52327b4e4a8927a64794fbe5435ba51ebe6d48b8))
198
+ * delete useless code ([f0661d5](https://github.com/worktile/ngx-gantt/commit/f0661d55d9e878631575a67aa3aa6acbc8d5a0ec))
199
+ * fix print style ([c00d2ef](https://github.com/worktile/ngx-gantt/commit/c00d2ef560fa8e4b8e17aeecc58bb237d05bfbf6))
200
+ * use custom start and end #INFR-909 ([162262c](https://github.com/worktile/ngx-gantt/commit/162262c4505f688b93445b9d30aa70ffdb9ecdaf)), closes [#INFR-909](https://github.com/worktile/ngx-gantt/issues/INFR-909)
201
+
202
+ ### [0.0.38](https://github.com/worktile/ngx-gantt/compare/0.0.37...0.0.38) (2020-08-20)
203
+
204
+
205
+ ### Bug Fixes
206
+
207
+ * bump html2canvas 1.0.0-rc.7 ([52327b4](https://github.com/worktile/ngx-gantt/commit/52327b4e4a8927a64794fbe5435ba51ebe6d48b8))
208
+
209
+ ### [0.0.37](https://github.com/worktile/ngx-gantt/compare/0.0.35...0.0.37) (2020-08-20)
210
+
211
+
212
+ ### Bug Fixes
213
+
214
+ * fix print error ([f773f28](https://github.com/worktile/ngx-gantt/commit/f773f285fe42f3a0e12509b742cb8e4287a25981))
215
+ * fix print style ([03967c8](https://github.com/worktile/ngx-gantt/commit/03967c8ac0bc35080fb201cb9c88bdb0cf6ef830))
216
+ * use fixed html2canvas version ([3850382](https://github.com/worktile/ngx-gantt/commit/385038214ad3eea157675f97beac4bb939479de6))
217
+
218
+ ### [0.0.36](https://github.com/worktile/ngx-gantt/compare/0.0.35...0.0.36) (2020-08-20)
219
+
220
+
221
+ ### Bug Fixes
222
+
223
+ * fix print error ([f773f28](https://github.com/worktile/ngx-gantt/commit/f773f285fe42f3a0e12509b742cb8e4287a25981))
224
+
225
+ ### [0.0.35](https://github.com/worktile/ngx-gantt/compare/0.0.34...0.0.35) (2020-08-19)
226
+
227
+
228
+ ### Bug Fixes
229
+
230
+ * change today line to normal element ([f5b6571](https://github.com/worktile/ngx-gantt/commit/f5b657127cc4fe001324b56638453b8d5716f23a))
231
+
232
+ ### [0.0.34](https://github.com/worktile/ngx-gantt/compare/0.0.33...0.0.34) (2020-08-12)
233
+
234
+
235
+ ### Features
236
+
237
+ * add print service ([#60](https://github.com/worktile/ngx-gantt/issues/60)) ([3fc091f](https://github.com/worktile/ngx-gantt/commit/3fc091f2023ff41968a1e38c6b68026a69d7861a))
238
+
239
+ ### [0.0.33](https://github.com/worktile/ngx-gantt/compare/0.0.32...0.0.33) (2020-08-01)
240
+
241
+
242
+ ### Bug Fixes
243
+
244
+ * use setted expandable ([0bf3387](https://github.com/worktile/ngx-gantt/commit/0bf3387fa206ac4aa010555588997d7b8dda63d3))
245
+
246
+ ### [0.0.32](https://github.com/worktile/ngx-gantt/compare/0.0.31...0.0.32) (2020-07-31)
247
+
248
+
249
+ ### Bug Fixes
250
+
251
+ * new today style and fix item style ([8d1ad7b](https://github.com/worktile/ngx-gantt/commit/8d1ad7b2bc991ddf8ed54f3fabb746d0ebda043f))
252
+
253
+ ### [0.0.31](https://github.com/worktile/ngx-gantt/compare/0.0.30...0.0.31) (2020-07-28)
254
+
255
+
256
+ ### Bug Fixes
257
+
258
+ * add template in range and change today style ([a4391a5](https://github.com/worktile/ngx-gantt/commit/a4391a54aa2086cddaa10d0d9cc3e52e4e707027))
259
+
260
+ ### [0.0.30](https://github.com/worktile/ngx-gantt/compare/0.0.25...0.0.30) (2020-07-25)
261
+
262
+
263
+ ### Bug Fixes
264
+
265
+ * add custom type in GanttItemType ([8457ab0](https://github.com/worktile/ngx-gantt/commit/8457ab069836c5c2ee99f8cba8d5e0d455fd6d31))
266
+ * init gantt item expaned ([37c2086](https://github.com/worktile/ngx-gantt/commit/37c20860d7ddff922704d68893e5c9d1136e4194))
267
+
268
+ ### [0.0.29](https://github.com/worktile/ngx-gantt/compare/0.0.25...0.0.29) (2020-07-24)
269
+
270
+ ### [0.0.28](https://github.com/worktile/ngx-gantt/compare/0.0.25...0.0.28) (2020-07-24)
271
+
272
+
273
+ ### Features
274
+
275
+ * add showTodayLine in view option ([#45](https://github.com/worktile/ngx-gantt/issues/45)) ([4ed8c3b](https://github.com/worktile/ngx-gantt/commit/4ed8c3bed7ff84d6e9b1ebc8510cfdbdbdb3a79c))
276
+ * support gantt range and bar progress ([#47](https://github.com/worktile/ngx-gantt/issues/47)) ([82f2ac1](https://github.com/worktile/ngx-gantt/commit/82f2ac106895318107b62530d800e589b1e9fbc9))
277
+
278
+
279
+ ### Bug Fixes
280
+
281
+ * fix calendar line overflow ([ec8ca06](https://github.com/worktile/ngx-gantt/commit/ec8ca0692a2b9b4ddfd16272a6ea25bca67c2204))
282
+ * fix scroll sync ([f2f8406](https://github.com/worktile/ngx-gantt/commit/f2f84064cfc88df803dba66d4299e8434a128130))
283
+ * show range when item has start and end ([c170705](https://github.com/worktile/ngx-gantt/commit/c17070506dcfc637d0c99071d94705e97b467af6))
284
+
285
+ ### [0.0.27](https://github.com/worktile/ngx-gantt/compare/0.0.25...0.0.27) (2020-07-18)
286
+
287
+
288
+ ### Features
289
+
290
+ * add showTodayLine in view option ([#45](https://github.com/worktile/ngx-gantt/issues/45)) ([4ed8c3b](https://github.com/worktile/ngx-gantt/commit/4ed8c3bed7ff84d6e9b1ebc8510cfdbdbdb3a79c))
291
+
292
+
293
+ ### Bug Fixes
294
+
295
+ * fix calendar line overflow ([ec8ca06](https://github.com/worktile/ngx-gantt/commit/ec8ca0692a2b9b4ddfd16272a6ea25bca67c2204))
296
+ * fix scroll sync ([f2f8406](https://github.com/worktile/ngx-gantt/commit/f2f84064cfc88df803dba66d4299e8434a128130))
297
+
298
+ ### [0.0.26](https://github.com/worktile/ngx-gantt/compare/0.0.25...0.0.26) (2020-07-16)
299
+
300
+
301
+ ### Bug Fixes
302
+
303
+ * fix calendar line overflow ([ec8ca06](https://github.com/worktile/ngx-gantt/commit/ec8ca0692a2b9b4ddfd16272a6ea25bca67c2204))
304
+ * fix scroll sync ([f2f8406](https://github.com/worktile/ngx-gantt/commit/f2f84064cfc88df803dba66d4299e8434a128130))
305
+
306
+ ### [0.0.25](https://github.com/worktile/ngx-gantt/compare/0.0.22...0.0.25) (2020-07-16)
307
+
308
+ ### Bug Fixes
309
+
310
+ * **calendar:** delete week backdrop and change calendar header color ([e96f1e0](https://github.com/worktile/ngx-gantt/commit/e96f1e0f67d96d22572cdff1fe2bb2cd7349f6e7))
311
+
312
+ ### [0.0.24](https://github.com/worktile/ngx-gantt/compare/0.0.22...0.0.24) (2020-07-14)
313
+
314
+
315
+ ### Features
316
+
317
+ * **util:** date add get week and export uitl date ([5a9918d](https://github.com/worktile/ngx-gantt/commit/5a9918d50967b7149bf77dec6ad286e04c1f01d9))
318
+ * support item template ([#43](https://github.com/worktile/ngx-gantt/issues/43)) ([1eb283c](https://github.com/worktile/ngx-gantt/commit/1eb283c2bca24e9c2f9736c77e89eb8a970a4f8d))
319
+
320
+
321
+ ### [0.0.23](https://github.com/worktile/ngx-gantt/compare/0.0.22...0.0.23) (2020-07-13)
322
+
323
+
324
+ ### Features
325
+
326
+ * add root component ([c4792ec](https://github.com/worktile/ngx-gantt/commit/c4792eca973356b567d2dc7b0d896df0bae6288f))
327
+
328
+
329
+ ### Bug Fixes
330
+
331
+ * **item:** fix item barStyle type ([374050f](https://github.com/worktile/ngx-gantt/commit/374050ffd149e132471f1472fea371ab65030614))
332
+
333
+ ### [0.0.22](https://github.com/worktile/ngx-gantt/compare/0.0.21...0.0.22) (2020-07-04)
334
+
335
+
336
+ ### Features
337
+
338
+ * support set bar style ([865a898](https://github.com/worktile/ngx-gantt/commit/865a898a961f6effd25239df71fc508fccf9cbcc))
339
+ * **schematics:** schematics fisrt commit ([fe36263](https://github.com/worktile/ngx-gantt/commit/fe3626375e499f0a878a56fbb81ffc8934c942af))
340
+
341
+
342
+ ### Bug Fixes
343
+
344
+ * **links:** fix build links error ([ccd638a](https://github.com/worktile/ngx-gantt/commit/ccd638afa989913d8bc49548568918a9fbb7a815))
345
+
346
+ ### [0.0.21](https://github.com/worktile/ngx-gantt/compare/0.0.18...0.0.21) (2020-07-04)
347
+
348
+
349
+ ### Bug Fixes
350
+
351
+ * fix view date calc bug ([#38](https://github.com/worktile/ngx-gantt/issues/38)) ([bd994b3](https://github.com/worktile/ngx-gantt/commit/bd994b3415847af80585d7da583cdf6674faeb85))
352
+ * **links:** except items that has not start and end ([59ce8e1](https://github.com/worktile/ngx-gantt/commit/59ce8e1eebd7af0919db746e773dfb4a978eb450))
353
+
354
+ ### [0.0.20](https://github.com/worktile/ngx-gantt/compare/0.0.18...0.0.20) (2020-07-03)
355
+
356
+ ### [0.0.19](https://github.com/worktile/ngx-gantt/compare/0.0.18...0.0.19) (2020-07-02)
357
+
358
+ ### [0.0.18](https://github.com/worktile/ngx-gantt/compare/0.0.17...0.0.18) (2020-06-30)
359
+
360
+
361
+ ### Bug Fixes
362
+
363
+ * remove children sync when data changed ([4bb9150](https://github.com/worktile/ngx-gantt/commit/4bb91505cb830327d267ffc05f001a18e465a6ff))
364
+
365
+ ### [0.0.17](https://github.com/worktile/ngx-gantt/compare/0.0.15...0.0.17) (2020-06-29)
366
+
367
+
368
+ ### Features
369
+
370
+ * support expand and collapse groups ([2072aac](https://github.com/worktile/ngx-gantt/commit/2072aac20f28ca949dabee4a607dca0e3728d931))
371
+
372
+
373
+ ### Bug Fixes
374
+
375
+ * fix expanded not work when items or groups changed ([c57bb59](https://github.com/worktile/ngx-gantt/commit/c57bb5912c2cd030c0f12d7596dd69db43b2f497))
376
+
377
+ ### [0.0.16](https://github.com/worktile/ngx-gantt/compare/0.0.14...0.0.16) (2020-06-28)
378
+
379
+
380
+ ### Features
381
+
382
+ * item add expandable, rename expand to expanded ([8cc3a55](https://github.com/worktile/ngx-gantt/commit/8cc3a55413f6e341d51cdb26502a1c776793b6ab))
383
+
384
+
385
+ ### [0.0.15](https://github.com/worktile/ngx-gantt/compare/0.0.14...0.0.15) (2020-06-28)
386
+
387
+
388
+ ### Features
389
+
390
+ * suport group and item set expand ([31838b2](https://github.com/worktile/ngx-gantt/commit/31838b27097fe6c1ae50cd8e3d40cfe9540d2dc4))
391
+ * support children display and async ([ca9faa0](https://github.com/worktile/ngx-gantt/commit/ca9faa00a4f7a322db3f69805d907b2a4164d799))
392
+
393
+
394
+ ### Bug Fixes
395
+
396
+ * fix children not expand when items change ([c34831f](https://github.com/worktile/ngx-gantt/commit/c34831f65efb0bf30a6ce54e5f1728f8d8468fc0))
397
+
398
+ ### [0.0.14](https://github.com/worktile/ngx-gantt/compare/0.0.11...0.0.14) (2020-06-20)
399
+
400
+
401
+ ### Features
402
+
403
+ * add links overlay ([7947f6a](https://github.com/worktile/ngx-gantt/commit/7947f6a34758e3ad3512111368a753ef9e55a67f))
404
+ * support set item line height ([571d7df](https://github.com/worktile/ngx-gantt/commit/571d7df04bd1652d5b759f57465529312b2f3d62))
405
+
406
+
407
+ ### Bug Fixes
408
+
409
+ * **dom:** disable browser default wheel event ([8dcf412](https://github.com/worktile/ngx-gantt/commit/8dcf412aaab8333dcdd7f4dae905f68fb7d3f07f))
410
+ * **links:** add line click ([3fb5a15](https://github.com/worktile/ngx-gantt/commit/3fb5a153f925f6fa4835462df0372953271afb4e))
411
+ * **links:** add linkDragEnded in example ([#31](https://github.com/worktile/ngx-gantt/issues/31)) ([5ef8441](https://github.com/worktile/ngx-gantt/commit/5ef8441d514b09e73d82c215a37e499d8bcd6b32))
412
+ * **links:** build links when change view type ([3f5655f](https://github.com/worktile/ngx-gantt/commit/3f5655fc5b53a6fec145b27e352277db1d627597))
413
+ * **links:** delete console ([7e10383](https://github.com/worktile/ngx-gantt/commit/7e1038397ba804f9cd62175854e1a917efdb806d))
414
+ * **links:** merge master and show link line ([359d688](https://github.com/worktile/ngx-gantt/commit/359d6881d367953a80f8805098d08e8f32b15bc2))
415
+ * **links:** review fix ([d149d3c](https://github.com/worktile/ngx-gantt/commit/d149d3cd964e120dbc1576f0f241cdeb6ff3265d))
416
+
417
+
418
+ ### [0.0.12](https://github.com/worktile/ngx-gantt/compare/0.0.11...0.0.12) (2020-06-12)
419
+
420
+
421
+ ### Features
422
+
423
+ * add links overlay ([7947f6a](https://github.com/worktile/ngx-gantt/commit/7947f6a34758e3ad3512111368a753ef9e55a67f))
424
+ * support set item line height ([571d7df](https://github.com/worktile/ngx-gantt/commit/571d7df04bd1652d5b759f57465529312b2f3d62))
425
+
426
+
427
+ ### Bug Fixes
428
+
429
+ * **dom:** disable browser default wheel event ([8dcf412](https://github.com/worktile/ngx-gantt/commit/8dcf412aaab8333dcdd7f4dae905f68fb7d3f07f))
430
+ * **links:** add line click ([3fb5a15](https://github.com/worktile/ngx-gantt/commit/3fb5a153f925f6fa4835462df0372953271afb4e))
431
+ * **links:** delete console ([7e10383](https://github.com/worktile/ngx-gantt/commit/7e1038397ba804f9cd62175854e1a917efdb806d))
432
+ * **links:** merge master and show link line ([359d688](https://github.com/worktile/ngx-gantt/commit/359d6881d367953a80f8805098d08e8f32b15bc2))
433
+ * **links:** review fix ([d149d3c](https://github.com/worktile/ngx-gantt/commit/d149d3cd964e120dbc1576f0f241cdeb6ff3265d))
434
+
435
+ ### [0.0.11](https://github.com/worktile/ngx-gantt/compare/0.0.10...0.0.11) (2020-06-10)
436
+
437
+
438
+ ### Bug Fixes
439
+
440
+ * **flat:** fix group items empty style and fix load on scroll ([29c0d52](https://github.com/worktile/ngx-gantt/commit/29c0d52344052639a6e31799ef56746cea050053))
441
+
442
+ ### [0.0.10](https://github.com/worktile/ngx-gantt/compare/0.0.9...0.0.10) (2020-06-09)
443
+
444
+
445
+ ### Features
446
+
447
+ * add merge mode component 'ngx-gantt-flat' ([164d1a5](https://github.com/worktile/ngx-gantt/commit/164d1a510554efc1e456074078bdae509900efe6))
448
+
449
+ ### [0.0.9](https://github.com/worktile/ngx-gantt/compare/0.0.7...0.0.9) (2020-06-06)
450
+
451
+
452
+ ### Bug Fixes
453
+
454
+ * fix today line compute and group state sync bug ([#23](https://github.com/worktile/ngx-gantt/issues/23)) ([641ac49](https://github.com/worktile/ngx-gantt/commit/641ac49bfa40be86f25d8ddfc26bc682496388b2))
455
+ * **column:** compute column width in util ([1b4078a](https://github.com/worktile/ngx-gantt/commit/1b4078a8a7ba1e65bdfebda7417558d90ba19ced))
456
+
457
+ ### [0.0.8](https://github.com/worktile/ngx-gantt/compare/0.0.7...0.0.8) (2020-06-06)
458
+
459
+
460
+ ### Bug Fixes
461
+
462
+ * fix today line compute and group state sync bug ([#23](https://github.com/worktile/ngx-gantt/issues/23)) ([641ac49](https://github.com/worktile/ngx-gantt/commit/641ac49bfa40be86f25d8ddfc26bc682496388b2))
463
+ * **column:** compute column width in util ([1b4078a](https://github.com/worktile/ngx-gantt/commit/1b4078a8a7ba1e65bdfebda7417558d90ba19ced))
464
+
465
+ ### [0.0.7](https://github.com/worktile/ngx-gantt/compare/0.0.3...0.0.7) (2020-06-04)
466
+
467
+
468
+ ### Features
469
+
470
+ * add icon component and use with group expand ([cd162b9](https://github.com/worktile/ngx-gantt/commit/cd162b9d1cf35aab39ab66ae31666f92689a9f89))
471
+ * add side shadow ([e5c7fd0](https://github.com/worktile/ngx-gantt/commit/e5c7fd0aa0a020d83c048575b1aa17eedcefe87e))
472
+ * refactor styles and add dragging mask backdrop ([f34f3e6](https://github.com/worktile/ngx-gantt/commit/f34f3e62d788bb294c1b21528ec933ce2a46db9e))
473
+ * **icon:** add icons ([c1e0648](https://github.com/worktile/ngx-gantt/commit/c1e06484a47f000ab9192bd8e7769fed7c5e1fc8))
474
+
475
+
476
+ ### Bug Fixes
477
+
478
+ * fix group template context and group expand ([92958dc](https://github.com/worktile/ngx-gantt/commit/92958dc826d4c83a346bbac342c64671837738d2))
479
+ * **gantt-table:** add ngx-gantt-table component ([#16](https://github.com/worktile/ngx-gantt/issues/16)) ([8b09018](https://github.com/worktile/ngx-gantt/commit/8b090187d5665cc5c1cf938f0a400979ec5a934c))
480
+ * **table:** change table td padding ([#17](https://github.com/worktile/ngx-gantt/issues/17)) ([41d89d9](https://github.com/worktile/ngx-gantt/commit/41d89d9b7fdc2ea45de8e56ca4087369b93998a0))
481
+ * **table:** change td and th padding ([362ce4e](https://github.com/worktile/ngx-gantt/commit/362ce4ecf2afd417eda2c7dbcac9040635628a34))
482
+ * **table:** fix side overflow ([03e1b38](https://github.com/worktile/ngx-gantt/commit/03e1b389a00eb6ff272cedbfd615b011b6a2aabf))
483
+ * **table:** use one table in gantt table ([#15](https://github.com/worktile/ngx-gantt/issues/15)) ([ce344e3](https://github.com/worktile/ngx-gantt/commit/ce344e399fb18dddb5a26536d2231236043e0d54))
484
+ * fix onChanges event and dragging backdrop position ([d78695b](https://github.com/worktile/ngx-gantt/commit/d78695be5fb1b9c67aacc9d30bd0e2b5d7303967))
485
+
486
+ ### [0.0.6](https://github.com/worktile/ngx-gantt/compare/0.0.3...0.0.6) (2020-06-04)
487
+
488
+
489
+ ### Features
490
+
491
+ * add icon component and use with group expand ([cd162b9](https://github.com/worktile/ngx-gantt/commit/cd162b9d1cf35aab39ab66ae31666f92689a9f89))
492
+ * add side shadow ([e5c7fd0](https://github.com/worktile/ngx-gantt/commit/e5c7fd0aa0a020d83c048575b1aa17eedcefe87e))
493
+ * refactor styles and add dragging mask backdrop ([f34f3e6](https://github.com/worktile/ngx-gantt/commit/f34f3e62d788bb294c1b21528ec933ce2a46db9e))
494
+ * **icon:** add icons ([c1e0648](https://github.com/worktile/ngx-gantt/commit/c1e06484a47f000ab9192bd8e7769fed7c5e1fc8))
495
+
496
+
497
+ ### Bug Fixes
498
+
499
+ * fix group template context and group expand ([92958dc](https://github.com/worktile/ngx-gantt/commit/92958dc826d4c83a346bbac342c64671837738d2))
500
+ * **gantt-table:** add ngx-gantt-table component ([#16](https://github.com/worktile/ngx-gantt/issues/16)) ([8b09018](https://github.com/worktile/ngx-gantt/commit/8b090187d5665cc5c1cf938f0a400979ec5a934c))
501
+ * **table:** change table td padding ([#17](https://github.com/worktile/ngx-gantt/issues/17)) ([41d89d9](https://github.com/worktile/ngx-gantt/commit/41d89d9b7fdc2ea45de8e56ca4087369b93998a0))
502
+ * **table:** use one table in gantt table ([#15](https://github.com/worktile/ngx-gantt/issues/15)) ([ce344e3](https://github.com/worktile/ngx-gantt/commit/ce344e399fb18dddb5a26536d2231236043e0d54))
503
+
504
+ ### [0.0.5](https://github.com/worktile/ngx-gantt/compare/0.0.3...0.0.5) (2020-06-03)
505
+
506
+
507
+ ### Features
508
+
509
+ * add icon component and use with group expand ([cd162b9](https://github.com/worktile/ngx-gantt/commit/cd162b9d1cf35aab39ab66ae31666f92689a9f89))
510
+ * add side shadow ([e5c7fd0](https://github.com/worktile/ngx-gantt/commit/e5c7fd0aa0a020d83c048575b1aa17eedcefe87e))
511
+ * refactor styles and add dragging mask backdrop ([f34f3e6](https://github.com/worktile/ngx-gantt/commit/f34f3e62d788bb294c1b21528ec933ce2a46db9e))
512
+ * **icon:** add icons ([c1e0648](https://github.com/worktile/ngx-gantt/commit/c1e06484a47f000ab9192bd8e7769fed7c5e1fc8))
513
+
514
+
515
+ ### Bug Fixes
516
+
517
+ * fix group template context and group expand ([92958dc](https://github.com/worktile/ngx-gantt/commit/92958dc826d4c83a346bbac342c64671837738d2))
518
+ * **gantt-table:** add ngx-gantt-table component ([#16](https://github.com/worktile/ngx-gantt/issues/16)) ([8b09018](https://github.com/worktile/ngx-gantt/commit/8b090187d5665cc5c1cf938f0a400979ec5a934c))
519
+ * **table:** use one table in gantt table ([#15](https://github.com/worktile/ngx-gantt/issues/15)) ([ce344e3](https://github.com/worktile/ngx-gantt/commit/ce344e399fb18dddb5a26536d2231236043e0d54))
520
+
521
+ ### [0.0.4](https://github.com/worktile/ngx-gantt/compare/0.0.2...0.0.4) (2020-06-01)
522
+
523
+
524
+ ### Features
525
+
526
+ * add icon component and use with group expand ([cd162b9](https://github.com/worktile/ngx-gantt/commit/cd162b9d1cf35aab39ab66ae31666f92689a9f89))
527
+
528
+
529
+ ### Bug Fixes
530
+
531
+ * fix group template context and group expand ([92958dc](https://github.com/worktile/ngx-gantt/commit/92958dc826d4c83a346bbac342c64671837738d2))
532
+
533
+ ### [0.0.3](https://github.com/worktile/ngx-gantt/compare/0.0.2...0.0.3) (2020-06-01)
534
+
535
+ ### 0.0.2 (2020-06-01)
536
+
537
+
538
+ ### Bug Fixes
539
+
540
+ * output scss files
541
+
542
+ <a name="0.0.1"></a>
543
+ ## 0.0.1 (2020-05-29)
544
+
545
+
546
+ ### Bug Fixes
547
+
548
+ * **gantt-table:** add collapse in gantt table group ([5101eea](https://github.com/worktile/ngx-gantt/commit/5101eea))
549
+
550
+
551
+ ### Features
552
+
553
+ * add drag and dom service ([2f33f57](https://github.com/worktile/ngx-gantt/commit/2f33f57))
554
+ * add gantt print service ([3a6cd36](https://github.com/worktile/ngx-gantt/commit/3a6cd36))
555
+ * add today line and auto scroll today ([#13](https://github.com/worktile/ngx-gantt/issues/13)) ([aa93ef0](https://github.com/worktile/ngx-gantt/commit/aa93ef0))
556
+ * gantt table component ([742f094](https://github.com/worktile/ngx-gantt/commit/742f094))
557
+ * initialize gantt structure and components ([d60b4a7](https://github.com/worktile/ngx-gantt/commit/d60b4a7))
558
+ * **gant-table:** add gantt table style ([f195f79](https://github.com/worktile/ngx-gantt/commit/f195f79))
559
+ * **gantt-table:** add header template in column ([#12](https://github.com/worktile/ngx-gantt/issues/12)) ([9474055](https://github.com/worktile/ngx-gantt/commit/9474055))
560
+ * scroll side and viewer scroll ([de7d358](https://github.com/worktile/ngx-gantt/commit/de7d358))
561
+ * structure adjustment ([a5082ec](https://github.com/worktile/ngx-gantt/commit/a5082ec))
562
+ * support expand group ([e371cb0](https://github.com/worktile/ngx-gantt/commit/e371cb0))
563
+ * **gantt-table:** add width in gantt column ([bdcaa88](https://github.com/worktile/ngx-gantt/commit/bdcaa88))
564
+ * **table:** add gantt side table ([89a7db9](https://github.com/worktile/ngx-gantt/commit/89a7db9))
package/Dockerfile ADDED
@@ -0,0 +1,4 @@
1
+ FROM nginx:mainline-alpine
2
+ RUN rm /etc/nginx/conf.d/*
3
+ ADD nginx.conf /etc/nginx/conf.d/
4
+ COPY dist/example /etc/nginx/html
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License
2
+
3
+ Copyright (c) 2018 - 2019 Worktile Inc. https://worktile.com
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
13
+ all 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
21
+ THE SOFTWARE.