@redocly/theme 0.22.0 → 0.23.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/config.d.ts CHANGED
@@ -421,6 +421,10 @@ declare const catalogSchema: {
421
421
  readonly directory: {
422
422
  readonly type: "string";
423
423
  };
424
+ readonly disconnect: {
425
+ readonly type: "boolean";
426
+ readonly default: false;
427
+ };
424
428
  readonly group: {
425
429
  readonly type: "string";
426
430
  };
@@ -470,6 +474,10 @@ declare const catalogSchema: {
470
474
  readonly directory: {
471
475
  readonly type: "string";
472
476
  };
477
+ readonly disconnect: {
478
+ readonly type: "boolean";
479
+ readonly default: false;
480
+ };
473
481
  readonly group: {
474
482
  readonly type: "string";
475
483
  };
@@ -586,6 +594,10 @@ export declare const themeConfigSchema: {
586
594
  readonly directory: {
587
595
  readonly type: "string";
588
596
  };
597
+ readonly disconnect: {
598
+ readonly type: "boolean";
599
+ readonly default: false;
600
+ };
589
601
  readonly group: {
590
602
  readonly type: "string";
591
603
  };
@@ -635,6 +647,10 @@ export declare const themeConfigSchema: {
635
647
  readonly directory: {
636
648
  readonly type: "string";
637
649
  };
650
+ readonly disconnect: {
651
+ readonly type: "boolean";
652
+ readonly default: false;
653
+ };
638
654
  readonly group: {
639
655
  readonly type: "string";
640
656
  };
@@ -722,6 +738,10 @@ export declare const themeConfigSchema: {
722
738
  readonly directory: {
723
739
  readonly type: "string";
724
740
  };
741
+ readonly disconnect: {
742
+ readonly type: "boolean";
743
+ readonly default: false;
744
+ };
725
745
  readonly group: {
726
746
  readonly type: "string";
727
747
  };
@@ -771,6 +791,10 @@ export declare const themeConfigSchema: {
771
791
  readonly directory: {
772
792
  readonly type: "string";
773
793
  };
794
+ readonly disconnect: {
795
+ readonly type: "boolean";
796
+ readonly default: false;
797
+ };
774
798
  readonly group: {
775
799
  readonly type: "string";
776
800
  };
@@ -1683,6 +1707,10 @@ export declare const themeConfigSchema: {
1683
1707
  readonly directory: {
1684
1708
  readonly type: "string";
1685
1709
  };
1710
+ readonly disconnect: {
1711
+ readonly type: "boolean";
1712
+ readonly default: false;
1713
+ };
1686
1714
  readonly group: {
1687
1715
  readonly type: "string";
1688
1716
  };
@@ -1732,6 +1760,10 @@ export declare const themeConfigSchema: {
1732
1760
  readonly directory: {
1733
1761
  readonly type: "string";
1734
1762
  };
1763
+ readonly disconnect: {
1764
+ readonly type: "boolean";
1765
+ readonly default: false;
1766
+ };
1735
1767
  readonly group: {
1736
1768
  readonly type: "string";
1737
1769
  };
@@ -1923,6 +1955,10 @@ export declare const productThemeOverrideSchema: {
1923
1955
  readonly directory: {
1924
1956
  readonly type: "string";
1925
1957
  };
1958
+ readonly disconnect: {
1959
+ readonly type: "boolean";
1960
+ readonly default: false;
1961
+ };
1926
1962
  readonly group: {
1927
1963
  readonly type: "string";
1928
1964
  };
@@ -1972,6 +2008,10 @@ export declare const productThemeOverrideSchema: {
1972
2008
  readonly directory: {
1973
2009
  readonly type: "string";
1974
2010
  };
2011
+ readonly disconnect: {
2012
+ readonly type: "boolean";
2013
+ readonly default: false;
2014
+ };
1975
2015
  readonly group: {
1976
2016
  readonly type: "string";
1977
2017
  };
@@ -2040,6 +2080,10 @@ export declare const productThemeOverrideSchema: {
2040
2080
  readonly directory: {
2041
2081
  readonly type: "string";
2042
2082
  };
2083
+ readonly disconnect: {
2084
+ readonly type: "boolean";
2085
+ readonly default: false;
2086
+ };
2043
2087
  readonly group: {
2044
2088
  readonly type: "string";
2045
2089
  };
@@ -2089,6 +2133,10 @@ export declare const productThemeOverrideSchema: {
2089
2133
  readonly directory: {
2090
2134
  readonly type: "string";
2091
2135
  };
2136
+ readonly disconnect: {
2137
+ readonly type: "boolean";
2138
+ readonly default: false;
2139
+ };
2092
2140
  readonly group: {
2093
2141
  readonly type: "string";
2094
2142
  };
package/lib/config.js CHANGED
@@ -200,6 +200,7 @@ const navItemSchema = {
200
200
  properties: {
201
201
  page: { type: 'string' },
202
202
  directory: { type: 'string' },
203
+ disconnect: { type: 'boolean', default: false },
203
204
  group: { type: 'string' },
204
205
  label: { type: 'string' },
205
206
  separator: { type: 'string' },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@redocly/theme",
3
- "version": "0.22.0",
3
+ "version": "0.23.0",
4
4
  "description": "Shared UI components lib",
5
5
  "keywords": [
6
6
  "theme",
package/src/config.ts CHANGED
@@ -228,6 +228,7 @@ const navItemSchema = {
228
228
  properties: {
229
229
  page: { type: 'string' },
230
230
  directory: { type: 'string' },
231
+ disconnect: { type: 'boolean', default: false },
231
232
  group: { type: 'string' },
232
233
  label: { type: 'string' },
233
234
  separator: { type: 'string' },