storybook 9.0.0-alpha.1 → 9.0.0-alpha.3

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.
Files changed (214) hide show
  1. package/README.md +31 -29
  2. package/assets/browser/favicon.svg +1 -0
  3. package/assets/browser/nunito-sans-bold-italic.woff2 +0 -0
  4. package/assets/browser/nunito-sans-bold.woff2 +0 -0
  5. package/assets/browser/nunito-sans-italic.woff2 +0 -0
  6. package/assets/browser/nunito-sans-regular.woff2 +0 -0
  7. package/assets/docs/message-reference.png +0 -0
  8. package/assets/server/addon.tsconfig.json +6 -0
  9. package/assets/server/base-preview-body.html +119 -0
  10. package/assets/server/base-preview-head.html +451 -0
  11. package/assets/server/template.ejs +87 -0
  12. package/bin/index.cjs +1 -1
  13. package/dist/babel/index.cjs +54034 -0
  14. package/dist/babel/index.d.ts +7488 -0
  15. package/dist/babel/index.js +54044 -0
  16. package/dist/bin/index.cjs +123 -0
  17. package/dist/bin/index.js +117 -0
  18. package/dist/builder-manager/index.cjs +2167 -0
  19. package/dist/builder-manager/index.d.ts +19 -0
  20. package/dist/builder-manager/index.js +2189 -0
  21. package/dist/channels/index.cjs +1936 -0
  22. package/dist/channels/index.d.ts +108 -0
  23. package/dist/channels/index.js +1883 -0
  24. package/dist/cli/bin/index.cjs +2687 -0
  25. package/dist/cli/bin/index.d.ts +2 -0
  26. package/dist/cli/bin/index.js +2707 -0
  27. package/dist/cli/index.cjs +17327 -0
  28. package/dist/cli/index.d.ts +209 -0
  29. package/dist/cli/index.js +17349 -0
  30. package/dist/client-logger/index.cjs +112 -0
  31. package/dist/client-logger/index.d.ts +29 -0
  32. package/dist/client-logger/index.js +70 -0
  33. package/dist/common/index.cjs +20560 -0
  34. package/dist/common/index.d.ts +954 -0
  35. package/dist/common/index.js +20645 -0
  36. package/dist/components/index.cjs +30056 -0
  37. package/dist/components/index.d.ts +1423 -0
  38. package/dist/components/index.js +25416 -0
  39. package/dist/core-events/index.cjs +167 -0
  40. package/dist/core-events/index.d.ts +313 -0
  41. package/dist/core-events/index.js +149 -0
  42. package/dist/core-server/index.cjs +37870 -0
  43. package/dist/core-server/index.d.ts +462 -0
  44. package/dist/core-server/index.js +37964 -0
  45. package/dist/core-server/presets/common-manager.js +28 -0
  46. package/dist/core-server/presets/common-override-preset.cjs +4824 -0
  47. package/dist/core-server/presets/common-override-preset.js +4829 -0
  48. package/dist/core-server/presets/common-preset.cjs +10228 -0
  49. package/dist/core-server/presets/common-preset.js +10306 -0
  50. package/dist/csf/index.cjs +223 -0
  51. package/dist/csf/index.d.ts +752 -0
  52. package/dist/csf/index.js +216 -0
  53. package/dist/csf-tools/index.cjs +1422 -0
  54. package/dist/csf-tools/index.d.ts +250 -0
  55. package/dist/csf-tools/index.js +1439 -0
  56. package/dist/docs-tools/index.cjs +923 -0
  57. package/dist/docs-tools/index.d.ts +162 -0
  58. package/dist/docs-tools/index.js +909 -0
  59. package/dist/index.cjs +17 -1
  60. package/dist/index.d.ts +1 -1
  61. package/dist/index.js +2 -7
  62. package/dist/instrumenter/index.cjs +3273 -0
  63. package/dist/instrumenter/index.d.ts +104 -0
  64. package/dist/instrumenter/index.js +4800 -0
  65. package/dist/manager/globals-module-info.cjs +666 -0
  66. package/dist/manager/globals-module-info.d.ts +36 -0
  67. package/dist/manager/globals-module-info.js +653 -0
  68. package/dist/manager/globals-runtime.js +41565 -0
  69. package/dist/manager/globals.cjs +43 -0
  70. package/dist/manager/globals.d.ts +21 -0
  71. package/dist/manager/globals.js +30 -0
  72. package/dist/manager/runtime.js +12043 -0
  73. package/dist/manager-api/index.cjs +10770 -0
  74. package/dist/manager-api/index.d.ts +1211 -0
  75. package/dist/manager-api/index.js +4545 -0
  76. package/dist/manager-errors.d.ts +65 -0
  77. package/dist/manager-errors.js +83 -0
  78. package/dist/node-logger/index.cjs +1642 -0
  79. package/dist/node-logger/index.d.ts +117 -0
  80. package/dist/node-logger/index.js +1652 -0
  81. package/dist/preview/globals.cjs +34 -0
  82. package/dist/preview/globals.d.ts +12 -0
  83. package/dist/preview/globals.js +21 -0
  84. package/dist/preview/runtime.js +7721 -0
  85. package/dist/preview-api/index.cjs +5656 -0
  86. package/dist/preview-api/index.d.ts +1356 -0
  87. package/dist/preview-api/index.js +5663 -0
  88. package/dist/preview-errors.cjs +486 -0
  89. package/dist/preview-errors.d.ts +188 -0
  90. package/dist/preview-errors.js +433 -0
  91. package/dist/router/index.cjs +3320 -0
  92. package/dist/router/index.d.ts +385 -0
  93. package/dist/router/index.js +1849 -0
  94. package/dist/server-errors.cjs +710 -0
  95. package/dist/server-errors.d.ts +272 -0
  96. package/dist/server-errors.js +711 -0
  97. package/dist/telemetry/index.cjs +3683 -0
  98. package/dist/telemetry/index.d.ts +112 -0
  99. package/dist/telemetry/index.js +3720 -0
  100. package/dist/test/index.cjs +34915 -0
  101. package/dist/test/index.d.ts +186 -0
  102. package/dist/test/index.js +32798 -0
  103. package/dist/theming/create.cjs +2422 -0
  104. package/dist/theming/create.d.ts +50 -0
  105. package/dist/theming/create.js +990 -0
  106. package/dist/theming/index.cjs +4832 -0
  107. package/dist/theming/index.d.ts +11939 -0
  108. package/dist/theming/index.js +3253 -0
  109. package/dist/types/index.cjs +27 -0
  110. package/dist/types/index.d.ts +2541 -0
  111. package/dist/types/index.js +7 -0
  112. package/package.json +329 -212
  113. package/.eslintrc.cjs +0 -31
  114. package/__mocks__/@aw-web-design/x-default-browser.js +0 -2
  115. package/core/babel/index.cjs +0 -1
  116. package/core/babel/index.d.ts +0 -2
  117. package/core/babel/index.js +0 -1
  118. package/core/builder-manager/index.cjs +0 -1
  119. package/core/builder-manager/index.d.ts +0 -2
  120. package/core/builder-manager/index.js +0 -1
  121. package/core/channels/index.cjs +0 -1
  122. package/core/channels/index.d.ts +0 -2
  123. package/core/channels/index.js +0 -1
  124. package/core/cli/bin/index.cjs +0 -1
  125. package/core/cli/bin/index.d.ts +0 -2
  126. package/core/cli/bin/index.js +0 -1
  127. package/core/cli/index.cjs +0 -1
  128. package/core/cli/index.d.ts +0 -2
  129. package/core/cli/index.js +0 -1
  130. package/core/client-logger/index.cjs +0 -1
  131. package/core/client-logger/index.d.ts +0 -2
  132. package/core/client-logger/index.js +0 -1
  133. package/core/common/index.cjs +0 -1
  134. package/core/common/index.d.ts +0 -2
  135. package/core/common/index.js +0 -1
  136. package/core/components/index.cjs +0 -1
  137. package/core/components/index.d.ts +0 -2
  138. package/core/components/index.js +0 -1
  139. package/core/core-events/index.cjs +0 -1
  140. package/core/core-events/index.d.ts +0 -2
  141. package/core/core-events/index.js +0 -1
  142. package/core/core-server/index.cjs +0 -1
  143. package/core/core-server/index.d.ts +0 -2
  144. package/core/core-server/index.js +0 -1
  145. package/core/core-server/presets/common-manager.js +0 -1
  146. package/core/core-server/presets/common-override-preset.cjs +0 -1
  147. package/core/core-server/presets/common-override-preset.js +0 -1
  148. package/core/core-server/presets/common-preset.cjs +0 -1
  149. package/core/core-server/presets/common-preset.js +0 -1
  150. package/core/csf/index.cjs +0 -1
  151. package/core/csf/index.d.ts +0 -2
  152. package/core/csf/index.js +0 -1
  153. package/core/csf-tools/index.cjs +0 -1
  154. package/core/csf-tools/index.d.ts +0 -2
  155. package/core/csf-tools/index.js +0 -1
  156. package/core/docs-tools/index.cjs +0 -1
  157. package/core/docs-tools/index.d.ts +0 -2
  158. package/core/docs-tools/index.js +0 -1
  159. package/core/index.cjs +0 -1
  160. package/core/index.d.ts +0 -2
  161. package/core/index.js +0 -1
  162. package/core/manager/globals-module-info.cjs +0 -1
  163. package/core/manager/globals-module-info.d.ts +0 -2
  164. package/core/manager/globals-module-info.js +0 -1
  165. package/core/manager/globals-runtime.js +0 -1
  166. package/core/manager/globals.cjs +0 -1
  167. package/core/manager/globals.d.ts +0 -2
  168. package/core/manager/globals.js +0 -1
  169. package/core/manager-api/index.cjs +0 -1
  170. package/core/manager-api/index.d.ts +0 -2
  171. package/core/manager-api/index.js +0 -1
  172. package/core/manager-errors.d.ts +0 -2
  173. package/core/manager-errors.js +0 -1
  174. package/core/node-logger/index.cjs +0 -1
  175. package/core/node-logger/index.d.ts +0 -2
  176. package/core/node-logger/index.js +0 -1
  177. package/core/preview/globals.cjs +0 -1
  178. package/core/preview/globals.d.ts +0 -2
  179. package/core/preview/globals.js +0 -1
  180. package/core/preview/runtime.js +0 -1
  181. package/core/preview-api/index.cjs +0 -1
  182. package/core/preview-api/index.d.ts +0 -2
  183. package/core/preview-api/index.js +0 -1
  184. package/core/preview-errors.cjs +0 -1
  185. package/core/preview-errors.d.ts +0 -2
  186. package/core/preview-errors.js +0 -1
  187. package/core/router/index.cjs +0 -1
  188. package/core/router/index.d.ts +0 -2
  189. package/core/router/index.js +0 -1
  190. package/core/server-errors.cjs +0 -1
  191. package/core/server-errors.d.ts +0 -2
  192. package/core/server-errors.js +0 -1
  193. package/core/telemetry/index.cjs +0 -1
  194. package/core/telemetry/index.d.ts +0 -2
  195. package/core/telemetry/index.js +0 -1
  196. package/core/theming/create.cjs +0 -1
  197. package/core/theming/create.d.ts +0 -2
  198. package/core/theming/create.js +0 -1
  199. package/core/theming/index.cjs +0 -1
  200. package/core/theming/index.d.ts +0 -2
  201. package/core/theming/index.js +0 -1
  202. package/core/types/index.cjs +0 -1
  203. package/core/types/index.d.ts +0 -2
  204. package/core/types/index.js +0 -1
  205. package/core.cjs +0 -0
  206. package/core.d.ts +0 -0
  207. package/core.js +0 -1
  208. package/dist/chunk-OWLSIX54.js +0 -8
  209. package/dist/core-path.cjs +0 -1
  210. package/dist/core-path.d.ts +0 -3
  211. package/dist/core-path.js +0 -9
  212. package/dist/proxy.cjs +0 -1
  213. package/dist/proxy.d.ts +0 -2
  214. package/dist/proxy.js +0 -9
