@dssp/dkpi 1.0.0-alpha.23 → 1.0.0-alpha.25

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 (70) hide show
  1. package/dist-client/bootstrap.d.ts +8 -0
  2. package/dist-client/bootstrap.js +257 -0
  3. package/dist-client/bootstrap.js.map +1 -0
  4. package/dist-client/entries/public/home.d.ts +8 -0
  5. package/dist-client/entries/public/home.js +97 -0
  6. package/dist-client/entries/public/home.js.map +1 -0
  7. package/dist-client/icons/menu-icons.d.ts +5 -0
  8. package/dist-client/icons/menu-icons.js +84 -0
  9. package/dist-client/icons/menu-icons.js.map +1 -0
  10. package/dist-client/index.d.ts +0 -0
  11. package/dist-client/index.js +2 -0
  12. package/dist-client/index.js.map +1 -0
  13. package/dist-client/menu.d.ts +23 -0
  14. package/dist-client/menu.js +59 -0
  15. package/dist-client/menu.js.map +1 -0
  16. package/dist-client/pages/sv-project-completed-list.d.ts +18 -0
  17. package/dist-client/pages/sv-project-completed-list.js +293 -0
  18. package/dist-client/pages/sv-project-completed-list.js.map +1 -0
  19. package/dist-client/pages/sv-project-list.d.ts +144 -0
  20. package/dist-client/pages/sv-project-list.js +339 -0
  21. package/dist-client/pages/sv-project-list.js.map +1 -0
  22. package/dist-client/pages/sv-user-management.d.ts +5 -0
  23. package/dist-client/pages/sv-user-management.js +219 -0
  24. package/dist-client/pages/sv-user-management.js.map +1 -0
  25. package/dist-client/route.d.ts +1 -0
  26. package/dist-client/route.js +16 -0
  27. package/dist-client/route.js.map +1 -0
  28. package/dist-client/themes/dark.css +51 -0
  29. package/dist-client/themes/light.css +51 -0
  30. package/dist-client/tsconfig.tsbuildinfo +1 -0
  31. package/dist-client/viewparts/menu-tools.d.ts +54 -0
  32. package/dist-client/viewparts/menu-tools.js +508 -0
  33. package/dist-client/viewparts/menu-tools.js.map +1 -0
  34. package/dist-client/viewparts/user-circle.d.ts +5 -0
  35. package/dist-client/viewparts/user-circle.js +26 -0
  36. package/dist-client/viewparts/user-circle.js.map +1 -0
  37. package/dist-server/tsconfig.tsbuildinfo +1 -1
  38. package/package.json +3 -3
  39. package/schema.graphql +1589 -216
  40. package/dist-server/migrations/1752188906708-SeedKpiCategory.d.ts +0 -5
  41. package/dist-server/migrations/1752188906708-SeedKpiCategory.js +0 -53
  42. package/dist-server/migrations/1752188906708-SeedKpiCategory.js.map +0 -1
  43. package/dist-server/migrations/1752190849681-SeedKpi.d.ts +0 -5
  44. package/dist-server/migrations/1752190849681-SeedKpi.js +0 -255
  45. package/dist-server/migrations/1752190849681-SeedKpi.js.map +0 -1
  46. package/dist-server/migrations/1752192090123-add-grades-to-kpi.d.ts +0 -7
  47. package/dist-server/migrations/1752192090123-add-grades-to-kpi.js +0 -51
  48. package/dist-server/migrations/1752192090123-add-grades-to-kpi.js.map +0 -1
  49. package/dist-server/migrations/1752192090124-add-kpi-statistics.d.ts +0 -5
  50. package/dist-server/migrations/1752192090124-add-kpi-statistics.js +0 -707
  51. package/dist-server/migrations/1752192090124-add-kpi-statistics.js.map +0 -1
  52. package/dist-server/migrations/grade-data/x11-performance-table.json +0 -962
  53. package/dist-server/migrations/grade-data/x12-performance-table.json +0 -611
  54. package/dist-server/migrations/grade-data/x14-performance-table.json +0 -42
  55. package/dist-server/migrations/grade-data/x21-performance-table.json +0 -889
  56. package/dist-server/migrations/grade-data/x22-performance-table.json +0 -1064
  57. package/dist-server/migrations/grade-data/x23-performance-table.json +0 -42
  58. package/dist-server/migrations/grade-data/x31-performance-table.json +0 -644
  59. package/dist-server/migrations/grade-data/x32-performance-table.json +0 -993
  60. package/dist-server/migrations/grade-data/x33-performance-table.json +0 -195
  61. package/dist-server/migrations/grade-data/x34-performance-table.json +0 -12
  62. package/dist-server/migrations/grade-data/x35-performance-table.json +0 -42
  63. package/dist-server/migrations/grade-data/x41-performance-table.json +0 -825
  64. package/dist-server/migrations/grade-data/x42-performance-table.json +0 -786
  65. package/dist-server/migrations/grade-data/x43-performance-table.json +0 -12
  66. package/dist-server/migrations/grade-data/x44-performance-table.json +0 -42
  67. package/dist-server/migrations/grade-data/x51-performance-table.json +0 -924
  68. package/dist-server/migrations/grade-data/x52-performance-table.json +0 -42
  69. package/dist-server/migrations/grade-data/x61-performance-table.json +0 -261
  70. package/dist-server/migrations/grade-data/x62-performance-table.json +0 -42
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dssp/dkpi",
3
- "version": "1.0.0-alpha.23",
3
+ "version": "1.0.0-alpha.25",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "dist-client/index.js",
6
6
  "things-factory": true,
@@ -39,7 +39,7 @@
39
39
  "docker:push": "docker image push hatiolab/dkpi:latest && docker image push hatiolab/dkpi:$npm_package_version"
40
40
  },
41
41
  "dependencies": {
42
- "@dssp/project": "^1.0.0-alpha.23",
42
+ "@dssp/project": "^1.0.0-alpha.25",
43
43
  "@material/web": "^2.1.0",
44
44
  "@operato/chart": "^9.0.0",
45
45
  "@operato/gantt": "^9.0.0",
@@ -93,5 +93,5 @@
93
93
  "devDependencies": {
94
94
  "@things-factory/builder": "^9.0.0"
95
95
  },
96
- "gitHead": "d65b7b328359c809461c2636c327b77484ef316f"
96
+ "gitHead": "41861a4cd00726e417d50e5e93279db42224cca9"
97
97
  }