@appquality/unguess-design-system 2.12.51 → 2.12.52
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/CHANGELOG.md +13 -0
- package/build/index.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
# v2.12.52 (Thu Dec 15 2022)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Release responsive [#161](https://github.com/AppQuality/unguess-design-system/pull/161) ([@marcbon](https://github.com/marcbon))
|
|
6
|
+
- Un 226 responsive [#160](https://github.com/AppQuality/unguess-design-system/pull/160) ([@marcbon](https://github.com/marcbon))
|
|
7
|
+
|
|
8
|
+
#### Authors: 1
|
|
9
|
+
|
|
10
|
+
- Marco Bonomo ([@marcbon](https://github.com/marcbon))
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
1
14
|
# v2.12.51 (Thu Dec 15 2022)
|
|
2
15
|
|
|
3
16
|
#### 🐛 Bug Fix
|
package/build/index.js
CHANGED
|
@@ -389,7 +389,7 @@ function __rest(s, e) {
|
|
|
389
389
|
- To provide a quick way to navigate to ancestor pages
|
|
390
390
|
*/
|
|
391
391
|
const StyledBreadcrumb$1 = styled__default["default"](reactBreadcrumbs.Breadcrumb) `
|
|
392
|
-
@media (max-width: ${({ theme }) => theme.breakpoints.
|
|
392
|
+
@media (max-width: ${({ theme }) => theme.breakpoints.sm}) {
|
|
393
393
|
> ol {
|
|
394
394
|
display: block;
|
|
395
395
|
|
|
@@ -2536,7 +2536,7 @@ const InputItem = (props) => {
|
|
|
2536
2536
|
input.focus();
|
|
2537
2537
|
}
|
|
2538
2538
|
}, [isEditing, input]);
|
|
2539
|
-
return isEditing ? (jsxRuntime.jsx(StyledInput, Object.assign({ ref: setInput }, props, { style: Object.assign(Object.assign({ fontWeight: 500 }, size), style) }))) : (jsxRuntime.jsxs(StyledText$1, Object.assign({ isBold: true, style: Object.assign(Object.assign({ fontWeight: 500 }, size), style) }, { children: [!value ? placeholder : value, " ", jsxRuntime.jsx(SvgNotesStroke, {})] })));
|
|
2539
|
+
return isEditing ? (jsxRuntime.jsx(StyledInput, Object.assign({ ref: setInput }, props, { style: Object.assign(Object.assign({ fontWeight: 500 }, size), style) }))) : (jsxRuntime.jsxs(StyledText$1, Object.assign({ isBold: true, style: Object.assign(Object.assign({ fontWeight: 500 }, size), style) }, { children: [!value ? placeholder : value, " ", jsxRuntime.jsx(SvgNotesStroke, { width: 50 })] })));
|
|
2540
2540
|
};
|
|
2541
2541
|
InputToggle.Item = InputItem;
|
|
2542
2542
|
InputToggle.Label = StyledLabel;
|