@atlaskit/editor-core 217.8.3 → 217.9.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 +26 -0
- package/dist/cjs/presets/universal.js +4 -2
- package/dist/cjs/ui/Appearance/Comment/Comment.js +8 -1
- package/dist/cjs/ui/Appearance/FullPage/FullPageContentArea.js +7 -2
- package/dist/cjs/ui/EditorContentContainer/EditorContentContainer.js +15 -8
- package/dist/cjs/ui/EditorContentContainer/styles/codeMarkStyles.js +9 -1
- package/dist/cjs/ui/EditorContentContainer/styles/expandStyles.js +17 -9
- package/dist/cjs/ui/EditorContentContainer/styles/syncBlockStyles.js +12 -4
- package/dist/cjs/ui/EditorContentContainer/styles/tasksAndDecisionsStyles.js +1 -343
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/presets/universal.js +4 -2
- package/dist/es2019/ui/Appearance/Comment/Comment.js +8 -1
- package/dist/es2019/ui/Appearance/FullPage/FullPageContentArea.js +7 -2
- package/dist/es2019/ui/EditorContentContainer/EditorContentContainer.js +19 -12
- package/dist/es2019/ui/EditorContentContainer/styles/codeMarkStyles.js +8 -0
- package/dist/es2019/ui/EditorContentContainer/styles/expandStyles.js +16 -8
- package/dist/es2019/ui/EditorContentContainer/styles/syncBlockStyles.js +14 -3
- package/dist/es2019/ui/EditorContentContainer/styles/tasksAndDecisionsStyles.js +0 -346
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/presets/universal.js +4 -2
- package/dist/esm/ui/Appearance/Comment/Comment.js +8 -1
- package/dist/esm/ui/Appearance/FullPage/FullPageContentArea.js +7 -2
- package/dist/esm/ui/EditorContentContainer/EditorContentContainer.js +19 -12
- package/dist/esm/ui/EditorContentContainer/styles/codeMarkStyles.js +8 -0
- package/dist/esm/ui/EditorContentContainer/styles/expandStyles.js +16 -8
- package/dist/esm/ui/EditorContentContainer/styles/syncBlockStyles.js +11 -3
- package/dist/esm/ui/EditorContentContainer/styles/tasksAndDecisionsStyles.js +0 -342
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/types/presets/universal.d.ts +5 -1
- package/dist/types/ui/Appearance/Comment/Comment.d.ts +3 -1
- package/dist/types/ui/Appearance/FullPage/FullPageContentArea.d.ts +7 -1
- package/dist/types/ui/EditorContentContainer/EditorContentContainer.d.ts +5 -0
- package/dist/types/ui/EditorContentContainer/styles/codeMarkStyles.d.ts +1 -0
- package/dist/types/ui/EditorContentContainer/styles/expandStyles.d.ts +4 -0
- package/dist/types/ui/EditorContentContainer/styles/syncBlockStyles.d.ts +1 -0
- package/dist/types/ui/EditorContentContainer/styles/tasksAndDecisionsStyles.d.ts +0 -2
- package/dist/types-ts4.5/presets/universal.d.ts +5 -1
- package/dist/types-ts4.5/ui/Appearance/Comment/Comment.d.ts +3 -1
- package/dist/types-ts4.5/ui/Appearance/FullPage/FullPageContentArea.d.ts +7 -4
- package/dist/types-ts4.5/ui/EditorContentContainer/EditorContentContainer.d.ts +5 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/codeMarkStyles.d.ts +1 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/expandStyles.d.ts +4 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/syncBlockStyles.d.ts +1 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/tasksAndDecisionsStyles.d.ts +0 -2
- package/package.json +3 -3
|
@@ -4,7 +4,7 @@ var _$concat$concat;
|
|
|
4
4
|
import { css, keyframes } from '@emotion/react';
|
|
5
5
|
import { BodiedSyncBlockSharedCssClassName, SyncBlockSharedCssClassName, SyncBlockLabelSharedCssClassName, SyncBlockStateCssClassName } from '@atlaskit/editor-common/sync-block';
|
|
6
6
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
|
|
7
|
-
export var
|
|
7
|
+
export var syncBlockStylesBase = css(_defineProperty({
|
|
8
8
|
'@property --angle': {
|
|
9
9
|
syntax: '"<angle>"',
|
|
10
10
|
initialValue: '0deg',
|
|
@@ -15,8 +15,6 @@ export var syncBlockStyles = css(_defineProperty({
|
|
|
15
15
|
position: 'relative',
|
|
16
16
|
cursor: 'pointer',
|
|
17
17
|
borderRadius: "var(--ds-radius-small, 3px)",
|
|
18
|
-
marginRight: "-18px",
|
|
19
|
-
marginLeft: "-18px",
|
|
20
18
|
marginBottom: 0,
|
|
21
19
|
marginTop: "var(--ds-space-075, 6px)",
|
|
22
20
|
paddingBlock: "var(--ds-space-150, 12px)",
|
|
@@ -148,6 +146,16 @@ export var syncBlockStyles = css(_defineProperty({
|
|
|
148
146
|
maxWidth: '140px'
|
|
149
147
|
}));
|
|
150
148
|
|
|
149
|
+
// Export the default styles with negative margins (original behavior)
|
|
150
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
|
|
151
|
+
export var syncBlockStyles = css({
|
|
152
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
153
|
+
'.ProseMirror': _defineProperty({}, ".".concat(SyncBlockSharedCssClassName.prefix, ", .").concat(BodiedSyncBlockSharedCssClassName.prefix), {
|
|
154
|
+
marginRight: "-18px",
|
|
155
|
+
marginLeft: "-18px"
|
|
156
|
+
})
|
|
157
|
+
});
|
|
158
|
+
|
|
151
159
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
|
|
152
160
|
export var syncBlockOverflowStyles = css({
|
|
153
161
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
@@ -257,348 +257,6 @@ export var taskItemStyles = css({
|
|
|
257
257
|
|
|
258
258
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
|
|
259
259
|
export var taskItemCheckboxStyles = css(_defineProperty({
|
|
260
|
-
// copied styles from packages/design-system/icon/src/components/icon-new.tsx
|
|
261
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
262
|
-
'[data-prosemirror-node-name="taskItem"] [data-component="checkbox-icon-wrap"]': {
|
|
263
|
-
display: 'inline-block',
|
|
264
|
-
boxSizing: 'border-box',
|
|
265
|
-
flexShrink: 0,
|
|
266
|
-
// eslint-disable-next-line @atlaskit/design-system/use-tokens-typography
|
|
267
|
-
lineHeight: 1,
|
|
268
|
-
paddingInlineEnd: 'var(--ds--button--new-icon-padding-end, 0)',
|
|
269
|
-
paddingInlineStart: 'var(--ds--button--new-icon-padding-start, 0)'
|
|
270
|
-
},
|
|
271
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
272
|
-
'[data-prosemirror-node-name="taskItem"] [data-component="checkbox-icon-wrap"] svg': {
|
|
273
|
-
overflow: 'hidden',
|
|
274
|
-
pointerEvents: 'none',
|
|
275
|
-
color: 'currentColor',
|
|
276
|
-
verticalAlign: 'bottom',
|
|
277
|
-
width: "var(--ds-space-200, 16px)",
|
|
278
|
-
height: "var(--ds-space-200, 16px)"
|
|
279
|
-
},
|
|
280
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors
|
|
281
|
-
'[data-prosemirror-node-name="taskItem"] input[type=checkbox]:not(:checked) + span [data-component=checkbox-checked-icon]': {
|
|
282
|
-
display: 'none'
|
|
283
|
-
},
|
|
284
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors
|
|
285
|
-
'[data-prosemirror-node-name="taskItem"] input[type=checkbox]:not(:checked) + span [data-component=checkbox-unchecked-icon]': {
|
|
286
|
-
display: 'inline'
|
|
287
|
-
},
|
|
288
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
289
|
-
'[data-prosemirror-node-name="taskItem"] input[type=checkbox]:checked + span [data-component=checkbox-checked-icon]': {
|
|
290
|
-
display: 'inline'
|
|
291
|
-
},
|
|
292
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
293
|
-
'[data-prosemirror-node-name="taskItem"] input[type=checkbox]:checked + span [data-component=checkbox-unchecked-icon]': {
|
|
294
|
-
display: 'none'
|
|
295
|
-
}
|
|
296
|
-
}, "[data-prosemirror-node-name=\"taskItem\"] .".concat(TaskDecisionSharedCssClassName.TASK_CHECKBOX_CONTAINER), {
|
|
297
|
-
flex: '0 0 24px',
|
|
298
|
-
width: '24px',
|
|
299
|
-
height: '24px',
|
|
300
|
-
position: 'relative',
|
|
301
|
-
alignSelf: 'start',
|
|
302
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
303
|
-
"& > input[type='checkbox']": {
|
|
304
|
-
width: '16px',
|
|
305
|
-
height: '16px',
|
|
306
|
-
zIndex: 1,
|
|
307
|
-
cursor: 'pointer',
|
|
308
|
-
outline: 'none',
|
|
309
|
-
margin: 0,
|
|
310
|
-
opacity: 0,
|
|
311
|
-
position: 'absolute',
|
|
312
|
-
top: '50%',
|
|
313
|
-
left: '50%',
|
|
314
|
-
transform: 'translate(-50%, -50%)',
|
|
315
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
316
|
-
'&[disabled]': {
|
|
317
|
-
cursor: 'default'
|
|
318
|
-
},
|
|
319
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
320
|
-
'+ span': {
|
|
321
|
-
width: '24px',
|
|
322
|
-
height: '24px',
|
|
323
|
-
position: 'absolute',
|
|
324
|
-
top: '50%',
|
|
325
|
-
left: '50%',
|
|
326
|
-
transform: 'translate(-50%, -50%)'
|
|
327
|
-
},
|
|
328
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
329
|
-
'+ span > svg': {
|
|
330
|
-
boxSizing: 'border-box',
|
|
331
|
-
display: 'inline',
|
|
332
|
-
top: '50%',
|
|
333
|
-
left: '50%',
|
|
334
|
-
transform: 'translate(-50%, -50%)',
|
|
335
|
-
maxWidth: 'unset',
|
|
336
|
-
maxHeight: 'unset',
|
|
337
|
-
position: 'absolute',
|
|
338
|
-
overflow: 'hidden',
|
|
339
|
-
color: "var(--ds-background-input, #FFFFFF)",
|
|
340
|
-
transition: 'color 0.2s ease-in-out, fill 0.2s ease-in-out',
|
|
341
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-18766
|
|
342
|
-
'path:first-of-type': {
|
|
343
|
-
visibility: 'hidden'
|
|
344
|
-
},
|
|
345
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-18766
|
|
346
|
-
'rect:first-of-type': {
|
|
347
|
-
stroke: "var(--ds-border-input, #8C8F97)",
|
|
348
|
-
strokeWidth: 1,
|
|
349
|
-
transition: 'stroke 0.2s ease-in-out'
|
|
350
|
-
}
|
|
351
|
-
},
|
|
352
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
353
|
-
'&:hover + span > svg': {
|
|
354
|
-
color: "var(--ds-background-input-hovered, #F8F8F8)",
|
|
355
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-18766
|
|
356
|
-
'rect:first-of-type': {
|
|
357
|
-
stroke: "var(--ds-border-input, #8C8F97)"
|
|
358
|
-
}
|
|
359
|
-
},
|
|
360
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
361
|
-
'&:checked:hover + span > svg': {
|
|
362
|
-
color: "var(--ds-background-selected-bold-hovered, #1558BC)",
|
|
363
|
-
fill: "var(--ds-icon-inverse, #FFFFFF)",
|
|
364
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-18766
|
|
365
|
-
'rect:first-of-type': {
|
|
366
|
-
stroke: "var(--ds-background-selected-bold-hovered, #1558BC)"
|
|
367
|
-
}
|
|
368
|
-
},
|
|
369
|
-
'&:checked': {
|
|
370
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
371
|
-
'+ span > svg': {
|
|
372
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-18766
|
|
373
|
-
'path:first-of-type': {
|
|
374
|
-
visibility: 'visible'
|
|
375
|
-
},
|
|
376
|
-
color: "var(--ds-background-selected-bold, #1868DB)",
|
|
377
|
-
fill: "var(--ds-icon-inverse, #FFFFFF)",
|
|
378
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-18766
|
|
379
|
-
'rect:first-of-type': {
|
|
380
|
-
stroke: "var(--ds-background-selected-bold, #1868DB)"
|
|
381
|
-
}
|
|
382
|
-
}
|
|
383
|
-
},
|
|
384
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
385
|
-
'&:active + span > svg': {
|
|
386
|
-
color: "var(--ds-background-input-pressed, #FFFFFF)",
|
|
387
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-18766
|
|
388
|
-
'rect:first-of-type': {
|
|
389
|
-
stroke: "var(--ds-border, #0B120E24)"
|
|
390
|
-
}
|
|
391
|
-
},
|
|
392
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
393
|
-
'&:checked:active + span > svg': {
|
|
394
|
-
color: "var(--ds-background-input-pressed, #FFFFFF)",
|
|
395
|
-
fill: "var(--ds-icon-inverse, #FFFFFF)",
|
|
396
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-18766
|
|
397
|
-
'rect:first-of-type': {
|
|
398
|
-
stroke: "var(--ds-border, #0B120E24)"
|
|
399
|
-
}
|
|
400
|
-
},
|
|
401
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
402
|
-
'&:disabled + span > svg, &:disabled:hover + span > svg, &:disabled:focus + span > svg, &:disabled:active + span > svg': {
|
|
403
|
-
color: "var(--ds-background-disabled, #17171708)",
|
|
404
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-18766
|
|
405
|
-
'rect:first-of-type': {
|
|
406
|
-
stroke: "var(--ds-background-disabled, #17171708)"
|
|
407
|
-
}
|
|
408
|
-
},
|
|
409
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
410
|
-
'&:disabled:checked + span > svg': {
|
|
411
|
-
fill: "var(--ds-icon-disabled, #080F214A)"
|
|
412
|
-
},
|
|
413
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
414
|
-
'&:focus + span::after': {
|
|
415
|
-
position: 'absolute',
|
|
416
|
-
width: "var(--ds-space-200, 16px)",
|
|
417
|
-
height: "var(--ds-space-200, 16px)",
|
|
418
|
-
border: "var(--ds-border-width-focused, 2px)".concat(" solid ", "var(--ds-border-focused, #4688EC)"),
|
|
419
|
-
borderRadius: "var(--ds-space-050, 4px)",
|
|
420
|
-
content: "''",
|
|
421
|
-
display: 'block',
|
|
422
|
-
top: '50%',
|
|
423
|
-
left: '50%',
|
|
424
|
-
transform: 'translate(-50%, -50%)'
|
|
425
|
-
}
|
|
426
|
-
}
|
|
427
|
-
}));
|
|
428
|
-
|
|
429
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
|
|
430
|
-
export var taskItemCheckboxStylesWithBlockTaskItem = css(_defineProperty({
|
|
431
|
-
// copied styles from packages/design-system/icon/src/components/icon-new.tsx
|
|
432
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
433
|
-
'[data-prosemirror-node-name="taskItem"] [data-component="checkbox-icon-wrap"], [data-prosemirror-node-name="blockTaskItem"] [data-component="checkbox-icon-wrap"]': {
|
|
434
|
-
display: 'inline-block',
|
|
435
|
-
boxSizing: 'border-box',
|
|
436
|
-
flexShrink: 0,
|
|
437
|
-
// eslint-disable-next-line @atlaskit/design-system/use-tokens-typography
|
|
438
|
-
lineHeight: 1,
|
|
439
|
-
paddingInlineEnd: 'var(--ds--button--new-icon-padding-end, 0)',
|
|
440
|
-
paddingInlineStart: 'var(--ds--button--new-icon-padding-start, 0)'
|
|
441
|
-
},
|
|
442
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
443
|
-
'[data-prosemirror-node-name="taskItem"] [data-component="checkbox-icon-wrap"] svg, [data-prosemirror-node-name="blockTaskItem"] [data-component="checkbox-icon-wrap"] svg': {
|
|
444
|
-
overflow: 'hidden',
|
|
445
|
-
pointerEvents: 'none',
|
|
446
|
-
color: 'currentColor',
|
|
447
|
-
verticalAlign: 'bottom',
|
|
448
|
-
width: "var(--ds-space-200, 16px)",
|
|
449
|
-
height: "var(--ds-space-200, 16px)"
|
|
450
|
-
},
|
|
451
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors
|
|
452
|
-
'[data-prosemirror-node-name="taskItem"] input[type=checkbox]:not(:checked) + span [data-component=checkbox-checked-icon], [data-prosemirror-node-name="blockTaskItem"] input[type=checkbox]:not(:checked) + span [data-component=checkbox-checked-icon]': {
|
|
453
|
-
display: 'none'
|
|
454
|
-
},
|
|
455
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors
|
|
456
|
-
'[data-prosemirror-node-name="taskItem"] input[type=checkbox]:not(:checked) + span [data-component=checkbox-unchecked-icon], [data-prosemirror-node-name="blockTaskItem"] input[type=checkbox]:not(:checked) + span [data-component=checkbox-unchecked-icon]': {
|
|
457
|
-
display: 'inline'
|
|
458
|
-
},
|
|
459
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
460
|
-
'[data-prosemirror-node-name="taskItem"] input[type=checkbox]:checked + span [data-component=checkbox-checked-icon], [data-prosemirror-node-name="blockTaskItem"] input[type=checkbox]:checked + span [data-component=checkbox-checked-icon]': {
|
|
461
|
-
display: 'inline'
|
|
462
|
-
},
|
|
463
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
464
|
-
'[data-prosemirror-node-name="taskItem"] input[type=checkbox]:checked + span [data-component=checkbox-unchecked-icon], [data-prosemirror-node-name="blockTaskItem"] input[type=checkbox]:checked + span [data-component=checkbox-unchecked-icon]': {
|
|
465
|
-
display: 'none'
|
|
466
|
-
}
|
|
467
|
-
}, "[data-prosemirror-node-name=\"taskItem\"] .".concat(TaskDecisionSharedCssClassName.TASK_CHECKBOX_CONTAINER, ", [data-prosemirror-node-name=\"blockTaskItem\"] .").concat(TaskDecisionSharedCssClassName.TASK_CHECKBOX_CONTAINER), {
|
|
468
|
-
flex: '0 0 24px',
|
|
469
|
-
width: '24px',
|
|
470
|
-
height: '24px',
|
|
471
|
-
position: 'relative',
|
|
472
|
-
alignSelf: 'start',
|
|
473
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
474
|
-
"& > input[type='checkbox']": {
|
|
475
|
-
width: '16px',
|
|
476
|
-
height: '16px',
|
|
477
|
-
zIndex: 1,
|
|
478
|
-
cursor: 'pointer',
|
|
479
|
-
outline: 'none',
|
|
480
|
-
margin: 0,
|
|
481
|
-
opacity: 0,
|
|
482
|
-
position: 'absolute',
|
|
483
|
-
top: '50%',
|
|
484
|
-
left: '50%',
|
|
485
|
-
transform: 'translate(-50%, -50%)',
|
|
486
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
487
|
-
'&[disabled]': {
|
|
488
|
-
cursor: 'default'
|
|
489
|
-
},
|
|
490
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
491
|
-
'+ span': {
|
|
492
|
-
width: '24px',
|
|
493
|
-
height: '24px',
|
|
494
|
-
position: 'absolute',
|
|
495
|
-
top: '50%',
|
|
496
|
-
left: '50%',
|
|
497
|
-
transform: 'translate(-50%, -50%)'
|
|
498
|
-
},
|
|
499
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
500
|
-
'+ span > svg': {
|
|
501
|
-
boxSizing: 'border-box',
|
|
502
|
-
display: 'inline',
|
|
503
|
-
top: '50%',
|
|
504
|
-
left: '50%',
|
|
505
|
-
transform: 'translate(-50%, -50%)',
|
|
506
|
-
maxWidth: 'unset',
|
|
507
|
-
maxHeight: 'unset',
|
|
508
|
-
position: 'absolute',
|
|
509
|
-
overflow: 'hidden',
|
|
510
|
-
color: "var(--ds-background-input, #FFFFFF)",
|
|
511
|
-
transition: 'color 0.2s ease-in-out, fill 0.2s ease-in-out',
|
|
512
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-18766
|
|
513
|
-
'path:first-of-type': {
|
|
514
|
-
visibility: 'hidden'
|
|
515
|
-
},
|
|
516
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-18766
|
|
517
|
-
'rect:first-of-type': {
|
|
518
|
-
stroke: "var(--ds-border-input, #8C8F97)",
|
|
519
|
-
strokeWidth: 1,
|
|
520
|
-
transition: 'stroke 0.2s ease-in-out'
|
|
521
|
-
}
|
|
522
|
-
},
|
|
523
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
524
|
-
'&:hover + span > svg': {
|
|
525
|
-
color: "var(--ds-background-input-hovered, #F8F8F8)",
|
|
526
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-18766
|
|
527
|
-
'rect:first-of-type': {
|
|
528
|
-
stroke: "var(--ds-border-input, #8C8F97)"
|
|
529
|
-
}
|
|
530
|
-
},
|
|
531
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
532
|
-
'&:checked:hover + span > svg': {
|
|
533
|
-
color: "var(--ds-background-selected-bold-hovered, #1558BC)",
|
|
534
|
-
fill: "var(--ds-icon-inverse, #FFFFFF)",
|
|
535
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-18766
|
|
536
|
-
'rect:first-of-type': {
|
|
537
|
-
stroke: "var(--ds-background-selected-bold-hovered, #1558BC)"
|
|
538
|
-
}
|
|
539
|
-
},
|
|
540
|
-
'&:checked': {
|
|
541
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
542
|
-
'+ span > svg': {
|
|
543
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-18766
|
|
544
|
-
'path:first-of-type': {
|
|
545
|
-
visibility: 'visible'
|
|
546
|
-
},
|
|
547
|
-
color: "var(--ds-background-selected-bold, #1868DB)",
|
|
548
|
-
fill: "var(--ds-icon-inverse, #FFFFFF)",
|
|
549
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-18766
|
|
550
|
-
'rect:first-of-type': {
|
|
551
|
-
stroke: "var(--ds-background-selected-bold, #1868DB)"
|
|
552
|
-
}
|
|
553
|
-
}
|
|
554
|
-
},
|
|
555
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
556
|
-
'&:active + span > svg': {
|
|
557
|
-
color: "var(--ds-background-input-pressed, #FFFFFF)",
|
|
558
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-18766
|
|
559
|
-
'rect:first-of-type': {
|
|
560
|
-
stroke: "var(--ds-border, #0B120E24)"
|
|
561
|
-
}
|
|
562
|
-
},
|
|
563
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
564
|
-
'&:checked:active + span > svg': {
|
|
565
|
-
color: "var(--ds-background-input-pressed, #FFFFFF)",
|
|
566
|
-
fill: "var(--ds-icon-inverse, #FFFFFF)",
|
|
567
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-18766
|
|
568
|
-
'rect:first-of-type': {
|
|
569
|
-
stroke: "var(--ds-border, #0B120E24)"
|
|
570
|
-
}
|
|
571
|
-
},
|
|
572
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
573
|
-
'&:disabled + span > svg, &:disabled:hover + span > svg, &:disabled:focus + span > svg, &:disabled:active + span > svg': {
|
|
574
|
-
color: "var(--ds-background-disabled, #17171708)",
|
|
575
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-18766
|
|
576
|
-
'rect:first-of-type': {
|
|
577
|
-
stroke: "var(--ds-background-disabled, #17171708)"
|
|
578
|
-
}
|
|
579
|
-
},
|
|
580
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
581
|
-
'&:disabled:checked + span > svg': {
|
|
582
|
-
fill: "var(--ds-icon-disabled, #080F214A)"
|
|
583
|
-
},
|
|
584
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
585
|
-
'&:focus + span::after': {
|
|
586
|
-
position: 'absolute',
|
|
587
|
-
width: "var(--ds-space-200, 16px)",
|
|
588
|
-
height: "var(--ds-space-200, 16px)",
|
|
589
|
-
border: "var(--ds-border-width-focused, 2px)".concat(" solid ", "var(--ds-border-focused, #4688EC)"),
|
|
590
|
-
borderRadius: "var(--ds-space-050, 4px)",
|
|
591
|
-
content: "''",
|
|
592
|
-
display: 'block',
|
|
593
|
-
top: '50%',
|
|
594
|
-
left: '50%',
|
|
595
|
-
transform: 'translate(-50%, -50%)'
|
|
596
|
-
}
|
|
597
|
-
}
|
|
598
|
-
}));
|
|
599
|
-
|
|
600
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
|
|
601
|
-
export var taskItemNextCheckboxStyles = css(_defineProperty({
|
|
602
260
|
/**
|
|
603
261
|
* Background
|
|
604
262
|
*/
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export var name = "@atlaskit/editor-core";
|
|
2
|
-
export var version = "217.
|
|
2
|
+
export var version = "217.9.0";
|
|
@@ -21,6 +21,7 @@ export type InitialPluginConfiguration = {
|
|
|
21
21
|
};
|
|
22
22
|
blockMenuPlugin?: {
|
|
23
23
|
enabled?: boolean;
|
|
24
|
+
useStandardNodeWidth?: boolean;
|
|
24
25
|
};
|
|
25
26
|
blockTypePlugin?: {
|
|
26
27
|
allowFontSize?: boolean;
|
|
@@ -456,7 +457,10 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
456
457
|
setMultiSelectPositions: (anchor?: number, head?: number) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
457
458
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
458
459
|
setSelectedViaDragHandle: (isSelectedViaDragHandle?: boolean) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
459
|
-
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugins/block-controls").HandleOptions, rootPos?: number, rootAnchorName?: string, rootNodeType
|
|
460
|
+
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugins/block-controls").HandleOptions, rootPos?: number, rootAnchorName?: string, rootNodeType? /**
|
|
461
|
+
* Allows configuring plugins as the universal preset blocks direct access
|
|
462
|
+
* to configuring plugins.
|
|
463
|
+
*/: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
460
464
|
startPreservingSelection: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
461
465
|
stopPreservingSelection: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
462
466
|
toggleBlockMenu: (options?: {
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { jsx } from '@emotion/react';
|
|
2
2
|
import type { OptionalPlugin } from '@atlaskit/editor-common/types';
|
|
3
|
+
import type { BlockMenuPlugin } from '@atlaskit/editor-plugin-block-menu';
|
|
3
4
|
import type { MaxContentSizePlugin } from '@atlaskit/editor-plugins/max-content-size';
|
|
4
5
|
import type { MediaPlugin } from '@atlaskit/editor-plugins/media';
|
|
5
6
|
import type { PrimaryToolbarPlugin } from '@atlaskit/editor-plugins/primary-toolbar';
|
|
@@ -9,7 +10,8 @@ type ComponentProps = EditorAppearanceComponentProps<[
|
|
|
9
10
|
OptionalPlugin<MediaPlugin>,
|
|
10
11
|
OptionalPlugin<MaxContentSizePlugin>,
|
|
11
12
|
OptionalPlugin<PrimaryToolbarPlugin>,
|
|
12
|
-
OptionalPlugin<ToolbarPlugin
|
|
13
|
+
OptionalPlugin<ToolbarPlugin>,
|
|
14
|
+
OptionalPlugin<BlockMenuPlugin>
|
|
13
15
|
]>;
|
|
14
16
|
export declare const CommentEditorWithIntl: {
|
|
15
17
|
(props: ComponentProps): jsx.JSX.Element;
|
|
@@ -10,12 +10,18 @@ import type { EventDispatcher } from '@atlaskit/editor-common/event-dispatcher';
|
|
|
10
10
|
import type { ProviderFactory } from '@atlaskit/editor-common/provider-factory';
|
|
11
11
|
import type { EditorAppearance, EditorContentMode, FeatureFlags, OptionalPlugin, PublicPluginAPI, ReactHookFactory, UIComponentFactory } from '@atlaskit/editor-common/types';
|
|
12
12
|
import type { BasePlugin } from '@atlaskit/editor-plugins/base';
|
|
13
|
+
import type { BlockMenuPlugin } from '@atlaskit/editor-plugins/block-menu';
|
|
13
14
|
import type { ContextPanelPlugin } from '@atlaskit/editor-plugins/context-panel';
|
|
14
15
|
import type { ViewMode } from '@atlaskit/editor-plugins/editor-viewmode';
|
|
15
16
|
import type { EditorView } from '@atlaskit/editor-prosemirror/view';
|
|
16
17
|
import type EditorActions from '../../../actions';
|
|
17
18
|
import type { ContentComponents, ReactComponents } from '../../../types';
|
|
18
19
|
import type { ScrollContainerRefs } from './types';
|
|
20
|
+
type EditorAPI = PublicPluginAPI<[
|
|
21
|
+
OptionalPlugin<ContextPanelPlugin>,
|
|
22
|
+
BasePlugin,
|
|
23
|
+
OptionalPlugin<BlockMenuPlugin>
|
|
24
|
+
]>;
|
|
19
25
|
interface FullPageEditorContentAreaProps {
|
|
20
26
|
appearance: EditorAppearance | undefined;
|
|
21
27
|
contentComponents: UIComponentFactory[] | undefined;
|
|
@@ -25,7 +31,7 @@ interface FullPageEditorContentAreaProps {
|
|
|
25
31
|
disabled: boolean | undefined;
|
|
26
32
|
dispatchAnalyticsEvent: DispatchAnalyticsEvent | undefined;
|
|
27
33
|
editorActions: EditorActions | undefined;
|
|
28
|
-
editorAPI:
|
|
34
|
+
editorAPI: EditorAPI | undefined;
|
|
29
35
|
editorDOMElement: ReactElement;
|
|
30
36
|
editorView: EditorView;
|
|
31
37
|
eventDispatcher: EventDispatcher | undefined;
|
|
@@ -11,6 +11,11 @@ export type EditorContentContainerProps = {
|
|
|
11
11
|
contentMode?: EditorContentMode;
|
|
12
12
|
featureFlags?: FeatureFlags;
|
|
13
13
|
isScrollable?: boolean;
|
|
14
|
+
/**
|
|
15
|
+
* When true, nodes maintain their standard width without negative margins
|
|
16
|
+
* For when the drag handle is visible and the editor has limited space.
|
|
17
|
+
*/
|
|
18
|
+
useStandardNodeWidth?: boolean;
|
|
14
19
|
viewMode?: 'view' | 'edit';
|
|
15
20
|
};
|
|
16
21
|
/**
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
import type { SerializedStyles } from '@emotion/react';
|
|
2
|
+
/**
|
|
3
|
+
* Base expand styles, always applied.
|
|
4
|
+
*/
|
|
5
|
+
export declare const expandStylesBase: SerializedStyles;
|
|
2
6
|
export declare const expandStyles: SerializedStyles;
|
|
3
7
|
/**
|
|
4
8
|
* This function gets the dynamic styles that scale the expand title font size based on the base font size.
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { SerializedStyles } from '@emotion/react';
|
|
2
|
+
export declare const syncBlockStylesBase: SerializedStyles;
|
|
2
3
|
export declare const syncBlockStyles: SerializedStyles;
|
|
3
4
|
export declare const syncBlockOverflowStyles: SerializedStyles;
|
|
4
5
|
export declare const syncBlockFirstNodeStyles: SerializedStyles;
|
|
@@ -14,6 +14,4 @@ export declare const decisionIconWithVisualRefresh: SerializedStyles;
|
|
|
14
14
|
export declare const decisionIconWithoutVisualRefresh: SerializedStyles;
|
|
15
15
|
export declare const taskItemStyles: SerializedStyles;
|
|
16
16
|
export declare const taskItemCheckboxStyles: SerializedStyles;
|
|
17
|
-
export declare const taskItemCheckboxStylesWithBlockTaskItem: SerializedStyles;
|
|
18
|
-
export declare const taskItemNextCheckboxStyles: SerializedStyles;
|
|
19
17
|
export declare const taskItemStylesWithBlockTaskItem: SerializedStyles;
|
|
@@ -21,6 +21,7 @@ export type InitialPluginConfiguration = {
|
|
|
21
21
|
};
|
|
22
22
|
blockMenuPlugin?: {
|
|
23
23
|
enabled?: boolean;
|
|
24
|
+
useStandardNodeWidth?: boolean;
|
|
24
25
|
};
|
|
25
26
|
blockTypePlugin?: {
|
|
26
27
|
allowFontSize?: boolean;
|
|
@@ -616,7 +617,10 @@ export default function createUniversalPresetInternal({ appearance, props, featu
|
|
|
616
617
|
setMultiSelectPositions: (anchor?: number, head?: number) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
617
618
|
setNodeDragged: (getPos: () => number | undefined, anchorName: string, nodeType: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
618
619
|
setSelectedViaDragHandle: (isSelectedViaDragHandle?: boolean) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
619
|
-
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugins/block-controls").HandleOptions, rootPos?: number, rootAnchorName?: string, rootNodeType
|
|
620
|
+
showDragHandleAt: (pos: number, anchorName: string, nodeType: string, handleOptions?: import("@atlaskit/editor-plugins/block-controls").HandleOptions, rootPos?: number, rootAnchorName?: string, rootNodeType? /**
|
|
621
|
+
* Allows configuring plugins as the universal preset blocks direct access
|
|
622
|
+
* to configuring plugins.
|
|
623
|
+
*/: string) => import("@atlaskit/editor-common/types").EditorCommand;
|
|
620
624
|
startPreservingSelection: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
621
625
|
stopPreservingSelection: () => import("@atlaskit/editor-common/types").EditorCommand;
|
|
622
626
|
toggleBlockMenu: (options?: {
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { jsx } from '@emotion/react';
|
|
2
2
|
import type { OptionalPlugin } from '@atlaskit/editor-common/types';
|
|
3
|
+
import type { BlockMenuPlugin } from '@atlaskit/editor-plugin-block-menu';
|
|
3
4
|
import type { MaxContentSizePlugin } from '@atlaskit/editor-plugins/max-content-size';
|
|
4
5
|
import type { MediaPlugin } from '@atlaskit/editor-plugins/media';
|
|
5
6
|
import type { PrimaryToolbarPlugin } from '@atlaskit/editor-plugins/primary-toolbar';
|
|
@@ -9,7 +10,8 @@ type ComponentProps = EditorAppearanceComponentProps<[
|
|
|
9
10
|
OptionalPlugin<MediaPlugin>,
|
|
10
11
|
OptionalPlugin<MaxContentSizePlugin>,
|
|
11
12
|
OptionalPlugin<PrimaryToolbarPlugin>,
|
|
12
|
-
OptionalPlugin<ToolbarPlugin
|
|
13
|
+
OptionalPlugin<ToolbarPlugin>,
|
|
14
|
+
OptionalPlugin<BlockMenuPlugin>
|
|
13
15
|
]>;
|
|
14
16
|
export declare const CommentEditorWithIntl: {
|
|
15
17
|
(props: ComponentProps): jsx.JSX.Element;
|
|
@@ -10,12 +10,18 @@ import type { EventDispatcher } from '@atlaskit/editor-common/event-dispatcher';
|
|
|
10
10
|
import type { ProviderFactory } from '@atlaskit/editor-common/provider-factory';
|
|
11
11
|
import type { EditorAppearance, EditorContentMode, FeatureFlags, OptionalPlugin, PublicPluginAPI, ReactHookFactory, UIComponentFactory } from '@atlaskit/editor-common/types';
|
|
12
12
|
import type { BasePlugin } from '@atlaskit/editor-plugins/base';
|
|
13
|
+
import type { BlockMenuPlugin } from '@atlaskit/editor-plugins/block-menu';
|
|
13
14
|
import type { ContextPanelPlugin } from '@atlaskit/editor-plugins/context-panel';
|
|
14
15
|
import type { ViewMode } from '@atlaskit/editor-plugins/editor-viewmode';
|
|
15
16
|
import type { EditorView } from '@atlaskit/editor-prosemirror/view';
|
|
16
17
|
import type EditorActions from '../../../actions';
|
|
17
18
|
import type { ContentComponents, ReactComponents } from '../../../types';
|
|
18
19
|
import type { ScrollContainerRefs } from './types';
|
|
20
|
+
type EditorAPI = PublicPluginAPI<[
|
|
21
|
+
OptionalPlugin<ContextPanelPlugin>,
|
|
22
|
+
BasePlugin,
|
|
23
|
+
OptionalPlugin<BlockMenuPlugin>
|
|
24
|
+
]>;
|
|
19
25
|
interface FullPageEditorContentAreaProps {
|
|
20
26
|
appearance: EditorAppearance | undefined;
|
|
21
27
|
contentComponents: UIComponentFactory[] | undefined;
|
|
@@ -25,10 +31,7 @@ interface FullPageEditorContentAreaProps {
|
|
|
25
31
|
disabled: boolean | undefined;
|
|
26
32
|
dispatchAnalyticsEvent: DispatchAnalyticsEvent | undefined;
|
|
27
33
|
editorActions: EditorActions | undefined;
|
|
28
|
-
editorAPI:
|
|
29
|
-
OptionalPlugin<ContextPanelPlugin>,
|
|
30
|
-
BasePlugin
|
|
31
|
-
]> | undefined;
|
|
34
|
+
editorAPI: EditorAPI | undefined;
|
|
32
35
|
editorDOMElement: ReactElement;
|
|
33
36
|
editorView: EditorView;
|
|
34
37
|
eventDispatcher: EventDispatcher | undefined;
|
|
@@ -11,6 +11,11 @@ export type EditorContentContainerProps = {
|
|
|
11
11
|
contentMode?: EditorContentMode;
|
|
12
12
|
featureFlags?: FeatureFlags;
|
|
13
13
|
isScrollable?: boolean;
|
|
14
|
+
/**
|
|
15
|
+
* When true, nodes maintain their standard width without negative margins
|
|
16
|
+
* For when the drag handle is visible and the editor has limited space.
|
|
17
|
+
*/
|
|
18
|
+
useStandardNodeWidth?: boolean;
|
|
14
19
|
viewMode?: 'view' | 'edit';
|
|
15
20
|
};
|
|
16
21
|
/**
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
import type { SerializedStyles } from '@emotion/react';
|
|
2
|
+
/**
|
|
3
|
+
* Base expand styles, always applied.
|
|
4
|
+
*/
|
|
5
|
+
export declare const expandStylesBase: SerializedStyles;
|
|
2
6
|
export declare const expandStyles: SerializedStyles;
|
|
3
7
|
/**
|
|
4
8
|
* This function gets the dynamic styles that scale the expand title font size based on the base font size.
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { SerializedStyles } from '@emotion/react';
|
|
2
|
+
export declare const syncBlockStylesBase: SerializedStyles;
|
|
2
3
|
export declare const syncBlockStyles: SerializedStyles;
|
|
3
4
|
export declare const syncBlockOverflowStyles: SerializedStyles;
|
|
4
5
|
export declare const syncBlockFirstNodeStyles: SerializedStyles;
|
|
@@ -14,6 +14,4 @@ export declare const decisionIconWithVisualRefresh: SerializedStyles;
|
|
|
14
14
|
export declare const decisionIconWithoutVisualRefresh: SerializedStyles;
|
|
15
15
|
export declare const taskItemStyles: SerializedStyles;
|
|
16
16
|
export declare const taskItemCheckboxStyles: SerializedStyles;
|
|
17
|
-
export declare const taskItemCheckboxStylesWithBlockTaskItem: SerializedStyles;
|
|
18
|
-
export declare const taskItemNextCheckboxStyles: SerializedStyles;
|
|
19
17
|
export declare const taskItemStylesWithBlockTaskItem: SerializedStyles;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-core",
|
|
3
|
-
"version": "217.
|
|
3
|
+
"version": "217.9.1",
|
|
4
4
|
"description": "A package contains Atlassian editor core functionality",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -64,9 +64,9 @@
|
|
|
64
64
|
"@atlaskit/mention": "^24.6.0",
|
|
65
65
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
66
66
|
"@atlaskit/platform-feature-flags-react": "^0.4.0",
|
|
67
|
-
"@atlaskit/react-ufo": "^5.
|
|
67
|
+
"@atlaskit/react-ufo": "^5.8.0",
|
|
68
68
|
"@atlaskit/task-decision": "^19.3.0",
|
|
69
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
69
|
+
"@atlaskit/tmp-editor-statsig": "^52.0.0",
|
|
70
70
|
"@atlaskit/tokens": "^11.4.0",
|
|
71
71
|
"@atlaskit/tooltip": "^21.0.0",
|
|
72
72
|
"@atlaskit/width-detector": "^5.0.0",
|