@atlaskit/adf-schema 25.10.0 → 25.10.1
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/block-card.js +2 -2
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/schema/nodes/block-card.js +2 -2
- package/dist/es2019/version.json +1 -1
- package/dist/esm/schema/nodes/block-card.js +2 -2
- package/dist/esm/version.json +1 -1
- package/dist/json-schema/v1/stage-0.json +22 -22
- package/dist/types/schema/nodes/block-card.d.ts +1 -1
- package/dist/types-ts4.5/schema/nodes/block-card.d.ts +1 -1
- package/json-schema/v1/stage-0.json +22 -22
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/cjs/version.json
CHANGED
package/dist/es2019/version.json
CHANGED
package/dist/esm/version.json
CHANGED
@@ -725,28 +725,6 @@
|
|
725
725
|
},
|
726
726
|
"attrs": {
|
727
727
|
"anyOf": [
|
728
|
-
{
|
729
|
-
"type": "object",
|
730
|
-
"properties": {
|
731
|
-
"url": {
|
732
|
-
"type": "string"
|
733
|
-
}
|
734
|
-
},
|
735
|
-
"required": [
|
736
|
-
"url"
|
737
|
-
],
|
738
|
-
"additionalProperties": false
|
739
|
-
},
|
740
|
-
{
|
741
|
-
"type": "object",
|
742
|
-
"properties": {
|
743
|
-
"data": {}
|
744
|
-
},
|
745
|
-
"required": [
|
746
|
-
"data"
|
747
|
-
],
|
748
|
-
"additionalProperties": false
|
749
|
-
},
|
750
728
|
{
|
751
729
|
"type": "object",
|
752
730
|
"properties": {
|
@@ -804,6 +782,28 @@
|
|
804
782
|
"required": [
|
805
783
|
"datasource"
|
806
784
|
]
|
785
|
+
},
|
786
|
+
{
|
787
|
+
"type": "object",
|
788
|
+
"properties": {
|
789
|
+
"url": {
|
790
|
+
"type": "string"
|
791
|
+
}
|
792
|
+
},
|
793
|
+
"required": [
|
794
|
+
"url"
|
795
|
+
],
|
796
|
+
"additionalProperties": false
|
797
|
+
},
|
798
|
+
{
|
799
|
+
"type": "object",
|
800
|
+
"properties": {
|
801
|
+
"data": {}
|
802
|
+
},
|
803
|
+
"required": [
|
804
|
+
"data"
|
805
|
+
],
|
806
|
+
"additionalProperties": false
|
807
807
|
}
|
808
808
|
]
|
809
809
|
}
|
@@ -39,6 +39,6 @@ export type CardAttributes = UrlType | DataType;
|
|
39
39
|
*/
|
40
40
|
export interface BlockCardDefinition {
|
41
41
|
type: 'blockCard';
|
42
|
-
attrs:
|
42
|
+
attrs: DatasourceAttributes | CardAttributes;
|
43
43
|
}
|
44
44
|
export declare const blockCard: NodeSpec;
|
@@ -39,6 +39,6 @@ export type CardAttributes = UrlType | DataType;
|
|
39
39
|
*/
|
40
40
|
export interface BlockCardDefinition {
|
41
41
|
type: 'blockCard';
|
42
|
-
attrs:
|
42
|
+
attrs: DatasourceAttributes | CardAttributes;
|
43
43
|
}
|
44
44
|
export declare const blockCard: NodeSpec;
|
@@ -725,28 +725,6 @@
|
|
725
725
|
},
|
726
726
|
"attrs": {
|
727
727
|
"anyOf": [
|
728
|
-
{
|
729
|
-
"type": "object",
|
730
|
-
"properties": {
|
731
|
-
"url": {
|
732
|
-
"type": "string"
|
733
|
-
}
|
734
|
-
},
|
735
|
-
"required": [
|
736
|
-
"url"
|
737
|
-
],
|
738
|
-
"additionalProperties": false
|
739
|
-
},
|
740
|
-
{
|
741
|
-
"type": "object",
|
742
|
-
"properties": {
|
743
|
-
"data": {}
|
744
|
-
},
|
745
|
-
"required": [
|
746
|
-
"data"
|
747
|
-
],
|
748
|
-
"additionalProperties": false
|
749
|
-
},
|
750
728
|
{
|
751
729
|
"type": "object",
|
752
730
|
"properties": {
|
@@ -804,6 +782,28 @@
|
|
804
782
|
"required": [
|
805
783
|
"datasource"
|
806
784
|
]
|
785
|
+
},
|
786
|
+
{
|
787
|
+
"type": "object",
|
788
|
+
"properties": {
|
789
|
+
"url": {
|
790
|
+
"type": "string"
|
791
|
+
}
|
792
|
+
},
|
793
|
+
"required": [
|
794
|
+
"url"
|
795
|
+
],
|
796
|
+
"additionalProperties": false
|
797
|
+
},
|
798
|
+
{
|
799
|
+
"type": "object",
|
800
|
+
"properties": {
|
801
|
+
"data": {}
|
802
|
+
},
|
803
|
+
"required": [
|
804
|
+
"data"
|
805
|
+
],
|
806
|
+
"additionalProperties": false
|
807
807
|
}
|
808
808
|
]
|
809
809
|
}
|
package/package.json
CHANGED