@redsift/charts 7.4.2 → 7.5.0-alpha.0
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/CONTRIBUTING.md +4 -0
- package/index.d.ts +1 -3
- package/index.js +22 -672
- package/index.js.map +1 -1
- package/package.json +4 -3
package/CONTRIBUTING.md
CHANGED
|
@@ -38,6 +38,10 @@ The Design System is following a monorepo architecture, providing multiple packa
|
|
|
38
38
|
|
|
39
39
|
This package is the main package of Red Sift's Design System. It provides the majority of the components, including layout, formatting, navigation, form and interactive components.
|
|
40
40
|
|
|
41
|
+
- `@redsift/popovers`
|
|
42
|
+
|
|
43
|
+
This package provides popover components. Popover components are based on [floating-ui](https://floating-ui.com/) and [@floating-ui/react](https://floating-ui.com/docs/react).
|
|
44
|
+
|
|
41
45
|
- `@redsift/table`
|
|
42
46
|
|
|
43
47
|
This package provides datagrid components and features based on [MUI DataGrid](https://mui.com/x/react-data-grid/). Due to the use of advanced features, a [premium license](https://mui.com/x/introduction/licensing/#premium-plan) from MUI is required.
|
package/index.d.ts
CHANGED
|
@@ -154,7 +154,6 @@ declare const StyledHorizontalBarChartEmptyText: styled_components.StyledCompone
|
|
|
154
154
|
declare const StyledHorizontalBarChartBar: styled_components.StyledComponent<"g", any, Omit<HorizontalBarChartBarProps, "height" | "width" | "gap" | "data" | "color" | "chartId" | "index" | "isEmpty" | "showTooltip" | "tooltipPercent" | "tooltipLabelOnly"> & {
|
|
155
155
|
$clickable: boolean;
|
|
156
156
|
}, never>;
|
|
157
|
-
declare const StyledHorizontalBarChartTooltip: styled_components.StyledComponent<"div", any, {}, never>;
|
|
158
157
|
declare const StyledHorizontalBarChartAxisBottom: styled_components.StyledComponent<"g", any, {}, never>;
|
|
159
158
|
|
|
160
159
|
/**
|
|
@@ -292,6 +291,5 @@ declare const StyledPieChartArc: styled_components.StyledComponent<"g", any, Omi
|
|
|
292
291
|
$spaced: boolean;
|
|
293
292
|
$clickable: boolean;
|
|
294
293
|
}, never>;
|
|
295
|
-
declare const StyledPieChartTooltip: styled_components.StyledComponent<"div", any, {}, never>;
|
|
296
294
|
|
|
297
|
-
export { ChartDimensions, ColorTheme, Datum, HorizontalBarChart, HorizontalBarChartAxisBottomProps, HorizontalBarChartBarProps, HorizontalBarChartProps, HorizontalBarChartSize, HorizontalBarChartTheme, HorizontalBarChartTooltipVariant, PieArcDatum, PieChart, PieChartArcProps, PieChartLabelVariant, PieChartProps, PieChartSize, PieChartTheme, PieChartTooltipVariant, PieChartVariant, StyledHorizontalBarChart, StyledHorizontalBarChartAxisBottom, StyledHorizontalBarChartAxisBottomProps, StyledHorizontalBarChartBar, StyledHorizontalBarChartBarProps, StyledHorizontalBarChartCaption, StyledHorizontalBarChartEmptyText, StyledHorizontalBarChartProps, StyledHorizontalBarChartTitle,
|
|
295
|
+
export { ChartDimensions, ColorTheme, Datum, HorizontalBarChart, HorizontalBarChartAxisBottomProps, HorizontalBarChartBarProps, HorizontalBarChartProps, HorizontalBarChartSize, HorizontalBarChartTheme, HorizontalBarChartTooltipVariant, PieArcDatum, PieChart, PieChartArcProps, PieChartLabelVariant, PieChartProps, PieChartSize, PieChartTheme, PieChartTooltipVariant, PieChartVariant, StyledHorizontalBarChart, StyledHorizontalBarChartAxisBottom, StyledHorizontalBarChartAxisBottomProps, StyledHorizontalBarChartBar, StyledHorizontalBarChartBarProps, StyledHorizontalBarChartCaption, StyledHorizontalBarChartEmptyText, StyledHorizontalBarChartProps, StyledHorizontalBarChartTitle, StyledPieChart, StyledPieChartArc, StyledPieChartArcProps, StyledPieChartCaption, StyledPieChartCenterText, StyledPieChartEmptyText, StyledPieChartLabel, StyledPieChartProps, StyledPieChartTitle, SuccessDangerColorTheme, getColorScale, monochrome, scheme, successDangerScheme };
|