storybook 9.0.0-alpha.1 → 9.0.0-alpha.10
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/README.md +31 -29
- package/assets/browser/favicon.svg +1 -0
- package/assets/browser/nunito-sans-bold-italic.woff2 +0 -0
- package/assets/browser/nunito-sans-bold.woff2 +0 -0
- package/assets/browser/nunito-sans-italic.woff2 +0 -0
- package/assets/browser/nunito-sans-regular.woff2 +0 -0
- package/assets/docs/addon-controls-args-annotated.png +0 -0
- package/assets/docs/addon-controls-args-background-color.png +0 -0
- package/assets/docs/addon-controls-args-background-string.png +0 -0
- package/assets/docs/addon-controls-args-docs.png +0 -0
- package/assets/docs/addon-controls-args-logging.png +0 -0
- package/assets/docs/addon-controls-args-no-annotation.png +0 -0
- package/assets/docs/addon-controls-args-reflow-slider.png +0 -0
- package/assets/docs/addon-controls-args-reflow.png +0 -0
- package/assets/docs/addon-controls-args-template.png +0 -0
- package/assets/docs/addon-controls-expanded.png +0 -0
- package/assets/docs/addon-controls-hero.gif +0 -0
- package/assets/docs/addon-controls-install.png +0 -0
- package/assets/docs/hero.gif +0 -0
- package/assets/docs/message-reference.png +0 -0
- package/assets/docs/viewport.png +0 -0
- package/assets/server/addon.tsconfig.json +6 -0
- package/assets/server/base-preview-body.html +119 -0
- package/assets/server/base-preview-head.html +451 -0
- package/assets/server/template.ejs +87 -0
- package/bin/index.cjs +1 -1
- package/dist/actions/decorator.d.ts +6 -0
- package/dist/actions/decorator.js +139 -0
- package/dist/actions/index.cjs +127 -0
- package/dist/actions/index.d.ts +105 -0
- package/dist/actions/index.js +112 -0
- package/dist/actions/manager.js +1196 -0
- package/dist/actions/preview.cjs +165 -0
- package/dist/actions/preview.d.ts +55 -0
- package/dist/actions/preview.js +156 -0
- package/dist/babel/index.cjs +54034 -0
- package/dist/babel/index.d.ts +7488 -0
- package/dist/babel/index.js +54044 -0
- package/dist/bin/index.cjs +119 -0
- package/dist/bin/index.js +113 -0
- package/dist/builder-manager/index.cjs +2140 -0
- package/dist/builder-manager/index.d.ts +19 -0
- package/dist/builder-manager/index.js +2162 -0
- package/dist/channels/index.cjs +1913 -0
- package/dist/channels/index.d.ts +108 -0
- package/dist/channels/index.js +1881 -0
- package/dist/cli/bin/index.cjs +2687 -0
- package/dist/cli/bin/index.d.ts +2 -0
- package/dist/cli/bin/index.js +2707 -0
- package/dist/cli/index.cjs +17327 -0
- package/dist/cli/index.d.ts +209 -0
- package/dist/cli/index.js +17349 -0
- package/dist/client-logger/index.cjs +80 -0
- package/dist/client-logger/index.d.ts +29 -0
- package/dist/client-logger/index.js +64 -0
- package/dist/common/index.cjs +20569 -0
- package/dist/common/index.d.ts +949 -0
- package/dist/common/index.js +20654 -0
- package/dist/components/index.cjs +27924 -0
- package/dist/components/index.d.ts +1423 -0
- package/dist/components/index.js +24673 -0
- package/dist/controls/decorator.d.ts +5 -0
- package/dist/controls/decorator.js +8 -0
- package/dist/controls/index.cjs +26 -0
- package/dist/controls/index.d.ts +39 -0
- package/dist/controls/index.js +6 -0
- package/dist/controls/manager.js +5545 -0
- package/dist/controls/preview.cjs +26 -0
- package/dist/controls/preview.d.ts +55 -0
- package/dist/controls/preview.js +9 -0
- package/dist/core-events/index.cjs +167 -0
- package/dist/core-events/index.d.ts +426 -0
- package/dist/core-events/index.js +149 -0
- package/dist/core-server/index.cjs +38183 -0
- package/dist/core-server/index.d.ts +720 -0
- package/dist/core-server/index.js +38272 -0
- package/dist/core-server/presets/common-manager.js +20 -0
- package/dist/core-server/presets/common-override-preset.cjs +4824 -0
- package/dist/core-server/presets/common-override-preset.js +4829 -0
- package/dist/core-server/presets/common-preset.cjs +10231 -0
- package/dist/core-server/presets/common-preset.js +10309 -0
- package/dist/csf/index.cjs +179 -0
- package/dist/csf/index.d.ts +750 -0
- package/dist/csf/index.js +172 -0
- package/dist/csf-tools/index.cjs +1422 -0
- package/dist/csf-tools/index.d.ts +250 -0
- package/dist/csf-tools/index.js +1439 -0
- package/dist/docs-tools/index.cjs +2891 -0
- package/dist/docs-tools/index.d.ts +162 -0
- package/dist/docs-tools/index.js +2876 -0
- package/dist/index.cjs +17 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -7
- package/dist/instrumenter/index.cjs +3485 -0
- package/dist/instrumenter/index.d.ts +104 -0
- package/dist/instrumenter/index.js +4965 -0
- package/dist/manager/globals-module-info.cjs +817 -0
- package/dist/manager/globals-module-info.d.ts +36 -0
- package/dist/manager/globals-module-info.js +804 -0
- package/dist/manager/globals-runtime.js +77536 -0
- package/dist/manager/globals.cjs +47 -0
- package/dist/manager/globals.d.ts +24 -0
- package/dist/manager/globals.js +34 -0
- package/dist/manager/runtime.js +12323 -0
- package/dist/manager-api/index.cjs +11074 -0
- package/dist/manager-api/index.d.ts +1512 -0
- package/dist/manager-api/index.js +4835 -0
- package/dist/manager-errors.d.ts +89 -0
- package/dist/manager-errors.js +99 -0
- package/dist/node-logger/index.cjs +1642 -0
- package/dist/node-logger/index.d.ts +117 -0
- package/dist/node-logger/index.js +1652 -0
- package/dist/preview/globals.cjs +38 -0
- package/dist/preview/globals.d.ts +15 -0
- package/dist/preview/globals.js +25 -0
- package/dist/preview/runtime.js +43629 -0
- package/dist/preview-api/index.cjs +5224 -0
- package/dist/preview-api/index.d.ts +1093 -0
- package/dist/preview-api/index.js +5292 -0
- package/dist/preview-errors.cjs +503 -0
- package/dist/preview-errors.d.ts +212 -0
- package/dist/preview-errors.js +449 -0
- package/dist/router/index.cjs +3296 -0
- package/dist/router/index.d.ts +385 -0
- package/dist/router/index.js +1843 -0
- package/dist/server-errors.cjs +727 -0
- package/dist/server-errors.d.ts +296 -0
- package/dist/server-errors.js +728 -0
- package/dist/telemetry/index.cjs +2756 -0
- package/dist/telemetry/index.d.ts +133 -0
- package/dist/telemetry/index.js +2797 -0
- package/dist/test/index.cjs +35685 -0
- package/dist/test/index.d.ts +186 -0
- package/dist/test/index.js +33751 -0
- package/dist/test/preview.cjs +15869 -0
- package/dist/test/preview.d.ts +54 -0
- package/dist/test/preview.js +14440 -0
- package/dist/test/spy.cjs +257 -0
- package/dist/test/spy.d.ts +66 -0
- package/dist/test/spy.js +239 -0
- package/dist/theming/create.cjs +232 -0
- package/dist/theming/create.d.ts +50 -0
- package/dist/theming/create.js +216 -0
- package/dist/theming/index.cjs +2665 -0
- package/dist/theming/index.d.ts +11939 -0
- package/dist/theming/index.js +2485 -0
- package/dist/types/index.cjs +27 -0
- package/dist/types/index.d.ts +2795 -0
- package/dist/types/index.js +7 -0
- package/dist/viewport/index.cjs +310 -0
- package/dist/viewport/index.d.ts +320 -0
- package/dist/viewport/index.js +290 -0
- package/dist/viewport/manager.js +400 -0
- package/dist/viewport/preview.cjs +35 -0
- package/dist/viewport/preview.d.ts +69 -0
- package/dist/viewport/preview.js +19 -0
- package/package.json +518 -209
- package/.eslintrc.cjs +0 -31
- package/__mocks__/@aw-web-design/x-default-browser.js +0 -2
- package/core/babel/index.cjs +0 -1
- package/core/babel/index.d.ts +0 -2
- package/core/babel/index.js +0 -1
- package/core/builder-manager/index.cjs +0 -1
- package/core/builder-manager/index.d.ts +0 -2
- package/core/builder-manager/index.js +0 -1
- package/core/channels/index.cjs +0 -1
- package/core/channels/index.d.ts +0 -2
- package/core/channels/index.js +0 -1
- package/core/cli/bin/index.cjs +0 -1
- package/core/cli/bin/index.d.ts +0 -2
- package/core/cli/bin/index.js +0 -1
- package/core/cli/index.cjs +0 -1
- package/core/cli/index.d.ts +0 -2
- package/core/cli/index.js +0 -1
- package/core/client-logger/index.cjs +0 -1
- package/core/client-logger/index.d.ts +0 -2
- package/core/client-logger/index.js +0 -1
- package/core/common/index.cjs +0 -1
- package/core/common/index.d.ts +0 -2
- package/core/common/index.js +0 -1
- package/core/components/index.cjs +0 -1
- package/core/components/index.d.ts +0 -2
- package/core/components/index.js +0 -1
- package/core/core-events/index.cjs +0 -1
- package/core/core-events/index.d.ts +0 -2
- package/core/core-events/index.js +0 -1
- package/core/core-server/index.cjs +0 -1
- package/core/core-server/index.d.ts +0 -2
- package/core/core-server/index.js +0 -1
- package/core/core-server/presets/common-manager.js +0 -1
- package/core/core-server/presets/common-override-preset.cjs +0 -1
- package/core/core-server/presets/common-override-preset.js +0 -1
- package/core/core-server/presets/common-preset.cjs +0 -1
- package/core/core-server/presets/common-preset.js +0 -1
- package/core/csf/index.cjs +0 -1
- package/core/csf/index.d.ts +0 -2
- package/core/csf/index.js +0 -1
- package/core/csf-tools/index.cjs +0 -1
- package/core/csf-tools/index.d.ts +0 -2
- package/core/csf-tools/index.js +0 -1
- package/core/docs-tools/index.cjs +0 -1
- package/core/docs-tools/index.d.ts +0 -2
- package/core/docs-tools/index.js +0 -1
- package/core/index.cjs +0 -1
- package/core/index.d.ts +0 -2
- package/core/index.js +0 -1
- package/core/manager/globals-module-info.cjs +0 -1
- package/core/manager/globals-module-info.d.ts +0 -2
- package/core/manager/globals-module-info.js +0 -1
- package/core/manager/globals-runtime.js +0 -1
- package/core/manager/globals.cjs +0 -1
- package/core/manager/globals.d.ts +0 -2
- package/core/manager/globals.js +0 -1
- package/core/manager-api/index.cjs +0 -1
- package/core/manager-api/index.d.ts +0 -2
- package/core/manager-api/index.js +0 -1
- package/core/manager-errors.d.ts +0 -2
- package/core/manager-errors.js +0 -1
- package/core/node-logger/index.cjs +0 -1
- package/core/node-logger/index.d.ts +0 -2
- package/core/node-logger/index.js +0 -1
- package/core/preview/globals.cjs +0 -1
- package/core/preview/globals.d.ts +0 -2
- package/core/preview/globals.js +0 -1
- package/core/preview/runtime.js +0 -1
- package/core/preview-api/index.cjs +0 -1
- package/core/preview-api/index.d.ts +0 -2
- package/core/preview-api/index.js +0 -1
- package/core/preview-errors.cjs +0 -1
- package/core/preview-errors.d.ts +0 -2
- package/core/preview-errors.js +0 -1
- package/core/router/index.cjs +0 -1
- package/core/router/index.d.ts +0 -2
- package/core/router/index.js +0 -1
- package/core/server-errors.cjs +0 -1
- package/core/server-errors.d.ts +0 -2
- package/core/server-errors.js +0 -1
- package/core/telemetry/index.cjs +0 -1
- package/core/telemetry/index.d.ts +0 -2
- package/core/telemetry/index.js +0 -1
- package/core/theming/create.cjs +0 -1
- package/core/theming/create.d.ts +0 -2
- package/core/theming/create.js +0 -1
- package/core/theming/index.cjs +0 -1
- package/core/theming/index.d.ts +0 -2
- package/core/theming/index.js +0 -1
- package/core/types/index.cjs +0 -1
- package/core/types/index.d.ts +0 -2
- package/core/types/index.js +0 -1
- package/core.cjs +0 -0
- package/core.d.ts +0 -0
- package/core.js +0 -1
- package/dist/chunk-OWLSIX54.js +0 -8
- package/dist/core-path.cjs +0 -1
- package/dist/core-path.d.ts +0 -3
- package/dist/core-path.js +0 -9
- package/dist/proxy.cjs +0 -1
- package/dist/proxy.d.ts +0 -2
- package/dist/proxy.js +0 -9
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
// src/core-events/index.ts
|
|
2
|
+
var R = /* @__PURE__ */ ((E) => (E.CHANNEL_WS_DISCONNECT = "channelWSDisconnect", E.CHANNEL_CREATED = "channelCreated", E.CONFIG_ERROR = "co\
|
|
3
|
+
nfigError", E.STORY_INDEX_INVALIDATED = "storyIndexInvalidated", E.STORY_SPECIFIED = "storySpecified", E.SET_CONFIG = "setConfig", E.SET_STORIES =
|
|
4
|
+
"setStories", E.SET_INDEX = "setIndex", E.SET_CURRENT_STORY = "setCurrentStory", E.CURRENT_STORY_WAS_SET = "currentStoryWasSet", E.FORCE_RE_RENDER =
|
|
5
|
+
"forceReRender", E.FORCE_REMOUNT = "forceRemount", E.PRELOAD_ENTRIES = "preloadStories", E.STORY_PREPARED = "storyPrepared", E.DOCS_PREPARED =
|
|
6
|
+
"docsPrepared", E.STORY_CHANGED = "storyChanged", E.STORY_UNCHANGED = "storyUnchanged", E.STORY_RENDERED = "storyRendered", E.STORY_FINISHED =
|
|
7
|
+
"storyFinished", E.STORY_MISSING = "storyMissing", E.STORY_ERRORED = "storyErrored", E.STORY_THREW_EXCEPTION = "storyThrewException", E.STORY_RENDER_PHASE_CHANGED =
|
|
8
|
+
"storyRenderPhaseChanged", E.PLAY_FUNCTION_THREW_EXCEPTION = "playFunctionThrewException", E.UNHANDLED_ERRORS_WHILE_PLAYING = "unhandledErro\
|
|
9
|
+
rsWhilePlaying", E.UPDATE_STORY_ARGS = "updateStoryArgs", E.STORY_ARGS_UPDATED = "storyArgsUpdated", E.RESET_STORY_ARGS = "resetStoryArgs", E.
|
|
10
|
+
SET_FILTER = "setFilter", E.SET_GLOBALS = "setGlobals", E.UPDATE_GLOBALS = "updateGlobals", E.GLOBALS_UPDATED = "globalsUpdated", E.REGISTER_SUBSCRIPTION =
|
|
11
|
+
"registerSubscription", E.PREVIEW_KEYDOWN = "previewKeydown", E.PREVIEW_BUILDER_PROGRESS = "preview_builder_progress", E.SELECT_STORY = "sel\
|
|
12
|
+
ectStory", E.STORIES_COLLAPSE_ALL = "storiesCollapseAll", E.STORIES_EXPAND_ALL = "storiesExpandAll", E.DOCS_RENDERED = "docsRendered", E.SHARED_STATE_CHANGED =
|
|
13
|
+
"sharedStateChanged", E.SHARED_STATE_SET = "sharedStateSet", E.NAVIGATE_URL = "navigateUrl", E.UPDATE_QUERY_PARAMS = "updateQueryParams", E.
|
|
14
|
+
REQUEST_WHATS_NEW_DATA = "requestWhatsNewData", E.RESULT_WHATS_NEW_DATA = "resultWhatsNewData", E.SET_WHATS_NEW_CACHE = "setWhatsNewCache", E.
|
|
15
|
+
TOGGLE_WHATS_NEW_NOTIFICATIONS = "toggleWhatsNewNotifications", E.TELEMETRY_ERROR = "telemetryError", E.FILE_COMPONENT_SEARCH_REQUEST = "fil\
|
|
16
|
+
eComponentSearchRequest", E.FILE_COMPONENT_SEARCH_RESPONSE = "fileComponentSearchResponse", E.SAVE_STORY_REQUEST = "saveStoryRequest", E.SAVE_STORY_RESPONSE =
|
|
17
|
+
"saveStoryResponse", E.ARGTYPES_INFO_REQUEST = "argtypesInfoRequest", E.ARGTYPES_INFO_RESPONSE = "argtypesInfoResponse", E.CREATE_NEW_STORYFILE_REQUEST =
|
|
18
|
+
"createNewStoryfileRequest", E.CREATE_NEW_STORYFILE_RESPONSE = "createNewStoryfileResponse", E.TESTING_MODULE_CRASH_REPORT = "testingModuleC\
|
|
19
|
+
rashReport", E.TESTING_MODULE_PROGRESS_REPORT = "testingModuleProgressReport", E.TESTING_MODULE_RUN_REQUEST = "testingModuleRunRequest", E.TESTING_MODULE_RUN_ALL_REQUEST =
|
|
20
|
+
"testingModuleRunAllRequest", E.TESTING_MODULE_CANCEL_TEST_RUN_REQUEST = "testingModuleCancelTestRunRequest", E.TESTING_MODULE_CANCEL_TEST_RUN_RESPONSE =
|
|
21
|
+
"testingModuleCancelTestRunResponse", E))(R || {}), _ = R, {
|
|
22
|
+
CHANNEL_WS_DISCONNECT: S,
|
|
23
|
+
CHANNEL_CREATED: T,
|
|
24
|
+
CONFIG_ERROR: N,
|
|
25
|
+
CREATE_NEW_STORYFILE_REQUEST: O,
|
|
26
|
+
CREATE_NEW_STORYFILE_RESPONSE: A,
|
|
27
|
+
CURRENT_STORY_WAS_SET: r,
|
|
28
|
+
DOCS_PREPARED: D,
|
|
29
|
+
DOCS_RENDERED: I,
|
|
30
|
+
FILE_COMPONENT_SEARCH_REQUEST: o,
|
|
31
|
+
FILE_COMPONENT_SEARCH_RESPONSE: C,
|
|
32
|
+
FORCE_RE_RENDER: L,
|
|
33
|
+
FORCE_REMOUNT: P,
|
|
34
|
+
GLOBALS_UPDATED: U,
|
|
35
|
+
NAVIGATE_URL: G,
|
|
36
|
+
PLAY_FUNCTION_THREW_EXCEPTION: a,
|
|
37
|
+
UNHANDLED_ERRORS_WHILE_PLAYING: Y,
|
|
38
|
+
PRELOAD_ENTRIES: t,
|
|
39
|
+
PREVIEW_BUILDER_PROGRESS: d,
|
|
40
|
+
PREVIEW_KEYDOWN: e,
|
|
41
|
+
REGISTER_SUBSCRIPTION: H,
|
|
42
|
+
RESET_STORY_ARGS: W,
|
|
43
|
+
SELECT_STORY: l,
|
|
44
|
+
SET_CONFIG: i,
|
|
45
|
+
SET_CURRENT_STORY: p,
|
|
46
|
+
SET_FILTER: F,
|
|
47
|
+
SET_GLOBALS: u,
|
|
48
|
+
SET_INDEX: M,
|
|
49
|
+
SET_STORIES: s,
|
|
50
|
+
SHARED_STATE_CHANGED: y,
|
|
51
|
+
SHARED_STATE_SET: c,
|
|
52
|
+
STORIES_COLLAPSE_ALL: g,
|
|
53
|
+
STORIES_EXPAND_ALL: h,
|
|
54
|
+
STORY_ARGS_UPDATED: f,
|
|
55
|
+
STORY_CHANGED: Q,
|
|
56
|
+
STORY_ERRORED: x,
|
|
57
|
+
STORY_INDEX_INVALIDATED: m,
|
|
58
|
+
STORY_MISSING: V,
|
|
59
|
+
STORY_PREPARED: w,
|
|
60
|
+
STORY_RENDER_PHASE_CHANGED: B,
|
|
61
|
+
STORY_RENDERED: X,
|
|
62
|
+
STORY_FINISHED: q,
|
|
63
|
+
STORY_SPECIFIED: b,
|
|
64
|
+
STORY_THREW_EXCEPTION: K,
|
|
65
|
+
STORY_UNCHANGED: j,
|
|
66
|
+
UPDATE_GLOBALS: k,
|
|
67
|
+
UPDATE_QUERY_PARAMS: n,
|
|
68
|
+
UPDATE_STORY_ARGS: z,
|
|
69
|
+
REQUEST_WHATS_NEW_DATA: J,
|
|
70
|
+
RESULT_WHATS_NEW_DATA: Z,
|
|
71
|
+
SET_WHATS_NEW_CACHE: $,
|
|
72
|
+
TOGGLE_WHATS_NEW_NOTIFICATIONS: v,
|
|
73
|
+
TELEMETRY_ERROR: EE,
|
|
74
|
+
SAVE_STORY_REQUEST: RE,
|
|
75
|
+
SAVE_STORY_RESPONSE: _E,
|
|
76
|
+
ARGTYPES_INFO_REQUEST: SE,
|
|
77
|
+
ARGTYPES_INFO_RESPONSE: TE,
|
|
78
|
+
TESTING_MODULE_CRASH_REPORT: NE,
|
|
79
|
+
TESTING_MODULE_PROGRESS_REPORT: OE,
|
|
80
|
+
TESTING_MODULE_RUN_REQUEST: AE,
|
|
81
|
+
TESTING_MODULE_RUN_ALL_REQUEST: rE,
|
|
82
|
+
TESTING_MODULE_CANCEL_TEST_RUN_REQUEST: DE,
|
|
83
|
+
TESTING_MODULE_CANCEL_TEST_RUN_RESPONSE: IE
|
|
84
|
+
} = R;
|
|
85
|
+
export {
|
|
86
|
+
SE as ARGTYPES_INFO_REQUEST,
|
|
87
|
+
TE as ARGTYPES_INFO_RESPONSE,
|
|
88
|
+
T as CHANNEL_CREATED,
|
|
89
|
+
S as CHANNEL_WS_DISCONNECT,
|
|
90
|
+
N as CONFIG_ERROR,
|
|
91
|
+
O as CREATE_NEW_STORYFILE_REQUEST,
|
|
92
|
+
A as CREATE_NEW_STORYFILE_RESPONSE,
|
|
93
|
+
r as CURRENT_STORY_WAS_SET,
|
|
94
|
+
D as DOCS_PREPARED,
|
|
95
|
+
I as DOCS_RENDERED,
|
|
96
|
+
o as FILE_COMPONENT_SEARCH_REQUEST,
|
|
97
|
+
C as FILE_COMPONENT_SEARCH_RESPONSE,
|
|
98
|
+
P as FORCE_REMOUNT,
|
|
99
|
+
L as FORCE_RE_RENDER,
|
|
100
|
+
U as GLOBALS_UPDATED,
|
|
101
|
+
G as NAVIGATE_URL,
|
|
102
|
+
a as PLAY_FUNCTION_THREW_EXCEPTION,
|
|
103
|
+
t as PRELOAD_ENTRIES,
|
|
104
|
+
d as PREVIEW_BUILDER_PROGRESS,
|
|
105
|
+
e as PREVIEW_KEYDOWN,
|
|
106
|
+
H as REGISTER_SUBSCRIPTION,
|
|
107
|
+
J as REQUEST_WHATS_NEW_DATA,
|
|
108
|
+
W as RESET_STORY_ARGS,
|
|
109
|
+
Z as RESULT_WHATS_NEW_DATA,
|
|
110
|
+
RE as SAVE_STORY_REQUEST,
|
|
111
|
+
_E as SAVE_STORY_RESPONSE,
|
|
112
|
+
l as SELECT_STORY,
|
|
113
|
+
i as SET_CONFIG,
|
|
114
|
+
p as SET_CURRENT_STORY,
|
|
115
|
+
F as SET_FILTER,
|
|
116
|
+
u as SET_GLOBALS,
|
|
117
|
+
M as SET_INDEX,
|
|
118
|
+
s as SET_STORIES,
|
|
119
|
+
$ as SET_WHATS_NEW_CACHE,
|
|
120
|
+
y as SHARED_STATE_CHANGED,
|
|
121
|
+
c as SHARED_STATE_SET,
|
|
122
|
+
g as STORIES_COLLAPSE_ALL,
|
|
123
|
+
h as STORIES_EXPAND_ALL,
|
|
124
|
+
f as STORY_ARGS_UPDATED,
|
|
125
|
+
Q as STORY_CHANGED,
|
|
126
|
+
x as STORY_ERRORED,
|
|
127
|
+
q as STORY_FINISHED,
|
|
128
|
+
m as STORY_INDEX_INVALIDATED,
|
|
129
|
+
V as STORY_MISSING,
|
|
130
|
+
w as STORY_PREPARED,
|
|
131
|
+
X as STORY_RENDERED,
|
|
132
|
+
B as STORY_RENDER_PHASE_CHANGED,
|
|
133
|
+
b as STORY_SPECIFIED,
|
|
134
|
+
K as STORY_THREW_EXCEPTION,
|
|
135
|
+
j as STORY_UNCHANGED,
|
|
136
|
+
EE as TELEMETRY_ERROR,
|
|
137
|
+
DE as TESTING_MODULE_CANCEL_TEST_RUN_REQUEST,
|
|
138
|
+
IE as TESTING_MODULE_CANCEL_TEST_RUN_RESPONSE,
|
|
139
|
+
NE as TESTING_MODULE_CRASH_REPORT,
|
|
140
|
+
OE as TESTING_MODULE_PROGRESS_REPORT,
|
|
141
|
+
rE as TESTING_MODULE_RUN_ALL_REQUEST,
|
|
142
|
+
AE as TESTING_MODULE_RUN_REQUEST,
|
|
143
|
+
v as TOGGLE_WHATS_NEW_NOTIFICATIONS,
|
|
144
|
+
Y as UNHANDLED_ERRORS_WHILE_PLAYING,
|
|
145
|
+
k as UPDATE_GLOBALS,
|
|
146
|
+
n as UPDATE_QUERY_PARAMS,
|
|
147
|
+
z as UPDATE_STORY_ARGS,
|
|
148
|
+
_ as default
|
|
149
|
+
};
|