@atlaskit/adf-schema
Advanced tools
Comparing version 4.0.0 to 4.1.0
# @atlaskit/adf-schema | ||
## 4.1.0 | ||
### Minor Changes | ||
- [minor][65ada7f318](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/65ada7f318): | ||
**FABDODGEM-12 Editor Cashmere Release** | ||
- [Internal post](https://go.atlassian.com/cashmere-release) | ||
**Affected editor components:** | ||
tables, media, mobile, text color, emoji, copy/paste, analytics | ||
**Performance** | ||
- Async import for code blocks and task items on renderer | ||
- https://product-fabric.atlassian.net/browse/ED-7155 | ||
**Table** | ||
- Add support to sort tables that contains smart links | ||
- https://product-fabric.atlassian.net/browse/ED-7449 | ||
- Scale table when changing to full width mode | ||
- https://product-fabric.atlassian.net/browse/ED-7724 | ||
**Text color** | ||
- Update text color toolbar with right color when text is inside a list, panel, etc. | ||
- https://product-fabric.atlassian.net/browse/FM-1752 | ||
**Mobile** - Implement undo/redo interface on Hybrid Editor - https://product-fabric.atlassian.net/browse/FM-2393 | ||
**Copy and Paste** | ||
- Support copy & paste when missing context-id attr | ||
- https://product-fabric.atlassian.net/browse/MS-2344 | ||
- Right click + copy image fails the second time that is pasted | ||
- https://product-fabric.atlassian.net/browse/MS-2324 | ||
- Copying a never touched image for the first time from editor fails to paste | ||
- https://product-fabric.atlassian.net/browse/MS-2338 | ||
- Implement analytics when a file is copied | ||
- https://product-fabric.atlassian.net/browse/MS-2036 | ||
**Media** | ||
- Add analytics events and error reporting [NEW BIG FEATURE] | ||
- https://product-fabric.atlassian.net/browse/MS-2275 | ||
- https://product-fabric.atlassian.net/browse/MS-2329 | ||
- https://product-fabric.atlassian.net/browse/MS-2330 | ||
- https://product-fabric.atlassian.net/browse/MS-2331 | ||
- https://product-fabric.atlassian.net/browse/MS-2332 | ||
- https://product-fabric.atlassian.net/browse/MS-2390 | ||
- Fixed issue where we can’t insert same file from MediaPicker twice | ||
- https://product-fabric.atlassian.net/browse/MS-2080 | ||
- Disable upload of external files to media | ||
- https://product-fabric.atlassian.net/browse/MS-2372 | ||
**Notable Bug Fixes** | ||
- Implement consistent behaviour for rule and mediaSingle on insertion | ||
- Feature Flag: | ||
- allowNewInsertionBehaviour - [default: true] | ||
- https://product-fabric.atlassian.net/browse/ED-7503 | ||
- Fixed bug where we were showing table controls on mobile. | ||
- https://product-fabric.atlassian.net/browse/ED-7690 | ||
- Fixed bug where editor crashes after unmounting react component. | ||
- https://product-fabric.atlassian.net/browse/ED-7318 | ||
- Fixed bug where custom emojis are not been showed on the editor | ||
- https://product-fabric.atlassian.net/browse/ED-7726 | ||
- [minor][79c69ed5cd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/79c69ed5cd): | ||
ED-7449 Implement sorting inline cards inside tables base on resolved title | ||
### Patch Changes | ||
- [patch][1715ad2bd5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1715ad2bd5): | ||
ED-7731: add support for GraphQL syntax highlighting | ||
## 4.0.0 | ||
@@ -4,0 +85,0 @@ |
@@ -36,5 +36,5 @@ export { confluenceJiraIssue } from './confluence-jira-issue'; | ||
export { inlineCard, InlineCardDefinition } from './inline-card'; | ||
export { blockCard, CardAttributes, BlockCardDefinition } from './block-card'; | ||
export { blockCard, UrlType, DataType, CardAttributes, BlockCardDefinition, } from './block-card'; | ||
export { unsupportedBlock } from './unsupported-block'; | ||
export { unsupportedInline } from './unsupported-inline'; | ||
export { status, StatusDefinition } from './status'; |
@@ -28,2 +28,3 @@ "use strict"; | ||
{ name: 'Go', alias: ['go'] }, | ||
{ name: 'GraphQL', alias: ['graphql'] }, | ||
{ name: 'Groovy', alias: ['groovy'] }, | ||
@@ -30,0 +31,0 @@ { name: 'Haskell', alias: ['haskell', 'hs'] }, |
{ | ||
"name": "@atlaskit/adf-schema", | ||
"version": "4.0.0", | ||
"version": "4.1.0", | ||
"sideEffects": false | ||
} |
@@ -36,5 +36,5 @@ export { confluenceJiraIssue } from './confluence-jira-issue'; | ||
export { inlineCard, InlineCardDefinition } from './inline-card'; | ||
export { blockCard, CardAttributes, BlockCardDefinition } from './block-card'; | ||
export { blockCard, UrlType, DataType, CardAttributes, BlockCardDefinition, } from './block-card'; | ||
export { unsupportedBlock } from './unsupported-block'; | ||
export { unsupportedInline } from './unsupported-inline'; | ||
export { status, StatusDefinition } from './status'; |
@@ -36,3 +36,3 @@ export { confluenceJiraIssue } from './confluence-jira-issue'; | ||
export { inlineCard } from './inline-card'; | ||
export { blockCard } from './block-card'; | ||
export { blockCard, } from './block-card'; | ||
export { unsupportedBlock } from './unsupported-block'; | ||
@@ -39,0 +39,0 @@ export { unsupportedInline } from './unsupported-inline'; |
@@ -26,2 +26,3 @@ // We expect alias[0] to be used for the ADF attribute, see ED-2813 | ||
{ name: 'Go', alias: ['go'] }, | ||
{ name: 'GraphQL', alias: ['graphql'] }, | ||
{ name: 'Groovy', alias: ['groovy'] }, | ||
@@ -28,0 +29,0 @@ { name: 'Haskell', alias: ['haskell', 'hs'] }, |
{ | ||
"name": "@atlaskit/adf-schema", | ||
"version": "4.0.0", | ||
"version": "4.1.0", | ||
"sideEffects": false | ||
} |
{ | ||
"name": "@atlaskit/adf-schema", | ||
"version": "4.0.0", | ||
"version": "4.1.0", | ||
"description": "Shared package that contains the ADF-schema (json) and ProseMirror node/mark specs", | ||
@@ -42,3 +42,3 @@ "license": "Apache-2.0", | ||
"@atlaskit/editor-json-transformer": "^6.3.3", | ||
"@atlaskit/editor-test-helpers": "^10.0.0", | ||
"@atlaskit/editor-test-helpers": "^10.1.0", | ||
"@atlaskit/json-schema-generator": "^2.1.4", | ||
@@ -45,0 +45,0 @@ "ajv": "^4.11.3", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
685167
17369