@centreon/ui 26.3.5 → 26.3.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.
- package/package.json +1 -1
- package/src/ActionsList/ActionsList.styles.ts +2 -2
- package/src/ActionsList/index.stories.tsx +2 -3
- package/src/ActionsList/index.tsx +8 -9
- package/src/Button/Icon/index.stories.tsx +5 -5
- package/src/Button/Icon/index.tsx +3 -3
- package/src/Button/Save/index.stories.tsx +8 -8
- package/src/Button/Save/index.tsx +5 -6
- package/src/Button/Save/useSave.tsx +10 -8
- package/src/Checkbox/Checkbox.tsx +6 -6
- package/src/Checkbox/CheckboxGroup/index.stories.tsx +1 -1
- package/src/Checkbox/CheckboxGroup/index.tsx +6 -7
- package/src/Checkbox/index.stories.tsx +3 -3
- package/src/Checkbox/index.tsx +1 -1
- package/src/Colors/index.stories.tsx +2 -3
- package/src/Colors/index.tsx +6 -6
- package/src/ContentWithCircularProgress/index.stories.tsx +5 -5
- package/src/ContentWithCircularProgress/index.tsx +2 -3
- package/src/Dashboard/Dashboard.styles.ts +39 -39
- package/src/Dashboard/DashboardLayout.stories.tsx +3 -4
- package/src/Dashboard/Grid.tsx +7 -9
- package/src/Dashboard/Item.tsx +15 -15
- package/src/Dashboard/Layout.tsx +16 -14
- package/src/Dashboard/utils.ts +1 -1
- package/src/Dialog/Confirm/index.stories.tsx +1 -1
- package/src/Dialog/Confirm/index.tsx +3 -3
- package/src/Dialog/Duplicate/index.stories.tsx +3 -3
- package/src/Dialog/Duplicate/index.test.tsx +90 -90
- package/src/Dialog/Duplicate/index.tsx +7 -8
- package/src/Dialog/UnsavedChanges/index.stories.tsx +3 -4
- package/src/Dialog/UnsavedChanges/index.tsx +1 -2
- package/src/Dialog/UnsavedChanges/translatedLabels.ts +5 -5
- package/src/Dialog/UnsavedChanges/useUnsavedChanges.ts +1 -2
- package/src/Dialog/index.stories.tsx +4 -5
- package/src/Dialog/index.tsx +9 -10
- package/src/FallbackPage/FallbackPage.stories.tsx +1 -1
- package/src/FallbackPage/FallbackPage.tsx +2 -3
- package/src/FileDropZone/index.stories.tsx +8 -9
- package/src/FileDropZone/index.tsx +12 -13
- package/src/FileDropZone/useDropzone.test.ts +5 -2
- package/src/FileDropZone/useDropzone.ts +6 -8
- package/src/Form/CollapsibleGroup.tsx +18 -13
- package/src/Form/Form.cypress.spec.tsx +12 -13
- package/src/Form/Form.stories.tsx +5 -5
- package/src/Form/Form.tsx +8 -8
- package/src/Form/FormButtons.tsx +5 -7
- package/src/Form/Inputs/Autocomplete.tsx +13 -15
- package/src/Form/Inputs/Checkbox.tsx +5 -7
- package/src/Form/Inputs/CheckboxGroup.tsx +7 -9
- package/src/Form/Inputs/ConnectedAutocomplete.tsx +27 -21
- package/src/Form/Inputs/Custom.tsx +1 -1
- package/src/Form/Inputs/FieldsTable/FieldsTable.tsx +18 -17
- package/src/Form/Inputs/FieldsTable/Row.tsx +7 -8
- package/src/Form/Inputs/File.tsx +12 -10
- package/src/Form/Inputs/Grid.tsx +8 -7
- package/src/Form/Inputs/List/Content.tsx +4 -6
- package/src/Form/Inputs/List/List.styles.ts +1 -1
- package/src/Form/Inputs/List/List.tsx +6 -8
- package/src/Form/Inputs/List/useList.ts +5 -6
- package/src/Form/Inputs/LoadingSkeleton.tsx +1 -2
- package/src/Form/Inputs/PasswordEndAdornment.tsx +3 -3
- package/src/Form/Inputs/Radio.tsx +11 -12
- package/src/Form/Inputs/Switch.tsx +9 -11
- package/src/Form/Inputs/Text.tsx +18 -20
- package/src/Form/Inputs/index.tsx +20 -17
- package/src/Form/Inputs/models.ts +5 -5
- package/src/Form/Section/FormSection.tsx +12 -10
- package/src/Form/Section/PanelTabs.tsx +8 -4
- package/src/Form/storiesData.tsx +19 -20
- package/src/Graph/BarChart/Bar.tsx +126 -0
- package/src/Graph/BarChart/BarChart.cypress.spec.tsx +13 -14
- package/src/Graph/BarChart/BarChart.stories.tsx +30 -29
- package/src/Graph/BarChart/BarChart.tsx +20 -20
- package/src/Graph/BarChart/BarGroup.tsx +12 -12
- package/src/Graph/BarChart/BarStack.tsx +30 -103
- package/src/Graph/BarChart/MemoizedGroup.tsx +10 -9
- package/src/Graph/BarChart/ResponsiveBarChart.tsx +110 -116
- package/src/Graph/BarChart/Tooltip/BarChartTooltip.tsx +7 -8
- package/src/Graph/BarChart/atoms.ts +1 -1
- package/src/Graph/BarChart/models.ts +1 -1
- package/src/Graph/BarChart/useBarStack.ts +5 -7
- package/src/Graph/BarStack/BarStack.cypress.spec.tsx +3 -3
- package/src/Graph/BarStack/BarStack.stories.tsx +13 -14
- package/src/Graph/BarStack/BarStack.styles.ts +25 -24
- package/src/Graph/BarStack/BarStack.tsx +1 -2
- package/src/Graph/BarStack/Graph.tsx +42 -24
- package/src/Graph/BarStack/GraphAndLegend.tsx +10 -9
- package/src/Graph/BarStack/ResponsiveBarStack.tsx +21 -20
- package/src/Graph/BarStack/useGraphAndLegend.ts +4 -3
- package/src/Graph/BarStack/useResponsiveBarStack.ts +9 -11
- package/src/Graph/Chart/BasicComponents/Lines/RegularLines/index.tsx +3 -4
- package/src/Graph/Chart/BasicComponents/Lines/RegularLines/useRegularLines.ts +1 -1
- package/src/Graph/Chart/BasicComponents/Lines/StackedLines/index.tsx +11 -11
- package/src/Graph/Chart/BasicComponents/Lines/StackedLines/useStackedLines.ts +3 -3
- package/src/Graph/Chart/BasicComponents/Lines/Threshold/BasicThreshold.tsx +1 -1
- package/src/Graph/Chart/BasicComponents/Lines/Threshold/Circle.tsx +1 -1
- package/src/Graph/Chart/BasicComponents/Lines/Threshold/ThresholdWithPatternLines.tsx +5 -6
- package/src/Graph/Chart/BasicComponents/Lines/Threshold/ThresholdWithVariation.tsx +3 -4
- package/src/Graph/Chart/BasicComponents/Lines/Threshold/helpers/index.ts +1 -1
- package/src/Graph/Chart/BasicComponents/Lines/Threshold/index.tsx +1 -2
- package/src/Graph/Chart/BasicComponents/Lines/Threshold/useCoordinateCircle.ts +3 -4
- package/src/Graph/Chart/BasicComponents/Lines/Threshold/useScaleThreshold.ts +6 -7
- package/src/Graph/Chart/BasicComponents/Lines/index.tsx +10 -12
- package/src/Graph/Chart/BasicComponents/Lines/models.ts +4 -5
- package/src/Graph/Chart/Chart.cypress.spec.tsx +33 -36
- package/src/Graph/Chart/Chart.stories.tsx +51 -54
- package/src/Graph/Chart/Chart.styles.ts +2 -2
- package/src/Graph/Chart/Chart.tsx +111 -108
- package/src/Graph/Chart/InteractiveComponents/AnchorPoint/GuidingLines.tsx +3 -3
- package/src/Graph/Chart/InteractiveComponents/AnchorPoint/RegularAnchorPoint.tsx +7 -9
- package/src/Graph/Chart/InteractiveComponents/AnchorPoint/StackedAnchorPoint.tsx +7 -9
- package/src/Graph/Chart/InteractiveComponents/AnchorPoint/models.ts +2 -2
- package/src/Graph/Chart/InteractiveComponents/AnchorPoint/useTickGraph.ts +20 -18
- package/src/Graph/Chart/InteractiveComponents/Annotations/Annotation/Area.tsx +11 -8
- package/src/Graph/Chart/InteractiveComponents/Annotations/Annotation/Line.tsx +8 -5
- package/src/Graph/Chart/InteractiveComponents/Annotations/Annotation/index.tsx +7 -6
- package/src/Graph/Chart/InteractiveComponents/Annotations/Area/Downtime.tsx +4 -4
- package/src/Graph/Chart/InteractiveComponents/Annotations/EventAnnotations.tsx +3 -3
- package/src/Graph/Chart/InteractiveComponents/Annotations/Line/Acknowledgement.tsx +4 -4
- package/src/Graph/Chart/InteractiveComponents/Annotations/Line/Comments.tsx +4 -4
- package/src/Graph/Chart/InteractiveComponents/Annotations/annotationsAtoms.ts +7 -7
- package/src/Graph/Chart/InteractiveComponents/Annotations/index.tsx +3 -4
- package/src/Graph/Chart/InteractiveComponents/Annotations/models.ts +1 -1
- package/src/Graph/Chart/InteractiveComponents/Annotations/useAnnotation.ts +12 -8
- package/src/Graph/Chart/InteractiveComponents/Bar.tsx +1 -1
- package/src/Graph/Chart/InteractiveComponents/GraphValueTooltip/GraphValueTooltip.tsx +3 -4
- package/src/Graph/Chart/InteractiveComponents/GraphValueTooltip/GraphValueTooltipContent.tsx +3 -4
- package/src/Graph/Chart/InteractiveComponents/GraphValueTooltip/useGraphValueTooltip.ts +3 -3
- package/src/Graph/Chart/InteractiveComponents/TimeShiftZones/TimeShiftIcon.tsx +4 -4
- package/src/Graph/Chart/InteractiveComponents/TimeShiftZones/TimeShiftZone.tsx +6 -8
- package/src/Graph/Chart/InteractiveComponents/TimeShiftZones/index.tsx +6 -8
- package/src/Graph/Chart/InteractiveComponents/TimeShiftZones/models.ts +1 -1
- package/src/Graph/Chart/InteractiveComponents/TimeShiftZones/useTimeShiftZones.ts +42 -31
- package/src/Graph/Chart/InteractiveComponents/Tooltip/index.tsx +13 -12
- package/src/Graph/Chart/InteractiveComponents/Tooltip/useGraphTooltip.ts +14 -8
- package/src/Graph/Chart/InteractiveComponents/ZoomPreview/index.tsx +6 -7
- package/src/Graph/Chart/InteractiveComponents/ZoomPreview/models.ts +3 -3
- package/src/Graph/Chart/InteractiveComponents/ZoomPreview/useZoomPreview.ts +8 -8
- package/src/Graph/Chart/InteractiveComponents/index.tsx +25 -27
- package/src/Graph/Chart/InteractiveComponents/interactionWithGraphAtoms.ts +2 -2
- package/src/Graph/Chart/Legend/LegendContent.tsx +2 -2
- package/src/Graph/Chart/Legend/LegendHeader.tsx +3 -3
- package/src/Graph/Chart/Legend/index.tsx +21 -22
- package/src/Graph/Chart/Legend/useLegend.ts +3 -4
- package/src/Graph/Chart/LoadingSkeleton.tsx +2 -2
- package/src/Graph/Chart/common/index.ts +2 -2
- package/src/Graph/Chart/graphAtoms.ts +1 -1
- package/src/Graph/Chart/helpers/index.ts +4 -1
- package/src/Graph/Chart/index.tsx +36 -35
- package/src/Graph/Chart/models.ts +2 -4
- package/src/Graph/Chart/useChartData.ts +5 -7
- package/src/Graph/Gauge/AnimatedPie.tsx +4 -4
- package/src/Graph/Gauge/Gauge.cypress.spec.tsx +1 -2
- package/src/Graph/Gauge/Gauge.stories.tsx +1 -2
- package/src/Graph/Gauge/Gauge.tsx +5 -5
- package/src/Graph/Gauge/PieData.tsx +3 -4
- package/src/Graph/Gauge/ResponsiveGauge.tsx +5 -6
- package/src/Graph/Gauge/Thresholds.tsx +3 -3
- package/src/Graph/Gauge/models.ts +2 -2
- package/src/Graph/Gauge/useResizeObserver.ts +4 -4
- package/src/Graph/HeatMap/HeatMap.cypress.spec.tsx +3 -4
- package/src/Graph/HeatMap/HeatMap.stories.tsx +3 -4
- package/src/Graph/HeatMap/HeatMap.tsx +1 -2
- package/src/Graph/HeatMap/HeatMapData.json +60 -60
- package/src/Graph/HeatMap/ResponsiveHeatMap.tsx +8 -10
- package/src/Graph/Legend/Legend.styles.ts +1 -1
- package/src/Graph/Legend/Legend.tsx +4 -4
- package/src/Graph/PieChart/PieChart.cypress.spec.tsx +1 -1
- package/src/Graph/PieChart/PieChart.stories.tsx +4 -4
- package/src/Graph/PieChart/PieChart.tsx +1 -2
- package/src/Graph/PieChart/ResponsivePie.tsx +43 -41
- package/src/Graph/PieChart/useResponsivePie.ts +2 -3
- package/src/Graph/SingleBar/ResponsiveSingleBar.tsx +8 -9
- package/src/Graph/SingleBar/SingleBar.cypress.spec.tsx +5 -6
- package/src/Graph/SingleBar/SingleBar.stories.tsx +2 -3
- package/src/Graph/SingleBar/SingleBar.tsx +2 -2
- package/src/Graph/SingleBar/ThresholdLine.tsx +18 -16
- package/src/Graph/SingleBar/Thresholds.tsx +5 -6
- package/src/Graph/SingleBar/models.ts +1 -1
- package/src/Graph/Text/Text.cypress.spec.tsx +1 -2
- package/src/Graph/Text/Text.stories.tsx +1 -2
- package/src/Graph/Text/Text.tsx +7 -8
- package/src/Graph/Timeline/ResponsiveTimeline.tsx +34 -31
- package/src/Graph/Timeline/Timeline.cypress.spec.tsx +22 -20
- package/src/Graph/Timeline/Timeline.stories.tsx +19 -18
- package/src/Graph/Timeline/Timeline.tsx +4 -4
- package/src/Graph/Timeline/timeline.styles.ts +3 -3
- package/src/Graph/Timeline/useTimeline.ts +19 -15
- package/src/Graph/Tree/DescendantNodes.tsx +3 -4
- package/src/Graph/Tree/Links.tsx +5 -5
- package/src/Graph/Tree/StandaloneTree.tsx +2 -2
- package/src/Graph/Tree/Tree.cypress.spec.tsx +6 -7
- package/src/Graph/Tree/Tree.stories.tsx +8 -11
- package/src/Graph/Tree/Tree.tsx +6 -8
- package/src/Graph/Tree/index.ts +2 -2
- package/src/Graph/Tree/stories/contents.tsx +8 -9
- package/src/Graph/Tree/stories/datas.ts +1 -1
- package/src/Graph/Tree/utils.ts +1 -1
- package/src/Graph/common/Axes/UnitLabel.tsx +1 -2
- package/src/Graph/common/Axes/index.tsx +6 -7
- package/src/Graph/common/Axes/models.ts +2 -2
- package/src/Graph/common/Axes/useAxisY.ts +2 -4
- package/src/Graph/common/BaseChart/AdditionalLine.tsx +5 -4
- package/src/Graph/common/BaseChart/BaseChart.tsx +15 -11
- package/src/Graph/common/BaseChart/ChartSvgWrapper.tsx +7 -6
- package/src/Graph/common/BaseChart/Header/index.tsx +4 -4
- package/src/Graph/common/BaseChart/Header/useHeaderStyles.ts +2 -2
- package/src/Graph/common/BaseChart/useComputeBaseChartDimensions.ts +2 -3
- package/src/Graph/common/BaseChart/useComputeYAxisMaxCharacters.ts +12 -11
- package/src/Graph/common/Grids/index.tsx +3 -4
- package/src/Graph/common/Thresholds/ThresholdLine.tsx +13 -10
- package/src/Graph/common/Thresholds/Thresholds.tsx +3 -4
- package/src/Graph/common/models.ts +1 -1
- package/src/Graph/common/timeSeries/index.test.ts +32 -33
- package/src/Graph/common/timeSeries/index.ts +26 -27
- package/src/Graph/common/timeSeries/models.ts +2 -2
- package/src/Graph/common/useMarginTop.ts +5 -1
- package/src/Graph/common/utils.ts +12 -12
- package/src/Graph/index.ts +11 -11
- package/src/Graph/mockedData/annotationData.json +141 -141
- package/src/Graph/mockedData/curvesWithSameColor.json +97 -97
- package/src/Graph/mockedData/dataWithMissingPoint.json +34 -34
- package/src/Graph/mockedData/exclusionPeriodFirstPeriod.json +210 -210
- package/src/Graph/mockedData/exclusionPeriodSecondPeriod.json +210 -210
- package/src/Graph/mockedData/exclusionPeriodThirdPeriod.json +210 -210
- package/src/Graph/mockedData/lastDay.json +94 -94
- package/src/Graph/mockedData/lastDayAreaStack.json +325 -325
- package/src/Graph/mockedData/lastDayForward.json +108 -108
- package/src/Graph/mockedData/lastDayThreshold.json +210 -210
- package/src/Graph/mockedData/lastDayWithIncompleteValues.json +94 -94
- package/src/Graph/mockedData/lastDayWithLotOfUnits.json +125 -125
- package/src/Graph/mockedData/lastDayWithNullValues.json +94 -94
- package/src/Graph/mockedData/lastMonth.json +108 -108
- package/src/Graph/mockedData/lastWeek.json +108 -108
- package/src/Graph/mockedData/pingService.json +107 -107
- package/src/Graph/mockedData/pingServiceLinesBars.json +114 -114
- package/src/Graph/mockedData/pingServiceLinesBarsMixed.json +114 -114
- package/src/Graph/mockedData/pingServiceLinesBarsStacked.json +114 -114
- package/src/Graph/mockedData/pingServiceMixedStacked.json +109 -109
- package/src/Graph/mockedData/pingServiceStacked.json +109 -109
- package/src/Graph/mockedData/pingServiceWithStackedKeys.json +88 -88
- package/src/Graph/mockedData/zoomPreview.json +108 -108
- package/src/Icon/AcknowledgementIcon.tsx +2 -2
- package/src/Icon/BaseIcon.tsx +3 -3
- package/src/Icon/BusinessActivityIcon.tsx +2 -2
- package/src/Icon/ContainerIcon.tsx +1 -1
- package/src/Icon/DowntimeIcon.tsx +2 -2
- package/src/Icon/FlappingIcon.tsx +2 -2
- package/src/Icon/HostGroupIcon.tsx +2 -2
- package/src/Icon/HostIcon.tsx +2 -2
- package/src/Icon/IconAttach/index.stories.tsx +2 -2
- package/src/Icon/MetaServiceIcon.tsx +2 -2
- package/src/Icon/RegexIcon.tsx +5 -3
- package/src/Icon/ServiceGroupIcon.tsx +2 -2
- package/src/Icon/ServiceIcon.tsx +2 -2
- package/src/Icon/index.ts +6 -6
- package/src/Image/Image.tsx +1 -2
- package/src/Image/index.stories.tsx +1 -2
- package/src/Image/index.test.tsx +45 -45
- package/src/Image/useLoadImage.ts +1 -1
- package/src/InputField/Number/Number.cypress.spec.tsx +3 -3
- package/src/InputField/Number/Number.stories.tsx +8 -6
- package/src/InputField/Number/Number.tsx +7 -8
- package/src/InputField/Search/PersistentTooltip.tsx +6 -7
- package/src/InputField/Search/RegexpHelpTooltip.tsx +2 -3
- package/src/InputField/Search/index.stories.tsx +1 -2
- package/src/InputField/Search/index.tsx +1 -1
- package/src/InputField/Select/Autocomplete/Connected/Multi/MultiConnectedAutocompleteField.cypress.spec.tsx +3 -2
- package/src/InputField/Select/Autocomplete/Connected/Multi/Popover.tsx +0 -1
- package/src/InputField/Select/Autocomplete/Connected/Multi/index.tsx +1 -1
- package/src/InputField/Select/Autocomplete/Connected/Single.tsx +0 -1
- package/src/InputField/Select/Autocomplete/Connected/index.stories.tsx +2 -3
- package/src/InputField/Select/Autocomplete/Connected/index.test.tsx +107 -107
- package/src/InputField/Select/Autocomplete/Connected/index.tsx +43 -36
- package/src/InputField/Select/Autocomplete/Draggable/Multi.tsx +0 -1
- package/src/InputField/Select/Autocomplete/Draggable/MultiConnected.tsx +0 -1
- package/src/InputField/Select/Autocomplete/Draggable/SortableList.tsx +6 -8
- package/src/InputField/Select/Autocomplete/Draggable/SortableListContent.tsx +11 -11
- package/src/InputField/Select/Autocomplete/Draggable/index.stories.tsx +7 -10
- package/src/InputField/Select/Autocomplete/Draggable/index.tsx +19 -20
- package/src/InputField/Select/Autocomplete/Multi/Listbox.tsx +7 -6
- package/src/InputField/Select/Autocomplete/Multi/Multi.styles.ts +7 -7
- package/src/InputField/Select/Autocomplete/Multi/Multi.tsx +16 -16
- package/src/InputField/Select/Autocomplete/Multi/Popover.tsx +0 -1
- package/src/InputField/Select/Autocomplete/Multi/index.stories.tsx +3 -4
- package/src/InputField/Select/Autocomplete/Popover/index.tsx +10 -11
- package/src/InputField/Select/Autocomplete/autoComplete.styles.ts +3 -3
- package/src/InputField/Select/Autocomplete/index.stories.tsx +5 -4
- package/src/InputField/Select/Autocomplete/index.tsx +41 -34
- package/src/InputField/Select/IconPopover/index.stories.tsx +1 -1
- package/src/InputField/Select/IconPopover/index.tsx +13 -15
- package/src/InputField/Select/Option.tsx +4 -5
- package/src/InputField/Select/index.stories.tsx +5 -5
- package/src/InputField/Select/index.tsx +11 -12
- package/src/InputField/Text/index.stories.tsx +6 -6
- package/src/InputField/Text/index.tsx +19 -21
- package/src/InputField/Text/useAutoSize.ts +10 -4
- package/src/LicenseMessage/index.stories.tsx +3 -3
- package/src/LicenseMessage/index.tsx +2 -2
- package/src/Listing/ActionBar/ColumnMultiSelect.tsx +7 -7
- package/src/Listing/ActionBar/Pagination.tsx +2 -3
- package/src/Listing/ActionBar/PaginationActions.tsx +7 -7
- package/src/Listing/ActionBar/index.tsx +22 -23
- package/src/Listing/Cell/DataCell.tsx +13 -16
- package/src/Listing/Cell/EllipsisTypography.tsx +1 -1
- package/src/Listing/Cell/index.tsx +17 -18
- package/src/Listing/Checkbox.tsx +1 -1
- package/src/Listing/Header/Cell/ListingHeaderCell.tsx +8 -9
- package/src/Listing/Header/Cell/SelectActionListingHeaderCell.tsx +6 -6
- package/src/Listing/Header/ListingHeader.tsx +30 -20
- package/src/Listing/Header/_internals/DraggableIconButton.tsx +2 -2
- package/src/Listing/Header/_internals/Label.tsx +3 -2
- package/src/Listing/Header/_internals/PredefinedSelectionList.tsx +1 -1
- package/src/Listing/Listing.cypress.spec.tsx +4 -5
- package/src/Listing/Row/EmptyRow.tsx +2 -2
- package/src/Listing/Row/Row.tsx +11 -11
- package/src/Listing/Row/SkeletonLoaderRows.tsx +0 -1
- package/src/Listing/index.stories.tsx +11 -13
- package/src/Listing/index.tsx +35 -36
- package/src/Listing/tableAtoms.ts +3 -3
- package/src/Listing/useResizeObserver.ts +2 -3
- package/src/Listing/useStyleTable.ts +7 -8
- package/src/ListingPage/Filter.tsx +3 -3
- package/src/ListingPage/FilterSkeleton.tsx +2 -2
- package/src/ListingPage/ListingSkeleton.tsx +2 -2
- package/src/ListingPage/index.stories.tsx +9 -12
- package/src/ListingPage/index.tsx +2 -4
- package/src/LoadingSkeleton/index.stories.tsx +3 -3
- package/src/LoadingSkeleton/index.tsx +1 -1
- package/src/Logo/CentreonLogo.stories.tsx +1 -1
- package/src/Logo/CentreonLogo.tsx +1 -3
- package/src/MenuSkeleton/index.stories.tsx +1 -1
- package/src/MenuSkeleton/index.tsx +2 -2
- package/src/Module/LicensedModule/LicenseCheck/decoder.ts +1 -1
- package/src/Module/LicensedModule/LicenseCheck/index.stories.tsx +3 -4
- package/src/Module/LicensedModule/LicenseCheck/index.tsx +1 -2
- package/src/Module/LicensedModule/index.tsx +2 -3
- package/src/Module/Module.cypress.spec.tsx +1 -3
- package/src/Module/index.tsx +4 -4
- package/src/MultiSelectEntries/index.stories.tsx +6 -6
- package/src/MultiSelectEntries/index.tsx +6 -8
- package/src/MultiSelectEntries/useHover.ts +4 -4
- package/src/PageSkeleton/BaseSkeleton.tsx +3 -4
- package/src/PageSkeleton/ContentSkeleton.tsx +3 -4
- package/src/PageSkeleton/index.stories.tsx +2 -2
- package/src/PageSkeleton/index.tsx +2 -3
- package/src/Pagination/Pagination.cypress.spec.tsx +14 -11
- package/src/Pagination/Pagination.stories.tsx +9 -8
- package/src/Pagination/Pagination.styles.ts +30 -30
- package/src/Pagination/Pagination.tsx +15 -14
- package/src/Panel/Memoized.tsx +1 -2
- package/src/Panel/Section/ExpandableSection.tsx +7 -7
- package/src/Panel/Section/index.stories.tsx +3 -3
- package/src/Panel/Section/index.test.tsx +50 -50
- package/src/Panel/Section/index.tsx +7 -8
- package/src/Panel/Tab.tsx +2 -2
- package/src/Panel/index.stories.tsx +2 -2
- package/src/Panel/index.tsx +29 -26
- package/src/ParentSize/ParentSize.tsx +1 -2
- package/src/PopoverMenu/index.tsx +8 -9
- package/src/Responsive/index.stories.tsx +2 -2
- package/src/Responsive/index.tsx +11 -5
- package/src/RichTextEditor/ContentEditable.tsx +15 -9
- package/src/RichTextEditor/RichTextEditor.cypress.spec.tsx +1 -1
- package/src/RichTextEditor/RichTextEditor.tsx +5 -5
- package/src/RichTextEditor/index.stories.tsx +4 -5
- package/src/RichTextEditor/index.ts +1 -1
- package/src/RichTextEditor/initialEditorState.json +3 -3
- package/src/RichTextEditor/plugins/AutoLinkPlugin/index.tsx +4 -5
- package/src/RichTextEditor/plugins/FloatingLinkEditorPlugin.tsx +13 -14
- package/src/RichTextEditor/plugins/ToolbarPlugin/AlignPicker.tsx +8 -10
- package/src/RichTextEditor/plugins/ToolbarPlugin/BlockButtons.tsx +4 -6
- package/src/RichTextEditor/plugins/ToolbarPlugin/FormatButtons.tsx +9 -11
- package/src/RichTextEditor/plugins/ToolbarPlugin/LinkButton.tsx +7 -9
- package/src/RichTextEditor/plugins/ToolbarPlugin/ListButton.tsx +3 -5
- package/src/RichTextEditor/plugins/ToolbarPlugin/MacrosButton.tsx +3 -4
- package/src/RichTextEditor/plugins/ToolbarPlugin/ToolbarPlugin.styles.ts +2 -2
- package/src/RichTextEditor/plugins/ToolbarPlugin/UndoRedoButtons.tsx +6 -8
- package/src/RichTextEditor/plugins/ToolbarPlugin/index.tsx +1 -0
- package/src/RichTextEditor/utils/getSelectedNode.ts +1 -1
- package/src/Snackbar/SnackbarProvider.tsx +5 -5
- package/src/Snackbar/Transition.tsx +6 -6
- package/src/Snackbar/index.stories.tsx +2 -3
- package/src/Snackbar/index.tsx +7 -8
- package/src/Snackbar/useSnackbar.tsx +3 -5
- package/src/SortableItems/Item.tsx +1 -1
- package/src/SortableItems/SortableItem.tsx +0 -1
- package/src/SortableItems/index.stories.tsx +14 -11
- package/src/SortableItems/index.tsx +38 -41
- package/src/StatusChip/index.stories.tsx +3 -3
- package/src/StatusChip/index.tsx +3 -4
- package/src/StoryBookThemeProvider/index.tsx +7 -7
- package/src/ThemeProvider/base.css +1 -1
- package/src/ThemeProvider/index.tsx +13 -14
- package/src/ThemeProvider/palettes.ts +10 -9
- package/src/TimePeriods/CustomTimePeriod/CompactCustomTimePeriod.tsx +4 -5
- package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/ErrorText.tsx +1 -1
- package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/PickersStartEndDate.tsx +8 -8
- package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/index.tsx +7 -7
- package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/models.ts +3 -4
- package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/usePickersStartEndDate.ts +5 -7
- package/src/TimePeriods/CustomTimePeriod/SimpleCustomTimePeriod.tsx +3 -3
- package/src/TimePeriods/CustomTimePeriod/index.tsx +2 -4
- package/src/TimePeriods/DateTimePickerInput.tsx +8 -9
- package/src/TimePeriods/ResolutionTimePeriod.cypress.spec.tsx +8 -8
- package/src/TimePeriods/SelectedTimePeriod.tsx +9 -9
- package/src/TimePeriods/TimePeriods.cypress.spec.tsx +10 -8
- package/src/TimePeriods/TimePeriods.tsx +4 -3
- package/src/TimePeriods/helpers/index.ts +4 -4
- package/src/TimePeriods/index.stories.tsx +6 -7
- package/src/TimePeriods/index.tsx +3 -3
- package/src/TimePeriods/models.ts +1 -2
- package/src/TimePeriods/timePeriodsAtoms.ts +2 -2
- package/src/TimePeriods/useSortTimePeriods.ts +2 -2
- package/src/TimePeriods/useTimePeriod.ts +11 -7
- package/src/TopCounterElements/ResourceCounters.tsx +3 -4
- package/src/TopCounterElements/ResourceSubMenu.tsx +7 -7
- package/src/TopCounterElements/StatusCounter.tsx +5 -5
- package/src/TopCounterElements/TopCounterLayout.tsx +4 -5
- package/src/TopCounterElements/index.tsx +3 -3
- package/src/TopCounterElements/useCloseOnLegacyPage.tsx +3 -4
- package/src/Typography/EllipsisTypography.tsx +2 -2
- package/src/Typography/FluidTypography/index.stories.tsx +3 -3
- package/src/Typography/FluidTypography/index.tsx +1 -1
- package/src/Typography/Subtitle.tsx +6 -13
- package/src/Typography/Typography.stories.tsx +1 -1
- package/src/Typography/story.utils.tsx +4 -4
- package/src/WallpaperPage/index.stories.tsx +1 -2
- package/src/WallpaperPage/index.tsx +2 -3
- package/src/Wizard/ActionsBar.test.tsx +109 -109
- package/src/Wizard/ActionsBar.tsx +4 -4
- package/src/Wizard/StepIcon.tsx +3 -3
- package/src/Wizard/Stepper.tsx +5 -5
- package/src/Wizard/WizardContent.tsx +3 -5
- package/src/Wizard/index.stories.tsx +17 -19
- package/src/Wizard/index.test.tsx +116 -158
- package/src/Wizard/index.tsx +8 -10
- package/src/Wizard/models.ts +2 -2
- package/src/api/QueryProvider.tsx +1 -2
- package/src/api/TestQueryProvider.tsx +1 -2
- package/src/api/buildListingDecoder.ts +1 -1
- package/src/api/buildListingEndpoint/getSearchQueryParameterValue.ts +1 -1
- package/src/api/buildListingEndpoint/index.ts +3 -3
- package/src/api/buildListingEndpoint/models.ts +1 -1
- package/src/api/customFetch.ts +1 -1
- package/src/api/index.ts +1 -1
- package/src/api/useBulkResponse.ts +1 -0
- package/src/api/useCancelTokenSource.ts +1 -2
- package/src/api/useFetchQuery/index.test.ts +9 -3
- package/src/api/useFetchQuery/index.ts +11 -8
- package/src/api/useGraphQuery/index.ts +9 -11
- package/src/api/useGraphQuery/models.ts +1 -1
- package/src/api/useMutationQuery/index.ts +12 -9
- package/src/api/useMutationQuery/useMutationQuery.cypress.spec.tsx +11 -11
- package/src/api/useMutationQuery/useOptimisticMutation.ts +2 -1
- package/src/api/useRequest/index.test.ts +11 -10
- package/src/api/useRequest/index.ts +5 -6
- package/src/base/tokens/source/base.json +68 -68
- package/src/base/tokens/themes/base.tokens.json +331 -331
- package/src/base/tokens/themes/ui-dark.tokens.json +331 -331
- package/src/base/tokens/themes/ui-light.tokens.json +331 -331
- package/src/components/Avatar/Avatar.stories.tsx +1 -1
- package/src/components/Avatar/Avatar.tsx +2 -2
- package/src/components/Button/Button.stories.tsx +6 -5
- package/src/components/Button/Button.tsx +6 -6
- package/src/components/Button/Icon/IconButton.stories.tsx +2 -2
- package/src/components/Button/Icon/IconButton.tsx +6 -7
- package/src/components/CollapsibleItem/CollapsibleItem.cypress.spec.tsx +1 -1
- package/src/components/CollapsibleItem/CollapsibleItem.stories.tsx +2 -2
- package/src/components/CollapsibleItem/CollapsibleItem.tsx +6 -7
- package/src/components/CopyCommand/CopyCommand.cypress.spec.tsx +24 -22
- package/src/components/CopyCommand/CopyCommand.stories.tsx +13 -12
- package/src/components/CopyCommand/CopyCommand.styles.tsx +47 -45
- package/src/components/CopyCommand/CopyCommand.tsx +8 -8
- package/src/components/CrudPage/Actions/Actions.styles.ts +16 -16
- package/src/components/CrudPage/Actions/Actions.tsx +2 -1
- package/src/components/CrudPage/Actions/AddButton.tsx +4 -2
- package/src/components/CrudPage/Actions/Filters.tsx +3 -1
- package/src/components/CrudPage/Actions/Search.tsx +4 -3
- package/src/components/CrudPage/Actions/useSearch.tsx +12 -8
- package/src/components/CrudPage/Columns/Actions.tsx +16 -11
- package/src/components/CrudPage/CrudPage.cypress.spec.tsx +100 -98
- package/src/components/CrudPage/CrudPage.stories.tsx +67 -65
- package/src/components/CrudPage/CrudPageRoot.tsx +21 -20
- package/src/components/CrudPage/DeleteModal.tsx +8 -6
- package/src/components/CrudPage/Form/AddModal.tsx +8 -9
- package/src/components/CrudPage/Form/Buttons.tsx +14 -11
- package/src/components/CrudPage/Form/UpdateModal.tsx +17 -18
- package/src/components/CrudPage/Listing.tsx +14 -13
- package/src/components/CrudPage/atoms.ts +2 -1
- package/src/components/CrudPage/hooks/useDeleteItem.ts +7 -5
- package/src/components/CrudPage/hooks/useGetItem.ts +3 -2
- package/src/components/CrudPage/hooks/useGetItems.ts +11 -10
- package/src/components/CrudPage/hooks/useListingQueryKey.ts +2 -1
- package/src/components/CrudPage/index.tsx +3 -3
- package/src/components/CrudPage/models.ts +10 -6
- package/src/components/DataTable/DataListing.tsx +2 -2
- package/src/components/DataTable/DataTable.cypress.spec.tsx +3 -4
- package/src/components/DataTable/DataTable.stories.tsx +5 -6
- package/src/components/DataTable/DataTable.styles.ts +5 -5
- package/src/components/DataTable/DataTable.tsx +1 -1
- package/src/components/DataTable/EmptyState/DataTableEmptyState.stories.tsx +1 -1
- package/src/components/DataTable/EmptyState/DataTableEmptyState.styles.ts +1 -1
- package/src/components/DataTable/EmptyState/DataTableEmptyState.tsx +4 -6
- package/src/components/DataTable/Item/DataTableItem.stories.tsx +1 -1
- package/src/components/DataTable/Item/DataTableItem.tsx +7 -2
- package/src/components/DataTable/Item/DataTableItemSkeleton.tsx +1 -2
- package/src/components/ExpandableContainer/ExpandableContainer.tsx +14 -12
- package/src/components/ExpandableContainer/models.ts +3 -2
- package/src/components/Form/AccessRights/AccessRights.cypress.spec.tsx +2 -3
- package/src/components/Form/AccessRights/AccessRights.stories.tsx +2 -3
- package/src/components/Form/AccessRights/AccessRights.tsx +2 -3
- package/src/components/Form/AccessRights/Actions/Actions.tsx +5 -6
- package/src/components/Form/AccessRights/Actions/useActions.ts +1 -1
- package/src/components/Form/AccessRights/List/Item.tsx +5 -6
- package/src/components/Form/AccessRights/List/List.tsx +4 -5
- package/src/components/Form/AccessRights/List/ListItemSkeleton.tsx +1 -2
- package/src/components/Form/AccessRights/List/ListSkeleton.tsx +1 -2
- package/src/components/Form/AccessRights/List/RemoveAccessRight.tsx +3 -3
- package/src/components/Form/AccessRights/List/StateChip.tsx +1 -2
- package/src/components/Form/AccessRights/List/useItem.ts +2 -2
- package/src/components/Form/AccessRights/Provider.tsx +2 -3
- package/src/components/Form/AccessRights/ShareInput/ContactSwitch.tsx +5 -6
- package/src/components/Form/AccessRights/ShareInput/ShareInput.tsx +14 -12
- package/src/components/Form/AccessRights/ShareInput/useShareInput.tsx +14 -11
- package/src/components/Form/AccessRights/Stats/Stats.tsx +3 -3
- package/src/components/Form/AccessRights/atoms.ts +5 -1
- package/src/components/Form/AccessRights/common/RoleSelectField.tsx +4 -5
- package/src/components/Form/AccessRights/storiesData.ts +3 -4
- package/src/components/Form/AccessRights/useAccessRightsChange.ts +2 -4
- package/src/components/Form/AccessRights/useAccessRightsInitValues.ts +2 -3
- package/src/components/Form/AccessRights/utils.ts +1 -1
- package/src/components/Form/Dashboard/DashboardDuplicationForm.tsx +7 -9
- package/src/components/Form/Dashboard/DashboardForm.tsx +7 -9
- package/src/components/Form/Dashboard/GlobalRefreshFieldOption.tsx +7 -9
- package/src/components/Form/Dashboard/index.ts +1 -1
- package/src/components/Form/FormActions.tsx +4 -6
- package/src/components/Form/index.ts +6 -4
- package/src/components/Header/PageHeader/PageHeader.stories.tsx +2 -3
- package/src/components/Header/PageHeader/PageHeader.styles.ts +11 -11
- package/src/components/Header/PageHeader/PageHeader.tsx +1 -1
- package/src/components/Header/PageHeader/PageHeaderActions.tsx +1 -1
- package/src/components/Header/PageHeader/PageHeaderMain.tsx +1 -1
- package/src/components/Header/PageHeader/PageHeaderMenu.tsx +1 -1
- package/src/components/Header/PageHeader/PageHeaderMessage.tsx +2 -2
- package/src/components/Header/PageHeader/PageHeaderTitle.tsx +2 -3
- package/src/components/Inputs/Switch/Switch.stories.tsx +1 -1
- package/src/components/Inputs/Switch/Switch.tsx +1 -1
- package/src/components/ItemComposition/Item.tsx +3 -4
- package/src/components/ItemComposition/ItemComposition.cypress.spec.tsx +1 -2
- package/src/components/ItemComposition/ItemComposition.stories.tsx +4 -4
- package/src/components/ItemComposition/ItemComposition.styles.ts +7 -7
- package/src/components/ItemComposition/ItemComposition.tsx +5 -7
- package/src/components/Layout/AreaIndicator.tsx +2 -2
- package/src/components/Layout/PageLayout/PageLayout.stories.tsx +1 -2
- package/src/components/Layout/PageLayout/PageLayout.styles.ts +5 -5
- package/src/components/Layout/PageLayout/PageLayout.tsx +1 -1
- package/src/components/Layout/PageLayout/PageLayoutActions.tsx +1 -1
- package/src/components/Layout/PageLayout/PageLayoutBody.tsx +3 -2
- package/src/components/Layout/PageLayout/PageLayoutHeader.tsx +1 -1
- package/src/components/Layout/PageLayout/PageQuickAccess.tsx +6 -6
- package/src/components/Layout/PageLayout.cypress.spec.tsx +1 -3
- package/src/components/List/Item/Avatar.tsx +2 -2
- package/src/components/List/Item/AvatarSkeleton.tsx +2 -2
- package/src/components/List/Item/ListItem.stories.tsx +1 -1
- package/src/components/List/Item/ListItem.tsx +8 -3
- package/src/components/List/Item/Text.tsx +2 -2
- package/src/components/List/Item/TextSkeleton.tsx +2 -2
- package/src/components/List/List.stories.tsx +3 -3
- package/src/components/List/List.tsx +3 -3
- package/src/components/Menu/Button/MenuButton.stories.tsx +1 -1
- package/src/components/Menu/Button/MenuButton.tsx +7 -7
- package/src/components/Menu/Menu.stories.tsx +2 -3
- package/src/components/Menu/Menu.tsx +1 -1
- package/src/components/Menu/MenuDivider.tsx +2 -2
- package/src/components/Menu/MenuItem.tsx +3 -3
- package/src/components/Menu/MenuItems.tsx +5 -5
- package/src/components/Menu/useMenu.tsx +2 -3
- package/src/components/Modal/ConfirmationModal/ConfirmationModal.cypress.spec.tsx +6 -3
- package/src/components/Modal/ConfirmationModal/ConfirmationModal.stories.tsx +2 -3
- package/src/components/Modal/ConfirmationModal/ConfirmationModal.tsx +3 -4
- package/src/components/Modal/Modal.stories.tsx +2 -2
- package/src/components/Modal/Modal.styles.ts +2 -2
- package/src/components/Modal/Modal.tsx +10 -11
- package/src/components/Modal/ModalActions.tsx +4 -4
- package/src/components/Modal/ModalBody.tsx +1 -1
- package/src/components/Modal/ModalHeader.tsx +5 -2
- package/src/components/Tabs/Tabs.cypress.spec.tsx +1 -2
- package/src/components/Tabs/Tabs.stories.tsx +2 -3
- package/src/components/Tabs/Tabs.tsx +7 -7
- package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.stories.tsx +2 -3
- package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.styles.tsx +2 -2
- package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.tsx +3 -3
- package/src/components/Tooltip/ConfirmationTooltip/TooltipContent.tsx +1 -2
- package/src/components/Tooltip/ConfirmationTooltip/models.ts +2 -2
- package/src/components/Tooltip/TextOverflowTooltip/TextOverflowTooltip.stories.tsx +4 -4
- package/src/components/Tooltip/TextOverflowTooltip/TextOverflowTooltip.tsx +6 -7
- package/src/components/Tooltip/Tooltip.stories.tsx +2 -2
- package/src/components/Tooltip/Tooltip.tsx +5 -5
- package/src/components/Tooltip/index.ts +1 -1
- package/src/components/Zoom/Minimap.tsx +10 -10
- package/src/components/Zoom/Zoom.stories.tsx +6 -6
- package/src/components/Zoom/Zoom.styles.tsx +2 -2
- package/src/components/Zoom/Zoom.tsx +4 -5
- package/src/components/Zoom/ZoomContent.tsx +17 -19
- package/src/components/Zoom/localPoint.ts +1 -2
- package/src/components/Zoom/models.ts +1 -1
- package/src/components/Zoom/useMinimap.ts +13 -15
- package/src/components/Zoom/useZoom.ts +3 -4
- package/src/components/Zoom/utils.ts +1 -1
- package/src/components/index.ts +11 -11
- package/src/index.ts +115 -142
- package/src/queryParameters/index.ts +1 -1
- package/src/queryParameters/url/index.ts +1 -1
- package/src/styles/tokens/themes/_ui-dark.tokens.json +331 -331
- package/src/styles/tokens/themes/_ui-light.tokens.json +331 -331
- package/src/utils/index.ts +18 -18
- package/src/utils/resourcesStatusURL.ts +3 -4
- package/src/utils/useDebounce.ts +11 -8
- package/src/utils/useDeepCallback.ts +2 -1
- package/src/utils/useDeepMemo.ts +1 -1
- package/src/utils/useFullscreen/Fullscreen.cypress.spec.tsx +3 -3
- package/src/utils/useFullscreen/useFullscreen.ts +3 -3
- package/src/utils/useFullscreen/useFullscreenListener.ts +31 -30
- package/src/utils/useInfiniteScrollListing.ts +9 -10
- package/src/utils/useIntersectionObserver.ts +1 -1
- package/src/utils/useKeyObserver.tsx +14 -11
- package/src/utils/useLicenseExpirationWarning.test.tsx +122 -124
- package/src/utils/useLicenseExpirationWarning.ts +3 -5
- package/src/utils/useLoadImage.tsx +2 -3
- package/src/utils/useLocale/index.ts +1 -0
- package/src/utils/useLocale/useLocale.cypress.spec.tsx +4 -2
- package/src/utils/useLocaleDateTimeFormat/index.test.tsx +71 -71
- package/src/utils/useLocaleDateTimeFormat/index.ts +2 -2
- package/src/utils/useLocaleDateTimeFormat/localeFallback.test.tsx +42 -42
- package/src/utils/useLocaleTimezoneDate/LocaleTimezoneDate.cypress.spec.tsx +2 -1
- package/src/utils/useLocaleTimezoneDate/useLocaleTimezoneDate.ts +3 -4
- package/src/utils/useMemoComponent.ts +2 -3
- package/src/utils/usePluralizedTranslation.test.ts +2 -2
- package/src/utils/usePluralizedTranslation.ts +2 -3
- package/src/utils/useRefreshInterval.ts +2 -2
- package/src/utils/useThemeMode.ts +2 -2
- package/src/utils/useViewportIntersection.ts +8 -2
- package/src/InputField/Select/Autocomplete/Connected/Multi/index.test.tsx +0 -64
package/package.json
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
|
-
import { ComponentMeta, ComponentStory } from '@storybook/react';
|
|
2
|
-
|
|
3
1
|
import CopyIcon from '@mui/icons-material/ContentCopy';
|
|
4
2
|
import DeleteIcon from '@mui/icons-material/Delete';
|
|
5
3
|
import EditIcon from '@mui/icons-material/Edit';
|
|
6
4
|
|
|
7
|
-
import {
|
|
5
|
+
import type { ComponentMeta, ComponentStory } from '@storybook/react';
|
|
8
6
|
|
|
9
7
|
import ActionsList from '.';
|
|
8
|
+
import type { ActionVariants } from './models';
|
|
10
9
|
|
|
11
10
|
const actions = [
|
|
12
11
|
{
|
|
@@ -1,20 +1,19 @@
|
|
|
1
|
-
import { equals } from 'ramda';
|
|
2
|
-
import { useTranslation } from 'react-i18next';
|
|
3
|
-
|
|
4
1
|
import {
|
|
5
2
|
Divider,
|
|
6
3
|
ListItemIcon,
|
|
7
4
|
ListItemText,
|
|
8
5
|
MenuItem,
|
|
9
6
|
MenuList,
|
|
10
|
-
SvgIconTypeMap
|
|
7
|
+
type SvgIconTypeMap
|
|
11
8
|
} from '@mui/material';
|
|
12
|
-
import { OverridableComponent } from '@mui/material/OverridableComponent';
|
|
9
|
+
import type { OverridableComponent } from '@mui/material/OverridableComponent';
|
|
13
10
|
|
|
14
|
-
import {
|
|
11
|
+
import { equals } from 'ramda';
|
|
12
|
+
import { useTranslation } from 'react-i18next';
|
|
15
13
|
|
|
14
|
+
import { sanitizedHTML } from '..';
|
|
16
15
|
import { useStyles } from './ActionsList.styles';
|
|
17
|
-
import { ActionVariants } from './models';
|
|
16
|
+
import type { ActionVariants } from './models';
|
|
18
17
|
|
|
19
18
|
interface ActionsType {
|
|
20
19
|
Icon?: OverridableComponent<SvgIconTypeMap<object, 'svg'>> & {
|
|
@@ -49,7 +48,7 @@ const ActionsList = ({
|
|
|
49
48
|
<MenuList className={cx(classes.list, className)}>
|
|
50
49
|
{actions?.map((action, idx) => {
|
|
51
50
|
if (equals(action, ActionsListActionDivider.divider)) {
|
|
52
|
-
// biome-ignore lint/suspicious/noArrayIndexKey:
|
|
51
|
+
// biome-ignore lint/suspicious/noArrayIndexKey: need it
|
|
53
52
|
return <Divider key={`divider_${idx}`} />;
|
|
54
53
|
}
|
|
55
54
|
|
|
@@ -59,8 +58,8 @@ const ActionsList = ({
|
|
|
59
58
|
return (
|
|
60
59
|
<MenuItem
|
|
61
60
|
aria-label={label}
|
|
62
|
-
data-testid={label}
|
|
63
61
|
className={classes.item}
|
|
62
|
+
data-testid={label}
|
|
64
63
|
data-variant={variant}
|
|
65
64
|
id={label}
|
|
66
65
|
key={label}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { ComponentMeta, ComponentStory } from '@storybook/react';
|
|
2
|
-
import { makeStyles } from 'tss-react/mui';
|
|
3
|
-
|
|
4
1
|
import AccessibilityIcon from '@mui/icons-material/Accessibility';
|
|
5
|
-
import { Theme } from '@mui/material';
|
|
2
|
+
import type { Theme } from '@mui/material';
|
|
3
|
+
|
|
4
|
+
import type { ComponentMeta, ComponentStory } from '@storybook/react';
|
|
5
|
+
import { makeStyles } from 'tss-react/mui';
|
|
6
6
|
|
|
7
7
|
import { IconButton } from '.';
|
|
8
8
|
|
|
@@ -41,8 +41,8 @@ const CustomIconButton = (): JSX.Element => {
|
|
|
41
41
|
return (
|
|
42
42
|
<IconButton
|
|
43
43
|
className={classes.root}
|
|
44
|
-
title="custom Button"
|
|
45
44
|
onClick={(): void => undefined}
|
|
45
|
+
title="custom Button"
|
|
46
46
|
>
|
|
47
47
|
<AccessibilityIcon />
|
|
48
48
|
</IconButton>
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { makeStyles } from 'tss-react/mui';
|
|
2
|
-
|
|
3
1
|
import {
|
|
4
|
-
IconButtonProps,
|
|
2
|
+
type IconButtonProps,
|
|
5
3
|
IconButton as MuiIconButton,
|
|
6
4
|
Tooltip
|
|
7
5
|
} from '@mui/material';
|
|
8
6
|
|
|
7
|
+
import { makeStyles } from 'tss-react/mui';
|
|
8
|
+
|
|
9
9
|
import { getNormalizedId } from '../../utils';
|
|
10
10
|
|
|
11
11
|
const useStyles = makeStyles()((theme) => ({
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { makeStyles } from 'tss-react/mui';
|
|
1
|
+
import type { Theme } from '@mui/material';
|
|
3
2
|
|
|
4
|
-
import {
|
|
3
|
+
import type { ComponentStory } from '@storybook/react';
|
|
4
|
+
import { makeStyles } from 'tss-react/mui';
|
|
5
5
|
|
|
6
6
|
import ButtonSave from '.';
|
|
7
7
|
import '../../ThemeProvider/tailwindcss.css';
|
|
@@ -56,11 +56,11 @@ export const largeWithText = (): JSX.Element => (
|
|
|
56
56
|
);
|
|
57
57
|
|
|
58
58
|
export const loadingWithTextAndMediumSize = (): JSX.Element => (
|
|
59
|
-
<ButtonSave
|
|
59
|
+
<ButtonSave labelLoading="Loading" loading size="medium" />
|
|
60
60
|
);
|
|
61
61
|
|
|
62
62
|
export const succeededWithText = (): JSX.Element => (
|
|
63
|
-
<ButtonSave
|
|
63
|
+
<ButtonSave labelSucceeded="Succeeded" succeeded />
|
|
64
64
|
);
|
|
65
65
|
|
|
66
66
|
export const normalWithTextAndSmallSize = (): JSX.Element => (
|
|
@@ -68,15 +68,15 @@ export const normalWithTextAndSmallSize = (): JSX.Element => (
|
|
|
68
68
|
);
|
|
69
69
|
|
|
70
70
|
export const loadingWithTextAndSmallSize = (): JSX.Element => (
|
|
71
|
-
<ButtonSave
|
|
71
|
+
<ButtonSave labelLoading="Loading" loading size="small" />
|
|
72
72
|
);
|
|
73
73
|
|
|
74
74
|
export const loadingWithTextAndLargeSize = (): JSX.Element => (
|
|
75
|
-
<ButtonSave
|
|
75
|
+
<ButtonSave labelLoading="Loading" loading size="large" />
|
|
76
76
|
);
|
|
77
77
|
|
|
78
78
|
export const succeededWithTextAndSmallSize = (): JSX.Element => (
|
|
79
|
-
<ButtonSave
|
|
79
|
+
<ButtonSave labelSucceeded="Succeeded" size="small" succeeded />
|
|
80
80
|
);
|
|
81
81
|
|
|
82
82
|
const CustomButton = (): JSX.Element => {
|
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { type Theme, Tooltip } from '@mui/material';
|
|
2
2
|
|
|
3
|
-
import {
|
|
3
|
+
import { makeStyles } from 'tss-react/mui';
|
|
4
4
|
|
|
5
|
+
import { Button, type ButtonProps } from '../../components';
|
|
5
6
|
import { getNormalizedId } from '../../utils';
|
|
6
|
-
|
|
7
|
-
import { Button, ButtonProps } from '../../components';
|
|
8
7
|
import { useSave } from './useSave';
|
|
9
8
|
|
|
10
9
|
const useStyles = makeStyles()((theme: Theme) => ({
|
|
@@ -45,8 +44,8 @@ const SaveButton = ({
|
|
|
45
44
|
labelSave,
|
|
46
45
|
labelSucceeded,
|
|
47
46
|
loading,
|
|
48
|
-
|
|
49
|
-
|
|
47
|
+
startIcon,
|
|
48
|
+
succeeded
|
|
50
49
|
});
|
|
51
50
|
|
|
52
51
|
return (
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import CheckIcon from '@mui/icons-material/Check';
|
|
2
2
|
import SaveIcon from '@mui/icons-material/Save';
|
|
3
|
+
|
|
3
4
|
import {
|
|
4
|
-
T,
|
|
5
5
|
always,
|
|
6
6
|
any,
|
|
7
7
|
cond,
|
|
@@ -10,11 +10,13 @@ import {
|
|
|
10
10
|
not,
|
|
11
11
|
or,
|
|
12
12
|
pipe,
|
|
13
|
-
propEq
|
|
13
|
+
propEq,
|
|
14
|
+
T
|
|
14
15
|
} from 'ramda';
|
|
15
16
|
import { useMemo } from 'react';
|
|
16
17
|
import { useTranslation } from 'react-i18next';
|
|
17
|
-
|
|
18
|
+
|
|
19
|
+
import type { Props } from '.';
|
|
18
20
|
|
|
19
21
|
interface StartIconConfigProps {
|
|
20
22
|
hasLabel: boolean;
|
|
@@ -53,10 +55,10 @@ export const useSave = ({
|
|
|
53
55
|
const hasLabel = hasValue([labelLoading, labelSave, labelSucceeded]);
|
|
54
56
|
|
|
55
57
|
const startIconConfig = {
|
|
58
|
+
enabled: startIcon,
|
|
56
59
|
hasLabel,
|
|
57
60
|
loading,
|
|
58
|
-
succeeded
|
|
59
|
-
enabled: startIcon
|
|
61
|
+
succeeded
|
|
60
62
|
} as StartIconConfigProps;
|
|
61
63
|
|
|
62
64
|
const content = useMemo(() => {
|
|
@@ -69,7 +71,7 @@ export const useSave = ({
|
|
|
69
71
|
}
|
|
70
72
|
|
|
71
73
|
return labelSave ? t(labelSave) : <SaveIcon />;
|
|
72
|
-
}, [labelLoading, labelSucceeded, labelSave, loading, succeeded]);
|
|
74
|
+
}, [labelLoading, labelSucceeded, labelSave, loading, succeeded, t]);
|
|
73
75
|
|
|
74
76
|
const startIconToDisplay = useMemo(() => {
|
|
75
77
|
return cond<Array<StartIconConfigProps>, JSX.Element | null>([
|
|
@@ -83,7 +85,7 @@ export const useSave = ({
|
|
|
83
85
|
|
|
84
86
|
return {
|
|
85
87
|
content,
|
|
86
|
-
|
|
87
|
-
|
|
88
|
+
hasLabel,
|
|
89
|
+
startIconToDisplay
|
|
88
90
|
};
|
|
89
91
|
};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { makeStyles } from 'tss-react/mui';
|
|
3
|
-
|
|
4
|
-
import { SvgIconComponent } from '@mui/icons-material';
|
|
1
|
+
import type { SvgIconComponent } from '@mui/icons-material';
|
|
5
2
|
import { Box, FormControlLabel, Checkbox as MuiCheckbox } from '@mui/material';
|
|
6
|
-
import Typography, { TypographyProps } from '@mui/material/Typography';
|
|
3
|
+
import Typography, { type TypographyProps } from '@mui/material/Typography';
|
|
4
|
+
|
|
5
|
+
import { always, cond, equals, T } from 'ramda';
|
|
6
|
+
import { makeStyles } from 'tss-react/mui';
|
|
7
7
|
|
|
8
8
|
export type LabelPlacement = 'bottom' | 'top' | 'end' | 'start' | undefined;
|
|
9
9
|
|
|
@@ -89,9 +89,9 @@ const Checkbox = ({
|
|
|
89
89
|
color="primary"
|
|
90
90
|
disabled={disabled}
|
|
91
91
|
id={id}
|
|
92
|
+
onChange={onChange}
|
|
92
93
|
size="small"
|
|
93
94
|
sx={{ padding: 0 }}
|
|
94
|
-
onChange={onChange}
|
|
95
95
|
/>
|
|
96
96
|
}
|
|
97
97
|
data-testid={dataTestId || ''}
|
|
@@ -1,12 +1,11 @@
|
|
|
1
|
+
import FormGroup, { type FormGroupProps } from '@mui/material/FormGroup';
|
|
2
|
+
import type { TypographyProps } from '@mui/material/Typography';
|
|
3
|
+
|
|
1
4
|
import { equals, includes } from 'ramda';
|
|
5
|
+
import { useTranslation } from 'react-i18next';
|
|
2
6
|
import { makeStyles } from 'tss-react/mui';
|
|
3
7
|
|
|
4
|
-
import
|
|
5
|
-
import { TypographyProps } from '@mui/material/Typography';
|
|
6
|
-
|
|
7
|
-
import Checkbox, { LabelPlacement } from '../Checkbox';
|
|
8
|
-
|
|
9
|
-
import { useTranslation } from 'react-i18next';
|
|
8
|
+
import Checkbox, { type LabelPlacement } from '../Checkbox';
|
|
10
9
|
|
|
11
10
|
interface Props {
|
|
12
11
|
className?: string;
|
|
@@ -64,12 +63,12 @@ const CheckboxGroup = ({
|
|
|
64
63
|
checked={includes(value, values)}
|
|
65
64
|
className={cx(classes.checkbox, className)}
|
|
66
65
|
disabled={disabled}
|
|
66
|
+
id={value}
|
|
67
67
|
key={value}
|
|
68
68
|
label={t(value)}
|
|
69
69
|
labelPlacement={labelPlacement}
|
|
70
70
|
labelProps={labelProps}
|
|
71
71
|
onChange={onChange}
|
|
72
|
-
id={value}
|
|
73
72
|
/>
|
|
74
73
|
);
|
|
75
74
|
})}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ComponentMeta, ComponentStory } from '@storybook/react';
|
|
2
|
-
|
|
3
1
|
import MailIcon from '@mui/icons-material/MailOutline';
|
|
4
2
|
|
|
3
|
+
import type { ComponentMeta, ComponentStory } from '@storybook/react';
|
|
4
|
+
|
|
5
5
|
import Checkbox from './Checkbox';
|
|
6
6
|
|
|
7
7
|
export default {
|
|
@@ -24,8 +24,8 @@ Playground.args = {
|
|
|
24
24
|
export const WithIcon = Template.bind({});
|
|
25
25
|
|
|
26
26
|
WithIcon.args = {
|
|
27
|
-
Icon: MailIcon,
|
|
28
27
|
checked: true,
|
|
28
|
+
Icon: MailIcon,
|
|
29
29
|
label: 'Mail',
|
|
30
30
|
labelPlacement: 'end'
|
|
31
31
|
};
|
package/src/Checkbox/index.tsx
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
import { ComponentMeta, ComponentStory } from '@storybook/react';
|
|
2
|
-
|
|
3
1
|
import { Paper } from '@mui/material';
|
|
4
2
|
|
|
5
3
|
import { ThemeMode } from '@centreon/ui-context';
|
|
6
4
|
|
|
7
|
-
import
|
|
5
|
+
import type { ComponentMeta, ComponentStory } from '@storybook/react';
|
|
8
6
|
|
|
7
|
+
import StoryBookThemeProvider from '../StoryBookThemeProvider';
|
|
9
8
|
import { ColorStory } from '.';
|
|
10
9
|
|
|
11
10
|
export default {
|
package/src/Colors/index.tsx
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { includes, toPairs } from 'ramda';
|
|
2
|
-
import { makeStyles } from 'tss-react/mui';
|
|
3
|
-
|
|
4
1
|
import { Box, Divider, Grid, Stack, Typography, useTheme } from '@mui/material';
|
|
5
2
|
|
|
6
|
-
import { ThemeMode } from '@centreon/ui-context';
|
|
3
|
+
import type { ThemeMode } from '@centreon/ui-context';
|
|
4
|
+
|
|
5
|
+
import { includes, toPairs } from 'ramda';
|
|
6
|
+
import { makeStyles } from 'tss-react/mui';
|
|
7
7
|
|
|
8
8
|
const useStyles = makeStyles()((theme) => ({
|
|
9
9
|
divider: {
|
|
@@ -51,7 +51,7 @@ const ContainerDescription = ({
|
|
|
51
51
|
return (
|
|
52
52
|
<Box sx={{ width: '100%' }}>
|
|
53
53
|
<Typography variant="h4">{containerTitle}</Typography>
|
|
54
|
-
<Grid
|
|
54
|
+
<Grid columnSpacing={{ md: 3, sm: 2, xs: 1 }} container rowSpacing={5}>
|
|
55
55
|
{toPairs(palette[keyTheme]).map(
|
|
56
56
|
([key, value]) =>
|
|
57
57
|
!includes(key, keysToRemove) && (
|
|
@@ -92,8 +92,8 @@ const GroupedColorStatus = (): JSX.Element => {
|
|
|
92
92
|
/>
|
|
93
93
|
<Divider
|
|
94
94
|
className={classes.divider}
|
|
95
|
-
variant="middle"
|
|
96
95
|
key={`${status}-divider`}
|
|
96
|
+
variant="middle"
|
|
97
97
|
/>
|
|
98
98
|
</>
|
|
99
99
|
))}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { makeStyles } from 'tss-react/mui';
|
|
1
|
+
import { type Theme, Typography } from '@mui/material';
|
|
3
2
|
|
|
4
|
-
import {
|
|
3
|
+
import type { ComponentMeta, ComponentStory } from '@storybook/react';
|
|
4
|
+
import { makeStyles } from 'tss-react/mui';
|
|
5
5
|
|
|
6
6
|
import ContentWithCircularLoading from '.';
|
|
7
7
|
|
|
@@ -51,7 +51,7 @@ export const loaded = (): JSX.Element => (
|
|
|
51
51
|
);
|
|
52
52
|
|
|
53
53
|
export const loadingNotCentered = (): JSX.Element => (
|
|
54
|
-
<ContentWithCircularLoading
|
|
54
|
+
<ContentWithCircularLoading alignCenter={false} loading>
|
|
55
55
|
<Content />
|
|
56
56
|
</ContentWithCircularLoading>
|
|
57
57
|
);
|
|
@@ -67,8 +67,8 @@ const CustomLoading = (): JSX.Element => {
|
|
|
67
67
|
|
|
68
68
|
return (
|
|
69
69
|
<ContentWithCircularLoading
|
|
70
|
-
loading
|
|
71
70
|
className={classes.root}
|
|
71
|
+
loading
|
|
72
72
|
loadingContainerClassname={classes.container}
|
|
73
73
|
loadingIndicatorSize={50}
|
|
74
74
|
>
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CircularProgress } from '@mui/material';
|
|
2
2
|
|
|
3
|
+
import type { ReactElement } from 'react';
|
|
3
4
|
import { makeStyles } from 'tss-react/mui';
|
|
4
5
|
|
|
5
|
-
import { CircularProgress } from '@mui/material';
|
|
6
|
-
|
|
7
6
|
const useStyles = makeStyles()(() => ({
|
|
8
7
|
alignCenter: {
|
|
9
8
|
alignItems: 'center',
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { makeStyles } from 'tss-react/mui';
|
|
2
|
-
|
|
3
1
|
import { alpha } from '@mui/material';
|
|
4
2
|
|
|
3
|
+
import { makeStyles } from 'tss-react/mui';
|
|
4
|
+
|
|
5
5
|
export const useDashboardLayoutStyles = makeStyles<boolean>()(
|
|
6
6
|
(theme, isStatic: boolean) => ({
|
|
7
7
|
container: {
|
|
@@ -24,8 +24,8 @@ export const useDashboardLayoutStyles = makeStyles<boolean>()(
|
|
|
24
24
|
},
|
|
25
25
|
'& .react-resizable-handle': {
|
|
26
26
|
display: isStatic ? 'none' : 'flex',
|
|
27
|
-
position: 'absolute',
|
|
28
27
|
opacity: 0,
|
|
28
|
+
position: 'absolute',
|
|
29
29
|
transition: theme.transitions.create('opacity')
|
|
30
30
|
},
|
|
31
31
|
'& .react-resizable-handle-e': {
|
|
@@ -37,34 +37,16 @@ export const useDashboardLayoutStyles = makeStyles<boolean>()(
|
|
|
37
37
|
height: 'calc(100% / 3)',
|
|
38
38
|
width: '100%'
|
|
39
39
|
},
|
|
40
|
+
alignItems: 'center',
|
|
40
41
|
cursor: 'ew-resize',
|
|
41
42
|
height: `calc(100% - ${theme.spacing(3)})`,
|
|
42
43
|
marginTop: 0,
|
|
43
44
|
right: 0,
|
|
44
45
|
top: 0,
|
|
45
|
-
width: theme.spacing(0.75)
|
|
46
|
-
alignItems: 'center'
|
|
47
|
-
},
|
|
48
|
-
'& .react-resizable-handle-w': {
|
|
49
|
-
'& .handle-content-w': {
|
|
50
|
-
backgroundColor: theme.palette.action.focus,
|
|
51
|
-
backgroundImage: 'none',
|
|
52
|
-
borderRadius: theme.shape.borderRadius,
|
|
53
|
-
display: isStatic ? 'none' : 'block',
|
|
54
|
-
height: 'calc(100% / 3)',
|
|
55
|
-
width: '100%'
|
|
56
|
-
},
|
|
57
|
-
cursor: 'ew-resize',
|
|
58
|
-
height: `calc(100% - ${theme.spacing(3)})`,
|
|
59
|
-
marginTop: 0,
|
|
60
|
-
left: 0,
|
|
61
|
-
top: 0,
|
|
62
|
-
width: theme.spacing(0.75),
|
|
63
|
-
alignItems: 'center'
|
|
46
|
+
width: theme.spacing(0.75)
|
|
64
47
|
},
|
|
65
48
|
|
|
66
49
|
'& .react-resizable-handle-s': {
|
|
67
|
-
justifyContent: 'center',
|
|
68
50
|
'& .handle-content-s': {
|
|
69
51
|
backgroundColor: theme.palette.action.focus,
|
|
70
52
|
backgroundImage: 'none',
|
|
@@ -75,6 +57,7 @@ export const useDashboardLayoutStyles = makeStyles<boolean>()(
|
|
|
75
57
|
bottom: 4,
|
|
76
58
|
cursor: 'ns-resize',
|
|
77
59
|
height: theme.spacing(0.75),
|
|
60
|
+
justifyContent: 'center',
|
|
78
61
|
left: 0,
|
|
79
62
|
marginLeft: 0,
|
|
80
63
|
width: `calc(100% - ${theme.spacing(1)})`
|
|
@@ -85,15 +68,15 @@ export const useDashboardLayoutStyles = makeStyles<boolean>()(
|
|
|
85
68
|
backgroundImage: 'none',
|
|
86
69
|
borderRadius: theme.shape.borderRadius,
|
|
87
70
|
display: isStatic ? 'none' : 'block',
|
|
88
|
-
|
|
89
|
-
|
|
71
|
+
height: '100%',
|
|
72
|
+
width: '100%'
|
|
90
73
|
},
|
|
91
74
|
bottom: 4,
|
|
92
75
|
cursor: 'nwse-resize',
|
|
93
76
|
height: theme.spacing(1.5),
|
|
77
|
+
opacity: 0.7,
|
|
94
78
|
right: 0,
|
|
95
|
-
width: theme.spacing(1.5)
|
|
96
|
-
opacity: 0.7
|
|
79
|
+
width: theme.spacing(1.5)
|
|
97
80
|
},
|
|
98
81
|
'& .react-resizable-handle-sw': {
|
|
99
82
|
'& .handle-content-sw': {
|
|
@@ -101,24 +84,41 @@ export const useDashboardLayoutStyles = makeStyles<boolean>()(
|
|
|
101
84
|
backgroundImage: 'none',
|
|
102
85
|
borderRadius: theme.shape.borderRadius,
|
|
103
86
|
display: isStatic ? 'none' : 'block',
|
|
104
|
-
|
|
105
|
-
|
|
87
|
+
height: '100%',
|
|
88
|
+
width: '100%'
|
|
106
89
|
},
|
|
107
90
|
bottom: 4,
|
|
108
91
|
cursor: 'nesw-resize',
|
|
109
92
|
height: theme.spacing(1.5),
|
|
110
93
|
left: 0,
|
|
111
|
-
|
|
112
|
-
|
|
94
|
+
opacity: 0.7,
|
|
95
|
+
width: theme.spacing(1.5)
|
|
113
96
|
},
|
|
114
|
-
'& .react-resizable-handle
|
|
115
|
-
|
|
97
|
+
'& .react-resizable-handle-w': {
|
|
98
|
+
'& .handle-content-w': {
|
|
99
|
+
backgroundColor: theme.palette.action.focus,
|
|
100
|
+
backgroundImage: 'none',
|
|
101
|
+
borderRadius: theme.shape.borderRadius,
|
|
102
|
+
display: isStatic ? 'none' : 'block',
|
|
103
|
+
height: 'calc(100% / 3)',
|
|
104
|
+
width: '100%'
|
|
105
|
+
},
|
|
106
|
+
alignItems: 'center',
|
|
107
|
+
cursor: 'ew-resize',
|
|
108
|
+
height: `calc(100% - ${theme.spacing(3)})`,
|
|
109
|
+
left: 0,
|
|
110
|
+
marginTop: 0,
|
|
111
|
+
top: 0,
|
|
112
|
+
width: theme.spacing(0.75)
|
|
116
113
|
},
|
|
117
114
|
'& .react-resizable-handle::after': {
|
|
118
115
|
content: 'none'
|
|
119
116
|
},
|
|
120
|
-
|
|
121
|
-
|
|
117
|
+
'& .react-resizable-handle:hover': {
|
|
118
|
+
opacity: 1
|
|
119
|
+
},
|
|
120
|
+
height: '100%',
|
|
121
|
+
position: 'relative'
|
|
122
122
|
}
|
|
123
123
|
})
|
|
124
124
|
);
|
|
@@ -135,10 +135,6 @@ export const useDashboardItemStyles = makeStyles<{ hasHeader: boolean }>()(
|
|
|
135
135
|
height: '100%',
|
|
136
136
|
width: '100%'
|
|
137
137
|
},
|
|
138
|
-
widgetSubContainer: {
|
|
139
|
-
height: '100%',
|
|
140
|
-
width: '100%'
|
|
141
|
-
},
|
|
142
138
|
widgetContent: {
|
|
143
139
|
height: hasHeader
|
|
144
140
|
? `calc(100% - ${theme.spacing(3.5)} - ${theme.spacing(0.5)})`
|
|
@@ -166,6 +162,10 @@ export const useDashboardItemStyles = makeStyles<{ hasHeader: boolean }>()(
|
|
|
166
162
|
overflowX: 'auto',
|
|
167
163
|
padding: theme.spacing(0.5, 1.5, 1.5),
|
|
168
164
|
position: 'relative'
|
|
165
|
+
},
|
|
166
|
+
widgetSubContainer: {
|
|
167
|
+
height: '100%',
|
|
168
|
+
width: '100%'
|
|
169
169
|
}
|
|
170
170
|
})
|
|
171
171
|
);
|
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
import { ComponentMeta } from '@storybook/react';
|
|
2
|
-
import { Layout } from 'react-grid-layout';
|
|
3
|
-
|
|
4
1
|
import { Typography } from '@mui/material';
|
|
5
2
|
|
|
6
|
-
import
|
|
3
|
+
import type { ComponentMeta } from '@storybook/react';
|
|
4
|
+
import type { Layout } from 'react-grid-layout';
|
|
7
5
|
|
|
6
|
+
import FluidTypography from '../Typography/FluidTypography';
|
|
8
7
|
import { DashboardLayout } from '.';
|
|
9
8
|
|
|
10
9
|
interface CustomLayout extends Layout {
|
package/src/Dashboard/Grid.tsx
CHANGED
|
@@ -1,12 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { useTheme } from '@mui/material';
|
|
2
2
|
|
|
3
3
|
import { scaleLinear } from '@visx/scale';
|
|
4
4
|
import { Grid as VisxGrid } from '@visx/visx';
|
|
5
|
-
|
|
6
|
-
import { useTheme } from '@mui/material';
|
|
5
|
+
import { type ReactElement, useMemo } from 'react';
|
|
7
6
|
|
|
8
7
|
import { useMemoComponent } from '../utils';
|
|
9
|
-
|
|
10
8
|
import { maxColumns, rowHeight } from './utils';
|
|
11
9
|
|
|
12
10
|
interface Props {
|
|
@@ -35,7 +33,7 @@ const Grid = ({ width, height, columns }: Props): ReactElement => {
|
|
|
35
33
|
domain: [0, numberOfRows],
|
|
36
34
|
range: [0, height]
|
|
37
35
|
}),
|
|
38
|
-
[height]
|
|
36
|
+
[height, numberOfRows]
|
|
39
37
|
);
|
|
40
38
|
|
|
41
39
|
const tick = maxColumns / columns;
|
|
@@ -53,13 +51,13 @@ const Grid = ({ width, height, columns }: Props): ReactElement => {
|
|
|
53
51
|
<svg style={{ height, position: 'absolute', width }}>
|
|
54
52
|
<VisxGrid.Grid
|
|
55
53
|
columnTickValues={xTickValues}
|
|
56
|
-
rowTickValues={yTickValues}
|
|
57
54
|
height={height}
|
|
58
|
-
|
|
59
|
-
|
|
55
|
+
left={-8}
|
|
56
|
+
rowTickValues={yTickValues}
|
|
60
57
|
stroke={theme.palette.divider}
|
|
61
58
|
width={width}
|
|
62
|
-
|
|
59
|
+
xScale={xScale}
|
|
60
|
+
yScale={yScale}
|
|
63
61
|
/>
|
|
64
62
|
</svg>
|
|
65
63
|
),
|