@manamerge/mana-atomic-ui 1.0.163 → 1.0.165
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 +4 -2
- package/dist/index.js +76 -45
- package/dist/index.js.map +1 -1
- package/dist/themes/themes/ManamergeTheme.ts +5 -0
- package/dist/themes/themes/davidWeb/atoms/heading.ts +18 -18
- package/dist/themes/themes/davidWeb/atoms/text.ts +2 -2
- package/dist/themes/themes/davidWeb/fonts/Array/Array-BoldWide.woff2 +0 -0
- package/dist/themes/themes/davidWeb/fonts/Array/Array-Regular.woff2 +0 -0
- package/dist/themes/themes/davidWeb/fonts/Array/Array-Semibold.woff2 +0 -0
- package/dist/themes/themes/davidWeb/fonts/Array/Array-SemiboldWide.woff2 +0 -0
- package/dist/themes/themes/davidWeb/fonts/Array/Array-Wide.woff2 +0 -0
- package/dist/themes/themes/davidWeb/fonts/index.js +5 -3
- package/dist/themes/themes/davidWeb/miscellaneous/colorpalette.ts +7 -6
- package/dist/themes/themes/manamerge/atoms/gradient.ts +2 -2
- package/dist/themes/themes/manamerge/atoms/icon.ts +47 -17
- package/dist/themes/themes/manamerge/atoms/link.ts +19 -47
- 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/miscellaneous/colorpalette.ts +7 -6
- package/dist/themes/themes/manamerge/molecules/accordion.ts +1 -1
- package/dist/themes/themes/manamerge/molecules/breakerTape.ts +1 -1
- package/dist/themes/themes/manamerge/molecules/cardBanner.ts +1 -1
- package/dist/themes/themes/manamerge/molecules/cardSimpleRender.ts +1 -1
- package/dist/themes/themes/manamerge/molecules/cardTeaser.ts +1 -1
- package/dist/themes/themes/manamerge/molecules/footer.ts +6 -7
- package/dist/themes/themes/manamerge/molecules/header.ts +19 -9
- package/dist/themes/themes/manamerge/molecules/navigation.ts +18 -9
- package/dist/types/components/Atoms/Icon/Icon.css.d.ts +3 -0
- package/dist/types/components/Atoms/Icon/Icon.d.ts +4 -1
- package/dist/types/components/Atoms/Icon/Icon.stories.d.ts +6 -0
- package/dist/types/components/Molecules/CardSimpleRender/CardSimpleRender.stories copy.d.ts +11 -0
- package/dist/types/components/Molecules/Footer/Footer.css.d.ts +3 -0
- package/dist/types/components/Molecules/Header/Header.css.d.ts +3 -0
- package/dist/types/components/Molecules/Navigation/Navigation.d.ts +0 -1
- package/dist/types/themes/ManamergeTheme.d.ts +95 -50
- package/dist/types/themes/davidWeb/miscellaneous/colorpalette.d.ts +1 -0
- package/dist/types/themes/manamerge/atoms/icon.d.ts +36 -8
- package/dist/types/themes/manamerge/atoms/link.d.ts +9 -37
- package/dist/types/themes/manamerge/miscellaneous/colorpalette.d.ts +1 -0
- package/dist/types/themes/manamerge/molecules/footer.d.ts +2 -3
- package/dist/types/themes/manamerge/molecules/header.d.ts +9 -1
- package/dist/types/themes/manamerge/molecules/navigation.d.ts +8 -1
- package/package.json +1 -1
|
@@ -1,14 +1,17 @@
|
|
|
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: "10px",
|
|
10
13
|
atomIcon: {
|
|
11
|
-
variant: "
|
|
14
|
+
variant: "md",
|
|
12
15
|
color: "white",
|
|
13
16
|
focus: {
|
|
14
17
|
outline: "2px solid darkblue",
|
|
@@ -23,25 +26,31 @@ const navigation = {
|
|
|
23
26
|
},
|
|
24
27
|
atomLink: {
|
|
25
28
|
variant: "primary-bold",
|
|
26
|
-
color:
|
|
29
|
+
color: colors.one.b,
|
|
27
30
|
fontWeight: "700",
|
|
28
31
|
currentPath: {
|
|
29
|
-
color:
|
|
30
|
-
fontWeight: "
|
|
32
|
+
color: colors.three.a,
|
|
33
|
+
fontWeight: "700"
|
|
31
34
|
},
|
|
32
35
|
focus: {
|
|
33
|
-
color:
|
|
34
|
-
boxShadow: "2px 2px 5px yellow"
|
|
36
|
+
color: colors.three.a
|
|
35
37
|
},
|
|
36
38
|
hover: {
|
|
37
|
-
color:
|
|
39
|
+
color: colors.three.a,
|
|
38
40
|
transition: "color 0.3s ease"
|
|
41
|
+
},
|
|
42
|
+
underline: {
|
|
43
|
+
bottom: "2px",
|
|
44
|
+
height: "2px",
|
|
45
|
+
background: colors.three.a,
|
|
46
|
+
transformOrigin: "center",
|
|
47
|
+
transition: "0.35s cubic-bezier(.22,1,.36,1)"
|
|
39
48
|
}
|
|
40
49
|
},
|
|
41
50
|
navLinks: {
|
|
42
51
|
responsive: {
|
|
43
52
|
largeMobileUp: {
|
|
44
|
-
gap: "
|
|
53
|
+
gap: "50px",
|
|
45
54
|
justifyContent: "flex-start", // change here if you want the menu to aligned on the left/center/right
|
|
46
55
|
margin: "0 30px 0 0"
|
|
47
56
|
}
|
|
@@ -2,8 +2,11 @@
|
|
|
2
2
|
export declare const StyledSvg: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").SVGProps<SVGSVGElement>, {
|
|
3
3
|
size?: string | undefined;
|
|
4
4
|
color?: string | undefined;
|
|
5
|
+
fill?: string | undefined;
|
|
5
6
|
stroke?: string | undefined;
|
|
6
7
|
hoverColor?: string | undefined;
|
|
8
|
+
hoverFill?: string | undefined;
|
|
7
9
|
hoverStroke?: string | undefined;
|
|
10
|
+
hoverOpacity?: string | undefined;
|
|
8
11
|
variant: string;
|
|
9
12
|
}>> & string;
|
|
@@ -2,11 +2,14 @@ import React, { FunctionComponent, SVGProps } from "react";
|
|
|
2
2
|
export interface IconTypes {
|
|
3
3
|
variant?: string;
|
|
4
4
|
svg: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
5
|
-
color?: string;
|
|
6
5
|
size?: string;
|
|
6
|
+
color?: string;
|
|
7
|
+
fill?: string;
|
|
7
8
|
stroke?: string;
|
|
8
9
|
hoverColor?: string;
|
|
10
|
+
hoverFill?: string;
|
|
9
11
|
hoverStroke?: string;
|
|
12
|
+
hoverOpacity?: string;
|
|
10
13
|
onClick?: () => void;
|
|
11
14
|
onKeyDown?: (event: React.KeyboardEvent<SVGSVGElement>) => void;
|
|
12
15
|
tabIndex?: number;
|
|
@@ -4,6 +4,12 @@ declare const meta: Meta<IconTypes>;
|
|
|
4
4
|
export default meta;
|
|
5
5
|
type Story = StoryObj<IconTypes>;
|
|
6
6
|
export declare const Combos: Story;
|
|
7
|
+
export declare const Custom: Story;
|
|
8
|
+
export declare const ExtraSmall: Story;
|
|
7
9
|
export declare const Small: Story;
|
|
8
10
|
export declare const Medium: Story;
|
|
9
11
|
export declare const Large: Story;
|
|
12
|
+
export declare const ExtraLarge: Story;
|
|
13
|
+
export declare const ExtraExtraLarge: Story;
|
|
14
|
+
export declare const ExtraExtraExtraLarge: Story;
|
|
15
|
+
export declare const ExtraExtraExtraExtraLarge: Story;
|
|
@@ -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;
|
|
@@ -8,6 +8,9 @@ export declare const FooterNav: import("styled-components/dist/types").IStyledCo
|
|
|
8
8
|
export declare const IconFooter: 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>, {
|
|
9
9
|
moleculeVariant: string;
|
|
10
10
|
}>, never>> & string & Omit<import("react").FC<import("../../Atoms/Icon/Icon").IconTypes>, keyof import("react").Component<any, {}, any>>;
|
|
11
|
+
export declare const StyledGradient: 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>, {
|
|
12
|
+
moleculeVariant: string;
|
|
13
|
+
}>, never>> & string & Omit<import("react").FC<import("../../Atoms/Gradient/Gradient").GradientTypes>, keyof import("react").Component<any, {}, any>>;
|
|
11
14
|
export declare const StyledLink: 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/Link/Link").LinkTypes, import("../../Atoms/Link/Link").LinkTypes>, {
|
|
12
15
|
moleculeVariant: string;
|
|
13
16
|
}>, never>> & string & Omit<import("react").FC<import("../../Atoms/Link/Link").LinkTypes>, keyof import("react").Component<any, {}, any>>;
|
|
@@ -16,6 +16,9 @@ export declare const AtomIconTop: import("styled-components/dist/types").IStyled
|
|
|
16
16
|
export declare const AtomIconDot: 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>, {
|
|
17
17
|
moleculeVariant: string;
|
|
18
18
|
}>, never>> & string & Omit<import("react").FC<import("../../Atoms/Icon/Icon").IconTypes>, keyof import("react").Component<any, {}, any>>;
|
|
19
|
+
export declare const AtomTextBanner: 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/Text/Text").TextTypes, import("../../Atoms/Text/Text").TextTypes>, {
|
|
20
|
+
moleculeVariant: string;
|
|
21
|
+
}>, never>> & string & Omit<import("react").FC<import("../../Atoms/Text/Text").TextTypes>, keyof import("react").Component<any, {}, any>>;
|
|
19
22
|
export declare const AtomHeading: 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/Heading/Heading").HeadingTypes, import("../../Atoms/Heading/Heading").HeadingTypes>, {
|
|
20
23
|
moleculeVariant: string;
|
|
21
24
|
}>, never>> & string & Omit<import("react").FC<import("../../Atoms/Heading/Heading").HeadingTypes>, keyof import("react").Component<any, {}, any>>;
|
|
@@ -5,6 +5,7 @@ export declare const ManamergeTheme: {
|
|
|
5
5
|
fontSize: string;
|
|
6
6
|
lineHeight: string;
|
|
7
7
|
fontWeight: number;
|
|
8
|
+
fontFamily: string;
|
|
8
9
|
color: string;
|
|
9
10
|
hover: {
|
|
10
11
|
color: string;
|
|
@@ -17,6 +18,7 @@ export declare const ManamergeTheme: {
|
|
|
17
18
|
fontSize: string;
|
|
18
19
|
lineHeight: string;
|
|
19
20
|
fontWeight: number;
|
|
21
|
+
fontFamily: string;
|
|
20
22
|
color: string;
|
|
21
23
|
hover: {
|
|
22
24
|
color: string;
|
|
@@ -29,6 +31,7 @@ export declare const ManamergeTheme: {
|
|
|
29
31
|
fontSize: string;
|
|
30
32
|
lineHeight: string;
|
|
31
33
|
fontWeight: number;
|
|
34
|
+
fontFamily: string;
|
|
32
35
|
color: string;
|
|
33
36
|
hover: {
|
|
34
37
|
color: string;
|
|
@@ -41,6 +44,7 @@ export declare const ManamergeTheme: {
|
|
|
41
44
|
fontSize: string;
|
|
42
45
|
lineHeight: string;
|
|
43
46
|
fontWeight: number;
|
|
47
|
+
fontFamily: string;
|
|
44
48
|
color: string;
|
|
45
49
|
hover: {
|
|
46
50
|
color: string;
|
|
@@ -53,18 +57,7 @@ export declare const ManamergeTheme: {
|
|
|
53
57
|
fontSize: string;
|
|
54
58
|
lineHeight: string;
|
|
55
59
|
fontWeight: number;
|
|
56
|
-
|
|
57
|
-
hover: {
|
|
58
|
-
color: string;
|
|
59
|
-
};
|
|
60
|
-
disabled: {
|
|
61
|
-
color: string;
|
|
62
|
-
};
|
|
63
|
-
};
|
|
64
|
-
"Link-secondary-light": {
|
|
65
|
-
fontSize: string;
|
|
66
|
-
lineHeight: string;
|
|
67
|
-
fontWeight: number;
|
|
60
|
+
fontFamily: string;
|
|
68
61
|
color: string;
|
|
69
62
|
hover: {
|
|
70
63
|
color: string;
|
|
@@ -77,6 +70,7 @@ export declare const ManamergeTheme: {
|
|
|
77
70
|
fontSize: string;
|
|
78
71
|
lineHeight: string;
|
|
79
72
|
fontWeight: number;
|
|
73
|
+
fontFamily: string;
|
|
80
74
|
color: string;
|
|
81
75
|
hover: {
|
|
82
76
|
color: string;
|
|
@@ -85,34 +79,12 @@ export declare const ManamergeTheme: {
|
|
|
85
79
|
color: string;
|
|
86
80
|
};
|
|
87
81
|
};
|
|
88
|
-
"Link-secondary-
|
|
89
|
-
fontSize: string;
|
|
90
|
-
lineHeight: string;
|
|
91
|
-
fontWeight: number;
|
|
92
|
-
color: string;
|
|
93
|
-
hover: {
|
|
94
|
-
color: string;
|
|
95
|
-
};
|
|
96
|
-
disabled: {
|
|
97
|
-
color: string;
|
|
98
|
-
};
|
|
99
|
-
};
|
|
100
|
-
"Link-secondary-bold": {
|
|
101
|
-
fontSize: string;
|
|
102
|
-
lineHeight: string;
|
|
103
|
-
fontWeight: number;
|
|
104
|
-
color: string;
|
|
105
|
-
hover: {
|
|
106
|
-
color: string;
|
|
107
|
-
};
|
|
108
|
-
disabled: {
|
|
109
|
-
color: string;
|
|
110
|
-
};
|
|
111
|
-
};
|
|
112
|
-
"Link-secondary-heavy": {
|
|
82
|
+
"Link-secondary-italic": {
|
|
113
83
|
fontSize: string;
|
|
114
84
|
lineHeight: string;
|
|
115
85
|
fontWeight: number;
|
|
86
|
+
fontFamily: string;
|
|
87
|
+
fontStyle: string;
|
|
116
88
|
color: string;
|
|
117
89
|
hover: {
|
|
118
90
|
color: string;
|
|
@@ -600,31 +572,59 @@ export declare const ManamergeTheme: {
|
|
|
600
572
|
};
|
|
601
573
|
};
|
|
602
574
|
icon: {
|
|
603
|
-
"Icon-
|
|
575
|
+
"Icon-xs": {
|
|
604
576
|
size: string;
|
|
605
577
|
color: string;
|
|
578
|
+
fill: string;
|
|
606
579
|
stroke: string;
|
|
607
580
|
hover: {
|
|
608
|
-
|
|
581
|
+
color: string;
|
|
609
582
|
fill: string;
|
|
583
|
+
stroke: string;
|
|
610
584
|
};
|
|
611
585
|
};
|
|
612
|
-
"Icon-
|
|
586
|
+
"Icon-sm": {
|
|
613
587
|
size: string;
|
|
614
|
-
|
|
588
|
+
fill: string;
|
|
589
|
+
stroke: string;
|
|
590
|
+
};
|
|
591
|
+
"Icon-md": {
|
|
592
|
+
size: string;
|
|
593
|
+
fill: string;
|
|
594
|
+
stroke: string;
|
|
595
|
+
};
|
|
596
|
+
"Icon-lg": {
|
|
597
|
+
size: string;
|
|
598
|
+
fill: string;
|
|
599
|
+
stroke: string;
|
|
600
|
+
};
|
|
601
|
+
"Icon-xl": {
|
|
602
|
+
size: string;
|
|
603
|
+
fill: string;
|
|
604
|
+
stroke: string;
|
|
605
|
+
};
|
|
606
|
+
"Icon-xxl": {
|
|
607
|
+
size: string;
|
|
608
|
+
fill: string;
|
|
609
|
+
stroke: string;
|
|
610
|
+
};
|
|
611
|
+
"Icon-xxxl": {
|
|
612
|
+
size: string;
|
|
613
|
+
fill: string;
|
|
615
614
|
stroke: string;
|
|
616
615
|
hover: {
|
|
617
|
-
|
|
618
|
-
color: string;
|
|
616
|
+
opacity: string;
|
|
619
617
|
};
|
|
620
618
|
};
|
|
621
|
-
"Icon-
|
|
619
|
+
"Icon-xxxxl": {
|
|
622
620
|
size: string;
|
|
623
621
|
color: string;
|
|
622
|
+
fill: string;
|
|
624
623
|
stroke: string;
|
|
625
624
|
hover: {
|
|
626
|
-
|
|
625
|
+
color: string;
|
|
627
626
|
fill: string;
|
|
627
|
+
stroke: string;
|
|
628
628
|
};
|
|
629
629
|
};
|
|
630
630
|
};
|
|
@@ -985,7 +985,6 @@ export declare const ManamergeTheme: {
|
|
|
985
985
|
header: {
|
|
986
986
|
"Header-primary": {
|
|
987
987
|
height: string;
|
|
988
|
-
backgroundColor: string;
|
|
989
988
|
justifyContent: string;
|
|
990
989
|
bannerColor: string;
|
|
991
990
|
wrapperHeader: {
|
|
@@ -1009,8 +1008,13 @@ export declare const ManamergeTheme: {
|
|
|
1009
1008
|
stroke: string;
|
|
1010
1009
|
};
|
|
1011
1010
|
};
|
|
1011
|
+
atomTextBanner: {
|
|
1012
|
+
variant: string;
|
|
1013
|
+
color: string;
|
|
1014
|
+
};
|
|
1012
1015
|
atomHeading: {
|
|
1013
1016
|
variant: string;
|
|
1017
|
+
asTag: string;
|
|
1014
1018
|
};
|
|
1015
1019
|
atomTextTitle: {
|
|
1016
1020
|
variant: string;
|
|
@@ -1051,6 +1055,10 @@ export declare const ManamergeTheme: {
|
|
|
1051
1055
|
stroke: string;
|
|
1052
1056
|
};
|
|
1053
1057
|
};
|
|
1058
|
+
atomTextBanner: {
|
|
1059
|
+
variant: string;
|
|
1060
|
+
color: string;
|
|
1061
|
+
};
|
|
1054
1062
|
atomHeading: {
|
|
1055
1063
|
variant: string;
|
|
1056
1064
|
asTag: string;
|
|
@@ -1073,6 +1081,7 @@ export declare const ManamergeTheme: {
|
|
|
1073
1081
|
"Navigation-primary": {
|
|
1074
1082
|
gap: string;
|
|
1075
1083
|
background: string;
|
|
1084
|
+
padding: string;
|
|
1076
1085
|
atomIcon: {
|
|
1077
1086
|
variant: string;
|
|
1078
1087
|
color: string;
|
|
@@ -1097,12 +1106,18 @@ export declare const ManamergeTheme: {
|
|
|
1097
1106
|
};
|
|
1098
1107
|
focus: {
|
|
1099
1108
|
color: string;
|
|
1100
|
-
boxShadow: string;
|
|
1101
1109
|
};
|
|
1102
1110
|
hover: {
|
|
1103
1111
|
color: string;
|
|
1104
1112
|
transition: string;
|
|
1105
1113
|
};
|
|
1114
|
+
underline: {
|
|
1115
|
+
bottom: string;
|
|
1116
|
+
height: string;
|
|
1117
|
+
background: string;
|
|
1118
|
+
transformOrigin: string;
|
|
1119
|
+
transition: string;
|
|
1120
|
+
};
|
|
1106
1121
|
};
|
|
1107
1122
|
navLinks: {
|
|
1108
1123
|
responsive: {
|
|
@@ -1122,10 +1137,9 @@ export declare const ManamergeTheme: {
|
|
|
1122
1137
|
gap: string;
|
|
1123
1138
|
text: {
|
|
1124
1139
|
variant: string;
|
|
1140
|
+
};
|
|
1141
|
+
gradient: {
|
|
1125
1142
|
color: string;
|
|
1126
|
-
hover: {
|
|
1127
|
-
color: string;
|
|
1128
|
-
};
|
|
1129
1143
|
};
|
|
1130
1144
|
links: {
|
|
1131
1145
|
variant: string;
|
|
@@ -1355,6 +1369,37 @@ export declare const ManamergeTheme: {
|
|
|
1355
1369
|
xxxl: string;
|
|
1356
1370
|
xxxxl: string;
|
|
1357
1371
|
};
|
|
1372
|
+
colors: {
|
|
1373
|
+
transparent: string;
|
|
1374
|
+
one: {
|
|
1375
|
+
a: string;
|
|
1376
|
+
b: string;
|
|
1377
|
+
c: string;
|
|
1378
|
+
d: string;
|
|
1379
|
+
e: string;
|
|
1380
|
+
f: string;
|
|
1381
|
+
g: string;
|
|
1382
|
+
h: string;
|
|
1383
|
+
i: string;
|
|
1384
|
+
};
|
|
1385
|
+
two: {
|
|
1386
|
+
a: string;
|
|
1387
|
+
b: string;
|
|
1388
|
+
c: string;
|
|
1389
|
+
d: string;
|
|
1390
|
+
e: string;
|
|
1391
|
+
f: string;
|
|
1392
|
+
};
|
|
1393
|
+
three: {
|
|
1394
|
+
a: string;
|
|
1395
|
+
b: string;
|
|
1396
|
+
c: string;
|
|
1397
|
+
};
|
|
1398
|
+
four: {
|
|
1399
|
+
a: string;
|
|
1400
|
+
b: string;
|
|
1401
|
+
};
|
|
1402
|
+
};
|
|
1358
1403
|
pages: {
|
|
1359
1404
|
vod: {
|
|
1360
1405
|
top: {
|
|
@@ -1,29 +1,57 @@
|
|
|
1
1
|
declare const icon: {
|
|
2
|
-
"Icon-
|
|
2
|
+
"Icon-xs": {
|
|
3
3
|
size: string;
|
|
4
4
|
color: string;
|
|
5
|
+
fill: string;
|
|
5
6
|
stroke: string;
|
|
6
7
|
hover: {
|
|
7
|
-
|
|
8
|
+
color: string;
|
|
8
9
|
fill: string;
|
|
10
|
+
stroke: string;
|
|
9
11
|
};
|
|
10
12
|
};
|
|
11
|
-
"Icon-
|
|
13
|
+
"Icon-sm": {
|
|
12
14
|
size: string;
|
|
13
|
-
|
|
15
|
+
fill: string;
|
|
16
|
+
stroke: string;
|
|
17
|
+
};
|
|
18
|
+
"Icon-md": {
|
|
19
|
+
size: string;
|
|
20
|
+
fill: string;
|
|
21
|
+
stroke: string;
|
|
22
|
+
};
|
|
23
|
+
"Icon-lg": {
|
|
24
|
+
size: string;
|
|
25
|
+
fill: string;
|
|
26
|
+
stroke: string;
|
|
27
|
+
};
|
|
28
|
+
"Icon-xl": {
|
|
29
|
+
size: string;
|
|
30
|
+
fill: string;
|
|
31
|
+
stroke: string;
|
|
32
|
+
};
|
|
33
|
+
"Icon-xxl": {
|
|
34
|
+
size: string;
|
|
35
|
+
fill: string;
|
|
36
|
+
stroke: string;
|
|
37
|
+
};
|
|
38
|
+
"Icon-xxxl": {
|
|
39
|
+
size: string;
|
|
40
|
+
fill: string;
|
|
14
41
|
stroke: string;
|
|
15
42
|
hover: {
|
|
16
|
-
|
|
17
|
-
color: string;
|
|
43
|
+
opacity: string;
|
|
18
44
|
};
|
|
19
45
|
};
|
|
20
|
-
"Icon-
|
|
46
|
+
"Icon-xxxxl": {
|
|
21
47
|
size: string;
|
|
22
48
|
color: string;
|
|
49
|
+
fill: string;
|
|
23
50
|
stroke: string;
|
|
24
51
|
hover: {
|
|
25
|
-
|
|
52
|
+
color: string;
|
|
26
53
|
fill: string;
|
|
54
|
+
stroke: string;
|
|
27
55
|
};
|
|
28
56
|
};
|
|
29
57
|
};
|
|
@@ -3,6 +3,7 @@ declare const Link: {
|
|
|
3
3
|
fontSize: string;
|
|
4
4
|
lineHeight: string;
|
|
5
5
|
fontWeight: number;
|
|
6
|
+
fontFamily: string;
|
|
6
7
|
color: string;
|
|
7
8
|
hover: {
|
|
8
9
|
color: string;
|
|
@@ -15,6 +16,7 @@ declare const Link: {
|
|
|
15
16
|
fontSize: string;
|
|
16
17
|
lineHeight: string;
|
|
17
18
|
fontWeight: number;
|
|
19
|
+
fontFamily: string;
|
|
18
20
|
color: string;
|
|
19
21
|
hover: {
|
|
20
22
|
color: string;
|
|
@@ -27,6 +29,7 @@ declare const Link: {
|
|
|
27
29
|
fontSize: string;
|
|
28
30
|
lineHeight: string;
|
|
29
31
|
fontWeight: number;
|
|
32
|
+
fontFamily: string;
|
|
30
33
|
color: string;
|
|
31
34
|
hover: {
|
|
32
35
|
color: string;
|
|
@@ -39,6 +42,7 @@ declare const Link: {
|
|
|
39
42
|
fontSize: string;
|
|
40
43
|
lineHeight: string;
|
|
41
44
|
fontWeight: number;
|
|
45
|
+
fontFamily: string;
|
|
42
46
|
color: string;
|
|
43
47
|
hover: {
|
|
44
48
|
color: string;
|
|
@@ -51,18 +55,7 @@ declare const Link: {
|
|
|
51
55
|
fontSize: string;
|
|
52
56
|
lineHeight: string;
|
|
53
57
|
fontWeight: number;
|
|
54
|
-
|
|
55
|
-
hover: {
|
|
56
|
-
color: string;
|
|
57
|
-
};
|
|
58
|
-
disabled: {
|
|
59
|
-
color: string;
|
|
60
|
-
};
|
|
61
|
-
};
|
|
62
|
-
"Link-secondary-light": {
|
|
63
|
-
fontSize: string;
|
|
64
|
-
lineHeight: string;
|
|
65
|
-
fontWeight: number;
|
|
58
|
+
fontFamily: string;
|
|
66
59
|
color: string;
|
|
67
60
|
hover: {
|
|
68
61
|
color: string;
|
|
@@ -75,6 +68,7 @@ declare const Link: {
|
|
|
75
68
|
fontSize: string;
|
|
76
69
|
lineHeight: string;
|
|
77
70
|
fontWeight: number;
|
|
71
|
+
fontFamily: string;
|
|
78
72
|
color: string;
|
|
79
73
|
hover: {
|
|
80
74
|
color: string;
|
|
@@ -83,34 +77,12 @@ declare const Link: {
|
|
|
83
77
|
color: string;
|
|
84
78
|
};
|
|
85
79
|
};
|
|
86
|
-
"Link-secondary-
|
|
87
|
-
fontSize: string;
|
|
88
|
-
lineHeight: string;
|
|
89
|
-
fontWeight: number;
|
|
90
|
-
color: string;
|
|
91
|
-
hover: {
|
|
92
|
-
color: string;
|
|
93
|
-
};
|
|
94
|
-
disabled: {
|
|
95
|
-
color: string;
|
|
96
|
-
};
|
|
97
|
-
};
|
|
98
|
-
"Link-secondary-bold": {
|
|
99
|
-
fontSize: string;
|
|
100
|
-
lineHeight: string;
|
|
101
|
-
fontWeight: number;
|
|
102
|
-
color: string;
|
|
103
|
-
hover: {
|
|
104
|
-
color: string;
|
|
105
|
-
};
|
|
106
|
-
disabled: {
|
|
107
|
-
color: string;
|
|
108
|
-
};
|
|
109
|
-
};
|
|
110
|
-
"Link-secondary-heavy": {
|
|
80
|
+
"Link-secondary-italic": {
|
|
111
81
|
fontSize: string;
|
|
112
82
|
lineHeight: string;
|
|
113
83
|
fontWeight: number;
|
|
84
|
+
fontFamily: string;
|
|
85
|
+
fontStyle: string;
|
|
114
86
|
color: string;
|
|
115
87
|
hover: {
|
|
116
88
|
color: string;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
declare const header: {
|
|
2
2
|
"Header-primary": {
|
|
3
3
|
height: string;
|
|
4
|
-
backgroundColor: string;
|
|
5
4
|
justifyContent: string;
|
|
6
5
|
bannerColor: string;
|
|
7
6
|
wrapperHeader: {
|
|
@@ -25,8 +24,13 @@ declare const header: {
|
|
|
25
24
|
stroke: string;
|
|
26
25
|
};
|
|
27
26
|
};
|
|
27
|
+
atomTextBanner: {
|
|
28
|
+
variant: string;
|
|
29
|
+
color: string;
|
|
30
|
+
};
|
|
28
31
|
atomHeading: {
|
|
29
32
|
variant: string;
|
|
33
|
+
asTag: string;
|
|
30
34
|
};
|
|
31
35
|
atomTextTitle: {
|
|
32
36
|
variant: string;
|
|
@@ -67,6 +71,10 @@ declare const header: {
|
|
|
67
71
|
stroke: string;
|
|
68
72
|
};
|
|
69
73
|
};
|
|
74
|
+
atomTextBanner: {
|
|
75
|
+
variant: string;
|
|
76
|
+
color: string;
|
|
77
|
+
};
|
|
70
78
|
atomHeading: {
|
|
71
79
|
variant: string;
|
|
72
80
|
asTag: string;
|
|
@@ -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,18 @@ 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
|
+
transformOrigin: string;
|
|
40
|
+
transition: string;
|
|
41
|
+
};
|
|
35
42
|
};
|
|
36
43
|
navLinks: {
|
|
37
44
|
responsive: {
|