@manamerge/mana-atomic-ui 1.0.207 → 1.0.208
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 +39 -21
- package/dist/index.js.map +1 -1
- package/dist/themes/themes/manamerge/molecules/cardSimpleRender.ts +5 -3
- package/dist/themes/themes/manamerge/molecules/footer.ts +5 -1
- 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 +6 -0
- package/dist/types/themes/manamerge/molecules/cardSimpleRender.d.ts +2 -0
- package/dist/types/themes/manamerge/molecules/footer.d.ts +4 -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",
|
|
@@ -37,10 +37,12 @@ const cardSimpleRender = {
|
|
|
37
37
|
},
|
|
38
38
|
atomHeading: {
|
|
39
39
|
variant: "primary",
|
|
40
|
-
asTag: "h3"
|
|
40
|
+
asTag: "h3",
|
|
41
|
+
margin: "20px 0 0 20px"
|
|
41
42
|
},
|
|
42
43
|
atomText: {
|
|
43
|
-
variant: "primary-light"
|
|
44
|
+
variant: "primary-light",
|
|
45
|
+
margin: "0 0 0 20px"
|
|
44
46
|
}
|
|
45
47
|
}
|
|
46
48
|
};
|
|
@@ -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";
|
|
@@ -1242,6 +1242,10 @@ export declare const ManamergeTheme: {
|
|
|
1242
1242
|
variant: string;
|
|
1243
1243
|
stroke: string;
|
|
1244
1244
|
fill: string;
|
|
1245
|
+
hover: {
|
|
1246
|
+
stroke: string;
|
|
1247
|
+
fill: string;
|
|
1248
|
+
};
|
|
1245
1249
|
};
|
|
1246
1250
|
};
|
|
1247
1251
|
};
|
|
@@ -1376,9 +1380,11 @@ export declare const ManamergeTheme: {
|
|
|
1376
1380
|
atomHeading: {
|
|
1377
1381
|
variant: string;
|
|
1378
1382
|
asTag: string;
|
|
1383
|
+
margin: string;
|
|
1379
1384
|
};
|
|
1380
1385
|
atomText: {
|
|
1381
1386
|
variant: string;
|
|
1387
|
+
margin: string;
|
|
1382
1388
|
};
|
|
1383
1389
|
};
|
|
1384
1390
|
};
|