@conboai/storybook.components 0.2.44 → 0.2.47
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/build/index.d.ts +0 -1
- package/dist/components/CustomInput/CustomInput.d.ts +2 -1
- package/dist/components/CustomInput/styles.d.ts +1 -1
- package/dist/components/MainTable/styles.d.ts +14 -1
- package/dist/storybook.components.mjs +8661 -9715
- package/package.json +1 -1
- package/dist/components/VerticalNavigation/components/Link.d.ts +0 -4
- package/dist/components/VerticalNavigation/components/ListItemLink.d.ts +0 -12
- package/dist/components/VerticalNavigation/components/Router.d.ts +0 -5
- package/dist/components/VerticalNavigation/components/VerticalNavigation.d.ts +0 -16
- package/dist/components/VerticalNavigation/index.d.ts +0 -1
- package/dist/components/VerticalNavigation/styles.d.ts +0 -5
- package/dist/mocks/navigation.d.ts +0 -3
package/dist/build/index.d.ts
CHANGED
|
@@ -25,7 +25,6 @@ export { Toggle } from '../components/Toggle';
|
|
|
25
25
|
export { ImageBox } from '../components/ImageBox';
|
|
26
26
|
export { CustomSelect } from '../components/CustomSelect';
|
|
27
27
|
export { MetroMap } from '../components/MetroMap';
|
|
28
|
-
export { VerticalNavigation } from '../components/VerticalNavigation';
|
|
29
28
|
export { CustomInput } from '../components/CustomInput';
|
|
30
29
|
export { AlertPopup } from '../components/AlertPopup';
|
|
31
30
|
export * from '../interfaces/filter';
|
|
@@ -6,6 +6,7 @@ export interface ICustomInputProps {
|
|
|
6
6
|
label?: string;
|
|
7
7
|
onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
|
8
8
|
type?: string;
|
|
9
|
+
variant?: "light" | "dark";
|
|
9
10
|
}
|
|
10
|
-
declare const CustomInput: React.ForwardRefExoticComponent<
|
|
11
|
+
declare const CustomInput: React.ForwardRefExoticComponent<Omit<ICustomInputProps & import('@mui/material/TextField').StandardTextFieldProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
11
12
|
export default CustomInput;
|
|
@@ -4,6 +4,7 @@ export declare const mainTableSx: (sx?: SxProps) => {
|
|
|
4
4
|
boxShadow: string;
|
|
5
5
|
borderTop: string;
|
|
6
6
|
borderBottom: string;
|
|
7
|
+
backgroundColor: string;
|
|
7
8
|
".MuiTableRow-root.Mui-selected": {
|
|
8
9
|
backgroundColor: string;
|
|
9
10
|
};
|
|
@@ -11,6 +12,7 @@ export declare const mainTableSx: (sx?: SxProps) => {
|
|
|
11
12
|
tr: {
|
|
12
13
|
th: {
|
|
13
14
|
borderBottom: string;
|
|
15
|
+
backgroundColor: string;
|
|
14
16
|
};
|
|
15
17
|
};
|
|
16
18
|
};
|
|
@@ -18,6 +20,7 @@ export declare const mainTableSx: (sx?: SxProps) => {
|
|
|
18
20
|
boxShadow: string;
|
|
19
21
|
borderTop: string;
|
|
20
22
|
borderBottom: string;
|
|
23
|
+
backgroundColor: string;
|
|
21
24
|
".MuiTableRow-root.Mui-selected": {
|
|
22
25
|
backgroundColor: string;
|
|
23
26
|
};
|
|
@@ -25,6 +28,7 @@ export declare const mainTableSx: (sx?: SxProps) => {
|
|
|
25
28
|
tr: {
|
|
26
29
|
th: {
|
|
27
30
|
borderBottom: string;
|
|
31
|
+
backgroundColor: string;
|
|
28
32
|
};
|
|
29
33
|
};
|
|
30
34
|
};
|
|
@@ -32,6 +36,7 @@ export declare const mainTableSx: (sx?: SxProps) => {
|
|
|
32
36
|
boxShadow: string;
|
|
33
37
|
borderTop: string;
|
|
34
38
|
borderBottom: string;
|
|
39
|
+
backgroundColor: string;
|
|
35
40
|
".MuiTableRow-root.Mui-selected": {
|
|
36
41
|
backgroundColor: string;
|
|
37
42
|
};
|
|
@@ -39,6 +44,7 @@ export declare const mainTableSx: (sx?: SxProps) => {
|
|
|
39
44
|
tr: {
|
|
40
45
|
th: {
|
|
41
46
|
borderBottom: string;
|
|
47
|
+
backgroundColor: string;
|
|
42
48
|
};
|
|
43
49
|
};
|
|
44
50
|
};
|
|
@@ -66,7 +72,6 @@ export declare const mainTableSx: (sx?: SxProps) => {
|
|
|
66
72
|
backgroundAttachment?: import('@mui/system').SystemStyleObject<{}> | import('@mui/system/styleFunctionSx').ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackgroundAttachment | undefined> | ((theme: {}) => import('@mui/system/styleFunctionSx').ResponsiveStyleValue<import('@mui/system').AllSystemCSSProperties["backgroundAttachment"]>);
|
|
67
73
|
backgroundBlendMode?: import('@mui/system').SystemStyleObject<{}> | import('@mui/system/styleFunctionSx').ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackgroundBlendMode | undefined> | ((theme: {}) => import('@mui/system/styleFunctionSx').ResponsiveStyleValue<import('@mui/system').AllSystemCSSProperties["backgroundBlendMode"]>);
|
|
68
74
|
backgroundClip?: import('@mui/system').SystemStyleObject<{}> | import('@mui/system/styleFunctionSx').ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackgroundClip | undefined> | ((theme: {}) => import('@mui/system/styleFunctionSx').ResponsiveStyleValue<import('@mui/system').AllSystemCSSProperties["backgroundClip"]>);
|
|
69
|
-
backgroundColor?: 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["backgroundColor"]>);
|
|
70
75
|
backgroundImage?: import('@mui/system').SystemStyleObject<{}> | import('@mui/system/styleFunctionSx').ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackgroundImage | undefined> | ((theme: {}) => import('@mui/system/styleFunctionSx').ResponsiveStyleValue<import('@mui/system').AllSystemCSSProperties["backgroundImage"]>);
|
|
71
76
|
backgroundOrigin?: import('@mui/system').SystemStyleObject<{}> | import('@mui/system/styleFunctionSx').ResponsiveStyleValue<readonly string[] | import("csstype").Property.BackgroundOrigin | undefined> | ((theme: {}) => import('@mui/system/styleFunctionSx').ResponsiveStyleValue<import('@mui/system').AllSystemCSSProperties["backgroundOrigin"]>);
|
|
72
77
|
backgroundPositionX?: import('@mui/system').SystemStyleObject<{}> | import('@mui/system/styleFunctionSx').ResponsiveStyleValue<import("csstype").Property.BackgroundPositionX<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPositionX<string | number> | undefined>[] | undefined> | ((theme: {}) => import('@mui/system/styleFunctionSx').ResponsiveStyleValue<import('@mui/system').AllSystemCSSProperties["backgroundPositionX"]>);
|
|
@@ -889,6 +894,7 @@ export declare const mainTableSx: (sx?: SxProps) => {
|
|
|
889
894
|
boxShadow: string;
|
|
890
895
|
borderTop: string;
|
|
891
896
|
borderBottom: string;
|
|
897
|
+
backgroundColor: string;
|
|
892
898
|
".MuiTableRow-root.Mui-selected": {
|
|
893
899
|
backgroundColor: string;
|
|
894
900
|
};
|
|
@@ -896,6 +902,7 @@ export declare const mainTableSx: (sx?: SxProps) => {
|
|
|
896
902
|
tr: {
|
|
897
903
|
th: {
|
|
898
904
|
borderBottom: string;
|
|
905
|
+
backgroundColor: string;
|
|
899
906
|
};
|
|
900
907
|
};
|
|
901
908
|
};
|
|
@@ -1035,6 +1042,7 @@ export declare const mainTableSx: (sx?: SxProps) => {
|
|
|
1035
1042
|
boxShadow: string;
|
|
1036
1043
|
borderTop: string;
|
|
1037
1044
|
borderBottom: string;
|
|
1045
|
+
backgroundColor: string;
|
|
1038
1046
|
".MuiTableRow-root.Mui-selected": {
|
|
1039
1047
|
backgroundColor: string;
|
|
1040
1048
|
};
|
|
@@ -1042,6 +1050,7 @@ export declare const mainTableSx: (sx?: SxProps) => {
|
|
|
1042
1050
|
tr: {
|
|
1043
1051
|
th: {
|
|
1044
1052
|
borderBottom: string;
|
|
1053
|
+
backgroundColor: string;
|
|
1045
1054
|
};
|
|
1046
1055
|
};
|
|
1047
1056
|
};
|
|
@@ -1049,6 +1058,7 @@ export declare const mainTableSx: (sx?: SxProps) => {
|
|
|
1049
1058
|
boxShadow: string;
|
|
1050
1059
|
borderTop: string;
|
|
1051
1060
|
borderBottom: string;
|
|
1061
|
+
backgroundColor: string;
|
|
1052
1062
|
".MuiTableRow-root.Mui-selected": {
|
|
1053
1063
|
backgroundColor: string;
|
|
1054
1064
|
};
|
|
@@ -1056,6 +1066,7 @@ export declare const mainTableSx: (sx?: SxProps) => {
|
|
|
1056
1066
|
tr: {
|
|
1057
1067
|
th: {
|
|
1058
1068
|
borderBottom: string;
|
|
1069
|
+
backgroundColor: string;
|
|
1059
1070
|
};
|
|
1060
1071
|
};
|
|
1061
1072
|
};
|
|
@@ -1063,6 +1074,7 @@ export declare const mainTableSx: (sx?: SxProps) => {
|
|
|
1063
1074
|
boxShadow: string;
|
|
1064
1075
|
borderTop: string;
|
|
1065
1076
|
borderBottom: string;
|
|
1077
|
+
backgroundColor: string;
|
|
1066
1078
|
".MuiTableRow-root.Mui-selected": {
|
|
1067
1079
|
backgroundColor: string;
|
|
1068
1080
|
};
|
|
@@ -1070,6 +1082,7 @@ export declare const mainTableSx: (sx?: SxProps) => {
|
|
|
1070
1082
|
tr: {
|
|
1071
1083
|
th: {
|
|
1072
1084
|
borderBottom: string;
|
|
1085
|
+
backgroundColor: string;
|
|
1073
1086
|
};
|
|
1074
1087
|
};
|
|
1075
1088
|
};
|