react-timelane 0.0.4 → 0.0.6

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 (139) hide show
  1. package/.storybook/main.ts +11 -0
  2. package/.storybook/package.json +3 -0
  3. package/.storybook/preview.ts +14 -0
  4. package/LICENSE +21 -0
  5. package/README.md +5 -16
  6. package/dist/components/Timelane/Timelane.d.ts +38 -0
  7. package/dist/components/Timelane/Timelane.stories.d.ts +19 -0
  8. package/dist/components/TimelaneAllocation/TimelaneAllocation.d.ts +10 -0
  9. package/dist/components/{TimelaneAside.d.ts → TimelaneAside/TimelaneAside.d.ts} +2 -3
  10. package/dist/components/{TimelaneBackground.d.ts → TimelaneBackground/TimelaneBackground.d.ts} +1 -2
  11. package/dist/components/{TimelaneBody.d.ts → TimelaneBody/TimelaneBody.d.ts} +1 -2
  12. package/dist/components/{TimelaneBodyInner.d.ts → TimelaneBody/TimelaneBodyInner.d.ts} +1 -1
  13. package/dist/components/TimelaneHeader/DaysHeader.d.ts +1 -2
  14. package/dist/components/TimelaneHeader/MonthsHeader.d.ts +1 -2
  15. package/dist/components/TimelaneHeader/TimelaneHeader.d.ts +1 -2
  16. package/dist/components/TimelaneHeader/WeeksHeader.d.ts +1 -2
  17. package/dist/components/TimelaneHeader/index.d.ts +4 -4
  18. package/dist/components/TimelaneLane/TimelaneLane.d.ts +1 -2
  19. package/dist/components/TimelaneLane/TimelaneLane.stories.d.ts +9 -0
  20. package/dist/components/{TimelaneSettingsContext.d.ts → TimelaneSettingsProvider/TimelaneSettingsContext.d.ts} +1 -1
  21. package/dist/components/TimelaneSettingsProvider/TimelaneSettingsProvider.d.ts +11 -0
  22. package/dist/components/TimelaneSettingsProvider/TimelaneSettingsProvider.stories.d.ts +9 -0
  23. package/dist/hooks/useTimelaneContext.d.ts +1 -1
  24. package/dist/index.d.ts +7 -7
  25. package/dist/react-timelane.css +1 -1
  26. package/dist/react-timelane.js +3465 -3406
  27. package/dist/stories/FullExamplePage/FullExamplePage.d.ts +4 -0
  28. package/dist/stories/FullExamplePage/FullExamplePage.stories.d.ts +19 -0
  29. package/dist/stories/FullExamplePage/MyTimelane.d.ts +20 -0
  30. package/dist/stories/constants.d.ts +7 -0
  31. package/dist/stories/hooks/useLocalStorage.d.ts +2 -0
  32. package/dist/stories/models/Allocation.d.ts +11 -0
  33. package/dist/stories/models/AllocationId.d.ts +1 -0
  34. package/dist/stories/models/Resource.d.ts +7 -0
  35. package/dist/stories/models/ResourceId.d.ts +1 -0
  36. package/dist/types/EnableResizing.d.ts +6 -0
  37. package/dist/types/Pixels.d.ts +1 -1
  38. package/dist/types/TimelaneSettings.d.ts +4 -1
  39. package/dist/types/index.d.ts +1 -0
  40. package/eslint.config.js +21 -21
  41. package/package.json +11 -2
  42. package/storybook-static/addon-visual-tests-assets/visual-test-illustration.mp4 +0 -0
  43. package/storybook-static/assets/Color-AVL7NMMY-B90CyoR2.js +1 -0
  44. package/storybook-static/assets/DocsRenderer-PQXLIZUC-Bq83urOe.js +2 -0
  45. package/storybook-static/assets/FullExamplePage-DfmTY2HY.css +1 -0
  46. package/storybook-static/assets/FullExamplePage.stories-2F7rFo1o.js +18 -0
  47. package/storybook-static/assets/Timelane-Dz9QoO0k.css +1 -0
  48. package/storybook-static/assets/Timelane-S9mAxniK.js +177 -0
  49. package/storybook-static/assets/Timelane.stories-eJTFFqOc.js +15 -0
  50. package/storybook-static/assets/TimelaneLane.stories-D-gkVkkl.js +37 -0
  51. package/storybook-static/assets/TimelaneSettingsProvider.stories-Ca_yRNCX.js +28 -0
  52. package/storybook-static/assets/blocks-Cs-T3qmo.js +658 -0
  53. package/storybook-static/assets/iframe-CoOaxin5.js +1124 -0
  54. package/storybook-static/assets/index-BFqcmZp8.js +9 -0
  55. package/storybook-static/assets/index-CKqcs_aQ.js +9 -0
  56. package/storybook-static/assets/index-Dn1Kba0m.js +1 -0
  57. package/storybook-static/assets/react-18-CSTqcdyU.js +25 -0
  58. package/storybook-static/components/Timelane/Timelane.d.ts +38 -0
  59. package/storybook-static/components/Timelane/Timelane.stories.d.ts +19 -0
  60. package/storybook-static/components/TimelaneAllocation/TimelaneAllocation.d.ts +10 -0
  61. package/storybook-static/components/TimelaneAside/TimelaneAside.d.ts +12 -0
  62. package/storybook-static/components/TimelaneBackground/TimelaneBackground.d.ts +4 -0
  63. package/storybook-static/components/TimelaneBody/TimelaneBody.d.ts +5 -0
  64. package/storybook-static/components/TimelaneBody/TimelaneBodyInner.d.ts +16 -0
  65. package/storybook-static/components/TimelaneBody/TimelaneSelectionLayer.d.ts +6 -0
  66. package/storybook-static/components/TimelaneHeader/DaysHeader.d.ts +14 -0
  67. package/storybook-static/components/TimelaneHeader/MonthsHeader.d.ts +14 -0
  68. package/storybook-static/components/TimelaneHeader/TimelaneHeader.d.ts +23 -0
  69. package/storybook-static/components/TimelaneHeader/WeeksHeader.d.ts +14 -0
  70. package/storybook-static/components/TimelaneHeader/index.d.ts +5 -0
  71. package/storybook-static/components/TimelaneHeader/renderingUtils.d.ts +4 -0
  72. package/storybook-static/components/TimelaneItem/DragResizeComponent.d.ts +20 -0
  73. package/storybook-static/components/TimelaneItem/TimelaneItem.d.ts +14 -0
  74. package/storybook-static/components/TimelaneLane/AvailableSpaceIndicator.d.ts +21 -0
  75. package/storybook-static/components/TimelaneLane/DropPreview.d.ts +9 -0
  76. package/storybook-static/components/TimelaneLane/DropTarget.d.ts +11 -0
  77. package/storybook-static/components/TimelaneLane/OverlapIndicator.d.ts +6 -0
  78. package/storybook-static/components/TimelaneLane/TimelaneLane.d.ts +15 -0
  79. package/storybook-static/components/TimelaneLane/TimelaneLane.stories.d.ts +9 -0
  80. package/storybook-static/components/TimelaneLayout/TimelaneLayout.d.ts +23 -0
  81. package/storybook-static/components/TimelaneSettingsProvider/TimelaneSettingsContext.d.ts +7 -0
  82. package/storybook-static/components/TimelaneSettingsProvider/TimelaneSettingsProvider.d.ts +11 -0
  83. package/storybook-static/components/TimelaneSettingsProvider/TimelaneSettingsProvider.stories.d.ts +9 -0
  84. package/storybook-static/components/utils.d.ts +27 -0
  85. package/storybook-static/favicon.svg +1 -0
  86. package/storybook-static/hooks/useScroll.d.ts +10 -0
  87. package/storybook-static/hooks/useTimelaneContext.d.ts +1 -0
  88. package/storybook-static/iframe.html +685 -0
  89. package/storybook-static/index.d.ts +12 -0
  90. package/storybook-static/index.html +152 -0
  91. package/storybook-static/index.json +1 -0
  92. package/storybook-static/nunito-sans-bold-italic.woff2 +0 -0
  93. package/storybook-static/nunito-sans-bold.woff2 +0 -0
  94. package/storybook-static/nunito-sans-italic.woff2 +0 -0
  95. package/storybook-static/nunito-sans-regular.woff2 +0 -0
  96. package/storybook-static/project.json +1 -0
  97. package/storybook-static/sb-addons/chromatic-com-storybook-1/manager-bundle.js +356 -0
  98. package/storybook-static/sb-addons/chromatic-com-storybook-1/manager-bundle.js.LEGAL.txt +40 -0
  99. package/storybook-static/sb-addons/docs-2/manager-bundle.js +151 -0
  100. package/storybook-static/sb-addons/storybook-core-server-presets-0/common-manager-bundle.js +188 -0
  101. package/storybook-static/sb-common-assets/favicon.svg +1 -0
  102. package/storybook-static/sb-common-assets/nunito-sans-bold-italic.woff2 +0 -0
  103. package/storybook-static/sb-common-assets/nunito-sans-bold.woff2 +0 -0
  104. package/storybook-static/sb-common-assets/nunito-sans-italic.woff2 +0 -0
  105. package/storybook-static/sb-common-assets/nunito-sans-regular.woff2 +0 -0
  106. package/storybook-static/sb-manager/globals-module-info.js +797 -0
  107. package/storybook-static/sb-manager/globals-runtime.js +72136 -0
  108. package/storybook-static/sb-manager/globals.js +34 -0
  109. package/storybook-static/sb-manager/runtime.js +13002 -0
  110. package/storybook-static/stories/FullExamplePage/FullExamplePage.d.ts +4 -0
  111. package/storybook-static/stories/FullExamplePage/FullExamplePage.stories.d.ts +19 -0
  112. package/storybook-static/stories/FullExamplePage/MyTimelane.d.ts +20 -0
  113. package/storybook-static/stories/constants.d.ts +7 -0
  114. package/storybook-static/stories/hooks/useLocalStorage.d.ts +2 -0
  115. package/storybook-static/stories/models/Allocation.d.ts +11 -0
  116. package/storybook-static/stories/models/AllocationId.d.ts +1 -0
  117. package/storybook-static/stories/models/Resource.d.ts +7 -0
  118. package/storybook-static/stories/models/ResourceId.d.ts +1 -0
  119. package/storybook-static/types/AvailableSpace.d.ts +6 -0
  120. package/storybook-static/types/DateBounds.d.ts +4 -0
  121. package/storybook-static/types/Dimensions.d.ts +4 -0
  122. package/storybook-static/types/EnableResizing.d.ts +6 -0
  123. package/storybook-static/types/GrabInfo.d.ts +5 -0
  124. package/storybook-static/types/Grid.d.ts +6 -0
  125. package/storybook-static/types/Item.d.ts +12 -0
  126. package/storybook-static/types/ItemId.d.ts +1 -0
  127. package/storybook-static/types/Lane.d.ts +5 -0
  128. package/storybook-static/types/LaneId.d.ts +1 -0
  129. package/storybook-static/types/OffsetBounds.d.ts +4 -0
  130. package/storybook-static/types/Pixels.d.ts +4 -0
  131. package/storybook-static/types/Position.d.ts +4 -0
  132. package/storybook-static/types/Rectangle.d.ts +6 -0
  133. package/storybook-static/types/TimeRange.d.ts +4 -0
  134. package/storybook-static/types/TimelaneSettings.d.ts +14 -0
  135. package/storybook-static/types/index.d.ts +16 -0
  136. package/dist/components/Timelane.d.ts +0 -17
  137. package/dist/components/TimelaneSettingsProvider.d.ts +0 -7
  138. package/dist/components/TimelaneWrapper.d.ts +0 -20
  139. /package/dist/components/{TimelaneSelectionLayer.d.ts → TimelaneBody/TimelaneSelectionLayer.d.ts} +0 -0
