@atlaskit/adf-schema 35.7.0 → 35.8.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 +6 -0
- package/dist/cjs/schema/nodes/multi-bodied-extension.js +0 -3
- package/dist/es2019/schema/nodes/multi-bodied-extension.js +0 -3
- package/dist/esm/schema/nodes/multi-bodied-extension.js +0 -3
- package/dist/json-schema/v1/stage-0.json +2 -6
- package/dist/types/schema/nodes/multi-bodied-extension.d.ts +2 -2
- package/dist/types/schema/nodes/types/extensions.d.ts +0 -6
- package/json-schema/v1/stage-0.json +2 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -2943,10 +2943,6 @@
|
|
2943
2943
|
"attrs": {
|
2944
2944
|
"type": "object",
|
2945
2945
|
"properties": {
|
2946
|
-
"maxFrames": {
|
2947
|
-
"type": "number",
|
2948
|
-
"default": 5
|
2949
|
-
},
|
2950
2946
|
"extensionKey": {
|
2951
2947
|
"type": "string",
|
2952
2948
|
"minLength": 1
|
@@ -2971,11 +2967,11 @@
|
|
2971
2967
|
"minLength": 1
|
2972
2968
|
}
|
2973
2969
|
},
|
2974
|
-
"additionalProperties": false,
|
2975
2970
|
"required": [
|
2976
2971
|
"extensionKey",
|
2977
2972
|
"extensionType"
|
2978
|
-
]
|
2973
|
+
],
|
2974
|
+
"additionalProperties": false
|
2979
2975
|
},
|
2980
2976
|
"marks": {
|
2981
2977
|
"type": "array"
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { NodeSpec } from '@atlaskit/editor-prosemirror/model';
|
2
|
-
import {
|
2
|
+
import { ExtensionAttributes } from './types/extensions';
|
3
3
|
import { BodiedExtensionDefinition as BodiedExtension } from './bodied-extension';
|
4
4
|
import { PanelDefinition as Panel } from './panel';
|
5
5
|
import { ParagraphDefinition as Paragraph } from './paragraph';
|
@@ -42,7 +42,7 @@ export declare const extensionFrame: NodeSpec;
|
|
42
42
|
*/
|
43
43
|
export interface MultiBodiedExtensionDefinition {
|
44
44
|
type: 'multiBodiedExtension';
|
45
|
-
attrs:
|
45
|
+
attrs: ExtensionAttributes;
|
46
46
|
marks?: Array<any>;
|
47
47
|
/**
|
48
48
|
* @minLength 1
|
@@ -2943,10 +2943,6 @@
|
|
2943
2943
|
"attrs": {
|
2944
2944
|
"type": "object",
|
2945
2945
|
"properties": {
|
2946
|
-
"maxFrames": {
|
2947
|
-
"type": "number",
|
2948
|
-
"default": 5
|
2949
|
-
},
|
2950
2946
|
"extensionKey": {
|
2951
2947
|
"type": "string",
|
2952
2948
|
"minLength": 1
|
@@ -2971,11 +2967,11 @@
|
|
2971
2967
|
"minLength": 1
|
2972
2968
|
}
|
2973
2969
|
},
|
2974
|
-
"additionalProperties": false,
|
2975
2970
|
"required": [
|
2976
2971
|
"extensionKey",
|
2977
2972
|
"extensionType"
|
2978
|
-
]
|
2973
|
+
],
|
2974
|
+
"additionalProperties": false
|
2979
2975
|
},
|
2980
2976
|
"marks": {
|
2981
2977
|
"type": "array"
|
package/package.json
CHANGED