@oneuptime/common 7.0.3196 → 7.0.3200

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 (111) hide show
  1. package/Models/DatabaseModels/CallLog.ts +0 -1
  2. package/Models/DatabaseModels/CopilotAction.ts +0 -1
  3. package/Models/DatabaseModels/CopilotActionTypePriority.ts +0 -1
  4. package/Models/DatabaseModels/CopilotPullRequest.ts +0 -1
  5. package/Models/DatabaseModels/Dashboard.ts +426 -0
  6. package/Models/DatabaseModels/EmailLog.ts +0 -1
  7. package/Models/DatabaseModels/Index.ts +4 -0
  8. package/Models/DatabaseModels/SmsLog.ts +0 -1
  9. package/Server/Infrastructure/Postgres/SchemaMigrations/1729682875503-MigrationName.ts +79 -0
  10. package/Server/Infrastructure/Postgres/SchemaMigrations/Index.ts +2 -0
  11. package/Server/Services/DashboardService.ts +50 -0
  12. package/Server/Types/Markdown.ts +4 -0
  13. package/Tests/Types/Billing/SubscriptionPlan.test.ts +12 -8
  14. package/Types/Dashboard/Chart/ChartType.ts +5 -2
  15. package/Types/Dashboard/DashboardComponentType.ts +7 -0
  16. package/Types/Dashboard/DashboardComponents/DashboardBaseComponent.ts +11 -0
  17. package/Types/Dashboard/DashboardComponents/DashboardChartComponent.ts +10 -0
  18. package/Types/Dashboard/DashboardComponents/DashboardTextComponent.ts +9 -0
  19. package/Types/Dashboard/DashboardComponents/DashboardValueComponent.ts +8 -0
  20. package/Types/Dashboard/DashboardMode.ts +6 -0
  21. package/Types/Dashboard/DashboardSize.ts +8 -2
  22. package/Types/Dashboard/DashboardViewConfig.ts +8 -0
  23. package/Types/JSON.ts +7 -0
  24. package/Types/Permission.ts +38 -0
  25. package/UI/Components/Button/Button.tsx +21 -1
  26. package/UI/Components/CategoryCheckbox/Index.tsx +6 -6
  27. package/UI/Components/Charts/ChartLibrary/LineChart/LineChart.tsx +2 -2
  28. package/UI/Components/MoreMenu/MoreMenu.tsx +11 -10
  29. package/Utils/Dashboard/Components/DashboardBaseComponent.ts +8 -0
  30. package/Utils/Dashboard/Components/DashboardChartComponent.ts +19 -0
  31. package/Utils/Dashboard/Components/DashboardTextComponent.ts +18 -0
  32. package/Utils/Dashboard/Components/DashboardValueComponent.ts +17 -0
  33. package/Utils/Dashboard/DashboardViewConfig.ts +68 -0
  34. package/build/dist/Models/DatabaseModels/CallLog.js +0 -1
  35. package/build/dist/Models/DatabaseModels/CallLog.js.map +1 -1
  36. package/build/dist/Models/DatabaseModels/CopilotAction.js +0 -1
  37. package/build/dist/Models/DatabaseModels/CopilotAction.js.map +1 -1
  38. package/build/dist/Models/DatabaseModels/CopilotActionTypePriority.js +0 -1
  39. package/build/dist/Models/DatabaseModels/CopilotActionTypePriority.js.map +1 -1
  40. package/build/dist/Models/DatabaseModels/CopilotPullRequest.js +0 -1
  41. package/build/dist/Models/DatabaseModels/CopilotPullRequest.js.map +1 -1
  42. package/build/dist/Models/DatabaseModels/Dashboard.js +437 -0
  43. package/build/dist/Models/DatabaseModels/Dashboard.js.map +1 -0
  44. package/build/dist/Models/DatabaseModels/DatabaseBaseModel/FileModel.js +1 -2
  45. package/build/dist/Models/DatabaseModels/DatabaseBaseModel/FileModel.js.map +1 -1
  46. package/build/dist/Models/DatabaseModels/EmailLog.js +0 -1
  47. package/build/dist/Models/DatabaseModels/EmailLog.js.map +1 -1
  48. package/build/dist/Models/DatabaseModels/Index.js +3 -0
  49. package/build/dist/Models/DatabaseModels/Index.js.map +1 -1
  50. package/build/dist/Models/DatabaseModels/SmsLog.js +0 -1
  51. package/build/dist/Models/DatabaseModels/SmsLog.js.map +1 -1
  52. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1729682875503-MigrationName.js +34 -0
  53. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/1729682875503-MigrationName.js.map +1 -0
  54. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js +2 -0
  55. package/build/dist/Server/Infrastructure/Postgres/SchemaMigrations/Index.js.map +1 -1
  56. package/build/dist/Server/Services/DashboardService.js +36 -0
  57. package/build/dist/Server/Services/DashboardService.js.map +1 -0
  58. package/build/dist/Server/Types/Markdown.js +3 -0
  59. package/build/dist/Server/Types/Markdown.js.map +1 -1
  60. package/build/dist/Tests/Types/Billing/SubscriptionPlan.test.js +11 -7
  61. package/build/dist/Tests/Types/Billing/SubscriptionPlan.test.js.map +1 -1
  62. package/build/dist/Types/Dashboard/Chart/ChartType.js +6 -1
  63. package/build/dist/Types/Dashboard/Chart/ChartType.js.map +1 -1
  64. package/build/dist/Types/Dashboard/DashboardComponentType.js +8 -0
  65. package/build/dist/Types/Dashboard/DashboardComponentType.js.map +1 -0
  66. package/build/dist/Types/Dashboard/DashboardComponents/DashboardBaseComponent.js +2 -0
  67. package/build/dist/Types/Dashboard/DashboardComponents/DashboardBaseComponent.js.map +1 -0
  68. package/build/dist/Types/Dashboard/DashboardComponents/DashboardChartComponent.js +2 -0
  69. package/build/dist/Types/Dashboard/DashboardComponents/DashboardChartComponent.js.map +1 -0
  70. package/build/dist/Types/Dashboard/DashboardComponents/DashboardTextComponent.js +2 -0
  71. package/build/dist/Types/Dashboard/DashboardComponents/DashboardTextComponent.js.map +1 -0
  72. package/build/dist/Types/Dashboard/DashboardComponents/DashboardValueComponent.js +2 -0
  73. package/build/dist/Types/Dashboard/DashboardComponents/DashboardValueComponent.js.map +1 -0
  74. package/build/dist/Types/Dashboard/DashboardMode.js +7 -0
  75. package/build/dist/Types/Dashboard/DashboardMode.js.map +1 -0
  76. package/build/dist/Types/Dashboard/DashboardSize.js +4 -1
  77. package/build/dist/Types/Dashboard/DashboardSize.js.map +1 -1
  78. package/build/dist/Types/Dashboard/DashboardViewConfig.js +2 -0
  79. package/build/dist/Types/Dashboard/DashboardViewConfig.js.map +1 -0
  80. package/build/dist/Types/JSON.js +5 -0
  81. package/build/dist/Types/JSON.js.map +1 -1
  82. package/build/dist/Types/Permission.js +34 -0
  83. package/build/dist/Types/Permission.js.map +1 -1
  84. package/build/dist/UI/Components/Button/Button.js +16 -1
  85. package/build/dist/UI/Components/Button/Button.js.map +1 -1
  86. package/build/dist/UI/Components/CategoryCheckbox/Index.js +6 -2
  87. package/build/dist/UI/Components/CategoryCheckbox/Index.js.map +1 -1
  88. package/build/dist/UI/Components/Charts/ChartLibrary/LineChart/LineChart.js +4 -2
  89. package/build/dist/UI/Components/Charts/ChartLibrary/LineChart/LineChart.js.map +1 -1
  90. package/build/dist/UI/Components/MoreMenu/MoreMenu.js +4 -5
  91. package/build/dist/UI/Components/MoreMenu/MoreMenu.js.map +1 -1
  92. package/build/dist/Utils/Dashboard/Components/DashboardBaseComponent.js +7 -0
  93. package/build/dist/Utils/Dashboard/Components/DashboardBaseComponent.js.map +1 -0
  94. package/build/dist/Utils/Dashboard/Components/DashboardChartComponent.js +18 -0
  95. package/build/dist/Utils/Dashboard/Components/DashboardChartComponent.js.map +1 -0
  96. package/build/dist/Utils/Dashboard/Components/DashboardTextComponent.js +17 -0
  97. package/build/dist/Utils/Dashboard/Components/DashboardTextComponent.js.map +1 -0
  98. package/build/dist/Utils/Dashboard/Components/DashboardValueComponent.js +16 -0
  99. package/build/dist/Utils/Dashboard/Components/DashboardValueComponent.js.map +1 -0
  100. package/build/dist/Utils/Dashboard/DashboardViewConfig.js +41 -0
  101. package/build/dist/Utils/Dashboard/DashboardViewConfig.js.map +1 -0
  102. package/package.json +2 -2
  103. package/Types/Dashboard/DashboardComponents/BaseComponent.ts +0 -6
  104. package/Types/Dashboard/DashboardComponents/ChartDashboardComponent.ts +0 -9
  105. package/Types/Dashboard/DashboardComponents/ValueDashboardComponent.ts +0 -3
  106. package/build/dist/Types/Dashboard/DashboardComponents/BaseComponent.js +0 -2
  107. package/build/dist/Types/Dashboard/DashboardComponents/BaseComponent.js.map +0 -1
  108. package/build/dist/Types/Dashboard/DashboardComponents/ChartDashboardComponent.js +0 -2
  109. package/build/dist/Types/Dashboard/DashboardComponents/ChartDashboardComponent.js.map +0 -1
  110. package/build/dist/Types/Dashboard/DashboardComponents/ValueDashboardComponent.js +0 -2
  111. package/build/dist/Types/Dashboard/DashboardComponents/ValueDashboardComponent.js.map +0 -1