@@ -0,0 +1,653 @@
1
+ import ESM_COMPAT_Module from "node:module";
2
+ import { fileURLToPath as ESM_COMPAT_fileURLToPath } from 'node:url';
3
+ import { dirname as ESM_COMPAT_dirname } from 'node:path';
4
+ const __filename = ESM_COMPAT_fileURLToPath(import.meta.url);
5
+ const __dirname = ESM_COMPAT_dirname(__filename);
6
+ const require = ESM_COMPAT_Module.createRequire(import.meta.url);
7
+
8
+ // src/manager/globals/exports.ts
9
+ var r = {
10
+ react: [
11
+ "Children",
12
+ "Component",
13
+ "Fragment",
14
+ "Profiler",
15
+ "PureComponent",
16
+ "StrictMode",
17
+ "Suspense",
18
+ "__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED",
19
+ "cloneElement",
20
+ "createContext",
21
+ "createElement",
22
+ "createFactory",
23
+ "createRef",
24
+ "forwardRef",
25
+ "isValidElement",
26
+ "lazy",
27
+ "memo",
28
+ "startTransition",
29
+ "unstable_act",
30
+ "useCallback",
31
+ "useContext",
32
+ "useDebugValue",
33
+ "useDeferredValue",
34
+ "useEffect",
35
+ "useId",
36
+ "useImperativeHandle",
37
+ "useInsertionEffect",
38
+ "useLayoutEffect",
39
+ "useMemo",
40
+ "useReducer",
41
+ "useRef",
42
+ "useState",
43
+ "useSyncExternalStore",
44
+ "useTransition",
45
+ "version"
46
+ ],
47
+ "react-dom": [
48
+ "__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED",
49
+ "createPortal",
50
+ "createRoot",
51
+ "findDOMNode",
52
+ "flushSync",
53
+ "hydrate",
54
+ "hydrateRoot",
55
+ "render",
56
+ "unmountComponentAtNode",
57
+ "unstable_batchedUpdates",
58
+ "unstable_renderSubtreeIntoContainer",
59
+ "version"
60
+ ],
61
+ "react-dom/client": ["createRoot", "hydrateRoot"],
62
+ "@storybook/icons": [
63
+ "AccessibilityAltIcon",
64
+ "AccessibilityIcon",
65
+ "AccessibilityIgnoredIcon",
66
+ "AddIcon",
67
+ "AdminIcon",
68
+ "AlertAltIcon",
69
+ "AlertIcon",
70
+ "AlignLeftIcon",
71
+ "AlignRightIcon",
72
+ "AppleIcon",
73
+ "ArrowBottomLeftIcon",
74
+ "ArrowBottomRightIcon",
75
+ "ArrowDownIcon",
76
+ "ArrowLeftIcon",
77
+ "ArrowRightIcon",
78
+ "ArrowSolidDownIcon",
79
+ "ArrowSolidLeftIcon",
80
+ "ArrowSolidRightIcon",
81
+ "ArrowSolidUpIcon",
82
+ "ArrowTopLeftIcon",
83
+ "ArrowTopRightIcon",
84
+ "ArrowUpIcon",
85
+ "AzureDevOpsIcon",
86
+ "BackIcon",
87
+ "BasketIcon",
88
+ "BatchAcceptIcon",
89
+ "BatchDenyIcon",
90
+ "BeakerIcon",
91
+ "BellIcon",
92
+ "BitbucketIcon",
93
+ "BoldIcon",
94
+ "BookIcon",
95
+ "BookmarkHollowIcon",
96
+ "BookmarkIcon",
97
+ "BottomBarIcon",
98
+ "BottomBarToggleIcon",
99
+ "BoxIcon",
100
+ "BranchIcon",
101
+ "BrowserIcon",
102
+ "ButtonIcon",
103
+ "CPUIcon",
104
+ "CalendarIcon",
105
+ "CameraIcon",
106
+ "CameraStabilizeIcon",
107
+ "CategoryIcon",
108
+ "CertificateIcon",
109
+ "ChangedIcon",
110
+ "ChatIcon",
111
+ "CheckIcon",
112
+ "ChevronDownIcon",
113
+ "ChevronLeftIcon",
114
+ "ChevronRightIcon",
115
+ "ChevronSmallDownIcon",
116
+ "ChevronSmallLeftIcon",
117
+ "ChevronSmallRightIcon",
118
+ "ChevronSmallUpIcon",
119
+ "ChevronUpIcon",
120
+ "ChromaticIcon",
121
+ "ChromeIcon",
122
+ "CircleHollowIcon",
123
+ "CircleIcon",
124
+ "ClearIcon",
125
+ "CloseAltIcon",
126
+ "CloseIcon",
127
+ "CloudHollowIcon",
128
+ "CloudIcon",
129
+ "CogIcon",
130
+ "CollapseIcon",
131
+ "CommandIcon",
132
+ "CommentAddIcon",
133
+ "CommentIcon",
134
+ "CommentsIcon",
135
+ "CommitIcon",
136
+ "CompassIcon",
137
+ "ComponentDrivenIcon",
138
+ "ComponentIcon",
139
+ "ContrastIcon",
140
+ "ContrastIgnoredIcon",
141
+ "ControlsIcon",
142
+ "CopyIcon",
143
+ "CreditIcon",
144
+ "CrossIcon",
145
+ "DashboardIcon",
146
+ "DatabaseIcon",
147
+ "DeleteIcon",
148
+ "DiamondIcon",
149
+ "DirectionIcon",
150
+ "DiscordIcon",
151
+ "DocChartIcon",
152
+ "DocListIcon",
153
+ "DocumentIcon",
154
+ "DownloadIcon",
155
+ "DragIcon",
156
+ "EditIcon",
157
+ "EllipsisIcon",
158
+ "EmailIcon",
159
+ "ExpandAltIcon",
160
+ "ExpandIcon",
161
+ "EyeCloseIcon",
162
+ "EyeIcon",
163
+ "FaceHappyIcon",
164
+ "FaceNeutralIcon",
165
+ "FaceSadIcon",
166
+ "FacebookIcon",
167
+ "FailedIcon",
168
+ "FastForwardIcon",
169
+ "FigmaIcon",
170
+ "FilterIcon",
171
+ "FlagIcon",
172
+ "FolderIcon",
173
+ "FormIcon",
174
+ "GDriveIcon",
175
+ "GithubIcon",
176
+ "GitlabIcon",
177
+ "GlobeIcon",
178
+ "GoogleIcon",
179
+ "GraphBarIcon",
180
+ "GraphLineIcon",
181
+ "GraphqlIcon",
182
+ "GridAltIcon",
183
+ "GridIcon",
184
+ "GrowIcon",
185
+ "HeartHollowIcon",
186
+ "HeartIcon",
187
+ "HomeIcon",
188
+ "HourglassIcon",
189
+ "InfoIcon",
190
+ "ItalicIcon",
191
+ "JumpToIcon",
192
+ "KeyIcon",
193
+ "LightningIcon",
194
+ "LightningOffIcon",
195
+ "LinkBrokenIcon",
196
+ "LinkIcon",
197
+ "LinkedinIcon",
198
+ "LinuxIcon",
199
+ "ListOrderedIcon",
200
+ "ListUnorderedIcon",
201
+ "LocationIcon",
202
+ "LockIcon",
203
+ "MarkdownIcon",
204
+ "MarkupIcon",
205
+ "MediumIcon",
206
+ "MemoryIcon",
207
+ "MenuIcon",
208
+ "MergeIcon",
209
+ "MirrorIcon",
210
+ "MobileIcon",
211
+ "MoonIcon",
212
+ "NutIcon",
213
+ "OutboxIcon",
214
+ "OutlineIcon",
215
+ "PaintBrushIcon",
216
+ "PaperClipIcon",
217
+ "ParagraphIcon",
218
+ "PassedIcon",
219
+ "PhoneIcon",
220
+ "PhotoDragIcon",
221
+ "PhotoIcon",
222
+ "PhotoStabilizeIcon",
223
+ "PinAltIcon",
224
+ "PinIcon",
225
+ "PlayAllHollowIcon",
226
+ "PlayBackIcon",
227
+ "PlayHollowIcon",
228
+ "PlayIcon",
229
+ "PlayNextIcon",
230
+ "PlusIcon",
231
+ "PointerDefaultIcon",
232
+ "PointerHandIcon",
233
+ "PowerIcon",
234
+ "PrintIcon",
235
+ "ProceedIcon",
236
+ "ProfileIcon",
237
+ "PullRequestIcon",
238
+ "QuestionIcon",
239
+ "RSSIcon",
240
+ "RedirectIcon",
241
+ "ReduxIcon",
242
+ "RefreshIcon",
243
+ "ReplyIcon",
244
+ "RepoIcon",
245
+ "RequestChangeIcon",
246
+ "RewindIcon",
247
+ "RulerIcon",
248
+ "SaveIcon",
249
+ "SearchIcon",
250
+ "ShareAltIcon",
251
+ "ShareIcon",
252
+ "ShieldIcon",
253
+ "SideBySideIcon",
254
+ "SidebarAltIcon",
255
+ "SidebarAltToggleIcon",
256
+ "SidebarIcon",
257
+ "SidebarToggleIcon",
258
+ "SpeakerIcon",
259
+ "StackedIcon",
260
+ "StarHollowIcon",
261
+ "StarIcon",
262
+ "StatusFailIcon",
263
+ "StatusIcon",
264
+ "StatusPassIcon",
265
+ "StatusWarnIcon",
266
+ "StickerIcon",
267
+ "StopAltHollowIcon",
268
+ "StopAltIcon",
269
+ "StopIcon",
270
+ "StorybookIcon",
271
+ "StructureIcon",
272
+ "SubtractIcon",
273
+ "SunIcon",
274
+ "SupportIcon",
275
+ "SwitchAltIcon",
276
+ "SyncIcon",
277
+ "TabletIcon",
278
+ "ThumbsUpIcon",
279
+ "TimeIcon",
280
+ "TimerIcon",
281
+ "TransferIcon",
282
+ "TrashIcon",
283
+ "TwitterIcon",
284
+ "TypeIcon",
285
+ "UbuntuIcon",
286
+ "UndoIcon",
287
+ "UnfoldIcon",
288
+ "UnlockIcon",
289
+ "UnpinIcon",
290
+ "UploadIcon",
291
+ "UserAddIcon",
292
+ "UserAltIcon",
293
+ "UserIcon",
294
+ "UsersIcon",
295
+ "VSCodeIcon",
296
+ "VerifiedIcon",
297
+ "VideoIcon",
298
+ "WandIcon",
299
+ "WatchIcon",
300
+ "WindowsIcon",
301
+ "WrenchIcon",
302
+ "XIcon",
303
+ "YoutubeIcon",
304
+ "ZoomIcon",
305
+ "ZoomOutIcon",
306
+ "ZoomResetIcon",
307
+ "iconList"
308
+ ],
309
+ "storybook/internal/components": [
310
+ "A",
311
+ "ActionBar",
312
+ "AddonPanel",
313
+ "Badge",
314
+ "Bar",
315
+ "Blockquote",
316
+ "Button",
317
+ "ClipboardCode",
318
+ "Code",
319
+ "DL",
320
+ "Div",
321
+ "DocumentWrapper",
322
+ "EmptyTabContent",
323
+ "ErrorFormatter",
324
+ "FlexBar",
325
+ "Form",
326
+ "H1",
327
+ "H2",
328
+ "H3",
329
+ "H4",
330
+ "H5",
331
+ "H6",
332
+ "HR",
333
+ "IconButton",
334
+ "IconButtonSkeleton",
335
+ "Icons",
336
+ "Img",
337
+ "LI",
338
+ "Link",
339
+ "ListItem",
340
+ "Loader",
341
+ "Modal",
342
+ "OL",
343
+ "P",
344
+ "Placeholder",
345
+ "Pre",
346
+ "ProgressSpinner",
347
+ "ResetWrapper",
348
+ "ScrollArea",
349
+ "Separator",
350
+ "Spaced",
351
+ "Span",
352
+ "StorybookIcon",
353
+ "StorybookLogo",
354
+ "Symbols",
355
+ "SyntaxHighlighter",
356
+ "TT",
357
+ "TabBar",
358
+ "TabButton",
359
+ "TabWrapper",
360
+ "Table",
361
+ "Tabs",
362
+ "TabsState",
363
+ "TooltipLinkList",
364
+ "TooltipMessage",
365
+ "TooltipNote",
366
+ "UL",
367
+ "WithTooltip",
368
+ "WithTooltipPure",
369
+ "Zoom",
370
+ "codeCommon",
371
+ "components",
372
+ "createCopyToClipboardFunction",
373
+ "getStoryHref",
374
+ "icons",
375
+ "interleaveSeparators",
376
+ "nameSpaceClassNames",
377
+ "resetComponents",
378
+ "withReset"
379
+ ],
380
+ "storybook/internal/manager-api": [
381
+ "ActiveTabs",
382
+ "Consumer",
383
+ "ManagerContext",
384
+ "Provider",
385
+ "RequestResponseError",
386
+ "addons",
387
+ "combineParameters",
388
+ "controlOrMetaKey",
389
+ "controlOrMetaSymbol",
390
+ "eventMatchesShortcut",
391
+ "eventToShortcut",
392
+ "experimental_MockUniversalStore",
393
+ "experimental_UniversalStore",
394
+ "experimental_requestResponse",
395
+ "experimental_useUniversalStore",
396
+ "isMacLike",
397
+ "isShortcutTaken",
398
+ "keyToSymbol",
399
+ "merge",
400
+ "mockChannel",
401
+ "optionOrAltSymbol",
402
+ "shortcutMatchesShortcut",
403
+ "shortcutToHumanString",
404
+ "types",
405
+ "useAddonState",
406
+ "useArgTypes",
407
+ "useArgs",
408
+ "useChannel",
409
+ "useGlobalTypes",
410
+ "useGlobals",
411
+ "useParameter",
412
+ "useSharedState",
413
+ "useStoryPrepared",
414
+ "useStorybookApi",
415
+ "useStorybookState"
416
+ ],
417
+ "storybook/internal/router": [
418
+ "BaseLocationProvider",
419
+ "DEEPLY_EQUAL",
420
+ "Link",
421
+ "Location",
422
+ "LocationProvider",
423
+ "Match",
424
+ "Route",
425
+ "buildArgsParam",
426
+ "deepDiff",
427
+ "getMatch",
428
+ "parsePath",
429
+ "queryFromLocation",
430
+ "stringifyQuery",
431
+ "useNavigate"
432
+ ],
433
+ "@storybook/router": [
434
+ "BaseLocationProvider",
435
+ "DEEPLY_EQUAL",
436
+ "Link",
437
+ "Location",
438
+ "LocationProvider",
439
+ "Match",
440
+ "Route",
441
+ "buildArgsParam",
442
+ "deepDiff",
443
+ "getMatch",
444
+ "parsePath",
445
+ "queryFromLocation",
446
+ "stringifyQuery",
447
+ "useNavigate"
448
+ ],
449
+ "storybook/internal/theming": [
450
+ "CacheProvider",
451
+ "ClassNames",
452
+ "Global",
453
+ "ThemeProvider",
454
+ "background",
455
+ "color",
456
+ "convert",
457
+ "create",
458
+ "createCache",
459
+ "createGlobal",
460
+ "createReset",
461
+ "css",
462
+ "darken",
463
+ "ensure",
464
+ "ignoreSsrWarning",
465
+ "isPropValid",
466
+ "jsx",
467
+ "keyframes",
468
+ "lighten",
469
+ "styled",
470
+ "themes",
471
+ "typography",
472
+ "useTheme",
473
+ "withTheme"
474
+ ],
475
+ "storybook/internal/theming/create": ["create", "themes"],
476
+ "storybook/internal/channels": [
477
+ "Channel",
478
+ "HEARTBEAT_INTERVAL",
479
+ "HEARTBEAT_MAX_LATENCY",
480
+ "PostMessageTransport",
481
+ "WebsocketTransport",
482
+ "createBrowserChannel"
483
+ ],
484
+ "storybook/internal/core-errors": [
485
+ "ARGTYPES_INFO_REQUEST",
486
+ "ARGTYPES_INFO_RESPONSE",
487
+ "CHANNEL_CREATED",
488
+ "CHANNEL_WS_DISCONNECT",
489
+ "CONFIG_ERROR",
490
+ "CREATE_NEW_STORYFILE_REQUEST",
491
+ "CREATE_NEW_STORYFILE_RESPONSE",
492
+ "CURRENT_STORY_WAS_SET",
493
+ "DOCS_PREPARED",
494
+ "DOCS_RENDERED",
495
+ "FILE_COMPONENT_SEARCH_REQUEST",
496
+ "FILE_COMPONENT_SEARCH_RESPONSE",
497
+ "FORCE_REMOUNT",
498
+ "FORCE_RE_RENDER",
499
+ "GLOBALS_UPDATED",
500
+ "NAVIGATE_URL",
501
+ "PLAY_FUNCTION_THREW_EXCEPTION",
502
+ "PRELOAD_ENTRIES",
503
+ "PREVIEW_BUILDER_PROGRESS",
504
+ "PREVIEW_KEYDOWN",
505
+ "REGISTER_SUBSCRIPTION",
506
+ "REQUEST_WHATS_NEW_DATA",
507
+ "RESET_STORY_ARGS",
508
+ "RESULT_WHATS_NEW_DATA",
509
+ "SAVE_STORY_REQUEST",
510
+ "SAVE_STORY_RESPONSE",
511
+ "SELECT_STORY",
512
+ "SET_CONFIG",
513
+ "SET_CURRENT_STORY",
514
+ "SET_FILTER",
515
+ "SET_GLOBALS",
516
+ "SET_INDEX",
517
+ "SET_STORIES",
518
+ "SET_WHATS_NEW_CACHE",
519
+ "SHARED_STATE_CHANGED",
520
+ "SHARED_STATE_SET",
521
+ "STORIES_COLLAPSE_ALL",
522
+ "STORIES_EXPAND_ALL",
523
+ "STORY_ARGS_UPDATED",
524
+ "STORY_CHANGED",
525
+ "STORY_ERRORED",
526
+ "STORY_FINISHED",
527
+ "STORY_INDEX_INVALIDATED",
528
+ "STORY_MISSING",
529
+ "STORY_PREPARED",
530
+ "STORY_RENDERED",
531
+ "STORY_RENDER_PHASE_CHANGED",
532
+ "STORY_SPECIFIED",
533
+ "STORY_THREW_EXCEPTION",
534
+ "STORY_UNCHANGED",
535
+ "TELEMETRY_ERROR",
536
+ "TESTING_MODULE_CANCEL_TEST_RUN_REQUEST",
537
+ "TESTING_MODULE_CANCEL_TEST_RUN_RESPONSE",
538
+ "TESTING_MODULE_CRASH_REPORT",
539
+ "TESTING_MODULE_PROGRESS_REPORT",
540
+ "TESTING_MODULE_RUN_ALL_REQUEST",
541
+ "TESTING_MODULE_RUN_REQUEST",
542
+ "TOGGLE_WHATS_NEW_NOTIFICATIONS",
543
+ "UNHANDLED_ERRORS_WHILE_PLAYING",
544
+ "UPDATE_GLOBALS",
545
+ "UPDATE_QUERY_PARAMS",
546
+ "UPDATE_STORY_ARGS"
547
+ ],
548
+ "storybook/internal/core-events": [
549
+ "ARGTYPES_INFO_REQUEST",
550
+ "ARGTYPES_INFO_RESPONSE",
551
+ "CHANNEL_CREATED",
552
+ "CHANNEL_WS_DISCONNECT",
553
+ "CONFIG_ERROR",
554
+ "CREATE_NEW_STORYFILE_REQUEST",
555
+ "CREATE_NEW_STORYFILE_RESPONSE",
556
+ "CURRENT_STORY_WAS_SET",
557
+ "DOCS_PREPARED",
558
+ "DOCS_RENDERED",
559
+ "FILE_COMPONENT_SEARCH_REQUEST",
560
+ "FILE_COMPONENT_SEARCH_RESPONSE",
561
+ "FORCE_REMOUNT",
562
+ "FORCE_RE_RENDER",
563
+ "GLOBALS_UPDATED",
564
+ "NAVIGATE_URL",
565
+ "PLAY_FUNCTION_THREW_EXCEPTION",
566
+ "PRELOAD_ENTRIES",
567
+ "PREVIEW_BUILDER_PROGRESS",
568
+ "PREVIEW_KEYDOWN",
569
+ "REGISTER_SUBSCRIPTION",
570
+ "REQUEST_WHATS_NEW_DATA",
571
+ "RESET_STORY_ARGS",
572
+ "RESULT_WHATS_NEW_DATA",
573
+ "SAVE_STORY_REQUEST",
574
+ "SAVE_STORY_RESPONSE",
575
+ "SELECT_STORY",
576
+ "SET_CONFIG",
577
+ "SET_CURRENT_STORY",
578
+ "SET_FILTER",
579
+ "SET_GLOBALS",
580
+ "SET_INDEX",
581
+ "SET_STORIES",
582
+ "SET_WHATS_NEW_CACHE",
583
+ "SHARED_STATE_CHANGED",
584
+ "SHARED_STATE_SET",
585
+ "STORIES_COLLAPSE_ALL",
586
+ "STORIES_EXPAND_ALL",
587
+ "STORY_ARGS_UPDATED",
588
+ "STORY_CHANGED",
589
+ "STORY_ERRORED",
590
+ "STORY_FINISHED",
591
+ "STORY_INDEX_INVALIDATED",
592
+ "STORY_MISSING",
593
+ "STORY_PREPARED",
594
+ "STORY_RENDERED",
595
+ "STORY_RENDER_PHASE_CHANGED",
596
+ "STORY_SPECIFIED",
597
+ "STORY_THREW_EXCEPTION",
598
+ "STORY_UNCHANGED",
599
+ "TELEMETRY_ERROR",
600
+ "TESTING_MODULE_CANCEL_TEST_RUN_REQUEST",
601
+ "TESTING_MODULE_CANCEL_TEST_RUN_RESPONSE",
602
+ "TESTING_MODULE_CRASH_REPORT",
603
+ "TESTING_MODULE_PROGRESS_REPORT",
604
+ "TESTING_MODULE_RUN_ALL_REQUEST",
605
+ "TESTING_MODULE_RUN_REQUEST",
606
+ "TOGGLE_WHATS_NEW_NOTIFICATIONS",
607
+ "UNHANDLED_ERRORS_WHILE_PLAYING",
608
+ "UPDATE_GLOBALS",
609
+ "UPDATE_QUERY_PARAMS",
610
+ "UPDATE_STORY_ARGS"
611
+ ],
612
+ "storybook/internal/types": ["Addon_TypesEnum"],
613
+ "storybook/internal/manager-errors": [
614
+ "Category",
615
+ "ProviderDoesNotExtendBaseProviderError",
616
+ "UncaughtManagerError"
617
+ ],
618
+ "storybook/internal/client-logger": ["deprecate", "logger", "once", "pretty"]
619
+ };
620
+
621
+ // src/manager/globals/globals.ts
622
+ var e = {
623
+ react: "__REACT__",
624
+ "react-dom": "__REACT_DOM__",
625
+ "react-dom/client": "__REACT_DOM_CLIENT__",
626
+ "@storybook/icons": "__STORYBOOK_ICONS__",
627
+ "storybook/internal/manager-api": "__STORYBOOK_API__",
628
+ "storybook/internal/components": "__STORYBOOK_COMPONENTS__",
629
+ "storybook/internal/channels": "__STORYBOOK_CHANNELS__",
630
+ "storybook/internal/core-errors": "__STORYBOOK_CORE_EVENTS__",
631
+ "storybook/internal/core-events": "__STORYBOOK_CORE_EVENTS__",
632
+ "storybook/internal/manager-errors": "__STORYBOOK_CORE_EVENTS_MANAGER_ERRORS__",
633
+ "storybook/internal/router": "__STORYBOOK_ROUTER__",
634
+ "@storybook/router": "__STORYBOOK_ROUTER__",
635
+ "storybook/internal/theming": "__STORYBOOK_THEMING__",
636
+ "storybook/internal/theming/create": "__STORYBOOK_THEMING_CREATE__",
637
+ "storybook/internal/client-logger": "__STORYBOOK_CLIENT_LOGGER__",
638
+ "storybook/internal/types": "__STORYBOOK_TYPES__"
639
+ }, t = Object.keys(e);
640
+
641
+ // src/manager/globals/globals-module-info.ts
642
+ var a = t.reduce(
643
+ (n, o) => (n[o] = {
644
+ type: "esm",
645
+ varName: e[o],
646
+ namedExports: r[o],
647
+ defaultExport: !0
648
+ }, n),
649
+ {}
650
+ );
651
+ export {
652
+ a as globalsModuleInfoMap
653
+ };