@contentful/field-editor-markdown 1.2.0 → 1.2.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/CHANGELOG.md +6 -0
- package/dist/field-editor-markdown.cjs.development.js +7 -3
- package/dist/field-editor-markdown.cjs.development.js.map +1 -1
- package/dist/field-editor-markdown.cjs.production.min.js +2 -2
- package/dist/field-editor-markdown.cjs.production.min.js.map +1 -1
- package/dist/field-editor-markdown.esm.js +7 -3
- package/dist/field-editor-markdown.esm.js.map +1 -1
- package/package.json +2 -2
|
@@ -1573,7 +1573,8 @@ const styles$5 = {
|
|
|
1573
1573
|
border: `1px solid ${tokens.gray400}`,
|
|
1574
1574
|
backgroundColor: tokens.gray100,
|
|
1575
1575
|
padding: tokens.spacingXs,
|
|
1576
|
-
borderTopLeftRadius: tokens.borderRadiusSmall
|
|
1576
|
+
borderTopLeftRadius: tokens.borderRadiusSmall,
|
|
1577
|
+
overflow: 'hidden'
|
|
1577
1578
|
}),
|
|
1578
1579
|
button: /*#__PURE__*/css({
|
|
1579
1580
|
height: '30px',
|
|
@@ -1805,8 +1806,11 @@ function DefaultMarkdownToolbar(props) {
|
|
|
1805
1806
|
return React.createElement("div", {
|
|
1806
1807
|
className: styles$5.root
|
|
1807
1808
|
}, React.createElement(Flex, {
|
|
1808
|
-
justifyContent: "space-between"
|
|
1809
|
-
|
|
1809
|
+
justifyContent: "space-between",
|
|
1810
|
+
flexWrap: "wrap"
|
|
1811
|
+
}, React.createElement(Flex, {
|
|
1812
|
+
flexWrap: "wrap"
|
|
1813
|
+
}, React.createElement(MainButtons, { ...props
|
|
1810
1814
|
}), React.createElement(ToolbarButton, {
|
|
1811
1815
|
isDisabled: props.disabled,
|
|
1812
1816
|
testId: "markdown-action-button-toggle-additional",
|