@@ -0,0 +1,7 @@
1
+ import NotImplementedException from "../../../Types/Exception/NotImplementedException";
2
+ export default class DashboardBaseComponentUtil {
3
+ static getDefaultComponent() {
4
+ throw new NotImplementedException();
5
+ }
6
+ }
7
+ //# sourceMappingURL=DashboardBaseComponent.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DashboardBaseComponent.js","sourceRoot":"","sources":["../../../../../Utils/Dashboard/Components/DashboardBaseComponent.ts"],"names":[],"mappings":"AACA,OAAO,uBAAuB,MAAM,kDAAkD,CAAC;AAEvF,MAAM,CAAC,OAAO,OAAO,0BAA0B;IACtC,MAAM,CAAC,mBAAmB;QAC/B,MAAM,IAAI,uBAAuB,EAAE,CAAC;IACtC,CAAC;CACF"}
@@ -0,0 +1,18 @@
1
+ import { ObjectType } from "../../../Types/JSON";
2
+ import ObjectID from "../../../Types/ObjectID";
3
+ import DashboardBaseComponentUtil from "./DashboardBaseComponent";
4
+ import DashboardChartType from "../../../Types/Dashboard/Chart/ChartType";
5
+ export default class DashboardChartComponentUtil extends DashboardBaseComponentUtil {
6
+ static getDefaultComponent() {
7
+ return {
8
+ _type: ObjectType.DashboardChartComponent,
9
+ widthInDashboardUnits: 8,
10
+ heightInDashboardUnits: 6,
11
+ topInDashboardUnits: 0,
12
+ leftInDashboardUnits: 0,
13
+ componentId: ObjectID.generate(),
14
+ chartType: DashboardChartType.Line,
15
+ };
16
+ }
17
+ }
18
+ //# sourceMappingURL=DashboardChartComponent.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DashboardChartComponent.js","sourceRoot":"","sources":["../../../../../Utils/Dashboard/Components/DashboardChartComponent.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AACjD,OAAO,QAAQ,MAAM,yBAAyB,CAAC;AAC/C,OAAO,0BAA0B,MAAM,0BAA0B,CAAC;AAClE,OAAO,kBAAkB,MAAM,0CAA0C,CAAC;AAE1E,MAAM,CAAC,OAAO,OAAO,2BAA4B,SAAQ,0BAA0B;IAC1E,MAAM,CAAU,mBAAmB;QACxC,OAAO;YACL,KAAK,EAAE,UAAU,CAAC,uBAAuB;YACzC,qBAAqB,EAAE,CAAC;YACxB,sBAAsB,EAAE,CAAC;YACzB,mBAAmB,EAAE,CAAC;YACtB,oBAAoB,EAAE,CAAC;YACvB,WAAW,EAAE,QAAQ,CAAC,QAAQ,EAAE;YAChC,SAAS,EAAE,kBAAkB,CAAC,IAAI;SACnC,CAAC;IACJ,CAAC;CACF"}
@@ -0,0 +1,17 @@
1
+ import { ObjectType } from "../../../Types/JSON";
2
+ import ObjectID from "../../../Types/ObjectID";
3
+ import DashboardBaseComponentUtil from "./DashboardBaseComponent";
4
+ export default class DashboardTextComponentUtil extends DashboardBaseComponentUtil {
5
+ static getDefaultComponent() {
6
+ return {
7
+ _type: ObjectType.DashboardTextComponent,
8
+ widthInDashboardUnits: 3,
9
+ heightInDashboardUnits: 1,
10
+ topInDashboardUnits: 0,
11
+ leftInDashboardUnits: 0,
12
+ text: "Hello, World!",
13
+ componentId: ObjectID.generate(),
14
+ };
15
+ }
16
+ }
17
+ //# sourceMappingURL=DashboardTextComponent.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DashboardTextComponent.js","sourceRoot":"","sources":["../../../../../Utils/Dashboard/Components/DashboardTextComponent.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AACjD,OAAO,QAAQ,MAAM,yBAAyB,CAAC;AAC/C,OAAO,0BAA0B,MAAM,0BAA0B,CAAC;AAElE,MAAM,CAAC,OAAO,OAAO,0BAA2B,SAAQ,0BAA0B;IACzE,MAAM,CAAU,mBAAmB;QACxC,OAAO;YACL,KAAK,EAAE,UAAU,CAAC,sBAAsB;YACxC,qBAAqB,EAAE,CAAC;YACxB,sBAAsB,EAAE,CAAC;YACzB,mBAAmB,EAAE,CAAC;YACtB,oBAAoB,EAAE,CAAC;YACvB,IAAI,EAAE,eAAe;YACrB,WAAW,EAAE,QAAQ,CAAC,QAAQ,EAAE;SACjC,CAAC;IACJ,CAAC;CACF"}
@@ -0,0 +1,16 @@
1
+ import { ObjectType } from "../../../Types/JSON";
2
+ import ObjectID from "../../../Types/ObjectID";
3
+ import DashboardBaseComponentUtil from "./DashboardBaseComponent";
4
+ export default class DashboardValueComponentUtil extends DashboardBaseComponentUtil {
5
+ static getDefaultComponent() {
6
+ return {
7
+ _type: ObjectType.DashboardValueComponent,
8
+ widthInDashboardUnits: 3,
9
+ heightInDashboardUnits: 1,
10
+ topInDashboardUnits: 0,
11
+ leftInDashboardUnits: 0,
12
+ componentId: ObjectID.generate(),
13
+ };
14
+ }
15
+ }
16
+ //# sourceMappingURL=DashboardValueComponent.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DashboardValueComponent.js","sourceRoot":"","sources":["../../../../../Utils/Dashboard/Components/DashboardValueComponent.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AACjD,OAAO,QAAQ,MAAM,yBAAyB,CAAC;AAC/C,OAAO,0BAA0B,MAAM,0BAA0B,CAAC;AAElE,MAAM,CAAC,OAAO,OAAO,2BAA4B,SAAQ,0BAA0B;IAC1E,MAAM,CAAU,mBAAmB;QACxC,OAAO;YACL,KAAK,EAAE,UAAU,CAAC,uBAAuB;YACzC,qBAAqB,EAAE,CAAC;YACxB,sBAAsB,EAAE,CAAC;YACzB,mBAAmB,EAAE,CAAC;YACtB,oBAAoB,EAAE,CAAC;YACvB,WAAW,EAAE,QAAQ,CAAC,QAAQ,EAAE;SACjC,CAAC;IACJ,CAAC;CACF"}
@@ -0,0 +1,41 @@
1
+ import { ObjectType } from "../../Types/JSON";
2
+ import DashboardSize from "../../Types/Dashboard/DashboardSize";
3
+ export default class DashboardViewConfigUtil {
4
+ static createDefaultDashboardViewConfig() {
5
+ return {
6
+ _type: ObjectType.DashboardViewConfig,
7
+ components: [],
8
+ heightInDashboardUnits: DashboardSize.heightInDashboardUnits,
9
+ };
10
+ }
11
+ static addComponentToDashboard(data) {
12
+ const heightOfComponent = data.component.heightInDashboardUnits;
13
+ // find the last row that has enough space to fit the component. If there is no such row, create a new row or rows to fit the component.
14
+ const allComponentsFromDashboard = data.dashboardViewConfig.components;
15
+ let componentTopPosition = 0;
16
+ let componentLeftPosition = 0;
17
+ // find the last row that has the component.
18
+ let lastRowThatHasComponent = -1;
19
+ for (const dashboardComponent of allComponentsFromDashboard) {
20
+ if (componentTopPosition <
21
+ dashboardComponent.topInDashboardUnits +
22
+ dashboardComponent.heightInDashboardUnits) {
23
+ lastRowThatHasComponent = componentTopPosition;
24
+ }
25
+ }
26
+ componentTopPosition = lastRowThatHasComponent + 1;
27
+ // check height of the component. If it is bigger than the last row that has the component, create more rows and udate the height of dashboardViewConfig.
28
+ if (componentTopPosition + heightOfComponent >
29
+ data.dashboardViewConfig.heightInDashboardUnits) {
30
+ data.dashboardViewConfig.heightInDashboardUnits =
31
+ componentTopPosition + heightOfComponent;
32
+ }
33
+ // left position of the component is always 0.
34
+ componentLeftPosition = 0;
35
+ const newComponent = Object.assign(Object.assign({}, data.component), { topInDashboardUnits: componentTopPosition, leftInDashboardUnits: componentLeftPosition });
36
+ // Add the new component to the dashboard configuration
37
+ data.dashboardViewConfig.components.push(newComponent);
38
+ return Object.assign({}, data.dashboardViewConfig);
39
+ }
40
+ }
41
+ //# sourceMappingURL=DashboardViewConfig.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DashboardViewConfig.js","sourceRoot":"","sources":["../../../../Utils/Dashboard/DashboardViewConfig.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,aAAa,MAAM,qCAAqC,CAAC;AAGhE,MAAM,CAAC,OAAO,OAAO,uBAAuB;IACnC,MAAM,CAAC,gCAAgC;QAC5C,OAAO;YACL,KAAK,EAAE,UAAU,CAAC,mBAAmB;YACrC,UAAU,EAAE,EAAE;YACd,sBAAsB,EAAE,aAAa,CAAC,sBAAsB;SAC7D,CAAC;IACJ,CAAC;IAEM,MAAM,CAAC,uBAAuB,CAAC,IAGrC;QACC,MAAM,iBAAiB,GAAW,IAAI,CAAC,SAAS,CAAC,sBAAsB,CAAC;QAExE,wIAAwI;QACxI,MAAM,0BAA0B,GAC9B,IAAI,CAAC,mBAAmB,CAAC,UAAU,CAAC;QAEtC,IAAI,oBAAoB,GAAW,CAAC,CAAC;QACrC,IAAI,qBAAqB,GAAW,CAAC,CAAC;QAEtC,4CAA4C;QAE5C,IAAI,uBAAuB,GAAW,CAAC,CAAC,CAAC;QAEzC,KAAK,MAAM,kBAAkB,IAAI,0BAA0B,EAAE,CAAC;YAC5D,IACE,oBAAoB;gBACpB,kBAAkB,CAAC,mBAAmB;oBACpC,kBAAkB,CAAC,sBAAsB,EAC3C,CAAC;gBACD,uBAAuB,GAAG,oBAAoB,CAAC;YACjD,CAAC;QACH,CAAC;QAED,oBAAoB,GAAG,uBAAuB,GAAG,CAAC,CAAC;QAEnD,yJAAyJ;QAEzJ,IACE,oBAAoB,GAAG,iBAAiB;YACxC,IAAI,CAAC,mBAAmB,CAAC,sBAAsB,EAC/C,CAAC;YACD,IAAI,CAAC,mBAAmB,CAAC,sBAAsB;gBAC7C,oBAAoB,GAAG,iBAAiB,CAAC;QAC7C,CAAC;QAED,8CAA8C;QAC9C,qBAAqB,GAAG,CAAC,CAAC;QAE1B,MAAM,YAAY,mCACb,IAAI,CAAC,SAAS,KACjB,mBAAmB,EAAE,oBAAoB,EACzC,oBAAoB,EAAE,qBAAqB,GAC5C,CAAC;QAEF,uDAAuD;QACvD,IAAI,CAAC,mBAAmB,CAAC,UAAU,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;QAEvD,yBAAY,IAAI,CAAC,mBAAmB,EAAG;IACzC,CAAC;CACF"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oneuptime/common",
3
- "version": "7.0.3196",
3
+ "version": "7.0.3200",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -77,7 +77,7 @@
77
77
  "airtable": "^0.12.2",
