Skip to content

Commit 64b527f

Browse files
fix: set width to in-line rather than full-width
1 parent 7971199 commit 64b527f

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -890,7 +890,7 @@ interface Card extends Parent {
890890
/**
891891
* Allowed layout widths for an InfoBox.
892892
*/
893-
type InfoBoxLayoutWidth = Extract<LayoutWidth, "full-width" | "inset-left">
893+
type InfoBoxLayoutWidth = Extract<LayoutWidth, "in-line" | "inset-left">
894894
/**
895895
* An info box describes a subject via a single card
896896
*/

content-tree.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ export declare namespace ContentTree {
339339
/**
340340
* Allowed layout widths for an InfoBox.
341341
*/
342-
type InfoBoxLayoutWidth = Extract<LayoutWidth, "full-width" | "inset-left">;
342+
type InfoBoxLayoutWidth = Extract<LayoutWidth, "in-line" | "inset-left">;
343343
/**
344344
* An info box describes a subject via a single card
345345
*/
@@ -699,7 +699,7 @@ export declare namespace ContentTree {
699699
/**
700700
* Allowed layout widths for an InfoBox.
701701
*/
702-
type InfoBoxLayoutWidth = Extract<LayoutWidth, "full-width" | "inset-left">;
702+
type InfoBoxLayoutWidth = Extract<LayoutWidth, "in-line" | "inset-left">;
703703
/**
704704
* An info box describes a subject via a single card
705705
*/
@@ -1045,7 +1045,7 @@ export declare namespace ContentTree {
10451045
/**
10461046
* Allowed layout widths for an InfoBox.
10471047
*/
1048-
type InfoBoxLayoutWidth = Extract<LayoutWidth, "full-width" | "inset-left">;
1048+
type InfoBoxLayoutWidth = Extract<LayoutWidth, "in-line" | "inset-left">;
10491049
/**
10501050
* An info box describes a subject via a single card
10511051
*/
@@ -1406,7 +1406,7 @@ export declare namespace ContentTree {
14061406
/**
14071407
* Allowed layout widths for an InfoBox.
14081408
*/
1409-
type InfoBoxLayoutWidth = Extract<LayoutWidth, "full-width" | "inset-left">;
1409+
type InfoBoxLayoutWidth = Extract<LayoutWidth, "in-line" | "inset-left">;
14101410
/**
14111411
* An info box describes a subject via a single card
14121412
*/

schemas/body-tree.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@
471471
"ContentTree.transit.InfoBoxLayoutWidth": {
472472
"description": "Allowed layout widths for an InfoBox.",
473473
"enum": [
474-
"full-width",
474+
"in-line",
475475
"inset-left"
476476
],
477477
"type": "string"

schemas/content-tree.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -740,7 +740,7 @@
740740
"ContentTree.full.InfoBoxLayoutWidth": {
741741
"description": "Allowed layout widths for an InfoBox.",
742742
"enum": [
743-
"full-width",
743+
"in-line",
744744
"inset-left"
745745
],
746746
"type": "string"

schemas/transit-tree.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@
496496
"ContentTree.transit.InfoBoxLayoutWidth": {
497497
"description": "Allowed layout widths for an InfoBox.",
498498
"enum": [
499-
"full-width",
499+
"in-line",
500500
"inset-left"
501501
],
502502
"type": "string"

0 commit comments

Comments
 (0)