@centreon/ui 24.9.4 → 24.9.6

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 (727) 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 +60 -129
  6. package/{test/setupTests.js → setupTests.js} +1 -2
  7. package/src/ActionsList/index.stories.tsx +1 -81
  8. package/src/ActionsList/index.tsx +23 -60
  9. package/src/Button/Icon/index.stories.tsx +2 -2
  10. package/src/Button/Icon/index.tsx +5 -14
  11. package/src/Button/Save/StartIcon.tsx +4 -4
  12. package/src/Button/Save/index.stories.tsx +5 -10
  13. package/src/Button/Save/index.tsx +6 -10
  14. package/src/Colors/index.stories.tsx +2 -0
  15. package/src/Colors/index.tsx +3 -7
  16. package/src/ContentWithCircularProgress/index.stories.tsx +1 -1
  17. package/src/Dialog/Confirm/index.tsx +5 -26
  18. package/src/Dialog/Duplicate/index.test.tsx +1 -1
  19. package/src/Dialog/Duplicate/index.tsx +2 -5
  20. package/src/Dialog/UnsavedChanges/index.tsx +21 -22
  21. package/src/Dialog/UnsavedChanges/translatedLabels.ts +6 -4
  22. package/src/Dialog/index.stories.tsx +1 -1
  23. package/src/Dialog/index.tsx +7 -26
  24. package/src/FallbackPage/FallbackPage.tsx +7 -7
  25. package/src/FileDropZone/index.stories.tsx +1 -1
  26. package/src/FileDropZone/index.tsx +7 -9
  27. package/src/FileDropZone/useDropzone.test.ts +1 -1
  28. package/src/FileDropZone/useDropzone.ts +1 -1
  29. package/src/Form/CollapsibleGroup.tsx +11 -21
  30. package/src/Form/FormButtons.tsx +5 -3
  31. package/src/Form/Inputs/Autocomplete.tsx +4 -4
  32. package/src/Form/Inputs/ConnectedAutocomplete.tsx +2 -16
  33. package/src/Form/Inputs/FieldsTable/FieldsTable.tsx +15 -15
  34. package/src/Form/Inputs/FieldsTable/Row.tsx +2 -2
  35. package/src/Form/Inputs/Grid.tsx +2 -4
  36. package/src/Form/Inputs/PasswordEndAdornment.tsx +1 -1
  37. package/src/Form/Inputs/Radio.tsx +7 -18
  38. package/src/Form/Inputs/Switch.tsx +1 -1
  39. package/src/Form/Inputs/Text.tsx +16 -40
  40. package/src/Form/Inputs/index.tsx +72 -99
  41. package/src/Form/Inputs/models.ts +15 -42
  42. package/src/Form/{Form.stories.tsx → index.stories.tsx} +5 -4
  43. package/src/Form/index.tsx +72 -0
  44. package/src/Form/storiesData.tsx +32 -75
  45. package/src/Home.stories.mdx +122 -0
  46. package/src/Icon/IconAttach/index.tsx +6 -1
  47. package/src/Image/Image.tsx +65 -75
  48. package/src/Image/atoms.ts +3 -3
  49. package/src/Image/index.stories.tsx +101 -101
  50. package/src/Image/index.test.tsx +53 -53
  51. package/src/Image/models.ts +3 -3
  52. package/src/Image/useLoadImage.ts +49 -49
  53. package/src/InputField/Search/PersistentTooltip.tsx +8 -12
  54. package/src/InputField/Search/RegexpHelpTooltip.tsx +1 -1
  55. package/src/InputField/Search/index.stories.tsx +1 -1
  56. package/src/InputField/Search/index.tsx +2 -2
  57. package/src/InputField/Select/Autocomplete/Connected/Multi/index.test.tsx +23 -5
  58. package/src/InputField/Select/Autocomplete/Connected/Multi/index.tsx +1 -1
  59. package/src/InputField/Select/Autocomplete/Connected/index.stories.tsx +7 -4
  60. package/src/InputField/Select/Autocomplete/Connected/index.test.tsx +13 -10
  61. package/src/InputField/Select/Autocomplete/Connected/index.tsx +22 -63
  62. package/src/InputField/Select/Autocomplete/Draggable/MultiConnected.tsx +1 -1
  63. package/src/InputField/Select/Autocomplete/Draggable/SortableList.tsx +2 -2
  64. package/src/InputField/Select/Autocomplete/Draggable/SortableListContent.tsx +7 -6
  65. package/src/InputField/Select/Autocomplete/Draggable/index.stories.tsx +8 -6
  66. package/src/InputField/Select/Autocomplete/Draggable/index.tsx +17 -16
  67. package/src/InputField/Select/Autocomplete/Multi/index.tsx +17 -36
  68. package/src/InputField/Select/Autocomplete/Popover/index.tsx +1 -1
  69. package/src/InputField/Select/Autocomplete/index.stories.tsx +12 -2
  70. package/src/InputField/Select/Autocomplete/index.tsx +122 -137
  71. package/src/InputField/Select/IconPopover/index.tsx +6 -6
  72. package/src/InputField/Select/Option.tsx +1 -1
  73. package/src/InputField/Select/index.tsx +9 -23
  74. package/src/InputField/Text/index.stories.tsx +4 -3
  75. package/src/InputField/Text/index.tsx +46 -70
  76. package/src/InputField/Text/useAutoSize.ts +62 -62
  77. package/src/LicenseMessage/index.tsx +1 -1
  78. package/src/Listing/ActionBar/ColumnMultiSelect.tsx +4 -4
  79. package/src/Listing/ActionBar/PaginationActions.tsx +1 -1
  80. package/src/Listing/ActionBar/index.tsx +21 -25
  81. package/src/Listing/Cell/DataCell.tsx +73 -66
  82. package/src/Listing/Cell/EllipsisTypography.tsx +2 -0
  83. package/src/Listing/Cell/index.tsx +14 -87
  84. package/src/Listing/Checkbox.tsx +1 -1
  85. package/src/Listing/Header/{_internals/Label.tsx → Label.tsx} +3 -2
  86. package/src/Listing/Header/{_internals/PredefinedSelectionList.tsx → PredefinedSelectionList.tsx} +1 -1
  87. package/src/Listing/Header/{Cell/ListingHeaderCell.tsx → SortableCell/Content.tsx} +85 -18
  88. package/src/Listing/Header/SortableCell/DraggableIcon.tsx +41 -0
  89. package/src/Listing/Header/index.tsx +243 -0
  90. package/src/Listing/{Row/Row.tsx → Row.tsx} +17 -21
  91. package/src/Listing/Skeleton.tsx +11 -0
  92. package/src/Listing/index.stories.tsx +42 -180
  93. package/src/Listing/index.test.tsx +234 -0
  94. package/src/Listing/index.tsx +288 -304
  95. package/src/Listing/models.ts +0 -2
  96. package/src/Listing/tableAtoms.ts +10 -15
  97. package/src/Listing/useResizeObserver.ts +1 -1
  98. package/src/Listing/useStyleTable.ts +9 -10
  99. package/src/ListingPage/Filter.tsx +18 -15
  100. package/src/ListingPage/index.stories.tsx +8 -21
  101. package/src/ListingPage/index.tsx +38 -20
  102. package/src/Logo/CentreonLogo.tsx +2 -2
  103. package/src/MenuSkeleton/index.tsx +1 -1
  104. package/src/Module/LicensedModule/LicenseCheck/index.stories.tsx +2 -0
  105. package/src/Module/LicensedModule/LicenseCheck/index.tsx +9 -24
  106. package/src/Module/LicensedModule/index.tsx +1 -7
  107. package/src/Module/index.tsx +8 -9
  108. package/src/MultiSelectEntries/index.tsx +1 -1
  109. package/src/MultiSelectEntries/useHover.ts +1 -1
  110. package/src/Panel/Memoized.tsx +1 -1
  111. package/src/Panel/Section/ExpandableSection.tsx +6 -6
  112. package/src/Panel/Section/index.test.tsx +1 -1
  113. package/src/Panel/Section/index.tsx +2 -2
  114. package/src/Panel/index.tsx +19 -25
  115. package/src/PopoverMenu/index.tsx +9 -24
  116. package/src/RichTextEditor/ContentEditable.tsx +149 -195
  117. package/src/RichTextEditor/RichTextEditor.tsx +119 -244
  118. package/src/RichTextEditor/index.stories.tsx +88 -102
  119. package/src/RichTextEditor/index.ts +2 -2
  120. package/src/RichTextEditor/initialEditorState.json +113 -113
  121. package/src/RichTextEditor/plugins/AutoLinkPlugin/index.tsx +9 -57
  122. package/src/RichTextEditor/plugins/FloatingLinkEditorPlugin.tsx +25 -63
  123. package/src/RichTextEditor/plugins/ToolbarPlugin/FormatButtons.tsx +185 -124
  124. package/src/RichTextEditor/plugins/ToolbarPlugin/UndoRedoButtons.tsx +87 -97
  125. package/src/RichTextEditor/plugins/ToolbarPlugin/index.tsx +37 -62
  126. package/src/RichTextEditor/translatedLabels.ts +5 -8
  127. package/src/Snackbar/SnackbarProvider.tsx +4 -3
  128. package/src/Snackbar/Transition.tsx +6 -5
  129. package/src/Snackbar/index.tsx +12 -21
  130. package/src/Snackbar/useSnackbar.tsx +1 -5
  131. package/src/SortableItems/Item.tsx +3 -3
  132. package/src/SortableItems/SortableItem.tsx +3 -4
  133. package/src/SortableItems/index.stories.tsx +6 -5
  134. package/src/SortableItems/index.tsx +26 -20
  135. package/src/StatusChip/index.tsx +1 -1
  136. package/src/StoryBookThemeProvider/index.tsx +36 -35
  137. package/src/ThemeProvider/index.tsx +17 -51
  138. package/src/ThemeProvider/palettes.ts +201 -437
  139. package/src/TopCounterElements/ResourceSubMenu.tsx +4 -1
  140. package/src/TopCounterElements/StatusCounter.tsx +2 -2
  141. package/src/TopCounterElements/TopCounterLayout.tsx +4 -3
  142. package/src/TopCounterElements/{useCloseOnLegacyPage.tsx → useCloseOnLegacyPage.ts} +2 -5
  143. package/src/Typography/{Typography.stories.tsx → index.stories.tsx} +5 -5
  144. package/src/Typography/{story.utils.tsx → index.tsx} +6 -6
  145. package/src/WallpaperPage/index.stories.tsx +1 -1
  146. package/src/WallpaperPage/index.tsx +1 -1
  147. package/src/Wizard/ActionsBar.test.tsx +1 -1
  148. package/src/Wizard/ActionsBar.tsx +1 -1
  149. package/src/Wizard/StepIcon.tsx +1 -1
  150. package/src/Wizard/Stepper.tsx +2 -2
  151. package/src/Wizard/WizardContent.tsx +4 -3
  152. package/src/Wizard/index.stories.tsx +20 -7
  153. package/src/Wizard/index.test.tsx +4 -4
  154. package/src/Wizard/index.tsx +7 -22
  155. package/src/Wizard/models.ts +1 -8
  156. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-listing-loading-with-no-data-1-snap.png +0 -0
  157. package/src/api/QueryProvider.tsx +4 -7
  158. package/src/api/TestQueryProvider.tsx +23 -24
  159. package/src/api/buildListingDecoder.ts +1 -1
  160. package/src/api/buildListingEndpoint/getSearchQueryParameterValue.ts +33 -42
  161. package/src/api/buildListingEndpoint/index.test.ts +2 -2
  162. package/src/api/buildListingEndpoint/index.ts +2 -2
  163. package/src/api/buildListingEndpoint/models.ts +2 -2
  164. package/src/api/customFetch.ts +3 -22
  165. package/src/api/useFetchQuery/index.test.ts +6 -1
  166. package/src/api/useFetchQuery/index.ts +49 -79
  167. package/src/api/useMutationQuery/index.test.ts +5 -5
  168. package/src/api/useMutationQuery/index.ts +28 -91
  169. package/src/api/useRequest/index.test.ts +4 -1
  170. package/src/api/useRequest/index.ts +14 -14
  171. package/src/index.ts +22 -31
  172. package/src/queryParameters/index.ts +1 -1
  173. package/src/queryParameters/url/index.ts +1 -5
  174. package/src/storyshots.test.js +52 -0
  175. package/{test → src}/testRenderer.tsx +1 -1
  176. package/src/utils/getNormalizedId.ts +3 -1
  177. package/src/utils/useCopyToClipboard.ts +4 -3
  178. package/src/utils/useDebounce.ts +5 -8
  179. package/src/utils/useDeepCallback.ts +3 -1
  180. package/src/utils/useDeepMemo.ts +3 -1
  181. package/src/utils/useIntersectionObserver.ts +6 -6
  182. package/src/utils/useKeyObserver.tsx +4 -2
  183. package/src/utils/useLocaleDateTimeFormat/index.test.tsx +4 -4
  184. package/src/utils/useLocaleDateTimeFormat/index.ts +2 -4
  185. package/src/utils/useLocaleDateTimeFormat/localeFallback.test.tsx +5 -5
  186. package/src/utils/useMemoComponent.ts +2 -2
  187. package/src/utils/useViewportIntersection.ts +1 -1
  188. package/testRunner.js +36 -0
  189. package/tsconfig.json +29 -0
  190. package/types/declarations.d.ts +9 -0
  191. package/public/README.md +0 -39
  192. package/public/mockServiceWorker.js +0 -284
  193. package/src/@assets/README.md +0 -5
  194. package/src/@assets/brand/centreon-logo-one-line-dark.svg +0 -1
  195. package/src/@assets/brand/centreon-logo-one-line-light.svg +0 -1
  196. package/src/@types/aria-attributes.d.ts +0 -10
  197. package/src/@types/data-attributes.d.ts +0 -3
  198. package/src/@types/globals.d.ts +0 -9
  199. package/src/@types/vite-env.d.ts +0 -2
  200. package/src/ActionsList/ActionsList.styles.ts +0 -85
  201. package/src/ActionsList/models.ts +0 -8
  202. package/src/Checkbox/Checkbox.tsx +0 -109
  203. package/src/Checkbox/CheckboxGroup/index.stories.tsx +0 -41
  204. package/src/Checkbox/CheckboxGroup/index.tsx +0 -75
  205. package/src/Checkbox/index.stories.tsx +0 -39
  206. package/src/Checkbox/index.tsx +0 -2
  207. package/src/Dashboard/Dashboard.cypress.spec.tsx +0 -71
  208. package/src/Dashboard/Dashboard.styles.ts +0 -111
  209. package/src/Dashboard/DashboardLayout.stories.tsx +0 -104
  210. package/src/Dashboard/Grid.tsx +0 -70
  211. package/src/Dashboard/Item.tsx +0 -151
  212. package/src/Dashboard/Layout.tsx +0 -95
  213. package/src/Dashboard/atoms.ts +0 -3
  214. package/src/Dashboard/index.tsx +0 -9
  215. package/src/Dashboard/utils.ts +0 -28
  216. package/src/Form/Form.cypress.spec.tsx +0 -133
  217. package/src/Form/Form.styles.ts +0 -11
  218. package/src/Form/Form.tsx +0 -95
  219. package/src/Form/Inputs/Checkbox.tsx +0 -57
  220. package/src/Form/Inputs/CheckboxGroup.tsx +0 -76
  221. package/src/Form/Inputs/List/Content.tsx +0 -62
  222. package/src/Form/Inputs/List/List.styles.ts +0 -29
  223. package/src/Form/Inputs/List/List.tsx +0 -58
  224. package/src/Form/Inputs/List/useList.ts +0 -81
  225. package/src/Form/index.ts +0 -1
  226. package/src/Graph/BarChart/BarChart.cypress.spec.tsx +0 -283
  227. package/src/Graph/BarChart/BarChart.stories.tsx +0 -213
  228. package/src/Graph/BarChart/BarChart.tsx +0 -104
  229. package/src/Graph/BarChart/BarGroup.tsx +0 -239
  230. package/src/Graph/BarChart/BarStack.tsx +0 -141
  231. package/src/Graph/BarChart/ResponsiveBarChart.tsx +0 -253
  232. package/src/Graph/BarChart/Tooltip/BarChartTooltip.tsx +0 -122
  233. package/src/Graph/BarChart/Tooltip/useBarChartTooltipStyles.ts +0 -28
  234. package/src/Graph/BarChart/atoms.ts +0 -5
  235. package/src/Graph/BarChart/models.ts +0 -21
  236. package/src/Graph/BarChart/useBarChartStyles.tsx +0 -5
  237. package/src/Graph/BarChart/useBarStack.ts +0 -114
  238. package/src/Graph/BarStack/BarStack.cypress.spec.tsx +0 -139
  239. package/src/Graph/BarStack/BarStack.stories.tsx +0 -140
  240. package/src/Graph/BarStack/BarStack.styles.ts +0 -41
  241. package/src/Graph/BarStack/BarStack.tsx +0 -14
  242. package/src/Graph/BarStack/ResponsiveBarStack.tsx +0 -218
  243. package/src/Graph/BarStack/index.ts +0 -1
  244. package/src/Graph/BarStack/models.ts +0 -20
  245. package/src/Graph/BarStack/useResponsiveBarStack.ts +0 -127
  246. package/src/Graph/Chart/BasicComponents/Lines/Point.tsx +0 -36
  247. package/src/Graph/Chart/BasicComponents/Lines/RegularLines/index.tsx +0 -132
  248. package/src/Graph/Chart/BasicComponents/Lines/RegularLines/useRegularLines.ts +0 -15
  249. package/src/Graph/Chart/BasicComponents/Lines/StackedLines/index.tsx +0 -140
  250. package/src/Graph/Chart/BasicComponents/Lines/StackedLines/useStackedLines.ts +0 -67
  251. package/src/Graph/Chart/BasicComponents/Lines/Threshold/BasicThreshold.tsx +0 -52
  252. package/src/Graph/Chart/BasicComponents/Lines/Threshold/Circle.tsx +0 -43
  253. package/src/Graph/Chart/BasicComponents/Lines/Threshold/ThresholdWithPatternLines.tsx +0 -74
  254. package/src/Graph/Chart/BasicComponents/Lines/Threshold/ThresholdWithVariation.tsx +0 -62
  255. package/src/Graph/Chart/BasicComponents/Lines/Threshold/helpers/index.ts +0 -69
  256. package/src/Graph/Chart/BasicComponents/Lines/Threshold/index.tsx +0 -138
  257. package/src/Graph/Chart/BasicComponents/Lines/Threshold/models.ts +0 -104
  258. package/src/Graph/Chart/BasicComponents/Lines/Threshold/useCoordinateCircle.ts +0 -46
  259. package/src/Graph/Chart/BasicComponents/Lines/Threshold/useScaleThreshold.ts +0 -159
  260. package/src/Graph/Chart/BasicComponents/Lines/index.tsx +0 -262
  261. package/src/Graph/Chart/BasicComponents/Lines/models.ts +0 -42
  262. package/src/Graph/Chart/Chart.cypress.spec.tsx +0 -701
  263. package/src/Graph/Chart/Chart.stories.tsx +0 -697
  264. package/src/Graph/Chart/Chart.styles.ts +0 -13
  265. package/src/Graph/Chart/Chart.tsx +0 -349
  266. package/src/Graph/Chart/InteractiveComponents/AnchorPoint/GuidingLines.tsx +0 -45
  267. package/src/Graph/Chart/InteractiveComponents/AnchorPoint/RegularAnchorPoint.tsx +0 -70
  268. package/src/Graph/Chart/InteractiveComponents/AnchorPoint/StackedAnchorPoint.tsx +0 -81
  269. package/src/Graph/Chart/InteractiveComponents/AnchorPoint/index.tsx +0 -20
  270. package/src/Graph/Chart/InteractiveComponents/AnchorPoint/models.ts +0 -62
  271. package/src/Graph/Chart/InteractiveComponents/AnchorPoint/useTickGraph.ts +0 -92
  272. package/src/Graph/Chart/InteractiveComponents/Annotations/Annotation/Area.tsx +0 -114
  273. package/src/Graph/Chart/InteractiveComponents/Annotations/Annotation/Line.tsx +0 -103
  274. package/src/Graph/Chart/InteractiveComponents/Annotations/Annotation/index.tsx +0 -81
  275. package/src/Graph/Chart/InteractiveComponents/Annotations/Area/Downtime.tsx +0 -27
  276. package/src/Graph/Chart/InteractiveComponents/Annotations/EventAnnotations.tsx +0 -61
  277. package/src/Graph/Chart/InteractiveComponents/Annotations/Line/Acknowledgement.tsx +0 -27
  278. package/src/Graph/Chart/InteractiveComponents/Annotations/Line/Comments.tsx +0 -25
  279. package/src/Graph/Chart/InteractiveComponents/Annotations/annotationsAtoms.ts +0 -183
  280. package/src/Graph/Chart/InteractiveComponents/Annotations/index.tsx +0 -49
  281. package/src/Graph/Chart/InteractiveComponents/Annotations/models.ts +0 -25
  282. package/src/Graph/Chart/InteractiveComponents/Annotations/useAnnotation.ts +0 -56
  283. package/src/Graph/Chart/InteractiveComponents/Bar.tsx +0 -21
  284. package/src/Graph/Chart/InteractiveComponents/GraphValueTooltip/GraphValueTooltip.tsx +0 -61
  285. package/src/Graph/Chart/InteractiveComponents/GraphValueTooltip/GraphValueTooltipContent.tsx +0 -74
  286. package/src/Graph/Chart/InteractiveComponents/GraphValueTooltip/useGraphValueTooltip.ts +0 -61
  287. package/src/Graph/Chart/InteractiveComponents/GraphValueTooltip/useGraphValueTooltipStyles.ts +0 -31
  288. package/src/Graph/Chart/InteractiveComponents/TimeShiftZones/TimeShiftIcon.tsx +0 -62
  289. package/src/Graph/Chart/InteractiveComponents/TimeShiftZones/TimeShiftZone.tsx +0 -74
  290. package/src/Graph/Chart/InteractiveComponents/TimeShiftZones/index.tsx +0 -84
  291. package/src/Graph/Chart/InteractiveComponents/TimeShiftZones/models.ts +0 -12
  292. package/src/Graph/Chart/InteractiveComponents/TimeShiftZones/useTimeShiftZones.ts +0 -73
  293. package/src/Graph/Chart/InteractiveComponents/Tooltip/index.tsx +0 -59
  294. package/src/Graph/Chart/InteractiveComponents/Tooltip/models.ts +0 -9
  295. package/src/Graph/Chart/InteractiveComponents/Tooltip/useGraphTooltip.ts +0 -67
  296. package/src/Graph/Chart/InteractiveComponents/ZoomPreview/index.tsx +0 -38
  297. package/src/Graph/Chart/InteractiveComponents/ZoomPreview/models.ts +0 -9
  298. package/src/Graph/Chart/InteractiveComponents/ZoomPreview/useZoomPreview.ts +0 -107
  299. package/src/Graph/Chart/InteractiveComponents/ZoomPreview/zoomPreviewAtoms.ts +0 -3
  300. package/src/Graph/Chart/InteractiveComponents/index.tsx +0 -278
  301. package/src/Graph/Chart/InteractiveComponents/interactionWithGraphAtoms.ts +0 -32
  302. package/src/Graph/Chart/Legend/Legend.styles.ts +0 -137
  303. package/src/Graph/Chart/Legend/LegendContent.tsx +0 -33
  304. package/src/Graph/Chart/Legend/LegendHeader.tsx +0 -100
  305. package/src/Graph/Chart/Legend/index.tsx +0 -209
  306. package/src/Graph/Chart/Legend/models.ts +0 -16
  307. package/src/Graph/Chart/Legend/useLegend.ts +0 -104
  308. package/src/Graph/Chart/LoadingSkeleton.tsx +0 -44
  309. package/src/Graph/Chart/common/index.ts +0 -52
  310. package/src/Graph/Chart/graphAtoms.ts +0 -6
  311. package/src/Graph/Chart/helpers/doc.ts +0 -563
  312. package/src/Graph/Chart/helpers/index.ts +0 -66
  313. package/src/Graph/Chart/index.tsx +0 -131
  314. package/src/Graph/Chart/models.ts +0 -191
  315. package/src/Graph/Chart/translatedLabels.ts +0 -9
  316. package/src/Graph/Chart/useChartData.ts +0 -88
  317. package/src/Graph/Chart/useChartIntersection.ts +0 -36
  318. package/src/Graph/Gauge/AnimatedPie.tsx +0 -104
  319. package/src/Graph/Gauge/Gauge.cypress.spec.tsx +0 -102
  320. package/src/Graph/Gauge/Gauge.stories.tsx +0 -167
  321. package/src/Graph/Gauge/Gauge.tsx +0 -41
  322. package/src/Graph/Gauge/PieData.tsx +0 -68
  323. package/src/Graph/Gauge/ResponsiveGauge.tsx +0 -134
  324. package/src/Graph/Gauge/Thresholds.tsx +0 -119
  325. package/src/Graph/Gauge/index.ts +0 -1
  326. package/src/Graph/Gauge/models.ts +0 -20
  327. package/src/Graph/Gauge/utils.ts +0 -4
  328. package/src/Graph/HeatMap/HeatMap.cypress.spec.tsx +0 -145
  329. package/src/Graph/HeatMap/HeatMap.stories.tsx +0 -93
  330. package/src/Graph/HeatMap/HeatMap.styles.tsx +0 -30
  331. package/src/Graph/HeatMap/HeatMap.tsx +0 -14
  332. package/src/Graph/HeatMap/HeatMapData.json +0 -137
  333. package/src/Graph/HeatMap/ResponsiveHeatMap.tsx +0 -112
  334. package/src/Graph/HeatMap/index.ts +0 -1
  335. package/src/Graph/HeatMap/model.ts +0 -33
  336. package/src/Graph/Legend/Legend.tsx +0 -21
  337. package/src/Graph/Legend/index.ts +0 -1
  338. package/src/Graph/Legend/models.ts +0 -11
  339. package/src/Graph/PieChart/PieChart.cypress.spec.tsx +0 -150
  340. package/src/Graph/PieChart/PieChart.stories.tsx +0 -204
  341. package/src/Graph/PieChart/PieChart.styles.ts +0 -39
  342. package/src/Graph/PieChart/PieChart.tsx +0 -14
  343. package/src/Graph/PieChart/ResponsivePie.tsx +0 -267
  344. package/src/Graph/PieChart/index.ts +0 -1
  345. package/src/Graph/PieChart/models.ts +0 -24
  346. package/src/Graph/PieChart/useResponsivePie.ts +0 -84
  347. package/src/Graph/SingleBar/ResponsiveSingleBar.tsx +0 -194
  348. package/src/Graph/SingleBar/SingleBar.cypress.spec.tsx +0 -121
  349. package/src/Graph/SingleBar/SingleBar.stories.tsx +0 -232
  350. package/src/Graph/SingleBar/SingleBar.tsx +0 -25
  351. package/src/Graph/SingleBar/ThresholdLine.tsx +0 -99
  352. package/src/Graph/SingleBar/Thresholds.tsx +0 -58
  353. package/src/Graph/SingleBar/index.ts +0 -1
  354. package/src/Graph/SingleBar/models.ts +0 -10
  355. package/src/Graph/Text/Text.cypress.spec.tsx +0 -101
  356. package/src/Graph/Text/Text.stories.tsx +0 -155
  357. package/src/Graph/Text/Text.styles.ts +0 -27
  358. package/src/Graph/Text/Text.tsx +0 -100
  359. package/src/Graph/Text/index.ts +0 -1
  360. package/src/Graph/Tree/DescendantNodes.tsx +0 -89
  361. package/src/Graph/Tree/Links.tsx +0 -77
  362. package/src/Graph/Tree/StandaloneTree.tsx +0 -32
  363. package/src/Graph/Tree/Tree.cypress.spec.tsx +0 -197
  364. package/src/Graph/Tree/Tree.stories.tsx +0 -160
  365. package/src/Graph/Tree/Tree.tsx +0 -116
  366. package/src/Graph/Tree/constants.ts +0 -2
  367. package/src/Graph/Tree/index.ts +0 -4
  368. package/src/Graph/Tree/models.ts +0 -55
  369. package/src/Graph/Tree/stories/contents.tsx +0 -164
  370. package/src/Graph/Tree/stories/datas.ts +0 -305
  371. package/src/Graph/Tree/utils.ts +0 -49
  372. package/src/Graph/common/Axes/AxisStyles.ts +0 -11
  373. package/src/Graph/common/Axes/UnitLabel.tsx +0 -51
  374. package/src/Graph/common/Axes/index.tsx +0 -133
  375. package/src/Graph/common/Axes/models.ts +0 -30
  376. package/src/Graph/common/Axes/useAxisY.ts +0 -119
  377. package/src/Graph/common/BaseChart/BaseChart.tsx +0 -137
  378. package/src/Graph/common/BaseChart/ChartSvgWrapper.tsx +0 -89
  379. package/src/Graph/common/BaseChart/Header/index.tsx +0 -37
  380. package/src/Graph/common/BaseChart/Header/models.ts +0 -4
  381. package/src/Graph/common/BaseChart/Header/useHeaderStyles.ts +0 -9
  382. package/src/Graph/common/BaseChart/useBaseChartStyles.ts +0 -44
  383. package/src/Graph/common/BaseChart/useComputeBaseChartDimensions.ts +0 -66
  384. package/src/Graph/common/Grids/index.tsx +0 -44
  385. package/src/Graph/common/Thresholds/ThresholdLine.tsx +0 -76
  386. package/src/Graph/common/Thresholds/Thresholds.tsx +0 -76
  387. package/src/Graph/common/margins.ts +0 -1
  388. package/src/Graph/common/models.ts +0 -19
  389. package/src/Graph/common/testUtils.ts +0 -71
  390. package/src/Graph/common/timeSeries/index.test.ts +0 -636
  391. package/src/Graph/common/timeSeries/index.test.ts-E +0 -622
  392. package/src/Graph/common/timeSeries/index.ts +0 -697
  393. package/src/Graph/common/timeSeries/models.ts +0 -135
  394. package/src/Graph/common/useTooltipStyles.ts +0 -18
  395. package/src/Graph/common/utils.ts +0 -180
  396. package/src/Graph/index.ts +0 -17
  397. package/src/Graph/mockedData/annotationData.json +0 -324
  398. package/src/Graph/mockedData/curvesWithSameColor.json +0 -252
  399. package/src/Graph/mockedData/exclusionPeriodFirstPeriod.json +0 -368
  400. package/src/Graph/mockedData/exclusionPeriodSecondPeriod.json +0 -372
  401. package/src/Graph/mockedData/exclusionPeriodThirdPeriod.json +0 -367
  402. package/src/Graph/mockedData/lastDay.json +0 -1292
  403. package/src/Graph/mockedData/lastDayAreaStack.json +0 -3050
  404. package/src/Graph/mockedData/lastDayForward.json +0 -1305
  405. package/src/Graph/mockedData/lastDayThreshold.json +0 -2320
  406. package/src/Graph/mockedData/lastDayWithIncompleteValues.json +0 -1286
  407. package/src/Graph/mockedData/lastDayWithLotOfUnits.json +0 -1621
  408. package/src/Graph/mockedData/lastDayWithNullValues.json +0 -1280
  409. package/src/Graph/mockedData/lastMonth.json +0 -1641
  410. package/src/Graph/mockedData/lastWeek.json +0 -2169
  411. package/src/Graph/mockedData/pingService.json +0 -240
  412. package/src/Graph/mockedData/pingServiceLinesBars.json +0 -245
  413. package/src/Graph/mockedData/pingServiceLinesBarsMixed.json +0 -245
  414. package/src/Graph/mockedData/pingServiceLinesBarsStacked.json +0 -245
  415. package/src/Graph/mockedData/pingServiceMixedStacked.json +0 -240
  416. package/src/Graph/mockedData/pingServiceStacked.json +0 -240
  417. package/src/Graph/mockedData/zoomPreview.json +0 -372
  418. package/src/Home.mdx +0 -41
  419. package/src/Icon/AcnowledgementIcon.tsx +0 -8
  420. package/src/Icon/BaseIcon.tsx +0 -32
  421. package/src/Icon/DowntimeIcon.tsx +0 -14
  422. package/src/Icon/HostIcon.tsx +0 -8
  423. package/src/Icon/ServiceIcon.tsx +0 -8
  424. package/src/Icon/index.ts +0 -4
  425. package/src/InputField/Number/Number.cypress.spec.tsx +0 -85
  426. package/src/InputField/Number/Number.stories.tsx +0 -66
  427. package/src/InputField/Number/Number.tsx +0 -75
  428. package/src/InputField/Select/Autocomplete/Connected/Multi/MultiConnectedAutocompleteField.cypress.spec.tsx +0 -127
  429. package/src/InputField/Select/Autocomplete/Connected/Multi/utils/index.ts +0 -22
  430. package/src/Listing/Cell/DataCell.styles.ts +0 -27
  431. package/src/Listing/EmptyResult/EmptyResult.tsx +0 -11
  432. package/src/Listing/Header/Cell/ListingHeaderCell.styles.ts +0 -71
  433. package/src/Listing/Header/Cell/SelectActionListingHeaderCell.styles.ts +0 -26
  434. package/src/Listing/Header/Cell/SelectActionListingHeaderCell.tsx +0 -68
  435. package/src/Listing/Header/ListingHeader.styles.ts +0 -16
  436. package/src/Listing/Header/ListingHeader.tsx +0 -165
  437. package/src/Listing/Header/_internals/DraggableIconButton.tsx +0 -33
  438. package/src/Listing/Header/index.ts +0 -1
  439. package/src/Listing/Listing.cypress.spec.tsx +0 -307
  440. package/src/Listing/Listing.styles.ts +0 -78
  441. package/src/Listing/ListingDocs.mdx +0 -61
  442. package/src/Listing/Row/EmptyRow.styles.ts +0 -14
  443. package/src/Listing/Row/EmptyRow.tsx +0 -30
  444. package/src/Listing/Row/SkeletonLoaderRows.tsx +0 -21
  445. package/src/Module/Module.cypress.spec.tsx +0 -129
  446. package/src/ParentSize/ParentSize.tsx +0 -24
  447. package/src/ParentSize/index.ts +0 -1
  448. package/src/RichTextEditor/RichTextEditor.cypress.spec.tsx +0 -408
  449. package/src/RichTextEditor/plugins/ToolbarPlugin/AlignPicker.tsx +0 -116
  450. package/src/RichTextEditor/plugins/ToolbarPlugin/BlockButtons.tsx +0 -155
  451. package/src/RichTextEditor/plugins/ToolbarPlugin/LinkButton.tsx +0 -106
  452. package/src/RichTextEditor/plugins/ToolbarPlugin/ListButton.tsx +0 -155
  453. package/src/RichTextEditor/plugins/ToolbarPlugin/MacrosButton.tsx +0 -75
  454. package/src/RichTextEditor/plugins/ToolbarPlugin/ToolbarPlugin.styles.ts +0 -32
  455. package/src/TimePeriods/CustomTimePeriod/CompactCustomTimePeriod.styles.ts +0 -50
  456. package/src/TimePeriods/CustomTimePeriod/CompactCustomTimePeriod.tsx +0 -107
  457. package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/ErrorText.tsx +0 -14
  458. package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/PickersStartEndDate.tsx +0 -154
  459. package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/index.tsx +0 -76
  460. package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/models.ts +0 -74
  461. package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/usePickersStartEndDate.ts +0 -80
  462. package/src/TimePeriods/CustomTimePeriod/SimpleCustomTimePeriod.tsx +0 -34
  463. package/src/TimePeriods/CustomTimePeriod/index.tsx +0 -71
  464. package/src/TimePeriods/DateTimePickerInput.tsx +0 -96
  465. package/src/TimePeriods/ResolutionTimePeriod.cypress.spec.tsx +0 -74
  466. package/src/TimePeriods/SelectedTimePeriod.tsx +0 -102
  467. package/src/TimePeriods/TimePeriods.cypress.spec.tsx +0 -486
  468. package/src/TimePeriods/TimePeriods.styles.ts +0 -23
  469. package/src/TimePeriods/TimePeriods.tsx +0 -59
  470. package/src/TimePeriods/helpers/index.ts +0 -30
  471. package/src/TimePeriods/index.stories.tsx +0 -116
  472. package/src/TimePeriods/index.tsx +0 -38
  473. package/src/TimePeriods/mockedData.ts +0 -12
  474. package/src/TimePeriods/models.ts +0 -113
  475. package/src/TimePeriods/timePeriodsAtoms.ts +0 -102
  476. package/src/TimePeriods/translatedLabels.ts +0 -9
  477. package/src/TimePeriods/useSortTimePeriods.ts +0 -31
  478. package/src/TimePeriods/useTimePeriod.ts +0 -48
  479. package/src/Typography/EllipsisTypography.tsx +0 -21
  480. package/src/Typography/FluidTypography/FluidTypography.cypress.spec.tsx +0 -27
  481. package/src/Typography/FluidTypography/index.stories.tsx +0 -63
  482. package/src/Typography/FluidTypography/index.tsx +0 -46
  483. package/src/Typography/Subtitle.tsx +0 -55
  484. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-dashboard-normal-1-snap.png +0 -0
  485. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-dashboard-with-item-header-1-snap.png +0 -0
  486. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-dashboard-with-many-panels-1-snap.png +0 -0
  487. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-basic-1-snap.png +0 -0
  488. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-with-20-px-height-1-snap.png +0 -0
  489. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-with-200-px-width-1-snap.png +0 -0
  490. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-with-heading-5-variant-1-snap.png +0 -0
  491. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-with-long-text-1-snap.png +0 -0
  492. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-listing-as-empty-state-1-snap.png +0 -0
  493. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-listing-with-editable-and-sortable-columns-1-snap.png +0 -0
  494. package/src/api/logger.ts +0 -11
  495. package/src/api/useGraphQuery/index.ts +0 -199
  496. package/src/api/useGraphQuery/models.ts +0 -20
  497. package/src/base/tokens/README.md +0 -3
  498. package/src/base/tokens/source/$metadata.json +0 -3
  499. package/src/base/tokens/source/base.json +0 -142
  500. package/src/base/tokens/themes/base.tokens.d.ts +0 -38
  501. package/src/base/tokens/themes/base.tokens.json +0 -563
  502. package/src/base/tokens/themes/base.tokens.ts +0 -38
  503. package/src/base/tokens/themes/ui-dark.tokens.d.ts +0 -38
  504. package/src/base/tokens/themes/ui-dark.tokens.json +0 -563
  505. package/src/base/tokens/themes/ui-dark.tokens.ts +0 -38
  506. package/src/base/tokens/themes/ui-light.tokens.d.ts +0 -38
  507. package/src/base/tokens/themes/ui-light.tokens.json +0 -563
  508. package/src/base/tokens/themes/ui-light.tokens.ts +0 -38
  509. package/src/components/Avatar/Avatar.stories.tsx +0 -23
  510. package/src/components/Avatar/Avatar.styles.ts +0 -11
  511. package/src/components/Avatar/Avatar.tsx +0 -32
  512. package/src/components/Avatar/index.ts +0 -1
  513. package/src/components/Button/Button.stories.tsx +0 -34
  514. package/src/components/Button/Button.styles.ts +0 -44
  515. package/src/components/Button/Button.tsx +0 -78
  516. package/src/components/Button/Icon/IconButton.stories.tsx +0 -18
  517. package/src/components/Button/Icon/IconButton.styles.ts +0 -14
  518. package/src/components/Button/Icon/IconButton.tsx +0 -62
  519. package/src/components/Button/Icon/index.tsx +0 -1
  520. package/src/components/Button/index.ts +0 -2
  521. package/src/components/CollapsibleItem/CollapsibleItem.cypress.spec.tsx +0 -76
  522. package/src/components/CollapsibleItem/CollapsibleItem.stories.tsx +0 -51
  523. package/src/components/CollapsibleItem/CollapsibleItem.tsx +0 -76
  524. package/src/components/CollapsibleItem/index.ts +0 -1
  525. package/src/components/CollapsibleItem/useCollapsibleItemStyles.ts +0 -38
  526. package/src/components/CopyCommand/CopyCommand.cypress.spec.tsx +0 -155
  527. package/src/components/CopyCommand/CopyCommand.stories.tsx +0 -54
  528. package/src/components/CopyCommand/CopyCommand.styles.tsx +0 -93
  529. package/src/components/CopyCommand/CopyCommand.tsx +0 -80
  530. package/src/components/CopyCommand/translatedLabels.ts +0 -2
  531. package/src/components/DataTable/DataListing.tsx +0 -6
  532. package/src/components/DataTable/DataTable.cypress.spec.tsx +0 -174
  533. package/src/components/DataTable/DataTable.stories.tsx +0 -94
  534. package/src/components/DataTable/DataTable.styles.ts +0 -30
  535. package/src/components/DataTable/DataTable.tsx +0 -35
  536. package/src/components/DataTable/EmptyState/DataTableEmptyState.stories.tsx +0 -21
  537. package/src/components/DataTable/EmptyState/DataTableEmptyState.styles.ts +0 -26
  538. package/src/components/DataTable/EmptyState/DataTableEmptyState.tsx +0 -53
  539. package/src/components/DataTable/Item/DataTableItem.stories.tsx +0 -25
  540. package/src/components/DataTable/Item/DataTableItem.styles.ts +0 -38
  541. package/src/components/DataTable/Item/DataTableItem.tsx +0 -67
  542. package/src/components/DataTable/Item/DataTableItemSkeleton.tsx +0 -13
  543. package/src/components/DataTable/index.ts +0 -12
  544. package/src/components/Form/AccessRights/AccessRights.cypress.spec.tsx +0 -379
  545. package/src/components/Form/AccessRights/AccessRights.stories.tsx +0 -100
  546. package/src/components/Form/AccessRights/AccessRights.styles.ts +0 -10
  547. package/src/components/Form/AccessRights/AccessRights.tsx +0 -61
  548. package/src/components/Form/AccessRights/Actions/Actions.styles.ts +0 -10
  549. package/src/components/Form/AccessRights/Actions/Actions.tsx +0 -64
  550. package/src/components/Form/AccessRights/Actions/useActions.ts +0 -46
  551. package/src/components/Form/AccessRights/List/Item.tsx +0 -90
  552. package/src/components/Form/AccessRights/List/List.styles.tsx +0 -45
  553. package/src/components/Form/AccessRights/List/List.tsx +0 -52
  554. package/src/components/Form/AccessRights/List/ListItemSkeleton.tsx +0 -18
  555. package/src/components/Form/AccessRights/List/ListSkeleton.tsx +0 -22
  556. package/src/components/Form/AccessRights/List/RemoveAccessRight.tsx +0 -38
  557. package/src/components/Form/AccessRights/List/StateChip.tsx +0 -28
  558. package/src/components/Form/AccessRights/List/useItem.ts +0 -64
  559. package/src/components/Form/AccessRights/Provider.tsx +0 -15
  560. package/src/components/Form/AccessRights/ShareInput/ContactSwitch.tsx +0 -50
  561. package/src/components/Form/AccessRights/ShareInput/ShareInput.styles.ts +0 -17
  562. package/src/components/Form/AccessRights/ShareInput/ShareInput.tsx +0 -79
  563. package/src/components/Form/AccessRights/ShareInput/useShareInput.tsx +0 -113
  564. package/src/components/Form/AccessRights/Stats/Stats.tsx +0 -36
  565. package/src/components/Form/AccessRights/atoms.ts +0 -97
  566. package/src/components/Form/AccessRights/common/RoleSelectField.styles.tsx +0 -7
  567. package/src/components/Form/AccessRights/common/RoleSelectField.tsx +0 -45
  568. package/src/components/Form/AccessRights/models.ts +0 -52
  569. package/src/components/Form/AccessRights/storiesData.ts +0 -219
  570. package/src/components/Form/AccessRights/useAccessRightsChange.ts +0 -30
  571. package/src/components/Form/AccessRights/useAccessRightsInitValues.ts +0 -51
  572. package/src/components/Form/AccessRights/utils.ts +0 -18
  573. package/src/components/Form/Dashboard/Dashboard.resource.ts +0 -9
  574. package/src/components/Form/Dashboard/DashboardDuplicationForm.tsx +0 -85
  575. package/src/components/Form/Dashboard/DashboardForm.styles.ts +0 -21
  576. package/src/components/Form/Dashboard/DashboardForm.tsx +0 -137
  577. package/src/components/Form/Dashboard/GlobalRefreshFieldOption.tsx +0 -59
  578. package/src/components/Form/Dashboard/index.ts +0 -3
  579. package/src/components/Form/Dashboard/translatedLabels.ts +0 -8
  580. package/src/components/Form/Form.models.ts +0 -1
  581. package/src/components/Form/Form.resource.ts +0 -1
  582. package/src/components/Form/Form.styles.ts +0 -17
  583. package/src/components/Form/FormActions.tsx +0 -62
  584. package/src/components/Form/index.ts +0 -4
  585. package/src/components/Header/PageHeader/PageHeader.stories.tsx +0 -97
  586. package/src/components/Header/PageHeader/PageHeader.styles.ts +0 -126
  587. package/src/components/Header/PageHeader/PageHeader.tsx +0 -15
  588. package/src/components/Header/PageHeader/PageHeaderActions.tsx +0 -17
  589. package/src/components/Header/PageHeader/PageHeaderMain.tsx +0 -15
  590. package/src/components/Header/PageHeader/PageHeaderMenu.tsx +0 -15
  591. package/src/components/Header/PageHeader/PageHeaderMessage.tsx +0 -32
  592. package/src/components/Header/PageHeader/PageHeaderTitle.tsx +0 -47
  593. package/src/components/Header/PageHeader/index.ts +0 -14
  594. package/src/components/Header/index.ts +0 -1
  595. package/src/components/Icon/Icon.styles.ts +0 -0
  596. package/src/components/Icon/Icon.tsx +0 -2
  597. package/src/components/Icon/index.ts +0 -0
  598. package/src/components/Inputs/Switch/Switch.stories.tsx +0 -22
  599. package/src/components/Inputs/Switch/Switch.styles.ts +0 -13
  600. package/src/components/Inputs/Switch/Switch.tsx +0 -18
  601. package/src/components/Inputs/index.ts +0 -1
  602. package/src/components/ItemComposition/Item.tsx +0 -41
  603. package/src/components/ItemComposition/ItemComposition.cypress.spec.tsx +0 -113
  604. package/src/components/ItemComposition/ItemComposition.stories.tsx +0 -94
  605. package/src/components/ItemComposition/ItemComposition.styles.ts +0 -62
  606. package/src/components/ItemComposition/ItemComposition.tsx +0 -71
  607. package/src/components/ItemComposition/index.ts +0 -6
  608. package/src/components/Layout/AreaIndicator.styles.ts +0 -33
  609. package/src/components/Layout/AreaIndicator.tsx +0 -35
  610. package/src/components/Layout/PageLayout/PageLayout.stories.tsx +0 -81
  611. package/src/components/Layout/PageLayout/PageLayout.styles.ts +0 -41
  612. package/src/components/Layout/PageLayout/PageLayout.tsx +0 -21
  613. package/src/components/Layout/PageLayout/PageLayoutActions.tsx +0 -25
  614. package/src/components/Layout/PageLayout/PageLayoutBody.tsx +0 -25
  615. package/src/components/Layout/PageLayout/PageLayoutHeader.tsx +0 -19
  616. package/src/components/Layout/PageLayout/PageQuickAccess.tsx +0 -75
  617. package/src/components/Layout/PageLayout/index.ts +0 -12
  618. package/src/components/Layout/PageLayout.cypress.spec.tsx +0 -66
  619. package/src/components/Layout/index.ts +0 -1
  620. package/src/components/List/Item/Avatar.tsx +0 -21
  621. package/src/components/List/Item/AvatarSkeleton.tsx +0 -17
  622. package/src/components/List/Item/ListItem.stories.tsx +0 -41
  623. package/src/components/List/Item/ListItem.styles.ts +0 -63
  624. package/src/components/List/Item/ListItem.tsx +0 -34
  625. package/src/components/List/Item/Text.tsx +0 -27
  626. package/src/components/List/Item/TextSkeleton.tsx +0 -22
  627. package/src/components/List/Item/index.ts +0 -14
  628. package/src/components/List/List.stories.tsx +0 -72
  629. package/src/components/List/List.styles.ts +0 -8
  630. package/src/components/List/List.tsx +0 -19
  631. package/src/components/List/index.ts +0 -6
  632. package/src/components/Menu/Button/MenuButton.stories.tsx +0 -16
  633. package/src/components/Menu/Button/MenuButton.styles.ts +0 -27
  634. package/src/components/Menu/Button/MenuButton.tsx +0 -67
  635. package/src/components/Menu/Button/index.ts +0 -1
  636. package/src/components/Menu/Menu.stories.tsx +0 -71
  637. package/src/components/Menu/Menu.styles.ts +0 -68
  638. package/src/components/Menu/Menu.tsx +0 -25
  639. package/src/components/Menu/MenuDivider.tsx +0 -13
  640. package/src/components/Menu/MenuItem.tsx +0 -38
  641. package/src/components/Menu/MenuItems.tsx +0 -36
  642. package/src/components/Menu/index.ts +0 -12
  643. package/src/components/Menu/useMenu.tsx +0 -79
  644. package/src/components/Modal/ConfirmationModal/ConfirmationModal.cypress.spec.tsx +0 -168
  645. package/src/components/Modal/ConfirmationModal/ConfirmationModal.stories.tsx +0 -62
  646. package/src/components/Modal/ConfirmationModal/ConfirmationModal.tsx +0 -87
  647. package/src/components/Modal/Modal.stories.tsx +0 -142
  648. package/src/components/Modal/Modal.styles.ts +0 -96
  649. package/src/components/Modal/Modal.tsx +0 -79
  650. package/src/components/Modal/ModalActions.tsx +0 -64
  651. package/src/components/Modal/ModalBody.tsx +0 -15
  652. package/src/components/Modal/ModalHeader.tsx +0 -26
  653. package/src/components/Modal/index.ts +0 -14
  654. package/src/components/README.md +0 -3
  655. package/src/components/Tabs/Tab.styles.ts +0 -25
  656. package/src/components/Tabs/TabPanel.tsx +0 -22
  657. package/src/components/Tabs/Tabs.cypress.spec.tsx +0 -70
  658. package/src/components/Tabs/Tabs.stories.tsx +0 -55
  659. package/src/components/Tabs/Tabs.tsx +0 -55
  660. package/src/components/Tabs/index.ts +0 -6
  661. package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.stories.tsx +0 -62
  662. package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.styles.tsx +0 -22
  663. package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.tsx +0 -68
  664. package/src/components/Tooltip/ConfirmationTooltip/TooltipContent.tsx +0 -31
  665. package/src/components/Tooltip/ConfirmationTooltip/index.ts +0 -1
  666. package/src/components/Tooltip/ConfirmationTooltip/models.ts +0 -18
  667. package/src/components/Tooltip/TextOverflowTooltip/TextOverflowTooltip.stories.tsx +0 -70
  668. package/src/components/Tooltip/TextOverflowTooltip/TextOverflowTooltip.styles.ts +0 -5
  669. package/src/components/Tooltip/TextOverflowTooltip/TextOverflowTooltip.tsx +0 -115
  670. package/src/components/Tooltip/TextOverflowTooltip/index.tsx +0 -1
  671. package/src/components/Tooltip/Tooltip.stories.tsx +0 -41
  672. package/src/components/Tooltip/Tooltip.tsx +0 -57
  673. package/src/components/Tooltip/index.ts +0 -2
  674. package/src/components/Zoom/Minimap.tsx +0 -129
  675. package/src/components/Zoom/Zoom.cypress.spec.tsx +0 -246
  676. package/src/components/Zoom/Zoom.stories.tsx +0 -115
  677. package/src/components/Zoom/Zoom.styles.tsx +0 -68
  678. package/src/components/Zoom/Zoom.tsx +0 -64
  679. package/src/components/Zoom/ZoomContent.tsx +0 -170
  680. package/src/components/Zoom/constants.ts +0 -2
  681. package/src/components/Zoom/localPoint.ts +0 -51
  682. package/src/components/Zoom/models.ts +0 -25
  683. package/src/components/Zoom/useMinimap.ts +0 -156
  684. package/src/components/Zoom/useZoom.ts +0 -70
  685. package/src/components/Zoom/utils.ts +0 -55
  686. package/src/components/index.ts +0 -16
  687. package/src/styles/tokens/themes/_ui-dark.tokens.json +0 -563
  688. package/src/styles/tokens/themes/_ui-light.tokens.json +0 -563
  689. package/src/utils/centreonBaseURL.ts +0 -4
  690. package/src/utils/docsURL.ts +0 -31
  691. package/src/utils/index.ts +0 -30
  692. package/src/utils/panelSize.ts +0 -15
  693. package/src/utils/resourcesStatusURL.ts +0 -169
  694. package/src/utils/sanitizedHTML.ts +0 -18
  695. package/src/utils/translatedLabel.ts +0 -2
  696. package/src/utils/useFullscreen/Fullscreen.cypress.spec.tsx +0 -130
  697. package/src/utils/useFullscreen/atoms.ts +0 -3
  698. package/src/utils/useFullscreen/index.ts +0 -2
  699. package/src/utils/useFullscreen/translatedLabels.ts +0 -1
  700. package/src/utils/useFullscreen/useFullscreen.ts +0 -73
  701. package/src/utils/useFullscreen/useFullscreenListener.ts +0 -62
  702. package/src/utils/useInfiniteScrollListing.ts +0 -129
  703. package/src/utils/useLicenseExpirationWarning.test.tsx +0 -148
  704. package/src/utils/useLicenseExpirationWarning.ts +0 -52
  705. package/src/utils/useLocaleTimezoneDate/LocaleTimezoneDate.cypress.spec.tsx +0 -98
  706. package/src/utils/useLocaleTimezoneDate/useLocaleTimezoneDate.ts +0 -41
  707. package/src/utils/usePluralizedTranslation.test.ts +0 -159
  708. package/src/utils/usePluralizedTranslation.ts +0 -38
  709. package/src/utils/useRefreshInterval.ts +0 -39
  710. package/src/utils/useResizeObserver.ts +0 -6
  711. package/src/utils/useThresholds.ts +0 -0
  712. /package/{public/brand → assets}/centreon-logo-one-line-dark.svg +0 -0
  713. /package/{public/brand → assets}/centreon-logo-one-line-light.svg +0 -0
  714. /package/{src/@assets/images → assets}/not-authorized-template-background-dark.svg +0 -0
  715. /package/{src/@assets/images → assets}/not-authorized-template-background-light.svg +0 -0
  716. /package/{src/fonts → fonts/fonts-generated}/roboto-bold-webfont.ttf +0 -0
  717. /package/{src/fonts → fonts/fonts-generated}/roboto-bold-webfont.woff +0 -0
  718. /package/{src/fonts → fonts/fonts-generated}/roboto-bold-webfont.woff2 +0 -0
  719. /package/{src/fonts → fonts/fonts-generated}/roboto-light-webfont.ttf +0 -0
  720. /package/{src/fonts → fonts/fonts-generated}/roboto-light-webfont.woff +0 -0
  721. /package/{src/fonts → fonts/fonts-generated}/roboto-light-webfont.woff2 +0 -0
  722. /package/{src/fonts → fonts/fonts-generated}/roboto-medium-webfont.ttf +0 -0
  723. /package/{src/fonts → fonts/fonts-generated}/roboto-medium-webfont.woff +0 -0
  724. /package/{src/fonts → fonts/fonts-generated}/roboto-medium-webfont.woff2 +0 -0
  725. /package/{src/fonts → fonts/fonts-generated}/roboto-regular-webfont.ttf +0 -0
  726. /package/{src/fonts → fonts/fonts-generated}/roboto-regular-webfont.woff +0 -0
  727. /package/{src/fonts → fonts/fonts-generated}/roboto-regular-webfont.woff2 +0 -0
