@dssp/project 1.0.0-alpha.40 → 1.0.0-alpha.47
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-client/pages/lib/chatbot-widget.d.ts +18 -8
- package/dist-client/pages/lib/chatbot-widget.js +249 -87
- package/dist-client/pages/lib/chatbot-widget.js.map +1 -1
- package/dist-client/pages/lib/select2-component.d.ts +1 -1
- package/dist-client/pages/lib/select2-component.js +35 -35
- package/dist-client/pages/lib/select2-component.js.map +1 -1
- package/dist-client/pages/project/project-detail.js.map +1 -1
- package/dist-client/pages/project/project-list.d.ts +34 -0
- package/dist-client/pages/project/project-list.js +35 -0
- package/dist-client/pages/project/project-list.js.map +1 -1
- package/dist-client/pages/project/project-update.js +168 -29
- package/dist-client/pages/project/project-update.js.map +1 -1
- package/dist-client/route.d.ts +1 -1
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-server/service/project/project-mutation.d.ts +2 -1
- package/dist-server/service/project/project-mutation.js +35 -1
- package/dist-server/service/project/project-mutation.js.map +1 -1
- package/dist-server/service/project/project-query.d.ts +1 -0
- package/dist-server/service/project/project-query.js +16 -0
- package/dist-server/service/project/project-query.js.map +1 -1
- package/dist-server/service/project/project-type.d.ts +6 -0
- package/dist-server/service/project/project-type.js +23 -1
- package/dist-server/service/project/project-type.js.map +1 -1
- package/dist-server/service/project/project.d.ts +2 -0
- package/dist-server/service/project/project.js +10 -0
- package/dist-server/service/project/project.js.map +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
- package/translations/en.json +10 -9
- package/translations/ja.json +15 -1
- package/translations/ko.json +3 -0
- package/translations/ms.json +15 -1
- package/translations/zh.json +15 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dssp/project",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.47",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "dist-client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"migration:create": "node ../../node_modules/typeorm/cli.js migration:create -d ./server/migrations"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@dssp/building-complex": "^1.0.0-alpha.
|
|
31
|
-
"@dssp/supervision": "^1.0.0-alpha.
|
|
30
|
+
"@dssp/building-complex": "^1.0.0-alpha.47",
|
|
31
|
+
"@dssp/supervision": "^1.0.0-alpha.47",
|
|
32
32
|
"@operato/graphql": "^9.0.0",
|
|
33
33
|
"@operato/shell": "^9.0.0",
|
|
34
34
|
"@things-factory/auth-base": "^9.0.0",
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"archiver": "5.3.2",
|
|
42
42
|
"exceljs": "^4.4.0"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "7d4581a4d3fd62e8f5588235bb655c0246343dc5"
|
|
45
45
|
}
|
package/translations/en.json
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"label.gantt-task-
|
|
2
|
+
"button.project_create": "프로젝트 생성",
|
|
3
|
+
"field.start-date": "시작 날짜",
|
|
4
|
+
"field.end-date": "종료 날짜",
|
|
5
|
+
"label.gantt-task-title": "작업명",
|
|
6
6
|
"label.gantt-task-start-date": "시작 날짜",
|
|
7
|
-
"label.gantt-task-end-date": "종료 날짜",
|
|
8
|
-
"label.gantt-task-tags": "태그",
|
|
9
|
-
"label.gantt-task-progress": "진행 상황",
|
|
10
|
-
"label.gantt-task-previous": "이전",
|
|
11
7
|
"label.gantt-task-resources": "자원",
|
|
12
8
|
"label.gantt-task-duration": "기간",
|
|
13
9
|
"label.gantt-resource-type": "유형",
|
|
14
|
-
"label.gantt-resource-allocated": "할당"
|
|
10
|
+
"label.gantt-resource-allocated": "할당",
|
|
11
|
+
"label.project_name": "프로젝트 이름",
|
|
12
|
+
"title.lookup project": "프로젝트 조회",
|
|
13
|
+
"title.project_create": "프로젝트 생성",
|
|
14
|
+
"title.project_update": "프로젝트 수정",
|
|
15
|
+
"title.project_setting_list": "프로젝트 설정 리스트"
|
|
15
16
|
}
|
package/translations/ja.json
CHANGED
|
@@ -1 +1,15 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"button.project_create": "프로젝트 생성",
|
|
3
|
+
"field.start-date": "시작 날짜",
|
|
4
|
+
"field.end-date": "종료 날짜",
|
|
5
|
+
"label.gantt-task-title": "작업명",
|
|
6
|
+
"label.gantt-task-start-date": "시작 날짜",
|
|
7
|
+
"label.gantt-task-resources": "자원",
|
|
8
|
+
"label.gantt-task-duration": "기간",
|
|
9
|
+
"label.gantt-resource-type": "유형",
|
|
10
|
+
"label.gantt-resource-allocated": "할당",
|
|
11
|
+
"label.project_name": "프로젝트 이름",
|
|
12
|
+
"title.project_create": "프로젝트 생성",
|
|
13
|
+
"title.project_update": "프로젝트 수정",
|
|
14
|
+
"title.project_setting_list": "프로젝트 설정 리스트"
|
|
15
|
+
}
|
package/translations/ko.json
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"button.project_create": "프로젝트 생성",
|
|
3
|
+
"field.start-date": "시작 날짜",
|
|
4
|
+
"field.end-date": "종료 날짜",
|
|
3
5
|
"label.gantt-task-title": "작업명",
|
|
4
6
|
"label.gantt-task-start-date": "시작 날짜",
|
|
5
7
|
"label.gantt-task-resources": "자원",
|
|
@@ -7,6 +9,7 @@
|
|
|
7
9
|
"label.gantt-resource-type": "유형",
|
|
8
10
|
"label.gantt-resource-allocated": "할당",
|
|
9
11
|
"label.project_name": "프로젝트 이름",
|
|
12
|
+
"title.lookup project": "프로젝트 조회",
|
|
10
13
|
"title.project_create": "프로젝트 생성",
|
|
11
14
|
"title.project_update": "프로젝트 수정",
|
|
12
15
|
"title.project_setting_list": "프로젝트 설정 리스트"
|
package/translations/ms.json
CHANGED
|
@@ -1 +1,15 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"button.project_create": "프로젝트 생성",
|
|
3
|
+
"field.start-date": "시작 날짜",
|
|
4
|
+
"field.end-date": "종료 날짜",
|
|
5
|
+
"label.gantt-task-title": "작업명",
|
|
6
|
+
"label.gantt-task-start-date": "시작 날짜",
|
|
7
|
+
"label.gantt-task-resources": "자원",
|
|
8
|
+
"label.gantt-task-duration": "기간",
|
|
9
|
+
"label.gantt-resource-type": "유형",
|
|
10
|
+
"label.gantt-resource-allocated": "할당",
|
|
11
|
+
"label.project_name": "프로젝트 이름",
|
|
12
|
+
"title.project_create": "프로젝트 생성",
|
|
13
|
+
"title.project_update": "프로젝트 수정",
|
|
14
|
+
"title.project_setting_list": "프로젝트 설정 리스트"
|
|
15
|
+
}
|
package/translations/zh.json
CHANGED
|
@@ -1 +1,15 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"button.project_create": "프로젝트 생성",
|
|
3
|
+
"field.start-date": "시작 날짜",
|
|
4
|
+
"field.end-date": "종료 날짜",
|
|
5
|
+
"label.gantt-task-title": "작업명",
|
|
6
|
+
"label.gantt-task-start-date": "시작 날짜",
|
|
7
|
+
"label.gantt-task-resources": "자원",
|
|
8
|
+
"label.gantt-task-duration": "기간",
|
|
9
|
+
"label.gantt-resource-type": "유형",
|
|
10
|
+
"label.gantt-resource-allocated": "할당",
|
|
11
|
+
"label.project_name": "프로젝트 이름",
|
|
12
|
+
"title.project_create": "프로젝트 생성",
|
|
13
|
+
"title.project_update": "프로젝트 수정",
|
|
14
|
+
"title.project_setting_list": "프로젝트 설정 리스트"
|
|
15
|
+
}
|