@financial-times/content-tree 0.12.0 → 0.13.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/SPEC.md
CHANGED
|
@@ -962,7 +962,7 @@ interface InNumbers extends Parent {
|
|
|
962
962
|
```ts
|
|
963
963
|
/** Allowed children for a card
|
|
964
964
|
*/
|
|
965
|
-
type CardChildren = ImageSet |
|
|
965
|
+
type CardChildren = ImageSet | FormattingBlock
|
|
966
966
|
/**
|
|
967
967
|
* A card describes a subject with images and text
|
|
968
968
|
*/
|
package/content-tree.d.ts
CHANGED
|
@@ -407,7 +407,7 @@ export declare namespace ContentTree {
|
|
|
407
407
|
}
|
|
408
408
|
/** Allowed children for a card
|
|
409
409
|
*/
|
|
410
|
-
type CardChildren = ImageSet |
|
|
410
|
+
type CardChildren = ImageSet | FormattingBlock;
|
|
411
411
|
/**
|
|
412
412
|
* A card describes a subject with images and text
|
|
413
413
|
*/
|
|
@@ -895,7 +895,7 @@ export declare namespace ContentTree {
|
|
|
895
895
|
}
|
|
896
896
|
/** Allowed children for a card
|
|
897
897
|
*/
|
|
898
|
-
type CardChildren = ImageSet |
|
|
898
|
+
type CardChildren = ImageSet | FormattingBlock;
|
|
899
899
|
/**
|
|
900
900
|
* A card describes a subject with images and text
|
|
901
901
|
*/
|
|
@@ -1357,7 +1357,7 @@ export declare namespace ContentTree {
|
|
|
1357
1357
|
}
|
|
1358
1358
|
/** Allowed children for a card
|
|
1359
1359
|
*/
|
|
1360
|
-
type CardChildren = ImageSet |
|
|
1360
|
+
type CardChildren = ImageSet | FormattingBlock;
|
|
1361
1361
|
/**
|
|
1362
1362
|
* A card describes a subject with images and text
|
|
1363
1363
|
*/
|
|
@@ -1846,7 +1846,7 @@ export declare namespace ContentTree {
|
|
|
1846
1846
|
}
|
|
1847
1847
|
/** Allowed children for a card
|
|
1848
1848
|
*/
|
|
1849
|
-
type CardChildren = ImageSet |
|
|
1849
|
+
type CardChildren = ImageSet | FormattingBlock;
|
|
1850
1850
|
/**
|
|
1851
1851
|
* A card describes a subject with images and text
|
|
1852
1852
|
*/
|
package/package.json
CHANGED