Skip to content

Commit 39d6b3e

Browse files
artifacts
1 parent 7d61969 commit 39d6b3e

File tree

6 files changed

+416
-55
lines changed

6 files changed

+416
-55
lines changed

src/resources/editor/tools/vs-code.mjs

Lines changed: 100 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9689,9 +9689,8 @@ var require_yaml_intelligence_resources = __commonJS({
96899689
description: "The navbar title. Uses the project title if none is specified."
96909690
},
96919691
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."
96959694
},
96969695
"logo-alt": {
96979696
string: {
@@ -9815,9 +9814,8 @@ var require_yaml_intelligence_resources = __commonJS({
98159814
description: "The sidebar title. Uses the project title if none is specified."
98169815
},
98179816
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."
98219819
},
98229820
"logo-alt": {
98239821
string: {
@@ -12007,6 +12005,85 @@ var require_yaml_intelligence_resources = __commonJS({
1200712005
"large"
1200812006
]
1200912007
},
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+
},
1201012087
{
1201112088
id: "brand-color-value",
1201212089
schema: "string"
@@ -12881,7 +12958,7 @@ var require_yaml_intelligence_resources = __commonJS({
1288112958
ref: "brand-meta"
1288212959
},
1288312960
logo: {
12884-
ref: "brand-logo-unified"
12961+
ref: "brand-logo-single"
1288512962
},
1288612963
color: {
1288712964
ref: "brand-color-single"
@@ -13980,8 +14057,10 @@ var require_yaml_intelligence_resources = __commonJS({
1398014057
"dashboard"
1398114058
]
1398214059
},
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)"
1398514064
},
1398614065
{
1398714066
name: "orientation",
@@ -24527,7 +24606,15 @@ var require_yaml_intelligence_resources = __commonJS({
2452724606
"Disambiguating year suffix in author-date styles (e.g. \u201Ca\u201D in \u201CDoe,\n1999a\u201D).",
2452824607
"Manuscript configuration",
2452924608
"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"
2453124618
],
2453224619
"schema/external-schemas.yml": [
2453324620
{
@@ -24756,12 +24843,12 @@ var require_yaml_intelligence_resources = __commonJS({
2475624843
mermaid: "%%"
2475724844
},
2475824845
"handlers/mermaid/schema.yml": {
24759-
_internalId: 197308,
24846+
_internalId: 197364,
2476024847
type: "object",
2476124848
description: "be an object",
2476224849
properties: {
2476324850
"mermaid-format": {
24764-
_internalId: 197300,
24851+
_internalId: 197356,
2476524852
type: "enum",
2476624853
enum: [
2476724854
"png",
@@ -24777,7 +24864,7 @@ var require_yaml_intelligence_resources = __commonJS({
2477724864
exhaustiveCompletions: true
2477824865
},
2477924866
theme: {
24780-
_internalId: 197307,
24867+
_internalId: 197363,
2478124868
type: "anyOf",
2478224869
anyOf: [
2478324870
{

src/resources/editor/tools/yaml/web-worker.js

Lines changed: 100 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)