@atlaskit/adf-utils 19.0.14 → 19.0.16

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,17 @@
1
1
  # @atlaskit/adf-utils
2
2
 
3
+ ## 19.0.16
4
+
5
+ ### Patch Changes
6
+
7
+ - [#58246](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58246) [`a381b2599716`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a381b2599716) - ED-21371 Update adf-schema to 35.1.0
8
+
9
+ ## 19.0.15
10
+
11
+ ### Patch Changes
12
+
13
+ - [#59147](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59147) [`f12e489f23b0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f12e489f23b0) - Re-build and deploy packages to NPM to resolve React/Compiled not found error (HOT-106483).
14
+
3
15
  ## 19.0.14
4
16
 
5
17
  ### Patch Changes
@@ -0,0 +1,25 @@
1
+ {
2
+ "extends": "../../../../tsconfig.entry-points.confluence.json",
3
+ "compilerOptions": {
4
+ "declaration": true,
5
+ "target": "es5",
6
+ "composite": true,
7
+ "outDir": "../dist",
8
+ "rootDir": "../",
9
+ "baseUrl": "../"
10
+ },
11
+ "include": [
12
+ "../src/**/*.ts",
13
+ "../src/**/*.tsx"
14
+ ],
15
+ "exclude": [
16
+ "../src/**/__tests__/*",
17
+ "../src/**/*.test.*",
18
+ "../src/**/test.*"
19
+ ],
20
+ "references": [
21
+ {
22
+ "path": "../../../monorepo-tooling/codemod-utils/afm-cc/tsconfig.json"
23
+ }
24
+ ]
25
+ }
@@ -12,7 +12,7 @@ var _default = exports.default = {
12
12
  },
13
13
  content: {
14
14
  type: 'array',
15
- items: ['paragraph_with_no_marks'],
15
+ items: [['paragraph_with_no_marks', 'bulletList', 'orderedList']],
16
16
  minItems: 1,
17
17
  allowUnsupportedBlock: true
18
18
  }
@@ -6,7 +6,7 @@ export default {
6
6
  },
7
7
  content: {
8
8
  type: 'array',
9
- items: ['paragraph_with_no_marks'],
9
+ items: [['paragraph_with_no_marks', 'bulletList', 'orderedList']],
10
10
  minItems: 1,
11
11
  allowUnsupportedBlock: true
12
12
  }
@@ -6,7 +6,7 @@ export default {
6
6
  },
7
7
  content: {
8
8
  type: 'array',
9
- items: ['paragraph_with_no_marks'],
9
+ items: [['paragraph_with_no_marks', 'bulletList', 'orderedList']],
10
10
  minItems: 1,
11
11
  allowUnsupportedBlock: true
12
12
  }
@@ -6,7 +6,7 @@ declare const _default: {
6
6
  };
7
7
  content: {
8
8
  type: string;
9
- items: string[];
9
+ items: string[][];
10
10
  minItems: number;
11
11
  allowUnsupportedBlock: boolean;
12
12
  };
@@ -6,7 +6,7 @@ declare const _default: {
6
6
  };
7
7
  content: {
8
8
  type: string;
9
- items: string[];
9
+ items: string[][];
10
10
  minItems: number;
11
11
  allowUnsupportedBlock: boolean;
12
12
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/adf-utils",
3
- "version": "19.0.14",
3
+ "version": "19.0.16",
4
4
  "description": "Set of utilities to traverse, modify and create ADF documents.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -41,7 +41,7 @@
41
41
  "generate:spec": "rm -rf ./src/validator/specs/ && yarn json-schema-generator --outDir=./src/validator/specs/ --mode=Spec --stage=0 ./src/validator/entry.ts"
42
42
  },
43
43
  "dependencies": {
44
- "@atlaskit/adf-schema": "^35.0.0",
44
+ "@atlaskit/adf-schema": "^35.1.0",
45
45
  "@atlaskit/codemod-utils": "^4.2.0",
46
46
  "@babel/runtime": "^7.0.0"
47
47
  },