@contentful/field-editor-markdown 2.0.9-canary.9 → 2.1.1-canary.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.
|
@@ -314,7 +314,7 @@ function AdditionalButtons(props) {
|
|
|
314
314
|
tooltip: "Undo",
|
|
315
315
|
tooltipPlace: tooltipPlace,
|
|
316
316
|
onClick: props.actions.history.undo
|
|
317
|
-
}, /*#__PURE__*/ _react.createElement(_f36icons.
|
|
317
|
+
}, /*#__PURE__*/ _react.createElement(_f36icons.ArrowUUpLeftIcon, {
|
|
318
318
|
"aria-label": "Undo",
|
|
319
319
|
className: styles.icon
|
|
320
320
|
})), /*#__PURE__*/ _react.createElement(ToolbarButton, {
|
|
@@ -323,7 +323,7 @@ function AdditionalButtons(props) {
|
|
|
323
323
|
tooltip: "Redo",
|
|
324
324
|
tooltipPlace: tooltipPlace,
|
|
325
325
|
onClick: props.actions.history.redo
|
|
326
|
-
}, /*#__PURE__*/ _react.createElement(_f36icons.
|
|
326
|
+
}, /*#__PURE__*/ _react.createElement(_f36icons.ArrowUUpRightIcon, {
|
|
327
327
|
"aria-label": "Redo",
|
|
328
328
|
className: styles.icon
|
|
329
329
|
})));
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { Flex, IconButton } from '@contentful/f36-components';
|
|
3
|
-
import { CodeSimpleIcon, TextBIcon, TextItalicIcon, TextHIcon, MinusIcon, LinkSimpleIcon, ListBulletsIcon, ListNumbersIcon, DotsThreeIcon, QuotesIcon, TextStrikethroughIcon, TextIndentIcon, TextOutdentIcon, CubesThreeIcon, TableIcon, CurrencyEurIcon, TreeStructureIcon,
|
|
3
|
+
import { CodeSimpleIcon, TextBIcon, TextItalicIcon, TextHIcon, MinusIcon, LinkSimpleIcon, ListBulletsIcon, ListNumbersIcon, DotsThreeIcon, QuotesIcon, TextStrikethroughIcon, TextIndentIcon, TextOutdentIcon, CubesThreeIcon, TableIcon, CurrencyEurIcon, TreeStructureIcon, ArrowUUpLeftIcon, ArrowUUpRightIcon, ArrowsOutIcon } from '@contentful/f36-icons';
|
|
4
4
|
import tokens from '@contentful/f36-tokens';
|
|
5
5
|
import { css, cx } from '@emotion/css';
|
|
6
6
|
import { HeadingSelector } from './HeadingSelector';
|
|
@@ -247,7 +247,7 @@ function AdditionalButtons(props) {
|
|
|
247
247
|
tooltip: "Undo",
|
|
248
248
|
tooltipPlace: tooltipPlace,
|
|
249
249
|
onClick: props.actions.history.undo
|
|
250
|
-
}, /*#__PURE__*/ React.createElement(
|
|
250
|
+
}, /*#__PURE__*/ React.createElement(ArrowUUpLeftIcon, {
|
|
251
251
|
"aria-label": "Undo",
|
|
252
252
|
className: styles.icon
|
|
253
253
|
})), /*#__PURE__*/ React.createElement(ToolbarButton, {
|
|
@@ -256,7 +256,7 @@ function AdditionalButtons(props) {
|
|
|
256
256
|
tooltip: "Redo",
|
|
257
257
|
tooltipPlace: tooltipPlace,
|
|
258
258
|
onClick: props.actions.history.redo
|
|
259
|
-
}, /*#__PURE__*/ React.createElement(
|
|
259
|
+
}, /*#__PURE__*/ React.createElement(ArrowUUpRightIcon, {
|
|
260
260
|
"aria-label": "Redo",
|
|
261
261
|
className: styles.icon
|
|
262
262
|
})));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contentful/field-editor-markdown",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.1-canary.0+b2660ed5",
|
|
4
4
|
"main": "dist/cjs/index.js",
|
|
5
5
|
"module": "dist/esm/index.js",
|
|
6
6
|
"types": "dist/types/index.d.ts",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"@contentful/f36-components": "^6.7.1",
|
|
40
40
|
"@contentful/f36-icons": "^6.7.1",
|
|
41
41
|
"@contentful/f36-tokens": "^6.1.2",
|
|
42
|
-
"@contentful/field-editor-shared": "^4.0.
|
|
42
|
+
"@contentful/field-editor-shared": "^4.0.1-canary.14+b2660ed5",
|
|
43
43
|
"@emotion/css": "^11.13.5",
|
|
44
44
|
"@types/codemirror": "0.0.109",
|
|
45
45
|
"codemirror": "^5.65.11",
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"publishConfig": {
|
|
65
65
|
"registry": "https://npm.pkg.github.com/"
|
|
66
66
|
},
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "b2660ed5523c6c7be45bc67b2801220fb5393b86"
|
|
68
68
|
}
|