@conboai/storybook.components 0.2.62 → 0.2.64
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 +5 -0
- package/dist/build/index.d.ts +1 -0
- package/dist/components/TimelineChart/TimelineChart.d.ts +19 -0
- package/dist/components/TimelineChart/constants.d.ts +1 -0
- package/dist/components/TimelineChart/index.d.ts +1 -0
- package/dist/components/Toggle/styles.d.ts +2 -0
- package/dist/components/VerticalTable/styles.d.ts +1 -1
- package/dist/storybook.components.mjs +31064 -23814
- package/package.json +3 -1
|
@@ -5,6 +5,11 @@ export declare const DETAILS_VIEW_BG = "#ECEDEF";
|
|
|
5
5
|
export declare const DISABLED_CHECKBOX = "rgba(0, 0, 0, 0.26)";
|
|
6
6
|
export declare const HOVER_DARK_BLUE_ICON = "#354290";
|
|
7
7
|
export declare const HOVER_NAVIGATION_ITEM = "#E5E9F5";
|
|
8
|
+
export declare const LABEL_COLOR = "#333333";
|
|
9
|
+
export declare const BORDER_COLOR = "gray";
|
|
10
|
+
export declare const GRID_LINE_COLOR = "#eeeff1";
|
|
11
|
+
export declare const HIGHLIGHT_COLOR = "#a0a6cf";
|
|
12
|
+
export declare const TICK_COLOR = "#666666";
|
|
8
13
|
export declare const PASSIVE_BTN_PRIMARY = "#5360AE";
|
|
9
14
|
export declare const HOVER_BTN_PRIMARY = "#3F4C9A";
|
|
10
15
|
export declare const ACTIVE_BTN_PRIMARY = "#303D8B";
|
package/dist/build/index.d.ts
CHANGED
|
@@ -28,6 +28,7 @@ export { MetroMap } from '../components/MetroMap';
|
|
|
28
28
|
export { CustomInput } from '../components/CustomInput';
|
|
29
29
|
export { AlertPopup } from '../components/AlertPopup';
|
|
30
30
|
export { extractPrefix, extractZip, startsWithAny, parseSvg, getParsedSvgViewsFromZip } from '../components/MetroMap/MetroMapUtils';
|
|
31
|
+
export { TimelineChart } from '../components/TimelineChart';
|
|
31
32
|
export * from '../interfaces/filter';
|
|
32
33
|
export * from '../interfaces/tab';
|
|
33
34
|
export * from '../interfaces/detailsView';
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { default as Highcharts } from 'highcharts';
|
|
3
|
+
|
|
4
|
+
interface DataPoint {
|
|
5
|
+
conbo_key: string;
|
|
6
|
+
start_time: string;
|
|
7
|
+
end_time: string;
|
|
8
|
+
kit_id: number;
|
|
9
|
+
feed: number;
|
|
10
|
+
}
|
|
11
|
+
interface TimelineChartProps {
|
|
12
|
+
data: DataPoint[];
|
|
13
|
+
rowsPerPageOptions?: number[];
|
|
14
|
+
variant: "light" | "dark";
|
|
15
|
+
chartColors: string[];
|
|
16
|
+
chartOptions?: Highcharts.Options;
|
|
17
|
+
}
|
|
18
|
+
declare const TimelineChart: React.FC<TimelineChartProps>;
|
|
19
|
+
export default TimelineChart;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const colors: string[];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as TimelineChart } from './TimelineChart';
|
|
@@ -829,7 +829,7 @@ export declare const tableContainerSx: (sx?: SxProps) => {
|
|
|
829
829
|
strokeWidth?: import('@mui/system').SystemStyleObject<{}> | import('@mui/system/styleFunctionSx').ResponsiveStyleValue<import("csstype").Property.StrokeWidth<string | number> | readonly NonNullable<import("csstype").Property.StrokeWidth<string | number> | undefined>[] | undefined> | ((theme: {}) => import('@mui/system/styleFunctionSx').ResponsiveStyleValue<import('@mui/system').AllSystemCSSProperties["strokeWidth"]>);
|
|
830
830
|
textAnchor?: import('@mui/system').SystemStyleObject<{}> | import('@mui/system/styleFunctionSx').ResponsiveStyleValue<import("csstype").Property.TextAnchor | readonly NonNullable<import("csstype").Property.TextAnchor | undefined>[] | undefined> | ((theme: {}) => import('@mui/system/styleFunctionSx').ResponsiveStyleValue<import('@mui/system').AllSystemCSSProperties["textAnchor"]>);
|
|
831
831
|
vectorEffect?: import('@mui/system').SystemStyleObject<{}> | import('@mui/system/styleFunctionSx').ResponsiveStyleValue<import("csstype").Property.VectorEffect | readonly NonNullable<import("csstype").Property.VectorEffect | undefined>[] | undefined> | ((theme: {}) => import('@mui/system/styleFunctionSx').ResponsiveStyleValue<import('@mui/system').AllSystemCSSProperties["vectorEffect"]>);
|
|
832
|
-
border?: import('@mui/system').SystemStyleObject<{}> | import('@mui/system/styleFunctionSx').ResponsiveStyleValue<number | "medium" | (string & {}) | "inset" | "hidden" | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "black" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "
|
|
832
|
+
border?: import('@mui/system').SystemStyleObject<{}> | import('@mui/system/styleFunctionSx').ResponsiveStyleValue<number | "gray" | "medium" | (string & {}) | "inset" | "hidden" | "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset" | "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "black" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "magenta" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "orangered" | "orchid" | "palegoldenrod" | "palegreen" | "paleturquoise" | "palevioletred" | "papayawhip" | "peachpuff" | "peru" | "pink" | "plum" | "powderblue" | "purple" | "rebeccapurple" | "red" | "rosybrown" | "royalblue" | "saddlebrown" | "salmon" | "sandybrown" | "seagreen" | "seashell" | "sienna" | "silver" | "skyblue" | "slateblue" | "slategray" | "slategrey" | "snow" | "springgreen" | "steelblue" | "tan" | "teal" | "thistle" | "tomato" | "transparent" | "turquoise" | "violet" | "wheat" | "white" | "whitesmoke" | "yellow" | "yellowgreen" | "ActiveBorder" | "ActiveCaption" | "AppWorkspace" | "Background" | "ButtonFace" | "ButtonHighlight" | "ButtonShadow" | "ButtonText" | "CaptionText" | "GrayText" | "Highlight" | "HighlightText" | "InactiveBorder" | "InactiveCaption" | "InactiveCaptionText" | "InfoBackground" | "InfoText" | "Menu" | "MenuText" | "Scrollbar" | "ThreeDDarkShadow" | "ThreeDFace" | "ThreeDHighlight" | "ThreeDLightShadow" | "ThreeDShadow" | "Window" | "WindowFrame" | "WindowText" | "currentcolor" | "none" | "dashed" | "dotted" | "double" | "groove" | "outset" | "ridge" | "solid" | "thick" | "thin" | undefined> | ((theme: {}) => import('@mui/system/styleFunctionSx').ResponsiveStyleValue<import('@mui/system').AllSystemCSSProperties["border"]>);
|
|
833
833
|
fontWeight?: import('@mui/system').SystemStyleObject<{}> | import('@mui/system/styleFunctionSx').ResponsiveStyleValue<string | (string & {}) | (number & {}) | undefined> | ((theme: {}) => import('@mui/system/styleFunctionSx').ResponsiveStyleValue<import('@mui/system').AllSystemCSSProperties["fontWeight"]>);
|
|
834
834
|
zIndex?: import('@mui/system').SystemStyleObject<{}> | import('@mui/system/styleFunctionSx').ResponsiveStyleValue<string | (string & {}) | (number & {}) | undefined> | ((theme: {}) => import('@mui/system/styleFunctionSx').ResponsiveStyleValue<import('@mui/system').AllSystemCSSProperties["zIndex"]>);
|
|
835
835
|
bgcolor?: import('@mui/system').SystemStyleObject<{}> | import('@mui/system/styleFunctionSx').ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackgroundColor | undefined> | ((theme: {}) => import('@mui/system/styleFunctionSx').ResponsiveStyleValue<import('@mui/system').AllSystemCSSProperties["bgcolor"]>);
|