@zealicsolutions/web-ui 0.4.96 → 0.4.97
Sign up to get free protection for your applications and to get access to all the features.
@@ -8,11 +8,6 @@ export declare type ConfigurationItemInfo = {
|
|
8
8
|
isConfigurationMode?: boolean;
|
9
9
|
onClick?: (e: MouseEvent) => void;
|
10
10
|
};
|
11
|
-
export declare const getConfigurationWrapperStyle: ({ $selected, isConfigurationMode, theme: { colors }, }: {
|
12
|
-
$selected?: boolean | undefined;
|
13
|
-
isConfigurationMode?: boolean | undefined;
|
14
|
-
theme: DefaultTheme;
|
15
|
-
}) => import("styled-components").FlattenSimpleInterpolation;
|
16
11
|
export declare const ContainerWrapper: import("styled-components").StyledComponent<"div", DefaultTheme, Pick<ContainerProps, "type"> & {
|
17
12
|
containerProps?: Partial<{
|
18
13
|
position: import("containers/types/types").ContainerPositionType;
|
@@ -36,3 +31,8 @@ export declare const ContainerWrapper: import("styled-components").StyledCompone
|
|
36
31
|
}> | undefined;
|
37
32
|
metadata?: AnyObject | undefined;
|
38
33
|
}, never>;
|
34
|
+
export declare const getConfigurationWrapperStyle: ({ $selected, isConfigurationMode, theme: { colors }, }: {
|
35
|
+
$selected?: boolean | undefined;
|
36
|
+
isConfigurationMode?: boolean | undefined;
|
37
|
+
theme: DefaultTheme;
|
38
|
+
}) => import("styled-components").FlattenSimpleInterpolation;
|