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
Copy file name to clipboardexpand all lines: news/changelog-1.5.md
+1
Original file line number
Diff line number
Diff line change
@@ -52,6 +52,7 @@ All changes included in 1.5:
52
52
- ([#8177](https://github.com/quarto-dev/quarto-cli/issues/8177)): Use an explicit path to `sysctl` when detecting MacOS architecture. (author: @kevinushey)
53
53
- ([#8274](https://github.com/quarto-dev/quarto-cli/issues/8274)): set `LUA_CPATH` to '' if unset, avoiding accidentally loading incompatible system-wide libraries.
54
54
- ([#8438](https://github.com/quarto-dev/quarto-cli/issues/8438)): Ensure that sub commands properly support logging control flags (e.g. `--quiet`, etc).
55
+
- ([#8422](https://github.com/quarto-dev/quarto-cli/issues/8422)): Improve dashboard validation and sauto-completion support for external tools
55
56
56
57
- Add support for `{{< lipsum >}}` shortcode, which is useful for emitting placeholder text. Specify a specific number of paragraphs (`{{< lipsum 3 >}}`).
57
58
- Increase v8's max heap size by default, to avoid out-of-memory errors when rendering large documents (also cf. https://github.com/denoland/deno/issues/18935).
Copy file name to clipboardexpand all lines: src/resources/editor/tools/vs-code.mjs
+85-8
Original file line number
Diff line number
Diff line change
@@ -7266,6 +7266,52 @@ var require_yaml_intelligence_resources = __commonJS({
7266
7266
description: {
7267
7267
short: "Context to execute cell within."
7268
7268
}
7269
+
},
7270
+
{
7271
+
name: "content",
7272
+
tags: {
7273
+
formats: [
7274
+
"dashboard"
7275
+
]
7276
+
},
7277
+
schema: {
7278
+
enum: [
7279
+
"valuebox",
7280
+
"sidebar",
7281
+
"toolbar"
7282
+
]
7283
+
},
7284
+
description: {
7285
+
short: "The type of dashboard element being produced by this code cell."
7286
+
}
7287
+
},
7288
+
{
7289
+
name: "color",
7290
+
tags: {
7291
+
formats: [
7292
+
"dashboard"
7293
+
]
7294
+
},
7295
+
schema: {
7296
+
anyOf: [
7297
+
"string",
7298
+
{
7299
+
enum: [
7300
+
"primary",
7301
+
"secondary",
7302
+
"success",
7303
+
"info",
7304
+
"warning",
7305
+
"danger",
7306
+
"light",
7307
+
"dark"
7308
+
]
7309
+
}
7310
+
]
7311
+
},
7312
+
description: {
7313
+
short: "For code cells that produce a valuebox, the color of the valuebox.s"
7314
+
}
7269
7315
}
7270
7316
],
7271
7317
"schema/cell-codeoutput.yml": [
@@ -19471,7 +19517,10 @@ var require_yaml_intelligence_resources = __commonJS({
19471
19517
"Display reactions for the discussion\u2019s main post before the\ncomments.",
19472
19518
"Specify <code>loading: lazy</code> to defer loading comments until\nthe user scrolls near the comments container.",
19473
19519
"Place the comment input box above or below the comments.",
19474
-
"The giscus theme to use when displaying comments.",
19520
+
{
19521
+
short: "The giscus theme to use when displaying comments.",
19522
+
long: "The giscus theme to use when displaying comments. Light and dark\nthemes are supported. If a single theme is provided by name, it will be\nused as light and dark theme. To use different themes, use\n<code>light</code> and <code>dark</code> key:"
19523
+
},
19475
19524
"The light theme name.",
19476
19525
"The dark theme name.",
19477
19526
"The language that should be used when displaying the commenting\ninterface.",
@@ -19623,6 +19672,11 @@ var require_yaml_intelligence_resources = __commonJS({
19623
19672
short: "The version number of Google Analytics to use.",
19624
19673
long: "The version number of Google Analytics to use."
19625
19674
},
19675
+
"Provides an announcement displayed at the top of the page.",
19676
+
"The content of the announcement",
19677
+
"Whether this announcement may be dismissed by the user.",
19678
+
"The icon to display in the annoucement",
19679
+
"The type of announcement. Affects the appearance of the\nannouncement.",
19626
19680
{
19627
19681
short: "Request cookie consent before enabling scripts that set cookies",
19628
19682
long: 'Quarto includes the ability to request cookie consent before enabling\nscripts that set cookies, using <a href="https://www.cookieconsent.com/">Cookie Consent</a>.\nThe user\u2019s cookie preferences will automatically control Google\nAnalytics (if enabled) and can be used to control custom scripts you add\nas well. For more information see <a href="https://quarto.org/docs/websites/website-tools.html#custom-scripts-and-cookie-consent">Custom\nScripts and Cookie Consent</a>.'
@@ -19758,6 +19812,11 @@ var require_yaml_intelligence_resources = __commonJS({
19758
19812
short: "The version number of Google Analytics to use.",
19759
19813
long: "The version number of Google Analytics to use."
19760
19814
},
19815
+
"Provides an announcement displayed at the top of the page.",
19816
+
"The content of the announcement",
19817
+
"Whether this announcement may be dismissed by the user.",
19818
+
"The icon to display in the annoucement",
19819
+
"The type of announcement. Affects the appearance of the\nannouncement.",
19761
19820
{
19762
19821
short: "Request cookie consent before enabling scripts that set cookies",
19763
19822
long: 'Quarto includes the ability to request cookie consent before enabling\nscripts that set cookies, using <a href="https://www.cookieconsent.com/">Cookie Consent</a>.\nThe user\u2019s cookie preferences will automatically control Google\nAnalytics (if enabled) and can be used to control custom scripts you add\nas well. For more information see <a href="https://quarto.org/docs/websites/website-tools.html#custom-scripts-and-cookie-consent">Custom\nScripts and Cookie Consent</a>.'
@@ -20601,6 +20660,14 @@ var require_yaml_intelligence_resources = __commonJS({
20601
20660
short: "Context to execute cell within.",
20602
20661
long: ""
20603
20662
},
20663
+
{
20664
+
short: "The type of dashboard element being produced by this code cell.",
20665
+
long: ""
20666
+
},
20667
+
{
20668
+
short: "For code cells that produce a valuebox, the color of the\nvaluebox.s",
20669
+
long: ""
20670
+
},
20604
20671
{
20605
20672
short: "Evaluate code cells (if <code>false</code> just echos the code into\noutput).",
20606
20673
long: "Evaluate code cells (if <code>false</code> just echos the code into\noutput)."
@@ -21391,7 +21458,7 @@ var require_yaml_intelligence_resources = __commonJS({
21391
21458
"The base url for s5 presentations.",
21392
21459
"The base url for Slidy presentations.",
21393
21460
"The base url for Slideous presentations.",
21394
-
"Enable or disable lightbox treatment for images in this document.",
21461
+
'Enable or disable lightbox treatment for images in this document. See\n<a href="https://quarto.org/docs/output-formats/html-lightbox-figures.html">Lightbox\nFigures</a> for more details.',
21395
21462
{
21396
21463
short: "Set this to <code>auto</code> if you\u2019d like any image to be given\nlightbox treatment.",
21397
21464
long: "Set this to <code>auto</code> if you\u2019d like any image to be given\nlightbox treatment. If you omit this, only images with the class\n<code>lightbox</code> will be given the lightbox treatment."
@@ -21502,6 +21569,7 @@ var require_yaml_intelligence_resources = __commonJS({
21502
21569
"The light theme name, theme scss file, or a mix of both.",
21503
21570
"The dark theme name, theme scss file, or a mix of both.",
21504
21571
"The dark theme name, theme scss file, or a mix of both.",
21572
+
"Classes to apply to the body of the document.",
21505
21573
"Disables the built in html features like theming, anchor sections,\ncode block behavior, and more.",
21506
21574
"Enables inclusion of Pandoc default CSS for this document.",
21507
21575
"One or more CSS style sheets.",
@@ -21628,6 +21696,7 @@ var require_yaml_intelligence_resources = __commonJS({
21628
21696
"Keep the notebook file generated from executing code.",
21629
21697
"Filters to pre-process ipynb files before rendering to markdown",
21630
21698
"Specify which nodes should be run interactively (displaying output\nfrom expressions)",
21699
+
"If true, use the \u201Cnotebook_connected\u201D plotly renderer, which\ndownloads its dependencies from a CDN and requires an internet\nconnection to view.",
21631
21700
"Keep the intermediate typst file used during render.",
21632
21701
"Keep the intermediate tex file used during render.",
21633
21702
{
@@ -21932,6 +22001,11 @@ var require_yaml_intelligence_resources = __commonJS({
21932
22001
short: "The version number of Google Analytics to use.",
21933
22002
long: "The version number of Google Analytics to use."
21934
22003
},
22004
+
"Provides an announcement displayed at the top of the page.",
22005
+
"The content of the announcement",
22006
+
"Whether this announcement may be dismissed by the user.",
22007
+
"The icon to display in the annoucement",
22008
+
"The type of announcement. Affects the appearance of the\nannouncement.",
21935
22009
{
21936
22010
short: "Request cookie consent before enabling scripts that set cookies",
21937
22011
long: 'Quarto includes the ability to request cookie consent before enabling\nscripts that set cookies, using <a href="https://www.cookieconsent.com/">Cookie Consent</a>.\nThe user\u2019s cookie preferences will automatically control Google\nAnalytics (if enabled) and can be used to control custom scripts you add\nas well. For more information see <a href="https://quarto.org/docs/websites/website-tools.html#custom-scripts-and-cookie-consent">Custom\nScripts and Cookie Consent</a>.'
@@ -22251,6 +22325,11 @@ var require_yaml_intelligence_resources = __commonJS({
22251
22325
short: "The version number of Google Analytics to use.",
22252
22326
long: "The version number of Google Analytics to use."
22253
22327
},
22328
+
"Provides an announcement displayed at the top of the page.",
22329
+
"The content of the announcement",
22330
+
"Whether this announcement may be dismissed by the user.",
22331
+
"The icon to display in the annoucement",
22332
+
"The type of announcement. Affects the appearance of the\nannouncement.",
22254
22333
{
22255
22334
short: "Request cookie consent before enabling scripts that set cookies",
22256
22335
long: 'Quarto includes the ability to request cookie consent before enabling\nscripts that set cookies, using <a href="https://www.cookieconsent.com/">Cookie Consent</a>.\nThe user\u2019s cookie preferences will automatically control Google\nAnalytics (if enabled) and can be used to control custom scripts you add\nas well. For more information see <a href="https://quarto.org/docs/websites/website-tools.html#custom-scripts-and-cookie-consent">Custom\nScripts and Cookie Consent</a>.'
@@ -22518,9 +22597,7 @@ var require_yaml_intelligence_resources = __commonJS({
22518
22597
},
22519
22598
"Disambiguating year suffix in author-date styles (e.g. \u201Ca\u201D in \u201CDoe,\n1999a\u201D).",
22520
22599
"Manuscript configuration",
22521
-
"internal-schema-hack",
22522
-
"Classes to apply to the body of the document.",
22523
-
"If true, use the \u201Cnotebook_connected\u201D plotly renderer, which\ndownloads its dependencies from a CDN and requires an internet\nconnection to view."
22600
+
"internal-schema-hack"
22524
22601
],
22525
22602
"schema/external-schemas.yml": [
22526
22603
{
@@ -22749,12 +22826,12 @@ var require_yaml_intelligence_resources = __commonJS({
22749
22826
mermaid: "%%"
22750
22827
},
22751
22828
"handlers/mermaid/schema.yml": {
22752
-
_internalId: 180807,
22829
+
_internalId: 181570,
22753
22830
type: "object",
22754
22831
description: "be an object",
22755
22832
properties: {
22756
22833
"mermaid-format": {
22757
-
_internalId: 180799,
22834
+
_internalId: 181562,
22758
22835
type: "enum",
22759
22836
enum: [
22760
22837
"png",
@@ -22770,7 +22847,7 @@ var require_yaml_intelligence_resources = __commonJS({
0 commit comments