@dhtmlx/trial-vue-gantt 1.1.2 → 9.1.4

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 (46) hide show
  1. package/README.md +126 -262
  2. package/dist/dhtmlxgantt.vue.es.d.ts +352 -0
  3. package/dist/dhtmlxgantt.vue.es.js +18052 -0
  4. package/dist/vue-gantt.css +1 -0
  5. package/license.txt +43 -0
  6. package/package.json +55 -62
  7. package/whatsnew.md +1157 -0
  8. package/public/dist/gantt.js +0 -1
  9. package/src/components/Gantt.vue +0 -238
  10. package/src/components/TimeScale.vue +0 -57
  11. package/src/components/chart/Bars.vue +0 -470
  12. package/src/components/chart/CellGrid.vue +0 -22
  13. package/src/components/chart/Chart.vue +0 -236
  14. package/src/components/chart/Links.vue +0 -35
  15. package/src/components/chart/NewLink.vue +0 -39
  16. package/src/components/grid/Body.vue +0 -256
  17. package/src/components/grid/Grid.vue +0 -98
  18. package/src/components/grid/Header.vue +0 -104
  19. package/src/components/grid/actions/reorder.js +0 -193
  20. package/src/components/sidebar/Links.vue +0 -147
  21. package/src/components/sidebar/Sidebar.vue +0 -219
  22. package/src/locales/cn.js +0 -21
  23. package/src/locales/en.js +0 -21
  24. package/src/locales/ru.js +0 -21
  25. package/src/main.js +0 -46
  26. package/src/state/local.js +0 -48
  27. package/src/wx/Button.vue +0 -54
  28. package/src/wx/CNLocale.js +0 -15
  29. package/src/wx/Calendar.vue +0 -194
  30. package/src/wx/Counter.vue +0 -154
  31. package/src/wx/Datepicker.vue +0 -153
  32. package/src/wx/DefaultTheme.vue +0 -104
  33. package/src/wx/ENLocale.js +0 -15
  34. package/src/wx/IconButton.vue +0 -39
  35. package/src/wx/MaterialTheme.vue +0 -107
  36. package/src/wx/RULocale.js +0 -15
  37. package/src/wx/Select.vue +0 -75
  38. package/src/wx/Slider.vue +0 -150
  39. package/src/wx/Text.vue +0 -73
  40. package/src/wx/Textarea.vue +0 -63
  41. package/src/wx/Tooltip.vue +0 -110
  42. package/src/wx/index.js +0 -35
  43. package/src/wx/locale.js +0 -1
  44. package/src/wx/locales/cn.js +0 -39
  45. package/src/wx/locales/en.js +0 -39
  46. package/src/wx/locales/ru.js +0 -39
@@ -1,39 +0,0 @@
1
- const days = ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"];
2
-
3
- const months = [
4
- "January",
5
- "February",
6
- "March",
7
- "April",
8
- "May",
9
- "June",
10
- "July",
11
- "August",
12
- "September",
13
- "October",
14
- "November",
15
- "December",
16
- ];
17
-
18
- let data = {
19
- __dates: {
20
- months,
21
- days,
22
- },
23
- };
24
-
25
- export default function wrapper() {
26
- return {
27
- _(key) {
28
- return data[key] || key;
29
- },
30
- __(group, key) {
31
- const block = data[group];
32
- return block ? block[key] || key : key;
33
- },
34
- extend(values) {
35
- data = { ...data, ...values };
36
- return this;
37
- },
38
- };
39
- }
@@ -1,39 +0,0 @@
1
- const days = ["Вск", "Пон", "Вт", "Срд", "Чет", "Пт", "Суб"];
2
-
3
- const months = [
4
- "Январь",
5
- "Февраль",
6
- "Март",
7
- "Апрель",
8
- "Май",
9
- "Июнь",
10
- "Июль",
11
- "Август",
12
- "Сентябрь",
13
- "Октябрь",
14
- "Ноябрь",
15
- "Декабрь",
16
- ];
17
-
18
- let data = {
19
- __dates: {
20
- months,
21
- days,
22
- },
23
- };
24
-
25
- export default function wrapper() {
26
- return {
27
- _(key) {
28
- return data[key] || key;
29
- },
30
- __(group, key) {
31
- const block = data[group];
32
- return block ? block[key] || key : key;
33
- },
34
- extend(values) {
35
- data = { ...data, ...values };
36
- return this;
37
- },
38
- };
39
- }