@redocly/config
Advanced tools
Comparing version 0.1.2 to 0.1.3
# @redocly/config | ||
## 0.1.3 | ||
### Patch Changes | ||
- c5bb461c1: fix: Updated config schema to allow `srcSet` for the nav item `icon` property. | ||
## 0.1.2 | ||
@@ -4,0 +10,0 @@ |
@@ -230,3 +230,8 @@ const logoConfigSchema = { | ||
groupTranslationKey: { type: 'string' }, | ||
icon: { type: 'string' }, | ||
icon: { | ||
oneOf: [ | ||
{ type: 'string' }, | ||
{ type: 'object', properties: { srcSet: { type: 'string' } }, required: ['srcSet'] }, | ||
], | ||
}, | ||
separator: { type: 'string' }, | ||
@@ -233,0 +238,0 @@ separatorLine: { type: 'boolean' }, |
@@ -233,3 +233,8 @@ "use strict"; | ||
groupTranslationKey: { type: 'string' }, | ||
icon: { type: 'string' }, | ||
icon: { | ||
oneOf: [ | ||
{ type: 'string' }, | ||
{ type: 'object', properties: { srcSet: { type: 'string' } }, required: ['srcSet'] }, | ||
], | ||
}, | ||
separator: { type: 'string' }, | ||
@@ -236,0 +241,0 @@ separatorLine: { type: 'boolean' }, |
{ | ||
"name": "@redocly/config", | ||
"version": "0.1.2", | ||
"version": "0.1.3", | ||
"main": "./lib/index.js", | ||
@@ -5,0 +5,0 @@ "module": "./lib-esm/index.js", |
@@ -260,3 +260,8 @@ const logoConfigSchema = { | ||
groupTranslationKey: { type: 'string' }, | ||
icon: { type: 'string' }, | ||
icon: { | ||
oneOf: [ | ||
{ type: 'string' }, | ||
{ type: 'object', properties: { srcSet: { type: 'string' } }, required: ['srcSet'] }, | ||
], | ||
}, | ||
separator: { type: 'string' }, | ||
@@ -263,0 +268,0 @@ separatorLine: { type: 'boolean' }, |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
1427651
26970