mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
REMOVE sortStoriesByKind
from docs & implementation
This commit is contained in:
parent
3eaf111aa3
commit
720295a3d6
@ -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:
|
||||||
|
@ -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:
|
||||||
|
@ -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,
|
||||||
|
@ -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: {
|
||||||
|
@ -16,7 +16,6 @@ describe('layout API', () => {
|
|||||||
currentState = {
|
currentState = {
|
||||||
ui: {
|
ui: {
|
||||||
enableShortcuts: true,
|
enableShortcuts: true,
|
||||||
sortStoriesByKind: false,
|
|
||||||
sidebarAnimations: true,
|
sidebarAnimations: true,
|
||||||
},
|
},
|
||||||
layout: {
|
layout: {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user