@mvf/external-components 3.3.2 → 3.4.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.
- package/Components/Atoms/ErrorMessage/ErrorMessage.js +2 -1
- package/Components/Atoms/ErrorMessage/ErrorMessage.js.map +1 -1
- package/Components/Atoms/InfoPanel/IInfoPanelProps.d.ts +7 -0
- package/Components/Atoms/InfoPanel/IInfoPanelProps.js +3 -0
- package/Components/Atoms/InfoPanel/IInfoPanelProps.js.map +1 -0
- package/Components/Atoms/InfoPanel/InfoPanel.d.ts +7 -0
- package/Components/Atoms/InfoPanel/InfoPanel.js +29 -0
- package/Components/Atoms/InfoPanel/InfoPanel.js.map +1 -0
- package/Components/Atoms/InfoPanel/InfoPanel.test.d.ts +1 -0
- package/Components/Atoms/InfoPanel/InfoPanel.test.js +39 -0
- package/Components/Atoms/InfoPanel/InfoPanel.test.js.map +1 -0
- package/Components/Atoms/InfoPanel/InfoPanelStory.d.ts +11 -0
- package/Components/Atoms/InfoPanel/InfoPanelStory.js +46 -0
- package/Components/Atoms/InfoPanel/InfoPanelStory.js.map +1 -0
- package/Components/Atoms/InfoPanel/defaultProps.d.ts +6 -0
- package/Components/Atoms/InfoPanel/defaultProps.js +9 -0
- package/Components/Atoms/InfoPanel/defaultProps.js.map +1 -0
- package/Components/Atoms/InfoPanel/index.d.ts +1 -0
- package/Components/Atoms/InfoPanel/index.js +9 -0
- package/Components/Atoms/InfoPanel/index.js.map +1 -0
- package/Components/Atoms/InfoPanel/makeInfoPanelStyling.d.ts +8 -0
- package/Components/Atoms/InfoPanel/makeInfoPanelStyling.js +86 -0
- package/Components/Atoms/InfoPanel/makeInfoPanelStyling.js.map +1 -0
- package/Components/Atoms/index.d.ts +1 -0
- package/Components/Atoms/index.js +3 -1
- package/Components/Atoms/index.js.map +1 -1
- package/Components/index.d.ts +1 -1
- package/Components/index.js +2 -1
- package/Components/index.js.map +1 -1
- package/index.d.ts +1 -1
- package/index.js +2 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -23,8 +23,9 @@ var makeErrorMessageStyles_1 = __importDefault(require("./makeErrorMessageStyles
|
|
|
23
23
|
var react_2 = require("@emotion/react");
|
|
24
24
|
var ErrorMessage = function () {
|
|
25
25
|
var errorMessage = ErrorMessageProvider_1.useErrorMessage().errorMessage;
|
|
26
|
+
var theme = react_2.useTheme();
|
|
26
27
|
if (errorMessage) {
|
|
27
|
-
return (jsx_runtime_1.jsx(Typography_1.default, __assign({ css: makeErrorMessageStyles_1.default(
|
|
28
|
+
return (jsx_runtime_1.jsx(Typography_1.default, __assign({ css: makeErrorMessageStyles_1.default(theme), "data-testid": "errorMessage" }, { children: errorMessage }), void 0));
|
|
28
29
|
}
|
|
29
30
|
return jsx_runtime_1.jsx(react_1.Fragment, {}, void 0);
|
|
30
31
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ErrorMessage.js","sourceRoot":"","sources":["../../../../src/Components/Atoms/ErrorMessage/ErrorMessage.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,sCAAsC;AACtC,+BAAoD;AACpD,wEAAoD;AACpD,8FAAwF;AACxF,oFAA8D;AAC9D,wCAA0C;AAG1C,IAAM,YAAY,GAAqB;IAC7B,IAAA,YAAY,GAAK,sCAAe,EAAE,aAAtB,CAAuB;
|
|
1
|
+
{"version":3,"file":"ErrorMessage.js","sourceRoot":"","sources":["../../../../src/Components/Atoms/ErrorMessage/ErrorMessage.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,sCAAsC;AACtC,+BAAoD;AACpD,wEAAoD;AACpD,8FAAwF;AACxF,oFAA8D;AAC9D,wCAA0C;AAG1C,IAAM,YAAY,GAAqB;IAC7B,IAAA,YAAY,GAAK,sCAAe,EAAE,aAAtB,CAAuB;IAC3C,IAAM,KAAK,GAAG,gBAAQ,EAAE,CAAC;IAEzB,IAAI,YAAY,EAAE;QAChB,OAAO,CACL,kBAAC,oBAAY,aACX,GAAG,EAAE,gCAAsB,CAAC,KAAK,CAAC,iBACtB,cAAc,gBAEzB,YAAY,YACA,CAChB,CAAC;KACH;IAED,OAAO,kBAAC,gBAAQ,aAAG,CAAC;AACtB,CAAC,CAAC;AAEF,kBAAe,YAAY,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
interface IInfoPanelProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
3
|
+
Icon?: React.DetailedHTMLProps<React.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>;
|
|
4
|
+
title?: string;
|
|
5
|
+
children: React.ReactNode;
|
|
6
|
+
}
|
|
7
|
+
export default IInfoPanelProps;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IInfoPanelProps.js","sourceRoot":"","sources":["../../../../src/Components/Atoms/InfoPanel/IInfoPanelProps.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/** @jsxImportSource @emotion/react */
|
|
2
|
+
import { FunctionComponentWithDefaultProps } from '../../../Helpers/React/FunctionComponentWithDefaultProps';
|
|
3
|
+
import defaultProps from './defaultProps';
|
|
4
|
+
import IInfoPanelProps from './IInfoPanelProps';
|
|
5
|
+
declare type InfoPanelType = FunctionComponentWithDefaultProps<IInfoPanelProps, typeof defaultProps>;
|
|
6
|
+
declare const InfoPanel: InfoPanelType;
|
|
7
|
+
export default InfoPanel;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
var jsx_runtime_1 = require("@emotion/react/jsx-runtime");
|
|
18
|
+
var defaultProps_1 = __importDefault(require("./defaultProps"));
|
|
19
|
+
var makeInfoPanelStyling_1 = __importDefault(require("./makeInfoPanelStyling"));
|
|
20
|
+
var Box_1 = __importDefault(require("@mui/material/Box"));
|
|
21
|
+
var Typography_1 = __importDefault(require("@mui/material/Typography"));
|
|
22
|
+
var InfoPanel = function (_a) {
|
|
23
|
+
var title = _a.title, children = _a.children, Icon = _a.Icon;
|
|
24
|
+
var styles = makeInfoPanelStyling_1.default();
|
|
25
|
+
return (jsx_runtime_1.jsxs(Box_1.default, __assign({ css: styles.panel }, { children: [Icon && jsx_runtime_1.jsx(Box_1.default, __assign({ css: styles.iconBox }, { children: Icon }), void 0), jsx_runtime_1.jsxs(Box_1.default, __assign({ css: styles.textBox }, { children: [title && (jsx_runtime_1.jsx(Typography_1.default, __assign({ component: 'h5', css: styles.title }, { children: title }), void 0)), jsx_runtime_1.jsx(Typography_1.default, __assign({ css: styles.children }, { children: children }), void 0)] }), void 0)] }), void 0));
|
|
26
|
+
};
|
|
27
|
+
InfoPanel.defaultProps = defaultProps_1.default;
|
|
28
|
+
exports.default = InfoPanel;
|
|
29
|
+
//# sourceMappingURL=InfoPanel.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"InfoPanel.js","sourceRoot":"","sources":["../../../../src/Components/Atoms/InfoPanel/InfoPanel.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAEA,gEAA0C;AAE1C,gFAA0D;AAC1D,0DAAsC;AACtC,wEAAkD;AAOlD,IAAM,SAAS,GAAkB,UAAC,EAAyB;QAAvB,KAAK,WAAA,EAAE,QAAQ,cAAA,EAAE,IAAI,UAAA;IACvD,IAAM,MAAM,GAAG,8BAAoB,EAAE,CAAC;IAEtC,OAAO,CACL,mBAAC,aAAK,aAAC,GAAG,EAAE,MAAM,CAAC,KAAK,iBACrB,IAAI,IAAI,kBAAC,aAAK,aAAC,GAAG,EAAE,MAAM,CAAC,OAAO,gBAAG,IAAI,YAAS,EACnD,mBAAC,aAAK,aAAC,GAAG,EAAE,MAAM,CAAC,OAAO,iBACvB,KAAK,IAAI,CACR,kBAAC,oBAAU,aAAC,SAAS,EAAE,IAAI,EAAE,GAAG,EAAE,MAAM,CAAC,KAAK,gBAC3C,KAAK,YACK,CACd,EACD,kBAAC,oBAAU,aAAC,GAAG,EAAE,MAAM,CAAC,QAAQ,gBAAG,QAAQ,YAAc,aACnD,aACF,CACT,CAAC;AACJ,CAAC,CAAC;AAEF,SAAS,CAAC,YAAY,GAAG,sBAAY,CAAC;AAEtC,kBAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
var jsx_runtime_1 = require("@emotion/react/jsx-runtime");
|
|
18
|
+
/** @jsxImportSource @emotion/react */
|
|
19
|
+
var renderWithProviders_1 = __importDefault(require("../../../Helpers/React/renderWithProviders"));
|
|
20
|
+
var index_1 = require("../index");
|
|
21
|
+
describe('<ErrorMessage />', function () {
|
|
22
|
+
it('should render with only a text given', function () {
|
|
23
|
+
var getByText = renderWithProviders_1.default(jsx_runtime_1.jsx(index_1.InfoPanel, { children: jsx_runtime_1.jsx("span", { children: "Hi I'm text" }, void 0) }, void 0)).getByText;
|
|
24
|
+
expect(getByText("Hi I'm text")).toBeTruthy();
|
|
25
|
+
});
|
|
26
|
+
it('should render with a title and text given', function () {
|
|
27
|
+
var getByText = renderWithProviders_1.default(jsx_runtime_1.jsx(index_1.InfoPanel, __assign({ title: "Title" }, { children: jsx_runtime_1.jsxs("span", { children: ["Hi I'm ", jsx_runtime_1.jsx("strong", { children: "text" }, void 0)] }, void 0) }), void 0)).getByText;
|
|
28
|
+
expect(getByText('Title')).toBeTruthy();
|
|
29
|
+
expect(getByText("Hi I'm")).toBeTruthy();
|
|
30
|
+
expect(getByText('text')).toBeTruthy();
|
|
31
|
+
});
|
|
32
|
+
it('should render with an icon, title and text given', function () {
|
|
33
|
+
var _a = renderWithProviders_1.default(jsx_runtime_1.jsx(index_1.InfoPanel, __assign({ title: "Title", Icon: jsx_runtime_1.jsx("img", { alt: 'alt text', src: 'https://some-image-url' }, void 0) }, { children: jsx_runtime_1.jsx("span", { children: "Hi I'm text" }, void 0) }), void 0)), getByText = _a.getByText, queryAllByAltText = _a.queryAllByAltText;
|
|
34
|
+
expect(getByText('Title')).toBeTruthy();
|
|
35
|
+
expect(getByText("Hi I'm text")).toBeTruthy();
|
|
36
|
+
expect(queryAllByAltText('alt text')).toBeTruthy();
|
|
37
|
+
});
|
|
38
|
+
});
|
|
39
|
+
//# sourceMappingURL=InfoPanel.test.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"InfoPanel.test.js","sourceRoot":"","sources":["../../../../src/Components/Atoms/InfoPanel/InfoPanel.test.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,sCAAsC;AACtC,mGAA6E;AAE7E,kCAAqC;AAErC,QAAQ,CAAC,kBAAkB,EAAE;IAC3B,EAAE,CAAC,sCAAsC,EAAE;QACjC,IAAA,SAAS,GAAK,6BAAmB,CACvC,kBAAC,iBAAS,cACR,8DAAwB,WACd,CACb,UAJgB,CAIf;QACF,MAAM,CAAC,SAAS,CAAC,aAAa,CAAC,CAAC,CAAC,UAAU,EAAE,CAAC;IAChD,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,2CAA2C,EAAE;QACtC,IAAA,SAAS,GAAK,6BAAmB,CACvC,kBAAC,iBAAS,aAAC,KAAK,EAAC,OAAO,gBACtB,mDACS,yDAAqB,YACvB,YACG,CACb,UANgB,CAMf;QACF,MAAM,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC,CAAC,UAAU,EAAE,CAAC;QACxC,MAAM,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAC,CAAC,UAAU,EAAE,CAAC;QACzC,MAAM,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC,UAAU,EAAE,CAAC;IACzC,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,kDAAkD,EAAE;QAC/C,IAAA,KAAmC,6BAAmB,CAC1D,kBAAC,iBAAS,aACR,KAAK,EAAC,OAAO,EACb,IAAI,EAAE,2BAAK,GAAG,EAAE,UAAU,EAAE,GAAG,EAAE,wBAAwB,WAAI,gBAE7D,8DAAwB,YACd,CACb,EAPO,SAAS,eAAA,EAAE,iBAAiB,uBAOnC,CAAC;QACF,MAAM,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC,CAAC,UAAU,EAAE,CAAC;QACxC,MAAM,CAAC,SAAS,CAAC,aAAa,CAAC,CAAC,CAAC,UAAU,EAAE,CAAC;QAC9C,MAAM,CAAC,iBAAiB,CAAC,UAAU,CAAC,CAAC,CAAC,UAAU,EAAE,CAAC;IACrD,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { ISvgs } from '../../../Assets/svgs/svgs';
|
|
3
|
+
declare type InfoPanelType = React.FunctionComponent<{
|
|
4
|
+
title?: string;
|
|
5
|
+
iconType?: keyof ISvgs;
|
|
6
|
+
content: React.ReactNode;
|
|
7
|
+
parentContainerWidth: string;
|
|
8
|
+
contentTag: string;
|
|
9
|
+
}>;
|
|
10
|
+
declare const InfoPanelStory: InfoPanelType;
|
|
11
|
+
export default InfoPanelStory;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
14
|
+
if (k2 === undefined) k2 = k;
|
|
15
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
16
|
+
}) : (function(o, m, k, k2) {
|
|
17
|
+
if (k2 === undefined) k2 = k;
|
|
18
|
+
o[k2] = m[k];
|
|
19
|
+
}));
|
|
20
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
21
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
22
|
+
}) : function(o, v) {
|
|
23
|
+
o["default"] = v;
|
|
24
|
+
});
|
|
25
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
26
|
+
if (mod && mod.__esModule) return mod;
|
|
27
|
+
var result = {};
|
|
28
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
29
|
+
__setModuleDefault(result, mod);
|
|
30
|
+
return result;
|
|
31
|
+
};
|
|
32
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
33
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
34
|
+
};
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
var jsx_runtime_1 = require("@emotion/react/jsx-runtime");
|
|
37
|
+
var React = __importStar(require("react"));
|
|
38
|
+
var InfoPanel_1 = __importDefault(require("./InfoPanel"));
|
|
39
|
+
var svgs_1 = __importDefault(require("../../../Assets/svgs/svgs"));
|
|
40
|
+
var InfoPanelStory = function (_a) {
|
|
41
|
+
var iconType = _a.iconType, content = _a.content, title = _a.title, parentContainerWidth = _a.parentContainerWidth, contentTag = _a.contentTag;
|
|
42
|
+
var element = React.createElement(contentTag, { href: '#' }, content);
|
|
43
|
+
return (jsx_runtime_1.jsx("div", __assign({ style: { maxWidth: parentContainerWidth + "px" } }, { children: jsx_runtime_1.jsx(InfoPanel_1.default, __assign({ title: title, Icon: iconType && jsx_runtime_1.jsx("img", { alt: iconType, src: svgs_1.default[iconType] }, void 0) }, { children: element }), void 0) }), void 0));
|
|
44
|
+
};
|
|
45
|
+
exports.default = InfoPanelStory;
|
|
46
|
+
//# sourceMappingURL=InfoPanelStory.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"InfoPanelStory.js","sourceRoot":"","sources":["../../../../src/Components/Atoms/InfoPanel/InfoPanelStory.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,2CAA+B;AAC/B,0DAAoC;AACpC,mEAAwD;AAUxD,IAAM,cAAc,GAAkB,UAAC,EAMtC;QALC,QAAQ,cAAA,EACR,OAAO,aAAA,EACP,KAAK,WAAA,EACL,oBAAoB,0BAAA,EACpB,UAAU,gBAAA;IAEV,IAAM,OAAO,GAAG,KAAK,CAAC,aAAa,CAAC,UAAU,EAAE,EAAE,IAAI,EAAE,GAAG,EAAE,EAAE,OAAO,CAAC,CAAC;IAExE,OAAO,CACL,oCAAK,KAAK,EAAE,EAAE,QAAQ,EAAK,oBAAoB,OAAI,EAAE,gBACnD,kBAAC,mBAAS,aACR,KAAK,EAAE,KAAK,EACZ,IAAI,EAAE,QAAQ,IAAI,2BAAK,GAAG,EAAE,QAAQ,EAAE,GAAG,EAAE,cAAI,CAAC,QAAQ,CAAC,WAAI,gBAE5D,OAAO,YACE,YACR,CACP,CAAC;AACJ,CAAC,CAAC;AAEF,kBAAe,cAAc,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"defaultProps.js","sourceRoot":"","sources":["../../../../src/Components/Atoms/InfoPanel/defaultProps.ts"],"names":[],"mappings":";;AAAA,IAAM,YAAY,GAAG;IACnB,IAAI,EAAE,SAAS;IACf,KAAK,EAAE,EAAE;IACT,QAAQ,EAAE,SAAS;CACpB,CAAC;AAEF,kBAAe,YAAY,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './InfoPanel';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var InfoPanel_1 = require("./InfoPanel");
|
|
8
|
+
Object.defineProperty(exports, "default", { enumerable: true, get: function () { return __importDefault(InfoPanel_1).default; } });
|
|
9
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/Components/Atoms/InfoPanel/index.ts"],"names":[],"mappings":";;;;;;AAAA,yCAAsC;AAA7B,qHAAA,OAAO,OAAA"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
declare const makeInfoPanelStyling: () => {
|
|
2
|
+
panel: import("@emotion/utils").SerializedStyles;
|
|
3
|
+
iconBox: import("@emotion/utils").SerializedStyles;
|
|
4
|
+
textBox: import("@emotion/utils").SerializedStyles;
|
|
5
|
+
title: import("@emotion/utils").SerializedStyles;
|
|
6
|
+
children: import("@emotion/utils").SerializedStyles;
|
|
7
|
+
};
|
|
8
|
+
export default makeInfoPanelStyling;
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
var react_1 = require("@emotion/react");
|
|
4
|
+
var makeInfoPanelStyling = function () {
|
|
5
|
+
var _a, _b, _c, _d;
|
|
6
|
+
var _e = react_1.useTheme(), mvf = _e.mvf, breakpoints = _e.breakpoints;
|
|
7
|
+
var palette = mvf.palette, fontSize = mvf.fontSize, typography = mvf.typography, spacing = mvf.spacing;
|
|
8
|
+
return {
|
|
9
|
+
panel: react_1.css((_a = {
|
|
10
|
+
backgroundColor: palette.background.secondaryBackgroundColor,
|
|
11
|
+
color: palette.text.secondaryTextColor,
|
|
12
|
+
paddingRight: spacing.small,
|
|
13
|
+
paddingLeft: spacing.small,
|
|
14
|
+
paddingTop: spacing.tiny,
|
|
15
|
+
paddingBottom: spacing.tiny
|
|
16
|
+
},
|
|
17
|
+
_a[breakpoints.up('mobileLarge')] = {
|
|
18
|
+
paddingTop: spacing.small,
|
|
19
|
+
paddingBottom: spacing.small,
|
|
20
|
+
paddingRight: spacing.medium,
|
|
21
|
+
paddingLeft: spacing.medium,
|
|
22
|
+
},
|
|
23
|
+
_a.borderRadius = 4,
|
|
24
|
+
_a.width = '100%',
|
|
25
|
+
_a.display = 'flex',
|
|
26
|
+
_a.flexDirection = 'row',
|
|
27
|
+
_a)),
|
|
28
|
+
iconBox: react_1.css((_b = {
|
|
29
|
+
width: '40px',
|
|
30
|
+
flex: '0 0 40px',
|
|
31
|
+
paddingRight: spacing.small
|
|
32
|
+
},
|
|
33
|
+
_b[breakpoints.up('mobileLarge')] = {
|
|
34
|
+
width: '60px',
|
|
35
|
+
flex: '0 0 60px',
|
|
36
|
+
paddingRight: spacing.medium,
|
|
37
|
+
},
|
|
38
|
+
_b.display = 'flex',
|
|
39
|
+
_b.flexFlow = 'column nowrap',
|
|
40
|
+
_b.justifyContent = 'center',
|
|
41
|
+
_b.alignItems = 'center',
|
|
42
|
+
_b.img = {
|
|
43
|
+
width: '100%',
|
|
44
|
+
height: 'auto',
|
|
45
|
+
},
|
|
46
|
+
_b)),
|
|
47
|
+
textBox: react_1.css({
|
|
48
|
+
width: '100%',
|
|
49
|
+
}),
|
|
50
|
+
title: react_1.css((_c = {
|
|
51
|
+
fontSize: fontSize.small
|
|
52
|
+
},
|
|
53
|
+
_c[breakpoints.up('mobileMedium')] = {
|
|
54
|
+
fontSize: fontSize.compact,
|
|
55
|
+
},
|
|
56
|
+
_c[breakpoints.up('tabletSmall')] = {
|
|
57
|
+
fontSize: fontSize.medium,
|
|
58
|
+
},
|
|
59
|
+
_c[breakpoints.up('tabletMedium')] = {
|
|
60
|
+
fontSize: fontSize.swoll,
|
|
61
|
+
},
|
|
62
|
+
_c[breakpoints.up('desktopSmall')] = {
|
|
63
|
+
fontSize: fontSize.large,
|
|
64
|
+
},
|
|
65
|
+
_c[breakpoints.up('desktopMedium')] = {
|
|
66
|
+
fontSize: fontSize.big,
|
|
67
|
+
},
|
|
68
|
+
_c.fontWeight = typography.weight.thick,
|
|
69
|
+
_c)),
|
|
70
|
+
children: react_1.css((_d = {
|
|
71
|
+
fontSize: fontSize.little
|
|
72
|
+
},
|
|
73
|
+
_d[breakpoints.up('tabletSmall')] = {
|
|
74
|
+
fontSize: fontSize.mini,
|
|
75
|
+
},
|
|
76
|
+
_d[breakpoints.up('desktopSmall')] = {
|
|
77
|
+
fontSize: fontSize.small,
|
|
78
|
+
},
|
|
79
|
+
_d['& a'] = {
|
|
80
|
+
color: mvf.palette.text.primaryTextColor,
|
|
81
|
+
},
|
|
82
|
+
_d)),
|
|
83
|
+
};
|
|
84
|
+
};
|
|
85
|
+
exports.default = makeInfoPanelStyling;
|
|
86
|
+
//# sourceMappingURL=makeInfoPanelStyling.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"makeInfoPanelStyling.js","sourceRoot":"","sources":["../../../../src/Components/Atoms/InfoPanel/makeInfoPanelStyling.ts"],"names":[],"mappings":"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"}
|
|
@@ -3,7 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.InputLabel = exports.FormControl = exports.Input = exports.Text = exports.ProgressBar = exports.Modal = exports.LoadingIndicator = exports.Link = exports.IconButton = exports.useErrorMessage = exports.ErrorMessageProvider = exports.ErrorMessage = exports.CircularProgress = exports.CardButton = exports.Button = void 0;
|
|
6
|
+
exports.InfoPanel = exports.InputLabel = exports.FormControl = exports.Input = exports.Text = exports.ProgressBar = exports.Modal = exports.LoadingIndicator = exports.Link = exports.IconButton = exports.useErrorMessage = exports.ErrorMessageProvider = exports.ErrorMessage = exports.CircularProgress = exports.CardButton = exports.Button = void 0;
|
|
7
7
|
var Button_1 = require("./Button");
|
|
8
8
|
Object.defineProperty(exports, "Button", { enumerable: true, get: function () { return __importDefault(Button_1).default; } });
|
|
9
9
|
var CardButton_1 = require("./CardButton");
|
|
@@ -33,4 +33,6 @@ var FormControl_1 = require("./FormControl");
|
|
|
33
33
|
Object.defineProperty(exports, "FormControl", { enumerable: true, get: function () { return __importDefault(FormControl_1).default; } });
|
|
34
34
|
var InputLabel_1 = require("./InputLabel");
|
|
35
35
|
Object.defineProperty(exports, "InputLabel", { enumerable: true, get: function () { return __importDefault(InputLabel_1).default; } });
|
|
36
|
+
var InfoPanel_1 = require("./InfoPanel");
|
|
37
|
+
Object.defineProperty(exports, "InfoPanel", { enumerable: true, get: function () { return __importDefault(InfoPanel_1).default; } });
|
|
36
38
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/Components/Atoms/index.ts"],"names":[],"mappings":";;;;;;AAAA,mCAA6C;AAApC,iHAAA,OAAO,OAAU;AAC1B,2CAAqD;AAA5C,yHAAA,OAAO,OAAc;AAC9B,uDAAiE;AAAxD,qIAAA,OAAO,OAAoB;AACpC,+CAAyD;AAAhD,6HAAA,OAAO,OAAgB;AAChC,+DAA+E;AAAtE,4HAAA,oBAAoB,OAAA;AAAE,uHAAA,eAAe,OAAA;AAC9C,2CAAqD;AAA5C,yHAAA,OAAO,OAAc;AAC9B,+BAAyC;AAAhC,6GAAA,OAAO,OAAQ;AACxB,uDAAiE;AAAxD,qIAAA,OAAO,OAAoB;AACpC,iCAA2C;AAAlC,+GAAA,OAAO,OAAS;AACzB,6CAAuD;AAA9C,2HAAA,OAAO,OAAe;AAC/B,+BAAyC;AAAhC,6GAAA,OAAO,OAAQ;AACxB,iCAA2C;AAAlC,+GAAA,OAAO,OAAS;AACzB,6CAAuD;AAA9C,2HAAA,OAAO,OAAe;AAC/B,2CAAqD;AAA5C,yHAAA,OAAO,OAAc"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/Components/Atoms/index.ts"],"names":[],"mappings":";;;;;;AAAA,mCAA6C;AAApC,iHAAA,OAAO,OAAU;AAC1B,2CAAqD;AAA5C,yHAAA,OAAO,OAAc;AAC9B,uDAAiE;AAAxD,qIAAA,OAAO,OAAoB;AACpC,+CAAyD;AAAhD,6HAAA,OAAO,OAAgB;AAChC,+DAA+E;AAAtE,4HAAA,oBAAoB,OAAA;AAAE,uHAAA,eAAe,OAAA;AAC9C,2CAAqD;AAA5C,yHAAA,OAAO,OAAc;AAC9B,+BAAyC;AAAhC,6GAAA,OAAO,OAAQ;AACxB,uDAAiE;AAAxD,qIAAA,OAAO,OAAoB;AACpC,iCAA2C;AAAlC,+GAAA,OAAO,OAAS;AACzB,6CAAuD;AAA9C,2HAAA,OAAO,OAAe;AAC/B,+BAAyC;AAAhC,6GAAA,OAAO,OAAQ;AACxB,iCAA2C;AAAlC,+GAAA,OAAO,OAAS;AACzB,6CAAuD;AAA9C,2HAAA,OAAO,OAAe;AAC/B,2CAAqD;AAA5C,yHAAA,OAAO,OAAc;AAC9B,yCAAmD;AAA1C,uHAAA,OAAO,OAAa"}
|
package/Components/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { Button, CardButton, CircularProgress, ErrorMessage, ErrorMessageProvider, FormControl, IconButton, Input, InputLabel, Link, LoadingIndicator, Modal, ProgressBar, Text, } from './Atoms';
|
|
1
|
+
export { Button, CardButton, CircularProgress, ErrorMessage, ErrorMessageProvider, FormControl, IconButton, Input, InputLabel, Link, LoadingIndicator, Modal, ProgressBar, Text, InfoPanel, } from './Atoms';
|
|
2
2
|
export { CheckBox, DropDownSelect, IconTileCheckBox, IconTileRadioButton, NavBar, RadioButton, ScrollContainer, TextField, ThankYouBanner, PhoneNumberTextField, } from './Molecules';
|
|
3
3
|
export { ListLayout, TileLayout, RadioGroup } from './Organisms';
|
package/Components/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.RadioGroup = exports.TileLayout = exports.ListLayout = exports.PhoneNumberTextField = exports.ThankYouBanner = exports.TextField = exports.ScrollContainer = exports.RadioButton = exports.NavBar = exports.IconTileRadioButton = exports.IconTileCheckBox = exports.DropDownSelect = exports.CheckBox = exports.Text = exports.ProgressBar = exports.Modal = exports.LoadingIndicator = exports.Link = exports.InputLabel = exports.Input = exports.IconButton = exports.FormControl = exports.ErrorMessageProvider = exports.ErrorMessage = exports.CircularProgress = exports.CardButton = exports.Button = void 0;
|
|
3
|
+
exports.RadioGroup = exports.TileLayout = exports.ListLayout = exports.PhoneNumberTextField = exports.ThankYouBanner = exports.TextField = exports.ScrollContainer = exports.RadioButton = exports.NavBar = exports.IconTileRadioButton = exports.IconTileCheckBox = exports.DropDownSelect = exports.CheckBox = exports.InfoPanel = exports.Text = exports.ProgressBar = exports.Modal = exports.LoadingIndicator = exports.Link = exports.InputLabel = exports.Input = exports.IconButton = exports.FormControl = exports.ErrorMessageProvider = exports.ErrorMessage = exports.CircularProgress = exports.CardButton = exports.Button = void 0;
|
|
4
4
|
var Atoms_1 = require("./Atoms");
|
|
5
5
|
Object.defineProperty(exports, "Button", { enumerable: true, get: function () { return Atoms_1.Button; } });
|
|
6
6
|
Object.defineProperty(exports, "CardButton", { enumerable: true, get: function () { return Atoms_1.CardButton; } });
|
|
@@ -16,6 +16,7 @@ Object.defineProperty(exports, "LoadingIndicator", { enumerable: true, get: func
|
|
|
16
16
|
Object.defineProperty(exports, "Modal", { enumerable: true, get: function () { return Atoms_1.Modal; } });
|
|
17
17
|
Object.defineProperty(exports, "ProgressBar", { enumerable: true, get: function () { return Atoms_1.ProgressBar; } });
|
|
18
18
|
Object.defineProperty(exports, "Text", { enumerable: true, get: function () { return Atoms_1.Text; } });
|
|
19
|
+
Object.defineProperty(exports, "InfoPanel", { enumerable: true, get: function () { return Atoms_1.InfoPanel; } });
|
|
19
20
|
var Molecules_1 = require("./Molecules");
|
|
20
21
|
Object.defineProperty(exports, "CheckBox", { enumerable: true, get: function () { return Molecules_1.CheckBox; } });
|
|
21
22
|
Object.defineProperty(exports, "DropDownSelect", { enumerable: true, get: function () { return Molecules_1.DropDownSelect; } });
|
package/Components/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/Components/index.ts"],"names":[],"mappings":";;;AAAA,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/Components/index.ts"],"names":[],"mappings":";;;AAAA,iCAgBiB;AAff,+FAAA,MAAM,OAAA;AACN,mGAAA,UAAU,OAAA;AACV,yGAAA,gBAAgB,OAAA;AAChB,qGAAA,YAAY,OAAA;AACZ,6GAAA,oBAAoB,OAAA;AACpB,oGAAA,WAAW,OAAA;AACX,mGAAA,UAAU,OAAA;AACV,8FAAA,KAAK,OAAA;AACL,mGAAA,UAAU,OAAA;AACV,6FAAA,IAAI,OAAA;AACJ,yGAAA,gBAAgB,OAAA;AAChB,8FAAA,KAAK,OAAA;AACL,oGAAA,WAAW,OAAA;AACX,6FAAA,IAAI,OAAA;AACJ,kGAAA,SAAS,OAAA;AAGX,yCAWqB;AAVnB,qGAAA,QAAQ,OAAA;AACR,2GAAA,cAAc,OAAA;AACd,6GAAA,gBAAgB,OAAA;AAChB,gHAAA,mBAAmB,OAAA;AACnB,mGAAA,MAAM,OAAA;AACN,wGAAA,WAAW,OAAA;AACX,4GAAA,eAAe,OAAA;AACf,sGAAA,SAAS,OAAA;AACT,2GAAA,cAAc,OAAA;AACd,iHAAA,oBAAoB,OAAA;AAGtB,yCAAiE;AAAxD,uGAAA,UAAU,OAAA;AAAE,uGAAA,UAAU,OAAA;AAAE,uGAAA,UAAU,OAAA"}
|
package/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export { chameleonTheme, chameleonPalette, gowizardTheme, gowizardPalette, indigoTheme, indigoPalette, rhubarbTheme, rhubarbPalette, atlanticTheme, atlanticPalette, palettes, themes, ITheme, IThemes, StoryThemeWrapper, } from './Themes';
|
|
2
|
-
export { Button, CardButton, CircularProgress, ErrorMessage, ErrorMessageProvider, FormControl, IconButton, Input, InputLabel, Link, LoadingIndicator, Modal, ProgressBar, Text, } from './Components/Atoms';
|
|
2
|
+
export { Button, CardButton, CircularProgress, ErrorMessage, ErrorMessageProvider, FormControl, IconButton, Input, InputLabel, Link, LoadingIndicator, Modal, ProgressBar, Text, InfoPanel, } from './Components/Atoms';
|
|
3
3
|
export { CheckBox, DatePicker, DropDownSelect, IconTileCheckBox, IconTileRadioButton, NavBar, RadioButton, ScrollContainer, TextField, ThankYouBanner, PhoneNumberTextField, } from './Components/Molecules';
|
|
4
4
|
export { ListLayout, TileLayout, RadioGroup } from './Components/Organisms';
|
package/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.RadioGroup = exports.TileLayout = exports.ListLayout = exports.PhoneNumberTextField = exports.ThankYouBanner = exports.TextField = exports.ScrollContainer = exports.RadioButton = exports.NavBar = exports.IconTileRadioButton = exports.IconTileCheckBox = exports.DropDownSelect = exports.DatePicker = exports.CheckBox = exports.Text = exports.ProgressBar = exports.Modal = exports.LoadingIndicator = exports.Link = exports.InputLabel = exports.Input = exports.IconButton = exports.FormControl = exports.ErrorMessageProvider = exports.ErrorMessage = exports.CircularProgress = exports.CardButton = exports.Button = exports.StoryThemeWrapper = exports.themes = exports.palettes = exports.atlanticPalette = exports.atlanticTheme = exports.rhubarbPalette = exports.rhubarbTheme = exports.indigoPalette = exports.indigoTheme = exports.gowizardPalette = exports.gowizardTheme = exports.chameleonPalette = exports.chameleonTheme = void 0;
|
|
3
|
+
exports.RadioGroup = exports.TileLayout = exports.ListLayout = exports.PhoneNumberTextField = exports.ThankYouBanner = exports.TextField = exports.ScrollContainer = exports.RadioButton = exports.NavBar = exports.IconTileRadioButton = exports.IconTileCheckBox = exports.DropDownSelect = exports.DatePicker = exports.CheckBox = exports.InfoPanel = exports.Text = exports.ProgressBar = exports.Modal = exports.LoadingIndicator = exports.Link = exports.InputLabel = exports.Input = exports.IconButton = exports.FormControl = exports.ErrorMessageProvider = exports.ErrorMessage = exports.CircularProgress = exports.CardButton = exports.Button = exports.StoryThemeWrapper = exports.themes = exports.palettes = exports.atlanticPalette = exports.atlanticTheme = exports.rhubarbPalette = exports.rhubarbTheme = exports.indigoPalette = exports.indigoTheme = exports.gowizardPalette = exports.gowizardTheme = exports.chameleonPalette = exports.chameleonTheme = void 0;
|
|
4
4
|
// Themes
|
|
5
5
|
var Themes_1 = require("./Themes");
|
|
6
6
|
Object.defineProperty(exports, "chameleonTheme", { enumerable: true, get: function () { return Themes_1.chameleonTheme; } });
|
|
@@ -32,6 +32,7 @@ Object.defineProperty(exports, "LoadingIndicator", { enumerable: true, get: func
|
|
|
32
32
|
Object.defineProperty(exports, "Modal", { enumerable: true, get: function () { return Atoms_1.Modal; } });
|
|
33
33
|
Object.defineProperty(exports, "ProgressBar", { enumerable: true, get: function () { return Atoms_1.ProgressBar; } });
|
|
34
34
|
Object.defineProperty(exports, "Text", { enumerable: true, get: function () { return Atoms_1.Text; } });
|
|
35
|
+
Object.defineProperty(exports, "InfoPanel", { enumerable: true, get: function () { return Atoms_1.InfoPanel; } });
|
|
35
36
|
// Molecules
|
|
36
37
|
var Molecules_1 = require("./Components/Molecules");
|
|
37
38
|
Object.defineProperty(exports, "CheckBox", { enumerable: true, get: function () { return Molecules_1.CheckBox; } });
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,SAAS;AACT,mCAgBkB;AAfhB,wGAAA,cAAc,OAAA;AACd,0GAAA,gBAAgB,OAAA;AAChB,uGAAA,aAAa,OAAA;AACb,yGAAA,eAAe,OAAA;AACf,qGAAA,WAAW,OAAA;AACX,uGAAA,aAAa,OAAA;AACb,sGAAA,YAAY,OAAA;AACZ,wGAAA,cAAc,OAAA;AACd,uGAAA,aAAa,OAAA;AACb,yGAAA,eAAe,OAAA;AACf,kGAAA,QAAQ,OAAA;AACR,gGAAA,MAAM,OAAA;AAGN,2GAAA,iBAAiB,OAAA;AAGnB,QAAQ;AACR,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,SAAS;AACT,mCAgBkB;AAfhB,wGAAA,cAAc,OAAA;AACd,0GAAA,gBAAgB,OAAA;AAChB,uGAAA,aAAa,OAAA;AACb,yGAAA,eAAe,OAAA;AACf,qGAAA,WAAW,OAAA;AACX,uGAAA,aAAa,OAAA;AACb,sGAAA,YAAY,OAAA;AACZ,wGAAA,cAAc,OAAA;AACd,uGAAA,aAAa,OAAA;AACb,yGAAA,eAAe,OAAA;AACf,kGAAA,QAAQ,OAAA;AACR,gGAAA,MAAM,OAAA;AAGN,2GAAA,iBAAiB,OAAA;AAGnB,QAAQ;AACR,4CAgB4B;AAf1B,+FAAA,MAAM,OAAA;AACN,mGAAA,UAAU,OAAA;AACV,yGAAA,gBAAgB,OAAA;AAChB,qGAAA,YAAY,OAAA;AACZ,6GAAA,oBAAoB,OAAA;AACpB,oGAAA,WAAW,OAAA;AACX,mGAAA,UAAU,OAAA;AACV,8FAAA,KAAK,OAAA;AACL,mGAAA,UAAU,OAAA;AACV,6FAAA,IAAI,OAAA;AACJ,yGAAA,gBAAgB,OAAA;AAChB,8FAAA,KAAK,OAAA;AACL,oGAAA,WAAW,OAAA;AACX,6FAAA,IAAI,OAAA;AACJ,kGAAA,SAAS,OAAA;AAGX,YAAY;AACZ,oDAYgC;AAX9B,qGAAA,QAAQ,OAAA;AACR,uGAAA,UAAU,OAAA;AACV,2GAAA,cAAc,OAAA;AACd,6GAAA,gBAAgB,OAAA;AAChB,gHAAA,mBAAmB,OAAA;AACnB,mGAAA,MAAM,OAAA;AACN,wGAAA,WAAW,OAAA;AACX,4GAAA,eAAe,OAAA;AACf,sGAAA,SAAS,OAAA;AACT,2GAAA,cAAc,OAAA;AACd,iHAAA,oBAAoB,OAAA;AAGtB,YAAY;AACZ,oDAA4E;AAAnE,uGAAA,UAAU,OAAA;AAAE,uGAAA,UAAU,OAAA;AAAE,uGAAA,UAAU,OAAA"}
|