@manamerge/mana-atomic-ui 1.0.197 → 1.0.198

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.
@@ -58,12 +58,13 @@ const cardTeaser = {
58
58
  },
59
59
 
60
60
  headingTitle: {
61
- variant: "h2",
61
+ variant: "primary",
62
62
  color: "#ccc"
63
63
  },
64
64
 
65
65
  headingCompanyDate: {
66
- variant: "h5",
66
+ variant: "primary",
67
+ asTag: "h1",
67
68
  color: "#ccc",
68
69
  textTransform: "uppercase"
69
70
  }
@@ -29,7 +29,7 @@ const button = {
29
29
  default: {
30
30
  text: colors.one.h,
31
31
  border: "none",
32
- background: colors.one.c,
32
+ background: colors.one.b,
33
33
  opacity: 1 // Ensures full opacity by default
34
34
  },
35
35
  hover: {
@@ -1,27 +1,22 @@
1
+ import colors from "../miscellaneous/colorpalette";
2
+
1
3
  const cardTeaser = {
2
4
  "CardTeaser-primary": {
3
- background: `repeating-linear-gradient(
4
- 0deg,
5
- transparent,
6
- transparent 0px,
7
- rgb(9, 0, 131) 2px
8
- ),
9
- repeating-linear-gradient(
10
- 90deg,
11
- transparent,
12
- transparent 0px,
13
- rgb(9, 0, 131) 2px
14
- )`,
15
- gradientBackground: `radial-gradient(circle, red 10%, pink 50%)`,
5
+ gradientBackground: `radial-gradient(farthest-corner at 840px 520px, #80C3BA 10%, #000000 90%)`,
16
6
  borderRadius: "25px",
17
7
  maxWidth: "850px",
18
8
  text: {
19
- variant: "primary-medium",
20
- color: "#ccc",
9
+ variant: "primary-light",
21
10
  margin: " 8px 0"
22
11
  },
23
12
  icon: {
24
- variant: "md"
13
+ variant: "xs",
14
+ fill: colors.one.b,
15
+ stroke: colors.one.b,
16
+ hover: {
17
+ fill: colors.one.b,
18
+ stroke: colors.one.b
19
+ }
25
20
  },
26
21
  button: {
27
22
  variant: "primary"
@@ -53,19 +48,22 @@ const cardTeaser = {
53
48
  }
54
49
  },
55
50
  separator: {
56
- padding: "10px 0 0 0",
57
- border: "1px solid #ccc"
51
+ padding: "18px 0 10px 0",
52
+ border: "0.5px solid #cccccc5e"
58
53
  },
59
54
 
60
55
  headingTitle: {
61
- variant: "primary-h2",
62
- color: "#ccc"
56
+ variant: "primary",
57
+ asTag: "h2"
63
58
  },
64
59
 
65
60
  headingCompanyDate: {
66
- variant: "primary-h5",
67
- color: "#ccc",
61
+ variant: "secondary",
62
+ asTag: "h3",
68
63
  textTransform: "uppercase"
64
+ },
65
+ gradient: {
66
+ variant: "primary"
69
67
  }
70
68
  }
71
69
  };
@@ -58,7 +58,7 @@ const header = {
58
58
  },
59
59
  "Header-secondary": {
60
60
  height: "380px",
61
- backgroundColor: "rgba(186, 250, 97, 0.49)",
61
+ backgroundColor: colors.transparent,
62
62
  justifyContent: "flex-start",
63
63
  bannerColor: "lightgray",
64
64
  wrapperHeader: {
@@ -37,3 +37,9 @@ export declare const ButtonCard: import("styled-components/dist/types").IStyledC
37
37
  export declare const CardBackgroundColor: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
38
38
  moleculeVariant: string;
39
39
  }>> & string;
40
+ export declare const GradientStyle: 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/Gradient/Gradient").GradientTypes, import("../../Atoms/Gradient/Gradient").GradientTypes>, {
41
+ moleculeVariant: string;
42
+ }>, never>> & string & Omit<import("react").FC<import("../../Atoms/Gradient/Gradient").GradientTypes>, keyof import("react").Component<any, {}, any>>;
43
+ export declare const BackgroundSvg: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("../../Atoms/Icon/Icon").IconTypes, {
44
+ moleculeVariant: string;
45
+ }>> & string & Omit<import("react").FC<import("../../Atoms/Icon/Icon").IconTypes>, keyof import("react").Component<any, {}, any>>;
@@ -8,6 +8,7 @@ export interface CardTeaserTypes {
8
8
  onClick?: React.MouseEventHandler<HTMLElement>;
9
9
  checks?: string[];
10
10
  svg?: FunctionComponent<SVGProps<SVGSVGElement>>;
11
+ backgroundSvg?: FunctionComponent<SVGProps<SVGSVGElement>>;
11
12
  cardImageSrc?: string;
12
13
  separator?: boolean;
13
14
  }
@@ -1151,6 +1151,7 @@ export declare const DavidWebTheme: {
1151
1151
  };
1152
1152
  headingCompanyDate: {
1153
1153
  variant: string;
1154
+ asTag: string;
1154
1155
  color: string;
1155
1156
  textTransform: string;
1156
1157
  };
@@ -1213,17 +1213,21 @@ export declare const ManamergeTheme: {
1213
1213
  };
1214
1214
  cardTeaser: {
1215
1215
  "CardTeaser-primary": {
1216
- background: string;
1217
1216
  gradientBackground: string;
1218
1217
  borderRadius: string;
1219
1218
  maxWidth: string;
1220
1219
  text: {
1221
1220
  variant: string;
1222
- color: string;
1223
1221
  margin: string;
1224
1222
  };
1225
1223
  icon: {
1226
1224
  variant: string;
1225
+ fill: string;
1226
+ stroke: string;
1227
+ hover: {
1228
+ fill: string;
1229
+ stroke: string;
1230
+ };
1227
1231
  };
1228
1232
  button: {
1229
1233
  variant: string;
@@ -1259,13 +1263,16 @@ export declare const ManamergeTheme: {
1259
1263
  };
1260
1264
  headingTitle: {
1261
1265
  variant: string;
1262
- color: string;
1266
+ asTag: string;
1263
1267
  };
1264
1268
  headingCompanyDate: {
1265
1269
  variant: string;
1266
- color: string;
1270
+ asTag: string;
1267
1271
  textTransform: string;
1268
1272
  };
1273
+ gradient: {
1274
+ variant: string;
1275
+ };
1269
1276
  };
1270
1277
  };
1271
1278
  breakerTape: {
@@ -50,6 +50,7 @@ declare const cardTeaser: {
50
50
  };
51
51
  headingCompanyDate: {
52
52
  variant: string;
53
+ asTag: string;
53
54
  color: string;
54
55
  textTransform: string;
55
56
  };
@@ -1,16 +1,20 @@
1
1
  declare const cardTeaser: {
2
2
  "CardTeaser-primary": {
3
- background: string;
4
3
  gradientBackground: string;
5
4
  borderRadius: string;
6
5
  maxWidth: string;
7
6
  text: {
8
7
  variant: string;
9
- color: string;
10
8
  margin: string;
11
9
  };
12
10
  icon: {
13
11
  variant: string;
12
+ fill: string;
13
+ stroke: string;
14
+ hover: {
15
+ fill: string;
16
+ stroke: string;
17
+ };
14
18
  };
15
19
  button: {
16
20
  variant: string;
@@ -46,13 +50,16 @@ declare const cardTeaser: {
46
50
  };
47
51
  headingTitle: {
48
52
  variant: string;
49
- color: string;
53
+ asTag: string;
50
54
  };
51
55
  headingCompanyDate: {
52
56
  variant: string;
53
- color: string;
57
+ asTag: string;
54
58
  textTransform: string;
55
59
  };
60
+ gradient: {
61
+ variant: string;
62
+ };
56
63
  };
57
64
  };
58
65
  export default cardTeaser;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@manamerge/mana-atomic-ui",
3
- "version": "1.0.197",
3
+ "version": "1.0.198",
4
4
  "description": "Mana Merge design system",
5
5
  "license": "ISC",
6
6
  "author": "MM",