@dssp/dkpi 1.0.0-alpha.87 → 1.0.0-alpha.88
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/_index.html +4 -4
- package/assets/helps/index.md +1 -1
- package/assets/manifest.json +2 -2
- package/dist-client/components/kpi-boxplot-chart.d.ts +7 -0
- package/dist-client/components/kpi-boxplot-chart.js +20 -5
- package/dist-client/components/kpi-boxplot-chart.js.map +1 -1
- package/dist-client/components/kpi-lookup-chart.js +1 -17
- package/dist-client/components/kpi-lookup-chart.js.map +1 -1
- package/dist-client/components/kpi-radar-chart.js +2 -2
- package/dist-client/components/kpi-radar-chart.js.map +1 -1
- package/dist-client/components/kpi-single-boxplot-chart.d.ts +7 -0
- package/dist-client/components/kpi-single-boxplot-chart.js +27 -26
- package/dist-client/components/kpi-single-boxplot-chart.js.map +1 -1
- package/dist-client/components/kpi-step-lookup-chart.d.ts +33 -0
- package/dist-client/components/kpi-step-lookup-chart.js +181 -0
- package/dist-client/components/kpi-step-lookup-chart.js.map +1 -0
- package/dist-client/components/kpi-trend-chart.js +2 -12
- package/dist-client/components/kpi-trend-chart.js.map +1 -1
- package/dist-client/google-map/common-google-map.js +5 -1
- package/dist-client/google-map/common-google-map.js.map +1 -1
- package/dist-client/pages/kpi-admin/dssp-kpi-overview.d.ts +2 -1
- package/dist-client/pages/kpi-admin/dssp-kpi-overview.js +24 -9
- package/dist-client/pages/kpi-admin/dssp-kpi-overview.js.map +1 -1
- package/dist-client/pages/kpi-admin/kpi-system-guide.js +311 -158
- package/dist-client/pages/kpi-admin/kpi-system-guide.js.map +1 -1
- package/dist-client/pages/kpi-dashboard/components/kpi-left-panel.d.ts +6 -0
- package/dist-client/pages/kpi-dashboard/components/kpi-left-panel.js +110 -50
- package/dist-client/pages/kpi-dashboard/components/kpi-left-panel.js.map +1 -1
- package/dist-client/pages/kpi-dashboard/components/kpi-map-panel.d.ts +0 -9
- package/dist-client/pages/kpi-dashboard/components/kpi-map-panel.js +6 -91
- package/dist-client/pages/kpi-dashboard/components/kpi-map-panel.js.map +1 -1
- package/dist-client/pages/kpi-dashboard/components/kpi-region-popup.d.ts +2 -0
- package/dist-client/pages/kpi-dashboard/components/kpi-region-popup.js +148 -68
- package/dist-client/pages/kpi-dashboard/components/kpi-region-popup.js.map +1 -1
- package/dist-client/pages/kpi-dashboard/kpi-dashboard-map.js +85 -41
- package/dist-client/pages/kpi-dashboard/kpi-dashboard-map.js.map +1 -1
- package/dist-client/pages/kpi-dashboard/kpi-dashboard.js +15 -7
- package/dist-client/pages/kpi-dashboard/kpi-dashboard.js.map +1 -1
- package/dist-client/pages/project-complete-tabs/pc-tab1-plan.js +16 -25
- package/dist-client/pages/project-complete-tabs/pc-tab1-plan.js.map +1 -1
- package/dist-client/pages/project-complete-tabs/pc-tab2-rating.js +9 -13
- package/dist-client/pages/project-complete-tabs/pc-tab2-rating.js.map +1 -1
- package/dist-client/pages/project-complete-tabs/pc-tab4-monthly.js +9 -15
- package/dist-client/pages/project-complete-tabs/pc-tab4-monthly.js.map +1 -1
- package/dist-client/pages/sv-project-complete.js +7 -11
- package/dist-client/pages/sv-project-complete.js.map +1 -1
- package/dist-client/pages/sv-project-completed-list.js +4 -4
- package/dist-client/pages/sv-project-completed-list.js.map +1 -1
- package/dist-client/pages/sv-project-detail.d.ts +1 -0
- package/dist-client/pages/sv-project-detail.js +65 -51
- package/dist-client/pages/sv-project-detail.js.map +1 -1
- package/dist-client/pages/sv-project-list.js +15 -12
- package/dist-client/pages/sv-project-list.js.map +1 -1
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-client/viewparts/menu-tools.js +17 -3
- package/dist-client/viewparts/menu-tools.js.map +1 -1
- package/dist-server/service/kpi-stat/kpi-stat-query.js +20 -19
- package/dist-server/service/kpi-stat/kpi-stat-query.js.map +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/openapi/unstable.yaml +2 -2
- package/package.json +3 -3
- package/schema.graphql +20 -0
- package/translations/ko.json +2 -2
- package/views/auth-page.html +4 -4
- package/views/public/home.html +5 -5
package/openapi/unstable.yaml
CHANGED
|
@@ -2,9 +2,9 @@ openapi: 3.0.0
|
|
|
2
2
|
info:
|
|
3
3
|
description: >
|
|
4
4
|
For the latest release information please check our [release notes](https://developer.dssp.com/release_notes).
|
|
5
|
-
The Digital Digital KPI
|
|
5
|
+
The Digital Digital platform-based KPI Navigator API exposes integrations endpoint and related functions.
|
|
6
6
|
version: 'unstable'
|
|
7
|
-
title: 'Digital Digital KPI
|
|
7
|
+
title: 'Digital Digital platform-based KPI Navigator'
|
|
8
8
|
termsOfService: 'https://dssp.com/terms/'
|
|
9
9
|
contact:
|
|
10
10
|
email: 'heartyoh@hatiolab.com'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dssp/dkpi",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.88",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "dist-client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"@dssp/integration-allbaro": "^1.0.0-alpha.84",
|
|
52
52
|
"@dssp/integration-kiscon": "^1.0.0-alpha.84",
|
|
53
|
-
"@dssp/project": "^1.0.0-alpha.
|
|
53
|
+
"@dssp/project": "^1.0.0-alpha.88",
|
|
54
54
|
"@material/web": "^2.4.0",
|
|
55
55
|
"@operato/chart": "^10.0.0-beta",
|
|
56
56
|
"@operato/gantt": "^10.0.0-beta",
|
|
@@ -107,5 +107,5 @@
|
|
|
107
107
|
"devDependencies": {
|
|
108
108
|
"@things-factory/builder": "^10.0.0-beta"
|
|
109
109
|
},
|
|
110
|
-
"gitHead": "
|
|
110
|
+
"gitHead": "efe6db8b3aeb1bb006ae4bf14db38a28ba0f86c1"
|
|
111
111
|
}
|
package/schema.graphql
CHANGED
|
@@ -2669,6 +2669,11 @@ type Data {
|
|
|
2669
2669
|
The tag name attached to the data, used for filtering and identification.
|
|
2670
2670
|
"""
|
|
2671
2671
|
tag: String!
|
|
2672
|
+
|
|
2673
|
+
"""
|
|
2674
|
+
Server publish timestamp in epoch milliseconds, stamped at delivery. Used by clients to monitor data delivery lag.
|
|
2675
|
+
"""
|
|
2676
|
+
ts: Float
|
|
2672
2677
|
}
|
|
2673
2678
|
|
|
2674
2679
|
"""
|
|
@@ -7627,6 +7632,11 @@ type Mutation {
|
|
|
7627
7632
|
"""즐겨찾기 토글"""
|
|
7628
7633
|
toggleFieldDocumentFavorite(id: String!): FieldDocument!
|
|
7629
7634
|
|
|
7635
|
+
"""
|
|
7636
|
+
Presence heartbeat — bump current user's lastSeenAt in the session (online indicator).
|
|
7637
|
+
"""
|
|
7638
|
+
touchPresence(sessionId: String!): Boolean!
|
|
7639
|
+
|
|
7630
7640
|
"""
|
|
7631
7641
|
Transfers domain ownership to another user. Use this mutation to assign the owner role to a different user within the domain.
|
|
7632
7642
|
"""
|
|
@@ -13935,6 +13945,16 @@ type Subscription {
|
|
|
13935
13945
|
"""Subscribes to real-time updates for a specific board."""
|
|
13936
13946
|
board(id: String!): Board!
|
|
13937
13947
|
|
|
13948
|
+
"""
|
|
13949
|
+
Subscribes to board edit patches (AI or user-direct) for real-time collaboration on a board.
|
|
13950
|
+
"""
|
|
13951
|
+
boardPatchActivity(boardId: String!): PatchEntry!
|
|
13952
|
+
|
|
13953
|
+
"""
|
|
13954
|
+
Subscribes to chat messages (user / assistant / system) of a session for real-time group chat.
|
|
13955
|
+
"""
|
|
13956
|
+
chatMessageActivity(sessionId: String!): ChatMessage!
|
|
13957
|
+
|
|
13938
13958
|
"""Subscribes to log messages from connections."""
|
|
13939
13959
|
connectionLog(level: String): Log!
|
|
13940
13960
|
|
package/translations/ko.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"menu.home": "HOME",
|
|
3
3
|
"label.domain_type.domain": "관리자 도메인",
|
|
4
|
-
"label.domain_type.project": "
|
|
5
|
-
"label.select_domain": "
|
|
4
|
+
"label.domain_type.project": "프로젝트 목록",
|
|
5
|
+
"label.select_domain": "프로젝트 선택",
|
|
6
6
|
"label.search_domain": "이름 또는 관리번호 검색"
|
|
7
7
|
}
|
package/views/auth-page.html
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<html lang="en">
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8" />
|
|
5
|
-
<title>Digital KPI
|
|
5
|
+
<title>Digital platform-based KPI Navigator</title>
|
|
6
6
|
<meta name="generator" content="Things Factory Starter Kit" />
|
|
7
7
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
|
|
8
8
|
<meta name="description" content="Build Smarter with Every Metric" />
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
|
|
22
22
|
<!-- Add to homescreen for Chrome on Android. Fallback for manifest.json -->
|
|
23
23
|
<meta name="mobile-web-app-capable" content="yes" />
|
|
24
|
-
<meta name="application-name" content="Digital KPI
|
|
24
|
+
<meta name="application-name" content="Digital platform-based KPI Navigator" />
|
|
25
25
|
<meta name="application-description" content="Build Smarter with Every Metric" />
|
|
26
26
|
<meta name="application-copyright" content="Copyright © hatiolab.com. All Rights Reserved." />
|
|
27
27
|
<link rel="application-icon" href="/assets/manifest/icon-96x96.png" />
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
<!-- Add to homescreen for Safari on iOS -->
|
|
30
30
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
31
31
|
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
|
|
32
|
-
<meta name="apple-mobile-web-app-title" content="Digital KPI
|
|
32
|
+
<meta name="apple-mobile-web-app-title" content="Digital platform-based KPI Navigator" />
|
|
33
33
|
|
|
34
34
|
<!-- Homescreen icons -->
|
|
35
35
|
<link rel="apple-touch-icon" href="/assets/manifest/icon-48x48.png" />
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
<meta name="twitter:card" content="summary" />
|
|
48
48
|
<meta name="twitter:site" content="@username" />
|
|
49
49
|
<meta property="og:type" content="website" />
|
|
50
|
-
<meta property="og:site_name" content="Digital KPI
|
|
50
|
+
<meta property="og:site_name" content="Digital platform-based KPI Navigator, Build Smarter with Every Metric" />
|
|
51
51
|
<meta property="og:image" content="/assets/manifest/image-metaog.png" />
|
|
52
52
|
|
|
53
53
|
<!-- Performance tip: hint to the browser to start the handshake for the fonts site -->
|
package/views/public/home.html
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8" />
|
|
5
5
|
<meta name="google" content="notranslate" />
|
|
6
|
-
<title>Digital KPI
|
|
6
|
+
<title>Digital platform-based KPI Navigator</title>
|
|
7
7
|
<meta name="generator" content="Things Factory Starter Kit" />
|
|
8
8
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
|
|
9
|
-
<meta name="description" content="Smart Digital Digital KPI
|
|
9
|
+
<meta name="description" content="Smart Digital Digital platform-based KPI Navigator" />
|
|
10
10
|
|
|
11
11
|
<base href="/" />
|
|
12
12
|
|
|
@@ -20,15 +20,15 @@
|
|
|
20
20
|
|
|
21
21
|
<!-- Add to homescreen for Chrome on Android. Fallback for manifest.json -->
|
|
22
22
|
<meta name="mobile-web-app-capable" content="yes" />
|
|
23
|
-
<meta name="application-name" content="Digital KPI
|
|
24
|
-
<meta name="application-description" content="Smart Digital Digital KPI
|
|
23
|
+
<meta name="application-name" content="Digital platform-based KPI Navigator" />
|
|
24
|
+
<meta name="application-description" content="Smart Digital Digital platform-based KPI Navigator" />
|
|
25
25
|
<meta name="application-copyright" content="Copyright © hatiolab.com. All Rights Reserved." />
|
|
26
26
|
<link rel="application-icon" href="/assets/manifest/icon-96x96.png" />
|
|
27
27
|
|
|
28
28
|
<!-- Add to homescreen for Safari on iOS -->
|
|
29
29
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
30
30
|
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
|
|
31
|
-
<meta name="apple-mobile-web-app-title" content="Digital KPI
|
|
31
|
+
<meta name="apple-mobile-web-app-title" content="Digital platform-based KPI Navigator" />
|
|
32
32
|
|
|
33
33
|
<!-- Homescreen icons -->
|
|
34
34
|
<link rel="apple-touch-icon" href="/assets/manifest/icon-48x48.png" />
|