@conboai/storybook.components 0.4.60 → 0.4.65
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.
|
@@ -25,6 +25,7 @@ export interface ImagePlayerProps {
|
|
|
25
25
|
showDirection?: boolean;
|
|
26
26
|
initialCurrentIndex?: number;
|
|
27
27
|
onCurrentIndexChange?: (newIndex: number) => void;
|
|
28
|
+
timezone?: string;
|
|
28
29
|
}
|
|
29
30
|
declare const ImagePlayer: React.FC<ImagePlayerProps>;
|
|
30
31
|
export default ImagePlayer;
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
interface Icons {
|
|
2
|
+
elementType: Icon;
|
|
3
|
+
unit: Icon;
|
|
2
4
|
add: Icon;
|
|
5
|
+
kit: Icon;
|
|
6
|
+
region: Icon;
|
|
3
7
|
arrowDown: Icon;
|
|
4
8
|
arrowUp: Icon;
|
|
5
9
|
arrowLeft: Icon;
|
|
@@ -20,7 +24,7 @@ interface Icons {
|
|
|
20
24
|
home: Icon;
|
|
21
25
|
play: Icon;
|
|
22
26
|
pause: Icon;
|
|
23
|
-
|
|
27
|
+
tag: Icon;
|
|
24
28
|
downloadVideo: Icon;
|
|
25
29
|
fullScreen: Icon;
|
|
26
30
|
burgerIcon: Icon;
|
|
@@ -32,7 +36,6 @@ interface Icons {
|
|
|
32
36
|
delete: Icon;
|
|
33
37
|
clusters: Icon;
|
|
34
38
|
sites: Icon;
|
|
35
|
-
regions: Icon;
|
|
36
39
|
cameras: Icon;
|
|
37
40
|
signOut: Icon;
|
|
38
41
|
btnArrowRight: Icon;
|
|
@@ -72,6 +75,8 @@ interface Icons {
|
|
|
72
75
|
oneArrowDown: Icon;
|
|
73
76
|
aim: Icon;
|
|
74
77
|
copy: Icon;
|
|
78
|
+
show: Icon;
|
|
79
|
+
hide: Icon;
|
|
75
80
|
}
|
|
76
81
|
interface Icon {
|
|
77
82
|
paths: string[];
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { TypeTabsContent, TypeTabsContainer } from './tabsContainer';
|
|
2
2
|
import { default as React } from 'react';
|
|
3
|
+
import { SxProps } from '@mui/material';
|
|
3
4
|
|
|
4
5
|
export interface IDetailsView {
|
|
5
6
|
handleMouseDown?: (e: React.MouseEvent) => void;
|
|
@@ -10,4 +11,5 @@ export interface IDetailsView {
|
|
|
10
11
|
children?: React.ReactNode;
|
|
11
12
|
tabsWidth?: string;
|
|
12
13
|
isCollapseActive?: boolean;
|
|
14
|
+
sx?: SxProps;
|
|
13
15
|
}
|