@manamerge/mana-atomic-ui 1.0.196 → 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.
- package/dist/index.js +51 -20
- package/dist/index.js.map +1 -1
- package/dist/themes/themes/manamerge/atoms/button.ts +2 -2
- 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/footer.ts +2 -7
- package/dist/themes/themes/manamerge/molecules/navigation.ts +1 -6
- package/dist/types/components/Molecules/CardTeaser/CardTeaser.css.d.ts +2 -2
- package/dist/types/components/Molecules/Navigation/Navigation.css.d.ts +3 -0
- package/dist/types/themes/DavidWebTheme.d.ts +5 -0
- package/dist/types/themes/ManamergeTheme.d.ts +6 -0
- package/dist/types/themes/manamerge/miscellaneous/colorpalette.d.ts +1 -0
- package/dist/types/themes/manamerge/molecules/accordion.d.ts +5 -0
- 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
|
@@ -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",
|
|
@@ -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",
|
|
@@ -40,6 +40,6 @@ export declare const CardBackgroundColor: import("styled-components/dist/types")
|
|
|
40
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
41
|
moleculeVariant: string;
|
|
42
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
|
|
43
|
+
export declare const BackgroundSvg: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("../../Atoms/Icon/Icon").IconTypes, {
|
|
44
44
|
moleculeVariant: string;
|
|
45
|
-
}
|
|
45
|
+
}>> & string & Omit<import("react").FC<import("../../Atoms/Icon/Icon").IconTypes>, keyof import("react").Component<any, {}, any>>;
|
|
@@ -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;
|
|
@@ -1395,6 +1395,11 @@ export declare const ManamergeTheme: {
|
|
|
1395
1395
|
color: string;
|
|
1396
1396
|
fill: string;
|
|
1397
1397
|
stroke: string;
|
|
1398
|
+
hover: {
|
|
1399
|
+
color: string;
|
|
1400
|
+
fill: string;
|
|
1401
|
+
stroke: string;
|
|
1402
|
+
};
|
|
1398
1403
|
};
|
|
1399
1404
|
atomHeading: {
|
|
1400
1405
|
variant: string;
|
|
@@ -1476,6 +1481,7 @@ export declare const ManamergeTheme: {
|
|
|
1476
1481
|
f: string;
|
|
1477
1482
|
g: string;
|
|
1478
1483
|
h: string;
|
|
1484
|
+
i: string;
|
|
1479
1485
|
};
|
|
1480
1486
|
three: {
|
|
1481
1487
|
a: string;
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|