mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
FIX dependencies cycle in addons/actions
This commit is contained in:
parent
5a9834c4ed
commit
c1f212c167
4
addons/actions/src/constants.js
Normal file
4
addons/actions/src/constants.js
Normal file
@ -0,0 +1,4 @@
|
||||
export const ADDON_ID = 'storybook/actions';
|
||||
export const PANEL_ID = `${ADDON_ID}/actions-panel`;
|
||||
export const EVENT_ID = `${ADDON_ID}/action-event`;
|
||||
export const CYCLIC_KEY = '$___storybook.isCyclic';
|
@ -8,8 +8,16 @@ import {
|
||||
} from './preview';
|
||||
|
||||
// addons, panels and events get unique names using a prefix
|
||||
export const ADDON_ID = 'storybook/actions';
|
||||
export const PANEL_ID = `${ADDON_ID}/actions-panel`;
|
||||
export const EVENT_ID = `${ADDON_ID}/action-event`;
|
||||
import { ADDON_ID, PANEL_ID, EVENT_ID } from './constants';
|
||||
|
||||
export { action, actions, decorate, configureActions, decorateAction, withActions };
|
||||
export {
|
||||
action,
|
||||
actions,
|
||||
decorate,
|
||||
configureActions,
|
||||
decorateAction,
|
||||
withActions,
|
||||
ADDON_ID,
|
||||
PANEL_ID,
|
||||
EVENT_ID,
|
||||
};
|
||||
|
@ -2,7 +2,7 @@ import { DecycleError } from './errors';
|
||||
|
||||
import { getPropertiesList, typeReplacer, omitProperty } from './util';
|
||||
|
||||
import { CYCLIC_KEY } from '.';
|
||||
import { CYCLIC_KEY } from '../constants';
|
||||
|
||||
import { objectType } from './types';
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
import reviver from './reviver';
|
||||
import { muteProperty } from './util';
|
||||
import { CYCLIC_KEY } from '.';
|
||||
import { CYCLIC_KEY } from '../constants';
|
||||
|
||||
// eslint-disable-next-line no-control-regex
|
||||
const pathReg = /^\$(?:\[(?:\d+|"(?:[^\\"\u0000-\u001f]|\\([\\"/bfnrt]|u[0-9a-zA-Z]{4}))*")])*$/;
|
||||
|
@ -1,6 +1,6 @@
|
||||
import uuid from 'uuid/v1';
|
||||
import addons from '@storybook/addons';
|
||||
import { EVENT_ID } from '..';
|
||||
import { EVENT_ID } from '../constants';
|
||||
import { canConfigureName, prepareArguments } from '../lib/util';
|
||||
import { config } from './configureActions';
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user