@atlaskit/adf-schema 23.2.1 → 23.3.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 CHANGED
@@ -1,5 +1,15 @@
1
1
  # @atlaskit/adf-schema
2
2
 
3
+ ## 23.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`fecd5f5c96c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fecd5f5c96c) - ED-15067 Added paragraph_with_indentation to block content to allow indented paragraphs inside of layout columns. Prior to this change, it was possible to add indentation but it resulted in an unsupported mark.
8
+
9
+ ### Patch Changes
10
+
11
+ - [`721bc4d7794`](https://bitbucket.org/atlassian/atlassian-frontend/commits/721bc4d7794) - ED-14377 To remove the imports of version.json which is deprecated
12
+
3
13
  ## 23.2.1
4
14
 
5
15
  ### Patch Changes
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/adf-schema",
3
- "version": "23.2.1",
3
+ "version": "23.3.0",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/adf-schema",
3
- "version": "23.2.1",
3
+ "version": "23.3.0",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/adf-schema",
3
- "version": "23.2.1",
3
+ "version": "23.3.0",
4
4
  "sideEffects": false
5
5
  }
@@ -2430,6 +2430,9 @@
2430
2430
  {
2431
2431
  "$ref": "#/definitions/paragraph_with_alignment_node"
2432
2432
  },
2433
+ {
2434
+ "$ref": "#/definitions/paragraph_with_indentation_node"
2435
+ },
2433
2436
  {
2434
2437
  "$ref": "#/definitions/bulletList_node"
2435
2438
  },
@@ -2430,6 +2430,9 @@
2430
2430
  {
2431
2431
  "$ref": "#/definitions/paragraph_with_alignment_node"
2432
2432
  },
2433
+ {
2434
+ "$ref": "#/definitions/paragraph_with_indentation_node"
2435
+ },
2433
2436
  {
2434
2437
  "$ref": "#/definitions/bulletList_node"
2435
2438
  },
@@ -1,7 +1,7 @@
1
1
  import { ExpandDefinition as Expand } from '../expand';
2
2
  import { BodiedExtensionDefinition as BodiedExtension } from '../bodied-extension';
3
3
  import { PanelDefinition as Panel } from '../panel';
4
- import { ParagraphDefinition as Paragraph, ParagraphWithAlignmentDefinition as ParagraphWithMarks } from '../paragraph';
4
+ import { ParagraphDefinition as Paragraph, ParagraphWithMarksDefinition as ParagraphWithMarks } from '../paragraph';
5
5
  import { BlockQuoteDefinition as Blockquote } from '../blockquote';
6
6
  import { OrderedListDefinition as OrderedList } from '../ordered-list';
7
7
  import { BulletListDefinition as BulletList } from '../bullet-list';
@@ -2430,6 +2430,9 @@
2430
2430
  {
2431
2431
  "$ref": "#/definitions/paragraph_with_alignment_node"
2432
2432
  },
2433
+ {
2434
+ "$ref": "#/definitions/paragraph_with_indentation_node"
2435
+ },
2433
2436
  {
2434
2437
  "$ref": "#/definitions/bulletList_node"
2435
2438
  },
@@ -2430,6 +2430,9 @@
2430
2430
  {
2431
2431
  "$ref": "#/definitions/paragraph_with_alignment_node"
2432
2432
  },
2433
+ {
2434
+ "$ref": "#/definitions/paragraph_with_indentation_node"
2435
+ },
2433
2436
  {
2434
2437
  "$ref": "#/definitions/bulletList_node"
2435
2438
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/adf-schema",
3
- "version": "23.2.1",
3
+ "version": "23.3.0",
4
4
  "description": "Shared package that contains the ADF-schema (json) and ProseMirror node/mark specs",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"