@atlaskit/adf-utils 19.29.6 → 19.30.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,22 @@
|
|
|
1
1
|
# @atlaskit/adf-utils
|
|
2
2
|
|
|
3
|
+
## 19.30.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`4f2e912c65ae3`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/4f2e912c65ae3) -
|
|
8
|
+
Gate table-in-panel ADF validation behind experiment (EDITOR-7168)
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
|
|
14
|
+
## 19.29.7
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
|
|
3
20
|
## 19.29.6
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -137,6 +137,7 @@ export interface SpecValidatorResult {
|
|
|
137
137
|
export type Err = <T extends ValidationErrorType>(code: T, msg: string, meta?: T extends keyof ValidationErrorMap ? ValidationErrorMap[T] : never) => NodeValidationResult;
|
|
138
138
|
export interface ErrorCallbackOptions {
|
|
139
139
|
allowNestedTables?: boolean;
|
|
140
|
+
allowTableInPanel?: boolean;
|
|
140
141
|
allowUnsupportedBlock?: boolean;
|
|
141
142
|
allowUnsupportedInline?: boolean;
|
|
142
143
|
isMark?: any;
|
|
@@ -140,6 +140,7 @@ export interface SpecValidatorResult {
|
|
|
140
140
|
export type Err = <T extends ValidationErrorType>(code: T, msg: string, meta?: T extends keyof ValidationErrorMap ? ValidationErrorMap[T] : never) => NodeValidationResult;
|
|
141
141
|
export interface ErrorCallbackOptions {
|
|
142
142
|
allowNestedTables?: boolean;
|
|
143
|
+
allowTableInPanel?: boolean;
|
|
143
144
|
allowUnsupportedBlock?: boolean;
|
|
144
145
|
allowUnsupportedInline?: boolean;
|
|
145
146
|
isMark?: any;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/adf-utils",
|
|
3
|
-
"version": "19.
|
|
3
|
+
"version": "19.30.0",
|
|
4
4
|
"description": "Set of utilities to traverse, modify and create ADF documents.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
"team": "Editor: Collaboration"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@atlaskit/adf-schema": "^52.
|
|
29
|
+
"@atlaskit/adf-schema": "^52.12.0",
|
|
30
30
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
31
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
31
|
+
"@atlaskit/tmp-editor-statsig": "^81.2.0",
|
|
32
32
|
"@babel/runtime": "^7.0.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|