@@ -1,1641 +0,0 @@
1
- {
2
- "global": {
3
- "title": "oracle-shared-spool-ratio graph on srv-oracle-crm",
4
- "start": "2023-04-22T16:01:06+02:00",
5
- "end": "2023-05-23T16:01:06+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": 5320,
16
- "metric_id": 12879,
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": "#990033"
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.50033458333,
46
- 0.61945916667,
47
- 0.51819333333,
48
- 0.60382916667,
49
- 0.49840361111,
50
- 0.49933972222,
51
- 0.55467208333,
52
- 0.56382444444,
53
- 0.62704972222,
54
- 0.54424180556,
55
- 0.50082777778,
56
- 0.45984555556,
57
- 0.49584861111,
58
- 0.35677083333,
59
- 0.47271861111,
60
- 0.52795972222,
61
- 0.45791944444,
62
- 0.43084166667,
63
- 0.502125,
64
- 0.38325833333,
65
- 0.594375,
66
- 0.594125,
67
- 0.45928333333,
68
- 0.5255,
69
- 0.41265,
70
- 0.40810833333,
71
- 0.5416,
72
- 0.48815,
73
- 0.42519166667,
74
- 0.58961666667,
75
- 0.41775833333,
76
- 0.43450833333,
77
- 0.4493,
78
- 0.39341666667,
79
- 0.49969166667,
80
- 0.50023333333,
81
- 0.46121305556,
82
- 0.5069475,
83
- 0.50755055556,
84
- 0.44471013889,
85
- 0.47222291667,
86
- 0.45869027778,
87
- 0.41597888889,
88
- 0.59415055556,
89
- 0.52623305556,
90
- 0.54249277778,
91
- 0.58356333333,
92
- 0.46177041667,
93
- 0.49658555556,
94
- 0.60377222222,
95
- 0.56200958333,
96
- 0.63443444444,
97
- 0.52070555556,
98
- 0.6246475,
99
- 0.52999069444,
100
- 0.42607777778,
101
- 0.55257444444,
102
- 0.45891888889,
103
- 0.51791611111,
104
- 0.423755,
105
- 0.45616666667,
106
- 0.54159055556,
107
- 0.46024222222,
108
- 0.41285333333,
109
- 0.48092277778,
110
- 0.46342777778,
111
- 0.57123,
112
- 0.56956111111,
113
- 0.58442833333,
114
- 0.52641388889,
115
- 0.46058166667,
116
- 0.40469458333,
117
- 0.54256736111,
118
- 0.56656111111,
119
- 0.54332777778,
120
- 0.49598680556,
121
- 0.59200763889,
122
- 0.44712708333,
123
- 0.55852083333,
124
- 0.58329166667,
125
- 0.53323611111,
126
- 0.57300416667,
127
- 0.52716597222,
128
- 0.40442291667,
129
- 0.42211111111,
130
- 0.63572708333,
131
- 0.55759166667,
132
- 0.46749166667,
133
- 0.37702361111,
134
- 0.56483055556,
135
- 0.47474236111,
136
- 0.43567847222,
137
- 0.50577638889,
138
- 0.44973305556,
139
- 0.52211083333,
140
- 0.44430083333,
141
- 0.48803333333,
142
- 0.42062833333,
143
- 0.5597925,
144
- 0.50754166667,
145
- 0.4506775,
146
- 0.38088333333,
147
- 0.53365583333,
148
- 0.43125333333,
149
- 0.44724166667,
150
- 0.44108833333,
151
- 0.49138916667,
152
- 0.610585,
153
- 0.578545,
154
- 0.49276666667,
155
- 0.51599833333,
156
- 0.55685166667,
157
- 0.50467416667,
158
- 0.51643916667,
159
- 0.50236833333,
160
- 0.60251916667,
161
- 0.38275916667,
162
- 0.4105925,
163
- 0.48575833333,
164
- 0.43170166667,
165
- 0.63278916667,
166
- 0.416565,
167
- 0.46697902778,
168
- 0.4740475,
169
- 0.44771,
170
- 0.59884472222,
171
- 0.4627625,
172
- 0.4531975,
173
- 0.60965916667,
174
- 0.63874180556,
175
- 0.51233305556,
176
- 0.55861527778,
177
- 0.50454416667,
178
- 0.43259527778,
179
- 0.51321444444,
180
- 0.48314888889,
181
- 0.59840555556,
182
- 0.55625777778,
183
- 0.46488611111,
184
- 0.45740694444,
185
- 0.51038611111,
186
- 0.61267083333,
187
- 0.51206944444,
188
- 0.56741666667,
189
- 0.58174305556,
190
- 0.38422222222,
191
- 0.55132083333,
192
- 0.54504722222,
193
- 0.48465,
194
- 0.47887083333,
195
- 0.46282638889,
196
- 0.48750277778,
197
- 0.53763055556,
198
- 0.53980833333,
199
- 0.42661527778,
200
- 0.4728375,
201
- 0.46515694444,
202
- 0.50543333333,
203
- 0.58466666667,
204
- 0.4641875,
205
- 0.42224305556,
206
- 0.45730555556,
207
- 0.53627777778,
208
- 0.49995833333,
209
- 0.53940972222,
210
- 0.41956944444,
211
- 0.45699305556,
212
- 0.52835416667,
213
- 0.50822222222,
214
- 0.44841666667,
215
- 0.43936111111,
216
- 0.54340277778,
217
- 0.46944444444,
218
- 0.57169444444,
219
- 0.52923611111,
220
- 0.56581944444,
221
- 0.56853472222,
222
- 0.59384027778,
223
- 0.46910555556,
224
- 0.43805694444,
225
- 0.58207083333,
226
- 0.55213888889,
227
- 0.44952777778,
228
- 0.47930555556,
229
- 0.44179861111,
230
- 0.41134027778,
231
- 0.42866666667,
232
- 0.511375,
233
- 0.50978472222,
234
- 0.477875,
235
- 0.53188194444,
236
- 0.44010416667,
237
- 0.48233333333,
238
- 0.55613347222,
239
- 0.47067416667,
240
- 0.54952611111,
241
- 0.52073277778,
242
- 0.50571736111,
243
- 0.61287555556,
244
- 0.48102388889,
245
- 0.49271569444,
246
- 0.44343125,
247
- 0.53625333333,
248
- 0.563685,
249
- 0.466765,
250
- 0.49876166667,
251
- 0.47815333333,
252
- 0.49052666667,
253
- 0.40544,
254
- 0.558505,
255
- 0.504925,
256
- 0.56809666667,
257
- 0.51643166667,
258
- 0.500375,
259
- 0.46229833333,
260
- 0.41243,
261
- 0.39154166667,
262
- 0.46627166667,
263
- 0.55276111111,
264
- 0.39044694444,
265
- 0.56729583333,
266
- 0.56158388889,
267
- 0.41965333333,
268
- 0.52013361111,
269
- 0.39681166667,
270
- 0.50957805556,
271
- 0.51941666667,
272
- 0.55553763889,
273
- 0.46638333333,
274
- 0.44483722222,
275
- 0.57280722222,
276
- 0.68180791667,
277
- 0.48812944444,
278
- 0.59093375,
279
- 0.54439763889,
280
- 0.48189972222,
281
- 0.49061152778,
282
- 0.59989930556,
283
- 0.58490055556,
284
- 0.61258930556,
285
- 0.60397902778,
286
- 0.52981402778,
287
- 0.50435,
288
- 0.41884722222,
289
- 0.45518055556,
290
- 0.46851111111,
291
- 0.61096944444,
292
- 0.49326944444,
293
- 0.419725,
294
- 0.46484722222,
295
- 0.48892222222,
296
- 0.42955,
297
- 0.53626388889,
298
- 0.56575833333,
299
- 0.50948888889,
300
- 0.46735555556,
301
- 0.51255555556,
302
- 0.50625555556,
303
- 0.49493333333,
304
- 0.45309444444,
305
- 0.44096111111,
306
- 0.52035277778,
307
- 0.41961388889,
308
- 0.4463,
309
- 0.48494444444,
310
- 0.55550277778,
311
- 0.51151111111,
312
- 0.53519444444,
313
- 0.39882902778,
314
- 0.47607,
315
- 0.47141388889,
316
- 0.54625083333,
317
- 0.49487166667,
318
- 0.56357083333,
319
- 0.54315833333,
320
- 0.55606277778,
321
- 0.46999027778,
322
- 0.60634083333,
323
- 0.45837861111,
324
- 0.46508805556,
325
- 0.46517861111,
326
- 0.50517722222,
327
- 0.49639833333,
328
- 0.45971111111,
329
- 0.53749027778,
330
- 0.42077611111,
331
- 0.36337027778,
332
- 0.57174166667,
333
- 0.51783333333,
334
- 0.46205166667,
335
- 0.54008333333,
336
- 0.46243833333,
337
- 0.49854333333,
338
- 0.52208666667,
339
- 0.45309833333,
340
- 0.54164166667,
341
- 0.50293666667,
342
- 0.58052444444,
343
- 0.48480416667,
344
- 0.44963611111,
345
- 0.57046319444,
346
- 0.49653611111,
347
- 0.55977222222,
348
- 0.46650694444,
349
- 0.57683680556,
350
- 0.37171111111,
351
- 0.46325,
352
- 0.48231680556,
353
- 0.48979055556,
354
- 0.51859361111,
355
- 0.50016222222,
356
- 0.45968583333,
357
- 0.51421583333,
358
- 0.56765638889,
359
- 0.57335111111,
360
- 0.41111875,
361
- 0.50796958333,
362
- 0.395305,
363
- 0.48056722222,
364
- 0.49464361111,
365
- 0.46999875,
366
- 0.44863527778,
367
- 0.44513208333,
368
- 0.52571097222,
369
- 0.59808069444,
370
- 0.51411833333,
371
- 0.61205444444,
372
- 0.52014583333,
373
- 0.44387916667,
374
- 0.47595416667,
375
- 0.4776,
376
- 0.54218333333,
377
- 0.42116666667,
378
- 0.41662916667,
379
- 0.47499583333,
380
- 0.55535416667,
381
- 0.44424583333,
382
- 0.4812375,
383
- 0.54995,
384
- 0.4826875,
385
- 0.46228333333,
386
- 0.42069166667,
387
- 0.50894583333,
388
- 0.52455305556,
389
- 0.43574513889,
390
- 0.47146680556,
391
- 0.52494444444,
392
- 0.61506833333,
393
- 0.34888958333,
394
- 0.53983305556,
395
- 0.51920916667,
396
- 0.46683319444,
397
- 0.58013,
398
- 0.39148333333,
399
- 0.52852666667,
400
- 0.49618611111,
401
- 0.42079,
402
- 0.44302666667,
403
- 0.61560833333,
404
- 0.40733777778,
405
- 0.55178333333,
406
- 0.5079175,
407
- 0.47183541667,
408
- 0.517075,
409
- 0.38027541667,
410
- 0.51537569444,
411
- 0.40031805556,
412
- 0.51048138889,
413
- 0.59283166667,
414
- 0.49227166667,
415
- 0.48328611111,
416
- 0.52946541667,
417
- null
418
- ],
419
- "prints": [["Last:0.53"], ["Min:0.35"], ["Max:0.68"], ["Average:0.50"]],
420
- "last_value": 0.53,
421
- "minimum_value": 0.35,
422
- "maximum_value": 0.68,
423
- "average_value": 0.5
424
- },
425
- {
426
- "index_id": 5320,
427
- "metric_id": 12878,
428
- "metric": "querytime",
429
- "metric_legend": "querytime",
430
- "unit": "s",
431
- "hidden": 0,
432
- "min": null,
433
- "max": null,
434
- "virtual": 0,
435
- "ds_data": {
436
- "ds_min": "1",
437
- "ds_max": "1",
438
- "ds_minmax_int": "0",
439
- "ds_last": "1",
440
- "ds_average": "1",
441
- "ds_total": "0",
442
- "ds_tickness": 1,
443
- "ds_color_line_mode": "1",
444
- "ds_color_line": "#ff3333"
445
- },
446
- "legend": "querytime",
447
- "stack": 0,
448
- "warn": null,
449
- "warn_low": null,
450
- "crit": null,
451
- "crit_low": null,
452
- "ds_color_area_warn": "#ff9a13",
453
- "ds_color_area_crit": "#e00b3d",
454
- "ds_order": 0,
455
- "data": [
456
- 0.4820075,
457
- 0.54786666667,
458
- 0.537675,
459
- 0.44466583333,
460
- 0.56231069444,
461
- 0.51092194444,
462
- 0.50375861111,
463
- 0.51052875,
464
- 0.50798208333,
465
- 0.44864861111,
466
- 0.4147725,
467
- 0.50207305556,
468
- 0.49094888889,
469
- 0.50487722222,
470
- 0.51480555556,
471
- 0.60383333333,
472
- 0.57061194444,
473
- 0.56269166667,
474
- 0.50226666667,
475
- 0.36955,
476
- 0.48694166667,
477
- 0.5011,
478
- 0.50590833333,
479
- 0.39789166667,
480
- 0.43364166667,
481
- 0.46898333333,
482
- 0.5747,
483
- 0.43391666667,
484
- 0.58044166667,
485
- 0.55174166667,
486
- 0.462675,
487
- 0.52405833333,
488
- 0.46514166667,
489
- 0.57273333333,
490
- 0.52735833333,
491
- 0.5592,
492
- 0.51948305556,
493
- 0.50549694444,
494
- 0.50488861111,
495
- 0.36735625,
496
- 0.53613972222,
497
- 0.50677708333,
498
- 0.44981055556,
499
- 0.43704833333,
500
- 0.45431930556,
501
- 0.56507055556,
502
- 0.41380861111,
503
- 0.55419958333,
504
- 0.45757708333,
505
- 0.45671305556,
506
- 0.4972675,
507
- 0.38788166667,
508
- 0.53776583333,
509
- 0.52779277778,
510
- 0.53221736111,
511
- 0.47106277778,
512
- 0.56903944444,
513
- 0.4783,
514
- 0.48126111111,
515
- 0.54720222222,
516
- 0.474135,
517
- 0.45746888889,
518
- 0.51297277778,
519
- 0.606045,
520
- 0.41071444444,
521
- 0.41101222222,
522
- 0.552105,
523
- 0.45999388889,
524
- 0.51995777778,
525
- 0.56436611111,
526
- 0.50154,
527
- 0.47195055556,
528
- 0.43405972222,
529
- 0.5065,
530
- 0.51008125,
531
- 0.52819375,
532
- 0.48212777778,
533
- 0.49300902778,
534
- 0.57922916667,
535
- 0.46563888889,
536
- 0.4014375,
537
- 0.49352152778,
538
- 0.46820347222,
539
- 0.3917,
540
- 0.50307152778,
541
- 0.43910972222,
542
- 0.57312708333,
543
- 0.56125138889,
544
- 0.50412708333,
545
- 0.53868194444,
546
- 0.51587361111,
547
- 0.60080208333,
548
- 0.47862986111,
549
- 0.48106152778,
550
- 0.38717166667,
551
- 0.526345,
552
- 0.40869833333,
553
- 0.4253675,
554
- 0.5569475,
555
- 0.46934416667,
556
- 0.50617083333,
557
- 0.44834,
558
- 0.51131333333,
559
- 0.55684916667,
560
- 0.51484166667,
561
- 0.56658,
562
- 0.41325583333,
563
- 0.54179416667,
564
- 0.57034416667,
565
- 0.47756916667,
566
- 0.62718666667,
567
- 0.5509725,
568
- 0.5502525,
569
- 0.47039333333,
570
- 0.42288916667,
571
- 0.53411083333,
572
- 0.5683725,
573
- 0.602335,
574
- 0.47520916667,
575
- 0.50628583333,
576
- 0.521265,
577
- 0.52259861111,
578
- 0.48722541667,
579
- 0.53608763889,
580
- 0.59789305556,
581
- 0.44855902778,
582
- 0.53649930556,
583
- 0.54616166667,
584
- 0.58590708333,
585
- 0.45782208333,
586
- 0.4642825,
587
- 0.49553166667,
588
- 0.67386,
589
- 0.50180402778,
590
- 0.47037763889,
591
- 0.46473833333,
592
- 0.41795972222,
593
- 0.47257958333,
594
- 0.53391527778,
595
- 0.57262361111,
596
- 0.48405138889,
597
- 0.4508,
598
- 0.54903055556,
599
- 0.42190694444,
600
- 0.43467777778,
601
- 0.53279027778,
602
- 0.58740972222,
603
- 0.56928333333,
604
- 0.63375833333,
605
- 0.5663125,
606
- 0.46767638889,
607
- 0.57531388889,
608
- 0.45455277778,
609
- 0.39892222222,
610
- 0.5952875,
611
- 0.44328333333,
612
- 0.49716944444,
613
- 0.49061111111,
614
- 0.55089583333,
615
- 0.542875,
616
- 0.44646527778,
617
- 0.47390277778,
618
- 0.495,
619
- 0.55122222222,
620
- 0.54713888889,
621
- 0.47925694444,
622
- 0.645625,
623
- 0.58602083333,
624
- 0.54818055556,
625
- 0.58030555556,
626
- 0.5108125,
627
- 0.48620138889,
628
- 0.44344444444,
629
- 0.62082638889,
630
- 0.53688888889,
631
- 0.4769375,
632
- 0.45626388889,
633
- 0.43636111111,
634
- 0.48725416667,
635
- 0.56865277778,
636
- 0.47129722222,
637
- 0.50325,
638
- 0.48446527778,
639
- 0.55102083333,
640
- 0.58122916667,
641
- 0.45869444444,
642
- 0.55117361111,
643
- 0.38622916667,
644
- 0.49203472222,
645
- 0.39611111111,
646
- 0.52322222222,
647
- 0.50911111111,
648
- 0.545875,
649
- 0.49933166667,
650
- 0.51926611111,
651
- 0.49907486111,
652
- 0.50863486111,
653
- 0.53831486111,
654
- 0.53933319444,
655
- 0.57828930556,
656
- 0.47896819444,
657
- 0.40125291667,
658
- 0.504445,
659
- 0.53565,
660
- 0.28999666667,
661
- 0.48051666667,
662
- 0.44803833333,
663
- 0.42531,
664
- 0.54171166667,
665
- 0.484515,
666
- 0.46153833333,
667
- 0.47544666667,
668
- 0.43798,
669
- 0.401075,
670
- 0.407455,
671
- 0.41547666667,
672
- 0.54620333333,
673
- 0.45932666667,
674
- 0.45051930556,
675
- 0.57091819444,
676
- 0.46523319444,
677
- 0.43658833333,
678
- 0.48776138889,
679
- 0.53602388889,
680
- 0.51612527778,
681
- 0.51619833333,
682
- 0.49428416667,
683
- 0.43790222222,
684
- 0.44653958333,
685
- 0.43712486111,
686
- 0.40300513889,
687
- 0.56234097222,
688
- 0.474555,
689
- 0.44655097222,
690
- 0.54056597222,
691
- 0.45041430556,
692
- 0.52533972222,
693
- 0.52445375,
694
- 0.63305347222,
695
- 0.48278055556,
696
- 0.52841361111,
697
- 0.53922430556,
698
- 0.56528333333,
699
- 0.44198055556,
700
- 0.49815555556,
701
- 0.44740277778,
702
- 0.53225,
703
- 0.47143611111,
704
- 0.50535,
705
- 0.50532222222,
706
- 0.38877222222,
707
- 0.45349166667,
708
- 0.4699,
709
- 0.527325,
710
- 0.48013055556,
711
- 0.45149444444,
712
- 0.51115555556,
713
- 0.47300555556,
714
- 0.40672222222,
715
- 0.54794722222,
716
- 0.57065555556,
717
- 0.43134444444,
718
- 0.54095555556,
719
- 0.46501388889,
720
- 0.53646111111,
721
- 0.52628611111,
722
- 0.55696944444,
723
- 0.33851666667,
724
- 0.56513861111,
725
- 0.39431041667,
726
- 0.48249513889,
727
- 0.53899666667,
728
- 0.54166638889,
729
- 0.50782888889,
730
- 0.52590805556,
731
- 0.45245333333,
732
- 0.45541916667,
733
- 0.47155583333,
734
- 0.51281972222,
735
- 0.44810166667,
736
- 0.50835138889,
737
- 0.58544388889,
738
- 0.52371805556,
739
- 0.44599805556,
740
- 0.43898777778,
741
- 0.47267722222,
742
- 0.52452208333,
743
- 0.61510333333,
744
- 0.50854166667,
745
- 0.46054833333,
746
- 0.56622,
747
- 0.42615,
748
- 0.53491666667,
749
- 0.52652833333,
750
- 0.527335,
751
- 0.67556333333,
752
- 0.45109166667,
753
- 0.59083541667,
754
- 0.45191319444,
755
- 0.54146805556,
756
- 0.48338333333,
757
- 0.53249097222,
758
- 0.44949444444,
759
- 0.51941736111,
760
- 0.58977708333,
761
- 0.50848402778,
762
- 0.40556944444,
763
- 0.42585305556,
764
- 0.5207375,
765
- 0.4586325,
766
- 0.40217944444,
767
- 0.56245944444,
768
- 0.55036388889,
769
- 0.472395,
770
- 0.40083444444,
771
- 0.46645652778,
772
- 0.47231375,
773
- 0.61049125,
774
- 0.43026055556,
775
- 0.49318791667,
776
- 0.49176569444,
777
- 0.50923013889,
778
- 0.65010805556,
779
- 0.60687861111,
780
- 0.48488833333,
781
- 0.54808833333,
782
- 0.57673444444,
783
- 0.52415,
784
- 0.3968375,
785
- 0.4255625,
786
- 0.49525,
787
- 0.635625,
788
- 0.54183333333,
789
- 0.47456666667,
790
- 0.35498333333,
791
- 0.53386666667,
792
- 0.51248333333,
793
- 0.557225,
794
- 0.51565833333,
795
- 0.46278333333,
796
- 0.5115125,
797
- 0.53826666667,
798
- 0.54737347222,
799
- 0.50048930556,
800
- 0.55215569444,
801
- 0.52576833333,
802
- 0.45016569444,
803
- 0.36885777778,
804
- 0.45052347222,
805
- 0.45691166667,
806
- 0.47295736111,
807
- 0.48539277778,
808
- 0.53254333333,
809
- 0.62901055556,
810
- 0.524615,
811
- 0.49281166667,
812
- 0.48531888889,
813
- 0.52359944444,
814
- 0.52044388889,
815
- 0.482585,
816
- 0.45909666667,
817
- 0.56092263889,
818
- 0.51403375,
819
- 0.56277125,
820
- 0.53915708333,
821
- 0.49189180556,
822
- 0.54154763889,
823
- 0.50087736111,
824
- 0.44601666667,
825
- 0.48657333333,
826
- 0.52078888889,
827
- 0.47333972222,
828
- null
829
- ],
830
- "prints": [["Last:0.47"], ["Min:0.29"], ["Max:0.68"], ["Average:0.50"]],
831
- "last_value": 0.47,
832
- "minimum_value": 0.29,
833
- "maximum_value": 0.68,
834
- "average_value": 0.5
835
- },
836
- {
837
- "index_id": 5320,
838
- "metric_id": 12877,
839
- "metric": "used",
840
- "metric_legend": "used",
841
- "unit": "%",
842
- "hidden": 0,
843
- "min": null,
844
- "max": null,
845
- "virtual": 0,
846
- "ds_data": {
847
- "compo_id": 8,
848
- "host_id": null,
849
- "service_id": null,
850
- "name": "Used",
851
- "ds_order": 1,
852
- "ds_hidecurve": null,
853
- "ds_name": "used",
854
- "ds_color_line": "#2B28D7",
855
- "ds_color_line_mode": "0",
856
- "ds_color_area": "#050AF9",
857
- "ds_color_area_warn": null,
858
- "ds_color_area_crit": null,
859
- "ds_filled": "1",
860
- "ds_max": null,
861
- "ds_min": null,
862
- "ds_minmax_int": "0",
863
- "ds_average": "1",
864
- "ds_last": "1",
865
- "ds_total": "0",
866
- "ds_tickness": 1,
867
- "ds_transparency": "80",
868
- "ds_invert": null,
869
- "ds_legend": null,
870
- "ds_jumpline": "0",
871
- "ds_stack": null,
872
- "default_tpl1": null,
873
- "comment": null
874
- },
875
- "legend": "used",
876
- "stack": 0,
877
- "warn": null,
878
- "warn_low": null,
879
- "crit": null,
880
- "crit_low": null,
881
- "ds_color_area_warn": "#ff9a13",
882
- "ds_color_area_crit": "#e00b3d",
883
- "ds_order": 1,
884
- "data": [
885
- 93.53473625,
886
- 95.4705575,
887
- 90.78131625,
888
- 88.229732917,
889
- 91.46288,
890
- 96.404586389,
891
- 90.425950694,
892
- 92.482070417,
893
- 95.38929375,
894
- 98.065868472,
895
- 91.3271225,
896
- 92.991402361,
897
- 96.059254028,
898
- 95.253403889,
899
- 92.0200325,
900
- 86.169484583,
901
- 91.723414306,
902
- 95.545441667,
903
- 91.213633333,
904
- 96.978266667,
905
- 92.047108333,
906
- 94.362,
907
- 97.349091667,
908
- 91.6958,
909
- 90.930558333,
910
- 92.126758333,
911
- 92.515791667,
912
- 90.98285,
913
- 94.291941667,
914
- 94.6313,
915
- 93.0995,
916
- 96.032566667,
917
- 97.73195,
918
- 97.437383333,
919
- 97.234416667,
920
- 97.020591667,
921
- 92.502736528,
922
- 92.181365972,
923
- 91.755329306,
924
- 89.611361389,
925
- 81.009381389,
926
- 82.697088333,
927
- 82.949993889,
928
- 92.676847917,
929
- 92.367398889,
930
- 90.054948889,
931
- 88.724102778,
932
- 95.362512083,
933
- 98.273312639,
934
- 94.797704722,
935
- 91.9214025,
936
- 93.706965556,
937
- 95.219553889,
938
- 98.321218333,
939
- 97.808040972,
940
- 97.677885,
941
- 96.704646111,
942
- 93.720406667,
943
- 92.002689444,
944
- 89.145115,
945
- 96.180838889,
946
- 98.572950556,
947
- 91.615067778,
948
- 92.582652222,
949
- 96.859334444,
950
- 90.42448,
951
- 91.813913889,
952
- 92.037367778,
953
- 91.581648889,
954
- 79.763948889,
955
- 73.738103333,
956
- 72.813350972,
957
- 74.061651389,
958
- 78.564606944,
959
- 73.625989583,
960
- 74.61276875,
961
- 75.664770833,
962
- 84.789911111,
963
- 91.562385417,
964
- 92.0473125,
965
- 90.717729167,
966
- 84.731822917,
967
- 84.325086111,
968
- 84.78401875,
969
- 86.0260625,
970
- 87.469259028,
971
- 88.298977778,
972
- 86.075078472,
973
- 86.349101389,
974
- 88.635159028,
975
- 89.006238889,
976
- 91.320934722,
977
- 88.318921528,
978
- 77.251426528,
979
- 73.456744167,
980
- 81.2534625,
981
- 84.409346667,
982
- 85.268703333,
983
- 86.337475833,
984
- 83.730001667,
985
- 79.989916667,
986
- 86.847673333,
987
- 93.467304167,
988
- 95.524714167,
989
- 94.551674167,
990
- 87.080203333,
991
- 80.839834167,
992
- 79.757945,
993
- 81.624870833,
994
- 88.540388333,
995
- 96.682811667,
996
- 96.2668275,
997
- 95.1485025,
998
- 90.362938333,
999
- 88.677029167,
1000
- 89.1434075,
1001
- 88.386136667,
1002
- 94.904750833,
1003
- 97.1479475,
1004
- 90.782644167,
1005
- 88.3413525,
1006
- 89.247638056,
1007
- 92.222419444,
1008
- 82.727468889,
1009
- 81.888297083,
1010
- 85.957462222,
1011
- 89.885201806,
1012
- 97.087708472,
1013
- 93.182506389,
1014
- 84.728676111,
1015
- 83.442598056,
1016
- 81.057695972,
1017
- 73.105455972,
1018
- 77.261483333,
1019
- 86.681160278,
1020
- 90.515781111,
1021
- 83.858407917,
1022
- 84.912508194,
1023
- 89.196070833,
1024
- 89.980515278,
1025
- 88.662130556,
1026
- 90.962719444,
1027
- 90.9171,
1028
- 97.05835,
1029
- 97.970702778,
1030
- 94.598463889,
1031
- 97.041998611,
1032
- 97.571281944,
1033
- 90.000070833,
1034
- 84.775991667,
1035
- 77.098211111,
1036
- 73.768095833,
1037
- 87.708554167,
1038
- 95.292305556,
1039
- 92.661397222,
1040
- 91.698375,
1041
- 94.734926389,
1042
- 85.569593056,
1043
- 78.765402778,
1044
- 73.1415625,
1045
- 75.643798611,
1046
- 79.100340278,
1047
- 80.757395833,
1048
- 75.441020833,
1049
- 74.254395833,
1050
- 75.555159722,
1051
- 73.148548611,
1052
- 74.245520833,
1053
- 80.435673611,
1054
- 78.429381944,
1055
- 73.619902778,
1056
- 73.574881944,
1057
- 74.838986111,
1058
- 76.178506944,
1059
- 73.361840278,
1060
- 73.252270833,
1061
- 74.580708333,
1062
- 77.323736111,
1063
- 89.248868056,
1064
- 95.394506944,
1065
- 83.555773611,
1066
- 73.377284722,
1067
- 72.989409722,
1068
- 72.345833333,
1069
- 77.278854167,
1070
- 77.246506944,
1071
- 75.3070625,
1072
- 74.816506944,
1073
- 73.262715278,
1074
- 78.040527778,
1075
- 75.361666667,
1076
- 79.701270833,
1077
- 80.888388889,
1078
- 77.274089722,
1079
- 78.965599028,
1080
- 76.581835833,
1081
- 81.1598125,
1082
- 82.532069722,
1083
- 81.2063575,
1084
- 79.699761389,
1085
- 84.279743333,
1086
- 82.0001075,
1087
- 77.98224,
1088
- 80.77859,
1089
- 77.558431667,
1090
- 75.035186667,
1091
- 79.77859,
1092
- 76.498343333,
1093
- 75.270236667,
1094
- 74.502018333,
1095
- 76.987243333,
1096
- 77.314198333,
1097
- 73.739925,
1098
- 76.768341667,
1099
- 80.002403333,
1100
- 79.50922,
1101
- 79.793135,
1102
- 83.32031,
1103
- 90.690696528,
1104
- 91.855036111,
1105
- 95.152990556,
1106
- 90.662471667,
1107
- 87.878877778,
1108
- 86.474365833,
1109
- 93.031389722,
1110
- 91.1510425,
1111
- 89.524025,
1112
- 87.79133125,
1113
- 83.196835417,
1114
- 86.905329028,
1115
- 84.796714861,
1116
- 86.477819306,
1117
- 90.215054722,
1118
- 90.689078611,
1119
- 90.069447917,
1120
- 94.064490972,
1121
- 92.910771806,
1122
- 90.168341389,
1123
- 86.005012778,
1124
- 82.007541389,
1125
- 82.4444,
1126
- 84.725972361,
1127
- 81.079969444,
1128
- 82.071788889,
1129
- 74.344436111,
1130
- 73.304477778,
1131
- 73.895147222,
1132
- 76.732205556,
1133
- 81.682944444,
1134
- 86.026041667,
1135
- 87.382563889,
1136
- 88.904291667,
1137
- 87.770433333,
1138
- 80.927844444,
1139
- 77.038666667,
1140
- 81.157086111,
1141
- 82.575377778,
1142
- 91.568616667,
1143
- 96.412636111,
1144
- 96.376172222,
1145
- 91.875827778,
1146
- 95.524025,
1147
- 97.76045,
1148
- 96.818305556,
1149
- 92.319038889,
1150
- 89.773883333,
1151
- 80.555247222,
1152
- 85.832455556,
1153
- 77.946490833,
1154
- 82.205994583,
1155
- 88.74038125,
1156
- 83.006198333,
1157
- 78.297281111,
1158
- 74.590896667,
1159
- 75.900935833,
1160
- 74.595134722,
1161
- 78.369969722,
1162
- 81.004014167,
1163
- 85.035468056,
1164
- 81.22037,
1165
- 84.639056944,
1166
- 84.586663333,
1167
- 78.015843889,
1168
- 80.189820833,
1169
- 76.739529722,
1170
- 78.387696111,
1171
- 78.584917361,
1172
- 84.938538333,
1173
- 90.97361,
1174
- 90.789226667,
1175
- 90.425228333,
1176
- 91.381495,
1177
- 96.852533333,
1178
- 91.220391667,
1179
- 97.581593333,
1180
- 97.245176667,
1181
- 95.096153333,
1182
- 95.391049444,
1183
- 93.119884028,
1184
- 81.892788889,
1185
- 77.476779861,
1186
- 80.188209028,
1187
- 80.098774306,
1188
- 86.978205556,
1189
- 94.64235625,
1190
- 97.311053472,
1191
- 97.048621528,
1192
- 90.545117639,
1193
- 88.905369444,
1194
- 93.880626944,
1195
- 93.685805556,
1196
- 96.881301944,
1197
- 96.753013056,
1198
- 97.337800278,
1199
- 95.696868611,
1200
- 97.011245139,
1201
- 96.984615833,
1202
- 87.825530556,
1203
- 90.718932639,
1204
- 92.912039028,
1205
- 86.380014028,
1206
- 84.796867639,
1207
- 92.66191625,
1208
- 91.698228056,
1209
- 90.882975,
1210
- 96.128683194,
1211
- 98.014940139,
1212
- 96.4936875,
1213
- 93.528679167,
1214
- 97.463633333,
1215
- 95.379266667,
1216
- 90.4649625,
1217
- 89.087520833,
1218
- 86.6875375,
1219
- 77.421904167,
1220
- 74.396995833,
1221
- 73.215158333,
1222
- 76.235308333,
1223
- 76.3625,
1224
- 80.6953625,
1225
- 82.4897875,
1226
- 86.9769875,
1227
- 92.331467222,
1228
- 94.825957917,
1229
- 89.40248875,
1230
- 89.796999167,
1231
- 91.073693194,
1232
- 92.296046667,
1233
- 97.467716528,
1234
- 90.982410139,
1235
- 92.016604583,
1236
- 91.068401389,
1237
- 86.059646667,
1238
- 81.936524444,
1239
- 81.474296111,
1240
- 75.121141667,
1241
- 76.126827778,
1242
- 78.021423333,
1243
- 79.388627778,
1244
- 72.908920556,
1245
- 76.873109444,
1246
- 88.14395875,
1247
- 92.47338,
1248
- 90.283409167,
1249
- 87.865566667,
1250
- 84.918092222,
1251
- 78.515823889,
1252
- 73.144546111,
1253
- 77.194361667,
1254
- 74.75668,
1255
- 83.207912778,
1256
- 81.414109306,
1257
- null
1258
- ],
1259
- "prints": [["Last:81.41"], ["Average:86.52"]],
1260
- "last_value": 81.41,
1261
- "minimum_value": null,
1262
- "maximum_value": null,
1263
- "average_value": 86.52
1264
- }
1265
- ],
1266
- "times": [
1267
- "2023-04-22T18:00:00+02:00",
1268
- "2023-04-22T20:00:00+02:00",
1269
- "2023-04-22T22:00:00+02:00",
1270
- "2023-04-23T00:00:00+02:00",
1271
- "2023-04-23T02:00:00+02:00",
1272
- "2023-04-23T04:00:00+02:00",
1273
- "2023-04-23T06:00:00+02:00",
1274
- "2023-04-23T08:00:00+02:00",
1275
- "2023-04-23T10:00:00+02:00",
1276
- "2023-04-23T12:00:00+02:00",
1277
- "2023-04-23T14:00:00+02:00",
1278
- "2023-04-23T16:00:00+02:00",
1279
- "2023-04-23T18:00:00+02:00",
1280
- "2023-04-23T20:00:00+02:00",
1281
- "2023-04-23T22:00:00+02:00",
1282
- "2023-04-24T00:00:00+02:00",
1283
- "2023-04-24T02:00:00+02:00",
1284
- "2023-04-24T04:00:00+02:00",
1285
- "2023-04-24T06:00:00+02:00",
1286
- "2023-04-24T08:00:00+02:00",
1287
- "2023-04-24T10:00:00+02:00",
1288
- "2023-04-24T12:00:00+02:00",
1289
- "2023-04-24T14:00:00+02:00",
1290
- "2023-04-24T16:00:00+02:00",
1291
- "2023-04-24T18:00:00+02:00",
1292
- "2023-04-24T20:00:00+02:00",
1293
- "2023-04-24T22:00:00+02:00",
1294
- "2023-04-25T00:00:00+02:00",
1295
- "2023-04-25T02:00:00+02:00",
1296
- "2023-04-25T04:00:00+02:00",
1297
- "2023-04-25T06:00:00+02:00",
1298
- "2023-04-25T08:00:00+02:00",
1299
- "2023-04-25T10:00:00+02:00",
1300
- "2023-04-25T12:00:00+02:00",
1301
- "2023-04-25T14:00:00+02:00",
1302
- "2023-04-25T16:00:00+02:00",
1303
- "2023-04-25T18:00:00+02:00",
1304
- "2023-04-25T20:00:00+02:00",
1305
- "2023-04-25T22:00:00+02:00",
1306
- "2023-04-26T00:00:00+02:00",
1307
- "2023-04-26T02:00:00+02:00",
1308
- "2023-04-26T04:00:00+02:00",
1309
- "2023-04-26T06:00:00+02:00",
1310
- "2023-04-26T08:00:00+02:00",
1311
- "2023-04-26T10:00:00+02:00",
1312
- "2023-04-26T12:00:00+02:00",
1313
- "2023-04-26T14:00:00+02:00",
1314
- "2023-04-26T16:00:00+02:00",
1315
- "2023-04-26T18:00:00+02:00",
1316
- "2023-04-26T20:00:00+02:00",
1317
- "2023-04-26T22:00:00+02:00",
1318
- "2023-04-27T00:00:00+02:00",
1319
- "2023-04-27T02:00:00+02:00",
1320
- "2023-04-27T04:00:00+02:00",
1321
- "2023-04-27T06:00:00+02:00",
1322
- "2023-04-27T08:00:00+02:00",
1323
- "2023-04-27T10:00:00+02:00",
1324
- "2023-04-27T12:00:00+02:00",
1325
- "2023-04-27T14:00:00+02:00",
1326
- "2023-04-27T16:00:00+02:00",
1327
- "2023-04-27T18:00:00+02:00",
1328
- "2023-04-27T20:00:00+02:00",
1329
- "2023-04-27T22:00:00+02:00",
1330
- "2023-04-28T00:00:00+02:00",
1331
- "2023-04-28T02:00:00+02:00",
1332
- "2023-04-28T04:00:00+02:00",
1333
- "2023-04-28T06:00:00+02:00",
1334
- "2023-04-28T08:00:00+02:00",
1335
- "2023-04-28T10:00:00+02:00",
1336
- "2023-04-28T12:00:00+02:00",
1337
- "2023-04-28T14:00:00+02:00",
1338
- "2023-04-28T16:00:00+02:00",
1339
- "2023-04-28T18:00:00+02:00",
1340
- "2023-04-28T20:00:00+02:00",
1341
- "2023-04-28T22:00:00+02:00",
1342
- "2023-04-29T00:00:00+02:00",
1343
- "2023-04-29T02:00:00+02:00",
1344
- "2023-04-29T04:00:00+02:00",
1345
- "2023-04-29T06:00:00+02:00",
1346
- "2023-04-29T08:00:00+02:00",
1347
- "2023-04-29T10:00:00+02:00",
1348
- "2023-04-29T12:00:00+02:00",
1349
- "2023-04-29T14:00:00+02:00",
1350
- "2023-04-29T16:00:00+02:00",
1351
- "2023-04-29T18:00:00+02:00",
1352
- "2023-04-29T20:00:00+02:00",
1353
- "2023-04-29T22:00:00+02:00",
1354
- "2023-04-30T00:00:00+02:00",
1355
- "2023-04-30T02:00:00+02:00",
1356
- "2023-04-30T04:00:00+02:00",
1357
- "2023-04-30T06:00:00+02:00",
1358
- "2023-04-30T08:00:00+02:00",
1359
- "2023-04-30T10:00:00+02:00",
1360
- "2023-04-30T12:00:00+02:00",
1361
- "2023-04-30T14:00:00+02:00",
1362
- "2023-04-30T16:00:00+02:00",
1363
- "2023-04-30T18:00:00+02:00",
1364
- "2023-04-30T20:00:00+02:00",
1365
- "2023-04-30T22:00:00+02:00",
1366
- "2023-05-01T00:00:00+02:00",
1367
- "2023-05-01T02:00:00+02:00",
1368
- "2023-05-01T04:00:00+02:00",
1369
- "2023-05-01T06:00:00+02:00",
1370
- "2023-05-01T08:00:00+02:00",
1371
- "2023-05-01T10:00:00+02:00",
1372
- "2023-05-01T12:00:00+02:00",
1373
- "2023-05-01T14:00:00+02:00",
1374
- "2023-05-01T16:00:00+02:00",
1375
- "2023-05-01T18:00:00+02:00",
1376
- "2023-05-01T20:00:00+02:00",
1377
- "2023-05-01T22:00:00+02:00",
1378
- "2023-05-02T00:00:00+02:00",
1379
- "2023-05-02T02:00:00+02:00",
1380
- "2023-05-02T04:00:00+02:00",
1381
- "2023-05-02T06:00:00+02:00",
1382
- "2023-05-02T08:00:00+02:00",
1383
- "2023-05-02T10:00:00+02:00",
1384
- "2023-05-02T12:00:00+02:00",
1385
- "2023-05-02T14:00:00+02:00",
1386
- "2023-05-02T16:00:00+02:00",
1387
- "2023-05-02T18:00:00+02:00",
1388
- "2023-05-02T20:00:00+02:00",
1389
- "2023-05-02T22:00:00+02:00",
1390
- "2023-05-03T00:00:00+02:00",
1391
- "2023-05-03T02:00:00+02:00",
1392
- "2023-05-03T04:00:00+02:00",
1393
- "2023-05-03T06:00:00+02:00",
1394
- "2023-05-03T08:00:00+02:00",
1395
- "2023-05-03T10:00:00+02:00",
1396
- "2023-05-03T12:00:00+02:00",
1397
- "2023-05-03T14:00:00+02:00",
1398
- "2023-05-03T16:00:00+02:00",
1399
- "2023-05-03T18:00:00+02:00",
1400
- "2023-05-03T20:00:00+02:00",
1401
- "2023-05-03T22:00:00+02:00",
1402
- "2023-05-04T00:00:00+02:00",
1403
- "2023-05-04T02:00:00+02:00",
1404
- "2023-05-04T04:00:00+02:00",
1405
- "2023-05-04T06:00:00+02:00",
1406
- "2023-05-04T08:00:00+02:00",
1407
- "2023-05-04T10:00:00+02:00",
1408
- "2023-05-04T12:00:00+02:00",
1409
- "2023-05-04T14:00:00+02:00",
1410
- "2023-05-04T16:00:00+02:00",
1411
- "2023-05-04T18:00:00+02:00",
1412
- "2023-05-04T20:00:00+02:00",
1413
- "2023-05-04T22:00:00+02:00",
1414
- "2023-05-05T00:00:00+02:00",
1415
- "2023-05-05T02:00:00+02:00",
1416
- "2023-05-05T04:00:00+02:00",
1417
- "2023-05-05T06:00:00+02:00",
1418
- "2023-05-05T08:00:00+02:00",
1419
- "2023-05-05T10:00:00+02:00",
1420
- "2023-05-05T12:00:00+02:00",
1421
- "2023-05-05T14:00:00+02:00",
1422
- "2023-05-05T16:00:00+02:00",
1423
- "2023-05-05T18:00:00+02:00",
1424
- "2023-05-05T20:00:00+02:00",
1425
- "2023-05-05T22:00:00+02:00",
1426
- "2023-05-06T00:00:00+02:00",
1427
- "2023-05-06T02:00:00+02:00",
1428
- "2023-05-06T04:00:00+02:00",
1429
- "2023-05-06T06:00:00+02:00",
1430
- "2023-05-06T08:00:00+02:00",
1431
- "2023-05-06T10:00:00+02:00",
1432
- "2023-05-06T12:00:00+02:00",
1433
- "2023-05-06T14:00:00+02:00",
1434
- "2023-05-06T16:00:00+02:00",
1435
- "2023-05-06T18:00:00+02:00",
1436
- "2023-05-06T20:00:00+02:00",
1437
- "2023-05-06T22:00:00+02:00",
1438
- "2023-05-07T00:00:00+02:00",
1439
- "2023-05-07T02:00:00+02:00",
1440
- "2023-05-07T04:00:00+02:00",
1441
- "2023-05-07T06:00:00+02:00",
1442
- "2023-05-07T08:00:00+02:00",
1443
- "2023-05-07T10:00:00+02:00",
1444
- "2023-05-07T12:00:00+02:00",
1445
- "2023-05-07T14:00:00+02:00",
1446
- "2023-05-07T16:00:00+02:00",
1447
- "2023-05-07T18:00:00+02:00",
1448
- "2023-05-07T20:00:00+02:00",
1449
- "2023-05-07T22:00:00+02:00",
1450
- "2023-05-08T00:00:00+02:00",
1451
- "2023-05-08T02:00:00+02:00",
1452
- "2023-05-08T04:00:00+02:00",
1453
- "2023-05-08T06:00:00+02:00",
1454
- "2023-05-08T08:00:00+02:00",
1455
- "2023-05-08T10:00:00+02:00",
1456
- "2023-05-08T12:00:00+02:00",
1457
- "2023-05-08T14:00:00+02:00",
1458
- "2023-05-08T16:00:00+02:00",
1459
- "2023-05-08T18:00:00+02:00",
1460
- "2023-05-08T20:00:00+02:00",
1461
- "2023-05-08T22:00:00+02:00",
1462
- "2023-05-09T00:00:00+02:00",
1463
- "2023-05-09T02:00:00+02:00",
1464
- "2023-05-09T04:00:00+02:00",
1465
- "2023-05-09T06:00:00+02:00",
1466
- "2023-05-09T08:00:00+02:00",
1467
- "2023-05-09T10:00:00+02:00",
1468
- "2023-05-09T12:00:00+02:00",
1469
- "2023-05-09T14:00:00+02:00",
1470
- "2023-05-09T16:00:00+02:00",
1471
- "2023-05-09T18:00:00+02:00",
1472
- "2023-05-09T20:00:00+02:00",
1473
- "2023-05-09T22:00:00+02:00",
1474
- "2023-05-10T00:00:00+02:00",
1475
- "2023-05-10T02:00:00+02:00",
1476
- "2023-05-10T04:00:00+02:00",
1477
- "2023-05-10T06:00:00+02:00",
1478
- "2023-05-10T08:00:00+02:00",
1479
- "2023-05-10T10:00:00+02:00",
1480
- "2023-05-10T12:00:00+02:00",
1481
- "2023-05-10T14:00:00+02:00",
1482
- "2023-05-10T16:00:00+02:00",
1483
- "2023-05-10T18:00:00+02:00",
1484
- "2023-05-10T20:00:00+02:00",
1485
- "2023-05-10T22:00:00+02:00",
1486
- "2023-05-11T00:00:00+02:00",
1487
- "2023-05-11T02:00:00+02:00",
1488
- "2023-05-11T04:00:00+02:00",
1489
- "2023-05-11T06:00:00+02:00",
1490
- "2023-05-11T08:00:00+02:00",
1491
- "2023-05-11T10:00:00+02:00",
1492
- "2023-05-11T12:00:00+02:00",
1493
- "2023-05-11T14:00:00+02:00",
1494
- "2023-05-11T16:00:00+02:00",
1495
- "2023-05-11T18:00:00+02:00",
1496
- "2023-05-11T20:00:00+02:00",
1497
- "2023-05-11T22:00:00+02:00",
1498
- "2023-05-12T00:00:00+02:00",
1499
- "2023-05-12T02:00:00+02:00",
1500
- "2023-05-12T04:00:00+02:00",
1501
- "2023-05-12T06:00:00+02:00",
1502
- "2023-05-12T08:00:00+02:00",
1503
- "2023-05-12T10:00:00+02:00",
1504
- "2023-05-12T12:00:00+02:00",
1505
- "2023-05-12T14:00:00+02:00",
1506
- "2023-05-12T16:00:00+02:00",
1507
- "2023-05-12T18:00:00+02:00",
1508
- "2023-05-12T20:00:00+02:00",
1509
- "2023-05-12T22:00:00+02:00",
1510
- "2023-05-13T00:00:00+02:00",
1511
- "2023-05-13T02:00:00+02:00",
1512
- "2023-05-13T04:00:00+02:00",
1513
- "2023-05-13T06:00:00+02:00",
1514
- "2023-05-13T08:00:00+02:00",
1515
- "2023-05-13T10:00:00+02:00",
1516
- "2023-05-13T12:00:00+02:00",
1517
- "2023-05-13T14:00:00+02:00",
1518
- "2023-05-13T16:00:00+02:00",
1519
- "2023-05-13T18:00:00+02:00",
1520
- "2023-05-13T20:00:00+02:00",
1521
- "2023-05-13T22:00:00+02:00",
1522
- "2023-05-14T00:00:00+02:00",
1523
- "2023-05-14T02:00:00+02:00",
1524
- "2023-05-14T04:00:00+02:00",
1525
- "2023-05-14T06:00:00+02:00",
1526
- "2023-05-14T08:00:00+02:00",
1527
- "2023-05-14T10:00:00+02:00",
1528
- "2023-05-14T12:00:00+02:00",
1529
- "2023-05-14T14:00:00+02:00",
1530
- "2023-05-14T16:00:00+02:00",
1531
- "2023-05-14T18:00:00+02:00",
1532
- "2023-05-14T20:00:00+02:00",
1533
- "2023-05-14T22:00:00+02:00",
1534
- "2023-05-15T00:00:00+02:00",
1535
- "2023-05-15T02:00:00+02:00",
1536
- "2023-05-15T04:00:00+02:00",
1537
- "2023-05-15T06:00:00+02:00",
1538
- "2023-05-15T08:00:00+02:00",
1539
- "2023-05-15T10:00:00+02:00",
1540
- "2023-05-15T12:00:00+02:00",
1541
- "2023-05-15T14:00:00+02:00",
1542
- "2023-05-15T16:00:00+02:00",
1543
- "2023-05-15T18:00:00+02:00",
1544
- "2023-05-15T20:00:00+02:00",
1545
- "2023-05-15T22:00:00+02:00",
1546
- "2023-05-16T00:00:00+02:00",
1547
- "2023-05-16T02:00:00+02:00",
1548
- "2023-05-16T04:00:00+02:00",
1549
- "2023-05-16T06:00:00+02:00",
1550
- "2023-05-16T08:00:00+02:00",
1551
- "2023-05-16T10:00:00+02:00",
1552
- "2023-05-16T12:00:00+02:00",
1553
- "2023-05-16T14:00:00+02:00",
1554
- "2023-05-16T16:00:00+02:00",
1555
- "2023-05-16T18:00:00+02:00",
1556
- "2023-05-16T20:00:00+02:00",
1557
- "2023-05-16T22:00:00+02:00",
1558
- "2023-05-17T00:00:00+02:00",
1559
- "2023-05-17T02:00:00+02:00",
1560
- "2023-05-17T04:00:00+02:00",
1561
- "2023-05-17T06:00:00+02:00",
1562
- "2023-05-17T08:00:00+02:00",
1563
- "2023-05-17T10:00:00+02:00",
1564
- "2023-05-17T12:00:00+02:00",
1565
- "2023-05-17T14:00:00+02:00",
1566
- "2023-05-17T16:00:00+02:00",
1567
- "2023-05-17T18:00:00+02:00",
1568
- "2023-05-17T20:00:00+02:00",
1569
- "2023-05-17T22:00:00+02:00",
1570
- "2023-05-18T00:00:00+02:00",
1571
- "2023-05-18T02:00:00+02:00",
1572
- "2023-05-18T04:00:00+02:00",
1573
- "2023-05-18T06:00:00+02:00",
1574
- "2023-05-18T08:00:00+02:00",
1575
- "2023-05-18T10:00:00+02:00",
1576
- "2023-05-18T12:00:00+02:00",
1577
- "2023-05-18T14:00:00+02:00",
1578
- "2023-05-18T16:00:00+02:00",
1579
- "2023-05-18T18:00:00+02:00",
1580
- "2023-05-18T20:00:00+02:00",
1581
- "2023-05-18T22:00:00+02:00",
1582
- "2023-05-19T00:00:00+02:00",
1583
- "2023-05-19T02:00:00+02:00",
1584
- "2023-05-19T04:00:00+02:00",
1585
- "2023-05-19T06:00:00+02:00",
1586
- "2023-05-19T08:00:00+02:00",
1587
- "2023-05-19T10:00:00+02:00",
1588
- "2023-05-19T12:00:00+02:00",
1589
- "2023-05-19T14:00:00+02:00",
1590
- "2023-05-19T16:00:00+02:00",
1591
- "2023-05-19T18:00:00+02:00",
1592
- "2023-05-19T20:00:00+02:00",
1593
- "2023-05-19T22:00:00+02:00",
1594
- "2023-05-20T00:00:00+02:00",
1595
- "2023-05-20T02:00:00+02:00",
1596
- "2023-05-20T04:00:00+02:00",
1597
- "2023-05-20T06:00:00+02:00",
1598
- "2023-05-20T08:00:00+02:00",
1599
- "2023-05-20T10:00:00+02:00",
1600
- "2023-05-20T12:00:00+02:00",
1601
- "2023-05-20T14:00:00+02:00",
1602
- "2023-05-20T16:00:00+02:00",
1603
- "2023-05-20T18:00:00+02:00",
1604
- "2023-05-20T20:00:00+02:00",
1605
- "2023-05-20T22:00:00+02:00",
1606
- "2023-05-21T00:00:00+02:00",
1607
- "2023-05-21T02:00:00+02:00",
1608
- "2023-05-21T04:00:00+02:00",
1609
- "2023-05-21T06:00:00+02:00",
1610
- "2023-05-21T08:00:00+02:00",
1611
- "2023-05-21T10:00:00+02:00",
1612
- "2023-05-21T12:00:00+02:00",
1613
- "2023-05-21T14:00:00+02:00",
1614
- "2023-05-21T16:00:00+02:00",
1615
- "2023-05-21T18:00:00+02:00",
1616
- "2023-05-21T20:00:00+02:00",
1617
- "2023-05-21T22:00:00+02:00",
1618
- "2023-05-22T00:00:00+02:00",
1619
- "2023-05-22T02:00:00+02:00",
1620
- "2023-05-22T04:00:00+02:00",
1621
- "2023-05-22T06:00:00+02:00",
1622
- "2023-05-22T08:00:00+02:00",
1623
- "2023-05-22T10:00:00+02:00",
1624
- "2023-05-22T12:00:00+02:00",
1625
- "2023-05-22T14:00:00+02:00",
1626
- "2023-05-22T16:00:00+02:00",
1627
- "2023-05-22T18:00:00+02:00",
1628
- "2023-05-22T20:00:00+02:00",
1629
- "2023-05-22T22:00:00+02:00",
1630
- "2023-05-23T00:00:00+02:00",
1631
- "2023-05-23T02:00:00+02:00",
1632
- "2023-05-23T04:00:00+02:00",
1633
- "2023-05-23T06:00:00+02:00",
1634
- "2023-05-23T08:00:00+02:00",
1635
- "2023-05-23T10:00:00+02:00",
1636
- "2023-05-23T12:00:00+02:00",
1637
- "2023-05-23T14:00:00+02:00",
1638
- "2023-05-23T16:00:00+02:00",
1639
- "2023-05-23T18:00:00+02:00"
1640
- ]
1641
- }