Skip to content

Commit

Permalink
artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
gordonwoodhull committed Oct 16, 2024
1 parent 592229b commit a2026c8
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 134 deletions.
41 changes: 7 additions & 34 deletions src/resources/editor/tools/vs-code.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -11955,36 +11955,6 @@ var require_yaml_intelligence_resources = __commonJS({
id: "brand-color-value",
schema: "string"
},
{
id: "logo-string-layout",
description: "Source path or source path with layout options for logo",
anyOf: [
"string",
{
object: {
closed: true,
properties: {
location: {
schema: "string",
description: "X-Y positioning of logo\n"
},
padding: {
schema: "string",
description: "Padding of logo\n"
},
width: {
schema: "string",
description: "Width of logo\n"
},
src: {
schema: "path",
description: "Source path of logo\n"
}
}
}
}
]
},
{
id: "brand-color",
description: "The brand's custom color palette and theme.\n",
Expand Down Expand Up @@ -17677,7 +17647,10 @@ var require_yaml_intelligence_resources = __commonJS({
]
},
schema: {
ref: "logo-string-layout"
anyOf: [
"string",
"object"
]
},
description: "Logo image (placed in bottom right corner of slides)"
},
Expand Down Expand Up @@ -24150,12 +24123,12 @@ var require_yaml_intelligence_resources = __commonJS({
mermaid: "%%"
},
"handlers/mermaid/schema.yml": {
_internalId: 192356,
_internalId: 192336,
type: "object",
description: "be an object",
properties: {
"mermaid-format": {
_internalId: 192348,
_internalId: 192328,
type: "enum",
enum: [
"png",
Expand All @@ -24171,7 +24144,7 @@ var require_yaml_intelligence_resources = __commonJS({
exhaustiveCompletions: true
},
theme: {
_internalId: 192355,
_internalId: 192335,
type: "anyOf",
anyOf: [
{
Expand Down
41 changes: 7 additions & 34 deletions src/resources/editor/tools/yaml/web-worker.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

41 changes: 7 additions & 34 deletions src/resources/editor/tools/yaml/yaml-intelligence-resources.json
Original file line number Diff line number Diff line change
Expand Up @@ -4927,36 +4927,6 @@
"id": "brand-color-value",
"schema": "string"
},
{
"id": "logo-string-layout",
"description": "Source path or source path with layout options for logo",
"anyOf": [
"string",
{
"object": {
"closed": true,
"properties": {
"location": {
"schema": "string",
"description": "X-Y positioning of logo\n"
},
"padding": {
"schema": "string",
"description": "Padding of logo\n"
},
"width": {
"schema": "string",
"description": "Width of logo\n"
},
"src": {
"schema": "path",
"description": "Source path of logo\n"
}
}
}
}
]
},
{
"id": "brand-color",
"description": "The brand's custom color palette and theme.\n",
Expand Down Expand Up @@ -10649,7 +10619,10 @@
]
},
"schema": {
"ref": "logo-string-layout"
"anyOf": [
"string",
"object"
]
},
"description": "Logo image (placed in bottom right corner of slides)"
},
Expand Down Expand Up @@ -17122,12 +17095,12 @@
"mermaid": "%%"
},
"handlers/mermaid/schema.yml": {
"_internalId": 192356,
"_internalId": 192336,
"type": "object",
"description": "be an object",
"properties": {
"mermaid-format": {
"_internalId": 192348,
"_internalId": 192328,
"type": "enum",
"enum": [
"png",
Expand All @@ -17143,7 +17116,7 @@
"exhaustiveCompletions": true
},
"theme": {
"_internalId": 192355,
"_internalId": 192335,
"type": "anyOf",
"anyOf": [
{
Expand Down
25 changes: 0 additions & 25 deletions src/resources/schema/json-schemas.json
Original file line number Diff line number Diff line change
Expand Up @@ -3295,31 +3295,6 @@
"BrandColorValue": {
"type": "string"
},
"LogoStringLayout": {
"anyOf": [
{
"type": "string"
},
{
"object": {
"properties": {
"location": {
"type": "string"
},
"padding": {
"type": "string"
},
"width": {
"type": "string"
},
"src": {
"type": "string"
}
}
}
}
]
},
"BrandColor": {
"object": {
"properties": {
Expand Down
7 changes: 0 additions & 7 deletions src/resources/types/schema-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1301,13 +1301,6 @@ export type BrandNamedLogo =

export type BrandColorValue = string;

export type LogoStringLayout = string | {
location?: string;
padding?: string;
src?: string;
width?: string;
}; /* Source path or source path with layout options for logo */

export type BrandColor = {
background?: BrandColorValue;
danger?: BrandColorValue;
Expand Down

0 comments on commit a2026c8

Please sign in to comment.