@atlaskit/adf-schema 35.5.2 → 35.6.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,10 +1,15 @@
|
|
1
1
|
import { NodeSpec } from '@atlaskit/editor-prosemirror/model';
|
2
2
|
import { CardAttributes } from './block-card';
|
3
|
+
import { AnnotationMarkDefinition } from '../marks/annotation';
|
3
4
|
/**
|
4
5
|
* @name inlineCard_node
|
5
6
|
*/
|
6
7
|
export interface InlineCardDefinition {
|
7
8
|
type: 'inlineCard';
|
8
9
|
attrs: CardAttributes;
|
10
|
+
/**
|
11
|
+
* @stage 0
|
12
|
+
*/
|
13
|
+
marks?: Array<AnnotationMarkDefinition>;
|
9
14
|
}
|
10
15
|
export declare const inlineCard: NodeSpec;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@atlaskit/adf-schema",
|
3
|
-
"version": "35.
|
3
|
+
"version": "35.6.0",
|
4
4
|
"description": "Shared package that contains the ADF-schema (json) and ProseMirror node/mark specs",
|
5
5
|
"publishConfig": {
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
@@ -41,7 +41,7 @@
|
|
41
41
|
"memoize-one": "^6.0.0"
|
42
42
|
},
|
43
43
|
"devDependencies": {
|
44
|
-
"@atlassian/adf-schema-json": "^1.
|
44
|
+
"@atlassian/adf-schema-json": "^1.6.0",
|
45
45
|
"@babel/cli": "^7.22.9",
|
46
46
|
"@babel/core": "^7.22.9",
|
47
47
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|