@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.
- package/dist/index.d.ts +0 -1
- package/dist/index.js +56 -43
- package/dist/index.js.map +1 -1
- package/dist/themes/themes/davidWeb/molecules/cardTeaser.ts +2 -3
- package/dist/themes/themes/manamerge/atoms/button.ts +3 -3
- package/dist/themes/themes/manamerge/miscellaneous/colorpalette.ts +2 -1
- package/dist/themes/themes/manamerge/molecules/accordion.ts +6 -1
- package/dist/themes/themes/manamerge/molecules/cardTeaser.ts +21 -11
- package/dist/themes/themes/manamerge/molecules/footer.ts +2 -7
- package/dist/themes/themes/manamerge/molecules/header.ts +1 -1
- package/dist/themes/themes/manamerge/molecules/navigation.ts +1 -6
- package/dist/types/components/Molecules/CardTeaser/CardTeaser.css.d.ts +0 -6
- package/dist/types/components/Molecules/CardTeaser/CardTeaser.d.ts +0 -1
- package/dist/types/components/Molecules/Navigation/Navigation.css.d.ts +3 -0
- package/dist/types/themes/DavidWebTheme.d.ts +5 -1
- package/dist/types/themes/ManamergeTheme.d.ts +10 -5
- package/dist/types/themes/davidWeb/molecules/cardTeaser.d.ts +0 -1
- package/dist/types/themes/manamerge/miscellaneous/colorpalette.d.ts +1 -0
- package/dist/types/themes/manamerge/molecules/accordion.d.ts +5 -0
- package/dist/types/themes/manamerge/molecules/cardTeaser.d.ts +4 -5
- package/package.json +1 -1
- package/dist/themes/themes/davidWeb/fonts/Gilmer-Bold.woff2 +0 -0
- package/dist/themes/themes/davidWeb/fonts/Gilmer-Heavy.woff2 +0 -0
- package/dist/themes/themes/davidWeb/fonts/Gilmer-Light.woff2 +0 -0
- package/dist/themes/themes/davidWeb/fonts/Gilmer-Medium.woff2 +0 -0
- package/dist/themes/themes/davidWeb/fonts/Gilmer-Regular.woff2 +0 -0
- package/dist/themes/themes/davidWeb/fonts/Springwood/SpringwoodBrush-Italic.woff2 +0 -0
- 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: "
|
|
61
|
+
variant: "h2",
|
|
62
62
|
color: "#ccc"
|
|
63
63
|
},
|
|
64
64
|
|
|
65
65
|
headingCompanyDate: {
|
|
66
|
-
variant: "
|
|
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.
|
|
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:
|
|
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:
|
|
122
|
+
fontWeight: 500,
|
|
123
123
|
letterSpacing: "0.5px", // Ensures text has spacing for readability
|
|
124
124
|
padding: "0 30px",
|
|
125
125
|
fontSize: "14px",
|
|
@@ -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
|
-
|
|
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-
|
|
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: "
|
|
44
|
-
border: "
|
|
56
|
+
padding: "10px 0 0 0",
|
|
57
|
+
border: "1px solid #ccc"
|
|
45
58
|
},
|
|
46
59
|
|
|
47
60
|
headingTitle: {
|
|
48
|
-
variant: "primary",
|
|
49
|
-
|
|
61
|
+
variant: "primary-h2",
|
|
62
|
+
color: "#ccc"
|
|
50
63
|
},
|
|
51
64
|
|
|
52
65
|
headingCompanyDate: {
|
|
53
|
-
variant: "
|
|
54
|
-
|
|
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: "
|
|
18
|
+
variant: "xs",
|
|
24
19
|
stroke: colors.one.b,
|
|
25
20
|
fill: colors.one.b
|
|
26
21
|
}
|
|
@@ -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
|
-
|
|
1262
|
+
color: string;
|
|
1261
1263
|
};
|
|
1262
1264
|
headingCompanyDate: {
|
|
1263
1265
|
variant: string;
|
|
1264
|
-
|
|
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;
|
|
@@ -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
|
-
|
|
49
|
+
color: string;
|
|
48
50
|
};
|
|
49
51
|
headingCompanyDate: {
|
|
50
52
|
variant: string;
|
|
51
|
-
|
|
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
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|