@dssp/dkpi 1.0.0-alpha.50 → 1.0.0-alpha.51
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/components/kpi-boxplot-chart.d.ts +24 -0
- package/dist-client/components/kpi-boxplot-chart.js +328 -0
- package/dist-client/components/kpi-boxplot-chart.js.map +1 -0
- package/dist-client/components/kpi-radar-chart.d.ts +16 -0
- package/dist-client/components/kpi-radar-chart.js +139 -0
- package/dist-client/components/kpi-radar-chart.js.map +1 -0
- package/dist-client/pages/project-complete-tabs/pc-tab2-rating.d.ts +3 -1
- package/dist-client/pages/project-complete-tabs/pc-tab2-rating.js +25 -12
- package/dist-client/pages/project-complete-tabs/pc-tab2-rating.js.map +1 -1
- package/dist-client/pages/project-complete-tabs/pc-tab3-upload.d.ts +6 -3
- package/dist-client/pages/project-complete-tabs/pc-tab3-upload.js +101 -92
- package/dist-client/pages/project-complete-tabs/pc-tab3-upload.js.map +1 -1
- package/dist-client/pages/sv-project-complete.d.ts +0 -2
- package/dist-client/pages/sv-project-complete.js +14 -20
- package/dist-client/pages/sv-project-complete.js.map +1 -1
- package/dist-client/pages/sv-project-detail.d.ts +3 -0
- package/dist-client/pages/sv-project-detail.js +98 -34
- package/dist-client/pages/sv-project-detail.js.map +1 -1
- package/dist-client/shared/complete-api.d.ts +4 -1
- package/dist-client/shared/complete-api.js +68 -16
- package/dist-client/shared/complete-api.js.map +1 -1
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-server/service/kpi-metric-value/kpi-metric-value-mutation.d.ts +2 -1
- package/dist-server/service/kpi-metric-value/kpi-metric-value-mutation.js +28 -20
- package/dist-server/service/kpi-metric-value/kpi-metric-value-mutation.js.map +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/schema.graphql +2 -2
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.51",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "dist-client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"docker:push": "docker image push hatiolab/dkpi:latest && docker image push hatiolab/dkpi:$npm_package_version"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@dssp/project": "^1.0.0-alpha.
|
|
51
|
+
"@dssp/project": "^1.0.0-alpha.51",
|
|
52
52
|
"@material/web": "^2.1.0",
|
|
53
53
|
"@operato/chart": "^9.0.0",
|
|
54
54
|
"@operato/gantt": "^9.0.0",
|
|
@@ -103,5 +103,5 @@
|
|
|
103
103
|
"devDependencies": {
|
|
104
104
|
"@things-factory/builder": "^9.0.0"
|
|
105
105
|
},
|
|
106
|
-
"gitHead": "
|
|
106
|
+
"gitHead": "9d2f797951e910a975cbc50bc3e6ba300554bd08"
|
|
107
107
|
}
|
package/schema.graphql
CHANGED
|
@@ -7076,7 +7076,7 @@ type Mutation {
|
|
|
7076
7076
|
updateKpiMetricValuesCumulative(patches: [KpiMetricValuePatch!]!): [KpiMetricValue!]!
|
|
7077
7077
|
|
|
7078
7078
|
"""To modify multiple sentiment KpiMetricValues' value"""
|
|
7079
|
-
updateKpiMetricValuesSentiment(
|
|
7079
|
+
updateKpiMetricValuesSentiment(attachment: NewAttachment!): Attachment
|
|
7080
7080
|
|
|
7081
7081
|
"""Update a scope dimension definition"""
|
|
7082
7082
|
updateKpiScope(id: String!, patch: KpiScopePatch!): KpiScope!
|
|
@@ -9494,7 +9494,7 @@ input ProfileInput {
|
|
|
9494
9494
|
"""프로젝트"""
|
|
9495
9495
|
type Project {
|
|
9496
9496
|
buildingComplex: BuildingComplex
|
|
9497
|
-
|
|
9497
|
+
completeReport: Attachment
|
|
9498
9498
|
createdAt: DateTimeISO
|
|
9499
9499
|
creator: User
|
|
9500
9500
|
deletedAt: DateTimeISO
|