@wireapp/react-ui-kit 9.0.9 → 9.0.11
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/lib/Form/Button.js +3 -3
- package/lib/Form/Checkbox.js +4 -4
- package/lib/Form/CodeInput.js +1 -1
- package/lib/Form/DropFileInput.js +3 -3
- package/lib/Form/ErrorMessage.js +1 -1
- package/lib/Form/Input.js +3 -3
- package/lib/Form/InputLabel.d.ts.map +1 -1
- package/lib/Form/InputLabel.js +3 -3
- package/lib/Form/RangeInput.d.ts.map +1 -1
- package/lib/Form/RangeInput.js +1 -4
- package/lib/Form/RangeInput.styles.d.ts +1 -1
- package/lib/Form/RangeInput.styles.d.ts.map +1 -1
- package/lib/Form/RangeInput.styles.js +2 -2
- package/lib/Form/Select.d.ts.map +1 -1
- package/lib/Form/Select.js +6 -1
- package/lib/Form/SelectComponents.js +1 -1
- package/lib/Form/SelectStyles.d.ts +2 -2
- package/lib/Form/SelectStyles.js +1 -1
- package/lib/Form/ShakeBox.d.ts +3 -2
- package/lib/Form/ShakeBox.d.ts.map +1 -1
- package/lib/Form/Switch.js +1 -1
- package/lib/Form/TextArea.js +2 -2
- package/lib/Form/Tooltip.js +2 -2
- package/lib/GlobalStyle.d.ts.map +1 -1
- package/lib/GlobalStyle.js +2 -1
- package/lib/Layout/Container.d.ts +8 -8
- package/lib/Layout/Container.d.ts.map +1 -1
- package/lib/Layout/Container.js +21 -31
- package/lib/Layout/StyledApp.d.ts +1 -1
- package/lib/Layout/StyledApp.d.ts.map +1 -1
- package/lib/Layout/StyledApp.js +1 -1
- package/lib/Layout/headerMenu/MenuItems.d.ts +1 -1
- package/lib/Layout/headerMenu/MenuItems.d.ts.map +1 -1
- package/lib/Layout/headerMenu/MenuLink.d.ts +1 -1
- package/lib/Layout/headerMenu/MenuLink.d.ts.map +1 -1
- package/lib/Layout/headerMenu/MenuLink.js +2 -2
- package/lib/Layout/headerMenu/MenuOpenButton.d.ts +1 -1
- package/lib/Layout/headerMenu/MenuOpenButton.d.ts.map +1 -1
- package/lib/Layout/headerMenu/MenuSubLink.d.ts +1 -1
- package/lib/Layout/headerMenu/MenuSubLink.d.ts.map +1 -1
- package/lib/Layout/headerMenu/MenuSubLink.js +2 -2
- package/lib/Layout/index.d.ts +1 -1
- package/lib/Layout/index.d.ts.map +1 -1
- package/lib/Layout/index.js +1 -1
- package/lib/Menu/TabBar.js +1 -1
- package/lib/Misc/ButtonGroup.js +4 -4
- package/lib/Misc/Pill.js +2 -2
- package/lib/Text/Heading.js +8 -8
- package/lib/Text/Label.d.ts.map +1 -1
- package/lib/Text/Label.js +2 -2
- package/lib/Text/Link.js +2 -2
- package/lib/Text/Paragraph.js +2 -2
- package/lib/Text/Text.d.ts +6 -6
- package/lib/Text/Text.d.ts.map +1 -1
- package/lib/Text/Text.js +5 -5
- package/lib/Text/TextLink.js +1 -1
- package/lib/Text/Title.js +1 -1
- package/lib/{GlobalCssVariables.d.ts → Theme/GlobalCssVariables.d.ts} +0 -0
- package/lib/Theme/GlobalCssVariables.d.ts.map +1 -0
- package/lib/{GlobalCssVariables.js → Theme/GlobalCssVariables.js} +1 -1
- package/lib/Theme/Sizes.d.ts +9 -0
- package/lib/Theme/Sizes.d.ts.map +1 -0
- package/lib/Theme/Sizes.js +29 -0
- package/lib/{Layout → Theme}/Theme.d.ts +8 -0
- package/lib/Theme/Theme.d.ts.map +1 -0
- package/lib/{Layout → Theme}/Theme.js +4 -0
- package/package.json +2 -2
- package/lib/GlobalCssVariables.d.ts.map +0 -1
- package/lib/Layout/Theme.d.ts.map +0 -1
package/lib/Form/Button.js
CHANGED
|
@@ -27,7 +27,7 @@ var ButtonVariant;
|
|
|
27
27
|
ButtonVariant["SEND"] = "send";
|
|
28
28
|
})(ButtonVariant = exports.ButtonVariant || (exports.ButtonVariant = {}));
|
|
29
29
|
const buttonStyle = (theme, _a) => {
|
|
30
|
-
var { variant = ButtonVariant.PRIMARY, backgroundColor, block = false, disabled = false, noCapital = false, bold = true, center = true, color = Identity_1.COLOR.WHITE, fontSize =
|
|
30
|
+
var { variant = ButtonVariant.PRIMARY, backgroundColor, block = false, disabled = false, noCapital = false, bold = true, center = true, color = Identity_1.COLOR.WHITE, fontSize = theme.fontSizes.base, noWrap = true, textTransform = 'none', truncate = true } = _a, props = __rest(_a, ["variant", "backgroundColor", "block", "disabled", "noCapital", "bold", "center", "color", "fontSize", "noWrap", "textTransform", "truncate"]);
|
|
31
31
|
return (Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({}, (0, Text_1.textStyle)(theme, Object.assign({ block,
|
|
32
32
|
bold,
|
|
33
33
|
center,
|
|
@@ -65,7 +65,7 @@ const buttonStyle = (theme, _a) => {
|
|
|
65
65
|
border: `1px solid ${theme.Button.secondaryActiveBorder}`,
|
|
66
66
|
color: theme.general.primaryColor,
|
|
67
67
|
},
|
|
68
|
-
})))), (variant === ButtonVariant.TERTIARY && Object.assign({ backgroundColor: backgroundColor || (disabled ? theme.Button.tertiarydisabledBg : theme.Button.tertiaryBg), border: disabled ? `1px solid ${theme.Button.tertiaryDisabledBorder}` : `1px solid ${theme.Button.tertiaryBorder}`, borderRadius: '12px', color: disabled ? theme.Input.placeholderColor : theme.general.color, fontSize:
|
|
68
|
+
})))), (variant === ButtonVariant.TERTIARY && Object.assign({ backgroundColor: backgroundColor || (disabled ? theme.Button.tertiarydisabledBg : theme.Button.tertiaryBg), border: disabled ? `1px solid ${theme.Button.tertiaryDisabledBorder}` : `1px solid ${theme.Button.tertiaryBorder}`, borderRadius: '12px', color: disabled ? theme.Input.placeholderColor : theme.general.color, fontSize: theme.fontSizes.medium, fontWeight: 700, lineHeight: '1.5rem', padding: '4px 8px', '& > svg > path': {
|
|
69
69
|
fill: disabled ? theme.Input.placeholderColor : theme.general.color,
|
|
70
70
|
} }, (!disabled && {
|
|
71
71
|
'&:hover, &:focus': {
|
|
@@ -82,7 +82,7 @@ const buttonStyle = (theme, _a) => {
|
|
|
82
82
|
fill: theme.IconButton.primaryActiveFillColor,
|
|
83
83
|
},
|
|
84
84
|
},
|
|
85
|
-
})))), (variant === ButtonVariant.QUATERNARY && Object.assign({ backgroundColor: backgroundColor || (disabled ? Identity_1.COLOR_V2.GRAY_50 : Identity_1.COLOR_V2.GREEN), color: disabled ? Identity_1.COLOR_V2.GRAY_80 : Identity_1.COLOR_V2.WHITE, lineHeight: '
|
|
85
|
+
})))), (variant === ButtonVariant.QUATERNARY && Object.assign({ backgroundColor: backgroundColor || (disabled ? Identity_1.COLOR_V2.GRAY_50 : Identity_1.COLOR_V2.GREEN), color: disabled ? Identity_1.COLOR_V2.GRAY_80 : Identity_1.COLOR_V2.WHITE, lineHeight: '1.5rem' }, (!disabled && {
|
|
86
86
|
'&:hover, &:focus': {
|
|
87
87
|
backgroundColor: Identity_1.COLOR_V2.GREEN_LIGHT_600,
|
|
88
88
|
},
|
package/lib/Form/Checkbox.js
CHANGED
|
@@ -67,10 +67,10 @@ const StyledLabel = (_a) => {
|
|
|
67
67
|
fill: theme.general.backgroundColor,
|
|
68
68
|
}, [`.${Input_1.INPUT_CLASSNAME} + & > svg`]: Object.assign({ fill: 'none', position: 'absolute', top: '50%', transform: 'translateY(-50%)' }, (labelBeforeCheckbox
|
|
69
69
|
? {
|
|
70
|
-
right:
|
|
70
|
+
right: theme.fontSizes.small,
|
|
71
71
|
}
|
|
72
72
|
: {
|
|
73
|
-
left: '
|
|
73
|
+
left: '4px',
|
|
74
74
|
})) }, (!disabled && {
|
|
75
75
|
[`.${Input_1.INPUT_CLASSNAME}:hover + &::before`]: {
|
|
76
76
|
borderColor: theme.general.primaryColor,
|
|
@@ -83,10 +83,10 @@ const StyledLabel = (_a) => {
|
|
|
83
83
|
}
|
|
84
84
|
: {
|
|
85
85
|
border: `2px solid ${theme.Checkbox.disableBorderColor}`,
|
|
86
|
-
})), { borderRadius: '3px', boxSizing: 'border-box', content: '""', display: 'inline-block', width: '22px', height: '22px', lineHeight: 1.
|
|
86
|
+
})), { borderRadius: '3px', boxSizing: 'border-box', content: '""', display: 'inline-block', width: '22px', height: '22px', lineHeight: '1.4rem', margin: '0 8px 0 0px', color: theme.general.color }) }), (labelBeforeCheckbox && {
|
|
87
87
|
flexDirection: 'row-reverse',
|
|
88
88
|
justifyContent: 'space-between',
|
|
89
|
-
})), { alignItems: 'center', position: 'relative', margin: '0 0 0 -16px', width: aligncenter ? 'auto' : '100%', lineHeight: 1.
|
|
89
|
+
})), { alignItems: 'center', position: 'relative', margin: '0 0 0 -16px', width: aligncenter ? 'auto' : '100%', lineHeight: '1.4rem', display: 'flex', opacity: disabled ? 0.56 : 1, cursor: disabled ? 'not-allowed' : 'pointer', borderRadius: '4px' })) }, props, { children: [children, (0, jsx_runtime_1.jsx)("svg", Object.assign({ width: "15", height: "13", viewBox: "0 0 16 13", xmlns: "http://www.w3.org/2000/svg" }, { children: (0, jsx_runtime_1.jsx)("path", { d: "M5.65685 12.0711L15.9842 1.62738L14.57 0.213167L5.65685 9.24264L1.41421 5L0 6.41421L5.65685 12.0711Z" }) }))] })));
|
|
90
90
|
};
|
|
91
91
|
exports.Checkbox = React.forwardRef((_a, ref) => {
|
|
92
92
|
var { id, children, style, disabled, wrapperCSS = {}, markInvalid, aligncenter, labelBeforeCheckbox, outlineOffset = '0.4rem' } = _a, props = __rest(_a, ["id", "children", "style", "disabled", "wrapperCSS", "markInvalid", "aligncenter", "labelBeforeCheckbox", "outlineOffset"]);
|
package/lib/Form/CodeInput.js
CHANGED
|
@@ -56,7 +56,7 @@ const digitInputStyle = (theme, props) => (Object.assign(Object.assign({}, (0, I
|
|
|
56
56
|
marginLeft: 'min(19px, 2vw)',
|
|
57
57
|
}, '&:hover': {
|
|
58
58
|
boxShadow: `0 0 0 1px ${Identity_1.COLOR_V2.GRAY_60}`,
|
|
59
|
-
}, fontSize:
|
|
59
|
+
}, fontSize: theme.fontSizes.extraLarge, lineHeight: '1.75rem', borderRadius: '12px', padding: 0, textAlign: 'center', width: 'min(48px, 13vw)', height: '56px' }));
|
|
60
60
|
const DigitInput = React.forwardRef((props, ref) => (0, jsx_runtime_1.jsx)("input", Object.assign({ ref: ref, css: (theme) => digitInputStyle(theme, props) }, props, { type: "tel" })));
|
|
61
61
|
DigitInput.displayName = 'DigitInput';
|
|
62
62
|
const CodeInput = ({ style, digits = 6, autoFocus = false, markInvalid, onCodeComplete = util_1.noop, disabled, }) => {
|
|
@@ -56,7 +56,7 @@ const dropFileZoneWrapperStyle = (theme, isDraggedOver) => ({
|
|
|
56
56
|
textAlign: 'center',
|
|
57
57
|
backgroundColor: isDraggedOver ? theme.general.backgroundColor : Identity_1.COLOR.WHITE,
|
|
58
58
|
fontWeight: 400,
|
|
59
|
-
fontSize: '
|
|
59
|
+
fontSize: '0.75rem',
|
|
60
60
|
lineHeight: '13px',
|
|
61
61
|
color: Identity_1.COLOR.GRAY,
|
|
62
62
|
});
|
|
@@ -79,8 +79,8 @@ exports.dropFileZoneHeadingStyle = {
|
|
|
79
79
|
exports.dropFileZonDescriptionStyle = {
|
|
80
80
|
marginTop: '12px',
|
|
81
81
|
fontWeight: 400,
|
|
82
|
-
fontSize: '
|
|
83
|
-
lineHeight: '
|
|
82
|
+
fontSize: '0.625rem',
|
|
83
|
+
lineHeight: '0.8125rem',
|
|
84
84
|
color: Identity_1.COLOR.GRAY,
|
|
85
85
|
whiteSpace: 'pre-line',
|
|
86
86
|
};
|
package/lib/Form/ErrorMessage.js
CHANGED
|
@@ -19,7 +19,7 @@ const Text_1 = require("../Text");
|
|
|
19
19
|
const util_1 = require("../util");
|
|
20
20
|
const errorMessageStyle = (theme, _a) => {
|
|
21
21
|
var { justify = 'flex-start', align = 'center' } = _a, props = __rest(_a, ["justify", "align"]);
|
|
22
|
-
return (Object.assign(Object.assign({}, (0, Layout_1.flexBoxStyle)(Object.assign({ align, justify }, props))), { a: Object.assign({}, (0, Text_1.linkStyle)(theme, Object.assign({ bold: false, fontSize:
|
|
22
|
+
return (Object.assign(Object.assign({}, (0, Layout_1.flexBoxStyle)(Object.assign({ align, justify }, props))), { a: Object.assign({}, (0, Text_1.linkStyle)(theme, Object.assign({ bold: false, fontSize: theme.fontSizes.small, textTransform: 'none' }, props))), marginBottom: '12px' }));
|
|
23
23
|
};
|
|
24
24
|
exports.errorMessageStyle = errorMessageStyle;
|
|
25
25
|
const filterErrorMessageProps = (props) => {
|
package/lib/Form/Input.js
CHANGED
|
@@ -62,7 +62,7 @@ const util_1 = require("../util");
|
|
|
62
62
|
const inputStyle = (theme, { markInvalid = false, placeholderTextTransform = 'none', disabled = false }) => {
|
|
63
63
|
const placeholderStyle = {
|
|
64
64
|
color: theme.Input.placeholderColor,
|
|
65
|
-
fontSize:
|
|
65
|
+
fontSize: theme.fontSizes.base,
|
|
66
66
|
textTransform: placeholderTextTransform,
|
|
67
67
|
};
|
|
68
68
|
return {
|
|
@@ -88,7 +88,7 @@ const inputStyle = (theme, { markInvalid = false, placeholderTextTransform = 'no
|
|
|
88
88
|
color: theme.general.color,
|
|
89
89
|
fontWeight: 300,
|
|
90
90
|
height: '48px',
|
|
91
|
-
lineHeight: '
|
|
91
|
+
lineHeight: '1.5rem',
|
|
92
92
|
outline: 'none',
|
|
93
93
|
padding: '0 16px',
|
|
94
94
|
width: '100%',
|
|
@@ -114,7 +114,7 @@ exports.Input = React.forwardRef((_a, ref) => {
|
|
|
114
114
|
return ((0, jsx_runtime_1.jsxs)("div", Object.assign({ className: exports.INPUT_GROUP, css: (theme) => (Object.assign({ marginBottom: hasError ? '2px' : '20px', width: '100%', '&:focus-within label': {
|
|
115
115
|
color: theme.general.primaryColor,
|
|
116
116
|
} }, wrapperCSS)) }, { children: [label && ((0, jsx_runtime_1.jsx)(InputLabel_1.InputLabel, Object.assign({ htmlFor: props.id, isRequired: props.required, markInvalid: props.markInvalid }, { children: label }))), (0, jsx_runtime_1.jsxs)("div", Object.assign({ css: { marginBottom: hasError && '8px', position: 'relative' } }, { children: [(0, jsx_runtime_1.jsx)("input", Object.assign({ className: exports.INPUT_CLASSNAME, css: (theme) => (0, exports.inputStyle)(theme, props, hasError), ref: ref, type: isPasswordInput ? toggledPasswordType : type, "aria-required": props.required }, filterInputProps(props))), hasError && !isPasswordInput && ((0, jsx_runtime_1.jsx)(Icon_1.ErrorIcon, { css: centerInputAction, width: 16, height: 16, "aria-hidden": "true" })), isPasswordInput && ((0, jsx_runtime_1.jsx)("button", Object.assign({ type: "button", "data-uie-name": !togglePassword ? 'do-show-password' : 'do-hide-password', css: Object.assign(Object.assign({}, centerInputAction), { background: 'transparent', border: 'none', cursor: 'pointer', padding: 0 }), onClick: toggleSetPassword, title: "Toggle password visibility", "aria-controls": props.id, "aria-expanded": togglePassword }, { children: togglePassword ? (0, jsx_runtime_1.jsx)(Icon_1.HideIcon, {}) : (0, jsx_runtime_1.jsx)(Icon_1.ShowIcon, {}) })))] })), !hasError && helperText && ((0, jsx_runtime_1.jsx)("p", Object.assign({ css: (theme) => ({
|
|
117
|
-
fontSize:
|
|
117
|
+
fontSize: theme.fontSizes.small,
|
|
118
118
|
fontWeight: 400,
|
|
119
119
|
color: theme.Input.placeholderColor,
|
|
120
120
|
marginTop: 8,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"InputLabel.d.ts","sourceRoot":"","sources":["../../src/Form/InputLabel.tsx"],"names":[],"mappings":"AAmBA,OAAO,EAAC,EAAE,EAAE,SAAS,EAAC,MAAM,OAAO,CAAC;AAKpC,MAAM,WAAW,eAAe;IAC9B,QAAQ,EAAE,SAAS,GAAG,MAAM,CAAC;IAC7B,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB;AAED,QAAA,MAAM,UAAU,EAAE,EAAE,CAAC,eAAe,
|
|
1
|
+
{"version":3,"file":"InputLabel.d.ts","sourceRoot":"","sources":["../../src/Form/InputLabel.tsx"],"names":[],"mappings":"AAmBA,OAAO,EAAC,EAAE,EAAE,SAAS,EAAC,MAAM,OAAO,CAAC;AAKpC,MAAM,WAAW,eAAe;IAC9B,QAAQ,EAAE,SAAS,GAAG,MAAM,CAAC;IAC7B,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB;AAED,QAAA,MAAM,UAAU,EAAE,EAAE,CAAC,eAAe,CAqBnC,CAAC;AAEF,OAAO,EAAC,UAAU,EAAC,CAAC"}
|
package/lib/Form/InputLabel.js
CHANGED
|
@@ -17,10 +17,10 @@ const Identity_1 = require("../Identity");
|
|
|
17
17
|
const InputLabel = (_a) => {
|
|
18
18
|
var { htmlFor, markInvalid, isRequired, children } = _a, props = __rest(_a, ["htmlFor", "markInvalid", "isRequired", "children"]);
|
|
19
19
|
return ((0, jsx_runtime_1.jsxs)("label", Object.assign({ htmlFor: htmlFor, css: (theme) => ({
|
|
20
|
-
fontSize:
|
|
20
|
+
fontSize: theme.fontSizes.medium,
|
|
21
21
|
fontWeight: 400,
|
|
22
|
-
lineHeight: '
|
|
22
|
+
lineHeight: '1rem',
|
|
23
23
|
color: markInvalid ? Identity_1.COLOR_V2.RED_LIGHT_500 : theme.Input.labelColor,
|
|
24
|
-
}) }, props, { children: [children, isRequired && (0, jsx_runtime_1.jsx)("span", Object.assign({ css: { fontSize:
|
|
24
|
+
}) }, props, { children: [children, isRequired && ((0, jsx_runtime_1.jsx)("span", Object.assign({ css: (theme) => ({ fontSize: theme.fontSizes.base, marginLeft: '4px', color: Identity_1.COLOR_V2.RED_LIGHT_500 }) }, { children: "*" })))] })));
|
|
25
25
|
};
|
|
26
26
|
exports.InputLabel = InputLabel;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RangeInput.d.ts","sourceRoot":"","sources":["../../src/Form/RangeInput.tsx"],"names":[],"mappings":"AAmBA,OAAO,EAAC,EAAE,EAAa,MAAM,OAAO,CAAC;AAErC,OAAO,EAAC,SAAS,EAAC,MAAM,gBAAgB,CAAC;AAWzC,OAAO,EAAC,SAAS,EAAC,MAAM,SAAS,CAAC;AAElC,MAAM,WAAW,eAAe,CAAC,CAAC,GAAG,gBAAgB,CAAE,SAAQ,SAAS,CAAC,CAAC,CAAC;IACzE,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,UAAU,CAAC,EAAE,SAAS,CAAC;CACxB;AAED,eAAO,MAAM,UAAU,EAAE,EAAE,CAAC,eAAe,
|
|
1
|
+
{"version":3,"file":"RangeInput.d.ts","sourceRoot":"","sources":["../../src/Form/RangeInput.tsx"],"names":[],"mappings":"AAmBA,OAAO,EAAC,EAAE,EAAa,MAAM,OAAO,CAAC;AAErC,OAAO,EAAC,SAAS,EAAC,MAAM,gBAAgB,CAAC;AAWzC,OAAO,EAAC,SAAS,EAAC,MAAM,SAAS,CAAC;AAElC,MAAM,WAAW,eAAe,CAAC,CAAC,GAAG,gBAAgB,CAAE,SAAQ,SAAS,CAAC,CAAC,CAAC;IACzE,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,UAAU,CAAC,EAAE,SAAS,CAAC;CACxB;AAED,eAAO,MAAM,UAAU,EAAE,EAAE,CAAC,eAAe,CAgD1C,CAAC"}
|
package/lib/Form/RangeInput.js
CHANGED
|
@@ -40,9 +40,6 @@ exports.RangeInput = (0, react_1.forwardRef)((_a, ref) => {
|
|
|
40
40
|
const maxNum = Number(max);
|
|
41
41
|
const valueNum = Number(value);
|
|
42
42
|
const backgroundSize = `${((valueNum - minNum) * 100) / (maxNum - minNum)}% 100%`;
|
|
43
|
-
return ((0, jsx_runtime_1.jsxs)("div", Object.assign({ css: wrapperCSS }, { children: [label && (0, jsx_runtime_1.jsx)(InputLabel_1.InputLabel, Object.assign({ htmlFor: id }, { children: label })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ css: RangeInput_styles_1.rangeInputWrapperStyles }, { children: [minValueLabel && (0, jsx_runtime_1.jsx)("span", Object.assign({ css: (0, RangeInput_styles_1.getValueLabelStyles)(RangeInput_styles_1.ValueLabelPosition.LEFT) }, { children: minValueLabel })), maxValueLabel && (0, jsx_runtime_1.jsx)("span", Object.assign({ css: (0, RangeInput_styles_1.getValueLabelStyles)(RangeInput_styles_1.ValueLabelPosition.RIGHT) }, { children: maxValueLabel })), (0, jsx_runtime_1.jsx)("input", Object.assign({ ref: ref, css: (theme) =>
|
|
44
|
-
console.info('hallo', theme, backgroundSize);
|
|
45
|
-
return (0, RangeInput_styles_1.getImageCropZoomInputStyles)(theme, backgroundSize);
|
|
46
|
-
}, id: id, name: id, min: min, max: max, value: value, onChange: onChange, type: "range" }, inputProps))] }))] })));
|
|
43
|
+
return ((0, jsx_runtime_1.jsxs)("div", Object.assign({ css: wrapperCSS }, { children: [label && (0, jsx_runtime_1.jsx)(InputLabel_1.InputLabel, Object.assign({ htmlFor: id }, { children: label })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ css: RangeInput_styles_1.rangeInputWrapperStyles }, { children: [minValueLabel && ((0, jsx_runtime_1.jsx)("span", Object.assign({ css: (theme) => (0, RangeInput_styles_1.getValueLabelStyles)(theme, RangeInput_styles_1.ValueLabelPosition.LEFT) }, { children: minValueLabel }))), maxValueLabel && ((0, jsx_runtime_1.jsx)("span", Object.assign({ css: (theme) => (0, RangeInput_styles_1.getValueLabelStyles)(theme, RangeInput_styles_1.ValueLabelPosition.RIGHT) }, { children: maxValueLabel }))), (0, jsx_runtime_1.jsx)("input", Object.assign({ ref: ref, css: (theme) => (0, RangeInput_styles_1.getImageCropZoomInputStyles)(theme, backgroundSize), id: id, name: id, min: min, max: max, value: value, onChange: onChange, type: "range" }, inputProps))] }))] })));
|
|
47
44
|
});
|
|
48
45
|
exports.RangeInput.displayName = 'RangeInput';
|
|
@@ -6,5 +6,5 @@ export declare enum ValueLabelPosition {
|
|
|
6
6
|
LEFT = "left",
|
|
7
7
|
RIGHT = "right"
|
|
8
8
|
}
|
|
9
|
-
export declare const getValueLabelStyles: (position: ValueLabelPosition) => CSSObject;
|
|
9
|
+
export declare const getValueLabelStyles: (theme: Theme, position: ValueLabelPosition) => CSSObject;
|
|
10
10
|
//# sourceMappingURL=RangeInput.styles.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RangeInput.styles.d.ts","sourceRoot":"","sources":["../../src/Form/RangeInput.styles.ts"],"names":[],"mappings":"AAmBA,OAAO,EAAC,SAAS,EAAC,MAAM,gBAAgB,CAAC;AAGzC,OAAO,EAAC,KAAK,EAAC,MAAM,WAAW,CAAC;AAGhC,eAAO,MAAM,uBAAuB,EAAE,SAGrC,CAAC;AAKF,eAAO,MAAM,2BAA2B,UAAW,KAAK,kBAAkB,GAAG,MAAM,KAAK,MAAM,GAAG,KAAG,SA4BlG,CAAC;AAEH,oBAAY,kBAAkB;IAC5B,IAAI,SAAS;IACb,KAAK,UAAU;CAChB;AAED,eAAO,MAAM,mBAAmB,
|
|
1
|
+
{"version":3,"file":"RangeInput.styles.d.ts","sourceRoot":"","sources":["../../src/Form/RangeInput.styles.ts"],"names":[],"mappings":"AAmBA,OAAO,EAAC,SAAS,EAAC,MAAM,gBAAgB,CAAC;AAGzC,OAAO,EAAC,KAAK,EAAC,MAAM,WAAW,CAAC;AAGhC,eAAO,MAAM,uBAAuB,EAAE,SAGrC,CAAC;AAKF,eAAO,MAAM,2BAA2B,UAAW,KAAK,kBAAkB,GAAG,MAAM,KAAK,MAAM,GAAG,KAAG,SA4BlG,CAAC;AAEH,oBAAY,kBAAkB;IAC5B,IAAI,SAAS;IACb,KAAK,UAAU;CAChB;AAED,eAAO,MAAM,mBAAmB,UAAW,KAAK,YAAY,kBAAkB,KAAG,SAO/E,CAAC"}
|
|
@@ -48,10 +48,10 @@ var ValueLabelPosition;
|
|
|
48
48
|
ValueLabelPosition["LEFT"] = "left";
|
|
49
49
|
ValueLabelPosition["RIGHT"] = "right";
|
|
50
50
|
})(ValueLabelPosition = exports.ValueLabelPosition || (exports.ValueLabelPosition = {}));
|
|
51
|
-
const getValueLabelStyles = (position) => ({
|
|
51
|
+
const getValueLabelStyles = (theme, position) => ({
|
|
52
52
|
pointerEvents: 'none',
|
|
53
53
|
bottom: '100%',
|
|
54
|
-
fontSize:
|
|
54
|
+
fontSize: theme.fontSizes.base,
|
|
55
55
|
fontWeight: 300,
|
|
56
56
|
position: 'absolute',
|
|
57
57
|
[position]: '4px',
|
package/lib/Form/Select.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Select.d.ts","sourceRoot":"","sources":["../../src/Form/Select.tsx"],"names":[],"mappings":"AAmBA,OAAO,EAAC,YAAY,EAAC,MAAM,OAAO,CAAC;AAEnC,OAAO,EAAC,SAAS,EAAW,MAAM,gBAAgB,CAAC;AAEnD,OAAO,KAAK,EAAC,iBAAiB,EAAC,MAAM,iDAAiD,CAAC;AAevF,MAAM,MAAM,MAAM,GAAG;IACnB,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;IACvB,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB,CAAC;AAEF,UAAU,WAAW,CAAC,OAAO,SAAS,OAAO,CAAE,SAAQ,iBAAiB,CAAC,MAAM,EAAE,OAAO,CAAC;IACvF,EAAE,EAAE,MAAM,CAAC;IACX,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,UAAU,CAAC,EAAE,SAAS,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,KAAK,CAAC,EAAE,YAAY,CAAC;IACrB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAED,eAAO,MAAM,MAAM,
|
|
1
|
+
{"version":3,"file":"Select.d.ts","sourceRoot":"","sources":["../../src/Form/Select.tsx"],"names":[],"mappings":"AAmBA,OAAO,EAAC,YAAY,EAAC,MAAM,OAAO,CAAC;AAEnC,OAAO,EAAC,SAAS,EAAW,MAAM,gBAAgB,CAAC;AAEnD,OAAO,KAAK,EAAC,iBAAiB,EAAC,MAAM,iDAAiD,CAAC;AAevF,MAAM,MAAM,MAAM,GAAG;IACnB,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;IACvB,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB,CAAC;AAEF,UAAU,WAAW,CAAC,OAAO,SAAS,OAAO,CAAE,SAAQ,iBAAiB,CAAC,MAAM,EAAE,OAAO,CAAC;IACvF,EAAE,EAAE,MAAM,CAAC;IACX,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,UAAU,CAAC,EAAE,SAAS,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,KAAK,CAAC,EAAE,YAAY,CAAC;IACrB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAED,eAAO,MAAM,MAAM,qOAyElB,CAAC"}
|
package/lib/Form/Select.js
CHANGED
|
@@ -34,6 +34,11 @@ const Select = (_a) => {
|
|
|
34
34
|
Menu: (0, SelectComponents_1.Menu)(dataUieName),
|
|
35
35
|
ValueContainer: SelectComponents_1.ValueContainer,
|
|
36
36
|
IndicatorsContainer: SelectComponents_1.IndicatorsContainer,
|
|
37
|
-
}, tabIndex: -1, isDisabled: disabled, hideSelectedOptions: false, isSearchable: false, isClearable: false, closeMenuOnSelect: !isMulti, isMulti: isMulti, options: options }, props)), !hasError && helperText && ((0, jsx_runtime_1.jsx)("p", Object.assign({ css: (theme) => ({
|
|
37
|
+
}, tabIndex: -1, isDisabled: disabled, hideSelectedOptions: false, isSearchable: false, isClearable: false, closeMenuOnSelect: !isMulti, isMulti: isMulti, options: options }, props)), !hasError && helperText && ((0, jsx_runtime_1.jsx)("p", Object.assign({ css: (theme) => ({
|
|
38
|
+
fontSize: theme.fontSizes.small,
|
|
39
|
+
fontWeight: 400,
|
|
40
|
+
color: theme.Input.labelColor,
|
|
41
|
+
marginTop: 8,
|
|
42
|
+
}) }, { children: helperText }))), error] })));
|
|
38
43
|
};
|
|
39
44
|
exports.Select = Select;
|
|
@@ -59,7 +59,7 @@ const CustomOption = (dataUieName) => (props) => {
|
|
|
59
59
|
'data-uie-selected': isSelected,
|
|
60
60
|
}), { children: [isMulti && ((0, jsx_runtime_1.jsx)("input", { type: "checkbox", checked: isSelected, onChange: () => null, css: { gridArea: 'checkbox', width: 22, height: 22, cursor: 'pointer', placeSelf: 'center' } })), (0, jsx_runtime_1.jsx)("div", Object.assign({ css: { gridArea: 'label', overflowWrap: 'break-word', overflow: 'hidden' } }, { children: children })), data && data.description && ((0, jsx_runtime_1.jsx)("p", Object.assign({ css: (theme) => ({
|
|
61
61
|
marginBottom: 0,
|
|
62
|
-
fontSize:
|
|
62
|
+
fontSize: theme.fontSizes.medium,
|
|
63
63
|
color: isSelected ? theme.Select.focusedDescriptionColor : theme.Input.labelColor,
|
|
64
64
|
gridArea: 'description',
|
|
65
65
|
}) }, { children: data.description })))] })) })));
|
|
@@ -143,7 +143,7 @@ export declare const customStyles: (theme: Theme, markInvalid?: boolean) => {
|
|
|
143
143
|
fontKerning?: import("csstype").Property.FontKerning | NonNullable<import("csstype").Property.FontKerning>[] | import("csstype").Property.FontKerning[];
|
|
144
144
|
fontLanguageOverride?: string[] | import("csstype").Property.FontLanguageOverride | import("csstype").Property.FontLanguageOverride[];
|
|
145
145
|
fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | NonNullable<import("csstype").Property.FontOpticalSizing>[] | import("csstype").Property.FontOpticalSizing[];
|
|
146
|
-
fontSize?:
|
|
146
|
+
fontSize?: import("csstype").Property.FontSize<string | number> | NonNullable<import("csstype").Property.FontSize<string | number>>[] | (string | (string & {}))[];
|
|
147
147
|
fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | NonNullable<import("csstype").Property.FontSizeAdjust>[] | ("none" | (string & {}) | import("csstype").Globals | "from-font")[];
|
|
148
148
|
fontSmooth?: string[] | import("csstype").Property.FontSmooth<string | number> | NonNullable<import("csstype").Property.FontSmooth<string | number>>[];
|
|
149
149
|
fontStretch?: string[] | import("csstype").Property.FontStretch | import("csstype").Property.FontStretch[];
|
|
@@ -382,7 +382,7 @@ export declare const customStyles: (theme: Theme, markInvalid?: boolean) => {
|
|
|
382
382
|
animation?: import("csstype").Property.Animation<string & {}> | NonNullable<import("csstype").Property.Animation<string & {}>>[] | (import("csstype").Globals | import("csstype").DataType.SingleAnimationDirection | import("csstype").DataType.SingleAnimationFillMode | "infinite" | "paused" | "running" | import("csstype").DataType.EasingFunction)[];
|
|
383
383
|
background?: (string | (string & {}))[] | import("csstype").Property.Background<string | number> | NonNullable<import("csstype").Property.Background<string | number>>[];
|
|
384
384
|
backgroundPosition?: (string | (string & {}))[] | import("csstype").Property.BackgroundPosition<string | number> | NonNullable<import("csstype").Property.BackgroundPosition<string | number>>[];
|
|
385
|
-
border?: import("csstype").Property.Border<string | number> | NonNullable<import("csstype").Property.Border<string | number>>[]
|
|
385
|
+
border?: (string | (string & {}))[] | import("csstype").Property.Border<string | number> | NonNullable<import("csstype").Property.Border<string | number>>[];
|
|
386
386
|
borderBlock?: (string | (string & {}))[] | import("csstype").Property.BorderBlock<string | number> | NonNullable<import("csstype").Property.BorderBlock<string | number>>[];
|
|
387
387
|
borderBlockEnd?: (string | (string & {}))[] | import("csstype").Property.BorderBlockEnd<string | number> | NonNullable<import("csstype").Property.BorderBlockEnd<string | number>>[];
|
|
388
388
|
borderBlockStart?: (string | (string & {}))[] | import("csstype").Property.BorderBlockStart<string | number> | NonNullable<import("csstype").Property.BorderBlockStart<string | number>>[];
|
package/lib/Form/SelectStyles.js
CHANGED
|
@@ -64,7 +64,7 @@ const customStyles = (theme, markInvalid = false) => ({
|
|
|
64
64
|
},
|
|
65
65
|
menu: provided => (Object.assign(Object.assign({}, provided), { boxShadow: `0 0 0 1px ${theme.general.primaryColor}, 0 4px 11px hsl(0deg 0% 0% / 10%)`, borderRadius: 12, marginBottom: 0, marginTop: 4, overflowY: 'overlay' })),
|
|
66
66
|
menuList: provided => (Object.assign(Object.assign({}, provided), { borderRadius: 12, paddingBottom: 0, paddingTop: 0 })),
|
|
67
|
-
option: (provided, { isMulti, isDisabled, isFocused, isSelected }) => (Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({}, provided), { backgroundColor: theme.Input.backgroundColor, color: theme.general.color, padding: '10px 18px', cursor: isDisabled ? 'not-allowed' : 'pointer', fontSize:
|
|
67
|
+
option: (provided, { isMulti, isDisabled, isFocused, isSelected }) => (Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({}, provided), { backgroundColor: theme.Input.backgroundColor, color: theme.general.color, padding: '10px 18px', cursor: isDisabled ? 'not-allowed' : 'pointer', fontSize: theme.fontSizes.base, fontWeight: 300, lineHeight: '1.5rem' }), (isSelected &&
|
|
68
68
|
!isDisabled &&
|
|
69
69
|
!isMulti && {
|
|
70
70
|
background: theme.general.primaryColor,
|
package/lib/Form/ShakeBox.d.ts
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
export interface ShakeBoxProps
|
|
2
|
+
export interface ShakeBoxProps {
|
|
3
3
|
amplitude?: number;
|
|
4
4
|
damping?: number;
|
|
5
5
|
speed?: number;
|
|
6
6
|
threshold?: number;
|
|
7
|
+
children?: React.ReactNode;
|
|
7
8
|
}
|
|
8
9
|
export interface ShakeBoxRef {
|
|
9
10
|
shake: () => void;
|
|
10
11
|
}
|
|
11
|
-
export declare const ShakeBox: React.ForwardRefExoticComponent<
|
|
12
|
+
export declare const ShakeBox: React.ForwardRefExoticComponent<ShakeBoxProps & React.RefAttributes<ShakeBoxRef>>;
|
|
12
13
|
//# sourceMappingURL=ShakeBox.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ShakeBox.d.ts","sourceRoot":"","sources":["../../src/Form/ShakeBox.tsx"],"names":[],"mappings":"AAoBA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,MAAM,WAAW,
|
|
1
|
+
{"version":3,"file":"ShakeBox.d.ts","sourceRoot":"","sources":["../../src/Form/ShakeBox.tsx"],"names":[],"mappings":"AAoBA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,MAAM,WAAW,aAAa;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC5B;AAED,MAAM,WAAW,WAAW;IAC1B,KAAK,EAAE,MAAM,IAAI,CAAC;CACnB;AAED,eAAO,MAAM,QAAQ,mFAiCpB,CAAC"}
|
package/lib/Form/Switch.js
CHANGED
package/lib/Form/TextArea.js
CHANGED
|
@@ -49,7 +49,7 @@ const util_1 = require("../util");
|
|
|
49
49
|
const textAreaStyle = (theme, { markInvalid = false, placeholderTextTransform = 'none', disabled = false }) => {
|
|
50
50
|
const placeholderStyle = {
|
|
51
51
|
color: theme.Input.placeholderColor,
|
|
52
|
-
fontSize:
|
|
52
|
+
fontSize: theme.fontSizes.base,
|
|
53
53
|
textTransform: placeholderTextTransform,
|
|
54
54
|
};
|
|
55
55
|
return {
|
|
@@ -71,7 +71,7 @@ const textAreaStyle = (theme, { markInvalid = false, placeholderTextTransform =
|
|
|
71
71
|
caretColor: Identity_1.COLOR.BLUE,
|
|
72
72
|
color: theme.general.color,
|
|
73
73
|
fontWeight: 300,
|
|
74
|
-
lineHeight: '
|
|
74
|
+
lineHeight: '1.5rem',
|
|
75
75
|
margin: '0 0 16px',
|
|
76
76
|
outline: 'none',
|
|
77
77
|
padding: '16px 16px',
|
package/lib/Form/Tooltip.js
CHANGED
|
@@ -24,10 +24,10 @@ const tooltipStyle = ({ disabled = false, bottom = false, left = false, right =
|
|
|
24
24
|
color: light ? Identity_1.COLOR.TEXT : Identity_1.COLOR.WHITE,
|
|
25
25
|
content: 'attr(data-text)',
|
|
26
26
|
display: 'block',
|
|
27
|
-
fontSize: '
|
|
27
|
+
fontSize: '0.75rem',
|
|
28
28
|
fontWeight: light ? 400 : 600,
|
|
29
29
|
left: right ? 'calc(100% + 8px)' : 'auto',
|
|
30
|
-
lineHeight: '
|
|
30
|
+
lineHeight: '0.875rem',
|
|
31
31
|
maxWidth: '200px',
|
|
32
32
|
minWidth: '120px',
|
|
33
33
|
opacity: 0,
|
package/lib/GlobalStyle.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GlobalStyle.d.ts","sourceRoot":"","sources":["../src/GlobalStyle.tsx"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"GlobalStyle.d.ts","sourceRoot":"","sources":["../src/GlobalStyle.tsx"],"names":[],"mappings":";AAsBA,OAAO,EAAC,KAAK,EAAC,MAAM,UAAU,CAAC;AA8C/B,eAAO,MAAM,WAAW;WAA+B,KAAK;;;EAU1D,CAAC"}
|
package/lib/GlobalStyle.js
CHANGED
|
@@ -25,7 +25,7 @@ const jsx_runtime_1 = require("@emotion/react/jsx-runtime");
|
|
|
25
25
|
*/
|
|
26
26
|
const react_1 = require("@emotion/react");
|
|
27
27
|
const emotion_normalize_1 = __importDefault(require("emotion-normalize"));
|
|
28
|
-
const GlobalCssVariables_1 = require("./GlobalCssVariables");
|
|
28
|
+
const GlobalCssVariables_1 = require("./Theme/GlobalCssVariables");
|
|
29
29
|
const getGlobalStyles = (theme) => ({
|
|
30
30
|
'*': {
|
|
31
31
|
boxSizing: 'border-box',
|
|
@@ -39,6 +39,7 @@ const getGlobalStyles = (theme) => ({
|
|
|
39
39
|
html: {
|
|
40
40
|
background: theme.general.backgroundColor,
|
|
41
41
|
transition: 'background 0.15s',
|
|
42
|
+
fontSize: '16px',
|
|
42
43
|
},
|
|
43
44
|
p: {
|
|
44
45
|
marginTop: 0,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
export interface ContainerProps
|
|
1
|
+
import { FC, HTMLProps } from 'react';
|
|
2
|
+
export interface ContainerProps extends HTMLProps<HTMLDivElement> {
|
|
3
3
|
centerText?: boolean;
|
|
4
4
|
level?: keyof Level;
|
|
5
5
|
verticalCenter?: boolean;
|
|
@@ -11,11 +11,11 @@ export interface Level {
|
|
|
11
11
|
xs: number;
|
|
12
12
|
xxs: number;
|
|
13
13
|
}
|
|
14
|
-
export declare const Container:
|
|
14
|
+
export declare const Container: FC<ContainerProps>;
|
|
15
15
|
export type LevelContainerProps = Omit<ContainerProps, 'level'>;
|
|
16
|
-
export declare const ContainerLG:
|
|
17
|
-
export declare const ContainerMD:
|
|
18
|
-
export declare const ContainerSM:
|
|
19
|
-
export declare const ContainerXS:
|
|
20
|
-
export declare const ContainerXXS:
|
|
16
|
+
export declare const ContainerLG: FC<ContainerProps>;
|
|
17
|
+
export declare const ContainerMD: FC<ContainerProps>;
|
|
18
|
+
export declare const ContainerSM: FC<ContainerProps>;
|
|
19
|
+
export declare const ContainerXS: FC<ContainerProps>;
|
|
20
|
+
export declare const ContainerXXS: FC<ContainerProps>;
|
|
21
21
|
//# sourceMappingURL=Container.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Container.d.ts","sourceRoot":"","sources":["../../src/Layout/Container.tsx"],"names":[],"mappings":"AAmBA,OAAO,
|
|
1
|
+
{"version":3,"file":"Container.d.ts","sourceRoot":"","sources":["../../src/Layout/Container.tsx"],"names":[],"mappings":"AAmBA,OAAO,EAAC,EAAE,EAAc,SAAS,EAAC,MAAM,OAAO,CAAC;AAQhD,MAAM,WAAW,cAAe,SAAQ,SAAS,CAAC,cAAc,CAAC;IAC/D,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,KAAK,CAAC,EAAE,MAAM,KAAK,CAAC;IACpB,cAAc,CAAC,EAAE,OAAO,CAAC;CAC1B;AAED,MAAM,WAAW,KAAK;IACpB,EAAE,EAAE,MAAM,CAAC;IACX,EAAE,EAAE,MAAM,CAAC;IACX,EAAE,EAAE,MAAM,CAAC;IACX,EAAE,EAAE,MAAM,CAAC;IACX,GAAG,EAAE,MAAM,CAAC;CACb;AA4BD,eAAO,MAAM,SAAS,EAAE,EAAE,CAAC,cAAc,CAExC,CAAC;AAGF,MAAM,MAAM,mBAAmB,GAAG,IAAI,CAAC,cAAc,EAAE,OAAO,CAAC,CAAC;AAEhE,eAAO,MAAM,WAAW,EAAE,EAAE,CAAC,cAAc,CAEzC,CAAC;AAGH,eAAO,MAAM,WAAW,EAAE,EAAE,CAAC,cAAc,CAEzC,CAAC;AAGH,eAAO,MAAM,WAAW,EAAE,EAAE,CAAC,cAAc,CAEzC,CAAC;AAGH,eAAO,MAAM,WAAW,EAAE,EAAE,CAAC,cAAc,CAEzC,CAAC;AAGH,eAAO,MAAM,YAAY,EAAE,EAAE,CAAC,cAAc,CAE1C,CAAC"}
|