@atlaskit/editor-common 98.2.5 → 99.0.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.
- package/CHANGELOG.md +22 -0
- package/dist/cjs/mark/commands.js +11 -80
- package/dist/cjs/mark/index.js +0 -6
- package/dist/cjs/messages/mentions.js +5 -0
- package/dist/cjs/monitoring/error.js +1 -1
- package/dist/cjs/styles/index.js +6 -0
- package/dist/cjs/styles/shared/plugins.js +26 -4
- package/dist/cjs/ui/DropList/index.js +1 -1
- package/dist/cjs/ui-menu/ColorPickerButton/index.js +75 -2
- package/dist/es2019/mark/commands.js +0 -78
- package/dist/es2019/mark/index.js +1 -1
- package/dist/es2019/messages/mentions.js +5 -0
- package/dist/es2019/monitoring/error.js +1 -1
- package/dist/es2019/styles/index.js +1 -1
- package/dist/es2019/styles/shared/plugins.js +25 -3
- package/dist/es2019/ui/DropList/index.js +1 -1
- package/dist/es2019/ui-menu/ColorPickerButton/index.js +76 -3
- package/dist/esm/mark/commands.js +11 -79
- package/dist/esm/mark/index.js +1 -1
- package/dist/esm/messages/mentions.js +5 -0
- package/dist/esm/monitoring/error.js +1 -1
- package/dist/esm/styles/index.js +1 -1
- package/dist/esm/styles/shared/plugins.js +25 -3
- package/dist/esm/ui/DropList/index.js +1 -1
- package/dist/esm/ui-menu/ColorPickerButton/index.js +76 -3
- package/dist/types/mark/commands.d.ts +0 -5
- package/dist/types/mark/index.d.ts +1 -1
- package/dist/types/messages/mentions.d.ts +5 -0
- package/dist/types/styles/index.d.ts +1 -1
- package/dist/types/styles/shared/plugins.d.ts +1 -0
- package/dist/types-ts4.5/mark/commands.d.ts +0 -5
- package/dist/types-ts4.5/mark/index.d.ts +1 -1
- package/dist/types-ts4.5/messages/mentions.d.ts +5 -0
- package/dist/types-ts4.5/styles/index.d.ts +1 -1
- package/dist/types-ts4.5/styles/shared/plugins.d.ts +1 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @atlaskit/editor-common
|
|
2
2
|
|
|
3
|
+
## 99.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [#97984](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/97984)
|
|
8
|
+
[`8ffeab9aaf1ab`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8ffeab9aaf1ab) -
|
|
9
|
+
[ux] [ED-23573] Added new actions (resolveMarks and registerMarks) to basePlugin. Callbacks added
|
|
10
|
+
to mentions, card, emoji and base plugins to handle conversion to inline code. Deprecated code
|
|
11
|
+
removed from editor-common.
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
17
|
+
## 98.2.6
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- [#100162](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/100162)
|
|
22
|
+
[`e80e57fc37719`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e80e57fc37719) -
|
|
23
|
+
[ux] ED-26089: Add 4px gap to main nav bar items
|
|
24
|
+
|
|
3
25
|
## 98.2.5
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
|
@@ -7,7 +7,6 @@ exports.entireSelectionContainsMark = exports.applyMarkOnRange = void 0;
|
|
|
7
7
|
exports.filterChildrenBetween = filterChildrenBetween;
|
|
8
8
|
exports.toggleMark = exports.removeMark = void 0;
|
|
9
9
|
exports.transformNonTextNodesToText = transformNonTextNodesToText;
|
|
10
|
-
exports.transformSmartCharsMentionsAndEmojis = void 0;
|
|
11
10
|
var _state = require("@atlaskit/editor-prosemirror/state");
|
|
12
11
|
var _cellSelection = require("@atlaskit/editor-tables/cell-selection");
|
|
13
12
|
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
@@ -27,44 +26,6 @@ var SMART_TO_ASCII = {
|
|
|
27
26
|
// Ignored via go/ees005
|
|
28
27
|
// eslint-disable-next-line require-unicode-regexp
|
|
29
28
|
var FIND_SMART_CHAR = new RegExp("[".concat(Object.keys(SMART_TO_ASCII).join(''), "]"), 'g');
|
|
30
|
-
var isNodeTextBlock = function isNodeTextBlock(schema) {
|
|
31
|
-
var _schema$nodes = schema.nodes,
|
|
32
|
-
mention = _schema$nodes.mention,
|
|
33
|
-
text = _schema$nodes.text,
|
|
34
|
-
emoji = _schema$nodes.emoji;
|
|
35
|
-
|
|
36
|
-
// Ignored via go/ees005
|
|
37
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
38
|
-
return function (node, _, parent) {
|
|
39
|
-
if (node.type === mention || node.type === emoji || node.type === text) {
|
|
40
|
-
return parent === null || parent === void 0 ? void 0 : parent.isTextblock;
|
|
41
|
-
}
|
|
42
|
-
return;
|
|
43
|
-
};
|
|
44
|
-
};
|
|
45
|
-
var replaceSmartCharsToAscii = function replaceSmartCharsToAscii(position, textContent, tr) {
|
|
46
|
-
var schema = tr.doc.type.schema;
|
|
47
|
-
var match;
|
|
48
|
-
|
|
49
|
-
// Ignored via go/ees005
|
|
50
|
-
// eslint-disable-next-line no-cond-assign
|
|
51
|
-
while (match = FIND_SMART_CHAR.exec(textContent)) {
|
|
52
|
-
var _match = match,
|
|
53
|
-
smartChar = _match[0],
|
|
54
|
-
offset = _match.index;
|
|
55
|
-
var replacePos = tr.mapping.map(position + offset);
|
|
56
|
-
var replacementText = schema.text(SMART_TO_ASCII[smartChar]);
|
|
57
|
-
tr.replaceWith(replacePos, replacePos + smartChar.length, replacementText);
|
|
58
|
-
}
|
|
59
|
-
};
|
|
60
|
-
var replaceMentionOrEmojiForTextContent = function replaceMentionOrEmojiForTextContent(position, nodeSize, textContent, tr
|
|
61
|
-
// Ignored via go/ees005
|
|
62
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
63
|
-
) {
|
|
64
|
-
var currentPos = tr.mapping.map(position);
|
|
65
|
-
var schema = tr.doc.type.schema;
|
|
66
|
-
tr.replaceWith(currentPos, currentPos + nodeSize, schema.text(textContent));
|
|
67
|
-
};
|
|
68
29
|
|
|
69
30
|
// Ignored via go/ees005
|
|
70
31
|
// eslint-disable-next-line @typescript-eslint/max-params
|
|
@@ -83,11 +44,11 @@ function filterChildrenBetween(doc, from, to, predicate) {
|
|
|
83
44
|
function transformNonTextNodesToText(from, to, tr) {
|
|
84
45
|
var doc = tr.doc;
|
|
85
46
|
var schema = doc.type.schema;
|
|
86
|
-
var _schema$
|
|
87
|
-
mentionNodeType = _schema$
|
|
88
|
-
textNodeType = _schema$
|
|
89
|
-
emojiNodeType = _schema$
|
|
90
|
-
inlineCardNodeType = _schema$
|
|
47
|
+
var _schema$nodes = schema.nodes,
|
|
48
|
+
mentionNodeType = _schema$nodes.mention,
|
|
49
|
+
textNodeType = _schema$nodes.text,
|
|
50
|
+
emojiNodeType = _schema$nodes.emoji,
|
|
51
|
+
inlineCardNodeType = _schema$nodes.inlineCard;
|
|
91
52
|
var nodesToChange = [];
|
|
92
53
|
doc.nodesBetween(from, to, function (node, pos, parent) {
|
|
93
54
|
if ([mentionNodeType, textNodeType, emojiNodeType, inlineCardNodeType].includes(node.type)) {
|
|
@@ -122,36 +83,6 @@ function transformNonTextNodesToText(from, to, tr) {
|
|
|
122
83
|
}
|
|
123
84
|
});
|
|
124
85
|
}
|
|
125
|
-
|
|
126
|
-
/**
|
|
127
|
-
* @private
|
|
128
|
-
* @deprecated Use {@link transformNonTextNodesToText} instead.
|
|
129
|
-
*/
|
|
130
|
-
var transformSmartCharsMentionsAndEmojis = exports.transformSmartCharsMentionsAndEmojis = function transformSmartCharsMentionsAndEmojis(from, to, tr) {
|
|
131
|
-
var schema = tr.doc.type.schema;
|
|
132
|
-
var _schema$nodes3 = schema.nodes,
|
|
133
|
-
mention = _schema$nodes3.mention,
|
|
134
|
-
text = _schema$nodes3.text,
|
|
135
|
-
emoji = _schema$nodes3.emoji;
|
|
136
|
-
// Traverse through all the nodes within the range and replace them with their plaintext counterpart
|
|
137
|
-
var children = filterChildrenBetween(tr.doc, from, to, isNodeTextBlock(schema));
|
|
138
|
-
children.forEach(function (_ref2) {
|
|
139
|
-
var node = _ref2.node,
|
|
140
|
-
pos = _ref2.pos;
|
|
141
|
-
if (node.type === mention || node.type === emoji) {
|
|
142
|
-
// Convert gracefully when no text found, ProseMirror will blow up if you try to create a node with an empty string or undefined
|
|
143
|
-
var replacementText = node.attrs.text;
|
|
144
|
-
if (typeof replacementText === 'undefined' || replacementText === '') {
|
|
145
|
-
replacementText = "".concat(node.type.name, " text missing");
|
|
146
|
-
}
|
|
147
|
-
replaceMentionOrEmojiForTextContent(pos, node.nodeSize, replacementText, tr);
|
|
148
|
-
} else if (node.type === text && node.text) {
|
|
149
|
-
var replacePosition = pos > from ? pos : from;
|
|
150
|
-
var textToReplace = pos > from ? node.text : node.text.substr(from - pos);
|
|
151
|
-
replaceSmartCharsToAscii(replacePosition, textToReplace, tr);
|
|
152
|
-
}
|
|
153
|
-
});
|
|
154
|
-
};
|
|
155
86
|
var applyMarkOnRange = exports.applyMarkOnRange = function applyMarkOnRange(from, to, removeMark, mark, tr
|
|
156
87
|
// Ignored via go/ees005
|
|
157
88
|
// eslint-disable-next-line @typescript-eslint/max-params
|
|
@@ -207,8 +138,8 @@ var entireSelectionContainsMark = exports.entireSelectionContainsMark = function
|
|
|
207
138
|
return onlyContainsMark;
|
|
208
139
|
};
|
|
209
140
|
var toggleMarkInRange = function toggleMarkInRange(mark) {
|
|
210
|
-
return function (
|
|
211
|
-
var tr =
|
|
141
|
+
return function (_ref2) {
|
|
142
|
+
var tr = _ref2.tr;
|
|
212
143
|
if (tr.selection instanceof _cellSelection.CellSelection) {
|
|
213
144
|
var _removeMark = true;
|
|
214
145
|
var cells = [];
|
|
@@ -253,8 +184,8 @@ var toggleMarkInRange = function toggleMarkInRange(mark) {
|
|
|
253
184
|
* @param attrs
|
|
254
185
|
*/
|
|
255
186
|
var toggleMark = exports.toggleMark = function toggleMark(markType, attrs) {
|
|
256
|
-
return function (
|
|
257
|
-
var tr =
|
|
187
|
+
return function (_ref3) {
|
|
188
|
+
var tr = _ref3.tr;
|
|
258
189
|
var mark = markType.create(attrs);
|
|
259
190
|
|
|
260
191
|
// For cursor selections we can use the default behaviour.
|
|
@@ -276,8 +207,8 @@ var toggleMark = exports.toggleMark = function toggleMark(markType, attrs) {
|
|
|
276
207
|
* A wrapper around ProseMirror removeMark and removeStoredMark, which handles mark removal in text, CellSelections and cursor stored marks.
|
|
277
208
|
*/
|
|
278
209
|
var removeMark = exports.removeMark = function removeMark(mark) {
|
|
279
|
-
return function (
|
|
280
|
-
var tr =
|
|
210
|
+
return function (_ref4) {
|
|
211
|
+
var tr = _ref4.tr;
|
|
281
212
|
var selection = tr.selection;
|
|
282
213
|
if (selection instanceof _cellSelection.CellSelection) {
|
|
283
214
|
selection.forEachCell(function (cell, cellPos) {
|
package/dist/cjs/mark/index.js
CHANGED
|
@@ -57,11 +57,5 @@ Object.defineProperty(exports, "transformNonTextNodesToText", {
|
|
|
57
57
|
return _commands.transformNonTextNodesToText;
|
|
58
58
|
}
|
|
59
59
|
});
|
|
60
|
-
Object.defineProperty(exports, "transformSmartCharsMentionsAndEmojis", {
|
|
61
|
-
enumerable: true,
|
|
62
|
-
get: function get() {
|
|
63
|
-
return _commands.transformSmartCharsMentionsAndEmojis;
|
|
64
|
-
}
|
|
65
|
-
});
|
|
66
60
|
var _commands = require("./commands");
|
|
67
61
|
var _textFormatting = require("./text-formatting");
|
|
@@ -25,5 +25,10 @@ var mentionMessages = exports.mentionMessages = (0, _reactIntlNext.defineMessage
|
|
|
25
25
|
id: 'fabric.editor.mentionNode.label',
|
|
26
26
|
defaultMessage: 'Tagged user',
|
|
27
27
|
description: 'Label to indicate mention node to Screen reader users, that preceeds with user name ex: "Tagged user @XXX'
|
|
28
|
+
},
|
|
29
|
+
unknownLabel: {
|
|
30
|
+
id: 'fabric.editor.unknown.label',
|
|
31
|
+
defaultMessage: 'Unknown',
|
|
32
|
+
description: 'Label to indicate unknown mention node'
|
|
28
33
|
}
|
|
29
34
|
});
|
|
@@ -17,7 +17,7 @@ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return
|
|
|
17
17
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
18
18
|
var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
|
|
19
19
|
var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
|
|
20
|
-
var packageVersion = "
|
|
20
|
+
var packageVersion = "99.0.0";
|
|
21
21
|
var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
|
|
22
22
|
// Remove URL as it has UGC
|
|
23
23
|
// TODO: Sanitise the URL instead of just removing it
|
package/dist/cjs/styles/index.js
CHANGED
|
@@ -159,6 +159,12 @@ Object.defineProperty(exports, "buttonGroupStyle", {
|
|
|
159
159
|
return _plugins.buttonGroupStyle;
|
|
160
160
|
}
|
|
161
161
|
});
|
|
162
|
+
Object.defineProperty(exports, "buttonGroupStyleBeforeVisualRefresh", {
|
|
163
|
+
enumerable: true,
|
|
164
|
+
get: function get() {
|
|
165
|
+
return _plugins.buttonGroupStyleBeforeVisualRefresh;
|
|
166
|
+
}
|
|
167
|
+
});
|
|
162
168
|
Object.defineProperty(exports, "calcTableWidth", {
|
|
163
169
|
enumerable: true,
|
|
164
170
|
get: function get() {
|
|
@@ -3,11 +3,28 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.wrapperStyle = exports.triggerWrapperStylesWithPadding = exports.triggerWrapperStyles = exports.separatorStyles = exports.disableBlueBorderStyles = exports.buttonGroupStyle = void 0;
|
|
6
|
+
exports.wrapperStyle = exports.triggerWrapperStylesWithPadding = exports.triggerWrapperStyles = exports.separatorStyles = exports.disableBlueBorderStyles = exports.buttonGroupStyleBeforeVisualRefresh = exports.buttonGroupStyle = void 0;
|
|
7
7
|
var _react = require("@emotion/react");
|
|
8
8
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
9
9
|
|
|
10
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
10
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles, -- Ignored via go/DSP-18766
|
|
11
|
+
var buttonGroupStyleBeforeVisualRefresh = exports.buttonGroupStyleBeforeVisualRefresh = (0, _react.css)({
|
|
12
|
+
display: 'inline-flex',
|
|
13
|
+
alignItems: 'center',
|
|
14
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
15
|
+
'& > div': {
|
|
16
|
+
display: 'flex'
|
|
17
|
+
},
|
|
18
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors
|
|
19
|
+
'button:not(#local-media-upload-button)': {
|
|
20
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors
|
|
21
|
+
'&:not([disabled])::after': {
|
|
22
|
+
border: 'none' // remove blue border when an item has been selected
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
|
|
11
28
|
var buttonGroupStyle = exports.buttonGroupStyle = (0, _react.css)({
|
|
12
29
|
display: 'inline-flex',
|
|
13
30
|
alignItems: 'center',
|
|
@@ -15,12 +32,17 @@ var buttonGroupStyle = exports.buttonGroupStyle = (0, _react.css)({
|
|
|
15
32
|
'& > div': {
|
|
16
33
|
display: 'flex'
|
|
17
34
|
},
|
|
18
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
19
|
-
button: {
|
|
35
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors
|
|
36
|
+
'button:not(#local-media-upload-button)': {
|
|
20
37
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors
|
|
21
38
|
'&:not([disabled])::after': {
|
|
22
39
|
border: 'none' // remove blue border when an item has been selected
|
|
23
40
|
}
|
|
41
|
+
},
|
|
42
|
+
gap: "var(--ds-space-050, 4px)",
|
|
43
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
44
|
+
'div[role=group]': {
|
|
45
|
+
gap: "var(--ds-space-050, 4px)"
|
|
24
46
|
}
|
|
25
47
|
});
|
|
26
48
|
|
|
@@ -23,7 +23,7 @@ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.
|
|
|
23
23
|
* @jsx jsx
|
|
24
24
|
*/ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
25
25
|
var packageName = "@atlaskit/editor-common";
|
|
26
|
-
var packageVersion = "
|
|
26
|
+
var packageVersion = "99.0.0";
|
|
27
27
|
var halfFocusRing = 1;
|
|
28
28
|
var dropOffset = '0, 8';
|
|
29
29
|
// Ignored via go/ees005
|
|
@@ -10,9 +10,11 @@ var _react = _interopRequireDefault(require("react"));
|
|
|
10
10
|
var _react2 = require("@emotion/react");
|
|
11
11
|
var _withAnalyticsContext = _interopRequireDefault(require("@atlaskit/analytics-next/withAnalyticsContext"));
|
|
12
12
|
var _withAnalyticsEvents = _interopRequireDefault(require("@atlaskit/analytics-next/withAnalyticsEvents"));
|
|
13
|
+
var _new = _interopRequireDefault(require("@atlaskit/button/new"));
|
|
13
14
|
var _standardButton = _interopRequireDefault(require("@atlaskit/button/standard-button"));
|
|
14
15
|
var _chevronDown = _interopRequireDefault(require("@atlaskit/icon/glyph/chevron-down"));
|
|
15
16
|
var _chevronDown2 = _interopRequireDefault(require("@atlaskit/icon/utility/chevron-down"));
|
|
17
|
+
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
16
18
|
var _primitives = require("@atlaskit/primitives");
|
|
17
19
|
var _tooltip = _interopRequireDefault(require("@atlaskit/tooltip"));
|
|
18
20
|
var _analytics = require("../../analytics");
|
|
@@ -38,6 +40,21 @@ var colorPickerExpandContainer = (0, _primitives.xcss)({
|
|
|
38
40
|
marginLeft: 'space.negative.050',
|
|
39
41
|
marginRight: 'space.negative.050'
|
|
40
42
|
});
|
|
43
|
+
var colorPickerExpandContainerVisualRefresh = (0, _primitives.xcss)({
|
|
44
|
+
marginTop: 'space.negative.025',
|
|
45
|
+
marginRight: 'space.negative.050'
|
|
46
|
+
});
|
|
47
|
+
var colorPickerButtonStyle = (0, _react2.css)({
|
|
48
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
49
|
+
button: {
|
|
50
|
+
'&::after': {
|
|
51
|
+
border: 'none'
|
|
52
|
+
},
|
|
53
|
+
'&:hover': {
|
|
54
|
+
backgroundColor: "var(--ds-background-selected, #E9F2FF)"
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
});
|
|
41
58
|
|
|
42
59
|
// Control the size of color picker buttons and preview
|
|
43
60
|
// TODO: https://product-fabric.atlassian.net/browse/DSP-4134
|
|
@@ -212,12 +229,69 @@ var ColorPickerButton = function ColorPickerButton(props) {
|
|
|
212
229
|
}
|
|
213
230
|
});
|
|
214
231
|
};
|
|
232
|
+
var buttonStyleVisualRefresh = function buttonStyleVisualRefresh() {
|
|
233
|
+
var _props$size4, _props$size5, _props$size6;
|
|
234
|
+
return (0, _react2.css)({
|
|
235
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
236
|
+
height: "".concat(!!((_props$size4 = props.size) !== null && _props$size4 !== void 0 && _props$size4.height) ? 'inherit' : ''),
|
|
237
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-18766
|
|
238
|
+
'&:before': {
|
|
239
|
+
display: 'flex',
|
|
240
|
+
justifyContent: 'center',
|
|
241
|
+
alignItems: 'center',
|
|
242
|
+
alignSelf: 'center',
|
|
243
|
+
content: "''",
|
|
244
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
245
|
+
border: "1px solid ".concat(_uiColor.DEFAULT_BORDER_COLOR),
|
|
246
|
+
borderRadius: "var(--ds-border-radius, 3px)",
|
|
247
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
248
|
+
backgroundColor: currentColor || 'transparent',
|
|
249
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
250
|
+
width: ((_props$size5 = props.size) === null || _props$size5 === void 0 ? void 0 : _props$size5.width) || '14px',
|
|
251
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
252
|
+
height: ((_props$size6 = props.size) === null || _props$size6 === void 0 ? void 0 : _props$size6.height) || '14px',
|
|
253
|
+
marginTop: "var(--ds-space-025, 2px)"
|
|
254
|
+
}
|
|
255
|
+
});
|
|
256
|
+
};
|
|
215
257
|
return (0, _react2.jsx)("div", {
|
|
216
258
|
css: colorPickerButtonWrapper
|
|
217
259
|
}, (0, _react2.jsx)(_tooltip.default, {
|
|
218
260
|
content: title,
|
|
219
261
|
position: "top"
|
|
220
|
-
},
|
|
262
|
+
},
|
|
263
|
+
// eslint-disable-next-line @atlaskit/platform/ensure-feature-flag-prefix
|
|
264
|
+
(0, _platformFeatureFlags.fg)('platform-visual-refresh-icons') ? (0, _react2.jsx)("div", {
|
|
265
|
+
css: colorPickerButtonStyle
|
|
266
|
+
}, (0, _react2.jsx)(_new.default, {
|
|
267
|
+
appearance: 'subtle',
|
|
268
|
+
ref: buttonRef,
|
|
269
|
+
"aria-label": title,
|
|
270
|
+
"aria-expanded": props.isAriaExpanded ? isPopupOpen : undefined,
|
|
271
|
+
spacing: "compact",
|
|
272
|
+
onClick: togglePopup,
|
|
273
|
+
onKeyDown: function onKeyDown(event) {
|
|
274
|
+
if (event.key === 'Enter' || event.key === ' ') {
|
|
275
|
+
event.preventDefault();
|
|
276
|
+
togglePopup();
|
|
277
|
+
setIsOpenedByKeyboard(true);
|
|
278
|
+
}
|
|
279
|
+
},
|
|
280
|
+
"data-selected-color": props.currentColor,
|
|
281
|
+
isSelected: isPopupOpen
|
|
282
|
+
}, (0, _react2.jsx)(_primitives.Inline, {
|
|
283
|
+
alignBlock: "start"
|
|
284
|
+
}, (0, _react2.jsx)("span", {
|
|
285
|
+
// eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
|
|
286
|
+
css: buttonStyleVisualRefresh
|
|
287
|
+
}), (0, _react2.jsx)(_primitives.Box, {
|
|
288
|
+
xcss: colorPickerExpandContainerVisualRefresh
|
|
289
|
+
}, (0, _react2.jsx)(_chevronDown2.default, {
|
|
290
|
+
color: "currentColor",
|
|
291
|
+
spacing: "spacious",
|
|
292
|
+
LEGACY_fallbackIcon: _chevronDown.default,
|
|
293
|
+
label: "color-picker-chevron-down"
|
|
294
|
+
}))))) : (0, _react2.jsx)(_standardButton.default, {
|
|
221
295
|
appearance: 'subtle',
|
|
222
296
|
ref: buttonRef,
|
|
223
297
|
"aria-label": title,
|
|
@@ -231,7 +305,6 @@ var ColorPickerButton = function ColorPickerButton(props) {
|
|
|
231
305
|
setIsOpenedByKeyboard(true);
|
|
232
306
|
}
|
|
233
307
|
}
|
|
234
|
-
// TODO: (from codemod) Buttons with "component", "css" or "style" prop can't be automatically migrated with codemods. Please migrate it manually.
|
|
235
308
|
// eslint-disable-next-line @atlaskit/design-system/no-unsafe-style-overrides
|
|
236
309
|
,
|
|
237
310
|
css: buttonStyle,
|
|
@@ -17,50 +17,6 @@ const SMART_TO_ASCII = {
|
|
|
17
17
|
// Ignored via go/ees005
|
|
18
18
|
// eslint-disable-next-line require-unicode-regexp
|
|
19
19
|
const FIND_SMART_CHAR = new RegExp(`[${Object.keys(SMART_TO_ASCII).join('')}]`, 'g');
|
|
20
|
-
const isNodeTextBlock = schema => {
|
|
21
|
-
const {
|
|
22
|
-
mention,
|
|
23
|
-
text,
|
|
24
|
-
emoji
|
|
25
|
-
} = schema.nodes;
|
|
26
|
-
|
|
27
|
-
// Ignored via go/ees005
|
|
28
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
29
|
-
return (node, _, parent) => {
|
|
30
|
-
if (node.type === mention || node.type === emoji || node.type === text) {
|
|
31
|
-
return parent === null || parent === void 0 ? void 0 : parent.isTextblock;
|
|
32
|
-
}
|
|
33
|
-
return;
|
|
34
|
-
};
|
|
35
|
-
};
|
|
36
|
-
const replaceSmartCharsToAscii = (position, textContent, tr) => {
|
|
37
|
-
const {
|
|
38
|
-
schema
|
|
39
|
-
} = tr.doc.type;
|
|
40
|
-
let match;
|
|
41
|
-
|
|
42
|
-
// Ignored via go/ees005
|
|
43
|
-
// eslint-disable-next-line no-cond-assign
|
|
44
|
-
while (match = FIND_SMART_CHAR.exec(textContent)) {
|
|
45
|
-
const {
|
|
46
|
-
0: smartChar,
|
|
47
|
-
index: offset
|
|
48
|
-
} = match;
|
|
49
|
-
const replacePos = tr.mapping.map(position + offset);
|
|
50
|
-
const replacementText = schema.text(SMART_TO_ASCII[smartChar]);
|
|
51
|
-
tr.replaceWith(replacePos, replacePos + smartChar.length, replacementText);
|
|
52
|
-
}
|
|
53
|
-
};
|
|
54
|
-
const replaceMentionOrEmojiForTextContent = (position, nodeSize, textContent, tr
|
|
55
|
-
// Ignored via go/ees005
|
|
56
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
57
|
-
) => {
|
|
58
|
-
const currentPos = tr.mapping.map(position);
|
|
59
|
-
const {
|
|
60
|
-
schema
|
|
61
|
-
} = tr.doc.type;
|
|
62
|
-
tr.replaceWith(currentPos, currentPos + nodeSize, schema.text(textContent));
|
|
63
|
-
};
|
|
64
20
|
|
|
65
21
|
// Ignored via go/ees005
|
|
66
22
|
// eslint-disable-next-line @typescript-eslint/max-params
|
|
@@ -124,40 +80,6 @@ export function transformNonTextNodesToText(from, to, tr) {
|
|
|
124
80
|
}
|
|
125
81
|
});
|
|
126
82
|
}
|
|
127
|
-
|
|
128
|
-
/**
|
|
129
|
-
* @private
|
|
130
|
-
* @deprecated Use {@link transformNonTextNodesToText} instead.
|
|
131
|
-
*/
|
|
132
|
-
export const transformSmartCharsMentionsAndEmojis = (from, to, tr) => {
|
|
133
|
-
const {
|
|
134
|
-
schema
|
|
135
|
-
} = tr.doc.type;
|
|
136
|
-
const {
|
|
137
|
-
mention,
|
|
138
|
-
text,
|
|
139
|
-
emoji
|
|
140
|
-
} = schema.nodes;
|
|
141
|
-
// Traverse through all the nodes within the range and replace them with their plaintext counterpart
|
|
142
|
-
const children = filterChildrenBetween(tr.doc, from, to, isNodeTextBlock(schema));
|
|
143
|
-
children.forEach(({
|
|
144
|
-
node,
|
|
145
|
-
pos
|
|
146
|
-
}) => {
|
|
147
|
-
if (node.type === mention || node.type === emoji) {
|
|
148
|
-
// Convert gracefully when no text found, ProseMirror will blow up if you try to create a node with an empty string or undefined
|
|
149
|
-
let replacementText = node.attrs.text;
|
|
150
|
-
if (typeof replacementText === 'undefined' || replacementText === '') {
|
|
151
|
-
replacementText = `${node.type.name} text missing`;
|
|
152
|
-
}
|
|
153
|
-
replaceMentionOrEmojiForTextContent(pos, node.nodeSize, replacementText, tr);
|
|
154
|
-
} else if (node.type === text && node.text) {
|
|
155
|
-
const replacePosition = pos > from ? pos : from;
|
|
156
|
-
const textToReplace = pos > from ? node.text : node.text.substr(from - pos);
|
|
157
|
-
replaceSmartCharsToAscii(replacePosition, textToReplace, tr);
|
|
158
|
-
}
|
|
159
|
-
});
|
|
160
|
-
};
|
|
161
83
|
export const applyMarkOnRange = (from, to, removeMark, mark, tr
|
|
162
84
|
// Ignored via go/ees005
|
|
163
85
|
// eslint-disable-next-line @typescript-eslint/max-params
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// Disable no-re-export rule for entry point files
|
|
2
2
|
/* eslint-disable @atlaskit/editor/no-re-export */
|
|
3
3
|
|
|
4
|
-
export {
|
|
4
|
+
export { transformNonTextNodesToText, applyMarkOnRange, filterChildrenBetween, toggleMark, removeMark, entireSelectionContainsMark } from './commands';
|
|
5
5
|
export { anyMarkActive, isMarkAllowedInRange, isMarkExcluded } from './text-formatting';
|
|
@@ -19,5 +19,10 @@ export const mentionMessages = defineMessages({
|
|
|
19
19
|
id: 'fabric.editor.mentionNode.label',
|
|
20
20
|
defaultMessage: 'Tagged user',
|
|
21
21
|
description: 'Label to indicate mention node to Screen reader users, that preceeds with user name ex: "Tagged user @XXX'
|
|
22
|
+
},
|
|
23
|
+
unknownLabel: {
|
|
24
|
+
id: 'fabric.editor.unknown.label',
|
|
25
|
+
defaultMessage: 'Unknown',
|
|
26
|
+
description: 'Label to indicate unknown mention node'
|
|
22
27
|
}
|
|
23
28
|
});
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { isFedRamp } from './environment';
|
|
2
2
|
const SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
|
|
3
3
|
const packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
|
|
4
|
-
const packageVersion = "
|
|
4
|
+
const packageVersion = "99.0.0";
|
|
5
5
|
const sanitiseSentryEvents = (data, _hint) => {
|
|
6
6
|
// Remove URL as it has UGC
|
|
7
7
|
// TODO: Sanitise the URL instead of just removing it
|
|
@@ -30,7 +30,7 @@ export { resizerStyles, resizerHandleClassName, resizerHandleTrackClassName, res
|
|
|
30
30
|
export { gridStyles, GRID_GUTTER } from './shared/grid';
|
|
31
31
|
export { smartCardStyles, FLOATING_TOOLBAR_LINKPICKER_CLASSNAME, DATASOURCE_INNER_CONTAINER_CLASSNAME } from './shared/smartCard';
|
|
32
32
|
export { embedCardStyles, embedSpacingStyles } from './shared/embedCard';
|
|
33
|
-
export { buttonGroupStyle, disableBlueBorderStyles, separatorStyles, wrapperStyle, triggerWrapperStyles, triggerWrapperStylesWithPadding } from './shared/plugins';
|
|
33
|
+
export { buttonGroupStyle, buttonGroupStyleBeforeVisualRefresh, disableBlueBorderStyles, separatorStyles, wrapperStyle, triggerWrapperStyles, triggerWrapperStylesWithPadding } from './shared/plugins';
|
|
34
34
|
export { UnsupportedSharedCssClassName, unsupportedStyles } from './shared/unsupported-content';
|
|
35
35
|
export { expandIconWrapperStyle, expandClassNames, expandIconContainerStyle } from './shared/expand';
|
|
36
36
|
export { sharedExpandStyles } from '../ui/Expand/sharedStyles';
|
|
@@ -1,6 +1,23 @@
|
|
|
1
1
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
2
2
|
import { css } from '@emotion/react';
|
|
3
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
3
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles, -- Ignored via go/DSP-18766
|
|
4
|
+
export const buttonGroupStyleBeforeVisualRefresh = css({
|
|
5
|
+
display: 'inline-flex',
|
|
6
|
+
alignItems: 'center',
|
|
7
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
8
|
+
'& > div': {
|
|
9
|
+
display: 'flex'
|
|
10
|
+
},
|
|
11
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors
|
|
12
|
+
'button:not(#local-media-upload-button)': {
|
|
13
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors
|
|
14
|
+
'&:not([disabled])::after': {
|
|
15
|
+
border: 'none' // remove blue border when an item has been selected
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
|
|
4
21
|
export const buttonGroupStyle = css({
|
|
5
22
|
display: 'inline-flex',
|
|
6
23
|
alignItems: 'center',
|
|
@@ -8,12 +25,17 @@ export const buttonGroupStyle = css({
|
|
|
8
25
|
'& > div': {
|
|
9
26
|
display: 'flex'
|
|
10
27
|
},
|
|
11
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
12
|
-
button: {
|
|
28
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors
|
|
29
|
+
'button:not(#local-media-upload-button)': {
|
|
13
30
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors
|
|
14
31
|
'&:not([disabled])::after': {
|
|
15
32
|
border: 'none' // remove blue border when an item has been selected
|
|
16
33
|
}
|
|
34
|
+
},
|
|
35
|
+
gap: "var(--ds-space-050, 4px)",
|
|
36
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
37
|
+
'div[role=group]': {
|
|
38
|
+
gap: "var(--ds-space-050, 4px)"
|
|
17
39
|
}
|
|
18
40
|
});
|
|
19
41
|
|
|
@@ -13,7 +13,7 @@ import withAnalyticsContext from '@atlaskit/analytics-next/withAnalyticsContext'
|
|
|
13
13
|
import withAnalyticsEvents from '@atlaskit/analytics-next/withAnalyticsEvents';
|
|
14
14
|
import Layer from '../Layer';
|
|
15
15
|
const packageName = "@atlaskit/editor-common";
|
|
16
|
-
const packageVersion = "
|
|
16
|
+
const packageVersion = "99.0.0";
|
|
17
17
|
const halfFocusRing = 1;
|
|
18
18
|
const dropOffset = '0, 8';
|
|
19
19
|
// Ignored via go/ees005
|
|
@@ -8,10 +8,12 @@ import React from 'react';
|
|
|
8
8
|
import { css, jsx } from '@emotion/react';
|
|
9
9
|
import withAnalyticsContext from '@atlaskit/analytics-next/withAnalyticsContext';
|
|
10
10
|
import withAnalyticsEvents from '@atlaskit/analytics-next/withAnalyticsEvents';
|
|
11
|
-
import Button from '@atlaskit/button/
|
|
11
|
+
import Button from '@atlaskit/button/new';
|
|
12
|
+
import LegacyButton from '@atlaskit/button/standard-button';
|
|
12
13
|
import LegacyExpandIcon from '@atlaskit/icon/glyph/chevron-down';
|
|
13
14
|
import ChevronDownIcon from '@atlaskit/icon/utility/chevron-down';
|
|
14
|
-
import {
|
|
15
|
+
import { fg } from '@atlaskit/platform-feature-flags';
|
|
16
|
+
import { Box, xcss, Inline } from '@atlaskit/primitives';
|
|
15
17
|
import Tooltip from '@atlaskit/tooltip';
|
|
16
18
|
import { ACTION, ACTION_SUBJECT, ACTION_SUBJECT_ID, editorAnalyticsChannel, EVENT_TYPE } from '../../analytics';
|
|
17
19
|
import { ColorPalette, DEFAULT_BORDER_COLOR, getSelectedRowAndColumnFromPalette } from '../../ui-color';
|
|
@@ -30,6 +32,21 @@ const colorPickerExpandContainer = xcss({
|
|
|
30
32
|
marginLeft: 'space.negative.050',
|
|
31
33
|
marginRight: 'space.negative.050'
|
|
32
34
|
});
|
|
35
|
+
const colorPickerExpandContainerVisualRefresh = xcss({
|
|
36
|
+
marginTop: 'space.negative.025',
|
|
37
|
+
marginRight: 'space.negative.050'
|
|
38
|
+
});
|
|
39
|
+
const colorPickerButtonStyle = css({
|
|
40
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
41
|
+
button: {
|
|
42
|
+
'&::after': {
|
|
43
|
+
border: 'none'
|
|
44
|
+
},
|
|
45
|
+
'&:hover': {
|
|
46
|
+
backgroundColor: `${"var(--ds-background-selected, #E9F2FF)"}`
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
});
|
|
33
50
|
|
|
34
51
|
// Control the size of color picker buttons and preview
|
|
35
52
|
// TODO: https://product-fabric.atlassian.net/browse/DSP-4134
|
|
@@ -192,12 +209,69 @@ const ColorPickerButton = props => {
|
|
|
192
209
|
}
|
|
193
210
|
});
|
|
194
211
|
};
|
|
212
|
+
const buttonStyleVisualRefresh = () => {
|
|
213
|
+
var _props$size4, _props$size5, _props$size6;
|
|
214
|
+
return css({
|
|
215
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
216
|
+
height: `${!!((_props$size4 = props.size) !== null && _props$size4 !== void 0 && _props$size4.height) ? 'inherit' : ''}`,
|
|
217
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-18766
|
|
218
|
+
'&:before': {
|
|
219
|
+
display: 'flex',
|
|
220
|
+
justifyContent: 'center',
|
|
221
|
+
alignItems: 'center',
|
|
222
|
+
alignSelf: 'center',
|
|
223
|
+
content: "''",
|
|
224
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
225
|
+
border: `1px solid ${DEFAULT_BORDER_COLOR}`,
|
|
226
|
+
borderRadius: "var(--ds-border-radius, 3px)",
|
|
227
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
228
|
+
backgroundColor: currentColor || 'transparent',
|
|
229
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
230
|
+
width: ((_props$size5 = props.size) === null || _props$size5 === void 0 ? void 0 : _props$size5.width) || '14px',
|
|
231
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
232
|
+
height: ((_props$size6 = props.size) === null || _props$size6 === void 0 ? void 0 : _props$size6.height) || '14px',
|
|
233
|
+
marginTop: `${"var(--ds-space-025, 2px)"}`
|
|
234
|
+
}
|
|
235
|
+
});
|
|
236
|
+
};
|
|
195
237
|
return jsx("div", {
|
|
196
238
|
css: colorPickerButtonWrapper
|
|
197
239
|
}, jsx(Tooltip, {
|
|
198
240
|
content: title,
|
|
199
241
|
position: "top"
|
|
242
|
+
},
|
|
243
|
+
// eslint-disable-next-line @atlaskit/platform/ensure-feature-flag-prefix
|
|
244
|
+
fg('platform-visual-refresh-icons') ? jsx("div", {
|
|
245
|
+
css: colorPickerButtonStyle
|
|
200
246
|
}, jsx(Button, {
|
|
247
|
+
appearance: 'subtle',
|
|
248
|
+
ref: buttonRef,
|
|
249
|
+
"aria-label": title,
|
|
250
|
+
"aria-expanded": props.isAriaExpanded ? isPopupOpen : undefined,
|
|
251
|
+
spacing: "compact",
|
|
252
|
+
onClick: togglePopup,
|
|
253
|
+
onKeyDown: event => {
|
|
254
|
+
if (event.key === 'Enter' || event.key === ' ') {
|
|
255
|
+
event.preventDefault();
|
|
256
|
+
togglePopup();
|
|
257
|
+
setIsOpenedByKeyboard(true);
|
|
258
|
+
}
|
|
259
|
+
},
|
|
260
|
+
"data-selected-color": props.currentColor,
|
|
261
|
+
isSelected: isPopupOpen
|
|
262
|
+
}, jsx(Inline, {
|
|
263
|
+
alignBlock: "start"
|
|
264
|
+
}, jsx("span", {
|
|
265
|
+
// eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
|
|
266
|
+
css: buttonStyleVisualRefresh
|
|
267
|
+
}), jsx(Box, {
|
|
268
|
+
xcss: colorPickerExpandContainerVisualRefresh
|
|
269
|
+
}, jsx(ChevronDownIcon, {
|
|
270
|
+
color: "currentColor",
|
|
271
|
+
spacing: "spacious",
|
|
272
|
+
LEGACY_fallbackIcon: LegacyExpandIcon,
|
|
273
|
+
label: "color-picker-chevron-down"
|
|
274
|
+
}))))) : jsx(LegacyButton, {
|
|
201
275
|
appearance: 'subtle',
|
|
202
276
|
ref: buttonRef,
|
|
203
277
|
"aria-label": title,
|
|
@@ -211,7 +285,6 @@ const ColorPickerButton = props => {
|
|
|
211
285
|
setIsOpenedByKeyboard(true);
|
|
212
286
|
}
|
|
213
287
|
}
|
|
214
|
-
// TODO: (from codemod) Buttons with "component", "css" or "style" prop can't be automatically migrated with codemods. Please migrate it manually.
|
|
215
288
|
// eslint-disable-next-line @atlaskit/design-system/no-unsafe-style-overrides
|
|
216
289
|
,
|
|
217
290
|
css: buttonStyle,
|
|
@@ -17,44 +17,6 @@ var SMART_TO_ASCII = {
|
|
|
17
17
|
// Ignored via go/ees005
|
|
18
18
|
// eslint-disable-next-line require-unicode-regexp
|
|
19
19
|
var FIND_SMART_CHAR = new RegExp("[".concat(Object.keys(SMART_TO_ASCII).join(''), "]"), 'g');
|
|
20
|
-
var isNodeTextBlock = function isNodeTextBlock(schema) {
|
|
21
|
-
var _schema$nodes = schema.nodes,
|
|
22
|
-
mention = _schema$nodes.mention,
|
|
23
|
-
text = _schema$nodes.text,
|
|
24
|
-
emoji = _schema$nodes.emoji;
|
|
25
|
-
|
|
26
|
-
// Ignored via go/ees005
|
|
27
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
28
|
-
return function (node, _, parent) {
|
|
29
|
-
if (node.type === mention || node.type === emoji || node.type === text) {
|
|
30
|
-
return parent === null || parent === void 0 ? void 0 : parent.isTextblock;
|
|
31
|
-
}
|
|
32
|
-
return;
|
|
33
|
-
};
|
|
34
|
-
};
|
|
35
|
-
var replaceSmartCharsToAscii = function replaceSmartCharsToAscii(position, textContent, tr) {
|
|
36
|
-
var schema = tr.doc.type.schema;
|
|
37
|
-
var match;
|
|
38
|
-
|
|
39
|
-
// Ignored via go/ees005
|
|
40
|
-
// eslint-disable-next-line no-cond-assign
|
|
41
|
-
while (match = FIND_SMART_CHAR.exec(textContent)) {
|
|
42
|
-
var _match = match,
|
|
43
|
-
smartChar = _match[0],
|
|
44
|
-
offset = _match.index;
|
|
45
|
-
var replacePos = tr.mapping.map(position + offset);
|
|
46
|
-
var replacementText = schema.text(SMART_TO_ASCII[smartChar]);
|
|
47
|
-
tr.replaceWith(replacePos, replacePos + smartChar.length, replacementText);
|
|
48
|
-
}
|
|
49
|
-
};
|
|
50
|
-
var replaceMentionOrEmojiForTextContent = function replaceMentionOrEmojiForTextContent(position, nodeSize, textContent, tr
|
|
51
|
-
// Ignored via go/ees005
|
|
52
|
-
// eslint-disable-next-line @typescript-eslint/max-params
|
|
53
|
-
) {
|
|
54
|
-
var currentPos = tr.mapping.map(position);
|
|
55
|
-
var schema = tr.doc.type.schema;
|
|
56
|
-
tr.replaceWith(currentPos, currentPos + nodeSize, schema.text(textContent));
|
|
57
|
-
};
|
|
58
20
|
|
|
59
21
|
// Ignored via go/ees005
|
|
60
22
|
// eslint-disable-next-line @typescript-eslint/max-params
|
|
@@ -73,11 +35,11 @@ export function filterChildrenBetween(doc, from, to, predicate) {
|
|
|
73
35
|
export function transformNonTextNodesToText(from, to, tr) {
|
|
74
36
|
var doc = tr.doc;
|
|
75
37
|
var schema = doc.type.schema;
|
|
76
|
-
var _schema$
|
|
77
|
-
mentionNodeType = _schema$
|
|
78
|
-
textNodeType = _schema$
|
|
79
|
-
emojiNodeType = _schema$
|
|
80
|
-
inlineCardNodeType = _schema$
|
|
38
|
+
var _schema$nodes = schema.nodes,
|
|
39
|
+
mentionNodeType = _schema$nodes.mention,
|
|
40
|
+
textNodeType = _schema$nodes.text,
|
|
41
|
+
emojiNodeType = _schema$nodes.emoji,
|
|
42
|
+
inlineCardNodeType = _schema$nodes.inlineCard;
|
|
81
43
|
var nodesToChange = [];
|
|
82
44
|
doc.nodesBetween(from, to, function (node, pos, parent) {
|
|
83
45
|
if ([mentionNodeType, textNodeType, emojiNodeType, inlineCardNodeType].includes(node.type)) {
|
|
@@ -112,36 +74,6 @@ export function transformNonTextNodesToText(from, to, tr) {
|
|
|
112
74
|
}
|
|
113
75
|
});
|
|
114
76
|
}
|
|
115
|
-
|
|
116
|
-
/**
|
|
117
|
-
* @private
|
|
118
|
-
* @deprecated Use {@link transformNonTextNodesToText} instead.
|
|
119
|
-
*/
|
|
120
|
-
export var transformSmartCharsMentionsAndEmojis = function transformSmartCharsMentionsAndEmojis(from, to, tr) {
|
|
121
|
-
var schema = tr.doc.type.schema;
|
|
122
|
-
var _schema$nodes3 = schema.nodes,
|
|
123
|
-
mention = _schema$nodes3.mention,
|
|
124
|
-
text = _schema$nodes3.text,
|
|
125
|
-
emoji = _schema$nodes3.emoji;
|
|
126
|
-
// Traverse through all the nodes within the range and replace them with their plaintext counterpart
|
|
127
|
-
var children = filterChildrenBetween(tr.doc, from, to, isNodeTextBlock(schema));
|
|
128
|
-
children.forEach(function (_ref2) {
|
|
129
|
-
var node = _ref2.node,
|
|
130
|
-
pos = _ref2.pos;
|
|
131
|
-
if (node.type === mention || node.type === emoji) {
|
|
132
|
-
// Convert gracefully when no text found, ProseMirror will blow up if you try to create a node with an empty string or undefined
|
|
133
|
-
var replacementText = node.attrs.text;
|
|
134
|
-
if (typeof replacementText === 'undefined' || replacementText === '') {
|
|
135
|
-
replacementText = "".concat(node.type.name, " text missing");
|
|
136
|
-
}
|
|
137
|
-
replaceMentionOrEmojiForTextContent(pos, node.nodeSize, replacementText, tr);
|
|
138
|
-
} else if (node.type === text && node.text) {
|
|
139
|
-
var replacePosition = pos > from ? pos : from;
|
|
140
|
-
var textToReplace = pos > from ? node.text : node.text.substr(from - pos);
|
|
141
|
-
replaceSmartCharsToAscii(replacePosition, textToReplace, tr);
|
|
142
|
-
}
|
|
143
|
-
});
|
|
144
|
-
};
|
|
145
77
|
export var applyMarkOnRange = function applyMarkOnRange(from, to, removeMark, mark, tr
|
|
146
78
|
// Ignored via go/ees005
|
|
147
79
|
// eslint-disable-next-line @typescript-eslint/max-params
|
|
@@ -197,8 +129,8 @@ export var entireSelectionContainsMark = function entireSelectionContainsMark(ma
|
|
|
197
129
|
return onlyContainsMark;
|
|
198
130
|
};
|
|
199
131
|
var toggleMarkInRange = function toggleMarkInRange(mark) {
|
|
200
|
-
return function (
|
|
201
|
-
var tr =
|
|
132
|
+
return function (_ref2) {
|
|
133
|
+
var tr = _ref2.tr;
|
|
202
134
|
if (tr.selection instanceof CellSelection) {
|
|
203
135
|
var _removeMark = true;
|
|
204
136
|
var cells = [];
|
|
@@ -243,8 +175,8 @@ var toggleMarkInRange = function toggleMarkInRange(mark) {
|
|
|
243
175
|
* @param attrs
|
|
244
176
|
*/
|
|
245
177
|
export var toggleMark = function toggleMark(markType, attrs) {
|
|
246
|
-
return function (
|
|
247
|
-
var tr =
|
|
178
|
+
return function (_ref3) {
|
|
179
|
+
var tr = _ref3.tr;
|
|
248
180
|
var mark = markType.create(attrs);
|
|
249
181
|
|
|
250
182
|
// For cursor selections we can use the default behaviour.
|
|
@@ -266,8 +198,8 @@ export var toggleMark = function toggleMark(markType, attrs) {
|
|
|
266
198
|
* A wrapper around ProseMirror removeMark and removeStoredMark, which handles mark removal in text, CellSelections and cursor stored marks.
|
|
267
199
|
*/
|
|
268
200
|
export var removeMark = function removeMark(mark) {
|
|
269
|
-
return function (
|
|
270
|
-
var tr =
|
|
201
|
+
return function (_ref4) {
|
|
202
|
+
var tr = _ref4.tr;
|
|
271
203
|
var selection = tr.selection;
|
|
272
204
|
if (selection instanceof CellSelection) {
|
|
273
205
|
selection.forEachCell(function (cell, cellPos) {
|
package/dist/esm/mark/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// Disable no-re-export rule for entry point files
|
|
2
2
|
/* eslint-disable @atlaskit/editor/no-re-export */
|
|
3
3
|
|
|
4
|
-
export {
|
|
4
|
+
export { transformNonTextNodesToText, applyMarkOnRange, filterChildrenBetween, toggleMark, removeMark, entireSelectionContainsMark } from './commands';
|
|
5
5
|
export { anyMarkActive, isMarkAllowedInRange, isMarkExcluded } from './text-formatting';
|
|
@@ -19,5 +19,10 @@ export var mentionMessages = defineMessages({
|
|
|
19
19
|
id: 'fabric.editor.mentionNode.label',
|
|
20
20
|
defaultMessage: 'Tagged user',
|
|
21
21
|
description: 'Label to indicate mention node to Screen reader users, that preceeds with user name ex: "Tagged user @XXX'
|
|
22
|
+
},
|
|
23
|
+
unknownLabel: {
|
|
24
|
+
id: 'fabric.editor.unknown.label',
|
|
25
|
+
defaultMessage: 'Unknown',
|
|
26
|
+
description: 'Label to indicate unknown mention node'
|
|
22
27
|
}
|
|
23
28
|
});
|
|
@@ -7,7 +7,7 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
|
|
|
7
7
|
import { isFedRamp } from './environment';
|
|
8
8
|
var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
|
|
9
9
|
var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
|
|
10
|
-
var packageVersion = "
|
|
10
|
+
var packageVersion = "99.0.0";
|
|
11
11
|
var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
|
|
12
12
|
// Remove URL as it has UGC
|
|
13
13
|
// TODO: Sanitise the URL instead of just removing it
|
package/dist/esm/styles/index.js
CHANGED
|
@@ -30,7 +30,7 @@ export { resizerStyles, resizerHandleClassName, resizerHandleTrackClassName, res
|
|
|
30
30
|
export { gridStyles, GRID_GUTTER } from './shared/grid';
|
|
31
31
|
export { smartCardStyles, FLOATING_TOOLBAR_LINKPICKER_CLASSNAME, DATASOURCE_INNER_CONTAINER_CLASSNAME } from './shared/smartCard';
|
|
32
32
|
export { embedCardStyles, embedSpacingStyles } from './shared/embedCard';
|
|
33
|
-
export { buttonGroupStyle, disableBlueBorderStyles, separatorStyles, wrapperStyle, triggerWrapperStyles, triggerWrapperStylesWithPadding } from './shared/plugins';
|
|
33
|
+
export { buttonGroupStyle, buttonGroupStyleBeforeVisualRefresh, disableBlueBorderStyles, separatorStyles, wrapperStyle, triggerWrapperStyles, triggerWrapperStylesWithPadding } from './shared/plugins';
|
|
34
34
|
export { UnsupportedSharedCssClassName, unsupportedStyles } from './shared/unsupported-content';
|
|
35
35
|
export { expandIconWrapperStyle, expandClassNames, expandIconContainerStyle } from './shared/expand';
|
|
36
36
|
export { sharedExpandStyles } from '../ui/Expand/sharedStyles';
|
|
@@ -1,6 +1,23 @@
|
|
|
1
1
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
2
2
|
import { css } from '@emotion/react';
|
|
3
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
|
|
3
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles, -- Ignored via go/DSP-18766
|
|
4
|
+
export var buttonGroupStyleBeforeVisualRefresh = css({
|
|
5
|
+
display: 'inline-flex',
|
|
6
|
+
alignItems: 'center',
|
|
7
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
8
|
+
'& > div': {
|
|
9
|
+
display: 'flex'
|
|
10
|
+
},
|
|
11
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors
|
|
12
|
+
'button:not(#local-media-upload-button)': {
|
|
13
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors
|
|
14
|
+
'&:not([disabled])::after': {
|
|
15
|
+
border: 'none' // remove blue border when an item has been selected
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
|
|
4
21
|
export var buttonGroupStyle = css({
|
|
5
22
|
display: 'inline-flex',
|
|
6
23
|
alignItems: 'center',
|
|
@@ -8,12 +25,17 @@ export var buttonGroupStyle = css({
|
|
|
8
25
|
'& > div': {
|
|
9
26
|
display: 'flex'
|
|
10
27
|
},
|
|
11
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
12
|
-
button: {
|
|
28
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors
|
|
29
|
+
'button:not(#local-media-upload-button)': {
|
|
13
30
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors
|
|
14
31
|
'&:not([disabled])::after': {
|
|
15
32
|
border: 'none' // remove blue border when an item has been selected
|
|
16
33
|
}
|
|
34
|
+
},
|
|
35
|
+
gap: "var(--ds-space-050, 4px)",
|
|
36
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
37
|
+
'div[role=group]': {
|
|
38
|
+
gap: "var(--ds-space-050, 4px)"
|
|
17
39
|
}
|
|
18
40
|
});
|
|
19
41
|
|
|
@@ -20,7 +20,7 @@ import withAnalyticsContext from '@atlaskit/analytics-next/withAnalyticsContext'
|
|
|
20
20
|
import withAnalyticsEvents from '@atlaskit/analytics-next/withAnalyticsEvents';
|
|
21
21
|
import Layer from '../Layer';
|
|
22
22
|
var packageName = "@atlaskit/editor-common";
|
|
23
|
-
var packageVersion = "
|
|
23
|
+
var packageVersion = "99.0.0";
|
|
24
24
|
var halfFocusRing = 1;
|
|
25
25
|
var dropOffset = '0, 8';
|
|
26
26
|
// Ignored via go/ees005
|
|
@@ -9,10 +9,12 @@ import React from 'react';
|
|
|
9
9
|
import { css, jsx } from '@emotion/react';
|
|
10
10
|
import withAnalyticsContext from '@atlaskit/analytics-next/withAnalyticsContext';
|
|
11
11
|
import withAnalyticsEvents from '@atlaskit/analytics-next/withAnalyticsEvents';
|
|
12
|
-
import Button from '@atlaskit/button/
|
|
12
|
+
import Button from '@atlaskit/button/new';
|
|
13
|
+
import LegacyButton from '@atlaskit/button/standard-button';
|
|
13
14
|
import LegacyExpandIcon from '@atlaskit/icon/glyph/chevron-down';
|
|
14
15
|
import ChevronDownIcon from '@atlaskit/icon/utility/chevron-down';
|
|
15
|
-
import {
|
|
16
|
+
import { fg } from '@atlaskit/platform-feature-flags';
|
|
17
|
+
import { Box, xcss, Inline } from '@atlaskit/primitives';
|
|
16
18
|
import Tooltip from '@atlaskit/tooltip';
|
|
17
19
|
import { ACTION, ACTION_SUBJECT, ACTION_SUBJECT_ID, editorAnalyticsChannel, EVENT_TYPE } from '../../analytics';
|
|
18
20
|
import { ColorPalette, DEFAULT_BORDER_COLOR, getSelectedRowAndColumnFromPalette } from '../../ui-color';
|
|
@@ -31,6 +33,21 @@ var colorPickerExpandContainer = xcss({
|
|
|
31
33
|
marginLeft: 'space.negative.050',
|
|
32
34
|
marginRight: 'space.negative.050'
|
|
33
35
|
});
|
|
36
|
+
var colorPickerExpandContainerVisualRefresh = xcss({
|
|
37
|
+
marginTop: 'space.negative.025',
|
|
38
|
+
marginRight: 'space.negative.050'
|
|
39
|
+
});
|
|
40
|
+
var colorPickerButtonStyle = css({
|
|
41
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
42
|
+
button: {
|
|
43
|
+
'&::after': {
|
|
44
|
+
border: 'none'
|
|
45
|
+
},
|
|
46
|
+
'&:hover': {
|
|
47
|
+
backgroundColor: "var(--ds-background-selected, #E9F2FF)"
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
});
|
|
34
51
|
|
|
35
52
|
// Control the size of color picker buttons and preview
|
|
36
53
|
// TODO: https://product-fabric.atlassian.net/browse/DSP-4134
|
|
@@ -205,12 +222,69 @@ var ColorPickerButton = function ColorPickerButton(props) {
|
|
|
205
222
|
}
|
|
206
223
|
});
|
|
207
224
|
};
|
|
225
|
+
var buttonStyleVisualRefresh = function buttonStyleVisualRefresh() {
|
|
226
|
+
var _props$size4, _props$size5, _props$size6;
|
|
227
|
+
return css({
|
|
228
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
229
|
+
height: "".concat(!!((_props$size4 = props.size) !== null && _props$size4 !== void 0 && _props$size4.height) ? 'inherit' : ''),
|
|
230
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-18766
|
|
231
|
+
'&:before': {
|
|
232
|
+
display: 'flex',
|
|
233
|
+
justifyContent: 'center',
|
|
234
|
+
alignItems: 'center',
|
|
235
|
+
alignSelf: 'center',
|
|
236
|
+
content: "''",
|
|
237
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
238
|
+
border: "1px solid ".concat(DEFAULT_BORDER_COLOR),
|
|
239
|
+
borderRadius: "var(--ds-border-radius, 3px)",
|
|
240
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
241
|
+
backgroundColor: currentColor || 'transparent',
|
|
242
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
243
|
+
width: ((_props$size5 = props.size) === null || _props$size5 === void 0 ? void 0 : _props$size5.width) || '14px',
|
|
244
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
245
|
+
height: ((_props$size6 = props.size) === null || _props$size6 === void 0 ? void 0 : _props$size6.height) || '14px',
|
|
246
|
+
marginTop: "var(--ds-space-025, 2px)"
|
|
247
|
+
}
|
|
248
|
+
});
|
|
249
|
+
};
|
|
208
250
|
return jsx("div", {
|
|
209
251
|
css: colorPickerButtonWrapper
|
|
210
252
|
}, jsx(Tooltip, {
|
|
211
253
|
content: title,
|
|
212
254
|
position: "top"
|
|
255
|
+
},
|
|
256
|
+
// eslint-disable-next-line @atlaskit/platform/ensure-feature-flag-prefix
|
|
257
|
+
fg('platform-visual-refresh-icons') ? jsx("div", {
|
|
258
|
+
css: colorPickerButtonStyle
|
|
213
259
|
}, jsx(Button, {
|
|
260
|
+
appearance: 'subtle',
|
|
261
|
+
ref: buttonRef,
|
|
262
|
+
"aria-label": title,
|
|
263
|
+
"aria-expanded": props.isAriaExpanded ? isPopupOpen : undefined,
|
|
264
|
+
spacing: "compact",
|
|
265
|
+
onClick: togglePopup,
|
|
266
|
+
onKeyDown: function onKeyDown(event) {
|
|
267
|
+
if (event.key === 'Enter' || event.key === ' ') {
|
|
268
|
+
event.preventDefault();
|
|
269
|
+
togglePopup();
|
|
270
|
+
setIsOpenedByKeyboard(true);
|
|
271
|
+
}
|
|
272
|
+
},
|
|
273
|
+
"data-selected-color": props.currentColor,
|
|
274
|
+
isSelected: isPopupOpen
|
|
275
|
+
}, jsx(Inline, {
|
|
276
|
+
alignBlock: "start"
|
|
277
|
+
}, jsx("span", {
|
|
278
|
+
// eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage
|
|
279
|
+
css: buttonStyleVisualRefresh
|
|
280
|
+
}), jsx(Box, {
|
|
281
|
+
xcss: colorPickerExpandContainerVisualRefresh
|
|
282
|
+
}, jsx(ChevronDownIcon, {
|
|
283
|
+
color: "currentColor",
|
|
284
|
+
spacing: "spacious",
|
|
285
|
+
LEGACY_fallbackIcon: LegacyExpandIcon,
|
|
286
|
+
label: "color-picker-chevron-down"
|
|
287
|
+
}))))) : jsx(LegacyButton, {
|
|
214
288
|
appearance: 'subtle',
|
|
215
289
|
ref: buttonRef,
|
|
216
290
|
"aria-label": title,
|
|
@@ -224,7 +298,6 @@ var ColorPickerButton = function ColorPickerButton(props) {
|
|
|
224
298
|
setIsOpenedByKeyboard(true);
|
|
225
299
|
}
|
|
226
300
|
}
|
|
227
|
-
// TODO: (from codemod) Buttons with "component", "css" or "style" prop can't be automatically migrated with codemods. Please migrate it manually.
|
|
228
301
|
// eslint-disable-next-line @atlaskit/design-system/no-unsafe-style-overrides
|
|
229
302
|
,
|
|
230
303
|
css: buttonStyle,
|
|
@@ -6,11 +6,6 @@ export declare function filterChildrenBetween(doc: PMNode, from: number, to: num
|
|
|
6
6
|
pos: number;
|
|
7
7
|
}[];
|
|
8
8
|
export declare function transformNonTextNodesToText(from: number, to: number, tr: Transaction): void;
|
|
9
|
-
/**
|
|
10
|
-
* @private
|
|
11
|
-
* @deprecated Use {@link transformNonTextNodesToText} instead.
|
|
12
|
-
*/
|
|
13
|
-
export declare const transformSmartCharsMentionsAndEmojis: (from: number, to: number, tr: Transaction) => void;
|
|
14
9
|
export declare const applyMarkOnRange: (from: number, to: number, removeMark: boolean, mark: Mark, tr: Transaction) => Transaction;
|
|
15
10
|
export declare const entireSelectionContainsMark: (mark: Mark | MarkType, doc: PMNode, fromPos: number, toPos: number) => boolean;
|
|
16
11
|
/**
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { transformNonTextNodesToText, applyMarkOnRange, filterChildrenBetween, toggleMark, removeMark, entireSelectionContainsMark, } from './commands';
|
|
2
2
|
export { anyMarkActive, isMarkAllowedInRange, isMarkExcluded } from './text-formatting';
|
|
@@ -27,7 +27,7 @@ export { resizerStyles, resizerHandleClassName, resizerHandleTrackClassName, res
|
|
|
27
27
|
export { gridStyles, GRID_GUTTER } from './shared/grid';
|
|
28
28
|
export { smartCardStyles, FLOATING_TOOLBAR_LINKPICKER_CLASSNAME, DATASOURCE_INNER_CONTAINER_CLASSNAME, } from './shared/smartCard';
|
|
29
29
|
export { embedCardStyles, embedSpacingStyles } from './shared/embedCard';
|
|
30
|
-
export { buttonGroupStyle, disableBlueBorderStyles, separatorStyles, wrapperStyle, triggerWrapperStyles, triggerWrapperStylesWithPadding, } from './shared/plugins';
|
|
30
|
+
export { buttonGroupStyle, buttonGroupStyleBeforeVisualRefresh, disableBlueBorderStyles, separatorStyles, wrapperStyle, triggerWrapperStyles, triggerWrapperStylesWithPadding, } from './shared/plugins';
|
|
31
31
|
export { UnsupportedSharedCssClassName, unsupportedStyles } from './shared/unsupported-content';
|
|
32
32
|
export { expandIconWrapperStyle, expandClassNames, expandIconContainerStyle, } from './shared/expand';
|
|
33
33
|
export { sharedExpandStyles } from '../ui/Expand/sharedStyles';
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export declare const buttonGroupStyleBeforeVisualRefresh: import("@emotion/react").SerializedStyles;
|
|
1
2
|
export declare const buttonGroupStyle: import("@emotion/react").SerializedStyles;
|
|
2
3
|
export declare const separatorStyles: import("@emotion/react").SerializedStyles;
|
|
3
4
|
export declare const wrapperStyle: import("@emotion/react").SerializedStyles;
|
|
@@ -6,11 +6,6 @@ export declare function filterChildrenBetween(doc: PMNode, from: number, to: num
|
|
|
6
6
|
pos: number;
|
|
7
7
|
}[];
|
|
8
8
|
export declare function transformNonTextNodesToText(from: number, to: number, tr: Transaction): void;
|
|
9
|
-
/**
|
|
10
|
-
* @private
|
|
11
|
-
* @deprecated Use {@link transformNonTextNodesToText} instead.
|
|
12
|
-
*/
|
|
13
|
-
export declare const transformSmartCharsMentionsAndEmojis: (from: number, to: number, tr: Transaction) => void;
|
|
14
9
|
export declare const applyMarkOnRange: (from: number, to: number, removeMark: boolean, mark: Mark, tr: Transaction) => Transaction;
|
|
15
10
|
export declare const entireSelectionContainsMark: (mark: Mark | MarkType, doc: PMNode, fromPos: number, toPos: number) => boolean;
|
|
16
11
|
/**
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { transformNonTextNodesToText, applyMarkOnRange, filterChildrenBetween, toggleMark, removeMark, entireSelectionContainsMark, } from './commands';
|
|
2
2
|
export { anyMarkActive, isMarkAllowedInRange, isMarkExcluded } from './text-formatting';
|
|
@@ -27,7 +27,7 @@ export { resizerStyles, resizerHandleClassName, resizerHandleTrackClassName, res
|
|
|
27
27
|
export { gridStyles, GRID_GUTTER } from './shared/grid';
|
|
28
28
|
export { smartCardStyles, FLOATING_TOOLBAR_LINKPICKER_CLASSNAME, DATASOURCE_INNER_CONTAINER_CLASSNAME, } from './shared/smartCard';
|
|
29
29
|
export { embedCardStyles, embedSpacingStyles } from './shared/embedCard';
|
|
30
|
-
export { buttonGroupStyle, disableBlueBorderStyles, separatorStyles, wrapperStyle, triggerWrapperStyles, triggerWrapperStylesWithPadding, } from './shared/plugins';
|
|
30
|
+
export { buttonGroupStyle, buttonGroupStyleBeforeVisualRefresh, disableBlueBorderStyles, separatorStyles, wrapperStyle, triggerWrapperStyles, triggerWrapperStylesWithPadding, } from './shared/plugins';
|
|
31
31
|
export { UnsupportedSharedCssClassName, unsupportedStyles } from './shared/unsupported-content';
|
|
32
32
|
export { expandIconWrapperStyle, expandClassNames, expandIconContainerStyle, } from './shared/expand';
|
|
33
33
|
export { sharedExpandStyles } from '../ui/Expand/sharedStyles';
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export declare const buttonGroupStyleBeforeVisualRefresh: import("@emotion/react").SerializedStyles;
|
|
1
2
|
export declare const buttonGroupStyle: import("@emotion/react").SerializedStyles;
|
|
2
3
|
export declare const separatorStyles: import("@emotion/react").SerializedStyles;
|
|
3
4
|
export declare const wrapperStyle: import("@emotion/react").SerializedStyles;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-common",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "99.0.0",
|
|
4
4
|
"description": "A package that contains common classes and components for editor and renderer",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -113,7 +113,7 @@
|
|
|
113
113
|
"dependencies": {
|
|
114
114
|
"@atlaskit/activity-provider": "^2.5.0",
|
|
115
115
|
"@atlaskit/adf-schema": "^46.1.0",
|
|
116
|
-
"@atlaskit/adf-utils": "^19.
|
|
116
|
+
"@atlaskit/adf-utils": "^19.16.0",
|
|
117
117
|
"@atlaskit/analytics-listeners": "^8.13.0",
|
|
118
118
|
"@atlaskit/analytics-namespaced-context": "^6.12.0",
|
|
119
119
|
"@atlaskit/analytics-next": "^10.2.0",
|
|
@@ -124,12 +124,12 @@
|
|
|
124
124
|
"@atlaskit/custom-steps": "^0.9.0",
|
|
125
125
|
"@atlaskit/dropdown-menu": "^12.24.0",
|
|
126
126
|
"@atlaskit/editor-json-transformer": "^8.21.0",
|
|
127
|
-
"@atlaskit/editor-palette": "1.6.
|
|
127
|
+
"@atlaskit/editor-palette": "1.6.4",
|
|
128
128
|
"@atlaskit/editor-prosemirror": "6.2.1",
|
|
129
129
|
"@atlaskit/editor-shared-styles": "^3.2.0",
|
|
130
130
|
"@atlaskit/editor-tables": "^2.8.0",
|
|
131
131
|
"@atlaskit/emoji": "^67.12.0",
|
|
132
|
-
"@atlaskit/icon": "^23.
|
|
132
|
+
"@atlaskit/icon": "^23.3.0",
|
|
133
133
|
"@atlaskit/icon-object": "^6.9.0",
|
|
134
134
|
"@atlaskit/link-datasource": "^3.15.0",
|
|
135
135
|
"@atlaskit/link-picker": "^1.47.0",
|
|
@@ -140,7 +140,7 @@
|
|
|
140
140
|
"@atlaskit/media-file-preview": "^0.9.0",
|
|
141
141
|
"@atlaskit/media-picker": "^67.0.0",
|
|
142
142
|
"@atlaskit/media-ui": "^27.3.0",
|
|
143
|
-
"@atlaskit/media-viewer": "49.6.
|
|
143
|
+
"@atlaskit/media-viewer": "49.6.1",
|
|
144
144
|
"@atlaskit/mention": "^23.7.0",
|
|
145
145
|
"@atlaskit/menu": "^2.13.0",
|
|
146
146
|
"@atlaskit/onboarding": "^12.2.0",
|
|
@@ -155,7 +155,7 @@
|
|
|
155
155
|
"@atlaskit/task-decision": "^17.11.0",
|
|
156
156
|
"@atlaskit/textfield": "^6.7.0",
|
|
157
157
|
"@atlaskit/tmp-editor-statsig": "^2.33.0",
|
|
158
|
-
"@atlaskit/tokens": "^
|
|
158
|
+
"@atlaskit/tokens": "^3.0.0",
|
|
159
159
|
"@atlaskit/tooltip": "^19.0.0",
|
|
160
160
|
"@atlaskit/width-detector": "^4.3.0",
|
|
161
161
|
"@babel/runtime": "^7.0.0",
|