@centreon/ui 24.7.2 → 24.7.4

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 (658) hide show
  1. package/.storybook/main.js +82 -0
  2. package/.storybook/preview.tsx +21 -0
  3. package/README.md +14 -44
  4. package/jest.config.js +20 -0
  5. package/package.json +58 -126
  6. package/{test/setupTests.js → setupTests.js} +1 -2
  7. package/src/ActionsList/index.stories.tsx +0 -80
  8. package/src/ActionsList/index.tsx +21 -58
  9. package/src/Button/Icon/index.stories.tsx +1 -1
  10. package/src/Button/Icon/index.tsx +4 -13
  11. package/src/Button/Save/StartIcon.tsx +3 -3
  12. package/src/Button/Save/index.stories.tsx +5 -10
  13. package/src/Button/Save/index.tsx +6 -10
  14. package/src/Dialog/Confirm/index.tsx +5 -26
  15. package/src/Dialog/Duplicate/index.test.tsx +1 -1
  16. package/src/Dialog/UnsavedChanges/index.tsx +20 -21
  17. package/src/Dialog/UnsavedChanges/translatedLabels.ts +6 -4
  18. package/src/Dialog/index.tsx +4 -23
  19. package/src/FallbackPage/FallbackPage.tsx +5 -5
  20. package/src/FileDropZone/index.tsx +2 -4
  21. package/src/Form/CollapsibleGroup.tsx +5 -15
  22. package/src/Form/FormButtons.tsx +4 -2
  23. package/src/Form/Inputs/Autocomplete.tsx +1 -1
  24. package/src/Form/Inputs/ConnectedAutocomplete.tsx +1 -3
  25. package/src/Form/Inputs/Grid.tsx +2 -4
  26. package/src/Form/Inputs/Radio.tsx +5 -16
  27. package/src/Form/Inputs/Switch.tsx +1 -1
  28. package/src/Form/Inputs/Text.tsx +8 -21
  29. package/src/Form/Inputs/index.tsx +16 -34
  30. package/src/Form/Inputs/models.ts +4 -29
  31. package/src/Form/{Form.stories.tsx → index.stories.tsx} +3 -2
  32. package/src/Form/{Form.tsx → index.tsx} +16 -38
  33. package/src/Form/storiesData.tsx +3 -50
  34. package/src/Home.stories.mdx +122 -0
  35. package/src/Image/Image.tsx +1 -11
  36. package/src/Image/index.stories.tsx +101 -101
  37. package/src/Image/index.test.tsx +3 -3
  38. package/src/InputField/Search/PersistentTooltip.tsx +6 -10
  39. package/src/InputField/Search/index.tsx +2 -2
  40. package/src/InputField/Select/Autocomplete/Connected/Multi/index.test.tsx +22 -4
  41. package/src/InputField/Select/Autocomplete/Connected/index.stories.tsx +3 -0
  42. package/src/InputField/Select/Autocomplete/Connected/index.test.tsx +7 -4
  43. package/src/InputField/Select/Autocomplete/Connected/index.tsx +15 -56
  44. package/src/InputField/Select/Autocomplete/Draggable/SortableList.tsx +1 -1
  45. package/src/InputField/Select/Autocomplete/Draggable/SortableListContent.tsx +1 -1
  46. package/src/InputField/Select/Autocomplete/Draggable/index.stories.tsx +2 -0
  47. package/src/InputField/Select/Autocomplete/Draggable/index.tsx +1 -1
  48. package/src/InputField/Select/Autocomplete/Multi/index.tsx +17 -36
  49. package/src/InputField/Select/Autocomplete/index.stories.tsx +10 -1
  50. package/src/InputField/Select/Autocomplete/index.tsx +115 -131
  51. package/src/InputField/Select/IconPopover/index.tsx +3 -3
  52. package/src/InputField/Select/index.tsx +3 -17
  53. package/src/InputField/Text/index.tsx +46 -70
  54. package/src/Listing/ActionBar/index.tsx +18 -26
  55. package/src/Listing/Cell/DataCell.tsx +72 -65
  56. package/src/Listing/Cell/index.tsx +8 -82
  57. package/src/Listing/Header/{_internals/PredefinedSelectionList.tsx → PredefinedSelectionList.tsx} +1 -1
  58. package/src/Listing/Header/{Cell/ListingHeaderCell.tsx → SortableCell/Content.tsx} +83 -18
  59. package/src/Listing/Header/SortableCell/DraggableIcon.tsx +41 -0
  60. package/src/Listing/Header/{ListingHeader.tsx → index.tsx} +106 -29
  61. package/src/Listing/{Row/Row.tsx → Row.tsx} +14 -19
  62. package/src/Listing/Skeleton.tsx +11 -0
  63. package/src/Listing/index.stories.tsx +42 -180
  64. package/src/Listing/index.test.tsx +234 -0
  65. package/src/Listing/index.tsx +273 -286
  66. package/src/Listing/models.ts +0 -2
  67. package/src/Listing/tableAtoms.ts +10 -15
  68. package/src/Listing/useStyleTable.ts +9 -10
  69. package/src/ListingPage/index.stories.tsx +8 -21
  70. package/src/ListingPage/index.tsx +38 -20
  71. package/src/Logo/CentreonLogo.tsx +2 -2
  72. package/src/Module/LicensedModule/LicenseCheck/index.stories.tsx +2 -0
  73. package/src/Module/LicensedModule/LicenseCheck/index.tsx +9 -24
  74. package/src/Module/LicensedModule/index.tsx +1 -7
  75. package/src/Module/index.tsx +6 -7
  76. package/src/Panel/Memoized.tsx +1 -1
  77. package/src/Panel/Section/index.test.tsx +1 -1
  78. package/src/Panel/Section/index.tsx +1 -1
  79. package/src/Panel/index.tsx +7 -11
  80. package/src/PopoverMenu/index.tsx +9 -24
  81. package/src/RichTextEditor/ContentEditable.tsx +24 -70
  82. package/src/RichTextEditor/RichTextEditor.tsx +47 -172
  83. package/src/RichTextEditor/index.stories.tsx +88 -102
  84. package/src/RichTextEditor/plugins/AutoLinkPlugin/index.tsx +5 -53
  85. package/src/RichTextEditor/plugins/FloatingLinkEditorPlugin.tsx +16 -54
  86. package/src/RichTextEditor/plugins/ToolbarPlugin/FormatButtons.tsx +92 -31
  87. package/src/RichTextEditor/plugins/ToolbarPlugin/UndoRedoButtons.tsx +3 -13
  88. package/src/RichTextEditor/plugins/ToolbarPlugin/index.tsx +10 -35
  89. package/src/RichTextEditor/translatedLabels.ts +0 -3
  90. package/src/Snackbar/index.tsx +4 -14
  91. package/src/Snackbar/useSnackbar.tsx +1 -5
  92. package/src/SortableItems/SortableItem.tsx +2 -3
  93. package/src/SortableItems/index.tsx +7 -2
  94. package/src/ThemeProvider/index.tsx +10 -46
  95. package/src/ThemeProvider/palettes.ts +201 -422
  96. package/src/TopCounterElements/TopCounterLayout.tsx +4 -3
  97. package/src/TopCounterElements/{useCloseOnLegacyPage.tsx → useCloseOnLegacyPage.ts} +2 -5
  98. package/src/Typography/{Typography.stories.tsx → index.stories.tsx} +5 -5
  99. package/src/WallpaperPage/index.stories.tsx +1 -1
  100. package/src/Wizard/ActionsBar.test.tsx +1 -1
  101. package/src/Wizard/WizardContent.tsx +3 -2
  102. package/src/Wizard/index.stories.tsx +18 -5
  103. package/src/Wizard/index.test.tsx +1 -1
  104. package/src/Wizard/index.tsx +5 -20
  105. package/src/Wizard/models.ts +0 -7
  106. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-listing-loading-with-no-data-1-snap.png +0 -0
  107. package/src/api/QueryProvider.tsx +4 -7
  108. package/src/api/TestQueryProvider.tsx +1 -2
  109. package/src/api/buildListingEndpoint/getSearchQueryParameterValue.ts +26 -35
  110. package/src/api/buildListingEndpoint/index.test.ts +2 -2
  111. package/src/api/buildListingEndpoint/index.ts +1 -1
  112. package/src/api/buildListingEndpoint/models.ts +2 -2
  113. package/src/api/customFetch.ts +3 -22
  114. package/src/api/useFetchQuery/index.test.ts +5 -0
  115. package/src/api/useFetchQuery/index.ts +42 -72
  116. package/src/api/useMutationQuery/index.test.ts +4 -4
  117. package/src/api/useMutationQuery/index.ts +27 -90
  118. package/src/api/useRequest/index.test.ts +3 -0
  119. package/src/api/useRequest/index.ts +12 -12
  120. package/src/index.ts +22 -31
  121. package/src/queryParameters/url/index.ts +1 -5
  122. package/src/storyshots.test.js +52 -0
  123. package/{test → src}/testRenderer.tsx +1 -1
  124. package/src/utils/getNormalizedId.ts +3 -1
  125. package/src/utils/useCopyToClipboard.ts +3 -2
  126. package/src/utils/useDebounce.ts +5 -8
  127. package/src/utils/useDeepCallback.ts +3 -1
  128. package/src/utils/useDeepMemo.ts +3 -1
  129. package/src/utils/useIntersectionObserver.ts +5 -5
  130. package/src/utils/useKeyObserver.tsx +3 -1
  131. package/src/utils/useLocaleDateTimeFormat/index.test.tsx +1 -1
  132. package/src/utils/useLocaleDateTimeFormat/index.ts +2 -4
  133. package/src/utils/useLocaleDateTimeFormat/localeFallback.test.tsx +1 -1
  134. package/src/utils/useMemoComponent.ts +1 -1
  135. package/testRunner.js +36 -0
  136. package/tsconfig.json +29 -0
  137. package/types/declarations.d.ts +9 -0
  138. package/public/README.md +0 -39
  139. package/public/mockServiceWorker.js +0 -284
  140. package/src/@assets/README.md +0 -5
  141. package/src/@assets/brand/centreon-logo-one-line-dark.svg +0 -1
  142. package/src/@assets/brand/centreon-logo-one-line-light.svg +0 -1
  143. package/src/@assets/icons/downtime.icon.svg +0 -1
  144. package/src/@types/aria-attributes.d.ts +0 -10
  145. package/src/@types/data-attributes.d.ts +0 -3
  146. package/src/@types/globals.d.ts +0 -9
  147. package/src/@types/vite-env.d.ts +0 -2
  148. package/src/ActionsList/ActionsList.styles.ts +0 -85
  149. package/src/ActionsList/models.ts +0 -8
  150. package/src/Checkbox/Checkbox.tsx +0 -109
  151. package/src/Checkbox/CheckboxGroup/index.stories.tsx +0 -41
  152. package/src/Checkbox/CheckboxGroup/index.tsx +0 -75
  153. package/src/Checkbox/index.stories.tsx +0 -39
  154. package/src/Checkbox/index.tsx +0 -2
  155. package/src/Dashboard/Dashboard.cypress.spec.tsx +0 -68
  156. package/src/Dashboard/Dashboard.styles.ts +0 -110
  157. package/src/Dashboard/DashboardLayout.stories.tsx +0 -104
  158. package/src/Dashboard/Grid.tsx +0 -70
  159. package/src/Dashboard/Item.tsx +0 -151
  160. package/src/Dashboard/Layout.tsx +0 -95
  161. package/src/Dashboard/atoms.ts +0 -3
  162. package/src/Dashboard/index.tsx +0 -9
  163. package/src/Dashboard/utils.ts +0 -28
  164. package/src/Form/Form.cypress.spec.tsx +0 -133
  165. package/src/Form/Form.styles.ts +0 -11
  166. package/src/Form/Inputs/Checkbox.tsx +0 -57
  167. package/src/Form/Inputs/CheckboxGroup.tsx +0 -76
  168. package/src/Form/Inputs/List/Content.tsx +0 -62
  169. package/src/Form/Inputs/List/List.styles.ts +0 -29
  170. package/src/Form/Inputs/List/List.tsx +0 -58
  171. package/src/Form/Inputs/List/useList.ts +0 -81
  172. package/src/Form/index.ts +0 -1
  173. package/src/Graph/BarChart/BarChart.cypress.spec.tsx +0 -316
  174. package/src/Graph/BarChart/BarChart.stories.tsx +0 -213
  175. package/src/Graph/BarChart/BarChart.tsx +0 -104
  176. package/src/Graph/BarChart/BarGroup.tsx +0 -248
  177. package/src/Graph/BarChart/BarStack.tsx +0 -133
  178. package/src/Graph/BarChart/ResponsiveBarChart.tsx +0 -277
  179. package/src/Graph/BarChart/SingleBar.tsx +0 -62
  180. package/src/Graph/BarChart/Tooltip/BarChartTooltip.tsx +0 -122
  181. package/src/Graph/BarChart/Tooltip/useBarChartTooltipStyles.ts +0 -28
  182. package/src/Graph/BarChart/atoms.ts +0 -5
  183. package/src/Graph/BarChart/models.ts +0 -21
  184. package/src/Graph/BarChart/useBarChartStyles.tsx +0 -5
  185. package/src/Graph/BarChart/useBarStack.ts +0 -114
  186. package/src/Graph/BarChart/useSingleBar.ts +0 -199
  187. package/src/Graph/BarStack/BarStack.cypress.spec.tsx +0 -139
  188. package/src/Graph/BarStack/BarStack.stories.tsx +0 -140
  189. package/src/Graph/BarStack/BarStack.styles.ts +0 -41
  190. package/src/Graph/BarStack/BarStack.tsx +0 -14
  191. package/src/Graph/BarStack/ResponsiveBarStack.tsx +0 -212
  192. package/src/Graph/BarStack/index.ts +0 -1
  193. package/src/Graph/BarStack/models.ts +0 -19
  194. package/src/Graph/BarStack/useResponsiveBarStack.ts +0 -127
  195. package/src/Graph/Gauge/AnimatedPie.tsx +0 -104
  196. package/src/Graph/Gauge/Gauge.cypress.spec.tsx +0 -102
  197. package/src/Graph/Gauge/Gauge.stories.tsx +0 -167
  198. package/src/Graph/Gauge/Gauge.tsx +0 -41
  199. package/src/Graph/Gauge/PieData.tsx +0 -68
  200. package/src/Graph/Gauge/ResponsiveGauge.tsx +0 -134
  201. package/src/Graph/Gauge/Thresholds.tsx +0 -119
  202. package/src/Graph/Gauge/index.ts +0 -1
  203. package/src/Graph/Gauge/models.ts +0 -20
  204. package/src/Graph/Gauge/utils.ts +0 -4
  205. package/src/Graph/HeatMap/HeatMap.cypress.spec.tsx +0 -145
  206. package/src/Graph/HeatMap/HeatMap.stories.tsx +0 -100
  207. package/src/Graph/HeatMap/HeatMap.styles.tsx +0 -29
  208. package/src/Graph/HeatMap/HeatMap.tsx +0 -14
  209. package/src/Graph/HeatMap/HeatMapData.json +0 -137
  210. package/src/Graph/HeatMap/ResponsiveHeatMap.tsx +0 -112
  211. package/src/Graph/HeatMap/index.ts +0 -1
  212. package/src/Graph/HeatMap/model.ts +0 -33
  213. package/src/Graph/Legend/Legend.tsx +0 -21
  214. package/src/Graph/Legend/index.ts +0 -1
  215. package/src/Graph/Legend/models.ts +0 -11
  216. package/src/Graph/LineChart/BasicComponents/Lines/Point.tsx +0 -36
  217. package/src/Graph/LineChart/BasicComponents/Lines/RegularLines/index.tsx +0 -132
  218. package/src/Graph/LineChart/BasicComponents/Lines/RegularLines/useRegularLines.ts +0 -15
  219. package/src/Graph/LineChart/BasicComponents/Lines/StackedLines/index.tsx +0 -140
  220. package/src/Graph/LineChart/BasicComponents/Lines/StackedLines/useStackedLines.ts +0 -39
  221. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/BasicThreshold.tsx +0 -52
  222. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/Circle.tsx +0 -43
  223. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/ThresholdWithPatternLines.tsx +0 -77
  224. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/ThresholdWithVariation.tsx +0 -62
  225. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/helpers/index.ts +0 -69
  226. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/index.tsx +0 -141
  227. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/models.ts +0 -105
  228. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/useCoordinateCircle.ts +0 -46
  229. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/useScaleThreshold.ts +0 -171
  230. package/src/Graph/LineChart/BasicComponents/Lines/index.tsx +0 -241
  231. package/src/Graph/LineChart/BasicComponents/Lines/models.ts +0 -42
  232. package/src/Graph/LineChart/Icons/Downtime.tsx +0 -9
  233. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/GuidingLines.tsx +0 -45
  234. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/RegularAnchorPoint.tsx +0 -66
  235. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/StackedAnchorPoint.tsx +0 -76
  236. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/index.tsx +0 -20
  237. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/models.ts +0 -62
  238. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/useTickGraph.ts +0 -92
  239. package/src/Graph/LineChart/InteractiveComponents/Annotations/Annotation/Area.tsx +0 -114
  240. package/src/Graph/LineChart/InteractiveComponents/Annotations/Annotation/Line.tsx +0 -103
  241. package/src/Graph/LineChart/InteractiveComponents/Annotations/Annotation/index.tsx +0 -81
  242. package/src/Graph/LineChart/InteractiveComponents/Annotations/Area/Downtime.tsx +0 -27
  243. package/src/Graph/LineChart/InteractiveComponents/Annotations/EventAnnotations.tsx +0 -61
  244. package/src/Graph/LineChart/InteractiveComponents/Annotations/Line/Acknowledgement.tsx +0 -27
  245. package/src/Graph/LineChart/InteractiveComponents/Annotations/Line/Comments.tsx +0 -25
  246. package/src/Graph/LineChart/InteractiveComponents/Annotations/annotationsAtoms.ts +0 -183
  247. package/src/Graph/LineChart/InteractiveComponents/Annotations/index.tsx +0 -49
  248. package/src/Graph/LineChart/InteractiveComponents/Annotations/models.ts +0 -25
  249. package/src/Graph/LineChart/InteractiveComponents/Annotations/useAnnotation.ts +0 -56
  250. package/src/Graph/LineChart/InteractiveComponents/Bar.tsx +0 -21
  251. package/src/Graph/LineChart/InteractiveComponents/GraphValueTooltip/GraphValueTooltip.tsx +0 -74
  252. package/src/Graph/LineChart/InteractiveComponents/GraphValueTooltip/useGraphValueTooltip.ts +0 -61
  253. package/src/Graph/LineChart/InteractiveComponents/GraphValueTooltip/useGraphValueTooltipStyles.ts +0 -31
  254. package/src/Graph/LineChart/InteractiveComponents/TimeShiftZones/TimeShiftIcon.tsx +0 -62
  255. package/src/Graph/LineChart/InteractiveComponents/TimeShiftZones/TimeShiftZone.tsx +0 -74
  256. package/src/Graph/LineChart/InteractiveComponents/TimeShiftZones/index.tsx +0 -84
  257. package/src/Graph/LineChart/InteractiveComponents/TimeShiftZones/models.ts +0 -12
  258. package/src/Graph/LineChart/InteractiveComponents/TimeShiftZones/useTimeShiftZones.ts +0 -73
  259. package/src/Graph/LineChart/InteractiveComponents/Tooltip/index.tsx +0 -59
  260. package/src/Graph/LineChart/InteractiveComponents/Tooltip/models.ts +0 -9
  261. package/src/Graph/LineChart/InteractiveComponents/Tooltip/useGraphTooltip.ts +0 -67
  262. package/src/Graph/LineChart/InteractiveComponents/ZoomPreview/index.tsx +0 -38
  263. package/src/Graph/LineChart/InteractiveComponents/ZoomPreview/models.ts +0 -9
  264. package/src/Graph/LineChart/InteractiveComponents/ZoomPreview/useZoomPreview.ts +0 -107
  265. package/src/Graph/LineChart/InteractiveComponents/ZoomPreview/zoomPreviewAtoms.ts +0 -3
  266. package/src/Graph/LineChart/InteractiveComponents/index.tsx +0 -283
  267. package/src/Graph/LineChart/InteractiveComponents/interactionWithGraphAtoms.ts +0 -32
  268. package/src/Graph/LineChart/Legend/Legend.styles.ts +0 -143
  269. package/src/Graph/LineChart/Legend/LegendContent.tsx +0 -33
  270. package/src/Graph/LineChart/Legend/LegendHeader.tsx +0 -96
  271. package/src/Graph/LineChart/Legend/index.tsx +0 -208
  272. package/src/Graph/LineChart/Legend/models.ts +0 -16
  273. package/src/Graph/LineChart/Legend/useLegend.ts +0 -104
  274. package/src/Graph/LineChart/LineChart.cypress.spec.tsx +0 -407
  275. package/src/Graph/LineChart/LineChart.styles.ts +0 -5
  276. package/src/Graph/LineChart/LineChart.tsx +0 -353
  277. package/src/Graph/LineChart/LoadingSkeleton.tsx +0 -44
  278. package/src/Graph/LineChart/common/index.ts +0 -52
  279. package/src/Graph/LineChart/graphAtoms.ts +0 -3
  280. package/src/Graph/LineChart/helpers/doc.ts +0 -563
  281. package/src/Graph/LineChart/helpers/index.ts +0 -66
  282. package/src/Graph/LineChart/index.stories.tsx +0 -504
  283. package/src/Graph/LineChart/index.tsx +0 -118
  284. package/src/Graph/LineChart/models.ts +0 -179
  285. package/src/Graph/LineChart/translatedLabels.ts +0 -9
  286. package/src/Graph/LineChart/useLineChartData.ts +0 -88
  287. package/src/Graph/LineChart/useLineChartIntersection.ts +0 -36
  288. package/src/Graph/PieChart/PieChart.cypress.spec.tsx +0 -150
  289. package/src/Graph/PieChart/PieChart.stories.tsx +0 -204
  290. package/src/Graph/PieChart/PieChart.styles.ts +0 -39
  291. package/src/Graph/PieChart/PieChart.tsx +0 -14
  292. package/src/Graph/PieChart/ResponsivePie.tsx +0 -249
  293. package/src/Graph/PieChart/index.ts +0 -1
  294. package/src/Graph/PieChart/models.ts +0 -19
  295. package/src/Graph/PieChart/useResponsivePie.ts +0 -78
  296. package/src/Graph/SingleBar/ResponsiveSingleBar.tsx +0 -194
  297. package/src/Graph/SingleBar/SingleBar.cypress.spec.tsx +0 -121
  298. package/src/Graph/SingleBar/SingleBar.stories.tsx +0 -232
  299. package/src/Graph/SingleBar/SingleBar.tsx +0 -25
  300. package/src/Graph/SingleBar/ThresholdLine.tsx +0 -99
  301. package/src/Graph/SingleBar/Thresholds.tsx +0 -58
  302. package/src/Graph/SingleBar/index.ts +0 -1
  303. package/src/Graph/SingleBar/models.ts +0 -10
  304. package/src/Graph/Text/Text.cypress.spec.tsx +0 -101
  305. package/src/Graph/Text/Text.stories.tsx +0 -155
  306. package/src/Graph/Text/Text.styles.ts +0 -27
  307. package/src/Graph/Text/Text.tsx +0 -100
  308. package/src/Graph/Text/index.ts +0 -1
  309. package/src/Graph/Tree/DescendantNodes.tsx +0 -89
  310. package/src/Graph/Tree/Links.tsx +0 -77
  311. package/src/Graph/Tree/StandaloneTree.tsx +0 -32
  312. package/src/Graph/Tree/Tree.cypress.spec.tsx +0 -195
  313. package/src/Graph/Tree/Tree.stories.tsx +0 -160
  314. package/src/Graph/Tree/Tree.tsx +0 -116
  315. package/src/Graph/Tree/constants.ts +0 -2
  316. package/src/Graph/Tree/index.ts +0 -4
  317. package/src/Graph/Tree/models.ts +0 -55
  318. package/src/Graph/Tree/stories/contents.tsx +0 -164
  319. package/src/Graph/Tree/stories/datas.ts +0 -305
  320. package/src/Graph/Tree/utils.ts +0 -49
  321. package/src/Graph/common/Axes/UnitLabel.tsx +0 -20
  322. package/src/Graph/common/Axes/index.tsx +0 -127
  323. package/src/Graph/common/Axes/models.ts +0 -28
  324. package/src/Graph/common/Axes/useAxisY.ts +0 -109
  325. package/src/Graph/common/BaseChart/BaseChart.tsx +0 -137
  326. package/src/Graph/common/BaseChart/ChartSvgWrapper.tsx +0 -86
  327. package/src/Graph/common/BaseChart/Header/index.tsx +0 -37
  328. package/src/Graph/common/BaseChart/Header/models.ts +0 -4
  329. package/src/Graph/common/BaseChart/Header/useHeaderStyles.ts +0 -9
  330. package/src/Graph/common/BaseChart/useBaseChartStyles.ts +0 -44
  331. package/src/Graph/common/BaseChart/useComputeBaseChartDimensions.ts +0 -66
  332. package/src/Graph/common/Grids/index.tsx +0 -44
  333. package/src/Graph/common/Thresholds/ThresholdLine.tsx +0 -76
  334. package/src/Graph/common/Thresholds/Thresholds.tsx +0 -81
  335. package/src/Graph/common/margins.ts +0 -1
  336. package/src/Graph/common/models.ts +0 -19
  337. package/src/Graph/common/testUtils.ts +0 -71
  338. package/src/Graph/common/timeSeries/index.test.ts +0 -624
  339. package/src/Graph/common/timeSeries/index.ts +0 -719
  340. package/src/Graph/common/timeSeries/models.ts +0 -136
  341. package/src/Graph/common/useTooltipStyles.ts +0 -18
  342. package/src/Graph/common/utils.ts +0 -180
  343. package/src/Graph/index.ts +0 -15
  344. package/src/Graph/mockedData/annotationData.json +0 -326
  345. package/src/Graph/mockedData/curvesWithSameColor.json +0 -252
  346. package/src/Graph/mockedData/exclusionPeriodFirstPeriod.json +0 -588
  347. package/src/Graph/mockedData/exclusionPeriodSecondPeriod.json +0 -588
  348. package/src/Graph/mockedData/exclusionPeriodThirdPeriod.json +0 -581
  349. package/src/Graph/mockedData/lastDay.json +0 -1326
  350. package/src/Graph/mockedData/lastDayAreaStack.json +0 -3106
  351. package/src/Graph/mockedData/lastDayForward.json +0 -1338
  352. package/src/Graph/mockedData/lastDayThreshold.json +0 -2352
  353. package/src/Graph/mockedData/lastDayWithIncompleteValues.json +0 -1320
  354. package/src/Graph/mockedData/lastDayWithNullValues.json +0 -1314
  355. package/src/Graph/mockedData/lastMonth.json +0 -1674
  356. package/src/Graph/mockedData/lastWeek.json +0 -2202
  357. package/src/Graph/mockedData/pingService.json +0 -203
  358. package/src/Graph/mockedData/pingServiceMixedStacked.json +0 -203
  359. package/src/Graph/mockedData/pingServiceStacked.json +0 -203
  360. package/src/Graph/mockedData/zoomPreview.json +0 -742
  361. package/src/Home.mdx +0 -41
  362. package/src/InputField/Number/Number.cypress.spec.tsx +0 -85
  363. package/src/InputField/Number/Number.stories.tsx +0 -66
  364. package/src/InputField/Number/Number.tsx +0 -75
  365. package/src/InputField/Select/Autocomplete/Connected/Multi/MultiConnectedAutocompleteField.cypress.spec.tsx +0 -127
  366. package/src/InputField/Select/Autocomplete/Connected/Multi/utils/index.ts +0 -22
  367. package/src/Listing/Cell/DataCell.styles.ts +0 -27
  368. package/src/Listing/EmptyResult/EmptyResult.tsx +0 -13
  369. package/src/Listing/Header/Cell/ListingHeaderCell.styles.ts +0 -71
  370. package/src/Listing/Header/Cell/SelectActionListingHeaderCell.styles.ts +0 -26
  371. package/src/Listing/Header/Cell/SelectActionListingHeaderCell.tsx +0 -70
  372. package/src/Listing/Header/ListingHeader.styles.ts +0 -16
  373. package/src/Listing/Header/_internals/DraggableIconButton.tsx +0 -35
  374. package/src/Listing/Header/index.ts +0 -1
  375. package/src/Listing/Listing.cypress.spec.tsx +0 -307
  376. package/src/Listing/Listing.styles.ts +0 -78
  377. package/src/Listing/ListingDocs.mdx +0 -61
  378. package/src/Listing/Row/EmptyRow.styles.ts +0 -14
  379. package/src/Listing/Row/EmptyRow.tsx +0 -30
  380. package/src/Listing/Row/SkeletonLoaderRows.tsx +0 -23
  381. package/src/Module/Module.cypress.spec.tsx +0 -129
  382. package/src/ParentSize/ParentSize.tsx +0 -24
  383. package/src/ParentSize/index.ts +0 -1
  384. package/src/RichTextEditor/RichTextEditor.cypress.spec.tsx +0 -408
  385. package/src/RichTextEditor/plugins/ToolbarPlugin/AlignPicker.tsx +0 -116
  386. package/src/RichTextEditor/plugins/ToolbarPlugin/BlockButtons.tsx +0 -155
  387. package/src/RichTextEditor/plugins/ToolbarPlugin/LinkButton.tsx +0 -106
  388. package/src/RichTextEditor/plugins/ToolbarPlugin/ListButton.tsx +0 -155
  389. package/src/RichTextEditor/plugins/ToolbarPlugin/MacrosButton.tsx +0 -75
  390. package/src/RichTextEditor/plugins/ToolbarPlugin/ToolbarPlugin.styles.ts +0 -32
  391. package/src/TimePeriods/CustomTimePeriod/CompactCustomTimePeriod.styles.ts +0 -50
  392. package/src/TimePeriods/CustomTimePeriod/CompactCustomTimePeriod.tsx +0 -107
  393. package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/ErrorText.tsx +0 -14
  394. package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/PickersStartEndDate.tsx +0 -171
  395. package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/index.tsx +0 -76
  396. package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/models.ts +0 -59
  397. package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/usePickersStartEndDate.ts +0 -82
  398. package/src/TimePeriods/CustomTimePeriod/SimpleCustomTimePeriod.tsx +0 -28
  399. package/src/TimePeriods/CustomTimePeriod/index.tsx +0 -71
  400. package/src/TimePeriods/DateTimePickerInput.tsx +0 -86
  401. package/src/TimePeriods/ResolutionTimePeriod.cypress.spec.tsx +0 -68
  402. package/src/TimePeriods/SelectedTimePeriod.tsx +0 -102
  403. package/src/TimePeriods/TimePeriods.cypress.spec.tsx +0 -486
  404. package/src/TimePeriods/TimePeriods.styles.ts +0 -23
  405. package/src/TimePeriods/TimePeriods.tsx +0 -59
  406. package/src/TimePeriods/helpers/index.ts +0 -26
  407. package/src/TimePeriods/index.stories.tsx +0 -116
  408. package/src/TimePeriods/index.tsx +0 -37
  409. package/src/TimePeriods/mockedData.ts +0 -12
  410. package/src/TimePeriods/models.ts +0 -113
  411. package/src/TimePeriods/timePeriodsAtoms.ts +0 -102
  412. package/src/TimePeriods/translatedLabels.ts +0 -9
  413. package/src/TimePeriods/useSortTimePeriods.ts +0 -31
  414. package/src/TimePeriods/useTimePeriod.ts +0 -48
  415. package/src/Typography/EllipsisTypography.tsx +0 -18
  416. package/src/Typography/FluidTypography/FluidTypography.cypress.spec.tsx +0 -27
  417. package/src/Typography/FluidTypography/index.stories.tsx +0 -63
  418. package/src/Typography/FluidTypography/index.tsx +0 -46
  419. package/src/Typography/Subtitle.tsx +0 -55
  420. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-dashboard-normal-1-snap.png +0 -0
  421. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-dashboard-with-item-header-1-snap.png +0 -0
  422. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-dashboard-with-many-panels-1-snap.png +0 -0
  423. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-basic-1-snap.png +0 -0
  424. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-with-20-px-height-1-snap.png +0 -0
  425. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-with-200-px-width-1-snap.png +0 -0
  426. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-with-heading-5-variant-1-snap.png +0 -0
  427. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-with-long-text-1-snap.png +0 -0
  428. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-listing-as-empty-state-1-snap.png +0 -0
  429. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-listing-with-editable-and-sortable-columns-1-snap.png +0 -0
  430. package/src/api/logger.ts +0 -11
  431. package/src/api/useGraphQuery/index.ts +0 -199
  432. package/src/api/useGraphQuery/models.ts +0 -20
  433. package/src/base/tokens/README.md +0 -3
  434. package/src/base/tokens/source/$metadata.json +0 -5
  435. package/src/base/tokens/source/base.json +0 -142
  436. package/src/base/tokens/themes/base.tokens.d.ts +0 -38
  437. package/src/base/tokens/themes/base.tokens.json +0 -695
  438. package/src/base/tokens/themes/base.tokens.ts +0 -38
  439. package/src/base/tokens/themes/ui-dark.tokens.d.ts +0 -38
  440. package/src/base/tokens/themes/ui-dark.tokens.json +0 -695
  441. package/src/base/tokens/themes/ui-dark.tokens.ts +0 -38
  442. package/src/base/tokens/themes/ui-light.tokens.d.ts +0 -38
  443. package/src/base/tokens/themes/ui-light.tokens.json +0 -695
  444. package/src/base/tokens/themes/ui-light.tokens.ts +0 -38
  445. package/src/components/Avatar/Avatar.stories.tsx +0 -23
  446. package/src/components/Avatar/Avatar.styles.ts +0 -11
  447. package/src/components/Avatar/Avatar.tsx +0 -32
  448. package/src/components/Avatar/index.ts +0 -1
  449. package/src/components/Button/Button.stories.tsx +0 -34
  450. package/src/components/Button/Button.styles.ts +0 -44
  451. package/src/components/Button/Button.tsx +0 -78
  452. package/src/components/Button/Icon/IconButton.stories.tsx +0 -18
  453. package/src/components/Button/Icon/IconButton.styles.ts +0 -14
  454. package/src/components/Button/Icon/IconButton.tsx +0 -62
  455. package/src/components/Button/Icon/index.tsx +0 -1
  456. package/src/components/Button/index.ts +0 -2
  457. package/src/components/CollapsibleItem/CollapsibleItem.cypress.spec.tsx +0 -76
  458. package/src/components/CollapsibleItem/CollapsibleItem.stories.tsx +0 -51
  459. package/src/components/CollapsibleItem/CollapsibleItem.tsx +0 -76
  460. package/src/components/CollapsibleItem/index.ts +0 -1
  461. package/src/components/CollapsibleItem/useCollapsibleItemStyles.ts +0 -38
  462. package/src/components/DataTable/DataListing.tsx +0 -6
  463. package/src/components/DataTable/DataTable.cypress.spec.tsx +0 -174
  464. package/src/components/DataTable/DataTable.stories.tsx +0 -91
  465. package/src/components/DataTable/DataTable.styles.ts +0 -30
  466. package/src/components/DataTable/DataTable.tsx +0 -35
  467. package/src/components/DataTable/EmptyState/DataTableEmptyState.stories.tsx +0 -21
  468. package/src/components/DataTable/EmptyState/DataTableEmptyState.styles.ts +0 -26
  469. package/src/components/DataTable/EmptyState/DataTableEmptyState.tsx +0 -53
  470. package/src/components/DataTable/Item/DataTableItem.stories.tsx +0 -25
  471. package/src/components/DataTable/Item/DataTableItem.styles.ts +0 -38
  472. package/src/components/DataTable/Item/DataTableItem.tsx +0 -67
  473. package/src/components/DataTable/Item/DataTableItemSkeleton.tsx +0 -13
  474. package/src/components/DataTable/index.ts +0 -12
  475. package/src/components/Form/AccessRights/AccessRights.cypress.spec.tsx +0 -387
  476. package/src/components/Form/AccessRights/AccessRights.stories.tsx +0 -100
  477. package/src/components/Form/AccessRights/AccessRights.styles.ts +0 -10
  478. package/src/components/Form/AccessRights/AccessRights.tsx +0 -61
  479. package/src/components/Form/AccessRights/Actions/Actions.styles.ts +0 -10
  480. package/src/components/Form/AccessRights/Actions/Actions.tsx +0 -64
  481. package/src/components/Form/AccessRights/Actions/useActions.ts +0 -46
  482. package/src/components/Form/AccessRights/List/Item.tsx +0 -90
  483. package/src/components/Form/AccessRights/List/List.styles.tsx +0 -45
  484. package/src/components/Form/AccessRights/List/List.tsx +0 -52
  485. package/src/components/Form/AccessRights/List/ListItemSkeleton.tsx +0 -18
  486. package/src/components/Form/AccessRights/List/ListSkeleton.tsx +0 -22
  487. package/src/components/Form/AccessRights/List/RemoveAccessRight.tsx +0 -38
  488. package/src/components/Form/AccessRights/List/StateChip.tsx +0 -28
  489. package/src/components/Form/AccessRights/List/useItem.ts +0 -64
  490. package/src/components/Form/AccessRights/Provider.tsx +0 -15
  491. package/src/components/Form/AccessRights/ShareInput/ContactSwitch.tsx +0 -50
  492. package/src/components/Form/AccessRights/ShareInput/ShareInput.styles.ts +0 -17
  493. package/src/components/Form/AccessRights/ShareInput/ShareInput.tsx +0 -79
  494. package/src/components/Form/AccessRights/ShareInput/useShareInput.tsx +0 -113
  495. package/src/components/Form/AccessRights/Stats/Stats.tsx +0 -36
  496. package/src/components/Form/AccessRights/atoms.ts +0 -97
  497. package/src/components/Form/AccessRights/common/RoleSelectField.styles.tsx +0 -7
  498. package/src/components/Form/AccessRights/common/RoleSelectField.tsx +0 -45
  499. package/src/components/Form/AccessRights/models.ts +0 -52
  500. package/src/components/Form/AccessRights/storiesData.ts +0 -219
  501. package/src/components/Form/AccessRights/useAccessRightsChange.ts +0 -30
  502. package/src/components/Form/AccessRights/useAccessRightsInitValues.ts +0 -51
  503. package/src/components/Form/AccessRights/utils.ts +0 -18
  504. package/src/components/Form/Dashboard/Dashboard.resource.ts +0 -9
  505. package/src/components/Form/Dashboard/DashboardDuplicationForm.tsx +0 -85
  506. package/src/components/Form/Dashboard/DashboardForm.styles.ts +0 -21
  507. package/src/components/Form/Dashboard/DashboardForm.tsx +0 -137
  508. package/src/components/Form/Dashboard/GlobalRefreshFieldOption.tsx +0 -59
  509. package/src/components/Form/Dashboard/index.ts +0 -3
  510. package/src/components/Form/Dashboard/translatedLabels.ts +0 -8
  511. package/src/components/Form/Form.models.ts +0 -1
  512. package/src/components/Form/Form.resource.ts +0 -1
  513. package/src/components/Form/Form.styles.ts +0 -17
  514. package/src/components/Form/FormActions.tsx +0 -62
  515. package/src/components/Form/index.ts +0 -4
  516. package/src/components/Header/PageHeader/PageHeader.stories.tsx +0 -97
  517. package/src/components/Header/PageHeader/PageHeader.styles.ts +0 -126
  518. package/src/components/Header/PageHeader/PageHeader.tsx +0 -15
  519. package/src/components/Header/PageHeader/PageHeaderActions.tsx +0 -17
  520. package/src/components/Header/PageHeader/PageHeaderMain.tsx +0 -15
  521. package/src/components/Header/PageHeader/PageHeaderMenu.tsx +0 -15
  522. package/src/components/Header/PageHeader/PageHeaderMessage.tsx +0 -32
  523. package/src/components/Header/PageHeader/PageHeaderTitle.tsx +0 -47
  524. package/src/components/Header/PageHeader/index.ts +0 -14
  525. package/src/components/Header/index.ts +0 -1
  526. package/src/components/Icon/Icon.styles.ts +0 -0
  527. package/src/components/Icon/Icon.tsx +0 -2
  528. package/src/components/Icon/index.ts +0 -0
  529. package/src/components/Inputs/Switch/Switch.stories.tsx +0 -22
  530. package/src/components/Inputs/Switch/Switch.styles.ts +0 -13
  531. package/src/components/Inputs/Switch/Switch.tsx +0 -18
  532. package/src/components/Inputs/index.ts +0 -1
  533. package/src/components/ItemComposition/Item.tsx +0 -41
  534. package/src/components/ItemComposition/ItemComposition.cypress.spec.tsx +0 -113
  535. package/src/components/ItemComposition/ItemComposition.stories.tsx +0 -92
  536. package/src/components/ItemComposition/ItemComposition.styles.ts +0 -62
  537. package/src/components/ItemComposition/ItemComposition.tsx +0 -71
  538. package/src/components/ItemComposition/index.ts +0 -6
  539. package/src/components/Layout/AreaIndicator.styles.ts +0 -33
  540. package/src/components/Layout/AreaIndicator.tsx +0 -35
  541. package/src/components/Layout/PageLayout/PageLayout.stories.tsx +0 -81
  542. package/src/components/Layout/PageLayout/PageLayout.styles.ts +0 -41
  543. package/src/components/Layout/PageLayout/PageLayout.tsx +0 -21
  544. package/src/components/Layout/PageLayout/PageLayoutActions.tsx +0 -25
  545. package/src/components/Layout/PageLayout/PageLayoutBody.tsx +0 -25
  546. package/src/components/Layout/PageLayout/PageLayoutHeader.tsx +0 -19
  547. package/src/components/Layout/PageLayout/PageQuickAccess.tsx +0 -76
  548. package/src/components/Layout/PageLayout/index.ts +0 -12
  549. package/src/components/Layout/PageLayout.cypress.spec.tsx +0 -66
  550. package/src/components/Layout/index.ts +0 -1
  551. package/src/components/List/Item/Avatar.tsx +0 -21
  552. package/src/components/List/Item/AvatarSkeleton.tsx +0 -17
  553. package/src/components/List/Item/ListItem.stories.tsx +0 -41
  554. package/src/components/List/Item/ListItem.styles.ts +0 -63
  555. package/src/components/List/Item/ListItem.tsx +0 -34
  556. package/src/components/List/Item/Text.tsx +0 -27
  557. package/src/components/List/Item/TextSkeleton.tsx +0 -22
  558. package/src/components/List/Item/index.ts +0 -14
  559. package/src/components/List/List.stories.tsx +0 -70
  560. package/src/components/List/List.styles.ts +0 -8
  561. package/src/components/List/List.tsx +0 -19
  562. package/src/components/List/index.ts +0 -6
  563. package/src/components/Menu/Button/MenuButton.stories.tsx +0 -16
  564. package/src/components/Menu/Button/MenuButton.styles.ts +0 -27
  565. package/src/components/Menu/Button/MenuButton.tsx +0 -67
  566. package/src/components/Menu/Button/index.ts +0 -1
  567. package/src/components/Menu/Menu.stories.tsx +0 -71
  568. package/src/components/Menu/Menu.styles.ts +0 -68
  569. package/src/components/Menu/Menu.tsx +0 -25
  570. package/src/components/Menu/MenuDivider.tsx +0 -13
  571. package/src/components/Menu/MenuItem.tsx +0 -38
  572. package/src/components/Menu/MenuItems.tsx +0 -36
  573. package/src/components/Menu/index.ts +0 -12
  574. package/src/components/Menu/useMenu.tsx +0 -79
  575. package/src/components/Modal/ConfirmationModal/ConfirmationModal.cypress.spec.tsx +0 -168
  576. package/src/components/Modal/ConfirmationModal/ConfirmationModal.stories.tsx +0 -62
  577. package/src/components/Modal/ConfirmationModal/ConfirmationModal.tsx +0 -87
  578. package/src/components/Modal/Modal.stories.tsx +0 -142
  579. package/src/components/Modal/Modal.styles.ts +0 -96
  580. package/src/components/Modal/Modal.tsx +0 -79
  581. package/src/components/Modal/ModalActions.tsx +0 -64
  582. package/src/components/Modal/ModalBody.tsx +0 -15
  583. package/src/components/Modal/ModalHeader.tsx +0 -21
  584. package/src/components/Modal/index.ts +0 -14
  585. package/src/components/README.md +0 -3
  586. package/src/components/Tabs/Tab.styles.ts +0 -25
  587. package/src/components/Tabs/TabPanel.tsx +0 -22
  588. package/src/components/Tabs/Tabs.cypress.spec.tsx +0 -70
  589. package/src/components/Tabs/Tabs.stories.tsx +0 -55
  590. package/src/components/Tabs/Tabs.tsx +0 -55
  591. package/src/components/Tabs/index.ts +0 -6
  592. package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.stories.tsx +0 -62
  593. package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.styles.tsx +0 -22
  594. package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.tsx +0 -68
  595. package/src/components/Tooltip/ConfirmationTooltip/TooltipContent.tsx +0 -31
  596. package/src/components/Tooltip/ConfirmationTooltip/index.ts +0 -1
  597. package/src/components/Tooltip/ConfirmationTooltip/models.ts +0 -18
  598. package/src/components/Tooltip/TextOverflowTooltip/TextOverflowTooltip.stories.tsx +0 -70
  599. package/src/components/Tooltip/TextOverflowTooltip/TextOverflowTooltip.styles.ts +0 -5
  600. package/src/components/Tooltip/TextOverflowTooltip/TextOverflowTooltip.tsx +0 -115
  601. package/src/components/Tooltip/TextOverflowTooltip/index.tsx +0 -1
  602. package/src/components/Tooltip/Tooltip.stories.tsx +0 -41
  603. package/src/components/Tooltip/Tooltip.tsx +0 -57
  604. package/src/components/Tooltip/index.ts +0 -2
  605. package/src/components/Zoom/Minimap.tsx +0 -129
  606. package/src/components/Zoom/Zoom.cypress.spec.tsx +0 -246
  607. package/src/components/Zoom/Zoom.stories.tsx +0 -115
  608. package/src/components/Zoom/Zoom.styles.tsx +0 -68
  609. package/src/components/Zoom/Zoom.tsx +0 -64
  610. package/src/components/Zoom/ZoomContent.tsx +0 -170
  611. package/src/components/Zoom/constants.ts +0 -2
  612. package/src/components/Zoom/localPoint.ts +0 -51
  613. package/src/components/Zoom/models.ts +0 -25
  614. package/src/components/Zoom/useMinimap.ts +0 -156
  615. package/src/components/Zoom/useZoom.ts +0 -70
  616. package/src/components/Zoom/utils.ts +0 -55
  617. package/src/components/index.ts +0 -15
  618. package/src/styles/tokens/themes/_ui-dark.tokens.json +0 -695
  619. package/src/styles/tokens/themes/_ui-light.tokens.json +0 -695
  620. package/src/utils/centreonBaseURL.ts +0 -4
  621. package/src/utils/docsURL.ts +0 -31
  622. package/src/utils/index.ts +0 -27
  623. package/src/utils/panelSize.ts +0 -15
  624. package/src/utils/resourcesStatusURL.ts +0 -166
  625. package/src/utils/sanitizedHTML.ts +0 -18
  626. package/src/utils/translatedLabel.ts +0 -2
  627. package/src/utils/useFullscreen/Fullscreen.cypress.spec.tsx +0 -130
  628. package/src/utils/useFullscreen/atoms.ts +0 -3
  629. package/src/utils/useFullscreen/index.ts +0 -2
  630. package/src/utils/useFullscreen/translatedLabels.ts +0 -1
  631. package/src/utils/useFullscreen/useFullscreen.ts +0 -73
  632. package/src/utils/useFullscreen/useFullscreenListener.ts +0 -62
  633. package/src/utils/useInfiniteScrollListing.ts +0 -124
  634. package/src/utils/useLicenseExpirationWarning.test.tsx +0 -148
  635. package/src/utils/useLicenseExpirationWarning.ts +0 -52
  636. package/src/utils/usePluralizedTranslation.test.ts +0 -159
  637. package/src/utils/usePluralizedTranslation.ts +0 -38
  638. package/src/utils/useRefreshInterval.ts +0 -39
  639. package/src/utils/useResizeObserver.ts +0 -6
  640. package/src/utils/useThresholds.ts +0 -0
  641. /package/{public/brand → assets}/centreon-logo-one-line-dark.svg +0 -0
  642. /package/{public/brand → assets}/centreon-logo-one-line-light.svg +0 -0
  643. /package/{src/@assets/images → assets}/not-authorized-template-background-dark.svg +0 -0
  644. /package/{src/@assets/images → assets}/not-authorized-template-background-light.svg +0 -0
  645. /package/{src/fonts → fonts/fonts-generated}/roboto-bold-webfont.ttf +0 -0
  646. /package/{src/fonts → fonts/fonts-generated}/roboto-bold-webfont.woff +0 -0
  647. /package/{src/fonts → fonts/fonts-generated}/roboto-bold-webfont.woff2 +0 -0
  648. /package/{src/fonts → fonts/fonts-generated}/roboto-light-webfont.ttf +0 -0
  649. /package/{src/fonts → fonts/fonts-generated}/roboto-light-webfont.woff +0 -0
  650. /package/{src/fonts → fonts/fonts-generated}/roboto-light-webfont.woff2 +0 -0
  651. /package/{src/fonts → fonts/fonts-generated}/roboto-medium-webfont.ttf +0 -0
  652. /package/{src/fonts → fonts/fonts-generated}/roboto-medium-webfont.woff +0 -0
  653. /package/{src/fonts → fonts/fonts-generated}/roboto-medium-webfont.woff2 +0 -0
  654. /package/{src/fonts → fonts/fonts-generated}/roboto-regular-webfont.ttf +0 -0
  655. /package/{src/fonts → fonts/fonts-generated}/roboto-regular-webfont.woff +0 -0
  656. /package/{src/fonts → fonts/fonts-generated}/roboto-regular-webfont.woff2 +0 -0
  657. /package/src/Listing/Header/{_internals/Label.tsx → Label.tsx} +0 -0
  658. /package/src/Typography/{story.utils.tsx → index.tsx} +0 -0