78
78
  "axios": "^1.7.2",
79
79
  "bullmq": "^5.3.3",
80
- "Common": "npm:@oneuptime/common@7.0.3196",
80
+ "Common": "npm:@oneuptime/common@7.0.3200",
81
81
  "cookie-parser": "^1.4.7",
82
82
  "cors": "^2.8.5",
83
83
  "cron-parser": "^4.8.1",
@@ -1,6 +0,0 @@
1
- import ObjectID from "../../ObjectID";
2
-
3
- export default interface BaseComponent {
4
- type: string;
5
- componentId: ObjectID;
6
- }
@@ -1,9 +0,0 @@
1
- import ObjectID from "../../ObjectID";
2
- import ChartType from "../Chart/ChartType";
3
- import BaseComponent from "./BaseComponent";
4
-
5
- export default interface ChartDashboardComponent extends BaseComponent {
6
- type: "chart";
7
- componentId: ObjectID;
8
- chartType: ChartType;
9
- }
@@ -1,3 +0,0 @@
1
- import BaseComponent from "./BaseComponent";
2
-
3
- export interface ValueDashboardComponent extends BaseComponent {}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=BaseComponent.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"BaseComponent.js","sourceRoot":"","sources":["../../../../../Types/Dashboard/DashboardComponents/BaseComponent.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=ChartDashboardComponent.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ChartDashboardComponent.js","sourceRoot":"","sources":["../../../../../Types/Dashboard/DashboardComponents/ChartDashboardComponent.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=ValueDashboardComponent.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ValueDashboardComponent.js","sourceRoot":"","sources":["../../../../../Types/Dashboard/DashboardComponents/ValueDashboardComponent.ts"],"names":[],"mappings":""}