@manamerge/mana-atomic-ui 1.0.204 → 1.0.206
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/index.d.ts +1 -0
- package/dist/index.js +34 -8
- package/dist/index.js.map +1 -1
- package/dist/themes/themes/manamerge/molecules/cardSimpleRender.ts +5 -3
- package/dist/types/components/Molecules/CardSimpleRender/CardSimpleRender.css.d.ts +4 -1
- package/dist/types/components/Molecules/CardSimpleRender/CardSimpleRender.d.ts +1 -0
- package/dist/types/themes/ManamergeTheme.d.ts +2 -0
- package/dist/types/themes/manamerge/molecules/cardSimpleRender.d.ts +2 -0
- package/package.json +1 -1
|
@@ -9,7 +9,7 @@ const cardSimpleRender = {
|
|
|
9
9
|
gradientColor: colors.two.a,
|
|
10
10
|
outline: `2px solid ${colors.two.b}40`,
|
|
11
11
|
borderRadius: "20px",
|
|
12
|
-
padding: "
|
|
12
|
+
padding: "0px",
|
|
13
13
|
height: "100%",
|
|
14
14
|
maxWidth: "550px",
|
|
15
15
|
minWidth: "250px",
|
|
@@ -33,10 +33,12 @@ const cardSimpleRender = {
|
|
|
33
33
|
},
|
|
34
34
|
atomHeading: {
|
|
35
35
|
variant: "primary",
|
|
36
|
-
asTag: "h3"
|
|
36
|
+
asTag: "h3",
|
|
37
|
+
margin: "20px 0 0 20px"
|
|
37
38
|
},
|
|
38
39
|
atomText: {
|
|
39
|
-
variant: "primary-light"
|
|
40
|
+
variant: "primary-light",
|
|
41
|
+
margin: "0 0 0 20px"
|
|
40
42
|
}
|
|
41
43
|
}
|
|
42
44
|
};
|
|
@@ -4,7 +4,9 @@ export declare const Card: import("styled-components/dist/types").IStyledCompone
|
|
|
4
4
|
cardHover: boolean;
|
|
5
5
|
gradientPosition?: string | undefined;
|
|
6
6
|
}>> & string;
|
|
7
|
-
export declare const WrapperLine: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").
|
|
7
|
+
export declare const WrapperLine: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
|
|
8
|
+
moleculeVariant: string;
|
|
9
|
+
}>> & string;
|
|
8
10
|
export declare const AtomIcon: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("../../Atoms/Icon/Icon").IconTypes, import("../../Atoms/Icon/Icon").IconTypes>, {
|
|
9
11
|
moleculeVariant: string;
|
|
10
12
|
}>, never>> & string & Omit<import("react").FC<import("../../Atoms/Icon/Icon").IconTypes>, keyof import("react").Component<any, {}, any>>;
|
|
@@ -14,3 +16,4 @@ export declare const AtomHeading: import("styled-components/dist/types").IStyled
|
|
|
14
16
|
export declare const AtomText: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("../../Atoms/Text/Text").TextTypes, import("../../Atoms/Text/Text").TextTypes>, {
|
|
15
17
|
moleculeVariant: string;
|
|
16
18
|
}>, never>> & string & Omit<import("react").FC<import("../../Atoms/Text/Text").TextTypes>, keyof import("react").Component<any, {}, any>>;
|
|
19
|
+
export declare const BackgroundSvg: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("../../Atoms/Icon/Icon").IconTypes, never>> & string & Omit<import("react").FC<import("../../Atoms/Icon/Icon").IconTypes>, keyof import("react").Component<any, {}, any>>;
|
|
@@ -2,6 +2,7 @@ import React, { ReactNode, FunctionComponent, SVGProps } from "react";
|
|
|
2
2
|
export interface CardSimpleRenderTypes {
|
|
3
3
|
moleculeVariant?: string;
|
|
4
4
|
icon?: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
5
|
+
backgroundSvg?: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
5
6
|
title?: string;
|
|
6
7
|
description?: string;
|
|
7
8
|
gradientPosition?: "center" | "top" | "bottom" | "left" | "right" | "top left" | "top right" | "bottom left" | "bottom right";
|