@atlaskit/adf-utils 19.0.26 → 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,11 @@
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
+
3
9
  ## 19.0.26
4
10
 
5
11
  ### Patch Changes
@@ -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
@@ -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
@@ -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
@@ -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
  };
@@ -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.26",
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.8.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"