storybook 9.0.0-alpha.1 → 9.0.0-alpha.11

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 (267) 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/addon-controls-args-annotated.png +0 -0
  8. package/assets/docs/addon-controls-args-background-color.png +0 -0
  9. package/assets/docs/addon-controls-args-background-string.png +0 -0
  10. package/assets/docs/addon-controls-args-docs.png +0 -0
  11. package/assets/docs/addon-controls-args-logging.png +0 -0
  12. package/assets/docs/addon-controls-args-no-annotation.png +0 -0
  13. package/assets/docs/addon-controls-args-reflow-slider.png +0 -0
  14. package/assets/docs/addon-controls-args-reflow.png +0 -0
  15. package/assets/docs/addon-controls-args-template.png +0 -0
  16. package/assets/docs/addon-controls-expanded.png +0 -0
  17. package/assets/docs/addon-controls-hero.gif +0 -0
  18. package/assets/docs/addon-controls-install.png +0 -0
  19. package/assets/docs/hero.gif +0 -0
  20. package/assets/docs/message-reference.png +0 -0
  21. package/assets/docs/viewport.png +0 -0
  22. package/assets/server/addon.tsconfig.json +6 -0
  23. package/assets/server/base-preview-body.html +119 -0
  24. package/assets/server/base-preview-head.html +451 -0
  25. package/assets/server/template.ejs +87 -0
  26. package/bin/index.cjs +1 -1
  27. package/dist/actions/decorator.d.ts +6 -0
  28. package/dist/actions/decorator.js +139 -0
  29. package/dist/actions/index.cjs +127 -0
  30. package/dist/actions/index.d.ts +105 -0
  31. package/dist/actions/index.js +112 -0
  32. package/dist/actions/manager.js +1196 -0
  33. package/dist/actions/preview.cjs +165 -0
  34. package/dist/actions/preview.d.ts +55 -0
  35. package/dist/actions/preview.js +156 -0
  36. package/dist/babel/index.cjs +54034 -0
  37. package/dist/babel/index.d.ts +7488 -0
  38. package/dist/babel/index.js +54044 -0
  39. package/dist/bin/index.cjs +118 -0
  40. package/dist/bin/index.js +112 -0
  41. package/dist/builder-manager/index.cjs +2140 -0
  42. package/dist/builder-manager/index.d.ts +19 -0
  43. package/dist/builder-manager/index.js +2162 -0
  44. package/dist/channels/index.cjs +1913 -0
  45. package/dist/channels/index.d.ts +108 -0
  46. package/dist/channels/index.js +1881 -0
  47. package/dist/cli/bin/index.cjs +2687 -0
  48. package/dist/cli/bin/index.d.ts +2 -0
  49. package/dist/cli/bin/index.js +2707 -0
  50. package/dist/cli/index.cjs +17327 -0
  51. package/dist/cli/index.d.ts +209 -0
  52. package/dist/cli/index.js +17349 -0
  53. package/dist/client-logger/index.cjs +80 -0
  54. package/dist/client-logger/index.d.ts +29 -0
  55. package/dist/client-logger/index.js +64 -0
  56. package/dist/common/index.cjs +20568 -0
  57. package/dist/common/index.d.ts +948 -0
  58. package/dist/common/index.js +20653 -0
  59. package/dist/component-testing/index.cjs +23 -0
  60. package/dist/component-testing/index.d.ts +3 -0
  61. package/dist/component-testing/index.js +5 -0
  62. package/dist/component-testing/manager.css +170 -0
  63. package/dist/component-testing/manager.js +3099 -0
  64. package/dist/component-testing/preview.cjs +40 -0
  65. package/dist/component-testing/preview.d.ts +5 -0
  66. package/dist/component-testing/preview.js +25 -0
  67. package/dist/components/index.cjs +27925 -0
  68. package/dist/components/index.d.ts +1423 -0
  69. package/dist/components/index.js +24674 -0
  70. package/dist/controls/decorator.d.ts +5 -0
  71. package/dist/controls/decorator.js +8 -0
  72. package/dist/controls/index.cjs +26 -0
  73. package/dist/controls/index.d.ts +39 -0
  74. package/dist/controls/index.js +6 -0
  75. package/dist/controls/manager.js +5545 -0
  76. package/dist/controls/preview.cjs +26 -0
  77. package/dist/controls/preview.d.ts +55 -0
  78. package/dist/controls/preview.js +9 -0
  79. package/dist/core-events/index.cjs +167 -0
  80. package/dist/core-events/index.d.ts +426 -0
  81. package/dist/core-events/index.js +149 -0
  82. package/dist/core-server/index.cjs +38183 -0
  83. package/dist/core-server/index.d.ts +720 -0
  84. package/dist/core-server/index.js +38272 -0
  85. package/dist/core-server/presets/common-manager.js +20 -0
  86. package/dist/core-server/presets/common-override-preset.cjs +4824 -0
  87. package/dist/core-server/presets/common-override-preset.js +4829 -0
  88. package/dist/core-server/presets/common-preset.cjs +10231 -0
  89. package/dist/core-server/presets/common-preset.js +10309 -0
  90. package/dist/csf/index.cjs +179 -0
  91. package/dist/csf/index.d.ts +750 -0
  92. package/dist/csf/index.js +172 -0
  93. package/dist/csf-tools/index.cjs +1422 -0
  94. package/dist/csf-tools/index.d.ts +250 -0
  95. package/dist/csf-tools/index.js +1439 -0
  96. package/dist/docs-tools/index.cjs +2891 -0
  97. package/dist/docs-tools/index.d.ts +162 -0
  98. package/dist/docs-tools/index.js +2876 -0
  99. package/dist/index.cjs +17 -1
  100. package/dist/index.d.ts +1 -1
  101. package/dist/index.js +2 -7
  102. package/dist/instrumenter/index.cjs +3492 -0
  103. package/dist/instrumenter/index.d.ts +104 -0
  104. package/dist/instrumenter/index.js +4964 -0
  105. package/dist/manager/globals-module-info.cjs +817 -0
  106. package/dist/manager/globals-module-info.d.ts +36 -0
  107. package/dist/manager/globals-module-info.js +804 -0
  108. package/dist/manager/globals-runtime.js +83389 -0
  109. package/dist/manager/globals.cjs +47 -0
  110. package/dist/manager/globals.d.ts +24 -0
  111. package/dist/manager/globals.js +34 -0
  112. package/dist/manager/runtime.js +12323 -0
  113. package/dist/manager-api/index.cjs +11074 -0
  114. package/dist/manager-api/index.d.ts +1512 -0
  115. package/dist/manager-api/index.js +4835 -0
  116. package/dist/manager-errors.d.ts +89 -0
  117. package/dist/manager-errors.js +99 -0
  118. package/dist/node-logger/index.cjs +1642 -0
  119. package/dist/node-logger/index.d.ts +117 -0
  120. package/dist/node-logger/index.js +1652 -0
  121. package/dist/preview/globals.cjs +38 -0
  122. package/dist/preview/globals.d.ts +15 -0
  123. package/dist/preview/globals.js +25 -0
  124. package/dist/preview/runtime.js +44921 -0
  125. package/dist/preview-api/index.cjs +5227 -0
  126. package/dist/preview-api/index.d.ts +1093 -0
  127. package/dist/preview-api/index.js +5295 -0
  128. package/dist/preview-errors.cjs +503 -0
  129. package/dist/preview-errors.d.ts +212 -0
  130. package/dist/preview-errors.js +449 -0
  131. package/dist/router/index.cjs +3296 -0
  132. package/dist/router/index.d.ts +385 -0
  133. package/dist/router/index.js +1843 -0
  134. package/dist/server-errors.cjs +727 -0
  135. package/dist/server-errors.d.ts +296 -0
  136. package/dist/server-errors.js +728 -0
  137. package/dist/telemetry/index.cjs +2756 -0
  138. package/dist/telemetry/index.d.ts +133 -0
  139. package/dist/telemetry/index.js +2797 -0
  140. package/dist/test/index.cjs +35685 -0
  141. package/dist/test/index.d.ts +186 -0
  142. package/dist/test/index.js +33751 -0
  143. package/dist/test/preview.cjs +15869 -0
  144. package/dist/test/preview.d.ts +54 -0
  145. package/dist/test/preview.js +14440 -0
  146. package/dist/test/spy.cjs +257 -0
  147. package/dist/test/spy.d.ts +66 -0
  148. package/dist/test/spy.js +239 -0
  149. package/dist/theming/create.cjs +232 -0
  150. package/dist/theming/create.d.ts +50 -0
  151. package/dist/theming/create.js +216 -0
  152. package/dist/theming/index.cjs +2665 -0
  153. package/dist/theming/index.d.ts +11939 -0
  154. package/dist/theming/index.js +2485 -0
  155. package/dist/types/index.cjs +27 -0
  156. package/dist/types/index.d.ts +2795 -0
  157. package/dist/types/index.js +7 -0
  158. package/dist/viewport/index.cjs +310 -0
  159. package/dist/viewport/index.d.ts +320 -0
  160. package/dist/viewport/index.js +290 -0
  161. package/dist/viewport/manager.js +400 -0
  162. package/dist/viewport/preview.cjs +35 -0
  163. package/dist/viewport/preview.d.ts +69 -0
  164. package/dist/viewport/preview.js +19 -0
  165. package/package.json +539 -209
  166. package/.eslintrc.cjs +0 -31
  167. package/__mocks__/@aw-web-design/x-default-browser.js +0 -2
  168. package/core/babel/index.cjs +0 -1
  169. package/core/babel/index.d.ts +0 -2
  170. package/core/babel/index.js +0 -1
  171. package/core/builder-manager/index.cjs +0 -1
  172. package/core/builder-manager/index.d.ts +0 -2
  173. package/core/builder-manager/index.js +0 -1
  174. package/core/channels/index.cjs +0 -1
  175. package/core/channels/index.d.ts +0 -2
  176. package/core/channels/index.js +0 -1
  177. package/core/cli/bin/index.cjs +0 -1
  178. package/core/cli/bin/index.d.ts +0 -2
  179. package/core/cli/bin/index.js +0 -1
  180. package/core/cli/index.cjs +0 -1
  181. package/core/cli/index.d.ts +0 -2
  182. package/core/cli/index.js +0 -1
  183. package/core/client-logger/index.cjs +0 -1
  184. package/core/client-logger/index.d.ts +0 -2
  185. package/core/client-logger/index.js +0 -1
  186. package/core/common/index.cjs +0 -1
  187. package/core/common/index.d.ts +0 -2
  188. package/core/common/index.js +0 -1
  189. package/core/components/index.cjs +0 -1
  190. package/core/components/index.d.ts +0 -2
  191. package/core/components/index.js +0 -1
  192. package/core/core-events/index.cjs +0 -1
  193. package/core/core-events/index.d.ts +0 -2
  194. package/core/core-events/index.js +0 -1
  195. package/core/core-server/index.cjs +0 -1
  196. package/core/core-server/index.d.ts +0 -2
  197. package/core/core-server/index.js +0 -1
  198. package/core/core-server/presets/common-manager.js +0 -1
  199. package/core/core-server/presets/common-override-preset.cjs +0 -1
  200. package/core/core-server/presets/common-override-preset.js +0 -1
  201. package/core/core-server/presets/common-preset.cjs +0 -1
  202. package/core/core-server/presets/common-preset.js +0 -1
  203. package/core/csf/index.cjs +0 -1
  204. package/core/csf/index.d.ts +0 -2
  205. package/core/csf/index.js +0 -1
  206. package/core/csf-tools/index.cjs +0 -1
  207. package/core/csf-tools/index.d.ts +0 -2
  208. package/core/csf-tools/index.js +0 -1
  209. package/core/docs-tools/index.cjs +0 -1
  210. package/core/docs-tools/index.d.ts +0 -2
  211. package/core/docs-tools/index.js +0 -1
  212. package/core/index.cjs +0 -1
  213. package/core/index.d.ts +0 -2
  214. package/core/index.js +0 -1
  215. package/core/manager/globals-module-info.cjs +0 -1
  216. package/core/manager/globals-module-info.d.ts +0 -2
  217. package/core/manager/globals-module-info.js +0 -1
  218. package/core/manager/globals-runtime.js +0 -1
  219. package/core/manager/globals.cjs +0 -1
  220. package/core/manager/globals.d.ts +0 -2
  221. package/core/manager/globals.js +0 -1
  222. package/core/manager-api/index.cjs +0 -1
  223. package/core/manager-api/index.d.ts +0 -2
  224. package/core/manager-api/index.js +0 -1
  225. package/core/manager-errors.d.ts +0 -2
  226. package/core/manager-errors.js +0 -1
  227. package/core/node-logger/index.cjs +0 -1
  228. package/core/node-logger/index.d.ts +0 -2
  229. package/core/node-logger/index.js +0 -1
  230. package/core/preview/globals.cjs +0 -1
  231. package/core/preview/globals.d.ts +0 -2
  232. package/core/preview/globals.js +0 -1
  233. package/core/preview/runtime.js +0 -1
  234. package/core/preview-api/index.cjs +0 -1
  235. package/core/preview-api/index.d.ts +0 -2
  236. package/core/preview-api/index.js +0 -1
  237. package/core/preview-errors.cjs +0 -1
  238. package/core/preview-errors.d.ts +0 -2
  239. package/core/preview-errors.js +0 -1
  240. package/core/router/index.cjs +0 -1
  241. package/core/router/index.d.ts +0 -2
  242. package/core/router/index.js +0 -1
  243. package/core/server-errors.cjs +0 -1
  244. package/core/server-errors.d.ts +0 -2
  245. package/core/server-errors.js +0 -1
  246. package/core/telemetry/index.cjs +0 -1
  247. package/core/telemetry/index.d.ts +0 -2
  248. package/core/telemetry/index.js +0 -1
  249. package/core/theming/create.cjs +0 -1
  250. package/core/theming/create.d.ts +0 -2
  251. package/core/theming/create.js +0 -1
  252. package/core/theming/index.cjs +0 -1
  253. package/core/theming/index.d.ts +0 -2
  254. package/core/theming/index.js +0 -1
  255. package/core/types/index.cjs +0 -1
  256. package/core/types/index.d.ts +0 -2
  257. package/core/types/index.js +0 -1
  258. package/core.cjs +0 -0
  259. package/core.d.ts +0 -0
  260. package/core.js +0 -1
  261. package/dist/chunk-OWLSIX54.js +0 -8
  262. package/dist/core-path.cjs +0 -1
  263. package/dist/core-path.d.ts +0 -3
  264. package/dist/core-path.js +0 -9
  265. package/dist/proxy.cjs +0 -1
  266. package/dist/proxy.d.ts +0 -2
  267. package/dist/proxy.js +0 -9