@@ -0,0 +1,797 @@
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
+ "act",
20
+ "cloneElement",
21
+ "createContext",
22
+ "createElement",
23
+ "createFactory",
24
+ "createRef",
25
+ "forwardRef",
26
+ "isValidElement",
27
+ "lazy",
28
+ "memo",
29
+ "startTransition",
30
+ "unstable_act",
31
+ "useCallback",
32
+ "useContext",
33
+ "useDebugValue",
34
+ "useDeferredValue",
35
+ "useEffect",
36
+ "useId",
37
+ "useImperativeHandle",
38
+ "useInsertionEffect",
39
+ "useLayoutEffect",
40
+ "useMemo",
41
+ "useReducer",
42
+ "useRef",
43
+ "useState",
44
+ "useSyncExternalStore",
45
+ "useTransition",
46
+ "version"
47
+ ],
48
+ "react-dom": [
49
+ "__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED",
50
+ "createPortal",
51
+ "createRoot",
52
+ "findDOMNode",
53
+ "flushSync",
54
+ "hydrate",
55
+ "hydrateRoot",
56
+ "render",
57
+ "unmountComponentAtNode",
58
+ "unstable_batchedUpdates",
59
+ "unstable_renderSubtreeIntoContainer",
60
+ "version"
61
+ ],
62
+ "react-dom/client": ["createRoot", "hydrateRoot"],
63
+ "@storybook/icons": [
64
+ "AccessibilityAltIcon",
65
+ "AccessibilityIcon",
66
+ "AccessibilityIgnoredIcon",
67
+ "AddIcon",
68
+ "AdminIcon",
69
+ "AlertAltIcon",
70
+ "AlertIcon",
71
+ "AlignLeftIcon",
72
+ "AlignRightIcon",
73
+ "AppleIcon",
74
+ "ArrowBottomLeftIcon",
75
+ "ArrowBottomRightIcon",
76
+ "ArrowDownIcon",
77
+ "ArrowLeftIcon",
78
+ "ArrowRightIcon",
79
+ "ArrowSolidDownIcon",
80
+ "ArrowSolidLeftIcon",
81
+ "ArrowSolidRightIcon",
82
+ "ArrowSolidUpIcon",
83
+ "ArrowTopLeftIcon",
84
+ "ArrowTopRightIcon",
85
+ "ArrowUpIcon",
86
+ "AzureDevOpsIcon",
87
+ "BackIcon",
88
+ "BasketIcon",
89
+ "BatchAcceptIcon",
90
+ "BatchDenyIcon",
91
+ "BeakerIcon",
92
+ "BellIcon",
93
+ "BitbucketIcon",
94
+ "BoldIcon",
95
+ "BookIcon",
96
+ "BookmarkHollowIcon",
97
+ "BookmarkIcon",
98
+ "BottomBarIcon",
99
+ "BottomBarToggleIcon",
100
+ "BoxIcon",
101
+ "BranchIcon",
102
+ "BrowserIcon",
103
+ "ButtonIcon",
104
+ "CPUIcon",
105
+ "CalendarIcon",
106
+ "CameraIcon",
107
+ "CameraStabilizeIcon",
108
+ "CategoryIcon",
109
+ "CertificateIcon",
110
+ "ChangedIcon",
111
+ "ChatIcon",
112
+ "CheckIcon",
113
+ "ChevronDownIcon",
114
+ "ChevronLeftIcon",
115
+ "ChevronRightIcon",
116
+ "ChevronSmallDownIcon",
117
+ "ChevronSmallLeftIcon",
118
+ "ChevronSmallRightIcon",
119
+ "ChevronSmallUpIcon",
120
+ "ChevronUpIcon",
121
+ "ChromaticIcon",
122
+ "ChromeIcon",
123
+ "CircleHollowIcon",
124
+ "CircleIcon",
125
+ "ClearIcon",
126
+ "CloseAltIcon",
127
+ "CloseIcon",
128
+ "CloudHollowIcon",
129
+ "CloudIcon",
130
+ "CogIcon",
131
+ "CollapseIcon",
132
+ "CommandIcon",
133
+ "CommentAddIcon",
134
+ "CommentIcon",
135
+ "CommentsIcon",
136
+ "CommitIcon",
137
+ "CompassIcon",
138
+ "ComponentDrivenIcon",
139
+ "ComponentIcon",
140
+ "ContrastIcon",
141
+ "ContrastIgnoredIcon",
142
+ "ControlsIcon",
143
+ "CopyIcon",
144
+ "CreditIcon",
145
+ "CrossIcon",
146
+ "DashboardIcon",
147
+ "DatabaseIcon",
148
+ "DeleteIcon",
149
+ "DiamondIcon",
150
+ "DirectionIcon",
151
+ "DiscordIcon",
152
+ "DocChartIcon",
153
+ "DocListIcon",
154
+ "DocumentIcon",
155
+ "DownloadIcon",
156
+ "DragIcon",
157
+ "EditIcon",
158
+ "EllipsisIcon",
159
+ "EmailIcon",
160
+ "ExpandAltIcon",
161
+ "ExpandIcon",
162
+ "EyeCloseIcon",
163
+ "EyeIcon",
164
+ "FaceHappyIcon",
165
+ "FaceNeutralIcon",
166
+ "FaceSadIcon",
167
+ "FacebookIcon",
168
+ "FailedIcon",
169
+ "FastForwardIcon",
170
+ "FigmaIcon",
171
+ "FilterIcon",
172
+ "FlagIcon",
173
+ "FolderIcon",
174
+ "FormIcon",
175
+ "GDriveIcon",
176
+ "GithubIcon",
177
+ "GitlabIcon",
178
+ "GlobeIcon",
179
+ "GoogleIcon",
180
+ "GraphBarIcon",
181
+ "GraphLineIcon",
182
+ "GraphqlIcon",
183
+ "GridAltIcon",
184
+ "GridIcon",
185
+ "GrowIcon",
186
+ "HeartHollowIcon",
187
+ "HeartIcon",
188
+ "HomeIcon",
189
+ "HourglassIcon",
190
+ "InfoIcon",
191
+ "ItalicIcon",
192
+ "JumpToIcon",
193
+ "KeyIcon",
194
+ "LightningIcon",
195
+ "LightningOffIcon",
196
+ "LinkBrokenIcon",
197
+ "LinkIcon",
198
+ "LinkedinIcon",
199
+ "LinuxIcon",
200
+ "ListOrderedIcon",
201
+ "ListUnorderedIcon",
202
+ "LocationIcon",
203
+ "LockIcon",
204
+ "MarkdownIcon",
205
+ "MarkupIcon",
206
+ "MediumIcon",
207
+ "MemoryIcon",
208
+ "MenuIcon",
209
+ "MergeIcon",
210
+ "MirrorIcon",
211
+ "MobileIcon",
212
+ "MoonIcon",
213
+ "NutIcon",
214
+ "OutboxIcon",
215
+ "OutlineIcon",
216
+ "PaintBrushIcon",
217
+ "PaperClipIcon",
218
+ "ParagraphIcon",
219
+ "PassedIcon",
220
+ "PhoneIcon",
221
+ "PhotoDragIcon",
222
+ "PhotoIcon",
223
+ "PhotoStabilizeIcon",
224
+ "PinAltIcon",
225
+ "PinIcon",
226
+ "PlayAllHollowIcon",
227
+ "PlayBackIcon",
228
+ "PlayHollowIcon",
229
+ "PlayIcon",
230
+ "PlayNextIcon",
231
+ "PlusIcon",
232
+ "PointerDefaultIcon",
233
+ "PointerHandIcon",
234
+ "PowerIcon",
235
+ "PrintIcon",
236
+ "ProceedIcon",
237
+ "ProfileIcon",
238
+ "PullRequestIcon",
239
+ "QuestionIcon",
240
+ "RSSIcon",
241
+ "RedirectIcon",
242
+ "ReduxIcon",
243
+ "RefreshIcon",
244
+ "ReplyIcon",
245
+ "RepoIcon",
246
+ "RequestChangeIcon",
247
+ "RewindIcon",
248
+ "RulerIcon",
249
+ "SaveIcon",
250
+ "SearchIcon",
251
+ "ShareAltIcon",
252
+ "ShareIcon",
253
+ "ShieldIcon",
254
+ "SideBySideIcon",
255
+ "SidebarAltIcon",
256
+ "SidebarAltToggleIcon",
257
+ "SidebarIcon",
258
+ "SidebarToggleIcon",
259
+ "SpeakerIcon",
260
+ "StackedIcon",
261
+ "StarHollowIcon",
262
+ "StarIcon",
263
+ "StatusFailIcon",
264
+ "StatusIcon",
265
+ "StatusPassIcon",
266
+ "StatusWarnIcon",
267
+ "StickerIcon",
268
+ "StopAltHollowIcon",
269
+ "StopAltIcon",
270
+ "StopIcon",
271
+ "StorybookIcon",
272
+ "StructureIcon",
273
+ "SubtractIcon",
274
+ "SunIcon",
275
+ "SupportIcon",
276
+ "SweepIcon",
277
+ "SwitchAltIcon",
278
+ "SyncIcon",
279
+ "TabletIcon",
280
+ "ThumbsUpIcon",
281
+ "TimeIcon",
282
+ "TimerIcon",
283
+ "TransferIcon",
284
+ "TrashIcon",
285
+ "TwitterIcon",
286
+ "TypeIcon",
287
+ "UbuntuIcon",
288
+ "UndoIcon",
289
+ "UnfoldIcon",
290
+ "UnlockIcon",
291
+ "UnpinIcon",
292
+ "UploadIcon",
293
+ "UserAddIcon",
294
+ "UserAltIcon",
295
+ "UserIcon",
296
+ "UsersIcon",
297
+ "VSCodeIcon",
298
+ "VerifiedIcon",
299
+ "VideoIcon",
300
+ "WandIcon",
301
+ "WatchIcon",
302
+ "WindowsIcon",
303
+ "WrenchIcon",
304
+ "XIcon",
305
+ "YoutubeIcon",
306
+ "ZoomIcon",
307
+ "ZoomOutIcon",
308
+ "ZoomResetIcon",
309
+ "iconList"
310
+ ],
311
+ "storybook/manager-api": [
312
+ "ActiveTabs",
313
+ "Consumer",
314
+ "ManagerContext",
315
+ "Provider",
316
+ "RequestResponseError",
317
+ "addons",
318
+ "combineParameters",
319
+ "controlOrMetaKey",
320
+ "controlOrMetaSymbol",
321
+ "eventMatchesShortcut",
322
+ "eventToShortcut",
323
+ "experimental_MockUniversalStore",
324
+ "experimental_UniversalStore",
325
+ "experimental_getStatusStore",
326
+ "experimental_getTestProviderStore",
327
+ "experimental_requestResponse",
328
+ "experimental_useStatusStore",
329
+ "experimental_useTestProviderStore",
330
+ "experimental_useUniversalStore",
331
+ "internal_fullStatusStore",
332
+ "internal_fullTestProviderStore",
333
+ "internal_universalStatusStore",
334
+ "internal_universalTestProviderStore",
335
+ "isMacLike",
336
+ "isShortcutTaken",
337
+ "keyToSymbol",
338
+ "merge",
339
+ "mockChannel",
340
+ "optionOrAltSymbol",
341
+ "shortcutMatchesShortcut",
342
+ "shortcutToHumanString",
343
+ "types",
344
+ "useAddonState",
345
+ "useArgTypes",
346
+ "useArgs",
347
+ "useChannel",
348
+ "useGlobalTypes",
349
+ "useGlobals",
350
+ "useParameter",
351
+ "useSharedState",
352
+ "useStoryPrepared",
353
+ "useStorybookApi",
354
+ "useStorybookState"
355
+ ],
356
+ "storybook/theming": [
357
+ "CacheProvider",
358
+ "ClassNames",
359
+ "Global",
360
+ "ThemeProvider",
361
+ "background",
362
+ "color",
363
+ "convert",
364
+ "create",
365
+ "createCache",
366
+ "createGlobal",
367
+ "createReset",
368
+ "css",
369
+ "darken",
370
+ "ensure",
371
+ "ignoreSsrWarning",
372
+ "isPropValid",
373
+ "jsx",
374
+ "keyframes",
375
+ "lighten",
376
+ "styled",
377
+ "themes",
378
+ "typography",
379
+ "useTheme",
380
+ "withTheme"
381
+ ],
382
+ "storybook/theming/create": ["create", "themes"],
383
+ "storybook/test": [
384
+ "buildQueries",
385
+ "clearAllMocks",
386
+ "configure",
387
+ "createEvent",
388
+ "expect",
389
+ "findAllByAltText",
390
+ "findAllByDisplayValue",
391
+ "findAllByLabelText",
392
+ "findAllByPlaceholderText",
393
+ "findAllByRole",
394
+ "findAllByTestId",
395
+ "findAllByText",
396
+ "findAllByTitle",
397
+ "findByAltText",
398
+ "findByDisplayValue",
399
+ "findByLabelText",
400
+ "findByPlaceholderText",
401
+ "findByRole",
402
+ "findByTestId",
403
+ "findByText",
404
+ "findByTitle",
405
+ "fireEvent",
406
+ "fn",
407
+ "getAllByAltText",
408
+ "getAllByDisplayValue",
409
+ "getAllByLabelText",
410
+ "getAllByPlaceholderText",
411
+ "getAllByRole",
412
+ "getAllByTestId",
413
+ "getAllByText",
414
+ "getAllByTitle",
415
+ "getByAltText",
416
+ "getByDisplayValue",
417
+ "getByLabelText",
418
+ "getByPlaceholderText",
419
+ "getByRole",
420
+ "getByTestId",
421
+ "getByText",
422
+ "getByTitle",
423
+ "getConfig",
424
+ "getDefaultNormalizer",
425
+ "getElementError",
426
+ "getNodeText",
427
+ "getQueriesForElement",
428
+ "getRoles",
429
+ "getSuggestedQuery",
430
+ "isInaccessible",
431
+ "isMockFunction",
432
+ "logDOM",
433
+ "logRoles",
434
+ "mocked",
435
+ "mocks",
436
+ "onMockCall",
437
+ "prettyDOM",
438
+ "prettyFormat",
439
+ "queries",
440
+ "queryAllByAltText",
441
+ "queryAllByAttribute",
442
+ "queryAllByDisplayValue",
443
+ "queryAllByLabelText",
444
+ "queryAllByPlaceholderText",
445
+ "queryAllByRole",
446
+ "queryAllByTestId",
447
+ "queryAllByText",
448
+ "queryAllByTitle",
449
+ "queryByAltText",
450
+ "queryByAttribute",
451
+ "queryByDisplayValue",
452
+ "queryByLabelText",
453
+ "queryByPlaceholderText",
454
+ "queryByRole",
455
+ "queryByTestId",
456
+ "queryByText",
457
+ "queryByTitle",
458
+ "queryHelpers",
459
+ "resetAllMocks",
460
+ "restoreAllMocks",
461
+ "screen",
462
+ "spyOn",
463
+ "uninstrumentedUserEvent",
464
+ "userEvent",
465
+ "waitFor",
466
+ "waitForElementToBeRemoved",
467
+ "within"
468
+ ],
469
+ "storybook/internal/channels": [
470
+ "Channel",
471
+ "HEARTBEAT_INTERVAL",
472
+ "HEARTBEAT_MAX_LATENCY",
473
+ "PostMessageTransport",
474
+ "WebsocketTransport",
475
+ "createBrowserChannel"
476
+ ],
477
+ "storybook/internal/client-logger": ["deprecate", "logger", "once", "pretty"],
478
+ "storybook/internal/components": [
479
+ "A",
480
+ "ActionBar",
481
+ "AddonPanel",
482
+ "Badge",
483
+ "Bar",
484
+ "Blockquote",
485
+ "Button",
486
+ "Checkbox",
487
+ "ClipboardCode",
488
+ "Code",
489
+ "DL",
490
+ "Div",
491
+ "DocumentWrapper",
492
+ "EmptyTabContent",
493
+ "ErrorFormatter",
494
+ "FlexBar",
495
+ "Form",
496
+ "H1",
497
+ "H2",
498
+ "H3",
499
+ "H4",
500
+ "H5",
501
+ "H6",
502
+ "HR",
503
+ "IconButton",
504
+ "Img",
505
+ "LI",
506
+ "Link",
507
+ "ListItem",
508
+ "Loader",
509
+ "Modal",
510
+ "OL",
511
+ "P",
512
+ "Placeholder",
513
+ "Pre",
514
+ "ProgressSpinner",
515
+ "ResetWrapper",
516
+ "ScrollArea",
517
+ "Separator",
518
+ "Spaced",
519
+ "Span",
520
+ "StorybookIcon",
521
+ "StorybookLogo",
522
+ "SyntaxHighlighter",
523
+ "TT",
524
+ "TabBar",
525
+ "TabButton",
526
+ "TabWrapper",
527
+ "Table",
528
+ "Tabs",
529
+ "TabsState",
530
+ "TooltipLinkList",
531
+ "TooltipMessage",
532
+ "TooltipNote",
533
+ "UL",
534
+ "WithTooltip",
535
+ "WithTooltipPure",
536
+ "Zoom",
537
+ "codeCommon",
538
+ "components",
539
+ "createCopyToClipboardFunction",
540
+ "getStoryHref",
541
+ "interleaveSeparators",
542
+ "nameSpaceClassNames",
543
+ "resetComponents",
544
+ "withReset"
545
+ ],
546
+ "storybook/internal/core-errors": [
547
+ "ARGTYPES_INFO_REQUEST",
548
+ "ARGTYPES_INFO_RESPONSE",
549
+ "CHANNEL_CREATED",
550
+ "CHANNEL_WS_DISCONNECT",
551
+ "CONFIG_ERROR",
552
+ "CREATE_NEW_STORYFILE_REQUEST",
553
+ "CREATE_NEW_STORYFILE_RESPONSE",
554
+ "CURRENT_STORY_WAS_SET",
555
+ "DOCS_PREPARED",
556
+ "DOCS_RENDERED",
557
+ "FILE_COMPONENT_SEARCH_REQUEST",
558
+ "FILE_COMPONENT_SEARCH_RESPONSE",
559
+ "FORCE_REMOUNT",
560
+ "FORCE_RE_RENDER",
561
+ "GLOBALS_UPDATED",
562
+ "NAVIGATE_URL",
563
+ "PLAY_FUNCTION_THREW_EXCEPTION",
564
+ "PRELOAD_ENTRIES",
565
+ "PREVIEW_BUILDER_PROGRESS",
566
+ "PREVIEW_KEYDOWN",
567
+ "REGISTER_SUBSCRIPTION",
568
+ "REQUEST_WHATS_NEW_DATA",
569
+ "RESET_STORY_ARGS",
570
+ "RESULT_WHATS_NEW_DATA",
571
+ "SAVE_STORY_REQUEST",
572
+ "SAVE_STORY_RESPONSE",
573
+ "SELECT_STORY",
574
+ "SET_CONFIG",
575
+ "SET_CURRENT_STORY",
576
+ "SET_FILTER",
577
+ "SET_GLOBALS",
578
+ "SET_INDEX",
579
+ "SET_STORIES",
580
+ "SET_WHATS_NEW_CACHE",
581
+ "SHARED_STATE_CHANGED",
582
+ "SHARED_STATE_SET",
583
+ "STORIES_COLLAPSE_ALL",
584
+ "STORIES_EXPAND_ALL",
585
+ "STORY_ARGS_UPDATED",
586
+ "STORY_CHANGED",
587
+ "STORY_ERRORED",
588
+ "STORY_FINISHED",
589
+ "STORY_HOT_UPDATED",
590
+ "STORY_INDEX_INVALIDATED",
591
+ "STORY_MISSING",
592
+ "STORY_PREPARED",
593
+ "STORY_RENDERED",
594
+ "STORY_RENDER_PHASE_CHANGED",
595
+ "STORY_SPECIFIED",
596
+ "STORY_THREW_EXCEPTION",
597
+ "STORY_UNCHANGED",
598
+ "TELEMETRY_ERROR",
599
+ "TOGGLE_WHATS_NEW_NOTIFICATIONS",
600
+ "UNHANDLED_ERRORS_WHILE_PLAYING",
601
+ "UPDATE_GLOBALS",
602
+ "UPDATE_QUERY_PARAMS",
603
+ "UPDATE_STORY_ARGS"
604
+ ],
605
+ "storybook/internal/core-events": [
606
+ "ARGTYPES_INFO_REQUEST",
607
+ "ARGTYPES_INFO_RESPONSE",
608
+ "CHANNEL_CREATED",
609
+ "CHANNEL_WS_DISCONNECT",
610
+ "CONFIG_ERROR",
611
+ "CREATE_NEW_STORYFILE_REQUEST",
612
+ "CREATE_NEW_STORYFILE_RESPONSE",
613
+ "CURRENT_STORY_WAS_SET",
614
+ "DOCS_PREPARED",
615
+ "DOCS_RENDERED",
616
+ "FILE_COMPONENT_SEARCH_REQUEST",
617
+ "FILE_COMPONENT_SEARCH_RESPONSE",
618
+ "FORCE_REMOUNT",
619
+ "FORCE_RE_RENDER",
620
+ "GLOBALS_UPDATED",
621
+ "NAVIGATE_URL",
622
+ "PLAY_FUNCTION_THREW_EXCEPTION",
623
+ "PRELOAD_ENTRIES",
624
+ "PREVIEW_BUILDER_PROGRESS",
625
+ "PREVIEW_KEYDOWN",
626
+ "REGISTER_SUBSCRIPTION",
627
+ "REQUEST_WHATS_NEW_DATA",
628
+ "RESET_STORY_ARGS",
629
+ "RESULT_WHATS_NEW_DATA",
630
+ "SAVE_STORY_REQUEST",
631
+ "SAVE_STORY_RESPONSE",
632
+ "SELECT_STORY",
633
+ "SET_CONFIG",
634
+ "SET_CURRENT_STORY",
635
+ "SET_FILTER",
636
+ "SET_GLOBALS",
637
+ "SET_INDEX",
638
+ "SET_STORIES",
639
+ "SET_WHATS_NEW_CACHE",
640
+ "SHARED_STATE_CHANGED",
641
+ "SHARED_STATE_SET",
642
+ "STORIES_COLLAPSE_ALL",
643
+ "STORIES_EXPAND_ALL",
644
+ "STORY_ARGS_UPDATED",
645
+ "STORY_CHANGED",
646
+ "STORY_ERRORED",
647
+ "STORY_FINISHED",
648
+ "STORY_HOT_UPDATED",
649
+ "STORY_INDEX_INVALIDATED",
650
+ "STORY_MISSING",
651
+ "STORY_PREPARED",
652
+ "STORY_RENDERED",
653
+ "STORY_RENDER_PHASE_CHANGED",
654
+ "STORY_SPECIFIED",
655
+ "STORY_THREW_EXCEPTION",
656
+ "STORY_UNCHANGED",
657
+ "TELEMETRY_ERROR",
658
+ "TOGGLE_WHATS_NEW_NOTIFICATIONS",
659
+ "UNHANDLED_ERRORS_WHILE_PLAYING",
660
+ "UPDATE_GLOBALS",
661
+ "UPDATE_QUERY_PARAMS",
662
+ "UPDATE_STORY_ARGS"
663
+ ],
664
+ "storybook/internal/manager-errors": [
665
+ "Category",
666
+ "ProviderDoesNotExtendBaseProviderError",
667
+ "StatusTypeIdMismatchError",
668
+ "UncaughtManagerError"
669
+ ],
670
+ "storybook/internal/router": [
671
+ "BaseLocationProvider",
672
+ "DEEPLY_EQUAL",
673
+ "Link",
674
+ "Location",
675
+ "LocationProvider",
676
+ "Match",
677
+ "Route",
678
+ "buildArgsParam",
679
+ "deepDiff",
680
+ "getMatch",
681
+ "parsePath",
682
+ "queryFromLocation",
683
+ "stringifyQuery",
684
+ "useNavigate"
685
+ ],
686
+ "storybook/internal/types": ["Addon_TypesEnum"],
687
+ "storybook/internal/manager-api": [
688
+ "ActiveTabs",
689
+ "Consumer",
690
+ "ManagerContext",
691
+ "Provider",
692
+ "RequestResponseError",
693
+ "addons",
694
+ "combineParameters",
695
+ "controlOrMetaKey",
696
+ "controlOrMetaSymbol",
697
+ "eventMatchesShortcut",
698
+ "eventToShortcut",
699
+ "experimental_MockUniversalStore",
700
+ "experimental_UniversalStore",
701
+ "experimental_getStatusStore",
702
+ "experimental_getTestProviderStore",
703
+ "experimental_requestResponse",
704
+ "experimental_useStatusStore",
705
+ "experimental_useTestProviderStore",
706
+ "experimental_useUniversalStore",
707
+ "internal_fullStatusStore",
708
+ "internal_fullTestProviderStore",
709
+ "internal_universalStatusStore",
710
+ "internal_universalTestProviderStore",
711
+ "isMacLike",
712
+ "isShortcutTaken",
713
+ "keyToSymbol",
714
+ "merge",
715
+ "mockChannel",
716
+ "optionOrAltSymbol",
717
+ "shortcutMatchesShortcut",
718
+ "shortcutToHumanString",
719
+ "types",
720
+ "useAddonState",
721
+ "useArgTypes",
722
+ "useArgs",
723
+ "useChannel",
724
+ "useGlobalTypes",
725
+ "useGlobals",
726
+ "useParameter",
727
+ "useSharedState",
728
+ "useStoryPrepared",
729
+ "useStorybookApi",
730
+ "useStorybookState"
731
+ ],
732
+ "storybook/internal/theming": [
733
+ "CacheProvider",
734
+ "ClassNames",
735
+ "Global",
736
+ "ThemeProvider",
737
+ "background",
738
+ "color",
739
+ "convert",
740
+ "create",
741
+ "createCache",
742
+ "createGlobal",
743
+ "createReset",
744
+ "css",
745
+ "darken",
746
+ "ensure",
747
+ "ignoreSsrWarning",
748
+ "isPropValid",
749
+ "jsx",
750
+ "keyframes",
751
+ "lighten",
752
+ "styled",
753
+ "themes",
754
+ "typography",
755
+ "useTheme",
756
+ "withTheme"
757
+ ],
758
+ "storybook/internal/theming/create": ["create", "themes"]
759
+ };
760
+
761
+ // src/manager/globals/globals.ts
762
+ var o = {
763
+ react: "__REACT__",
764
+ "react-dom": "__REACT_DOM__",
765
+ "react-dom/client": "__REACT_DOM_CLIENT__",
766
+ "@storybook/icons": "__STORYBOOK_ICONS__",
767
+ "storybook/manager-api": "__STORYBOOK_API__",
768
+ "storybook/test": "__STORYBOOK_TEST__",
769
+ "storybook/theming": "__STORYBOOK_THEMING__",
770
+ "storybook/theming/create": "__STORYBOOK_THEMING_CREATE__",
771
+ "storybook/internal/channels": "__STORYBOOK_CHANNELS__",
772
+ "storybook/internal/client-logger": "__STORYBOOK_CLIENT_LOGGER__",
773
+ "storybook/internal/components": "__STORYBOOK_COMPONENTS__",
774
+ "storybook/internal/core-errors": "__STORYBOOK_CORE_EVENTS__",
775
+ "storybook/internal/core-events": "__STORYBOOK_CORE_EVENTS__",
776
+ "storybook/internal/manager-errors": "__STORYBOOK_CORE_EVENTS_MANAGER_ERRORS__",
777
+ "storybook/internal/router": "__STORYBOOK_ROUTER__",
778
+ "storybook/internal/types": "__STORYBOOK_TYPES__",
779
+ // @deprecated TODO: delete in 9.1
780
+ "storybook/internal/manager-api": "__STORYBOOK_API__",
781
+ "storybook/internal/theming": "__STORYBOOK_THEMING__",
782
+ "storybook/internal/theming/create": "__STORYBOOK_THEMING_CREATE__"
783
+ }, r = Object.keys(o);
784
+
785
+ // src/manager/globals/globals-module-info.ts
786
+ var E = r.reduce(
787
+ (t, e) => (t[e] = {
788
+ type: "esm",
789
+ varName: o[e],
790
+ namedExports: n[e],
791
+ defaultExport: !0
792
+ }, t),
793
+ {}
794
+ );
795
+ export {
796
+ E as globalsModuleInfoMap
797
+ };