@financial-times/content-tree 0.17.0 → 0.18.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 +2 -0
- package/content-tree.d.ts +4 -4
- package/package.json +1 -1
- package/schemas/content-tree.schema.json +2 -0
package/SPEC.md
CHANGED
package/content-tree.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare namespace ContentTree {
|
|
2
|
-
type AssetFormat = "desktop" | "mobile" | "square" | "square-ftedit" | "standard" | "wide" | "standard-inline";
|
|
2
|
+
type AssetFormat = "desktop" | "mobile" | "square" | "square-ftedit" | "standard" | "wide" | "standard-inline" | "portrait" | "landscape";
|
|
3
3
|
type LayoutWidth = "auto" | "in-line" | "inset-left" | "inset-right" | "full-bleed" | "full-grid" | "mid-grid" | "full-width";
|
|
4
4
|
type AVSource = {
|
|
5
5
|
binaryUrl: string;
|
|
@@ -494,7 +494,7 @@ export declare namespace ContentTree {
|
|
|
494
494
|
children: CarouselChildren;
|
|
495
495
|
}
|
|
496
496
|
namespace full {
|
|
497
|
-
type AssetFormat = "desktop" | "mobile" | "square" | "square-ftedit" | "standard" | "wide" | "standard-inline";
|
|
497
|
+
type AssetFormat = "desktop" | "mobile" | "square" | "square-ftedit" | "standard" | "wide" | "standard-inline" | "portrait" | "landscape";
|
|
498
498
|
type LayoutWidth = "auto" | "in-line" | "inset-left" | "inset-right" | "full-bleed" | "full-grid" | "mid-grid" | "full-width";
|
|
499
499
|
type AVSource = {
|
|
500
500
|
binaryUrl: string;
|
|
@@ -990,7 +990,7 @@ export declare namespace ContentTree {
|
|
|
990
990
|
}
|
|
991
991
|
}
|
|
992
992
|
namespace transit {
|
|
993
|
-
type AssetFormat = "desktop" | "mobile" | "square" | "square-ftedit" | "standard" | "wide" | "standard-inline";
|
|
993
|
+
type AssetFormat = "desktop" | "mobile" | "square" | "square-ftedit" | "standard" | "wide" | "standard-inline" | "portrait" | "landscape";
|
|
994
994
|
type LayoutWidth = "auto" | "in-line" | "inset-left" | "inset-right" | "full-bleed" | "full-grid" | "mid-grid" | "full-width";
|
|
995
995
|
type AVSource = {
|
|
996
996
|
binaryUrl: string;
|
|
@@ -1459,7 +1459,7 @@ export declare namespace ContentTree {
|
|
|
1459
1459
|
}
|
|
1460
1460
|
}
|
|
1461
1461
|
namespace loose {
|
|
1462
|
-
type AssetFormat = "desktop" | "mobile" | "square" | "square-ftedit" | "standard" | "wide" | "standard-inline";
|
|
1462
|
+
type AssetFormat = "desktop" | "mobile" | "square" | "square-ftedit" | "standard" | "wide" | "standard-inline" | "portrait" | "landscape";
|
|
1463
1463
|
type LayoutWidth = "auto" | "in-line" | "inset-left" | "inset-right" | "full-bleed" | "full-grid" | "mid-grid" | "full-width";
|
|
1464
1464
|
type AVSource = {
|
|
1465
1465
|
binaryUrl: string;
|
package/package.json
CHANGED