@openlettermarketing/olc-react-sdk 0.0.18 → 0.0.19
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/build/index.js +2 -2
- package/build/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/CreateTemplate/index.tsx +4 -2
- package/src/components/CreateTemplate/styles.scss +2 -2
- package/src/components/GenericUIBlocks/Dialog/index.tsx +4 -4
- package/src/components/GenericUIBlocks/Input/styles.scss +2 -2
- package/src/components/TopNavigation/SaveTemplateModel/index.tsx +1 -1
- package/src/components/TopNavigation/index.tsx +1 -0
- package/src/components/TopNavigation/styles.scss +1 -1
- package/src/index.scss +1 -1
- package/src/index.tsx +0 -1
package/package.json
CHANGED
|
@@ -55,7 +55,7 @@ const templateHeadingStyles: React.CSSProperties = {
|
|
|
55
55
|
color: `var(--primaryColor)`,
|
|
56
56
|
fontSize: `24px`,
|
|
57
57
|
fontStyle: `normal`,
|
|
58
|
-
fontWeight: `
|
|
58
|
+
fontWeight: `600`,
|
|
59
59
|
lineHeight: `normal`,
|
|
60
60
|
marginBottom: `20px`,
|
|
61
61
|
};
|
|
@@ -64,7 +64,7 @@ const templateTextStyles: React.CSSProperties = {
|
|
|
64
64
|
color: `var(--textColor)`,
|
|
65
65
|
fontSize: `14px`,
|
|
66
66
|
fontStyle: `normal`,
|
|
67
|
-
fontWeight: `
|
|
67
|
+
fontWeight: `400`,
|
|
68
68
|
lineHeight: `normal`,
|
|
69
69
|
marginBottom: `16px`,
|
|
70
70
|
};
|
|
@@ -78,6 +78,8 @@ const footerButtonStyles: React.CSSProperties = {
|
|
|
78
78
|
borderRadius: '3px',
|
|
79
79
|
backgroundColor: 'var(--secondaryButtonBgColor)',
|
|
80
80
|
color: `var(--secondaryButtonTextColor)`,
|
|
81
|
+
fontSize: `14px`,
|
|
82
|
+
fontWeight: `500`,
|
|
81
83
|
};
|
|
82
84
|
|
|
83
85
|
const Images: Record<string, ReactElement> = {
|
|
@@ -172,7 +172,7 @@
|
|
|
172
172
|
color: var(--primaryColor);
|
|
173
173
|
font-size: 16px;
|
|
174
174
|
font-style: normal;
|
|
175
|
-
font-weight:
|
|
175
|
+
font-weight: 500;
|
|
176
176
|
line-height: normal;
|
|
177
177
|
margin: 0;
|
|
178
178
|
}
|
|
@@ -273,7 +273,7 @@
|
|
|
273
273
|
color: var(--primaryColor);
|
|
274
274
|
font-size: 16px;
|
|
275
275
|
font-style: normal;
|
|
276
|
-
font-weight:
|
|
276
|
+
font-weight: 500;
|
|
277
277
|
line-height: normal;
|
|
278
278
|
margin: 0;
|
|
279
279
|
}
|
|
@@ -36,13 +36,13 @@ const buttonStyles: CSSProperties = {
|
|
|
36
36
|
const heading: CSSProperties = {
|
|
37
37
|
fontSize: '22px',
|
|
38
38
|
color: 'var(--dialogModalHeadingColor)',
|
|
39
|
-
fontWeight: '
|
|
39
|
+
fontWeight: '600',
|
|
40
40
|
};
|
|
41
41
|
|
|
42
42
|
const subHeadingStyle: CSSProperties = {
|
|
43
43
|
fontSize: '16px',
|
|
44
|
-
color: 'var(--dialogModalTextColor',
|
|
45
|
-
fontWeight: '
|
|
44
|
+
color: 'var(--dialogModalTextColor)',
|
|
45
|
+
fontWeight: '600',
|
|
46
46
|
textAlign: 'center',
|
|
47
47
|
};
|
|
48
48
|
|
|
@@ -94,7 +94,7 @@ const Dialog: React.FC<DialogProps> = ({
|
|
|
94
94
|
{description && (
|
|
95
95
|
<Typography
|
|
96
96
|
variant="p"
|
|
97
|
-
style={{...subHeadingStyle, fontWeight: '400'}}
|
|
97
|
+
style={{...subHeadingStyle, fontWeight: '400', fontSize: '14px'}}
|
|
98
98
|
>
|
|
99
99
|
{description}
|
|
100
100
|
</Typography>
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
padding: 5px 20px;
|
|
28
28
|
background: transparent;
|
|
29
29
|
font-size: 14px;
|
|
30
|
-
font-family: 'Inter'
|
|
31
|
-
font-weight:
|
|
30
|
+
font-family: 'Inter' !important;
|
|
31
|
+
font-weight: 400;
|
|
32
32
|
line-height: 24px;
|
|
33
33
|
color: var(--inputTextColor);
|
|
34
34
|
border: none;
|
package/src/index.scss
CHANGED