@financial-times/content-tree 0.14.0 → 0.15.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
|
@@ -681,7 +681,7 @@ type ClipAccessibility = {
|
|
|
681
681
|
transcript?: Body
|
|
682
682
|
}
|
|
683
683
|
|
|
684
|
-
type ClipSetLayoutWidth = Extract<LayoutWidth, "in-line" | "mid-grid" | "full-grid">
|
|
684
|
+
type ClipSetLayoutWidth = Extract<LayoutWidth, "in-line" | "mid-grid" | "full-grid" | "inset-left" | "inset-right">
|
|
685
685
|
```
|
|
686
686
|
|
|
687
687
|
**ClipSet** represents a short piece of possibly-looping video content for an article.
|
package/content-tree.d.ts
CHANGED
|
@@ -256,7 +256,7 @@ export declare namespace ContentTree {
|
|
|
256
256
|
captions?: ClipCaption[];
|
|
257
257
|
transcript?: Body;
|
|
258
258
|
};
|
|
259
|
-
type ClipSetLayoutWidth = Extract<LayoutWidth, "in-line" | "mid-grid" | "full-grid">;
|
|
259
|
+
type ClipSetLayoutWidth = Extract<LayoutWidth, "in-line" | "mid-grid" | "full-grid" | "inset-left" | "inset-right">;
|
|
260
260
|
interface ScrollyBlock extends Parent {
|
|
261
261
|
type: "scrolly-block";
|
|
262
262
|
theme: "sans" | "serif";
|
|
@@ -750,7 +750,7 @@ export declare namespace ContentTree {
|
|
|
750
750
|
captions?: ClipCaption[];
|
|
751
751
|
transcript?: Body;
|
|
752
752
|
};
|
|
753
|
-
type ClipSetLayoutWidth = Extract<LayoutWidth, "in-line" | "mid-grid" | "full-grid">;
|
|
753
|
+
type ClipSetLayoutWidth = Extract<LayoutWidth, "in-line" | "mid-grid" | "full-grid" | "inset-left" | "inset-right">;
|
|
754
754
|
interface ScrollyBlock extends Parent {
|
|
755
755
|
type: "scrolly-block";
|
|
756
756
|
theme: "sans" | "serif";
|
|
@@ -1228,7 +1228,7 @@ export declare namespace ContentTree {
|
|
|
1228
1228
|
captions?: ClipCaption[];
|
|
1229
1229
|
transcript?: Body;
|
|
1230
1230
|
};
|
|
1231
|
-
type ClipSetLayoutWidth = Extract<LayoutWidth, "in-line" | "mid-grid" | "full-grid">;
|
|
1231
|
+
type ClipSetLayoutWidth = Extract<LayoutWidth, "in-line" | "mid-grid" | "full-grid" | "inset-left" | "inset-right">;
|
|
1232
1232
|
interface ScrollyBlock extends Parent {
|
|
1233
1233
|
type: "scrolly-block";
|
|
1234
1234
|
theme: "sans" | "serif";
|
|
@@ -1713,7 +1713,7 @@ export declare namespace ContentTree {
|
|
|
1713
1713
|
captions?: ClipCaption[];
|
|
1714
1714
|
transcript?: Body;
|
|
1715
1715
|
};
|
|
1716
|
-
type ClipSetLayoutWidth = Extract<LayoutWidth, "in-line" | "mid-grid" | "full-grid">;
|
|
1716
|
+
type ClipSetLayoutWidth = Extract<LayoutWidth, "in-line" | "mid-grid" | "full-grid" | "inset-left" | "inset-right">;
|
|
1717
1717
|
interface ScrollyBlock extends Parent {
|
|
1718
1718
|
type: "scrolly-block";
|
|
1719
1719
|
theme: "sans" | "serif";
|
package/package.json
CHANGED