@mvf/external-components 3.6.1-dev.4 → 3.7.0
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.
@@ -3,7 +3,7 @@ import { IThemes } from './themes';
|
|
3
3
|
type StoryThemeWrapperType = React.FunctionComponent<{
|
4
4
|
children: React.ReactNode;
|
5
5
|
themeType: keyof IThemes;
|
6
|
-
|
6
|
+
fontSizeMultiplier?: number;
|
7
7
|
}>;
|
8
8
|
declare const StoryThemeWrapper: StoryThemeWrapperType;
|
9
9
|
export default StoryThemeWrapper;
|
@@ -15,8 +15,8 @@ var jsx_runtime_1 = require("@emotion/react/jsx-runtime");
|
|
15
15
|
var react_1 = require("@emotion/react");
|
16
16
|
var themes_1 = require("./themes");
|
17
17
|
var StoryThemeWrapper = function (_a) {
|
18
|
-
var children = _a.children, themeType = _a.themeType, _b = _a.
|
19
|
-
var theme = (0, themes_1.getThemeWithFontMultiplier)(themeType,
|
18
|
+
var children = _a.children, themeType = _a.themeType, _b = _a.fontSizeMultiplier, fontSizeMultiplier = _b === void 0 ? 1 : _b;
|
19
|
+
var theme = (0, themes_1.getThemeWithFontMultiplier)(themeType, fontSizeMultiplier);
|
20
20
|
return (0, jsx_runtime_1.jsx)(react_1.ThemeProvider, __assign({ theme: theme }, { children: children }));
|
21
21
|
};
|
22
22
|
exports.default = StoryThemeWrapper;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"StoryThemeWrapper.js","sourceRoot":"","sources":["../../src/Themes/StoryThemeWrapper.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;AACA,wCAA+C;AAC/C,mCAA+D;AAQ/D,IAAM,iBAAiB,GAA0B,UAAC,EAIjD;QAHC,QAAQ,cAAA,EACR,SAAS,eAAA,EACT,
|
1
|
+
{"version":3,"file":"StoryThemeWrapper.js","sourceRoot":"","sources":["../../src/Themes/StoryThemeWrapper.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;AACA,wCAA+C;AAC/C,mCAA+D;AAQ/D,IAAM,iBAAiB,GAA0B,UAAC,EAIjD;QAHC,QAAQ,cAAA,EACR,SAAS,eAAA,EACT,0BAAsB,EAAtB,kBAAkB,mBAAG,CAAC,KAAA;IAEtB,IAAM,KAAK,GAAG,IAAA,mCAA0B,EAAC,SAAS,EAAE,kBAAkB,CAAC,CAAC;IAExE,OAAO,uBAAC,qBAAa,aAAC,KAAK,EAAE,KAAK,gBAAG,QAAQ,IAAiB,CAAC;AACjE,CAAC,CAAC;AAEF,kBAAe,iBAAiB,CAAC"}
|
package/Themes/themes.d.ts
CHANGED
@@ -867,7 +867,7 @@ declare const themes: {
|
|
867
867
|
};
|
868
868
|
export type ITheme = typeof customTheme;
|
869
869
|
export type IThemes = typeof themes;
|
870
|
-
export declare const getThemeWithFontMultiplier: (theme: keyof IThemes,
|
870
|
+
export declare const getThemeWithFontMultiplier: (theme: keyof IThemes, fontSizeMultiplier?: number) => import("@mui/material").Theme & {
|
871
871
|
mvf: {
|
872
872
|
border: {
|
873
873
|
width: {
|
package/Themes/themes.js
CHANGED
@@ -38,27 +38,27 @@ var themes = {
|
|
38
38
|
rhubarb: rhubarbTheme_1.default,
|
39
39
|
custom: themeCreator_1.customTheme,
|
40
40
|
};
|
41
|
-
var getThemeWithFontMultiplier = function (theme,
|
42
|
-
if (
|
41
|
+
var getThemeWithFontMultiplier = function (theme, fontSizeMultiplier) {
|
42
|
+
if (fontSizeMultiplier === void 0) { fontSizeMultiplier = 1; }
|
43
43
|
if (theme === 'atlantic') {
|
44
|
-
return (0, themeCreator_1.default)(atlanticTheme_1.atlanticPalette, atlanticTheme_1.default.typography.fontFamily,
|
44
|
+
return (0, themeCreator_1.default)(atlanticTheme_1.atlanticPalette, atlanticTheme_1.default.typography.fontFamily, fontSizeMultiplier);
|
45
45
|
}
|
46
46
|
if (theme === 'chameleon') {
|
47
|
-
return (0, themeCreator_1.default)(chameleonTheme_1.chameleonPalette, chameleonTheme_1.default.typography.fontFamily,
|
47
|
+
return (0, themeCreator_1.default)(chameleonTheme_1.chameleonPalette, chameleonTheme_1.default.typography.fontFamily, fontSizeMultiplier);
|
48
48
|
}
|
49
49
|
if (theme === 'gowizard') {
|
50
|
-
return (0, themeCreator_1.default)(gowizardTheme_1.gowizardPalette, gowizardTheme_1.default.typography.fontFamily,
|
50
|
+
return (0, themeCreator_1.default)(gowizardTheme_1.gowizardPalette, gowizardTheme_1.default.typography.fontFamily, fontSizeMultiplier);
|
51
51
|
}
|
52
52
|
if (theme === 'indigo') {
|
53
|
-
return (0, themeCreator_1.default)(indigoTheme_1.indigoPalette, indigoTheme_1.default.typography.fontFamily,
|
53
|
+
return (0, themeCreator_1.default)(indigoTheme_1.indigoPalette, indigoTheme_1.default.typography.fontFamily, fontSizeMultiplier);
|
54
54
|
}
|
55
55
|
if (theme === 'rhubarb') {
|
56
|
-
return (0, themeCreator_1.default)(rhubarbTheme_1.rhubarbPalette, rhubarbTheme_1.default.typography.fontFamily,
|
56
|
+
return (0, themeCreator_1.default)(rhubarbTheme_1.rhubarbPalette, rhubarbTheme_1.default.typography.fontFamily, fontSizeMultiplier);
|
57
57
|
}
|
58
58
|
if (theme === 'custom') {
|
59
|
-
return (0, themeCreator_1.default)(themeCreator_1.customPalette, themeCreator_1.customTheme.typography.fontFamily,
|
59
|
+
return (0, themeCreator_1.default)(themeCreator_1.customPalette, themeCreator_1.customTheme.typography.fontFamily, fontSizeMultiplier);
|
60
60
|
}
|
61
|
-
return (0, themeCreator_1.default)(chameleonTheme_1.chameleonPalette, chameleonTheme_1.default.typography.fontFamily,
|
61
|
+
return (0, themeCreator_1.default)(chameleonTheme_1.chameleonPalette, chameleonTheme_1.default.typography.fontFamily, fontSizeMultiplier);
|
62
62
|
};
|
63
63
|
exports.getThemeWithFontMultiplier = getThemeWithFontMultiplier;
|
64
64
|
exports.default = themes;
|
package/Themes/themes.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"themes.js","sourceRoot":"","sources":["../../src/Themes/themes.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+DAAiE;AACjE,iEAAoE;AACpE,+DAAiE;AACjE,2DAA2D;AAC3D,6DAA8D;AAC9D,6DAA0E;AAE1E,IAAM,MAAM,GAAG;IACb,QAAQ,EAAE,uBAAa;IACvB,SAAS,EAAE,wBAAc;IACzB,QAAQ,EAAE,uBAAa;IACvB,MAAM,EAAE,qBAAW;IACnB,OAAO,EAAE,sBAAY;IACrB,MAAM,EAAE,0BAAW;CACpB,CAAC;AAKK,IAAM,0BAA0B,GAAG,UACxC,KAAoB,EACpB,
|
1
|
+
{"version":3,"file":"themes.js","sourceRoot":"","sources":["../../src/Themes/themes.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+DAAiE;AACjE,iEAAoE;AACpE,+DAAiE;AACjE,2DAA2D;AAC3D,6DAA8D;AAC9D,6DAA0E;AAE1E,IAAM,MAAM,GAAG;IACb,QAAQ,EAAE,uBAAa;IACvB,SAAS,EAAE,wBAAc;IACzB,QAAQ,EAAE,uBAAa;IACvB,MAAM,EAAE,qBAAW;IACnB,OAAO,EAAE,sBAAY;IACrB,MAAM,EAAE,0BAAW;CACpB,CAAC;AAKK,IAAM,0BAA0B,GAAG,UACxC,KAAoB,EACpB,kBAAsB;IAAtB,mCAAA,EAAA,sBAAsB;IAEtB,IAAI,KAAK,KAAK,UAAU,EAAE;QACxB,OAAO,IAAA,sBAAY,EACjB,+BAAe,EACf,uBAAa,CAAC,UAAU,CAAC,UAAU,EACnC,kBAAkB,CACnB,CAAC;KACH;IACD,IAAI,KAAK,KAAK,WAAW,EAAE;QACzB,OAAO,IAAA,sBAAY,EACjB,iCAAgB,EAChB,wBAAc,CAAC,UAAU,CAAC,UAAU,EACpC,kBAAkB,CACnB,CAAC;KACH;IACD,IAAI,KAAK,KAAK,UAAU,EAAE;QACxB,OAAO,IAAA,sBAAY,EACjB,+BAAe,EACf,uBAAa,CAAC,UAAU,CAAC,UAAU,EACnC,kBAAkB,CACnB,CAAC;KACH;IACD,IAAI,KAAK,KAAK,QAAQ,EAAE;QACtB,OAAO,IAAA,sBAAY,EACjB,2BAAa,EACb,qBAAW,CAAC,UAAU,CAAC,UAAU,EACjC,kBAAkB,CACnB,CAAC;KACH;IACD,IAAI,KAAK,KAAK,SAAS,EAAE;QACvB,OAAO,IAAA,sBAAY,EACjB,6BAAc,EACd,sBAAY,CAAC,UAAU,CAAC,UAAU,EAClC,kBAAkB,CACnB,CAAC;KACH;IACD,IAAI,KAAK,KAAK,QAAQ,EAAE;QACtB,OAAO,IAAA,sBAAY,EACjB,4BAAa,EACb,0BAAW,CAAC,UAAU,CAAC,UAAU,EACjC,kBAAkB,CACnB,CAAC;KACH;IACD,OAAO,IAAA,sBAAY,EACjB,iCAAgB,EAChB,wBAAc,CAAC,UAAU,CAAC,UAAU,EACpC,kBAAkB,CACnB,CAAC;AACJ,CAAC,CAAC;AAnDW,QAAA,0BAA0B,8BAmDrC;AAEF,kBAAe,MAAM,CAAC"}
|