@conboai/storybook.components 0.3.32 → 0.3.34
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/dist/assets/styles/colors.d.ts +2 -0
- package/dist/components/CustomDataGrid/CustomDataGrid.d.ts +1 -0
- package/dist/components/TimelineChart/TimelineChart.d.ts +1 -0
- package/dist/components/TimelineChart/constants.d.ts +1 -0
- package/dist/components/TimelineChart/styles.d.ts +9 -0
- package/dist/storybook.components.mjs +15139 -15141
- package/package.json +1 -1
|
@@ -10,6 +10,8 @@ export declare const BORDER_COLOR = "gray";
|
|
|
10
10
|
export declare const GRID_LINE_COLOR = "#eeeff1";
|
|
11
11
|
export declare const HIGHLIGHT_COLOR = "#a0a6cf";
|
|
12
12
|
export declare const TICK_COLOR = "#666666";
|
|
13
|
+
export declare const SELECTED_ROW = "#f5f5f7";
|
|
14
|
+
export declare const TIMELINE = "#808080";
|
|
13
15
|
export declare const PASSIVE_BTN_PRIMARY = "#5360AE";
|
|
14
16
|
export declare const HOVER_BTN_PRIMARY = "#3F4C9A";
|
|
15
17
|
export declare const ACTIVE_BTN_PRIMARY = "#303D8B";
|
|
@@ -15,6 +15,7 @@ export interface CustomDataGridProps {
|
|
|
15
15
|
onPaginationModelChange?: (model: GridPaginationModel, details: GridCallbackDetails<any>) => void;
|
|
16
16
|
onCellClick?: (params: any, event: any) => void;
|
|
17
17
|
onRowsScrollEnd?: () => void;
|
|
18
|
+
total?: number;
|
|
18
19
|
}
|
|
19
20
|
declare const CustomDataGrid: FC<CustomDataGridProps>;
|
|
20
21
|
export default CustomDataGrid;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { SxProps } from '@mui/material';
|
|
2
|
+
|
|
3
|
+
export declare const loaderBoxSx: SxProps;
|
|
4
|
+
export declare const noDataBoxSx: (chartHeight: string | number) => SxProps;
|
|
5
|
+
export declare const timelineBoxSx: SxProps;
|
|
6
|
+
export declare const scrollableBoxSx: (chartHeight: string | number) => SxProps;
|
|
7
|
+
export declare const chartBoxSx: SxProps;
|
|
8
|
+
export declare const footerBoxSx: SxProps;
|
|
9
|
+
export declare const rowsCounterSx: (variant: string) => SxProps;
|