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