@conboai/storybook.components 0.3.41 → 0.3.43
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 +1 -0
- package/dist/build/index.d.ts +1 -0
- package/dist/components/CustomDataGrid/CustomDataGrid.d.ts +1 -0
- package/dist/components/ImagePlayer/ImagePlayer.d.ts +14 -0
- package/dist/components/ImagePlayer/index.d.ts +1 -0
- package/dist/components/ImagePlayer/styles.d.ts +6 -0
- package/dist/components/TimelineChart/TimelineChart.d.ts +1 -0
- package/dist/components/VerticalTable/styles.d.ts +849 -849
- package/dist/storybook.components.mjs +19039 -18886
- package/package.json +1 -1
|
@@ -20,6 +20,7 @@ export declare const PASSIVE_BTN_SECONDARY = "#FBFBFD";
|
|
|
20
20
|
export declare const HOVER_BTN_SECONDARY = "#CCD0E7";
|
|
21
21
|
export declare const ACTIVE_BTN_SECONDARY = "#5360AE";
|
|
22
22
|
export declare const DISABLED_BTN_SECONDARY = "#E6E7EB";
|
|
23
|
+
export declare const DISABLED_SLIDER = "#bdbdbd";
|
|
23
24
|
export declare const DISABLED_TEXT = "#989BAF";
|
|
24
25
|
export declare const DISABLED_TEXT_ICON = "#8A8B8D";
|
|
25
26
|
export declare const DISABLED_BORDER = "#8d8ea1";
|
package/dist/build/index.d.ts
CHANGED
|
@@ -35,6 +35,7 @@ export { Geo } from '../components/Geo';
|
|
|
35
35
|
export { Shapes } from '../components/Shapes';
|
|
36
36
|
export { CustomDataGrid } from '../components/CustomDataGrid';
|
|
37
37
|
export { SearchBox } from '../components/SearchBox';
|
|
38
|
+
export { ImagePlayer } from '../components/ImagePlayer';
|
|
38
39
|
export * from '../interfaces/filter';
|
|
39
40
|
export * from '../interfaces/tab';
|
|
40
41
|
export * from '../interfaces/detailsView';
|
|
@@ -16,6 +16,7 @@ export interface CustomDataGridProps {
|
|
|
16
16
|
onCellClick?: (params: any, event: any) => void;
|
|
17
17
|
onRowsScrollEnd?: () => void;
|
|
18
18
|
total?: number;
|
|
19
|
+
hideFooter?: boolean;
|
|
19
20
|
}
|
|
20
21
|
declare const CustomDataGrid: FC<CustomDataGridProps>;
|
|
21
22
|
export default CustomDataGrid;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
|
|
3
|
+
export interface Snapshot {
|
|
4
|
+
[key: string]: any;
|
|
5
|
+
}
|
|
6
|
+
export interface ImagePlayerProps {
|
|
7
|
+
snapshots: Snapshot[];
|
|
8
|
+
getImageUrl: (snapshot: Snapshot) => string;
|
|
9
|
+
formatCaptureTime: (snapshot: Snapshot) => string;
|
|
10
|
+
onChange?: (snapshot: Snapshot) => void;
|
|
11
|
+
disabled?: boolean;
|
|
12
|
+
}
|
|
13
|
+
declare const ImagePlayer: React.FC<ImagePlayerProps>;
|
|
14
|
+
export default ImagePlayer;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as ImagePlayer } from './ImagePlayer';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { SxProps } from '@mui/material';
|
|
2
|
+
|
|
3
|
+
export declare const boxWrapperSx: SxProps;
|
|
4
|
+
export declare const boxContentSx: SxProps;
|
|
5
|
+
export declare const getIconBtnSx: (disabled?: boolean) => SxProps;
|
|
6
|
+
export declare const getTimeSx: (disabled?: boolean) => SxProps;
|