ece-docs-components 1.0.98 → 1.0.100

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.
@@ -4,64 +4,73 @@ var jsxRuntime = require('react/jsx-runtime');
4
4
  var material = require('@mui/material');
5
5
 
6
6
  const Container = material.styled(material.Box)(({ theme }) => ({
7
- width: '100%',
8
- [theme.breakpoints.up('md')]: {
9
- position: 'sticky',
7
+ width: "100%",
8
+ [theme.breakpoints.up("md")]: {
9
+ position: "sticky",
10
10
  right: 0,
11
11
  top: 0,
12
- width: '224px',
13
- float: 'right',
12
+ width: "224px",
13
+ float: "right",
14
14
  marginLeft: theme.spacing(1.5),
15
15
  marginBottom: 0,
16
16
  },
17
- [theme.breakpoints.up('lg')]: {
18
- width: '256px',
17
+ [theme.breakpoints.up("lg")]: {
18
+ width: "256px",
19
19
  marginLeft: theme.spacing(2),
20
20
  },
21
21
  marginBottom: theme.spacing(2),
22
22
  }));
23
23
  const ContentBox = material.styled(material.Box)(({ theme }) => ({
24
24
  backgroundColor: theme.palette.background.paper,
25
- borderRadius: (typeof theme.shape.borderRadius === 'string'
25
+ borderRadius: (typeof theme.shape.borderRadius === "string"
26
26
  ? parseInt(theme.shape.borderRadius, 10)
27
27
  : theme.shape.borderRadius || 4) * 2,
28
28
  padding: theme.spacing(2.5),
29
- boxShadow: '0 1px 3px 0 rgba(0, 0, 0, 0.1)',
30
- [theme.breakpoints.up('md')]: {
29
+ boxShadow: "0 1px 3px 0 rgba(0, 0, 0, 0.1)",
30
+ [theme.breakpoints.up("md")]: {
31
31
  padding: theme.spacing(3),
32
32
  },
33
33
  }));
34
34
  const NavLink = material.styled(material.Box, {
35
- shouldForwardProp: (prop) => prop !== 'isActive'
35
+ shouldForwardProp: (prop) => prop !== "isActive",
36
36
  })(({ theme, isActive }) => ({
37
- display: 'block',
37
+ display: "block",
38
38
  padding: theme.spacing(1, 2),
39
- fontSize: '0.875rem',
40
- textDecoration: 'none',
39
+ fontSize: "0.875rem",
40
+ textDecoration: "none",
41
41
  color: theme.palette.text.primary,
42
- transition: 'background-color 0.2s',
43
- borderLeft: isActive ? `4px solid ${theme.palette.primary.main}` : '4px solid transparent',
44
- backgroundColor: isActive ? theme.palette.custom.tabBackgroundColor : 'transparent',
42
+ transition: "background-color 0.2s",
43
+ borderLeft: isActive
44
+ ? `4px solid ${theme.palette.primary.main}`
45
+ : "4px solid transparent",
46
+ backgroundColor: isActive
47
+ ? theme.palette.custom.tableOfContentsColor
48
+ : "transparent",
45
49
  fontWeight: isActive ? 700 : 400,
46
- cursor: 'pointer',
47
- '&:hover': {
48
- backgroundColor: theme.palette.custom.tabBackgroundColor,
50
+ cursor: "pointer",
51
+ "&:hover": {
52
+ backgroundColor: theme.palette.custom.tableOfContentsColor,
49
53
  },
50
54
  }));
51
- const TableOfContents = ({ sections, activeSection = 'current-section', onSectionClick }) => {
55
+ const TableOfContents = ({ sections, activeSection = "current-section", onSectionClick, }) => {
52
56
  const handleClick = (sectionId) => {
53
57
  const element = document.getElementById(sectionId);
54
58
  if (element) {
55
- element.scrollIntoView({ behavior: 'smooth', block: 'start' });
59
+ element.scrollIntoView({ behavior: "smooth", block: "start" });
56
60
  onSectionClick?.(sectionId);
57
61
  }
58
62
  };
59
63
  return (jsxRuntime.jsx(Container, { children: jsxRuntime.jsxs(ContentBox, { children: [jsxRuntime.jsx(material.Typography, { variant: "h6", sx: {
60
- color: '#4D3019',
64
+ color: "#4D3019",
61
65
  fontWeight: 600,
62
- fontSize: '16px',
66
+ fontSize: "16px",
63
67
  mb: 3,
64
- }, children: "In this policy" }), jsxRuntime.jsx(material.Box, { component: "nav", sx: { display: 'flex', flexDirection: 'column', gap: 0.25, overflowY: 'hidden' }, children: sections.map((section) => {
68
+ }, children: "In this policy" }), jsxRuntime.jsx(material.Box, { component: "nav", sx: {
69
+ display: "flex",
70
+ flexDirection: "column",
71
+ gap: 0.25,
72
+ overflowY: "hidden",
73
+ }, children: sections.map((section) => {
65
74
  const isActive = section.id === activeSection;
66
75
  return (jsxRuntime.jsx(NavLink, { onClick: () => handleClick(section.id), isActive: isActive, children: section.title }, section.id));
67
76
  }) })] }) }));
@@ -1 +1 @@
1
- {"version":3,"file":"TableOfContents.js","sources":["../../../../src/components/TableOfContents.tsx"],"sourcesContent":["\r\n\r\nimport React from 'react';\r\nimport { Box, Typography, Link, styled } from '@mui/material';\r\n\r\ninterface Section {\r\n id: string;\r\n title: string;\r\n}\r\n\r\ninterface TableOfContentsProps {\r\n sections: Section[];\r\n activeSection?: string;\r\n onSectionClick?: (sectionId: string) => void;\r\n}\r\n\r\nconst Container = styled(Box)(({ theme }) => ({\r\n width: '100%',\r\n [theme.breakpoints.up('md')]: {\r\n position: 'sticky',\r\n right: 0,\r\n top: 0,\r\n width: '224px',\r\n float: 'right',\r\n marginLeft: theme.spacing(1.5),\r\n marginBottom: 0,\r\n },\r\n [theme.breakpoints.up('lg')]: {\r\n width: '256px',\r\n marginLeft: theme.spacing(2),\r\n },\r\n marginBottom: theme.spacing(2),\r\n}));\r\n\r\nconst ContentBox = styled(Box)(({ theme }) => ({\r\n backgroundColor: theme.palette.background.paper,\r\n borderRadius: (typeof theme.shape.borderRadius === 'string'\r\n ? parseInt(theme.shape.borderRadius, 10)\r\n : theme.shape.borderRadius || 4) * 2,\r\n padding: theme.spacing(2.5),\r\n boxShadow: '0 1px 3px 0 rgba(0, 0, 0, 0.1)',\r\n [theme.breakpoints.up('md')]: {\r\n padding: theme.spacing(3),\r\n },\r\n}));\r\n\r\nconst NavLink = styled(Box,{\r\n shouldForwardProp: (prop) => prop !== 'isActive'\r\n})<{ isActive: boolean }>(({ theme, isActive }) => ({\r\n display: 'block',\r\n padding: theme.spacing(1, 2),\r\n fontSize: '0.875rem',\r\n textDecoration: 'none',\r\n color: theme.palette.text.primary,\r\n transition: 'background-color 0.2s',\r\n borderLeft: isActive ? `4px solid ${theme.palette.primary.main}` : '4px solid transparent',\r\n backgroundColor: isActive ? theme.palette.custom.tabBackgroundColor : 'transparent',\r\n fontWeight: isActive ? 700 : 400,\r\n cursor: 'pointer',\r\n '&:hover': {\r\n backgroundColor: theme.palette.custom.tabBackgroundColor,\r\n },\r\n}));\r\n\r\nexport const TableOfContents: React.FC<TableOfContentsProps> = ({\r\n sections,\r\n activeSection = 'current-section',\r\n onSectionClick\r\n}) => {\r\n const handleClick = (sectionId: string) => {\r\n const element = document.getElementById(sectionId);\r\n if (element) {\r\n element.scrollIntoView({ behavior: 'smooth', block: 'start' });\r\n onSectionClick?.(sectionId);\r\n }\r\n };\r\n\r\n return (\r\n <Container>\r\n <ContentBox>\r\n <Typography\r\n variant=\"h6\"\r\n sx={{\r\n color: '#4D3019',\r\n fontWeight: 600,\r\n fontSize: '16px',\r\n mb: 3,\r\n }}\r\n >\r\n In this policy\r\n </Typography>\r\n <Box component=\"nav\" sx={{ display: 'flex', flexDirection: 'column', gap: 0.25, overflowY: 'hidden' }}>\r\n {sections.map((section) => {\r\n const isActive = section.id === activeSection;\r\n return (\r\n <NavLink\r\n key={section.id}\r\n onClick={() => handleClick(section.id)}\r\n isActive={isActive}\r\n >\r\n {section.title}\r\n </NavLink>\r\n );\r\n })}\r\n </Box>\r\n </ContentBox>\r\n </Container>\r\n );\r\n};"],"names":["styled","Box","_jsx","_jsxs","Typography"],"mappings":"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"}
1
+ {"version":3,"file":"TableOfContents.js","sources":["../../../../src/components/TableOfContents.tsx"],"sourcesContent":["import React from \"react\";\r\nimport { Box, Typography, Link, styled } from \"@mui/material\";\r\n\r\ninterface Section {\r\n id: string;\r\n title: string;\r\n}\r\n\r\ninterface TableOfContentsProps {\r\n sections: Section[];\r\n activeSection?: string;\r\n onSectionClick?: (sectionId: string) => void;\r\n}\r\n\r\nconst Container = styled(Box)(({ theme }) => ({\r\n width: \"100%\",\r\n [theme.breakpoints.up(\"md\")]: {\r\n position: \"sticky\",\r\n right: 0,\r\n top: 0,\r\n width: \"224px\",\r\n float: \"right\",\r\n marginLeft: theme.spacing(1.5),\r\n marginBottom: 0,\r\n },\r\n [theme.breakpoints.up(\"lg\")]: {\r\n width: \"256px\",\r\n marginLeft: theme.spacing(2),\r\n },\r\n marginBottom: theme.spacing(2),\r\n}));\r\n\r\nconst ContentBox = styled(Box)(({ theme }) => ({\r\n backgroundColor: theme.palette.background.paper,\r\n borderRadius:\r\n (typeof theme.shape.borderRadius === \"string\"\r\n ? parseInt(theme.shape.borderRadius, 10)\r\n : theme.shape.borderRadius || 4) * 2,\r\n padding: theme.spacing(2.5),\r\n boxShadow: \"0 1px 3px 0 rgba(0, 0, 0, 0.1)\",\r\n [theme.breakpoints.up(\"md\")]: {\r\n padding: theme.spacing(3),\r\n },\r\n}));\r\n\r\nconst NavLink = styled(Box, {\r\n shouldForwardProp: (prop) => prop !== \"isActive\",\r\n})<{ isActive: boolean }>(({ theme, isActive }) => ({\r\n display: \"block\",\r\n padding: theme.spacing(1, 2),\r\n fontSize: \"0.875rem\",\r\n textDecoration: \"none\",\r\n color: theme.palette.text.primary,\r\n transition: \"background-color 0.2s\",\r\n borderLeft: isActive\r\n ? `4px solid ${theme.palette.primary.main}`\r\n : \"4px solid transparent\",\r\n backgroundColor: isActive\r\n ? theme.palette.custom.tableOfContentsColor\r\n : \"transparent\",\r\n fontWeight: isActive ? 700 : 400,\r\n cursor: \"pointer\",\r\n \"&:hover\": {\r\n backgroundColor: theme.palette.custom.tableOfContentsColor,\r\n },\r\n}));\r\n\r\nexport const TableOfContents: React.FC<TableOfContentsProps> = ({\r\n sections,\r\n activeSection = \"current-section\",\r\n onSectionClick,\r\n}) => {\r\n const handleClick = (sectionId: string) => {\r\n const element = document.getElementById(sectionId);\r\n if (element) {\r\n element.scrollIntoView({ behavior: \"smooth\", block: \"start\" });\r\n onSectionClick?.(sectionId);\r\n }\r\n };\r\n\r\n return (\r\n <Container>\r\n <ContentBox>\r\n <Typography\r\n variant=\"h6\"\r\n sx={{\r\n color: \"#4D3019\",\r\n fontWeight: 600,\r\n fontSize: \"16px\",\r\n mb: 3,\r\n }}\r\n >\r\n In this policy\r\n </Typography>\r\n <Box\r\n component=\"nav\"\r\n sx={{\r\n display: \"flex\",\r\n flexDirection: \"column\",\r\n gap: 0.25,\r\n overflowY: \"hidden\",\r\n }}\r\n >\r\n {sections.map((section) => {\r\n const isActive = section.id === activeSection;\r\n return (\r\n <NavLink\r\n key={section.id}\r\n onClick={() => handleClick(section.id)}\r\n isActive={isActive}\r\n >\r\n {section.title}\r\n </NavLink>\r\n );\r\n })}\r\n </Box>\r\n </ContentBox>\r\n </Container>\r\n );\r\n};\r\n"],"names":["styled","Box","_jsx","_jsxs","Typography"],"mappings":"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"}
@@ -6,158 +6,166 @@ var material = require('@mui/material');
6
6
 
7
7
  const GPTheme = material.createTheme({
8
8
  palette: {
9
- mode: 'light',
9
+ mode: "light",
10
10
  primary: {
11
- main: '#4871cf',
12
- light: '#4871cf',
13
- dark: '#4871cf',
14
- contrastText: '#FFFFFF',
11
+ main: "#4871cf",
12
+ light: "#4871cf",
13
+ dark: "#4871cf",
14
+ contrastText: "#FFFFFF",
15
15
  },
16
16
  secondary: {
17
- main: '#a4d6ff',
18
- light: '#a4d6ff',
19
- dark: '#a4d6ff',
20
- contrastText: '#FFFFFF',
17
+ main: "#a4d6ff",
18
+ light: "#a4d6ff",
19
+ dark: "#a4d6ff",
20
+ contrastText: "#FFFFFF",
21
21
  },
22
22
  error: {
23
- main: '#F56B6B',
24
- light: '#F56B6B',
25
- dark: '#F56B6B',
26
- contrastText: '#FFFFFF',
23
+ main: "#F56B6B",
24
+ light: "#F56B6B",
25
+ dark: "#F56B6B",
26
+ contrastText: "#FFFFFF",
27
27
  },
28
28
  warning: {
29
- main: '#F5D76E',
30
- light: '#F5D76E',
31
- dark: '#F5D76E',
32
- contrastText: '#FFFBFF',
29
+ main: "#F5D76E",
30
+ light: "#F5D76E",
31
+ dark: "#F5D76E",
32
+ contrastText: "#FFFBFF",
33
33
  },
34
34
  info: {
35
- main: '#F5A623',
36
- light: '#F5A623',
37
- dark: '#F5A623',
38
- contrastText: '#FFFFFF',
35
+ main: "#F5A623",
36
+ light: "#F5A623",
37
+ dark: "#F5A623",
38
+ contrastText: "#FFFFFF",
39
39
  },
40
40
  success: {
41
- main: '#A3D977',
42
- light: '#A3D977',
43
- dark: '#A3D977',
44
- contrastText: '#FFFFFF',
41
+ main: "#A3D977",
42
+ light: "#A3D977",
43
+ dark: "#A3D977",
44
+ contrastText: "#FFFFFF",
45
45
  },
46
46
  background: {
47
- default: '#FDFCEE',
48
- paper: '#FEFDF7',
47
+ default: "#FDFCEE",
48
+ paper: "#FEFDF7",
49
49
  },
50
50
  text: {
51
- primary: '#4D3019',
52
- secondary: '#826E5C',
53
- disabled: '#93908F',
51
+ primary: "#4D3019",
52
+ secondary: "#826E5C",
53
+ disabled: "#93908F",
54
54
  },
55
- divider: '#C6C7C0',
55
+ divider: "#C6C7C0",
56
56
  accent: {
57
- main: '#FF9ecb',
57
+ main: "#FF9ecb",
58
58
  },
59
59
  dark: {
60
- main: '#4D3019',
60
+ main: "#4D3019",
61
61
  },
62
62
  light: {
63
- main: '#FEFDF7',
63
+ main: "#FEFDF7",
64
64
  },
65
65
  markedRead: {
66
- main: '#A3D977',
66
+ main: "#A3D977",
67
67
  },
68
68
  custom: {
69
- iconColor: '#4871cf',
70
- primaryButtonTextColor: '#FFFFFF',
71
- readByBackgroundColor: '#4871cf1a',
72
- stepIndicatorTextColor: '#FFFFFF',
73
- markAsReadBackgroundColor: '#4871cf1a',
74
- markAsReadBorderColor: '#4871cf',
75
- tabBackgroundColor: '#4871cf1a',
76
- statusBarBackgroundColor: '#a4d6ff',
69
+ iconColor: "#4871cf",
70
+ primaryButtonTextColor: "#FFFFFF",
71
+ readByBackgroundColor: "#4871cf1a",
72
+ stepIndicatorTextColor: "#FFFFFF",
73
+ markAsReadBackgroundColor: "#4871cf1a",
74
+ markAsReadBorderColor: "#4871cf",
75
+ tabBackgroundColor: "#a4d6ff1e",
76
+ statusBarBackgroundColor: "#a4d6ff",
77
+ tableOfContentsColor: "#A4D6FF1D",
77
78
  },
78
79
  },
79
80
  typography: {
80
- fontFamily: ['Inter', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'sans-serif'].join(','),
81
+ fontFamily: [
82
+ "Inter",
83
+ "-apple-system",
84
+ "BlinkMacSystemFont",
85
+ "Segoe UI",
86
+ "Roboto",
87
+ "sans-serif",
88
+ ].join(","),
81
89
  h1: {
82
- color: '#4D3019',
90
+ color: "#4D3019",
83
91
  fontWeight: 700,
84
- fontSize: '2.5rem',
92
+ fontSize: "2.5rem",
85
93
  lineHeight: 1.2,
86
94
  },
87
95
  h2: {
88
- color: '#4D3019',
96
+ color: "#4D3019",
89
97
  fontWeight: 700,
90
- fontSize: '2rem',
98
+ fontSize: "2rem",
91
99
  lineHeight: 1.3,
92
100
  },
93
101
  h3: {
94
- color: '#4D3019',
102
+ color: "#4D3019",
95
103
  fontWeight: 600,
96
- fontSize: '1.75rem',
104
+ fontSize: "1.75rem",
97
105
  lineHeight: 1.3,
98
106
  },
99
107
  h4: {
100
- color: '#4D3019',
108
+ color: "#4D3019",
101
109
  fontWeight: 600,
102
- fontSize: '1.5rem',
110
+ fontSize: "1.5rem",
103
111
  lineHeight: 1.4,
104
112
  },
105
113
  h5: {
106
- color: '#4D3019',
114
+ color: "#4D3019",
107
115
  fontWeight: 600,
108
- fontSize: '1.25rem',
116
+ fontSize: "1.25rem",
109
117
  lineHeight: 1.4,
110
118
  },
111
119
  h6: {
112
- color: '#4D3019',
120
+ color: "#4D3019",
113
121
  fontWeight: 600,
114
- fontSize: '1rem',
122
+ fontSize: "1rem",
115
123
  lineHeight: 1.4,
116
124
  },
117
125
  body1: {
118
- color: '#4D3019',
126
+ color: "#4D3019",
119
127
  fontWeight: 400,
120
- fontSize: '1rem',
128
+ fontSize: "1rem",
121
129
  lineHeight: 1.5,
122
130
  },
123
131
  body2: {
124
- color: '#826E5C',
132
+ color: "#826E5C",
125
133
  fontWeight: 400,
126
- fontSize: '0.875rem',
134
+ fontSize: "0.875rem",
127
135
  lineHeight: 1.5,
128
136
  },
129
137
  subtitle1: {
130
- color: '#4D3019',
138
+ color: "#4D3019",
131
139
  fontWeight: 500,
132
- fontSize: '1rem',
140
+ fontSize: "1rem",
133
141
  lineHeight: 1.5,
134
142
  },
135
143
  subtitle2: {
136
- color: '#826E5C',
144
+ color: "#826E5C",
137
145
  fontWeight: 500,
138
- fontSize: '0.875rem',
146
+ fontSize: "0.875rem",
139
147
  lineHeight: 1.5,
140
148
  },
141
149
  button: {
142
- color: '#4D3019',
150
+ color: "#4D3019",
143
151
  fontWeight: 500,
144
- fontSize: '0.875rem',
152
+ fontSize: "0.875rem",
145
153
  lineHeight: 1.75,
146
- textTransform: 'none',
154
+ textTransform: "none",
147
155
  },
148
156
  caption: {
149
- color: '#826E5C',
157
+ color: "#826E5C",
150
158
  fontWeight: 400,
151
- fontSize: '0.75rem',
159
+ fontSize: "0.75rem",
152
160
  lineHeight: 1.66,
153
161
  },
154
162
  overline: {
155
- color: '#826E5C',
163
+ color: "#826E5C",
156
164
  fontWeight: 500,
157
- fontSize: '0.75rem',
165
+ fontSize: "0.75rem",
158
166
  lineHeight: 2.66,
159
- textTransform: 'uppercase',
160
- letterSpacing: '0.08em',
167
+ textTransform: "uppercase",
168
+ letterSpacing: "0.08em",
161
169
  },
162
170
  },
163
171
  shape: {
@@ -176,89 +184,89 @@ const GPTheme = material.createTheme({
176
184
  MuiLink: {
177
185
  styleOverrides: {
178
186
  root: {
179
- color: '#4871cf',
180
- textDecorationColor: '#4871cf',
181
- '&:hover': {
182
- color: '#4871cf',
183
- textDecorationColor: '#4871cf',
187
+ color: "#4871cf",
188
+ textDecorationColor: "#4871cf",
189
+ "&:hover": {
190
+ color: "#4871cf",
191
+ textDecorationColor: "#4871cf",
184
192
  },
185
- '&:active': {
186
- color: '#FFEDD1',
193
+ "&:active": {
194
+ color: "#FFEDD1",
195
+ },
196
+ "&:visited": {
197
+ color: "#2d4783",
187
198
  },
188
- '&:visited': {
189
- color: '#2d4783',
190
- }
191
199
  },
192
200
  underlineAlways: {
193
- color: '#4871cf',
194
- textDecorationColor: '#4871cf',
195
- }
201
+ color: "#4871cf",
202
+ textDecorationColor: "#4871cf",
203
+ },
196
204
  },
197
205
  },
198
206
  MuiTypography: {
199
207
  defaultProps: {
200
208
  variantMapping: {
201
- h1: 'h1',
202
- h2: 'h2',
203
- h3: 'h3',
204
- h4: 'h4',
205
- h5: 'h5',
206
- h6: 'h6',
207
- subtitle1: 'p',
208
- subtitle2: 'p',
209
- body1: 'p',
210
- body2: 'p',
209
+ h1: "h1",
210
+ h2: "h2",
211
+ h3: "h3",
212
+ h4: "h4",
213
+ h5: "h5",
214
+ h6: "h6",
215
+ subtitle1: "p",
216
+ subtitle2: "p",
217
+ body1: "p",
218
+ body2: "p",
211
219
  },
212
220
  },
213
221
  },
214
222
  MuiCssBaseline: {
215
223
  styleOverrides: {
216
224
  body: {
217
- WebkitFontSmoothing: 'antialiased',
218
- MozOsxFontSmoothing: 'grayscale',
219
- backgroundColor: '#FDFCEE',
220
- color: '#4D3019',
225
+ WebkitFontSmoothing: "antialiased",
226
+ MozOsxFontSmoothing: "grayscale",
227
+ backgroundColor: "#FDFCEE",
228
+ color: "#4D3019",
221
229
  },
222
230
  'input[type="checkbox"], input[type="radio"]': {
223
- accentColor: '#FF9ecb',
231
+ accentColor: "#FF9ecb",
224
232
  },
225
- 'h1, h2, h3, h4, h5, h6': {
226
- fontWeight: 'inherit !important',
233
+ "h1, h2, h3, h4, h5, h6": {
234
+ fontWeight: "inherit !important",
227
235
  },
228
- '.MuiTypography-h1': {
229
- fontWeight: '700 !important',
236
+ ".MuiTypography-h1": {
237
+ fontWeight: "700 !important",
230
238
  },
231
- '.MuiTypography-h2': {
232
- fontWeight: '700 !important',
239
+ ".MuiTypography-h2": {
240
+ fontWeight: "700 !important",
233
241
  },
234
- '.MuiTypography-h3': {
235
- fontWeight: '600 !important',
242
+ ".MuiTypography-h3": {
243
+ fontWeight: "600 !important",
236
244
  },
237
- '.MuiTypography-h4': {
238
- fontWeight: '600 !important',
245
+ ".MuiTypography-h4": {
246
+ fontWeight: "600 !important",
239
247
  },
240
- '.MuiTypography-h5': {
241
- fontWeight: '600 !important',
248
+ ".MuiTypography-h5": {
249
+ fontWeight: "600 !important",
242
250
  },
243
- '.MuiTypography-h6': {
244
- fontWeight: '600 !important',
251
+ ".MuiTypography-h6": {
252
+ fontWeight: "600 !important",
245
253
  },
246
- 'a, a.MuiLink-root': {
247
- color: '#4871cf !important',
248
- '&:hover': {
249
- color: '#4871cf !important',
254
+ "a, a.MuiLink-root": {
255
+ color: "#4871cf !important",
256
+ "&:hover": {
257
+ color: "#4871cf !important",
258
+ },
259
+ "&:visited": {
260
+ color: "#2d4783 !important",
250
261
  },
251
- '&:visited': {
252
- color: '#2d4783 !important',
253
- }
254
262
  },
255
263
  },
256
264
  },
257
265
  },
258
- appName: 'GPDocs',
266
+ appName: "GPDocs",
259
267
  contact: {
260
- email: 'team@gpdocs.co.nz'
261
- }
268
+ email: "team@gpdocs.co.nz",
269
+ },
262
270
  });
263
271
 
264
272
  exports.default = GPTheme;
@@ -1 +1 @@
1
- {"version":3,"file":"GPTheme.js","sources":["../../../../src/themes/GPTheme.tsx"],"sourcesContent":["import { createTheme } from \"@mui/material\";\r\n\r\nconst GPTheme = createTheme({\r\n palette: {\r\n mode: 'light',\r\n primary: {\r\n main: '#4871cf',\r\n light: '#4871cf',\r\n dark: '#4871cf',\r\n contrastText: '#FFFFFF',\r\n },\r\n secondary: {\r\n main: '#a4d6ff',\r\n light: '#a4d6ff',\r\n dark: '#a4d6ff',\r\n contrastText: '#FFFFFF',\r\n },\r\n error: {\r\n main: '#F56B6B',\r\n light: '#F56B6B',\r\n dark: '#F56B6B',\r\n contrastText: '#FFFFFF',\r\n },\r\n warning: {\r\n main: '#F5D76E',\r\n light: '#F5D76E',\r\n dark: '#F5D76E',\r\n contrastText: '#FFFBFF',\r\n },\r\n info: {\r\n main: '#F5A623',\r\n light: '#F5A623',\r\n dark: '#F5A623',\r\n contrastText: '#FFFFFF',\r\n },\r\n success: {\r\n main: '#A3D977',\r\n light: '#A3D977',\r\n dark: '#A3D977',\r\n contrastText: '#FFFFFF',\r\n },\r\n background: {\r\n default: '#FDFCEE',\r\n paper: '#FEFDF7',\r\n },\r\n text: {\r\n primary: '#4D3019',\r\n secondary: '#826E5C',\r\n disabled: '#93908F',\r\n },\r\n divider: '#C6C7C0',\r\n accent: {\r\n main: '#FF9ecb',\r\n },\r\n dark: {\r\n main: '#4D3019',\r\n },\r\n light: {\r\n main: '#FEFDF7',\r\n },\r\n markedRead: {\r\n main: '#A3D977',\r\n },\r\n custom: {\r\n iconColor: '#4871cf',\r\n primaryButtonTextColor: '#FFFFFF',\r\n readByBackgroundColor: '#4871cf1a',\r\n stepIndicatorTextColor: '#FFFFFF',\r\n markAsReadBackgroundColor: '#4871cf1a',\r\n markAsReadBorderColor: '#4871cf',\r\n tabBackgroundColor: '#4871cf1a',\r\n statusBarBackgroundColor: '#a4d6ff',\r\n },\r\n },\r\n typography: {\r\n fontFamily: ['Inter', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'sans-serif'].join(','),\r\n h1: {\r\n color: '#4D3019',\r\n fontWeight: 700,\r\n fontSize: '2.5rem',\r\n lineHeight: 1.2,\r\n },\r\n h2: {\r\n color: '#4D3019',\r\n fontWeight: 700,\r\n fontSize: '2rem',\r\n lineHeight: 1.3,\r\n },\r\n h3: {\r\n color: '#4D3019',\r\n fontWeight: 600,\r\n fontSize: '1.75rem',\r\n lineHeight: 1.3,\r\n },\r\n h4: {\r\n color: '#4D3019',\r\n fontWeight: 600,\r\n fontSize: '1.5rem',\r\n lineHeight: 1.4,\r\n },\r\n h5: {\r\n color: '#4D3019',\r\n fontWeight: 600,\r\n fontSize: '1.25rem',\r\n lineHeight: 1.4,\r\n },\r\n h6: {\r\n color: '#4D3019',\r\n fontWeight: 600,\r\n fontSize: '1rem',\r\n lineHeight: 1.4,\r\n },\r\n body1: {\r\n color: '#4D3019',\r\n fontWeight: 400,\r\n fontSize: '1rem',\r\n lineHeight: 1.5,\r\n },\r\n body2: {\r\n color: '#826E5C',\r\n fontWeight: 400,\r\n fontSize: '0.875rem',\r\n lineHeight: 1.5,\r\n },\r\n subtitle1: {\r\n color: '#4D3019',\r\n fontWeight: 500,\r\n fontSize: '1rem',\r\n lineHeight: 1.5,\r\n },\r\n subtitle2: {\r\n color: '#826E5C',\r\n fontWeight: 500,\r\n fontSize: '0.875rem',\r\n lineHeight: 1.5,\r\n },\r\n button: {\r\n color: '#4D3019',\r\n fontWeight: 500,\r\n fontSize: '0.875rem',\r\n lineHeight: 1.75,\r\n textTransform: 'none',\r\n },\r\n caption: {\r\n color: '#826E5C',\r\n fontWeight: 400,\r\n fontSize: '0.75rem',\r\n lineHeight: 1.66,\r\n },\r\n overline: {\r\n color: '#826E5C',\r\n fontWeight: 500,\r\n fontSize: '0.75rem',\r\n lineHeight: 2.66,\r\n textTransform: 'uppercase',\r\n letterSpacing: '0.08em',\r\n },\r\n },\r\n shape: {\r\n borderRadius: 4,\r\n },\r\n breakpoints: {\r\n values: {\r\n xs: 320,\r\n sm: 640,\r\n md: 768,\r\n lg: 1024,\r\n xl: 1280,\r\n },\r\n },\r\n components: {\r\n MuiLink: {\r\n styleOverrides: {\r\n root: {\r\n color: '#4871cf',\r\n textDecorationColor: '#4871cf',\r\n '&:hover': {\r\n color: '#4871cf',\r\n textDecorationColor: '#4871cf',\r\n },\r\n '&:active': {\r\n color: '#FFEDD1',\r\n },\r\n '&:visited': {\r\n color: '#2d4783',\r\n }\r\n },\r\n underlineAlways: {\r\n color: '#4871cf',\r\n textDecorationColor: '#4871cf',\r\n }\r\n },\r\n },\r\n MuiTypography: {\r\n defaultProps: {\r\n variantMapping: {\r\n h1: 'h1',\r\n h2: 'h2',\r\n h3: 'h3',\r\n h4: 'h4',\r\n h5: 'h5',\r\n h6: 'h6',\r\n subtitle1: 'p',\r\n subtitle2: 'p',\r\n body1: 'p',\r\n body2: 'p',\r\n },\r\n },\r\n },\r\n MuiCssBaseline: {\r\n styleOverrides: {\r\n body: {\r\n WebkitFontSmoothing: 'antialiased',\r\n MozOsxFontSmoothing: 'grayscale',\r\n backgroundColor: '#FDFCEE',\r\n color: '#4D3019',\r\n },\r\n 'input[type=\"checkbox\"], input[type=\"radio\"]': {\r\n accentColor: '#FF9ecb',\r\n },\r\n 'h1, h2, h3, h4, h5, h6': {\r\n fontWeight: 'inherit !important',\r\n },\r\n '.MuiTypography-h1': {\r\n fontWeight: '700 !important',\r\n },\r\n '.MuiTypography-h2': {\r\n fontWeight: '700 !important',\r\n },\r\n '.MuiTypography-h3': {\r\n fontWeight: '600 !important',\r\n },\r\n '.MuiTypography-h4': {\r\n fontWeight: '600 !important',\r\n },\r\n '.MuiTypography-h5': {\r\n fontWeight: '600 !important',\r\n },\r\n '.MuiTypography-h6': {\r\n fontWeight: '600 !important',\r\n },\r\n 'a, a.MuiLink-root': {\r\n color: '#4871cf !important',\r\n '&:hover': {\r\n color: '#4871cf !important',\r\n },\r\n '&:visited': {\r\n color: '#2d4783 !important',\r\n }\r\n },\r\n },\r\n },\r\n },\r\n appName: 'GPDocs',\r\n contact: {\r\n email: 'team@gpdocs.co.nz'\r\n }\r\n});\r\n\r\nexport default GPTheme"],"names":["createTheme"],"mappings":"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"}
1
+ {"version":3,"file":"GPTheme.js","sources":["../../../../src/themes/GPTheme.tsx"],"sourcesContent":["import { createTheme } from \"@mui/material\";\r\n\r\nconst GPTheme = createTheme({\r\n palette: {\r\n mode: \"light\",\r\n primary: {\r\n main: \"#4871cf\",\r\n light: \"#4871cf\",\r\n dark: \"#4871cf\",\r\n contrastText: \"#FFFFFF\",\r\n },\r\n secondary: {\r\n main: \"#a4d6ff\",\r\n light: \"#a4d6ff\",\r\n dark: \"#a4d6ff\",\r\n contrastText: \"#FFFFFF\",\r\n },\r\n error: {\r\n main: \"#F56B6B\",\r\n light: \"#F56B6B\",\r\n dark: \"#F56B6B\",\r\n contrastText: \"#FFFFFF\",\r\n },\r\n warning: {\r\n main: \"#F5D76E\",\r\n light: \"#F5D76E\",\r\n dark: \"#F5D76E\",\r\n contrastText: \"#FFFBFF\",\r\n },\r\n info: {\r\n main: \"#F5A623\",\r\n light: \"#F5A623\",\r\n dark: \"#F5A623\",\r\n contrastText: \"#FFFFFF\",\r\n },\r\n success: {\r\n main: \"#A3D977\",\r\n light: \"#A3D977\",\r\n dark: \"#A3D977\",\r\n contrastText: \"#FFFFFF\",\r\n },\r\n background: {\r\n default: \"#FDFCEE\",\r\n paper: \"#FEFDF7\",\r\n },\r\n text: {\r\n primary: \"#4D3019\",\r\n secondary: \"#826E5C\",\r\n disabled: \"#93908F\",\r\n },\r\n divider: \"#C6C7C0\",\r\n accent: {\r\n main: \"#FF9ecb\",\r\n },\r\n dark: {\r\n main: \"#4D3019\",\r\n },\r\n light: {\r\n main: \"#FEFDF7\",\r\n },\r\n markedRead: {\r\n main: \"#A3D977\",\r\n },\r\n custom: {\r\n iconColor: \"#4871cf\",\r\n primaryButtonTextColor: \"#FFFFFF\",\r\n readByBackgroundColor: \"#4871cf1a\",\r\n stepIndicatorTextColor: \"#FFFFFF\",\r\n markAsReadBackgroundColor: \"#4871cf1a\",\r\n markAsReadBorderColor: \"#4871cf\",\r\n tabBackgroundColor: \"#a4d6ff1e\",\r\n statusBarBackgroundColor: \"#a4d6ff\",\r\n tableOfContentsColor: \"#A4D6FF1D\",\r\n },\r\n },\r\n typography: {\r\n fontFamily: [\r\n \"Inter\",\r\n \"-apple-system\",\r\n \"BlinkMacSystemFont\",\r\n \"Segoe UI\",\r\n \"Roboto\",\r\n \"sans-serif\",\r\n ].join(\",\"),\r\n h1: {\r\n color: \"#4D3019\",\r\n fontWeight: 700,\r\n fontSize: \"2.5rem\",\r\n lineHeight: 1.2,\r\n },\r\n h2: {\r\n color: \"#4D3019\",\r\n fontWeight: 700,\r\n fontSize: \"2rem\",\r\n lineHeight: 1.3,\r\n },\r\n h3: {\r\n color: \"#4D3019\",\r\n fontWeight: 600,\r\n fontSize: \"1.75rem\",\r\n lineHeight: 1.3,\r\n },\r\n h4: {\r\n color: \"#4D3019\",\r\n fontWeight: 600,\r\n fontSize: \"1.5rem\",\r\n lineHeight: 1.4,\r\n },\r\n h5: {\r\n color: \"#4D3019\",\r\n fontWeight: 600,\r\n fontSize: \"1.25rem\",\r\n lineHeight: 1.4,\r\n },\r\n h6: {\r\n color: \"#4D3019\",\r\n fontWeight: 600,\r\n fontSize: \"1rem\",\r\n lineHeight: 1.4,\r\n },\r\n body1: {\r\n color: \"#4D3019\",\r\n fontWeight: 400,\r\n fontSize: \"1rem\",\r\n lineHeight: 1.5,\r\n },\r\n body2: {\r\n color: \"#826E5C\",\r\n fontWeight: 400,\r\n fontSize: \"0.875rem\",\r\n lineHeight: 1.5,\r\n },\r\n subtitle1: {\r\n color: \"#4D3019\",\r\n fontWeight: 500,\r\n fontSize: \"1rem\",\r\n lineHeight: 1.5,\r\n },\r\n subtitle2: {\r\n color: \"#826E5C\",\r\n fontWeight: 500,\r\n fontSize: \"0.875rem\",\r\n lineHeight: 1.5,\r\n },\r\n button: {\r\n color: \"#4D3019\",\r\n fontWeight: 500,\r\n fontSize: \"0.875rem\",\r\n lineHeight: 1.75,\r\n textTransform: \"none\",\r\n },\r\n caption: {\r\n color: \"#826E5C\",\r\n fontWeight: 400,\r\n fontSize: \"0.75rem\",\r\n lineHeight: 1.66,\r\n },\r\n overline: {\r\n color: \"#826E5C\",\r\n fontWeight: 500,\r\n fontSize: \"0.75rem\",\r\n lineHeight: 2.66,\r\n textTransform: \"uppercase\",\r\n letterSpacing: \"0.08em\",\r\n },\r\n },\r\n shape: {\r\n borderRadius: 4,\r\n },\r\n breakpoints: {\r\n values: {\r\n xs: 320,\r\n sm: 640,\r\n md: 768,\r\n lg: 1024,\r\n xl: 1280,\r\n },\r\n },\r\n components: {\r\n MuiLink: {\r\n styleOverrides: {\r\n root: {\r\n color: \"#4871cf\",\r\n textDecorationColor: \"#4871cf\",\r\n \"&:hover\": {\r\n color: \"#4871cf\",\r\n textDecorationColor: \"#4871cf\",\r\n },\r\n \"&:active\": {\r\n color: \"#FFEDD1\",\r\n },\r\n \"&:visited\": {\r\n color: \"#2d4783\",\r\n },\r\n },\r\n underlineAlways: {\r\n color: \"#4871cf\",\r\n textDecorationColor: \"#4871cf\",\r\n },\r\n },\r\n },\r\n MuiTypography: {\r\n defaultProps: {\r\n variantMapping: {\r\n h1: \"h1\",\r\n h2: \"h2\",\r\n h3: \"h3\",\r\n h4: \"h4\",\r\n h5: \"h5\",\r\n h6: \"h6\",\r\n subtitle1: \"p\",\r\n subtitle2: \"p\",\r\n body1: \"p\",\r\n body2: \"p\",\r\n },\r\n },\r\n },\r\n MuiCssBaseline: {\r\n styleOverrides: {\r\n body: {\r\n WebkitFontSmoothing: \"antialiased\",\r\n MozOsxFontSmoothing: \"grayscale\",\r\n backgroundColor: \"#FDFCEE\",\r\n color: \"#4D3019\",\r\n },\r\n 'input[type=\"checkbox\"], input[type=\"radio\"]': {\r\n accentColor: \"#FF9ecb\",\r\n },\r\n \"h1, h2, h3, h4, h5, h6\": {\r\n fontWeight: \"inherit !important\",\r\n },\r\n \".MuiTypography-h1\": {\r\n fontWeight: \"700 !important\",\r\n },\r\n \".MuiTypography-h2\": {\r\n fontWeight: \"700 !important\",\r\n },\r\n \".MuiTypography-h3\": {\r\n fontWeight: \"600 !important\",\r\n },\r\n \".MuiTypography-h4\": {\r\n fontWeight: \"600 !important\",\r\n },\r\n \".MuiTypography-h5\": {\r\n fontWeight: \"600 !important\",\r\n },\r\n \".MuiTypography-h6\": {\r\n fontWeight: \"600 !important\",\r\n },\r\n \"a, a.MuiLink-root\": {\r\n color: \"#4871cf !important\",\r\n \"&:hover\": {\r\n color: \"#4871cf !important\",\r\n },\r\n \"&:visited\": {\r\n color: \"#2d4783 !important\",\r\n },\r\n },\r\n },\r\n },\r\n },\r\n appName: \"GPDocs\",\r\n contact: {\r\n email: \"team@gpdocs.co.nz\",\r\n },\r\n});\r\n\r\nexport default GPTheme;\r\n"],"names":["createTheme"],"mappings":"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"}
@@ -1,4 +1,4 @@
1
- import React from 'react';
1
+ import React from "react";
2
2
  interface ConcertinaSection {
3
3
  id: string;
4
4
  title: string;