Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
autoreleaser committed Aug 15, 2023
1 parent 2aebc4f commit f65aa83
Show file tree
Hide file tree
Showing 7 changed files with 2,536 additions and 3,678 deletions.
1 change: 1 addition & 0 deletions latest/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"$schema": "./config.schema.json",
"excludeElements": ["wcp-root"],
"initialActiveElement": "wcp-button",
"statePersistence": "local",
"additionalReadmes": [
{
"name": "Web Component Preview",
Expand Down
40 changes: 36 additions & 4 deletions latest/config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
],
"type": "string"
},
"initialPreviewTab": {
"initialStageTab": {
"description": "The initial tab to be selected in the preview. Will match the name of the plugin.",
"type": "string"
},
Expand All @@ -60,15 +60,47 @@
},
"type": "object"
},
"previewFramePlugins": {
"logging": {
"description": "All settings concerning logging",
"properties": {
"severity": {
"description": "The severity of the log message; info will include all messages, warn will\ninclude warnings and errors, error will include errors only and none will\ndisable logging completely.",
"enum": [
"error",
"info",
"none",
"warn"
],
"type": "string"
}
},
"type": "object"
},
"previewPlugins": {
"description": "The plugins to be used for the preview.\nSet to the viewport plugin by default.",
"items": {
"type": "string"
},
"type": "array"
},
"stagePlugins": {
"description": "The plugins to be used for the preview frame.\nDefaults to examples, readme and viewer.",
"items": {
"type": "string"
},
"type": "array"
},
"previewPlugins": {
"description": "The plugins to be used for the preview.\nSet to the viewport plugin by default.",
"statePersistence": {
"description": "Sets the persistence of the global state. Defaults to 'session'.\nIf set to 'none', the state will not be persisted at all and only kept in memory.\nIf set to 'session', the state will be persisted in the session storage and restored.\nIf set to 'local', the state will be persisted in the local storage and restored.",
"enum": [
"local",
"none",
"session"
],
"type": "string"
},
"topbarPlugins": {
"description": "The plugins to be used for the topbar.\nDefaults to the preview editor link hint toggle.",
"items": {
"type": "string"
},
Expand Down
2,637 changes: 642 additions & 1,995 deletions latest/custom-elements.json

Large diffs are not rendered by default.

Loading

0 comments on commit f65aa83

Please sign in to comment.