@xyo-network/react-theme 2.77.0 → 2.77.1

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.
@@ -1,393 +1,2 @@
1
- "use strict";
2
- var __defProp = Object.defineProperty;
3
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
- var __getOwnPropNames = Object.getOwnPropertyNames;
5
- var __hasOwnProp = Object.prototype.hasOwnProperty;
6
- var __export = (target, all) => {
7
- for (var name in all)
8
- __defProp(target, name, { get: all[name], enumerable: true });
9
- };
10
- var __copyProps = (to, from, except, desc) => {
11
- if (from && typeof from === "object" || typeof from === "function") {
12
- for (let key of __getOwnPropNames(from))
13
- if (!__hasOwnProp.call(to, key) && key !== except)
14
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
- }
16
- return to;
17
- };
18
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
-
20
- // src/index.ts
21
- var src_exports = {};
22
- __export(src_exports, {
23
- appThemeOptions: () => appThemeOptions,
24
- components: () => components,
25
- fontFamilyOs: () => fontFamilyOs,
26
- fontFamilyPrimary: () => fontFamilyPrimary,
27
- osThemeOptions: () => osThemeOptions,
28
- partialAppDarkThemeOptions: () => partialAppDarkThemeOptions,
29
- partialAppLightThemeOptions: () => partialAppLightThemeOptions,
30
- partialDarkThemeOptions: () => partialDarkThemeOptions,
31
- partialLightThemeOptions: () => partialLightThemeOptions,
32
- themeOptions: () => themeOptions,
33
- typography: () => typography,
34
- webThemeOptions: () => webThemeOptions
35
- });
36
- module.exports = __toCommonJS(src_exports);
37
-
38
- // src/appThemeOptions.tsx
39
- var import_lodash = require("@xylabs/lodash");
40
-
41
- // src/fontFamily.ts
42
- var fontFamilyPrimary = ["Lexend Deca", "Helvetica", "sans-serif"].join(",");
43
- var fontFamilyOs = ["Manrope", "Roboto", "sans-serif"].join(",");
44
-
45
- // src/themeOptions.ts
46
- var components = {
47
- MuiCard: {
48
- styleOverrides: {
49
- root: {
50
- display: "flex",
51
- flexDirection: "column",
52
- justifyContent: "space-between"
53
- }
54
- }
55
- },
56
- MuiCardHeader: {
57
- styleOverrides: {
58
- content: {
59
- display: "flex",
60
- flexDirection: "column",
61
- overflow: "hidden"
62
- }
63
- }
64
- },
65
- MuiLink: {
66
- defaultProps: {
67
- underline: "none"
68
- },
69
- styleOverrides: {
70
- root: {
71
- "&:hover": {
72
- filter: "brightness(75%)"
73
- }
74
- }
75
- }
76
- },
77
- MuiTableCell: {
78
- styleOverrides: {
79
- body: {
80
- fontFamily: "monospace",
81
- whiteSpace: "nowrap"
82
- },
83
- head: {
84
- fontWeight: 700,
85
- whiteSpace: "nowrap"
86
- }
87
- }
88
- }
89
- };
90
- var typography = {
91
- body1: {
92
- lineHeight: 1.57
93
- },
94
- body2: {
95
- lineHeight: 1.57
96
- },
97
- button: {
98
- fontSize: "1rem",
99
- textTransform: "inherit"
100
- },
101
- fontFamily: fontFamilyPrimary,
102
- fontWeightBold: 700,
103
- fontWeightLight: 200,
104
- fontWeightMedium: 300,
105
- fontWeightRegular: 400,
106
- h1: {
107
- fontFamily: fontFamilyPrimary,
108
- fontSize: "4rem"
109
- },
110
- h2: {
111
- fontFamily: fontFamilyPrimary,
112
- fontSize: "2.4rem"
113
- },
114
- h3: {
115
- fontFamily: fontFamilyPrimary,
116
- fontSize: "2.24rem"
117
- },
118
- h4: {
119
- fontSize: "2rem"
120
- },
121
- h5: {
122
- fontSize: "1.5rem"
123
- },
124
- h6: {
125
- fontSize: "1.1rem"
126
- },
127
- subtitle1: {
128
- opacity: "70%"
129
- },
130
- subtitle2: {
131
- opacity: "70%"
132
- }
133
- };
134
- var themeOptions = {
135
- components,
136
- shape: {
137
- borderRadius: 8
138
- },
139
- spacing: 16,
140
- typography
141
- };
142
-
143
- // src/appThemeOptions.tsx
144
- var partialAppThemeOptions = {
145
- components: {
146
- MuiTypography: {
147
- styleOverrides: {
148
- root: ({ ownerState }) => {
149
- const { clamped } = ownerState;
150
- if (clamped) {
151
- const maxWidth = Number.parseInt(clamped, 10);
152
- return {
153
- overflow: "hidden",
154
- textOverflow: "ellipsis",
155
- whiteSpace: "nowrap",
156
- width: `clamp(1%, 100%, ${maxWidth}px)`
157
- };
158
- }
159
- }
160
- }
161
- }
162
- },
163
- spacing: 8
164
- };
165
- var appThemeOptions = (0, import_lodash.merge)({}, themeOptions, partialAppThemeOptions);
166
-
167
- // src/OsTheme/osThemeOptions.tsx
168
- var import_lodash2 = require("@xylabs/lodash");
169
-
170
- // src/OsTheme/Components.tsx
171
- var components2 = {
172
- MuiCard: {
173
- defaultProps: {
174
- elevation: 0
175
- },
176
- styleOverrides: {
177
- root: {
178
- display: "flex",
179
- flexDirection: "column",
180
- justifyContent: "space-between"
181
- }
182
- }
183
- },
184
- MuiCardHeader: {
185
- styleOverrides: {
186
- content: {
187
- display: "flex",
188
- flexDirection: "column",
189
- overflow: "hidden"
190
- }
191
- }
192
- },
193
- MuiLink: {
194
- defaultProps: {
195
- underline: "none"
196
- },
197
- styleOverrides: {
198
- root: {
199
- "&:hover": {
200
- filter: "brightness(75%)"
201
- }
202
- }
203
- }
204
- },
205
- MuiPaper: {
206
- defaultProps: {
207
- elevation: 0
208
- }
209
- },
210
- MuiTableCell: {
211
- styleOverrides: {
212
- body: {
213
- fontFamily: "monospace",
214
- whiteSpace: "nowrap"
215
- },
216
- head: {
217
- fontWeight: 700,
218
- whiteSpace: "nowrap"
219
- }
220
- }
221
- }
222
- };
223
-
224
- // src/OsTheme/Typography.tsx
225
- var typography2 = {
226
- body1: {
227
- lineHeight: 1.57
228
- },
229
- body2: {
230
- lineHeight: 1.57
231
- },
232
- button: {
233
- fontSize: "1rem",
234
- textTransform: "inherit"
235
- },
236
- fontFamily: fontFamilyOs,
237
- fontWeightBold: 700,
238
- fontWeightLight: 300,
239
- fontWeightMedium: 600,
240
- fontWeightRegular: 500,
241
- h1: {
242
- fontSize: "4rem"
243
- },
244
- h2: {
245
- fontSize: "2.4rem"
246
- },
247
- h3: {
248
- fontSize: "2.24rem"
249
- },
250
- h4: {
251
- fontSize: "2rem"
252
- },
253
- h5: {
254
- fontSize: "1.5rem"
255
- },
256
- h6: {
257
- fontSize: "1.1rem"
258
- },
259
- subtitle1: {
260
- opacity: "70%"
261
- },
262
- subtitle2: {
263
- opacity: "70%"
264
- }
265
- };
266
-
267
- // src/OsTheme/DarkMode.tsx
268
- var palette = {
269
- background: {
270
- default: "#141319",
271
- paper: "#1C1B20"
272
- },
273
- error: {
274
- main: "#ffb4ab"
275
- },
276
- mode: "dark",
277
- primary: {
278
- main: "#C9BFFA"
279
- },
280
- secondary: {
281
- main: "#C9C3DA"
282
- },
283
- text: {
284
- primary: "#100029",
285
- secondary: "#212023"
286
- }
287
- };
288
- var osThemeOptionsDarkMode = {
289
- components: components2,
290
- palette,
291
- shape: {
292
- borderRadius: 10
293
- },
294
- spacing: 16,
295
- typography: typography2
296
- };
297
-
298
- // src/OsTheme/LightMode.tsx
299
- var palette2 = {
300
- background: {
301
- default: "#FFFFFF",
302
- paper: "#F6F4ED"
303
- },
304
- error: {
305
- main: "#BA1A1A"
306
- },
307
- mode: "light",
308
- primary: {
309
- main: "#100029"
310
- },
311
- secondary: {
312
- main: "#A060E0"
313
- },
314
- text: {
315
- primary: "#100029",
316
- secondary: "#212023"
317
- }
318
- };
319
- var osThemeOptionsLightMode = {
320
- components: components2,
321
- palette: palette2,
322
- shape: {
323
- borderRadius: 10
324
- },
325
- spacing: 16,
326
- typography: typography2
327
- };
328
-
329
- // src/OsTheme/osThemeOptions.tsx
330
- var osThemeOptions = (0, import_lodash2.merge)({}, osThemeOptionsDarkMode, osThemeOptionsLightMode);
331
-
332
- // src/partialDarkThemeOptions.tsx
333
- var import_material = require("@mui/material");
334
- var import_lodash3 = require("@xylabs/lodash");
335
- var appComponents = {
336
- MuiPaper: {
337
- defaultProps: {
338
- variant: "elevation"
339
- }
340
- }
341
- };
342
- var partialDarkThemeOptions = {
343
- palette: {
344
- background: {
345
- default: (0, import_material.darken)("#171626", 0.1),
346
- paper: "#171626"
347
- },
348
- mode: "dark",
349
- primary: {
350
- main: "#9993F5"
351
- },
352
- secondary: {
353
- main: "#8EC8FF"
354
- }
355
- }
356
- };
357
- var partialAppDarkThemeOptions = (0, import_lodash3.merge)({}, partialDarkThemeOptions, { components: appComponents });
358
-
359
- // src/partialLightThemeOptions.tsx
360
- var import_lodash4 = require("@xylabs/lodash");
361
- var partialLightThemeOptions = {
362
- palette: {
363
- mode: "light",
364
- primary: {
365
- main: "#1f1a66"
366
- },
367
- secondary: {
368
- main: "#0f68c9"
369
- }
370
- }
371
- };
372
- var partialAppLightThemeOptions = (0, import_lodash4.merge)({}, partialLightThemeOptions);
373
-
374
- // src/webThemeOptions.tsx
375
- var import_lodash5 = require("@xylabs/lodash");
376
- var partialWebThemeOptions = {};
377
- var webThemeOptions = (0, import_lodash5.merge)({}, themeOptions, partialWebThemeOptions);
378
- // Annotate the CommonJS export names for ESM import in node:
379
- 0 && (module.exports = {
380
- appThemeOptions,
381
- components,
382
- fontFamilyOs,
383
- fontFamilyPrimary,
384
- osThemeOptions,
385
- partialAppDarkThemeOptions,
386
- partialAppLightThemeOptions,
387
- partialDarkThemeOptions,
388
- partialLightThemeOptions,
389
- themeOptions,
390
- typography,
391
- webThemeOptions
392
- });
1
+ "use strict";var s=Object.defineProperty;var v=Object.getOwnPropertyDescriptor;var S=Object.getOwnPropertyNames;var w=Object.prototype.hasOwnProperty;var M=(o,e)=>{for(var r in e)s(o,r,{get:e[r],enumerable:!0})},z=(o,e,r,h)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of S(e))!w.call(o,i)&&i!==r&&s(o,i,{get:()=>e[i],enumerable:!(h=v(e,i))||h.enumerable});return o};var C=o=>z(s({},"__esModule",{value:!0}),o);var E={};M(E,{appThemeOptions:()=>k,components:()=>f,fontFamilyOs:()=>a,fontFamilyPrimary:()=>t,osThemeOptions:()=>L,partialAppDarkThemeOptions:()=>H,partialAppLightThemeOptions:()=>R,partialDarkThemeOptions:()=>T,partialLightThemeOptions:()=>b,themeOptions:()=>n,typography:()=>l,webThemeOptions:()=>j});module.exports=C(E);var d=require("@xylabs/lodash");var t=["Lexend Deca","Helvetica","sans-serif"].join(","),a=["Manrope","Roboto","sans-serif"].join(",");var f={MuiCard:{styleOverrides:{root:{display:"flex",flexDirection:"column",justifyContent:"space-between"}}},MuiCardHeader:{styleOverrides:{content:{display:"flex",flexDirection:"column",overflow:"hidden"}}},MuiLink:{defaultProps:{underline:"none"},styleOverrides:{root:{"&:hover":{filter:"brightness(75%)"}}}},MuiTableCell:{styleOverrides:{body:{fontFamily:"monospace",whiteSpace:"nowrap"},head:{fontWeight:700,whiteSpace:"nowrap"}}}},l={body1:{lineHeight:1.57},body2:{lineHeight:1.57},button:{fontSize:"1rem",textTransform:"inherit"},fontFamily:t,fontWeightBold:700,fontWeightLight:200,fontWeightMedium:300,fontWeightRegular:400,h1:{fontFamily:t,fontSize:"4rem"},h2:{fontFamily:t,fontSize:"2.4rem"},h3:{fontFamily:t,fontSize:"2.24rem"},h4:{fontSize:"2rem"},h5:{fontSize:"1.5rem"},h6:{fontSize:"1.1rem"},subtitle1:{opacity:"70%"},subtitle2:{opacity:"70%"}},n={components:f,shape:{borderRadius:8},spacing:16,typography:l};var W={components:{MuiTypography:{styleOverrides:{root:({ownerState:o})=>{let{clamped:e}=o;if(e)return{overflow:"hidden",textOverflow:"ellipsis",whiteSpace:"nowrap",width:`clamp(1%, 100%, ${Number.parseInt(e,10)}px)`}}}}},spacing:8},k=(0,d.merge)({},n,W);var O=require("@xylabs/lodash");var p={MuiCard:{defaultProps:{elevation:0},styleOverrides:{root:{display:"flex",flexDirection:"column",justifyContent:"space-between"}}},MuiCardHeader:{styleOverrides:{content:{display:"flex",flexDirection:"column",overflow:"hidden"}}},MuiLink:{defaultProps:{underline:"none"},styleOverrides:{root:{"&:hover":{filter:"brightness(75%)"}}}},MuiPaper:{defaultProps:{elevation:0}},MuiTableCell:{styleOverrides:{body:{fontFamily:"monospace",whiteSpace:"nowrap"},head:{fontWeight:700,whiteSpace:"nowrap"}}}};var m={body1:{lineHeight:1.57},body2:{lineHeight:1.57},button:{fontSize:"1rem",textTransform:"inherit"},fontFamily:a,fontWeightBold:700,fontWeightLight:300,fontWeightMedium:600,fontWeightRegular:500,h1:{fontSize:"4rem"},h2:{fontSize:"2.4rem"},h3:{fontSize:"2.24rem"},h4:{fontSize:"2rem"},h5:{fontSize:"1.5rem"},h6:{fontSize:"1.1rem"},subtitle1:{opacity:"70%"},subtitle2:{opacity:"70%"}};var D={background:{default:"#141319",paper:"#1C1B20"},error:{main:"#ffb4ab"},mode:"dark",primary:{main:"#C9BFFA"},secondary:{main:"#C9C3DA"},text:{primary:"#100029",secondary:"#212023"}},c={components:p,palette:D,shape:{borderRadius:10},spacing:16,typography:m};var A={background:{default:"#FFFFFF",paper:"#F6F4ED"},error:{main:"#BA1A1A"},mode:"light",primary:{main:"#100029"},secondary:{main:"#A060E0"},text:{primary:"#100029",secondary:"#212023"}},y={components:p,palette:A,shape:{borderRadius:10},spacing:16,typography:m};var L=(0,O.merge)({},c,y);var g=require("@mui/material"),u=require("@xylabs/lodash"),P={MuiPaper:{defaultProps:{variant:"elevation"}}},T={palette:{background:{default:(0,g.darken)("#171626",.1),paper:"#171626"},mode:"dark",primary:{main:"#9993F5"},secondary:{main:"#8EC8FF"}}},H=(0,u.merge)({},T,{components:P});var x=require("@xylabs/lodash"),b={palette:{mode:"light",primary:{main:"#1f1a66"},secondary:{main:"#0f68c9"}}},R=(0,x.merge)({},b);var F=require("@xylabs/lodash");var B={},j=(0,F.merge)({},n,B);0&&(module.exports={appThemeOptions,components,fontFamilyOs,fontFamilyPrimary,osThemeOptions,partialAppDarkThemeOptions,partialAppLightThemeOptions,partialDarkThemeOptions,partialLightThemeOptions,themeOptions,typography,webThemeOptions});
393
2
  //# sourceMappingURL=index.cjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/index.ts","../../src/appThemeOptions.tsx","../../src/fontFamily.ts","../../src/themeOptions.ts","../../src/OsTheme/osThemeOptions.tsx","../../src/OsTheme/Components.tsx","../../src/OsTheme/Typography.tsx","../../src/OsTheme/DarkMode.tsx","../../src/OsTheme/LightMode.tsx","../../src/partialDarkThemeOptions.tsx","../../src/partialLightThemeOptions.tsx","../../src/webThemeOptions.tsx"],"sourcesContent":["export * from './appThemeOptions'\nexport * from './fontFamily'\nexport * from './OsTheme'\nexport * from './partialDarkThemeOptions'\nexport * from './partialLightThemeOptions'\nexport * from './themeOptions'\nexport * from './webThemeOptions'\n","import { ThemeOptions } from '@mui/material'\nimport { merge } from '@xylabs/lodash'\n\nimport { themeOptions } from './themeOptions'\n\nconst partialAppThemeOptions: ThemeOptions = {\n components: {\n MuiTypography: {\n styleOverrides: {\n root: ({ ownerState }) => {\n const { clamped } = ownerState\n\n if (clamped) {\n const maxWidth = Number.parseInt(clamped as string, 10)\n\n return {\n overflow: 'hidden',\n textOverflow: 'ellipsis',\n whiteSpace: 'nowrap',\n width: `clamp(1%, 100%, ${maxWidth}px)`,\n }\n }\n },\n },\n },\n },\n spacing: 8,\n}\n\nexport const appThemeOptions = merge({}, themeOptions, partialAppThemeOptions)\n","export const fontFamilyPrimary = ['Lexend Deca', 'Helvetica', 'sans-serif'].join(',')\nexport const fontFamilyOs = ['Manrope', 'Roboto', 'sans-serif'].join(',')\n","import { ThemeOptions } from '@mui/material'\n\nimport { fontFamilyPrimary } from './fontFamily'\n\nexport const components: ThemeOptions['components'] = {\n MuiCard: {\n styleOverrides: {\n root: {\n display: 'flex',\n flexDirection: 'column',\n justifyContent: 'space-between',\n },\n },\n },\n MuiCardHeader: {\n styleOverrides: {\n content: {\n display: 'flex',\n flexDirection: 'column',\n overflow: 'hidden',\n },\n },\n },\n MuiLink: {\n defaultProps: {\n underline: 'none',\n },\n styleOverrides: {\n root: {\n '&:hover': {\n filter: 'brightness(75%)',\n },\n },\n },\n },\n MuiTableCell: {\n styleOverrides: {\n body: {\n fontFamily: 'monospace',\n whiteSpace: 'nowrap',\n },\n head: {\n fontWeight: 700,\n whiteSpace: 'nowrap',\n },\n },\n },\n}\n\nexport const typography: ThemeOptions['typography'] = {\n body1: {\n lineHeight: 1.57,\n },\n body2: {\n lineHeight: 1.57,\n },\n button: {\n fontSize: '1rem',\n textTransform: 'inherit',\n },\n fontFamily: fontFamilyPrimary,\n fontWeightBold: 700,\n fontWeightLight: 200,\n fontWeightMedium: 300,\n fontWeightRegular: 400,\n h1: {\n fontFamily: fontFamilyPrimary,\n fontSize: '4rem',\n },\n h2: {\n fontFamily: fontFamilyPrimary,\n fontSize: '2.4rem',\n },\n h3: {\n fontFamily: fontFamilyPrimary,\n fontSize: '2.24rem',\n },\n h4: {\n fontSize: '2rem',\n },\n h5: {\n fontSize: '1.5rem',\n },\n h6: {\n fontSize: '1.1rem',\n },\n subtitle1: {\n opacity: '70%',\n },\n subtitle2: {\n opacity: '70%',\n },\n}\n\nexport const themeOptions: ThemeOptions = {\n components,\n shape: {\n borderRadius: 8,\n },\n spacing: 16,\n typography,\n}\n","import { merge } from '@xylabs/lodash'\n\nimport { osThemeOptionsDarkMode } from './DarkMode'\nimport { osThemeOptionsLightMode } from './LightMode'\n\nexport const osThemeOptions = merge({}, osThemeOptionsDarkMode, osThemeOptionsLightMode)\n","import { ThemeOptions } from '@mui/material'\n\nexport const components: ThemeOptions['components'] = {\n MuiCard: {\n defaultProps: {\n elevation: 0,\n },\n styleOverrides: {\n root: {\n display: 'flex',\n flexDirection: 'column',\n justifyContent: 'space-between',\n },\n },\n },\n MuiCardHeader: {\n styleOverrides: {\n content: {\n display: 'flex',\n flexDirection: 'column',\n overflow: 'hidden',\n },\n },\n },\n MuiLink: {\n defaultProps: {\n underline: 'none',\n },\n styleOverrides: {\n root: {\n '&:hover': {\n filter: 'brightness(75%)',\n },\n },\n },\n },\n MuiPaper: {\n defaultProps: {\n elevation: 0,\n },\n },\n MuiTableCell: {\n styleOverrides: {\n body: {\n fontFamily: 'monospace',\n whiteSpace: 'nowrap',\n },\n head: {\n fontWeight: 700,\n whiteSpace: 'nowrap',\n },\n },\n },\n}\n","import { ThemeOptions } from '@mui/material'\n\nimport { fontFamilyOs } from '../fontFamily'\n\nexport const typography: ThemeOptions['typography'] = {\n body1: {\n lineHeight: 1.57,\n },\n body2: {\n lineHeight: 1.57,\n },\n button: {\n fontSize: '1rem',\n textTransform: 'inherit',\n },\n fontFamily: fontFamilyOs,\n fontWeightBold: 700,\n fontWeightLight: 300,\n fontWeightMedium: 600,\n fontWeightRegular: 500,\n h1: {\n fontSize: '4rem',\n },\n h2: {\n fontSize: '2.4rem',\n },\n h3: {\n fontSize: '2.24rem',\n },\n h4: {\n fontSize: '2rem',\n },\n h5: {\n fontSize: '1.5rem',\n },\n h6: {\n fontSize: '1.1rem',\n },\n subtitle1: {\n opacity: '70%',\n },\n subtitle2: {\n opacity: '70%',\n },\n}\n","import { ThemeOptions } from '@mui/material'\n\nimport { components } from './Components'\nimport { typography } from './Typography'\n\nconst palette: ThemeOptions['palette'] = {\n background: {\n default: '#141319',\n paper: '#1C1B20',\n },\n error: {\n main: '#ffb4ab',\n },\n mode: 'dark',\n primary: {\n main: '#C9BFFA',\n },\n secondary: {\n main: '#C9C3DA',\n },\n text: {\n primary: '#100029',\n secondary: '#212023',\n },\n}\n\nexport const osThemeOptionsDarkMode: ThemeOptions = {\n components,\n palette,\n shape: {\n borderRadius: 10,\n },\n spacing: 16,\n typography,\n}\n","import { ThemeOptions } from '@mui/material'\n\nimport { components } from './Components'\nimport { typography } from './Typography'\n\nconst palette: ThemeOptions['palette'] = {\n background: {\n default: '#FFFFFF',\n paper: '#F6F4ED',\n },\n error: {\n main: '#BA1A1A',\n },\n mode: 'light',\n primary: {\n main: '#100029',\n },\n secondary: {\n main: '#A060E0',\n },\n text: {\n primary: '#100029',\n secondary: '#212023',\n },\n}\n\nexport const osThemeOptionsLightMode: ThemeOptions = {\n components,\n palette,\n shape: {\n borderRadius: 10,\n },\n spacing: 16,\n typography,\n}\n","import { darken, ThemeOptions } from '@mui/material'\nimport { merge } from '@xylabs/lodash'\n\nconst appComponents: ThemeOptions['components'] = {\n MuiPaper: {\n defaultProps: {\n variant: 'elevation',\n },\n },\n}\n\nexport const partialDarkThemeOptions: ThemeOptions = {\n palette: {\n background: {\n default: darken('#171626', 0.1),\n paper: '#171626',\n },\n mode: 'dark',\n primary: {\n main: '#9993F5',\n },\n secondary: {\n main: '#8EC8FF',\n },\n },\n}\n\nexport const partialAppDarkThemeOptions: ThemeOptions = merge({}, partialDarkThemeOptions, { components: appComponents })\n","import { ThemeOptions } from '@mui/material'\nimport { merge } from '@xylabs/lodash'\n\nexport const partialLightThemeOptions: ThemeOptions = {\n palette: {\n mode: 'light',\n primary: {\n main: '#1f1a66',\n },\n secondary: {\n main: '#0f68c9',\n },\n },\n}\n\nexport const partialAppLightThemeOptions: ThemeOptions = merge({}, partialLightThemeOptions)\n","import { ThemeOptions } from '@mui/material'\nimport { merge } from '@xylabs/lodash'\n\nimport { themeOptions } from './themeOptions'\n\nconst partialWebThemeOptions: ThemeOptions = {}\n\nexport const webThemeOptions = merge({}, themeOptions, partialWebThemeOptions)\n"],"mappings":"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","names":["import_lodash","components","typography","components","typography","palette","components","typography","import_lodash","import_lodash","import_lodash"]}
