@atlaskit/adf-utils 19.0.26 → 19.0.28
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 +12 -0
- package/dist/cjs/validator/specs/table.js +6 -1
- package/dist/es2019/validator/specs/table.js +6 -1
- package/dist/esm/validator/specs/table.js +6 -1
- package/dist/types/validator/specs/table.d.ts +5 -0
- package/dist/types-ts4.5/validator/specs/table.d.ts +5 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaskit/adf-utils
|
|
2
2
|
|
|
3
|
+
## 19.0.28
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#92426](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/92426) [`32c76c7c225c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/32c76c7c225c) - Bump adf-schema to 35.9.2 to support table alignment options
|
|
8
|
+
|
|
9
|
+
## 19.0.27
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#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
|
|
14
|
+
|
|
3
15
|
## 19.0.26
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -18,7 +18,7 @@ var _default = exports.default = {
|
|
|
18
18
|
},
|
|
19
19
|
layout: {
|
|
20
20
|
type: 'enum',
|
|
21
|
-
values: ['wide', 'full-width', 'default'],
|
|
21
|
+
values: ['wide', 'full-width', 'center', 'align-end', 'align-start', 'default'],
|
|
22
22
|
optional: true
|
|
23
23
|
},
|
|
24
24
|
localId: {
|
|
@@ -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
|
|
@@ -12,7 +12,7 @@ export default {
|
|
|
12
12
|
},
|
|
13
13
|
layout: {
|
|
14
14
|
type: 'enum',
|
|
15
|
-
values: ['wide', 'full-width', 'default'],
|
|
15
|
+
values: ['wide', 'full-width', 'center', 'align-end', 'align-start', 'default'],
|
|
16
16
|
optional: true
|
|
17
17
|
},
|
|
18
18
|
localId: {
|
|
@@ -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
|
|
@@ -12,7 +12,7 @@ export default {
|
|
|
12
12
|
},
|
|
13
13
|
layout: {
|
|
14
14
|
type: 'enum',
|
|
15
|
-
values: ['wide', 'full-width', 'default'],
|
|
15
|
+
values: ['wide', 'full-width', 'center', 'align-end', 'align-start', 'default'],
|
|
16
16
|
optional: true
|
|
17
17
|
},
|
|
18
18
|
localId: {
|
|
@@ -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
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/adf-utils",
|
|
3
|
-
"version": "19.0.
|
|
3
|
+
"version": "19.0.28",
|
|
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.
|
|
44
|
+
"@atlaskit/adf-schema": "^35.9.2",
|
|
45
45
|
"@atlaskit/codemod-utils": "^4.2.0",
|
|
46
46
|
"@atlaskit/platform-feature-flags": "^0.2.0",
|
|
47
47
|
"@babel/runtime": "^7.0.0"
|