REMOVE sortStoriesByKind from docs & implementation

This commit is contained in:
Norbert de Langen 2019-05-22 09:41:13 +02:00
parent 3eaf111aa3
commit 720295a3d6
5 changed files with 0 additions and 14 deletions

View File

@ -74,11 +74,6 @@ addParameters({
* @type {Boolean} * @type {Boolean}
*/ */
addonPanelInRight: false, addonPanelInRight: false,
/**
* sorts stories
* @type {Boolean}
*/
sortStoriesByKind: false,
/** /**
* regex for finding the hierarchy separator * regex for finding the hierarchy separator
* @example: * @example:

View File

@ -37,11 +37,6 @@ addParameters({
* @type {('bottom'|'right')} * @type {('bottom'|'right')}
*/ */
panelPosition: 'bottom', panelPosition: 'bottom',
/**
* sorts stories
* @type {Boolean}
*/
sortStoriesByKind: false,
/** /**
* regex for finding the hierarchy separator * regex for finding the hierarchy separator
* @example: * @example:

View File

@ -9,7 +9,6 @@ addParameters({
showAddonsPanel: true, showAddonsPanel: true,
showSearchBox: false, showSearchBox: false,
panelPosition: 'right', panelPosition: 'right',
sortStoriesByKind: false,
hierarchySeparator: /\./, hierarchySeparator: /\./,
hierarchyRootSeparator: /\|/, hierarchyRootSeparator: /\|/,
enableShortcuts: true, enableShortcuts: true,

View File

@ -23,7 +23,6 @@ export interface UI {
name?: string; name?: string;
url?: string; url?: string;
enableShortcuts: boolean; enableShortcuts: boolean;
sortStoriesByKind: boolean;
sidebarAnimations: boolean; sidebarAnimations: boolean;
} }
@ -132,7 +131,6 @@ const checkDeprecatedLayoutOptions = (options: Options) => {
const initial: SubState = { const initial: SubState = {
ui: { ui: {
enableShortcuts: true, enableShortcuts: true,
sortStoriesByKind: false,
sidebarAnimations: true, sidebarAnimations: true,
}, },
layout: { layout: {

View File

@ -16,7 +16,6 @@ describe('layout API', () => {
currentState = { currentState = {
ui: { ui: {
enableShortcuts: true, enableShortcuts: true,
sortStoriesByKind: false,
sidebarAnimations: true, sidebarAnimations: true,
}, },
layout: { layout: {