1
+ {"version":3,"sources":["../../src/index.ts","../../src/appThemeOptions.tsx","../../src/fontFamily.ts","../../src/themeOptions.ts","../../src/OsTheme/osThemeOptions.tsx","../../src/OsTheme/Components.tsx","../../src/OsTheme/Typography.tsx","../../src/OsTheme/DarkMode.tsx","../../src/OsTheme/LightMode.tsx","../../src/partialDarkThemeOptions.tsx","../../src/partialLightThemeOptions.tsx","../../src/webThemeOptions.tsx"],"sourcesContent":["export * from './appThemeOptions'\nexport * from './fontFamily'\nexport * from './OsTheme'\nexport * from './partialDarkThemeOptions'\nexport * from './partialLightThemeOptions'\nexport * from './themeOptions'\nexport * from './webThemeOptions'\n","import { ThemeOptions } from '@mui/material'\nimport { merge } from '@xylabs/lodash'\n\nimport { themeOptions } from './themeOptions'\n\nconst partialAppThemeOptions: ThemeOptions = {\n components: {\n MuiTypography: {\n styleOverrides: {\n root: ({ ownerState }) => {\n const { clamped } = ownerState\n\n if (clamped) {\n const maxWidth = Number.parseInt(clamped as string, 10)\n\n return {\n overflow: 'hidden',\n textOverflow: 'ellipsis',\n whiteSpace: 'nowrap',\n width: `clamp(1%, 100%, ${maxWidth}px)`,\n }\n }\n },\n },\n },\n },\n spacing: 8,\n}\n\nexport const appThemeOptions = merge({}, themeOptions, partialAppThemeOptions)\n","export const fontFamilyPrimary = ['Lexend Deca', 'Helvetica', 'sans-serif'].join(',')\nexport const fontFamilyOs = ['Manrope', 'Roboto', 'sans-serif'].join(',')\n","import { ThemeOptions } from '@mui/material'\n\nimport { fontFamilyPrimary } from './fontFamily'\n\nexport const components: ThemeOptions['components'] = {\n MuiCard: {\n styleOverrides: {\n root: {\n display: 'flex',\n flexDirection: 'column',\n justifyContent: 'space-between',\n },\n },\n },\n MuiCardHeader: {\n styleOverrides: {\n content: {\n display: 'flex',\n flexDirection: 'column',\n overflow: 'hidden',\n },\n },\n },\n MuiLink: {\n defaultProps: {\n underline: 'none',\n },\n styleOverrides: {\n root: {\n '&:hover': {\n filter: 'brightness(75%)',\n },\n },\n },\n },\n MuiTableCell: {\n styleOverrides: {\n body: {\n fontFamily: 'monospace',\n whiteSpace: 'nowrap',\n },\n head: {\n fontWeight: 700,\n whiteSpace: 'nowrap',\n },\n },\n },\n}\n\nexport const typography: ThemeOptions['typography'] = {\n body1: {\n lineHeight: 1.57,\n },\n body2: {\n lineHeight: 1.57,\n },\n button: {\n fontSize: '1rem',\n textTransform: 'inherit',\n },\n fontFamily: fontFamilyPrimary,\n fontWeightBold: 700,\n fontWeightLight: 200,\n fontWeightMedium: 300,\n fontWeightRegular: 400,\n h1: {\n fontFamily: fontFamilyPrimary,\n fontSize: '4rem',\n },\n h2: {\n fontFamily: fontFamilyPrimary,\n fontSize: '2.4rem',\n },\n h3: {\n fontFamily: fontFamilyPrimary,\n fontSize: '2.24rem',\n },\n h4: {\n fontSize: '2rem',\n },\n h5: {\n fontSize: '1.5rem',\n },\n h6: {\n fontSize: '1.1rem',\n },\n subtitle1: {\n opacity: '70%',\n },\n subtitle2: {\n opacity: '70%',\n },\n}\n\nexport const themeOptions: ThemeOptions = {\n components,\n shape: {\n borderRadius: 8,\n },\n spacing: 16,\n typography,\n}\n","import { merge } from '@xylabs/lodash'\n\nimport { osThemeOptionsDarkMode } from './DarkMode'\nimport { osThemeOptionsLightMode } from './LightMode'\n\nexport const osThemeOptions = merge({}, osThemeOptionsDarkMode, osThemeOptionsLightMode)\n","import { ThemeOptions } from '@mui/material'\n\nexport const components: ThemeOptions['components'] = {\n MuiCard: {\n defaultProps: {\n elevation: 0,\n },\n styleOverrides: {\n root: {\n display: 'flex',\n flexDirection: 'column',\n justifyContent: 'space-between',\n },\n },\n },\n MuiCardHeader: {\n styleOverrides: {\n content: {\n display: 'flex',\n flexDirection: 'column',\n overflow: 'hidden',\n },\n },\n },\n MuiLink: {\n defaultProps: {\n underline: 'none',\n },\n styleOverrides: {\n root: {\n '&:hover': {\n filter: 'brightness(75%)',\n },\n },\n },\n },\n MuiPaper: {\n defaultProps: {\n elevation: 0,\n },\n },\n MuiTableCell: {\n styleOverrides: {\n body: {\n fontFamily: 'monospace',\n whiteSpace: 'nowrap',\n },\n head: {\n fontWeight: 700,\n whiteSpace: 'nowrap',\n },\n },\n },\n}\n","import { ThemeOptions } from '@mui/material'\n\nimport { fontFamilyOs } from '../fontFamily'\n\nexport const typography: ThemeOptions['typography'] = {\n body1: {\n lineHeight: 1.57,\n },\n body2: {\n lineHeight: 1.57,\n },\n button: {\n fontSize: '1rem',\n textTransform: 'inherit',\n },\n fontFamily: fontFamilyOs,\n fontWeightBold: 700,\n fontWeightLight: 300,\n fontWeightMedium: 600,\n fontWeightRegular: 500,\n h1: {\n fontSize: '4rem',\n },\n h2: {\n fontSize: '2.4rem',\n },\n h3: {\n fontSize: '2.24rem',\n },\n h4: {\n fontSize: '2rem',\n },\n h5: {\n fontSize: '1.5rem',\n },\n h6: {\n fontSize: '1.1rem',\n },\n subtitle1: {\n opacity: '70%',\n },\n subtitle2: {\n opacity: '70%',\n },\n}\n","import { ThemeOptions } from '@mui/material'\n\nimport { components } from './Components'\nimport { typography } from './Typography'\n\nconst palette: ThemeOptions['palette'] = {\n background: {\n default: '#141319',\n paper: '#1C1B20',\n },\n error: {\n main: '#ffb4ab',\n },\n mode: 'dark',\n primary: {\n main: '#C9BFFA',\n },\n secondary: {\n main: '#C9C3DA',\n },\n text: {\n primary: '#100029',\n secondary: '#212023',\n },\n}\n\nexport const osThemeOptionsDarkMode: ThemeOptions = {\n components,\n palette,\n shape: {\n borderRadius: 10,\n },\n spacing: 16,\n typography,\n}\n","import { ThemeOptions } from '@mui/material'\n\nimport { components } from './Components'\nimport { typography } from './Typography'\n\nconst palette: ThemeOptions['palette'] = {\n background: {\n default: '#FFFFFF',\n paper: '#F6F4ED',\n },\n error: {\n main: '#BA1A1A',\n },\n mode: 'light',\n primary: {\n main: '#100029',\n },\n secondary: {\n main: '#A060E0',\n },\n text: {\n primary: '#100029',\n secondary: '#212023',\n },\n}\n\nexport const osThemeOptionsLightMode: ThemeOptions = {\n components,\n palette,\n shape: {\n borderRadius: 10,\n },\n spacing: 16,\n typography,\n}\n","import { darken, ThemeOptions } from '@mui/material'\nimport { merge } from '@xylabs/lodash'\n\nconst appComponents: ThemeOptions['components'] = {\n MuiPaper: {\n defaultProps: {\n variant: 'elevation',\n },\n },\n}\n\nexport const partialDarkThemeOptions: ThemeOptions = {\n palette: {\n background: {\n default: darken('#171626', 0.1),\n paper: '#171626',\n },\n mode: 'dark',\n primary: {\n main: '#9993F5',\n },\n secondary: {\n main: '#8EC8FF',\n },\n },\n}\n\nexport const partialAppDarkThemeOptions: ThemeOptions = merge({}, partialDarkThemeOptions, { components: appComponents })\n","import { ThemeOptions } from '@mui/material'\nimport { merge } from '@xylabs/lodash'\n\nexport const partialLightThemeOptions: ThemeOptions = {\n palette: {\n mode: 'light',\n primary: {\n main: '#1f1a66',\n },\n secondary: {\n main: '#0f68c9',\n },\n },\n}\n\nexport const partialAppLightThemeOptions: ThemeOptions = merge({}, partialLightThemeOptions)\n","import { ThemeOptions } from '@mui/material'\nimport { merge } from '@xylabs/lodash'\n\nimport { themeOptions } from './themeOptions'\n\nconst partialWebThemeOptions: ThemeOptions = {}\n\nexport const webThemeOptions = merge({}, themeOptions, partialWebThemeOptions)\n"],"mappings":"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","names":["src_exports","__export","appThemeOptions","components","fontFamilyOs","fontFamilyPrimary","osThemeOptions","partialAppDarkThemeOptions","partialAppLightThemeOptions","partialDarkThemeOptions","partialLightThemeOptions","themeOptions","typography","webThemeOptions","__toCommonJS","import_lodash","fontFamilyPrimary","fontFamilyOs","components","typography","fontFamilyPrimary","themeOptions","partialAppThemeOptions","ownerState","clamped","appThemeOptions","themeOptions","import_lodash","components","typography","fontFamilyOs","palette","osThemeOptionsDarkMode","components","typography","palette","osThemeOptionsLightMode","components","typography","osThemeOptions","osThemeOptionsDarkMode","osThemeOptionsLightMode","import_material","import_lodash","appComponents","partialDarkThemeOptions","partialAppDarkThemeOptions","import_lodash","partialLightThemeOptions","partialAppLightThemeOptions","import_lodash","partialWebThemeOptions","webThemeOptions","themeOptions"]}