@devtable/dashboard 5.7.2 → 5.8.1

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 (77) hide show
  1. package/dist/commits.structure.26a44e4e.mjs +13 -0
  2. package/dist/dashboard.es.js +10137 -9223
  3. package/dist/dashboard.umd.js +135 -28
  4. package/dist/definition-editor/query-editor/delete-query.d.ts +8 -0
  5. package/dist/efficiency.schema.5ba0fdb1.mjs +82 -0
  6. package/dist/efficiency.structure.8ac41504.mjs +12 -0
  7. package/dist/efficiency.structure.cf755f40.mjs +12 -0
  8. package/dist/heatmap.structure.75d4a09a.mjs +11 -0
  9. package/dist/interactions/components/index.d.ts +2 -0
  10. package/dist/interactions/hooks/index.d.ts +2 -0
  11. package/dist/interactions/index.d.ts +5 -0
  12. package/dist/interactions/operation/index.d.ts +2 -0
  13. package/dist/interactions/operation/operation-manager-impl.d.ts +3 -0
  14. package/dist/interactions/trigger/index.d.ts +1 -0
  15. package/dist/interactions/trigger/trigger-manager-impl.d.ts +3 -0
  16. package/dist/main/use-panel-full-screen.d.ts +136 -0
  17. package/dist/model/mock-context.d.ts +0 -3
  18. package/dist/model/queries/index.d.ts +69 -17
  19. package/dist/model/sql-snippets/index.d.ts +0 -14
  20. package/dist/model/views/index.d.ts +21911 -0
  21. package/dist/model/views/view/index.d.ts +612 -0
  22. package/dist/model/views/view/panels/index.d.ts +204 -0
  23. package/dist/model/views/view/panels/panel.d.ts +68 -0
  24. package/dist/panel/plugin-adaptor.d.ts +5 -3
  25. package/dist/panel/use-config-viz-instance-service.d.ts +3 -0
  26. package/dist/pareto.structure.64175247.mjs +11 -0
  27. package/dist/pareto.structure.870fcfae.mjs +11 -0
  28. package/dist/plugins/instance-migrator/index.d.ts +29 -0
  29. package/dist/plugins/plugin-context.d.ts +18 -1
  30. package/dist/plugins/plugin-data-migrator/version-based-migrator.d.ts +4 -4
  31. package/dist/plugins/viz-components/expert-system/index.d.ts +2 -0
  32. package/dist/plugins/viz-components/expert-system/metric-set-selector.d.ts +8 -0
  33. package/dist/plugins/viz-components/expert-system/request/call-expert-system.d.ts +6 -0
  34. package/dist/plugins/viz-components/expert-system/request/payload/comparison/efficiency.d.ts +10 -0
  35. package/dist/plugins/viz-components/expert-system/request/payload/comparison/index.d.ts +8 -0
  36. package/dist/plugins/viz-components/expert-system/request/payload/dev_load/heatmap.d.ts +9 -0
  37. package/dist/plugins/viz-components/expert-system/request/payload/dev_load/index.d.ts +14 -0
  38. package/dist/plugins/viz-components/expert-system/request/payload/dev_load/pareto.d.ts +9 -0
  39. package/dist/plugins/viz-components/expert-system/request/payload/dev_load/productivity.d.ts +11 -0
  40. package/dist/plugins/viz-components/expert-system/request/payload/index.d.ts +2 -0
  41. package/dist/plugins/viz-components/expert-system/request/payload/performance/efficiency.d.ts +10 -0
  42. package/dist/plugins/viz-components/expert-system/request/payload/performance/index.d.ts +31 -0
  43. package/dist/plugins/viz-components/expert-system/request/payload/performance/pareto.d.ts +9 -0
  44. package/dist/plugins/viz-components/expert-system/request/payload/performance/quality.d.ts +34 -0
  45. package/dist/plugins/viz-components/expert-system/request/payload/performance/quality_history.d.ts +12 -0
  46. package/dist/plugins/viz-components/expert-system/request/payload/personal_report/commits.d.ts +11 -0
  47. package/dist/plugins/viz-components/expert-system/request/payload/personal_report/index.d.ts +14 -0
  48. package/dist/plugins/viz-components/expert-system/request/payload/personal_report/quality.d.ts +13 -0
  49. package/dist/plugins/viz-components/expert-system/request/payload/personal_report/skills.d.ts +8 -0
  50. package/dist/plugins/viz-components/expert-system/request/schema/comparison/efficiency.structure.d.ts +2 -0
  51. package/dist/plugins/viz-components/expert-system/request/schema/dev_load/heatmap.structure.d.ts +2 -0
  52. package/dist/plugins/viz-components/expert-system/request/schema/dev_load/pareto.structure.d.ts +2 -0
  53. package/dist/plugins/viz-components/expert-system/request/schema/dev_load/productivity.structure.d.ts +2 -0
  54. package/dist/plugins/viz-components/expert-system/request/schema/index.d.ts +3 -0
  55. package/dist/plugins/viz-components/expert-system/request/schema/performance/efficiency.structure.d.ts +2 -0
  56. package/dist/plugins/viz-components/expert-system/request/schema/performance/pareto.structure.d.ts +2 -0
  57. package/dist/plugins/viz-components/expert-system/request/schema/performance/quality.structure.d.ts +2 -0
  58. package/dist/plugins/viz-components/expert-system/request/schema/performance/quality_history.structure.d.ts +2 -0
  59. package/dist/plugins/viz-components/expert-system/request/schema/personal_report/commits.structure.d.ts +2 -0
  60. package/dist/plugins/viz-components/expert-system/request/schema/personal_report/quality.structure.d.ts +2 -0
  61. package/dist/plugins/viz-components/expert-system/request/schema/personal_report/skills.structure.d.ts +2 -0
  62. package/dist/plugins/viz-components/expert-system/request/schema-and-validation.d.ts +8 -0
  63. package/dist/plugins/viz-components/expert-system/scenario-selector.d.ts +8 -0
  64. package/dist/plugins/viz-components/expert-system/type.d.ts +22 -0
  65. package/dist/plugins/viz-components/expert-system/viz-expert-system-panel.d.ts +3 -0
  66. package/dist/plugins/viz-components/expert-system/viz-expert-system.d.ts +3 -0
  67. package/dist/productivity.structure.1fc6f3e4.mjs +13 -0
  68. package/dist/quality.schema.4f5a1bc0.mjs +182 -0
  69. package/dist/quality.structure.b1ac00db.mjs +15 -0
  70. package/dist/quality.structure.bb057537.mjs +19 -0
  71. package/dist/quality_history.schema.5c04f870.mjs +118 -0
  72. package/dist/quality_history.structure.ffc4ca11.mjs +24 -0
  73. package/dist/service-locator/index.d.ts +27 -0
  74. package/dist/service-locator/use-service-locator.d.ts +8 -0
  75. package/dist/skills.structure.8ceda40e.mjs +10 -0
  76. package/dist/types/plugin/index.d.ts +14 -6
  77. package/package.json +2 -1

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.