@manamerge/mana-atomic-ui 1.0.171 → 1.0.172
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 +57 -27
- package/dist/index.js.map +1 -1
- package/dist/themes/themes/davidWeb/atoms/text.ts +1 -1
- package/dist/themes/themes/manamerge/atoms/icon.ts +19 -19
- package/dist/themes/themes/manamerge/atoms/text.ts +1 -1
- package/dist/themes/themes/manamerge/fonts/Gilmer-Bold.woff2 +0 -0
- package/dist/themes/themes/manamerge/fonts/Gilmer-Heavy.woff2 +0 -0
- package/dist/themes/themes/manamerge/fonts/Gilmer-Light.woff2 +0 -0
- package/dist/themes/themes/manamerge/fonts/Gilmer-Medium.woff2 +0 -0
- package/dist/themes/themes/manamerge/fonts/Gilmer-Regular.woff2 +0 -0
- package/dist/themes/themes/manamerge/molecules/footer.ts +1 -5
- package/dist/themes/themes/manamerge/molecules/navigation.ts +23 -12
- package/dist/types/components/Molecules/CardSimpleRender/CardSimpleRender.stories copy.d.ts +11 -0
- package/dist/types/themes/ManamergeTheme.d.ts +9 -3
- package/dist/types/themes/manamerge/molecules/footer.d.ts +0 -2
- package/dist/types/themes/manamerge/molecules/navigation.d.ts +9 -1
- package/package.json +1 -1
|
@@ -3,44 +3,44 @@ import colors from "../miscellaneous/colorpalette";
|
|
|
3
3
|
const icon = {
|
|
4
4
|
"Icon-xs": {
|
|
5
5
|
size: "16px",
|
|
6
|
-
color: colors.
|
|
7
|
-
fill: colors.
|
|
8
|
-
stroke: colors.
|
|
6
|
+
color: colors.transparent,
|
|
7
|
+
fill: colors.three.a,
|
|
8
|
+
stroke: colors.two.a,
|
|
9
9
|
hover: {
|
|
10
10
|
color: colors.transparent,
|
|
11
|
-
fill: colors.
|
|
12
|
-
stroke: colors.
|
|
11
|
+
fill: colors.four.a,
|
|
12
|
+
stroke: colors.two.f
|
|
13
13
|
}
|
|
14
14
|
},
|
|
15
15
|
"Icon-sm": {
|
|
16
16
|
size: "24px",
|
|
17
|
-
fill: colors.
|
|
18
|
-
stroke: colors.
|
|
17
|
+
fill: colors.three.a,
|
|
18
|
+
stroke: colors.two.a
|
|
19
19
|
},
|
|
20
20
|
"Icon-md": {
|
|
21
21
|
size: "32px",
|
|
22
|
-
fill: colors.
|
|
23
|
-
stroke: colors.
|
|
22
|
+
fill: colors.three.a,
|
|
23
|
+
stroke: colors.two.a
|
|
24
24
|
},
|
|
25
25
|
"Icon-lg": {
|
|
26
26
|
size: "48px",
|
|
27
|
-
fill: colors.
|
|
28
|
-
stroke: colors.
|
|
27
|
+
fill: colors.three.a,
|
|
28
|
+
stroke: colors.two.a
|
|
29
29
|
},
|
|
30
30
|
"Icon-xl": {
|
|
31
31
|
size: "64px",
|
|
32
|
-
fill: colors.
|
|
33
|
-
stroke: colors.
|
|
32
|
+
fill: colors.three.a,
|
|
33
|
+
stroke: colors.two.a
|
|
34
34
|
},
|
|
35
35
|
"Icon-xxl": {
|
|
36
36
|
size: "96px",
|
|
37
|
-
fill: colors.
|
|
38
|
-
stroke: colors.
|
|
37
|
+
fill: colors.three.a,
|
|
38
|
+
stroke: colors.two.a
|
|
39
39
|
},
|
|
40
40
|
"Icon-xxxl": {
|
|
41
41
|
size: "128px",
|
|
42
|
-
fill: colors.
|
|
43
|
-
stroke: colors.
|
|
42
|
+
fill: colors.three.a,
|
|
43
|
+
stroke: colors.two.a,
|
|
44
44
|
hover: {
|
|
45
45
|
opacity: "0.8"
|
|
46
46
|
}
|
|
@@ -48,8 +48,8 @@ const icon = {
|
|
|
48
48
|
"Icon-xxxxl": {
|
|
49
49
|
size: "192px",
|
|
50
50
|
color: colors.transparent,
|
|
51
|
-
fill: colors.
|
|
52
|
-
stroke: colors.
|
|
51
|
+
fill: colors.three.a,
|
|
52
|
+
stroke: colors.two.a,
|
|
53
53
|
hover: {
|
|
54
54
|
color: colors.transparent,
|
|
55
55
|
fill: colors.four.a,
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import colors from "../miscellaneous/colorpalette";
|
|
2
|
-
|
|
3
1
|
const footer = {
|
|
4
2
|
"Footer-primary": {
|
|
5
3
|
background: `linear-gradient(
|
|
@@ -20,9 +18,7 @@ const footer = {
|
|
|
20
18
|
variant: "primary-medium"
|
|
21
19
|
},
|
|
22
20
|
icons: {
|
|
23
|
-
variant: "
|
|
24
|
-
stroke: colors.one.b,
|
|
25
|
-
fill: colors.one.b
|
|
21
|
+
variant: "md"
|
|
26
22
|
}
|
|
27
23
|
}
|
|
28
24
|
};
|
|
@@ -1,48 +1,59 @@
|
|
|
1
|
+
import colors from "../miscellaneous/colorpalette";
|
|
2
|
+
|
|
1
3
|
const navigation = {
|
|
2
4
|
"Navigation-primary": {
|
|
3
|
-
gap: "
|
|
5
|
+
gap: "50px",
|
|
4
6
|
background: `linear-gradient(
|
|
5
7
|
180deg,
|
|
6
8
|
rgba(59, 60, 63, 0.6) 0%,
|
|
7
9
|
rgba(38, 38, 38, 0.8) 43.75%
|
|
8
10
|
),
|
|
9
11
|
rgba(59, 60, 63, 0.8);`,
|
|
12
|
+
padding: "13px",
|
|
13
|
+
// height: "32px",
|
|
10
14
|
atomIcon: {
|
|
11
15
|
variant: "md",
|
|
12
|
-
color:
|
|
16
|
+
color: colors.one.c,
|
|
13
17
|
focus: {
|
|
14
18
|
outline: "2px solid darkblue",
|
|
15
19
|
outlineOffset: "2px",
|
|
16
20
|
boxShadow: "2px 2px 5px yellow",
|
|
17
|
-
color:
|
|
21
|
+
color: colors.one.a
|
|
18
22
|
},
|
|
19
23
|
hover: {
|
|
20
|
-
color:
|
|
24
|
+
color: colors.one.a,
|
|
21
25
|
transition: "color 0.3s ease"
|
|
22
26
|
}
|
|
23
27
|
},
|
|
24
28
|
atomLink: {
|
|
25
29
|
variant: "primary-bold",
|
|
26
|
-
color:
|
|
30
|
+
color: colors.one.c,
|
|
27
31
|
fontWeight: "700",
|
|
28
32
|
currentPath: {
|
|
29
|
-
color:
|
|
30
|
-
fontWeight: "
|
|
33
|
+
color: colors.one.a,
|
|
34
|
+
fontWeight: "700"
|
|
31
35
|
},
|
|
32
36
|
focus: {
|
|
33
|
-
color:
|
|
34
|
-
boxShadow: "2px 2px 5px yellow"
|
|
37
|
+
color: colors.one.a
|
|
35
38
|
},
|
|
36
39
|
hover: {
|
|
37
|
-
color:
|
|
40
|
+
color: colors.one.a,
|
|
38
41
|
transition: "color 0.3s ease"
|
|
42
|
+
},
|
|
43
|
+
underline: {
|
|
44
|
+
bottom: "2px",
|
|
45
|
+
height: "2px",
|
|
46
|
+
background: colors.two.a,
|
|
47
|
+
transformOriginMobileUp: "center",
|
|
48
|
+
transformOriginMobileDown: "right",
|
|
49
|
+
transition: "0.35s cubic-bezier(.22,1,.36,1)"
|
|
39
50
|
}
|
|
40
51
|
},
|
|
41
52
|
navLinks: {
|
|
42
53
|
responsive: {
|
|
43
54
|
largeMobileUp: {
|
|
44
|
-
gap: "
|
|
45
|
-
justifyContent: "flex-
|
|
55
|
+
gap: "50px",
|
|
56
|
+
justifyContent: "flex-end", // change here if you want the menu to aligned on the left/center/right
|
|
46
57
|
margin: "0 30px 0 0"
|
|
47
58
|
}
|
|
48
59
|
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Meta, StoryObj } from "@storybook/react";
|
|
2
|
+
import { CardSimpleRenderTypes } from "./CardSimpleRender";
|
|
3
|
+
declare const meta: Meta<CardSimpleRenderTypes>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<CardSimpleRenderTypes>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const Hover: Story;
|
|
8
|
+
export declare const Flex: Story;
|
|
9
|
+
export declare const FlexExtra: Story;
|
|
10
|
+
export declare const Flex2: Story;
|
|
11
|
+
export declare const Isolado: Story;
|
|
@@ -1081,6 +1081,7 @@ export declare const ManamergeTheme: {
|
|
|
1081
1081
|
"Navigation-primary": {
|
|
1082
1082
|
gap: string;
|
|
1083
1083
|
background: string;
|
|
1084
|
+
padding: string;
|
|
1084
1085
|
atomIcon: {
|
|
1085
1086
|
variant: string;
|
|
1086
1087
|
color: string;
|
|
@@ -1105,12 +1106,19 @@ export declare const ManamergeTheme: {
|
|
|
1105
1106
|
};
|
|
1106
1107
|
focus: {
|
|
1107
1108
|
color: string;
|
|
1108
|
-
boxShadow: string;
|
|
1109
1109
|
};
|
|
1110
1110
|
hover: {
|
|
1111
1111
|
color: string;
|
|
1112
1112
|
transition: string;
|
|
1113
1113
|
};
|
|
1114
|
+
underline: {
|
|
1115
|
+
bottom: string;
|
|
1116
|
+
height: string;
|
|
1117
|
+
background: string;
|
|
1118
|
+
transformOriginMobileUp: string;
|
|
1119
|
+
transformOriginMobileDown: string;
|
|
1120
|
+
transition: string;
|
|
1121
|
+
};
|
|
1114
1122
|
};
|
|
1115
1123
|
navLinks: {
|
|
1116
1124
|
responsive: {
|
|
@@ -1139,8 +1147,6 @@ export declare const ManamergeTheme: {
|
|
|
1139
1147
|
};
|
|
1140
1148
|
icons: {
|
|
1141
1149
|
variant: string;
|
|
1142
|
-
stroke: string;
|
|
1143
|
-
fill: string;
|
|
1144
1150
|
};
|
|
1145
1151
|
};
|
|
1146
1152
|
};
|
|
@@ -2,6 +2,7 @@ declare const navigation: {
|
|
|
2
2
|
"Navigation-primary": {
|
|
3
3
|
gap: string;
|
|
4
4
|
background: string;
|
|
5
|
+
padding: string;
|
|
5
6
|
atomIcon: {
|
|
6
7
|
variant: string;
|
|
7
8
|
color: string;
|
|
@@ -26,12 +27,19 @@ declare const navigation: {
|
|
|
26
27
|
};
|
|
27
28
|
focus: {
|
|
28
29
|
color: string;
|
|
29
|
-
boxShadow: string;
|
|
30
30
|
};
|
|
31
31
|
hover: {
|
|
32
32
|
color: string;
|
|
33
33
|
transition: string;
|
|
34
34
|
};
|
|
35
|
+
underline: {
|
|
36
|
+
bottom: string;
|
|
37
|
+
height: string;
|
|
38
|
+
background: string;
|
|
39
|
+
transformOriginMobileUp: string;
|
|
40
|
+
transformOriginMobileDown: string;
|
|
41
|
+
transition: string;
|
|
42
|
+
};
|
|
35
43
|
};
|
|
36
44
|
navLinks: {
|
|
37
45
|
responsive: {
|