@@ -1,1326 +0,0 @@
1
- {
2
- "global": {
3
- "title": "oracle-buffer-hit-ratio graph on srv-oracle-users",
4
- "start": "2023-06-18T17:04:46+02:00",
5
- "end": "2023-06-19T17:04:46+02:00",
6
- "vertical-label": "Value",
7
- "base": 1000,
8
- "width": 550,
9
- "height": 140,
10
- "scaled": 0,
11
- "multiple_services": false
12
- },
13
- "metrics": [
14
- {
15
- "index_id": 5614,
16
- "metric_id": 13536,
17
- "metric": "connTime",
18
- "metric_legend": "connTime",
19
- "unit": "s",
20
- "hidden": 0,
21
- "min": null,
22
- "max": null,
23
- "virtual": 0,
24
- "ds_data": {
25
- "ds_min": "1",
26
- "ds_max": "1",
27
- "ds_minmax_int": "0",
28
- "ds_last": "1",
29
- "ds_average": "1",
30
- "ds_total": "0",
31
- "ds_tickness": 1,
32
- "ds_color_line_mode": "1",
33
- "ds_color_line": "#6699cc"
34
- },
35
- "legend": "connTime",
36
- "stack": 0,
37
- "warn": null,
38
- "warn_low": null,
39
- "crit": null,
40
- "crit_low": null,
41
- "ds_color_area_warn": "#ff9a13",
42
- "ds_color_area_crit": "#e00b3d",
43
- "ds_order": 0,
44
- "data": [
45
- 0.53123333333,
46
- 0.56452,
47
- 0.5341,
48
- 0.51537666667,
49
- 0.25730333333,
50
- 0.48611333333,
51
- 0.41435666667,
52
- 0.42371,
53
- 0.55438333333,
54
- 0.60211,
55
- 0.72619,
56
- 0.67167333333,
57
- 0.63883333333,
58
- 0.52027666667,
59
- 0.67368666667,
60
- 0.83443333333,
61
- 0.86102333333,
62
- 0.76291666667,
63
- 0.39081666667,
64
- 0.22492333333,
65
- 0.64388333333,
66
- 0.81007666667,
67
- 0.61811333333,
68
- 0.58901,
69
- 0.58737333333,
70
- 0.60651333333,
71
- 0.74783333333,
72
- 0.92823,
73
- 0.89503333333,
74
- 0.82551333333,
75
- 0.75017333333,
76
- 0.33549666667,
77
- 0.40213666667,
78
- 0.60645666667,
79
- 0.55312666667,
80
- 0.31503666667,
81
- 0.078203333333,
82
- 0.44113,
83
- 0.35953666667,
84
- 0.41073333333,
85
- 0.8358,
86
- 0.86683333333,
87
- 0.68390666667,
88
- 0.28047333333,
89
- 0.0607,
90
- 0.49994666667,
91
- 0.75459666667,
92
- 0.51677333333,
93
- 0.63137,
94
- 0.74141666667,
95
- 0.60566666667,
96
- 0.32040666667,
97
- 0.15528666667,
98
- 0.43645333333,
99
- 0.65261666667,
100
- 0.46921666667,
101
- 0.60091666667,
102
- 0.47360333333,
103
- 0.10643,
104
- 0.29183,
105
- 0.35995,
106
- 0.40254333333,
107
- 0.58827666667,
108
- 0.45241333333,
109
- 0.24455333333,
110
- 0.18674,
111
- 0.13640333333,
112
- 0.34897666667,
113
- 0.55044,
114
- 0.52277666667,
115
- 0.69064333333,
116
- 0.56236333333,
117
- 0.39762,
118
- 0.65475666667,
119
- 0.58477,
120
- 0.49433,
121
- 0.28894333333,
122
- 0.49294333333,
123
- 0.64683,
124
- 0.35607666667,
125
- 0.55465,
126
- 0.45637333333,
127
- 0.54171666667,
128
- 0.42502666667,
129
- 0.30588,
130
- 0.32094,
131
- 0.22269333333,
132
- 0.44262,
133
- 0.62073333333,
134
- 0.60227666667,
135
- 0.32498333333,
136
- 0.25148,
137
- 0.47383333333,
138
- 0.30778333333,
139
- 0.26413666667,
140
- 0.58817,
141
- 0.42611,
142
- 0.44147,
143
- 0.70327,
144
- 0.61590333333,
145
- 0.67324333333,
146
- 0.71732333333,
147
- 0.38394,
148
- 0.23022,
149
- 0.32007333333,
150
- 0.37968,
151
- 0.32084666667,
152
- 0.54738333333,
153
- 0.85402666667,
154
- 0.72061666667,
155
- 0.69251666667,
156
- 0.87611666667,
157
- 0.83591333333,
158
- 0.36148,
159
- 0.45470333333,
160
- 0.68843,
161
- 0.52516,
162
- 0.50904666667,
163
- 0.51209333333,
164
- 0.6553,
165
- 0.85674333333,
166
- 0.51166,
167
- 0.4353,
168
- 0.76875333333,
169
- 0.78365666667,
170
- 0.71250666667,
171
- 0.81178666667,
172
- 0.67356666667,
173
- 0.48919333333,
174
- 0.55755,
175
- 0.50259333333,
176
- 0.28751333333,
177
- 0.56895666667,
178
- 0.46348666667,
179
- 0.065866666667,
180
- 0.56505666667,
181
- 0.90545333333,
182
- 0.80578666667,
183
- 0.5926,
184
- 0.60521333333,
185
- 0.80492333333,
186
- 0.46766666667,
187
- 0.45899,
188
- 0.67702333333,
189
- 0.35113666667,
190
- 0.47643666667,
191
- 0.71041666667,
192
- 0.55792,
193
- 0.73992,
194
- 0.76518,
195
- 0.35002333333,
196
- 0.26003,
197
- 0.55407333333,
198
- 0.76546333333,
199
- 0.37679,
200
- 0.067946666667,
201
- 0.34679,
202
- 0.26,
203
- 0.66257333333,
204
- 0.40848,
205
- 0.53458333333,
206
- 0.51552,
207
- 0.61109,
208
- 0.85858333333,
209
- 0.68362,
210
- 0.27503333333,
211
- 0.2019,
212
- 0.13221333333,
213
- 0.79457,
214
- 0.69949666667,
215
- 0.35275333333,
216
- 0.81529,
217
- 0.078553333333,
218
- 0.03339,
219
- 0.39325333333,
220
- 0.40176333333,
221
- 0.14054333333,
222
- 0.32028666667,
223
- 0.33053666667,
224
- 0.89415666667,
225
- 0.35837666667,
226
- 0.85846,
227
- 0.44418,
228
- 0.29612333333,
229
- 0.84746333333,
230
- 0.69179,
231
- 0.15608666667,
232
- 0.46017333333,
233
- 0.52039333333,
234
- 0.04379,
235
- 0.20713333333,
236
- 0.69767,
237
- 0.073123333333,
238
- 0.72342666667,
239
- 0.16706,
240
- 0.56104666667,
241
- 0.7642,
242
- 0.84448,
243
- 0.12149,
244
- 0.84398666667,
245
- 0.17495,
246
- 0.73171,
247
- 0.31948666667,
248
- 0.86547,
249
- 0.51050333333,
250
- 0.73184,
251
- 0.24332,
252
- 0.64512333333,
253
- 0.87497666667,
254
- 0.64631666667,
255
- 0.93808666667,
256
- 0.40630666667,
257
- 0.58898666667,
258
- 0.079853333333,
259
- 0.52536666667,
260
- 0.24560333333,
261
- 0.08881,
262
- 0.59968333333,
263
- 0.76672666667,
264
- 0.12605,
265
- 0.57891,
266
- 0.3994,
267
- 0.93223,
268
- 0.91706,
269
- 0.73287333333,
270
- 0.35697666667,
271
- 0.76189,
272
- 0.53946666667,
273
- 0.80423333333,
274
- 0.89725,
275
- 0.11539666667,
276
- 0.29745333333,
277
- 0.77966666667,
278
- 0.71089333333,
279
- 0.26618666667,
280
- 0.66581333333,
281
- 0.72693,
282
- 0.2858,
283
- 0.21299,
284
- 0.19799666667,
285
- 0.73068666667,
286
- 0.48692,
287
- 0.5738,
288
- 0.060393333333,
289
- 0.36694333333,
290
- 0.29905,
291
- 0.70373,
292
- 0.59026666667,
293
- 0.95010333333,
294
- 0.96899666667,
295
- 0.18778333333,
296
- 0.44893666667,
297
- 0.54063333333,
298
- 0.30962666667,
299
- 0.67226,
300
- 0.8979,
301
- 0.61484,
302
- 0.75435333333,
303
- 0.21677,
304
- 0.25687,
305
- 0.73120666667,
306
- 0.20676666667,
307
- 0.32435333333,
308
- 0.44787666667,
309
- 0.89004333333,
310
- 0.48926333333,
311
- 0.36620666667,
312
- 0.53720333333,
313
- 0.77175333333,
314
- 0.81031333333,
315
- 0.68735,
316
- 0.29566333333,
317
- 0.64441333333,
318
- 0.53196,
319
- 0.57447666667,
320
- 0.050853333333,
321
- 0.28769333333,
322
- 0.17988666667,
323
- 0.10621333333,
324
- 0.49249333333,
325
- 0.81975,
326
- 0.48222,
327
- 0.25617333333,
328
- 0.75395,
329
- 0.36961,
330
- 0.53932333333,
331
- 0.65789666667,
332
- 0.32339333333,
333
- null
334
- ],
335
- "prints": [
336
- [
337
- "Last:0.32"
338
- ],
339
- [
340
- "Min:0.03"
341
- ],
342
- [
343
- "Max:0.97"
344
- ],
345
- [
346
- "Average:0.51"
347
- ]
348
- ],
349
- "last_value": 0.32,
350
- "minimum_value": 0.03,
351
- "maximum_value": 0.97,
352
- "average_value": 0.51
353
- },
354
- {
355
- "index_id": 5614,
356
- "metric_id": 13534,
357
- "metric": "hitratio",
358
- "metric_legend": "hitratio",
359
- "unit": "%",
360
- "hidden": 0,
361
- "min": null,
362
- "max": null,
363
- "virtual": 0,
364
- "ds_data": {
365
- "ds_min": "1",
366
- "ds_max": "1",
367
- "ds_minmax_int": "0",
368
- "ds_last": "1",
369
- "ds_average": "1",
370
- "ds_total": "0",
371
- "ds_tickness": 1,
372
- "ds_color_line_mode": "1",
373
- "ds_color_line": "#cc9999"
374
- },
375
- "legend": "hitratio",
376
- "stack": 0,
377
- "warn": null,
378
- "warn_low": null,
379
- "crit": null,
380
- "crit_low": null,
381
- "ds_color_area_warn": "#ff9a13",
382
- "ds_color_area_crit": "#e00b3d",
383
- "ds_order": 0,
384
- "data": [
385
- 80.192446667,
386
- 80.324963333,
387
- 80.31374,
388
- 80.043863333,
389
- 78.97382,
390
- 78.01196,
391
- 77.85379,
392
- 77.311446667,
393
- 77.518806667,
394
- 77.363833333,
395
- 76.410303333,
396
- 75.385206667,
397
- 75.470793333,
398
- 75.444866667,
399
- 74.902366667,
400
- 74.787096667,
401
- 73.424696667,
402
- 72.984073333,
403
- 73.127803333,
404
- 72.06457,
405
- 71.092996667,
406
- 70.652853333,
407
- 72.838793333,
408
- 74.3249,
409
- 74.690726667,
410
- 75.462586667,
411
- 74.87943,
412
- 75.429203333,
413
- 76.836436667,
414
- 77.9801,
415
- 78.159586667,
416
- 77.133953333,
417
- 76.139193333,
418
- 76.100923333,
419
- 75.977446667,
420
- 75.897756667,
421
- 75.158033333,
422
- 73.702993333,
423
- 72.387816667,
424
- 71.130253333,
425
- 70.39241,
426
- 71.103633333,
427
- 71.842186667,
428
- 72.052586667,
429
- 71.766026667,
430
- 71.548363333,
431
- 71.128753333,
432
- 72.8407,
433
- 74.584996667,
434
- 73.229936667,
435
- 71.78108,
436
- 71.673396667,
437
- 71.184396667,
438
- 70.4531,
439
- 70.344756667,
440
- 72.715336667,
441
- 74.256866667,
442
- 73.24873,
443
- 73.652976667,
444
- 75.191423333,
445
- 75.63962,
446
- 74.709446667,
447
- 74.725396667,
448
- 75.930556667,
449
- 77.090426667,
450
- 77.774146667,
451
- 78.34251,
452
- 79.083023333,
453
- 79.19294,
454
- 79.902196667,
455
- 80.164726667,
456
- 79.28103,
457
- 78.529063333,
458
- 77.409276667,
459
- 75.7148,
460
- 75.432493333,
461
- 76.331206667,
462
- 76.05935,
463
- 76.290816667,
464
- 76.174896667,
465
- 74.520766667,
466
- 74.641866667,
467
- 75.632723333,
468
- 75.710626667,
469
- 74.692966667,
470
- 73.84993,
471
- 73.685023333,
472
- 73.59346,
473
- 73.485723333,
474
- 74.233233333,
475
- 76.036953333,
476
- 77.343543333,
477
- 77.40446,
478
- 77.324593333,
479
- 77.389233333,
480
- 76.69522,
481
- 75.906923333,
482
- 75.531203333,
483
- 75.230936667,
484
- 74.892196667,
485
- 75.257436667,
486
- 76.047326667,
487
- 76.83612,
488
- 76.4245,
489
- 74.62692,
490
- 73.454276667,
491
- 73.838346667,
492
- 74.91667,
493
- 75.654806667,
494
- 75.07332,
495
- 73.51074,
496
- 72.497866667,
497
- 72.15109,
498
- 71.317343333,
499
- 71.56787,
500
- 72.18692,
501
- 71.37498,
502
- 70.426836667,
503
- 70.611836667,
504
- 71.692516667,
505
- 72.545326667,
506
- 71.79552,
507
- 70.463443333,
508
- 70.393413333,
509
- 72.92507,
510
- 75.238116667,
511
- 74.41566,
512
- 72.43751,
513
- 70.750156667,
514
- 70.50232,
515
- 73.044236667,
516
- 75.752553333,
517
- 76.848816667,
518
- 77.010526667,
519
- 77.599906667,
520
- 77.768733333,
521
- 77.314866667,
522
- 77.01545,
523
- 77.704426667,
524
- 78.521463333,
525
- 79.173236667,
526
- 79.92521,
527
- 80.769776667,
528
- 82.234066667,
529
- 83.11997,
530
- 82.61005,
531
- 82.86877,
532
- 83.577323333,
533
- 84.011146667,
534
- 84.565116667,
535
- 84.8117,
536
- 85.159493333,
537
- 84.523926667,
538
- 83.279573333,
539
- 82.95924,
540
- 83.57027,
541
- 84.89847,
542
- 83.853206667,
543
- 84.676703333,
544
- 86.10003,
545
- 85.350266667,
546
- 84.94219,
547
- 85.116616667,
548
- 84.75833,
549
- 83.948586667,
550
- 83.637406667,
551
- 83.2102,
552
- 82.458723333,
553
- 82.4267,
554
- 83.49822,
555
- 83.83907,
556
- 82.507316667,
557
- 82.858513333,
558
- 84.26815,
559
- 83.920333333,
560
- 84.255026667,
561
- 82.74865,
562
- 82.445566667,
563
- 81.86038,
564
- 80.631133333,
565
- 81.62438,
566
- 81.23579,
567
- 80.95778,
568
- 79.499446667,
569
- 78.88417,
570
- 78.406263333,
571
- 76.631363333,
572
- 75.627376667,
573
- 75.485826667,
574
- 73.82354,
575
- 72.111716667,
576
- 70.308843333,
577
- 74.6297,
578
- 75.690653333,
579
- 74.810816667,
580
- 75.50583,
581
- 76.246803333,
582
- 77.157083333,
583
- 77.98975,
584
- 77.812933333,
585
- 77.722826667,
586
- 79.01059,
587
- 79.221413333,
588
- 80.305683333,
589
- 80.499336667,
590
- 78.993733333,
591
- 80.18652,
592
- 81.94138,
593
- 83.55718,
594
- 82.897013333,
595
- 82.29185,
596
- 81.54342,
597
- 82.708416667,
598
- 83.576366667,
599
- 83.04722,
600
- 83.864086667,
601
- 83.699626667,
602
- 82.20913,
603
- 81.32802,
604
- 79.87446,
605
- 79.22439,
606
- 77.4626,
607
- 78.31997,
608
- 76.586803333,
609
- 77.81823,
610
- 77.163863333,
611
- 77.913456667,
612
- 79.026213333,
613
- 77.37621,
614
- 78.781353333,
615
- 79.298723333,
616
- 78.798236667,
617
- 79.785363333,
618
- 80.425,
619
- 81.082246667,
620
- 82.75068,
621
- 83.45285,
622
- 82.340293333,
623
- 82.654883333,
624
- 82.498793333,
625
- 81.795116667,
626
- 82.371406667,
627
- 80.786006667,
628
- 79.975043333,
629
- 80.537633333,
630
- 78.944543333,
631
- 77.60028,
632
- 76.822273333,
633
- 75.409623333,
634
- 74.17238,
635
- 75.874883333,
636
- 77.656453333,
637
- 76.133693333,
638
- 75.23148,
639
- 76.698886667,
640
- 76.538843333,
641
- 77.68948,
642
- 77.99752,
643
- 79.06483,
644
- 79.920213333,
645
- 80.295163333,
646
- 82.13812,
647
- 81.25856,
648
- 79.891413333,
649
- 80.126633333,
650
- 79.632393333,
651
- 81.009086667,
652
- 81.655146667,
653
- 82.30286,
654
- 83.57457,
655
- 83.236493333,
656
- 83.495466667,
657
- 82.422156667,
658
- 82.68833,
659
- 83.218446667,
660
- 84.335683333,
661
- 85.520996667,
662
- 85.508586667,
663
- 85.91827,
664
- 84.19682,
665
- 86.29191,
666
- 87.191866667,
667
- 87.270053333,
668
- 88.025836667,
669
- 87.42611,
670
- 86.863723333,
671
- 86.564723333,
672
- 87.268263333,
673
- null
674
- ],
675
- "prints": [
676
- [
677
- "Last:87.27"
678
- ],
679
- [
680
- "Min:70.31"
681
- ],
682
- [
683
- "Max:88.03"
684
- ],
685
- [
686
- "Average:78.07"
687
- ]
688
- ],
689
- "last_value": 87.27,
690
- "minimum_value": 70.31,
691
- "maximum_value": 88.03,
692
- "average_value": 78.07
693
- },
694
- {
695
- "index_id": 5614,
696
- "metric_id": 13535,
697
- "metric": "querytime",
698
- "metric_legend": "querytime",
699
- "unit": "s",
700
- "hidden": 0,
701
- "min": null,
702
- "max": null,
703
- "virtual": 0,
704
- "ds_data": {
705
- "ds_min": "1",
706
- "ds_max": "1",
707
- "ds_minmax_int": "0",
708
- "ds_last": "1",
709
- "ds_average": "1",
710
- "ds_total": "0",
711
- "ds_tickness": 1,
712
- "ds_color_line_mode": "1",
713
- "ds_color_line": "#00ffcc"
714
- },
715
- "legend": "querytime",
716
- "stack": 0,
717
- "warn": null,
718
- "warn_low": null,
719
- "crit": null,
720
- "crit_low": null,
721
- "ds_color_area_warn": "#ff9a13",
722
- "ds_color_area_crit": "#e00b3d",
723
- "ds_order": 0,
724
- "data": [
725
- 0.29714333333,
726
- 0.69919666667,
727
- 0.79321666667,
728
- 0.71506,
729
- 0.5782,
730
- 0.48894666667,
731
- 0.67059333333,
732
- 0.54513333333,
733
- 0.63351666667,
734
- 0.83608666667,
735
- 0.5301,
736
- 0.27967333333,
737
- 0.37714333333,
738
- 0.59969333333,
739
- 0.48521,
740
- 0.59266333333,
741
- 0.53817,
742
- 0.1465,
743
- 0.16135,
744
- 0.3028,
745
- 0.19724333333,
746
- 0.17198333333,
747
- 0.33685666667,
748
- 0.24265333333,
749
- 0.34326666667,
750
- 0.76181,
751
- 0.73900333333,
752
- 0.67112333333,
753
- 0.59812333333,
754
- 0.52067666667,
755
- 0.77137333333,
756
- 0.47664333333,
757
- 0.046403333333,
758
- 0.24118333333,
759
- 0.53058333333,
760
- 0.57370333333,
761
- 0.47472333333,
762
- 0.19977,
763
- 0.44531,
764
- 0.80133,
765
- 0.3802,
766
- 0.034383333333,
767
- 0.23191333333,
768
- 0.32398666667,
769
- 0.22054333333,
770
- 0.35904666667,
771
- 0.24970666667,
772
- 0.29793666667,
773
- 0.69748666667,
774
- 0.54007333333,
775
- 0.28856,
776
- 0.18591333333,
777
- 0.28871666667,
778
- 0.43670333333,
779
- 0.31626666667,
780
- 0.3028,
781
- 0.47199333333,
782
- 0.56091666667,
783
- 0.39671,
784
- 0.44483,
785
- 0.61814,
786
- 0.61943,
787
- 0.71691,
788
- 0.4302,
789
- 0.11944666667,
790
- 0.42061,
791
- 0.39272666667,
792
- 0.19695,
793
- 0.16065,
794
- 0.34680666667,
795
- 0.39646,
796
- 0.48262,
797
- 0.40757,
798
- 0.14027,
799
- 0.29311333333,
800
- 0.57186,
801
- 0.76852,
802
- 0.8357,
803
- 0.90495,
804
- 0.50284,
805
- 0.46309,
806
- 0.73553666667,
807
- 0.41647333333,
808
- 0.47040333333,
809
- 0.79052,
810
- 0.53166333333,
811
- 0.46984666667,
812
- 0.69507333333,
813
- 0.81015333333,
814
- 0.68305,
815
- 0.44918,
816
- 0.42194333333,
817
- 0.44094333333,
818
- 0.22025666667,
819
- 0.48985,
820
- 0.86948,
821
- 0.89493,
822
- 0.60076,
823
- 0.20515333333,
824
- 0.56671333333,
825
- 0.53818333333,
826
- 0.18702666667,
827
- 0.56491333333,
828
- 0.91616666667,
829
- 0.48051333333,
830
- 0.35035666667,
831
- 0.78203666667,
832
- 0.88262,
833
- 0.69741,
834
- 0.67662,
835
- 0.55486333333,
836
- 0.28368666667,
837
- 0.46458333333,
838
- 0.84172,
839
- 0.71890333333,
840
- 0.63952333333,
841
- 0.87039666667,
842
- 0.54808,
843
- 0.56612666667,
844
- 0.63758666667,
845
- 0.37719666667,
846
- 0.68918666667,
847
- 0.88794,
848
- 0.90652666667,
849
- 0.97649666667,
850
- 0.78016,
851
- 0.36409,
852
- 0.34504333333,
853
- 0.60541666667,
854
- 0.58179,
855
- 0.70434333333,
856
- 0.53593666667,
857
- 0.53723333333,
858
- 0.50562666667,
859
- 0.36219666667,
860
- 0.36345666667,
861
- 0.61732333333,
862
- 0.77207666667,
863
- 0.30536333333,
864
- 0.22801666667,
865
- 0.30937,
866
- 0.32652666667,
867
- 0.50535,
868
- 0.60912,
869
- 0.50587666667,
870
- 0.27743666667,
871
- 0.51364333333,
872
- 0.50690666667,
873
- 0.15515333333,
874
- 0.39111333333,
875
- 0.4863,
876
- 0.52368,
877
- 0.34827333333,
878
- 0.2388,
879
- 0.57008333333,
880
- 0.60963666667,
881
- 0.73512333333,
882
- 0.7397,
883
- 0.89249666667,
884
- 0.71656666667,
885
- 0.53072,
886
- 0.66387333333,
887
- 0.61843,
888
- 0.30160333333,
889
- 0.74331,
890
- 0.17412666667,
891
- 0.83096666667,
892
- 0.17164666667,
893
- 0.12400333333,
894
- 0.30874333333,
895
- 0.31753666667,
896
- 0.54321666667,
897
- 0.24991333333,
898
- 0.29325,
899
- 0.87885333333,
900
- 0.14124333333,
901
- 0.22927333333,
902
- 0.87817666667,
903
- 0.73802333333,
904
- 0.94914,
905
- 0.86089333333,
906
- 0.49467,
907
- 0.076276666667,
908
- 0.33023333333,
909
- 0.68270666667,
910
- 0.78202,
911
- 0.64673,
912
- 0.4965,
913
- 0.21815666667,
914
- 0.073196666667,
915
- 0.34646333333,
916
- 0.23888666667,
917
- 0.79677333333,
918
- 0.91694333333,
919
- 0.80389,
920
- 0.16613333333,
921
- 0.10015,
922
- 0.77488,
923
- 0.90486666667,
924
- 0.07169,
925
- 0.72866333333,
926
- 0.65142333333,
927
- 0.41378333333,
928
- 0.92684,
929
- 0.66168333333,
930
- 0.47534,
931
- 0.73346,
932
- 0.42083,
933
- 0.23695666667,
934
- 0.22677,
935
- 0.08573,
936
- 0.55321,
937
- 0.80721333333,
938
- 0.43997,
939
- 0.22795,
940
- 0.34503666667,
941
- 0.73733666667,
942
- 0.90842333333,
943
- 0.88768333333,
944
- 0.08724,
945
- 0.25737333333,
946
- 0.25853333333,
947
- 0.27085,
948
- 0.39665,
949
- 0.34975333333,
950
- 0.17418333333,
951
- 0.90513,
952
- 0.89959666667,
953
- 0.65670333333,
954
- 0.92508,
955
- 0.49195,
956
- 0.63128,
957
- 0.15663333333,
958
- 0.059676666667,
959
- 0.11686333333,
960
- 0.16909,
961
- 0.33827666667,
962
- 0.77581,
963
- 0.43058666667,
964
- 0.097993333333,
965
- 0.090543333333,
966
- 0.44194333333,
967
- 0.12752,
968
- 0.34368333333,
969
- 0.90045666667,
970
- 0.85451333333,
971
- 0.13603333333,
972
- 0.87106666667,
973
- 0.24542333333,
974
- 0.65059,
975
- 0.18116666667,
976
- 0.77148333333,
977
- 0.88124666667,
978
- 0.86107,
979
- 0.31515666667,
980
- 0.91171666667,
981
- 0.37591333333,
982
- 0.34916,
983
- 0.77019333333,
984
- 0.62402666667,
985
- 0.48065666667,
986
- 0.22993333333,
987
- 0.89142,
988
- 0.085606666667,
989
- 0.70465333333,
990
- 0.50069666667,
991
- 0.27494333333,
992
- 0.88125,
993
- 0.55443333333,
994
- 0.38727,
995
- 0.76749333333,
996
- 0.83601,
997
- 0.71435,
998
- 0.53133666667,
999
- 0.33418,
1000
- 0.44919,
1001
- 0.86442,
1002
- 0.19165,
1003
- 0.82827,
1004
- 0.32092,
1005
- 0.23609333333,
1006
- 0.45102333333,
1007
- 0.75873,
1008
- 0.23588666667,
1009
- 0.41906666667,
1010
- 0.357,
1011
- 0.32246333333,
1012
- 0.64624666667,
1013
- null
1014
- ],
1015
- "prints": [
1016
- [
1017
- "Last:0.65"
1018
- ],
1019
- [
1020
- "Min:0.03"
1021
- ],
1022
- [
1023
- "Max:0.98"
1024
- ],
1025
- [
1026
- "Average:0.50"
1027
- ]
1028
- ],
1029
- "last_value": 0.65,
1030
- "minimum_value": 0.03,
1031
- "maximum_value": 0.98,
1032
- "average_value": 0.5
1033
- }
1034
- ],
1035
- "times": [
1036
- "2023-06-18T17:05:00+02:00",
1037
- "2023-06-18T17:10:00+02:00",
1038
- "2023-06-18T17:15:00+02:00",
1039
- "2023-06-18T17:20:00+02:00",
1040
- "2023-06-18T17:25:00+02:00",
1041
- "2023-06-18T17:30:00+02:00",
1042
- "2023-06-18T17:35:00+02:00",
1043
- "2023-06-18T17:40:00+02:00",
1044
- "2023-06-18T17:45:00+02:00",
1045
- "2023-06-18T17:50:00+02:00",
1046
- "2023-06-18T17:55:00+02:00",
1047
- "2023-06-18T18:00:00+02:00",
1048
- "2023-06-18T18:05:00+02:00",
1049
- "2023-06-18T18:10:00+02:00",
1050
- "2023-06-18T18:15:00+02:00",
1051
- "2023-06-18T18:20:00+02:00",
1052
- "2023-06-18T18:25:00+02:00",
1053
- "2023-06-18T18:30:00+02:00",
1054
- "2023-06-18T18:35:00+02:00",
1055
- "2023-06-18T18:40:00+02:00",
1056
- "2023-06-18T18:45:00+02:00",
1057
- "2023-06-18T18:50:00+02:00",
1058
- "2023-06-18T18:55:00+02:00",
1059
- "2023-06-18T19:00:00+02:00",
1060
- "2023-06-18T19:05:00+02:00",
1061
- "2023-06-18T19:10:00+02:00",
1062
- "2023-06-18T19:15:00+02:00",
1063
- "2023-06-18T19:20:00+02:00",
1064
- "2023-06-18T19:25:00+02:00",
1065
- "2023-06-18T19:30:00+02:00",
1066
- "2023-06-18T19:35:00+02:00",
1067
- "2023-06-18T19:40:00+02:00",
1068
- "2023-06-18T19:45:00+02:00",
1069
- "2023-06-18T19:50:00+02:00",
1070
- "2023-06-18T19:55:00+02:00",
1071
- "2023-06-18T20:00:00+02:00",
1072
- "2023-06-18T20:05:00+02:00",
1073
- "2023-06-18T20:10:00+02:00",
1074
- "2023-06-18T20:15:00+02:00",
1075
- "2023-06-18T20:20:00+02:00",
1076
- "2023-06-18T20:25:00+02:00",
1077
- "2023-06-18T20:30:00+02:00",
1078
- "2023-06-18T20:35:00+02:00",
1079
- "2023-06-18T20:40:00+02:00",
1080
- "2023-06-18T20:45:00+02:00",
1081
- "2023-06-18T20:50:00+02:00",
1082
- "2023-06-18T20:55:00+02:00",
1083
- "2023-06-18T21:00:00+02:00",
1084
- "2023-06-18T21:05:00+02:00",
1085
- "2023-06-18T21:10:00+02:00",
1086
- "2023-06-18T21:15:00+02:00",
1087
- "2023-06-18T21:20:00+02:00",
1088
- "2023-06-18T21:25:00+02:00",
1089
- "2023-06-18T21:30:00+02:00",
1090
- "2023-06-18T21:35:00+02:00",
1091
- "2023-06-18T21:40:00+02:00",
1092
- "2023-06-18T21:45:00+02:00",
1093
- "2023-06-18T21:50:00+02:00",
1094
- "2023-06-18T21:55:00+02:00",
1095
- "2023-06-18T22:00:00+02:00",
1096
- "2023-06-18T22:05:00+02:00",
1097
- "2023-06-18T22:10:00+02:00",
1098
- "2023-06-18T22:15:00+02:00",
1099
- "2023-06-18T22:20:00+02:00",
1100
- "2023-06-18T22:25:00+02:00",
1101
- "2023-06-18T22:30:00+02:00",
1102
- "2023-06-18T22:35:00+02:00",
1103
- "2023-06-18T22:40:00+02:00",
1104
- "2023-06-18T22:45:00+02:00",
1105
- "2023-06-18T22:50:00+02:00",
1106
- "2023-06-18T22:55:00+02:00",
1107
- "2023-06-18T23:00:00+02:00",
1108
- "2023-06-18T23:05:00+02:00",
1109
- "2023-06-18T23:10:00+02:00",
1110
- "2023-06-18T23:15:00+02:00",
1111
- "2023-06-18T23:20:00+02:00",
1112
- "2023-06-18T23:25:00+02:00",
1113
- "2023-06-18T23:30:00+02:00",
1114
- "2023-06-18T23:35:00+02:00",
1115
- "2023-06-18T23:40:00+02:00",
1116
- "2023-06-18T23:45:00+02:00",
1117
- "2023-06-18T23:50:00+02:00",
1118
- "2023-06-18T23:55:00+02:00",
1119
- "2023-06-19T00:00:00+02:00",
1120
- "2023-06-19T00:05:00+02:00",
1121
- "2023-06-19T00:10:00+02:00",
1122
- "2023-06-19T00:15:00+02:00",
1123
- "2023-06-19T00:20:00+02:00",
1124
- "2023-06-19T00:25:00+02:00",
1125
- "2023-06-19T00:30:00+02:00",
1126
- "2023-06-19T00:35:00+02:00",
1127
- "2023-06-19T00:40:00+02:00",
1128
- "2023-06-19T00:45:00+02:00",
1129
- "2023-06-19T00:50:00+02:00",
1130
- "2023-06-19T00:55:00+02:00",
1131
- "2023-06-19T01:00:00+02:00",
1132
- "2023-06-19T01:05:00+02:00",
1133
- "2023-06-19T01:10:00+02:00",
1134
- "2023-06-19T01:15:00+02:00",
1135
- "2023-06-19T01:20:00+02:00",
1136
- "2023-06-19T01:25:00+02:00",
1137
- "2023-06-19T01:30:00+02:00",
1138
- "2023-06-19T01:35:00+02:00",
1139
- "2023-06-19T01:40:00+02:00",
1140
- "2023-06-19T01:45:00+02:00",
1141
- "2023-06-19T01:50:00+02:00",
1142
- "2023-06-19T01:55:00+02:00",
1143
- "2023-06-19T02:00:00+02:00",
1144
- "2023-06-19T02:05:00+02:00",
1145
- "2023-06-19T02:10:00+02:00",
1146
- "2023-06-19T02:15:00+02:00",
1147
- "2023-06-19T02:20:00+02:00",
1148
- "2023-06-19T02:25:00+02:00",
1149
- "2023-06-19T02:30:00+02:00",
1150
- "2023-06-19T02:35:00+02:00",
1151
- "2023-06-19T02:40:00+02:00",
1152
- "2023-06-19T02:45:00+02:00",
1153
- "2023-06-19T02:50:00+02:00",
1154
- "2023-06-19T02:55:00+02:00",
1155
- "2023-06-19T03:00:00+02:00",
1156
- "2023-06-19T03:05:00+02:00",
1157
- "2023-06-19T03:10:00+02:00",
1158
- "2023-06-19T03:15:00+02:00",
1159
- "2023-06-19T03:20:00+02:00",
1160
- "2023-06-19T03:25:00+02:00",
1161
- "2023-06-19T03:30:00+02:00",
1162
- "2023-06-19T03:35:00+02:00",
1163
- "2023-06-19T03:40:00+02:00",
1164
- "2023-06-19T03:45:00+02:00",
1165
- "2023-06-19T03:50:00+02:00",
1166
- "2023-06-19T03:55:00+02:00",
1167
- "2023-06-19T04:00:00+02:00",
1168
- "2023-06-19T04:05:00+02:00",
1169
- "2023-06-19T04:10:00+02:00",
1170
- "2023-06-19T04:15:00+02:00",
1171
- "2023-06-19T04:20:00+02:00",
1172
- "2023-06-19T04:25:00+02:00",
1173
- "2023-06-19T04:30:00+02:00",
1174
- "2023-06-19T04:35:00+02:00",
1175
- "2023-06-19T04:40:00+02:00",
1176
- "2023-06-19T04:45:00+02:00",
1177
- "2023-06-19T04:50:00+02:00",
1178
- "2023-06-19T04:55:00+02:00",
1179
- "2023-06-19T05:00:00+02:00",
1180
- "2023-06-19T05:05:00+02:00",
1181
- "2023-06-19T05:10:00+02:00",
1182
- "2023-06-19T05:15:00+02:00",
1183
- "2023-06-19T05:20:00+02:00",
1184
- "2023-06-19T05:25:00+02:00",
1185
- "2023-06-19T05:30:00+02:00",
1186
- "2023-06-19T05:35:00+02:00",
1187
- "2023-06-19T05:40:00+02:00",
1188
- "2023-06-19T05:45:00+02:00",
1189
- "2023-06-19T05:50:00+02:00",
1190
- "2023-06-19T05:55:00+02:00",
1191
- "2023-06-19T06:00:00+02:00",
1192
- "2023-06-19T06:05:00+02:00",
1193
- "2023-06-19T06:10:00+02:00",
1194
- "2023-06-19T06:15:00+02:00",
1195
- "2023-06-19T06:20:00+02:00",
1196
- "2023-06-19T06:25:00+02:00",
1197
- "2023-06-19T06:30:00+02:00",
1198
- "2023-06-19T06:35:00+02:00",
1199
- "2023-06-19T06:40:00+02:00",
1200
- "2023-06-19T06:45:00+02:00",
1201
- "2023-06-19T06:50:00+02:00",
1202
- "2023-06-19T06:55:00+02:00",
1203
- "2023-06-19T07:00:00+02:00",
1204
- "2023-06-19T07:05:00+02:00",
1205
- "2023-06-19T07:10:00+02:00",
1206
- "2023-06-19T07:15:00+02:00",
1207
- "2023-06-19T07:20:00+02:00",
1208
- "2023-06-19T07:25:00+02:00",
1209
- "2023-06-19T07:30:00+02:00",
1210
- "2023-06-19T07:35:00+02:00",
1211
- "2023-06-19T07:40:00+02:00",
1212
- "2023-06-19T07:45:00+02:00",
1213
- "2023-06-19T07:50:00+02:00",
1214
- "2023-06-19T07:55:00+02:00",
1215
- "2023-06-19T08:00:00+02:00",
1216
- "2023-06-19T08:05:00+02:00",
1217
- "2023-06-19T08:10:00+02:00",
1218
- "2023-06-19T08:15:00+02:00",
1219
- "2023-06-19T08:20:00+02:00",
1220
- "2023-06-19T08:25:00+02:00",
1221
- "2023-06-19T08:30:00+02:00",
1222
- "2023-06-19T08:35:00+02:00",
1223
- "2023-06-19T08:40:00+02:00",
1224
- "2023-06-19T08:45:00+02:00",
1225
- "2023-06-19T08:50:00+02:00",
1226
- "2023-06-19T08:55:00+02:00",
1227
- "2023-06-19T09:00:00+02:00",
1228
- "2023-06-19T09:05:00+02:00",
1229
- "2023-06-19T09:10:00+02:00",
1230
- "2023-06-19T09:15:00+02:00",
1231
- "2023-06-19T09:20:00+02:00",
1232
- "2023-06-19T09:25:00+02:00",
1233
- "2023-06-19T09:30:00+02:00",
1234
- "2023-06-19T09:35:00+02:00",
1235
- "2023-06-19T09:40:00+02:00",
1236
- "2023-06-19T09:45:00+02:00",
1237
- "2023-06-19T09:50:00+02:00",
1238
- "2023-06-19T09:55:00+02:00",
1239
- "2023-06-19T10:00:00+02:00",
1240
- "2023-06-19T10:05:00+02:00",
1241
- "2023-06-19T10:10:00+02:00",
1242
- "2023-06-19T10:15:00+02:00",
1243
- "2023-06-19T10:20:00+02:00",
1244
- "2023-06-19T10:25:00+02:00",
1245
- "2023-06-19T10:30:00+02:00",
1246
- "2023-06-19T10:35:00+02:00",
1247
- "2023-06-19T10:40:00+02:00",
1248
- "2023-06-19T10:45:00+02:00",
1249
- "2023-06-19T10:50:00+02:00",
1250
- "2023-06-19T10:55:00+02:00",
1251
- "2023-06-19T11:00:00+02:00",
1252
- "2023-06-19T11:05:00+02:00",
1253
- "2023-06-19T11:10:00+02:00",
1254
- "2023-06-19T11:15:00+02:00",
1255
- "2023-06-19T11:20:00+02:00",
1256
- "2023-06-19T11:25:00+02:00",
1257
- "2023-06-19T11:30:00+02:00",
1258
- "2023-06-19T11:35:00+02:00",
1259
- "2023-06-19T11:40:00+02:00",
1260
- "2023-06-19T11:45:00+02:00",
1261
- "2023-06-19T11:50:00+02:00",
1262
- "2023-06-19T11:55:00+02:00",
1263
- "2023-06-19T12:00:00+02:00",
1264
- "2023-06-19T12:05:00+02:00",
1265
- "2023-06-19T12:10:00+02:00",
1266
- "2023-06-19T12:15:00+02:00",
1267
- "2023-06-19T12:20:00+02:00",
1268
- "2023-06-19T12:25:00+02:00",
1269
- "2023-06-19T12:30:00+02:00",
1270
- "2023-06-19T12:35:00+02:00",
1271
- "2023-06-19T12:40:00+02:00",
1272
- "2023-06-19T12:45:00+02:00",
1273
- "2023-06-19T12:50:00+02:00",
1274
- "2023-06-19T12:55:00+02:00",
1275
- "2023-06-19T13:00:00+02:00",
1276
- "2023-06-19T13:05:00+02:00",
1277
- "2023-06-19T13:10:00+02:00",
1278
- "2023-06-19T13:15:00+02:00",
1279
- "2023-06-19T13:20:00+02:00",
1280
- "2023-06-19T13:25:00+02:00",
1281
- "2023-06-19T13:30:00+02:00",
1282
- "2023-06-19T13:35:00+02:00",
1283
- "2023-06-19T13:40:00+02:00",
1284
- "2023-06-19T13:45:00+02:00",
1285
- "2023-06-19T13:50:00+02:00",
1286
- "2023-06-19T13:55:00+02:00",
1287
- "2023-06-19T14:00:00+02:00",
1288
- "2023-06-19T14:05:00+02:00",
1289
- "2023-06-19T14:10:00+02:00",
1290
- "2023-06-19T14:15:00+02:00",
1291
- "2023-06-19T14:20:00+02:00",
1292
- "2023-06-19T14:25:00+02:00",
1293
- "2023-06-19T14:30:00+02:00",
1294
- "2023-06-19T14:35:00+02:00",
1295
- "2023-06-19T14:40:00+02:00",
1296
- "2023-06-19T14:45:00+02:00",
1297
- "2023-06-19T14:50:00+02:00",
1298
- "2023-06-19T14:55:00+02:00",
1299
- "2023-06-19T15:00:00+02:00",
1300
- "2023-06-19T15:05:00+02:00",
1301
- "2023-06-19T15:10:00+02:00",
1302
- "2023-06-19T15:15:00+02:00",
1303
- "2023-06-19T15:20:00+02:00",
1304
- "2023-06-19T15:25:00+02:00",
1305
- "2023-06-19T15:30:00+02:00",
1306
- "2023-06-19T15:35:00+02:00",
1307
- "2023-06-19T15:40:00+02:00",
1308
- "2023-06-19T15:45:00+02:00",
1309
- "2023-06-19T15:50:00+02:00",
1310
- "2023-06-19T15:55:00+02:00",
1311
- "2023-06-19T16:00:00+02:00",
1312
- "2023-06-19T16:05:00+02:00",
1313
- "2023-06-19T16:10:00+02:00",
1314
- "2023-06-19T16:15:00+02:00",
1315
- "2023-06-19T16:20:00+02:00",
1316
- "2023-06-19T16:25:00+02:00",
1317
- "2023-06-19T16:30:00+02:00",
1318
- "2023-06-19T16:35:00+02:00",
1319
- "2023-06-19T16:40:00+02:00",
1320
- "2023-06-19T16:45:00+02:00",
1321
- "2023-06-19T16:50:00+02:00",
1322
- "2023-06-19T16:55:00+02:00",
1323
- "2023-06-19T17:00:00+02:00",
1324
- "2023-06-19T17:05:00+02:00"
1325
- ]
1326
- }