@atlaskit/adf-utils 19.0.25 → 19.0.27

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.27
4
+
5
+ ### Patch Changes
6
+
7
+ - [#91106](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/91106) [`b6ffa30186b9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b6ffa30186b9) - Bump ADF-schema package to version 35.0.0
8
+
9
+ ## 19.0.26
10
+
11
+ ### Patch Changes
12
+
13
+ - [#86724](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/86724) [`718a9aa2424d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/718a9aa2424d) - [ED-22607] Remove references to maxFrames for multi bodied extensions and bump adf-schema from 35.7.0 to 35.8.0
14
+
3
15
  ## 19.0.25
4
16
 
5
17
  ### Patch Changes
@@ -12,11 +12,6 @@ var _default = exports.default = {
12
12
  },
13
13
  attrs: {
14
14
  props: {
15
- maxFrames: {
16
- type: 'number',
17
- default: 5,
18
- optional: true
19
- },
20
15
  extensionKey: {
21
16
  type: 'string',
22
17
  minLength: 1
@@ -29,6 +29,11 @@ var _default = exports.default = {
29
29
  width: {
30
30
  type: 'number',
31
31
  optional: true
32
+ },
33
+ displayMode: {
34
+ type: 'enum',
35
+ values: ['default', 'fixed'],
36
+ optional: true
32
37
  }
33
38
  },
34
39
  optional: true
@@ -6,11 +6,6 @@ export default {
6
6
  },
7
7
  attrs: {
8
8
  props: {
9
- maxFrames: {
10
- type: 'number',
11
- default: 5,
12
- optional: true
13
- },
14
9
  extensionKey: {
15
10
  type: 'string',
16
11
  minLength: 1
@@ -23,6 +23,11 @@ export default {
23
23
  width: {
24
24
  type: 'number',
25
25
  optional: true
26
+ },
27
+ displayMode: {
28
+ type: 'enum',
29
+ values: ['default', 'fixed'],
30
+ optional: true
26
31
  }
27
32
  },
28
33
  optional: true
@@ -6,11 +6,6 @@ export default {
6
6
  },
7
7
  attrs: {
8
8
  props: {
9
- maxFrames: {
10
- type: 'number',
11
- default: 5,
12
- optional: true
13
- },
14
9
  extensionKey: {
15
10
  type: 'string',
16
11
  minLength: 1
@@ -23,6 +23,11 @@ export default {
23
23
  width: {
24
24
  type: 'number',
25
25
  optional: true
26
+ },
27
+ displayMode: {
28
+ type: 'enum',
29
+ values: ['default', 'fixed'],
30
+ optional: true
26
31
  }
27
32
  },
28
33
  optional: true
@@ -6,11 +6,6 @@ declare const _default: {
6
6
  };
7
7
  attrs: {
8
8
  props: {
9
- maxFrames: {
10
- type: string;
11
- default: number;
12
- optional: boolean;
13
- };
14
9
  extensionKey: {
15
10
  type: string;
16
11
  minLength: number;
@@ -24,6 +24,11 @@ declare const _default: {
24
24
  type: string;
25
25
  optional: boolean;
26
26
  };
27
+ displayMode: {
28
+ type: string;
29
+ values: string[];
30
+ optional: boolean;
31
+ };
27
32
  };
28
33
  optional: boolean;
29
34
  };
@@ -6,11 +6,6 @@ declare const _default: {
6
6
  };
7
7
  attrs: {
8
8
  props: {
9
- maxFrames: {
10
- type: string;
11
- default: number;
12
- optional: boolean;
13
- };
14
9
  extensionKey: {
15
10
  type: string;
16
11
  minLength: number;
@@ -24,6 +24,11 @@ declare const _default: {
24
24
  type: string;
25
25
  optional: boolean;
26
26
  };
27
+ displayMode: {
28
+ type: string;
29
+ values: string[];
30
+ optional: boolean;
31
+ };
27
32
  };
28
33
  optional: boolean;
29
34
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/adf-utils",
3
- "version": "19.0.25",
3
+ "version": "19.0.27",
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.7.0",
44
+ "@atlaskit/adf-schema": "^35.9.0",
45
45
  "@atlaskit/codemod-utils": "^4.2.0",
46
46
  "@atlaskit/platform-feature-flags": "^0.2.0",
47
47
  "@babel/runtime": "^7.0.0"