@manamerge/mana-atomic-ui 1.0.195 → 1.0.197

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.
Files changed (28) hide show
  1. package/dist/index.d.ts +0 -1
  2. package/dist/index.js +56 -43
  3. package/dist/index.js.map +1 -1
  4. package/dist/themes/themes/davidWeb/molecules/cardTeaser.ts +2 -3
  5. package/dist/themes/themes/manamerge/atoms/button.ts +3 -3
  6. package/dist/themes/themes/manamerge/miscellaneous/colorpalette.ts +2 -1
  7. package/dist/themes/themes/manamerge/molecules/accordion.ts +6 -1
  8. package/dist/themes/themes/manamerge/molecules/cardTeaser.ts +21 -11
  9. package/dist/themes/themes/manamerge/molecules/footer.ts +2 -7
  10. package/dist/themes/themes/manamerge/molecules/header.ts +1 -1
  11. package/dist/themes/themes/manamerge/molecules/navigation.ts +1 -6
  12. package/dist/types/components/Molecules/CardTeaser/CardTeaser.css.d.ts +0 -6
  13. package/dist/types/components/Molecules/CardTeaser/CardTeaser.d.ts +0 -1
  14. package/dist/types/components/Molecules/Navigation/Navigation.css.d.ts +3 -0
  15. package/dist/types/themes/DavidWebTheme.d.ts +5 -1
  16. package/dist/types/themes/ManamergeTheme.d.ts +10 -5
  17. package/dist/types/themes/davidWeb/molecules/cardTeaser.d.ts +0 -1
  18. package/dist/types/themes/manamerge/miscellaneous/colorpalette.d.ts +1 -0
  19. package/dist/types/themes/manamerge/molecules/accordion.d.ts +5 -0
  20. package/dist/types/themes/manamerge/molecules/cardTeaser.d.ts +4 -5
  21. package/package.json +1 -1
  22. package/dist/themes/themes/davidWeb/fonts/Gilmer-Bold.woff2 +0 -0
  23. package/dist/themes/themes/davidWeb/fonts/Gilmer-Heavy.woff2 +0 -0
  24. package/dist/themes/themes/davidWeb/fonts/Gilmer-Light.woff2 +0 -0
  25. package/dist/themes/themes/davidWeb/fonts/Gilmer-Medium.woff2 +0 -0
  26. package/dist/themes/themes/davidWeb/fonts/Gilmer-Regular.woff2 +0 -0
  27. package/dist/themes/themes/davidWeb/fonts/Springwood/SpringwoodBrush-Italic.woff2 +0 -0
  28. package/dist/themes/themes/davidWeb/fonts/Springwood/SpringwoodBrush-Regular.woff2 +0 -0
@@ -58,13 +58,12 @@ const cardTeaser = {
58
58
  },
59
59
 
60
60
  headingTitle: {
61
- variant: "primary",
61
+ variant: "h2",
62
62
  color: "#ccc"
63
63
  },
64
64
 
65
65
  headingCompanyDate: {
66
- variant: "primary",
67
- asTag: "h1",
66
+ variant: "h5",
68
67
  color: "#ccc",
69
68
  textTransform: "uppercase"
70
69
  }
