You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -9689,9 +9689,8 @@ var require_yaml_intelligence_resources = __commonJS({
9689
9689
description: "The navbar title. Uses the project title if none is specified."
9690
9690
},
9691
9691
logo: {
9692
-
path: {
9693
-
description: "Path to a logo image that will be displayed to the left of the title."
9694
-
}
9692
+
ref: "logo-light-dark-specifier",
9693
+
description: "Specification of image that will be displayed to the left of the title."
9695
9694
},
9696
9695
"logo-alt": {
9697
9696
string: {
@@ -9815,9 +9814,8 @@ var require_yaml_intelligence_resources = __commonJS({
9815
9814
description: "The sidebar title. Uses the project title if none is specified."
9816
9815
},
9817
9816
logo: {
9818
-
path: {
9819
-
description: "Path to a logo image that will be displayed in the sidebar."
9820
-
}
9817
+
ref: "logo-light-dark-specifier",
9818
+
description: "Specification of image that will be displayed in the sidebar."
9821
9819
},
9822
9820
"logo-alt": {
9823
9821
string: {
@@ -12007,6 +12005,85 @@ var require_yaml_intelligence_resources = __commonJS({
12007
12005
"large"
12008
12006
]
12009
12007
},
12008
+
{
12009
+
id: "logo-options",
12010
+
object: {
12011
+
closed: false,
12012
+
properties: {
12013
+
path: {
12014
+
schema: "path",
12015
+
description: "Path or brand.yml logo resource name.\n"
12016
+
},
12017
+
alt: {
12018
+
schema: "string",
12019
+
description: "Alternative text for the logo, used for accessibility.\n"
12020
+
}
12021
+
},
12022
+
required: [
12023
+
"path"
12024
+
]
12025
+
}
12026
+
},
12027
+
{
12028
+
id: "logo-specifier",
12029
+
anyOf: [
12030
+
"string",
12031
+
{
12032
+
schema: {
12033
+
ref: "logo-options"
12034
+
}
12035
+
}
12036
+
]
12037
+
},
12038
+
{
12039
+
id: "logo-light-dark-specifier",
12040
+
description: "Any of the ways a logo can be specified: string, object, or light/dark object of string or object\n",
12041
+
anyOf: [
12042
+
{
12043
+
ref: "logo-specifier"
12044
+
},
12045
+
{
12046
+
object: {
12047
+
closed: true,
12048
+
properties: {
12049
+
light: {
12050
+
schema: {
12051
+
ref: "logo-specifier"
12052
+
},
12053
+
description: "Specification of a light logo\n"
12054
+
},
12055
+
dark: {
12056
+
schema: {
12057
+
ref: "logo-specifier"
12058
+
},
12059
+
description: "Specification of a dark logo\n"
12060
+
}
12061
+
}
12062
+
}
12063
+
}
12064
+
]
12065
+
},
12066
+
{
12067
+
id: "normalized-logo-light-dark-specifier",
12068
+
description: "Any of the ways a logo can be specified: string, object, or light/dark object of string or object\n",
12069
+
object: {
12070
+
closed: true,
12071
+
properties: {
12072
+
light: {
12073
+
schema: {
12074
+
ref: "logo-options"
12075
+
},
12076
+
description: "Options for a light logo\n"
12077
+
},
12078
+
dark: {
12079
+
schema: {
12080
+
ref: "logo-options"
12081
+
},
12082
+
description: "Options for a dark logo\n"
12083
+
}
12084
+
}
12085
+
}
12086
+
},
12010
12087
{
12011
12088
id: "brand-color-value",
12012
12089
schema: "string"
@@ -12881,7 +12958,7 @@ var require_yaml_intelligence_resources = __commonJS({
12881
12958
ref: "brand-meta"
12882
12959
},
12883
12960
logo: {
12884
-
ref: "brand-logo-unified"
12961
+
ref: "brand-logo-single"
12885
12962
},
12886
12963
color: {
12887
12964
ref: "brand-color-single"
@@ -13980,8 +14057,10 @@ var require_yaml_intelligence_resources = __commonJS({
13980
14057
"dashboard"
13981
14058
]
13982
14059
},
13983
-
schema: "path",
13984
-
description: "Logo image (placed on the left side of the navigation bar)"
14060
+
schema: {
14061
+
ref: "logo-light-dark-specifier"
14062
+
},
14063
+
description: "Logo image(s) (placed on the left side of the navigation bar)"
13985
14064
},
13986
14065
{
13987
14066
name: "orientation",
@@ -24527,7 +24606,15 @@ var require_yaml_intelligence_resources = __commonJS({
24527
24606
"Disambiguating year suffix in author-date styles (e.g. \u201Ca\u201D in \u201CDoe,\n1999a\u201D).",
24528
24607
"Manuscript configuration",
24529
24608
"internal-schema-hack",
24530
-
"List execution engines you want to give priority when determining\nwhich engine should render a notebook. If two engines have support for a\nnotebook, the one listed earlier will be chosen. Quarto\u2019s default order\nis \u2018knitr\u2019, \u2018jupyter\u2019, \u2018markdown\u2019, \u2018julia\u2019."
24609
+
"List execution engines you want to give priority when determining\nwhich engine should render a notebook. If two engines have support for a\nnotebook, the one listed earlier will be chosen. Quarto\u2019s default order\nis \u2018knitr\u2019, \u2018jupyter\u2019, \u2018markdown\u2019, \u2018julia\u2019.",
24610
+
"Path or brand.yml logo resource name.",
24611
+
"Alternative text for the logo, used for accessibility.",
24612
+
"Any of the ways a logo can be specified: string, object, or\nlight/dark object of string or object",
24613
+
"Specification of a light logo",
24614
+
"Specification of a dark logo",
24615
+
"Any of the ways a logo can be specified: string, object, or\nlight/dark object of string or object",
24616
+
"Options for a light logo",
24617
+
"Options for a dark logo"
24531
24618
],
24532
24619
"schema/external-schemas.yml": [
24533
24620
{
@@ -24756,12 +24843,12 @@ var require_yaml_intelligence_resources = __commonJS({
24756
24843
mermaid: "%%"
24757
24844
},
24758
24845
"handlers/mermaid/schema.yml": {
24759
-
_internalId: 197308,
24846
+
_internalId: 197364,
24760
24847
type: "object",
24761
24848
description: "be an object",
24762
24849
properties: {
24763
24850
"mermaid-format": {
24764
-
_internalId: 197300,
24851
+
_internalId: 197356,
24765
24852
type: "enum",
24766
24853
enum: [
24767
24854
"png",
@@ -24777,7 +24864,7 @@ var require_yaml_intelligence_resources = __commonJS({
0 commit comments