@manamerge/mana-atomic-ui 1.0.193 → 1.0.195

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: {
@@ -65,7 +65,7 @@ const button = {
65
65
  borderRadius: "15px",
66
66
  lineHeight: "18px",
67
67
  fontFamily: "ManamergeGilmer",
68
- fontWeight: 500,
68
+ fontWeight: 700,
69
69
  letterSpacing: "0.5px", // Ensures text has spacing for readability
70
70
  padding: "0 30px",
71
71
  fontSize: "14px",
@@ -119,7 +119,7 @@ const button = {
119
119
  borderRadius: "15px",
120
120
  lineHeight: "18px",
121
121
  fontFamily: "ManamergeGilmer",
122
- fontWeight: 500,
122
+ fontWeight: 700,
123
123
  letterSpacing: "0.5px", // Ensures text has spacing for readability
124
124
  padding: "0 30px",
125
125
  fontSize: "14px",
@@ -22,12 +22,7 @@ const accordion = {
22
22
  size: "12px",
23
23
  color: colors.one.b,
24
24
  fill: colors.one.b,
25
- stroke: colors.one.b,
26
- hover: {
27
- color: colors.one.b,
28
- fill: colors.one.b,
29
- stroke: colors.one.b
30
- }
25
+ stroke: colors.one.b
31
26
  },
32
27
  atomHeading: {
33
28
  variant: "primary",
@@ -1,23 +1,10 @@
1
1
  const cardTeaser = {
2
2
  "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%)`,
3
+ gradientBackground: `radial-gradient(farthest-corner at 840px 520px, #80C3BA 10%, #000000 90%)`,
16
4
  borderRadius: "25px",
17
5
  maxWidth: "850px",
18
6
  text: {
19
- variant: "primary-medium",
20
- color: "#ccc",
7
+ variant: "primary-light",
21
8
  margin: " 8px 0"
22
9
  },
23
10
  icon: {
@@ -53,19 +40,22 @@ const cardTeaser = {
53
40
  }
54
41
  },
55
42
  separator: {
56
- padding: "10px 0 0 0",
57
- border: "1px solid #ccc"
43
+ padding: "18px 0 10px 0",
44
+ border: "0.5px solid #cccccc5e"
58
45
  },
59
46
 
60
47
  headingTitle: {
61
- variant: "primary-h2",
62
- color: "#ccc"
48
+ variant: "primary",
49
+ asTag: "h2"
63
50
  },
64
51
 
65
52
  headingCompanyDate: {
66
- variant: "primary-h5",
67
- color: "#ccc",
53
+ variant: "secondary",
54
+ asTag: "h3",
68
55
  textTransform: "uppercase"
56
+ },
57
+ gradient: {
58
+ variant: "primary"
69
59
  }
70
60
  }
71
61
  };
@@ -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").FastOmit<import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("../../Atoms/Icon/Icon").IconTypes, import("../../Atoms/Icon/Icon").IconTypes>, {
44
+ moleculeVariant: string;
45
+ }>, never>> & 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
  };
@@ -1266,11 +1267,6 @@ export declare const DavidWebTheme: {
1266
1267
  color: string;
1267
1268
  fill: string;
1268
1269
  stroke: string;
1269
- hover: {
1270
- color: string;
1271
- fill: string;
1272
- stroke: string;
1273
- };
1274
1270
  };
1275
1271
  atomHeading: {
1276
1272
  variant: string;
@@ -1213,13 +1213,11 @@ 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: {
@@ -1259,13 +1257,16 @@ export declare const ManamergeTheme: {
1259
1257
  };
1260
1258
  headingTitle: {
1261
1259
  variant: string;
1262
- color: string;
1260
+ asTag: string;
1263
1261
  };
1264
1262
  headingCompanyDate: {
1265
1263
  variant: string;
1266
- color: string;
1264
+ asTag: string;
1267
1265
  textTransform: string;
1268
1266
  };
1267
+ gradient: {
1268
+ variant: string;
1269
+ };
1269
1270
  };
1270
1271
  };
1271
1272
  breakerTape: {
@@ -1388,11 +1389,6 @@ export declare const ManamergeTheme: {
1388
1389
  color: string;
1389
1390
  fill: string;
1390
1391
  stroke: string;
1391
- hover: {
1392
- color: string;
1393
- fill: string;
1394
- stroke: string;
1395
- };
1396
1392
  };
1397
1393
  atomHeading: {
1398
1394
  variant: string;
@@ -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
  };
@@ -21,11 +21,6 @@ declare const accordion: {
21
21
  color: string;
22
22
  fill: string;
23
23
  stroke: string;
24
- hover: {
25
- color: string;
26
- fill: string;
27
- stroke: string;
28
- };
29
24
  };
30
25
  atomHeading: {
31
26
  variant: string;
@@ -1,12 +1,10 @@
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: {
@@ -46,13 +44,16 @@ declare const cardTeaser: {
46
44
  };
47
45
  headingTitle: {
48
46
  variant: string;
49
- color: string;
47
+ asTag: string;
50
48
  };
51
49
  headingCompanyDate: {
52
50
  variant: string;
53
- color: string;
51
+ asTag: string;
54
52
  textTransform: string;
55
53
  };
54
+ gradient: {
55
+ variant: string;
56
+ };
56
57
  };
57
58
  };
58
59
  export default cardTeaser;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@manamerge/mana-atomic-ui",
3
- "version": "1.0.193",
3
+ "version": "1.0.195",
4
4
  "description": "Mana Merge design system",
5
5
  "license": "ISC",
6
6
  "author": "MM",