@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.
- package/README.md +126 -262
- package/dist/dhtmlxgantt.vue.es.d.ts +352 -0
- package/dist/dhtmlxgantt.vue.es.js +18052 -0
- package/dist/vue-gantt.css +1 -0
- package/license.txt +43 -0
- package/package.json +55 -62
- package/whatsnew.md +1157 -0
- package/public/dist/gantt.js +0 -1
- package/src/components/Gantt.vue +0 -238
- package/src/components/TimeScale.vue +0 -57
- package/src/components/chart/Bars.vue +0 -470
- package/src/components/chart/CellGrid.vue +0 -22
- package/src/components/chart/Chart.vue +0 -236
- package/src/components/chart/Links.vue +0 -35
- package/src/components/chart/NewLink.vue +0 -39
- package/src/components/grid/Body.vue +0 -256
- package/src/components/grid/Grid.vue +0 -98
- package/src/components/grid/Header.vue +0 -104
- package/src/components/grid/actions/reorder.js +0 -193
- package/src/components/sidebar/Links.vue +0 -147
- package/src/components/sidebar/Sidebar.vue +0 -219
- package/src/locales/cn.js +0 -21
- package/src/locales/en.js +0 -21
- package/src/locales/ru.js +0 -21
- package/src/main.js +0 -46
- package/src/state/local.js +0 -48
- package/src/wx/Button.vue +0 -54
- package/src/wx/CNLocale.js +0 -15
- package/src/wx/Calendar.vue +0 -194
- package/src/wx/Counter.vue +0 -154
- package/src/wx/Datepicker.vue +0 -153
- package/src/wx/DefaultTheme.vue +0 -104
- package/src/wx/ENLocale.js +0 -15
- package/src/wx/IconButton.vue +0 -39
- package/src/wx/MaterialTheme.vue +0 -107
- package/src/wx/RULocale.js +0 -15
- package/src/wx/Select.vue +0 -75
- package/src/wx/Slider.vue +0 -150
- package/src/wx/Text.vue +0 -73
- package/src/wx/Textarea.vue +0 -63
- package/src/wx/Tooltip.vue +0 -110
- package/src/wx/index.js +0 -35
- package/src/wx/locale.js +0 -1
- package/src/wx/locales/cn.js +0 -39
- package/src/wx/locales/en.js +0 -39
- package/src/wx/locales/ru.js +0 -39
package/src/wx/locales/en.js
DELETED
|
@@ -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
|
-
}
|
package/src/wx/locales/ru.js
DELETED
|
@@ -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
|
-
}
|