@@ -0,0 +1,804 @@
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 n = {
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
+ "SweepIcon",
276
+ "SwitchAltIcon",
277
+ "SyncIcon",
278
+ "TabletIcon",
279
+ "ThumbsUpIcon",
280
+ "TimeIcon",
281
+ "TimerIcon",
282
+ "TransferIcon",
283
+ "TrashIcon",
284
+ "TwitterIcon",
285
+ "TypeIcon",
286
+ "UbuntuIcon",
287
+ "UndoIcon",
288
+ "UnfoldIcon",
289
+ "UnlockIcon",
290
+ "UnpinIcon",
291
+ "UploadIcon",
292
+ "UserAddIcon",
293
+ "UserAltIcon",
294
+ "UserIcon",
295
+ "UsersIcon",
296
+ "VSCodeIcon",
297
+ "VerifiedIcon",
298
+ "VideoIcon",
299
+ "WandIcon",
300
+ "WatchIcon",
301
+ "WindowsIcon",
302
+ "WrenchIcon",
303
+ "XIcon",
304
+ "YoutubeIcon",
305
+ "ZoomIcon",
306
+ "ZoomOutIcon",
307
+ "ZoomResetIcon",
308
+ "iconList"
309
+ ],
310
+ "storybook/manager-api": [
311
+ "ActiveTabs",
312
+ "Consumer",
313
+ "ManagerContext",
314
+ "Provider",
315
+ "RequestResponseError",
316
+ "addons",
317
+ "combineParameters",
318
+ "controlOrMetaKey",
319
+ "controlOrMetaSymbol",
320
+ "eventMatchesShortcut",
321
+ "eventToShortcut",
322
+ "experimental_MockUniversalStore",
323
+ "experimental_UniversalStore",
324
+ "experimental_getStatusStore",
325
+ "experimental_getTestProviderStore",
326
+ "experimental_requestResponse",
327
+ "experimental_useStatusStore",
328
+ "experimental_useTestProviderStore",
329
+ "experimental_useUniversalStore",
330
+ "internal_fullStatusStore",
331
+ "internal_fullTestProviderStore",
332
+ "isMacLike",
333
+ "isShortcutTaken",
334
+ "keyToSymbol",
335
+ "merge",
336
+ "mockChannel",
337
+ "optionOrAltSymbol",
338
+ "shortcutMatchesShortcut",
339
+ "shortcutToHumanString",
340
+ "types",
341
+ "useAddonState",
342
+ "useArgTypes",
343
+ "useArgs",
344
+ "useChannel",
345
+ "useGlobalTypes",
346
+ "useGlobals",
347
+ "useParameter",
348
+ "useSharedState",
349
+ "useStoryPrepared",
350
+ "useStorybookApi",
351
+ "useStorybookState"
352
+ ],
353
+ "storybook/theming": [
354
+ "CacheProvider",
355
+ "ClassNames",
356
+ "Global",
357
+ "ThemeProvider",
358
+ "background",
359
+ "color",
360
+ "convert",
361
+ "create",
362
+ "createCache",
363
+ "createGlobal",
364
+ "createReset",
365
+ "css",
366
+ "darken",
367
+ "ensure",
368
+ "ignoreSsrWarning",
369
+ "isPropValid",
370
+ "jsx",
371
+ "keyframes",
372
+ "lighten",
373
+ "styled",
374
+ "themes",
375
+ "typography",
376
+ "useTheme",
377
+ "withTheme"
378
+ ],
379
+ "storybook/theming/create": ["create", "themes"],
380
+ "storybook/test": [
381
+ "buildQueries",
382
+ "clearAllMocks",
383
+ "configure",
384
+ "createEvent",
385
+ "expect",
386
+ "findAllByAltText",
387
+ "findAllByDisplayValue",
388
+ "findAllByLabelText",
389
+ "findAllByPlaceholderText",
390
+ "findAllByRole",
391
+ "findAllByTestId",
392
+ "findAllByText",
393
+ "findAllByTitle",
394
+ "findByAltText",
395
+ "findByDisplayValue",
396
+ "findByLabelText",
397
+ "findByPlaceholderText",
398
+ "findByRole",
399
+ "findByTestId",
400
+ "findByText",
401
+ "findByTitle",
402
+ "fireEvent",
403
+ "fn",
404
+ "getAllByAltText",
405
+ "getAllByDisplayValue",
406
+ "getAllByLabelText",
407
+ "getAllByPlaceholderText",
408
+ "getAllByRole",
409
+ "getAllByTestId",
410
+ "getAllByText",
411
+ "getAllByTitle",
412
+ "getByAltText",
413
+ "getByDisplayValue",
414
+ "getByLabelText",
415
+ "getByPlaceholderText",
416
+ "getByRole",
417
+ "getByTestId",
418
+ "getByText",
419
+ "getByTitle",
420
+ "getConfig",
421
+ "getDefaultNormalizer",
422
+ "getElementError",
423
+ "getNodeText",
424
+ "getQueriesForElement",
425
+ "getRoles",
426
+ "getSuggestedQuery",
427
+ "isInaccessible",
428
+ "isMockFunction",
429
+ "logDOM",
430
+ "logRoles",
431
+ "mocked",
432
+ "mocks",
433
+ "onMockCall",
434
+ "prettyDOM",
435
+ "prettyFormat",
436
+ "queries",
437
+ "queryAllByAltText",
438
+ "queryAllByAttribute",
439
+ "queryAllByDisplayValue",
440
+ "queryAllByLabelText",
441
+ "queryAllByPlaceholderText",
442
+ "queryAllByRole",
443
+ "queryAllByTestId",
444
+ "queryAllByText",
445
+ "queryAllByTitle",
446
+ "queryByAltText",
447
+ "queryByAttribute",
448
+ "queryByDisplayValue",
449
+ "queryByLabelText",
450
+ "queryByPlaceholderText",
451
+ "queryByRole",
452
+ "queryByTestId",
453
+ "queryByText",
454
+ "queryByTitle",
455
+ "queryHelpers",
456
+ "resetAllMocks",
457
+ "restoreAllMocks",
458
+ "screen",
459
+ "spyOn",
460
+ "userEvent",
461
+ "waitFor",
462
+ "waitForElementToBeRemoved",
463
+ "within"
464
+ ],
465
+ "storybook/internal/channels": [
466
+ "Channel",
467
+ "HEARTBEAT_INTERVAL",
468
+ "HEARTBEAT_MAX_LATENCY",
469
+ "PostMessageTransport",
470
+ "WebsocketTransport",
471
+ "createBrowserChannel"
472
+ ],
473
+ "storybook/internal/client-logger": ["deprecate", "logger", "once", "pretty"],
474
+ "storybook/internal/components": [
475
+ "A",
476
+ "ActionBar",
477
+ "AddonPanel",
478
+ "Badge",
479
+ "Bar",
480
+ "Blockquote",
481
+ "Button",
482
+ "ClipboardCode",
483
+ "Code",
484
+ "DL",
485
+ "Div",
486
+ "DocumentWrapper",
487
+ "EmptyTabContent",
488
+ "ErrorFormatter",
489
+ "FlexBar",
490
+ "Form",
491
+ "H1",
492
+ "H2",
493
+ "H3",
494
+ "H4",
495
+ "H5",
496
+ "H6",
497
+ "HR",
498
+ "IconButton",
499
+ "IconButtonSkeleton",
500
+ "Icons",
501
+ "Img",
502
+ "LI",
503
+ "Link",
504
+ "ListItem",
505
+ "Loader",
506
+ "Modal",
507
+ "OL",
508
+ "P",
509
+ "Placeholder",
510
+ "Pre",
511
+ "ProgressSpinner",
512
+ "ResetWrapper",
513
+ "ScrollArea",
514
+ "Separator",
515
+ "Spaced",
516
+ "Span",
517
+ "StorybookIcon",
518
+ "StorybookLogo",
519
+ "Symbols",
520
+ "SyntaxHighlighter",
521
+ "TT",
522
+ "TabBar",
523
+ "TabButton",
524
+ "TabWrapper",
525
+ "Table",
526
+ "Tabs",
527
+ "TabsState",
528
+ "TooltipLinkList",
529
+ "TooltipMessage",
530
+ "TooltipNote",
531
+ "UL",
532
+ "WithTooltip",
533
+ "WithTooltipPure",
534
+ "Zoom",
535
+ "codeCommon",
536
+ "components",
537
+ "createCopyToClipboardFunction",
538
+ "getStoryHref",
539
+ "icons",
540
+ "interleaveSeparators",
541
+ "nameSpaceClassNames",
542
+ "resetComponents",
543
+ "withReset"
544
+ ],
545
+ "storybook/internal/core-errors": [
546
+ "ARGTYPES_INFO_REQUEST",
547
+ "ARGTYPES_INFO_RESPONSE",
548
+ "CHANNEL_CREATED",
549
+ "CHANNEL_WS_DISCONNECT",
550
+ "CONFIG_ERROR",
551
+ "CREATE_NEW_STORYFILE_REQUEST",
552
+ "CREATE_NEW_STORYFILE_RESPONSE",
553
+ "CURRENT_STORY_WAS_SET",
554
+ "DOCS_PREPARED",
555
+ "DOCS_RENDERED",
556
+ "FILE_COMPONENT_SEARCH_REQUEST",
557
+ "FILE_COMPONENT_SEARCH_RESPONSE",
558
+ "FORCE_REMOUNT",
559
+ "FORCE_RE_RENDER",
560
+ "GLOBALS_UPDATED",
561
+ "NAVIGATE_URL",
562
+ "PLAY_FUNCTION_THREW_EXCEPTION",
563
+ "PRELOAD_ENTRIES",
564
+ "PREVIEW_BUILDER_PROGRESS",
565
+ "PREVIEW_KEYDOWN",
566
+ "REGISTER_SUBSCRIPTION",
567
+ "REQUEST_WHATS_NEW_DATA",
568
+ "RESET_STORY_ARGS",
569
+ "RESULT_WHATS_NEW_DATA",
570
+ "SAVE_STORY_REQUEST",
571
+ "SAVE_STORY_RESPONSE",
572
+ "SELECT_STORY",
573
+ "SET_CONFIG",
574
+ "SET_CURRENT_STORY",
575
+ "SET_FILTER",
576
+ "SET_GLOBALS",
577
+ "SET_INDEX",
578
+ "SET_STORIES",
579
+ "SET_WHATS_NEW_CACHE",
580
+ "SHARED_STATE_CHANGED",
581
+ "SHARED_STATE_SET",
582
+ "STORIES_COLLAPSE_ALL",
583
+ "STORIES_EXPAND_ALL",
584
+ "STORY_ARGS_UPDATED",
585
+ "STORY_CHANGED",
586
+ "STORY_ERRORED",
587
+ "STORY_FINISHED",
588
+ "STORY_INDEX_INVALIDATED",
589
+ "STORY_MISSING",
590
+ "STORY_PREPARED",
591
+ "STORY_RENDERED",
592
+ "STORY_RENDER_PHASE_CHANGED",
593
+ "STORY_SPECIFIED",
594
+ "STORY_THREW_EXCEPTION",
595
+ "STORY_UNCHANGED",
596
+ "TELEMETRY_ERROR",
597
+ "TESTING_MODULE_CANCEL_TEST_RUN_REQUEST",
598
+ "TESTING_MODULE_CANCEL_TEST_RUN_RESPONSE",
599
+ "TESTING_MODULE_CRASH_REPORT",
600
+ "TESTING_MODULE_PROGRESS_REPORT",
601
+ "TESTING_MODULE_RUN_ALL_REQUEST",
602
+ "TESTING_MODULE_RUN_REQUEST",
603
+ "TOGGLE_WHATS_NEW_NOTIFICATIONS",
604
+ "UNHANDLED_ERRORS_WHILE_PLAYING",
605
+ "UPDATE_GLOBALS",
606
+ "UPDATE_QUERY_PARAMS",
607
+ "UPDATE_STORY_ARGS"
608
+ ],
609
+ "storybook/internal/core-events": [
610
+ "ARGTYPES_INFO_REQUEST",
611
+ "ARGTYPES_INFO_RESPONSE",
612
+ "CHANNEL_CREATED",
613
+ "CHANNEL_WS_DISCONNECT",
614
+ "CONFIG_ERROR",
615
+ "CREATE_NEW_STORYFILE_REQUEST",
616
+ "CREATE_NEW_STORYFILE_RESPONSE",
617
+ "CURRENT_STORY_WAS_SET",
618
+ "DOCS_PREPARED",
619
+ "DOCS_RENDERED",
620
+ "FILE_COMPONENT_SEARCH_REQUEST",
621
+ "FILE_COMPONENT_SEARCH_RESPONSE",
622
+ "FORCE_REMOUNT",
623
+ "FORCE_RE_RENDER",
624
+ "GLOBALS_UPDATED",
625
+ "NAVIGATE_URL",
626
+ "PLAY_FUNCTION_THREW_EXCEPTION",
627
+ "PRELOAD_ENTRIES",
628
+ "PREVIEW_BUILDER_PROGRESS",
629
+ "PREVIEW_KEYDOWN",
630
+ "REGISTER_SUBSCRIPTION",
631
+ "REQUEST_WHATS_NEW_DATA",
632
+ "RESET_STORY_ARGS",
633
+ "RESULT_WHATS_NEW_DATA",
634
+ "SAVE_STORY_REQUEST",
635
+ "SAVE_STORY_RESPONSE",
636
+ "SELECT_STORY",
637
+ "SET_CONFIG",
638
+ "SET_CURRENT_STORY",
639
+ "SET_FILTER",
640
+ "SET_GLOBALS",
641
+ "SET_INDEX",
642
+ "SET_STORIES",
643
+ "SET_WHATS_NEW_CACHE",
644
+ "SHARED_STATE_CHANGED",
645
+ "SHARED_STATE_SET",
646
+ "STORIES_COLLAPSE_ALL",
647
+ "STORIES_EXPAND_ALL",
648
+ "STORY_ARGS_UPDATED",
649
+ "STORY_CHANGED",
650
+ "STORY_ERRORED",
651
+ "STORY_FINISHED",
652
+ "STORY_INDEX_INVALIDATED",
653
+ "STORY_MISSING",
654
+ "STORY_PREPARED",
655
+ "STORY_RENDERED",
656
+ "STORY_RENDER_PHASE_CHANGED",
657
+ "STORY_SPECIFIED",
658
+ "STORY_THREW_EXCEPTION",
659
+ "STORY_UNCHANGED",
660
+ "TELEMETRY_ERROR",
661
+ "TESTING_MODULE_CANCEL_TEST_RUN_REQUEST",
662
+ "TESTING_MODULE_CANCEL_TEST_RUN_RESPONSE",
663
+ "TESTING_MODULE_CRASH_REPORT",
664
+ "TESTING_MODULE_PROGRESS_REPORT",
665
+ "TESTING_MODULE_RUN_ALL_REQUEST",
666
+ "TESTING_MODULE_RUN_REQUEST",
667
+ "TOGGLE_WHATS_NEW_NOTIFICATIONS",
668
+ "UNHANDLED_ERRORS_WHILE_PLAYING",
669
+ "UPDATE_GLOBALS",
670
+ "UPDATE_QUERY_PARAMS",
671
+ "UPDATE_STORY_ARGS"
672
+ ],
673
+ "storybook/internal/manager-errors": [
674
+ "Category",
675
+ "ProviderDoesNotExtendBaseProviderError",
676
+ "StatusTypeIdMismatchError",
677
+ "UncaughtManagerError"
678
+ ],
679
+ "storybook/internal/router": [
680
+ "BaseLocationProvider",
681
+ "DEEPLY_EQUAL",
682
+ "Link",
683
+ "Location",
684
+ "LocationProvider",
685
+ "Match",
686
+ "Route",
687
+ "buildArgsParam",
688
+ "deepDiff",
689
+ "getMatch",
690
+ "parsePath",
691
+ "queryFromLocation",
692
+ "stringifyQuery",
693
+ "useNavigate"
694
+ ],
695
+ "storybook/internal/types": ["Addon_TypesEnum"],
696
+ "storybook/internal/manager-api": [
697
+ "ActiveTabs",
698
+ "Consumer",
699
+ "ManagerContext",
700
+ "Provider",
701
+ "RequestResponseError",
702
+ "addons",
703
+ "combineParameters",
704
+ "controlOrMetaKey",
705
+ "controlOrMetaSymbol",
706
+ "eventMatchesShortcut",
707
+ "eventToShortcut",
708
+ "experimental_MockUniversalStore",
709
+ "experimental_UniversalStore",
710
+ "experimental_getStatusStore",
711
+ "experimental_getTestProviderStore",
712
+ "experimental_requestResponse",
713
+ "experimental_useStatusStore",
714
+ "experimental_useTestProviderStore",
715
+ "experimental_useUniversalStore",
716
+ "internal_fullStatusStore",
717
+ "internal_fullTestProviderStore",
718
+ "isMacLike",
719
+ "isShortcutTaken",
720
+ "keyToSymbol",
721
+ "merge",
722
+ "mockChannel",
723
+ "optionOrAltSymbol",
724
+ "shortcutMatchesShortcut",
725
+ "shortcutToHumanString",
726
+ "types",
727
+ "useAddonState",
728
+ "useArgTypes",
729
+ "useArgs",
730
+ "useChannel",
731
+ "useGlobalTypes",
732
+ "useGlobals",
733
+ "useParameter",
734
+ "useSharedState",
735
+ "useStoryPrepared",
736
+ "useStorybookApi",
737
+ "useStorybookState"
738
+ ],
739
+ "storybook/internal/theming": [
740
+ "CacheProvider",
741
+ "ClassNames",
742
+ "Global",
743
+ "ThemeProvider",
744
+ "background",
745
+ "color",
746
+ "convert",
747
+ "create",
748
+ "createCache",
749
+ "createGlobal",
750
+ "createReset",
751
+ "css",
752
+ "darken",
753
+ "ensure",
754
+ "ignoreSsrWarning",
755
+ "isPropValid",
756
+ "jsx",
757
+ "keyframes",
758
+ "lighten",
759
+ "styled",
760
+ "themes",
761
+ "typography",
762
+ "useTheme",
763
+ "withTheme"
764
+ ],
765
+ "storybook/internal/theming/create": ["create", "themes"]
766
+ };
767
+
768
+ // src/manager/globals/globals.ts
769
+ var o = {
770
+ react: "__REACT__",
771
+ "react-dom": "__REACT_DOM__",
772
+ "react-dom/client": "__REACT_DOM_CLIENT__",
773
+ "@storybook/icons": "__STORYBOOK_ICONS__",
774
+ "storybook/manager-api": "__STORYBOOK_API__",
775
+ "storybook/test": "__STORYBOOK_TEST__",
776
+ "storybook/theming": "__STORYBOOK_THEMING__",
777
+ "storybook/theming/create": "__STORYBOOK_THEMING_CREATE__",
778
+ "storybook/internal/channels": "__STORYBOOK_CHANNELS__",
779
+ "storybook/internal/client-logger": "__STORYBOOK_CLIENT_LOGGER__",
780
+ "storybook/internal/components": "__STORYBOOK_COMPONENTS__",
781
+ "storybook/internal/core-errors": "__STORYBOOK_CORE_EVENTS__",
782
+ "storybook/internal/core-events": "__STORYBOOK_CORE_EVENTS__",
783
+ "storybook/internal/manager-errors": "__STORYBOOK_CORE_EVENTS_MANAGER_ERRORS__",
784
+ "storybook/internal/router": "__STORYBOOK_ROUTER__",
785
+ "storybook/internal/types": "__STORYBOOK_TYPES__",
786
+ // @deprecated TODO: delete in 9.1
787
+ "storybook/internal/manager-api": "__STORYBOOK_API__",
788
+ "storybook/internal/theming": "__STORYBOOK_THEMING__",
789
+ "storybook/internal/theming/create": "__STORYBOOK_THEMING_CREATE__"
790
+ }, r = Object.keys(o);
791
+
792
+ // src/manager/globals/globals-module-info.ts
793
+ var _ = r.reduce(
794
+ (t, e) => (t[e] = {
795
+ type: "esm",
796
+ varName: o[e],
797
+ namedExports: n[e],
798
+ defaultExport: !0
799
+ }, t),
800
+ {}
801
+ );
802
+ export {
803
+ _ as globalsModuleInfoMap
804
+ };