@@ -29,7 +29,7 @@ const button = {
29
29
  default: {
30
30
  text: colors.one.h,
31
31
  border: "none",
32
- background: colors.one.b,
32
+ background: colors.one.c,
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: 700,
68
+ fontWeight: 500,
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: 700,
122
+ fontWeight: 500,
123
123
  letterSpacing: "0.5px", // Ensures text has spacing for readability
124
124
  padding: "0 30px",
125
125
  fontSize: "14px",
@@ -19,7 +19,8 @@ const colors = {
19
19
  e: "#5E876B",
20
20
  f: "#4D694C",
21
21
  g: "#01160e",
22
- h: "#012518"
22
+ h: "#012518",
23
+ i: "#293630"
23
24
  },
24
25
  three: {
25
26
  a: "#FFD166",
@@ -22,7 +22,12 @@ const accordion = {
22
22
  size: "12px",
23
23
  color: colors.one.b,
24
24
  fill: colors.one.b,
25
- stroke: 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
+ }
26
31
  },
27
32
  atomHeading: {
28
33
  variant: "primary",
@@ -1,10 +1,23 @@
1
1
  const cardTeaser = {
2
2
  "CardTeaser-primary": {
3
- gradientBackground: `radial-gradient(farthest-corner at 840px 520px, #80C3BA 10%, #000000 90%)`,
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%)`,
4
16
  borderRadius: "25px",
5
17
  maxWidth: "850px",
6
18
  text: {
7
- variant: "primary-light",
19
+ variant: "primary-medium",
20
+ color: "#ccc",
8
21
  margin: " 8px 0"
9
22
  },
10
23
  icon: {
@@ -40,22 +53,19 @@ const cardTeaser = {
40
53
  }
41
54
  },
42
55
  separator: {
43
- padding: "18px 0 10px 0",
44
- border: "0.5px solid #cccccc5e"
56
+ padding: "10px 0 0 0",
57
+ border: "1px solid #ccc"
45
58
  },
46
59
 
47
60
  headingTitle: {
48
- variant: "primary",
49
- asTag: "h2"
61
+ variant: "primary-h2",
62
+ color: "#ccc"
50
63
  },
51
64
 
52
65
  headingCompanyDate: {
53
- variant: "secondary",
54
- asTag: "h3",
66
+ variant: "primary-h5",
67
+ color: "#ccc",
55
68
  textTransform: "uppercase"
56
- },
57
- gradient: {
58
- variant: "primary"
59
69
  }
60
70
  }
61
71
  };
@@ -2,12 +2,7 @@ import colors from "../miscellaneous/colorpalette";
2
2
 
3
3
  const footer = {
4
4
  "Footer-primary": {
5
- background: `linear-gradient(
6
- 180deg,
7
- rgba(59, 60, 63, 0.6) 0%,
8
- rgba(38, 38, 38, 0.8) 43.75%
9
- ),
10
- rgba(59, 60, 63, 0.8);`,
5
+ background: `linear-gradient( 180deg, ${colors.two.h}33 0%, ${colors.two.g}80 43.75%, ${colors.two.h}33 100%), ${colors.two.h}`,
11
6
  padding: "10px",
12
7
  gap: "20px",
13
8
  text: {
@@ -20,7 +15,7 @@ const footer = {
20
15
  variant: "primary-medium"
21
16
  },
22
17
  icons: {
23
- variant: "sm",
18
+ variant: "xs",
24
19
  stroke: colors.one.b,
25
20
  fill: colors.one.b
26
21
  }
@@ -58,7 +58,7 @@ const header = {
58
58
  },
59
59
  "Header-secondary": {
60
60
  height: "380px",
61
- backgroundColor: colors.transparent,
61
+ backgroundColor: "rgba(186, 250, 97, 0.49)",
62
62
  justifyContent: "flex-start",
63
63
  bannerColor: "lightgray",
64
64
  wrapperHeader: {
@@ -3,12 +3,7 @@ import colors from "../miscellaneous/colorpalette";
3
3
  const navigation = {
4
4
  "Navigation-primary": {
5
5
  gap: "50px",
6
- background: `linear-gradient(
7
- 180deg,
8
- rgba(59, 60, 63, 0.6) 0%,
9
- rgba(38, 38, 38, 0.8) 43.75%
10
- ),
11
- rgba(59, 60, 63, 0.8);`,
6
+ background: `linear-gradient( to right, ${colors.two.f} 10%, ${colors.two.i} 40%, ${colors.two.i} 90%)`,
12
7
  padding: "13px",
13
8
  atomIcon: {
14
9
  variant: "md",
@@ -37,9 +37,3 @@ 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,7 +8,6 @@ export interface CardTeaserTypes {
8
8
  onClick?: React.MouseEventHandler<HTMLElement>;
9
9
  checks?: string[];
10
10
  svg?: FunctionComponent<SVGProps<SVGSVGElement>>;
11
- backgroundSvg?: FunctionComponent<SVGProps<SVGSVGElement>>;
12
11
  cardImageSrc?: string;
13
12
  separator?: boolean;
14
13
  }
@@ -14,3 +14,6 @@ export declare const StyledLink: import("styled-components/dist/types").IStyledC
14
14
  currentPath: boolean;
15
15
  moleculeVariant: string;
16
16
  }>, never>> & string & Omit<import("react").FC<import("../../Atoms/Link/Link").LinkTypes>, keyof import("react").Component<any, {}, any>>;
17
+ export declare const Backdrop: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
18
+ isOpen: boolean;
19
+ }>> & string;
@@ -1151,7 +1151,6 @@ export declare const DavidWebTheme: {
1151
1151
  };
1152
1152
  headingCompanyDate: {
1153
1153
  variant: string;
1154
- asTag: string;
1155
1154
  color: string;
1156
1155
  textTransform: string;
1157
1156
  };
@@ -1267,6 +1266,11 @@ export declare const DavidWebTheme: {
1267
1266
  color: string;
1268
1267
  fill: string;
1269
1268
  stroke: string;
1269
+ hover: {
1270
+ color: string;
1271
+ fill: string;
1272
+ stroke: string;
1273
+ };
1270
1274
  };
1271
1275
  atomHeading: {
1272
1276
  variant: string;
@@ -1213,11 +1213,13 @@ export declare const ManamergeTheme: {
1213
1213
  };
1214
1214
  cardTeaser: {
1215
1215
  "CardTeaser-primary": {
1216
+ background: string;
1216
1217
  gradientBackground: string;
1217
1218
  borderRadius: string;
1218
1219
  maxWidth: string;
1219
1220
  text: {
1220
1221
  variant: string;
1222
+ color: string;
1221
1223
  margin: string;
1222
1224
  };
1223
1225
  icon: {
@@ -1257,16 +1259,13 @@ export declare const ManamergeTheme: {
1257
1259
  };
1258
1260
  headingTitle: {
1259
1261
  variant: string;
1260
- asTag: string;
1262
+ color: string;
1261
1263
  };
1262
1264
  headingCompanyDate: {
1263
1265
  variant: string;
1264
- asTag: string;
1266
+ color: string;
1265
1267
  textTransform: string;
1266
1268
  };
1267
- gradient: {
1268
- variant: string;
1269
- };
1270
1269
  };
1271
1270
  };
1272
1271
  breakerTape: {
@@ -1389,6 +1388,11 @@ export declare const ManamergeTheme: {
1389
1388
  color: string;
1390
1389
  fill: string;
1391
1390
  stroke: string;
1391
+ hover: {
1392
+ color: string;
1393
+ fill: string;
1394
+ stroke: string;
1395
+ };
1392
1396
  };
1393
1397
  atomHeading: {
1394
1398
  variant: string;
@@ -1470,6 +1474,7 @@ export declare const ManamergeTheme: {
1470
1474
  f: string;
1471
1475
  g: string;
1472
1476
  h: string;
1477
+ i: string;
1473
1478
  };
1474
1479
  three: {
1475
1480
  a: string;
@@ -50,7 +50,6 @@ declare const cardTeaser: {
50
50
  };
51
51
  headingCompanyDate: {
52
52
  variant: string;
53
- asTag: string;
54
53
  color: string;
55
54
  textTransform: string;
56
55
  };
@@ -20,6 +20,7 @@ declare const colors: {
20
20
  f: string;
21
21
  g: string;
22
22
  h: string;
23
+ i: string;
23
24
  };
24
25
  three: {
25
26
  a: string;
@@ -21,6 +21,11 @@ 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
+ };
24
29
  };
25
30
  atomHeading: {
26
31
  variant: string;
@@ -1,10 +1,12 @@
1
1
  declare const cardTeaser: {
2
2
  "CardTeaser-primary": {
3
+ background: string;
3
4
  gradientBackground: string;
4
5
  borderRadius: string;
5
6
  maxWidth: string;
6
7
  text: {
7
8
  variant: string;
9
+ color: string;
8
10
  margin: string;
9
11
  };
10
12
  icon: {
@@ -44,16 +46,13 @@ declare const cardTeaser: {
44
46
  };
45
47
  headingTitle: {
46
48
  variant: string;
47
- asTag: string;
49
+ color: string;
48
50
  };
49
51
  headingCompanyDate: {
50
52
  variant: string;
51
- asTag: string;
53
+ color: string;
52
54
  textTransform: string;
53
55
  };
54
- gradient: {
55
- variant: string;
56
- };
57
56
  };
58
57
  };
59
58
  export default cardTeaser;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@manamerge/mana-atomic-ui",
3
- "version": "1.0.195",
3
+ "version": "1.0.197",
4
4
  "description": "Mana Merge design system",
5
5
  "license": "ISC",
6
6
  "author": "MM",