storybook 9.0.0-alpha.3 → 9.0.0-alpha.4

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 (73) hide show
  1. package/README.md +1 -1
  2. package/dist/actions/decorator.d.ts +6 -0
  3. package/dist/actions/decorator.js +139 -0
  4. package/dist/actions/index.cjs +127 -0
  5. package/dist/actions/index.d.ts +105 -0
  6. package/dist/actions/index.js +112 -0
  7. package/dist/actions/manager.js +1196 -0
  8. package/dist/actions/preview.cjs +165 -0
  9. package/dist/actions/preview.d.ts +55 -0
  10. package/dist/actions/preview.js +156 -0
  11. package/dist/bin/index.cjs +63 -64
  12. package/dist/bin/index.js +63 -64
  13. package/dist/channels/index.cjs +207 -230
  14. package/dist/channels/index.js +302 -304
  15. package/dist/cli/bin/index.cjs +405 -405
  16. package/dist/cli/bin/index.js +410 -410
  17. package/dist/client-logger/index.cjs +56 -88
  18. package/dist/client-logger/index.js +41 -47
  19. package/dist/common/index.cjs +65 -67
  20. package/dist/common/index.d.ts +1 -4
  21. package/dist/common/index.js +65 -67
  22. package/dist/components/index.cjs +9413 -11578
  23. package/dist/components/index.d.ts +92 -92
  24. package/dist/components/index.js +6768 -7544
  25. package/dist/core-events/index.d.ts +138 -25
  26. package/dist/core-server/index.cjs +5241 -5265
  27. package/dist/core-server/index.js +5353 -5375
  28. package/dist/core-server/presets/common-manager.js +11 -19
  29. package/dist/core-server/presets/common-preset.cjs +243 -242
  30. package/dist/core-server/presets/common-preset.js +379 -378
  31. package/dist/csf/index.cjs +76 -120
  32. package/dist/csf/index.d.ts +1 -3
  33. package/dist/csf/index.js +69 -113
  34. package/dist/docs-tools/index.cjs +1 -1
  35. package/dist/docs-tools/index.d.ts +2 -2
  36. package/dist/docs-tools/index.js +1 -1
  37. package/dist/instrumenter/index.cjs +1260 -1289
  38. package/dist/instrumenter/index.js +1344 -1348
  39. package/dist/manager/globals-module-info.cjs +272 -135
  40. package/dist/manager/globals-module-info.d.ts +1 -1
  41. package/dist/manager/globals-module-info.js +257 -120
  42. package/dist/manager/globals-runtime.js +59553 -22371
  43. package/dist/manager/globals.cjs +23 -19
  44. package/dist/manager/globals.d.ts +8 -5
  45. package/dist/manager/globals.js +10 -6
  46. package/dist/manager/runtime.js +129 -129
  47. package/dist/manager-api/index.cjs +1182 -1205
  48. package/dist/manager-api/index.d.ts +2 -2
  49. package/dist/manager-api/index.js +1010 -1008
  50. package/dist/preview/globals.cjs +21 -17
  51. package/dist/preview/globals.d.ts +4 -1
  52. package/dist/preview/globals.js +6 -2
  53. package/dist/preview/runtime.js +43946 -6546
  54. package/dist/preview-api/index.cjs +1243 -1239
  55. package/dist/preview-api/index.d.ts +104 -60
  56. package/dist/preview-api/index.js +1310 -1270
  57. package/dist/router/index.cjs +847 -871
  58. package/dist/router/index.js +193 -199
  59. package/dist/test/index.cjs +10068 -10205
  60. package/dist/test/index.d.ts +4 -4
  61. package/dist/test/index.js +9741 -9623
  62. package/dist/test/preview.cjs +15870 -0
  63. package/dist/test/preview.d.ts +54 -0
  64. package/dist/test/preview.js +14441 -0
  65. package/dist/test/spy.cjs +258 -0
  66. package/dist/test/spy.d.ts +66 -0
  67. package/dist/test/spy.js +240 -0
  68. package/dist/theming/create.cjs +79 -2269
  69. package/dist/theming/create.js +67 -841
  70. package/dist/theming/index.cjs +1065 -3232
  71. package/dist/theming/index.js +951 -1719
  72. package/dist/types/index.d.ts +242 -242
  73. package/package.json +134 -3
@@ -2,7 +2,7 @@ import { TestingLibraryMatchers } from '@testing-library/jest-dom/matchers';
2
2
  import { AsymmetricMatchersContaining, JestAssertion, ExpectStatic, MatchersObject, MatcherState } from '@vitest/expect';
3
3
  import * as domTestingLibrary from '@testing-library/dom';
4
4
  import { BoundFunctions } from '@testing-library/dom';
5
- import _userEvent from '@testing-library/user-event';
5
+ import _userEvent, { userEvent as userEvent$1 } from '@testing-library/user-event';
6
6
  import { MockInstance, spyOn as spyOn$1, Mock as Mock$1, MaybeMocked, MaybeMockedDeep, MaybePartiallyMocked, MaybePartiallyMockedDeep } from '@vitest/spy';
7
7
  export * from '@vitest/spy';
8
8
  export { isMockFunction, mocks } from '@vitest/spy';
@@ -173,14 +173,14 @@ declare function mocked<T>(item: T, options: {
173
173
  declare function mocked<T>(item: T): MaybeMocked<T>;
174
174
 
175
175
  type Queries = BoundFunctions<typeof queries>;
176
+ type UserEventObject = ReturnType<typeof userEvent$1.setup>;
176
177
  declare module 'storybook/internal/csf' {
177
178
  interface Canvas extends Queries {
178
179
  }
179
180
  interface StoryContext {
181
+ userEvent: UserEventObject;
180
182
  }
181
183
  }
182
184
  declare const expect: Expect;
183
185
 
184
- declare const traverseArgs: (value: unknown, depth?: number, key?: string) => unknown;
185
-
186
- export { type Mock, type UserEvent, buildQueries, clearAllMocks, configure, createEvent, expect, findAllByAltText, findAllByDisplayValue, findAllByLabelText, findAllByPlaceholderText, findAllByRole, findAllByTestId, findAllByText, findAllByTitle, findByAltText, findByDisplayValue, findByLabelText, findByPlaceholderText, findByRole, findByTestId, findByText, findByTitle, fireEvent, fn, getAllByAltText, getAllByDisplayValue, getAllByLabelText, getAllByPlaceholderText, getAllByRole, getAllByTestId, getAllByText, getAllByTitle, getByAltText, getByDisplayValue, getByLabelText, getByPlaceholderText, getByRole, getByTestId, getByText, getByTitle, getConfig, getDefaultNormalizer, getElementError, getNodeText, getQueriesForElement, getRoles, getSuggestedQuery, isInaccessible, logDOM, logRoles, mocked, onMockCall, prettyDOM, prettyFormat, queries, queryAllByAltText, queryAllByAttribute, queryAllByDisplayValue, queryAllByLabelText, queryAllByPlaceholderText, queryAllByRole, queryAllByTestId, queryAllByText, queryAllByTitle, queryByAltText, queryByAttribute, queryByDisplayValue, queryByLabelText, queryByPlaceholderText, queryByRole, queryByTestId, queryByText, queryByTitle, queryHelpers, resetAllMocks, restoreAllMocks, screen, spyOn, traverseArgs, userEvent, waitFor, waitForElementToBeRemoved, within };
186
+ export { type Mock, type UserEvent, type UserEventObject, buildQueries, clearAllMocks, configure, createEvent, expect, findAllByAltText, findAllByDisplayValue, findAllByLabelText, findAllByPlaceholderText, findAllByRole, findAllByTestId, findAllByText, findAllByTitle, findByAltText, findByDisplayValue, findByLabelText, findByPlaceholderText, findByRole, findByTestId, findByText, findByTitle, fireEvent, fn, getAllByAltText, getAllByDisplayValue, getAllByLabelText, getAllByPlaceholderText, getAllByRole, getAllByTestId, getAllByText, getAllByTitle, getByAltText, getByDisplayValue, getByLabelText, getByPlaceholderText, getByRole, getByTestId, getByText, getByTitle, getConfig, getDefaultNormalizer, getElementError, getNodeText, getQueriesForElement, getRoles, getSuggestedQuery, isInaccessible, logDOM, logRoles, mocked, onMockCall, prettyDOM, prettyFormat, queries, queryAllByAltText, queryAllByAttribute, queryAllByDisplayValue, queryAllByLabelText, queryAllByPlaceholderText, queryAllByRole, queryAllByTestId, queryAllByText, queryAllByTitle, queryByAltText, queryByAttribute, queryByDisplayValue, queryByLabelText, queryByPlaceholderText, queryByRole, queryByTestId, queryByText, queryByTitle, queryHelpers, resetAllMocks, restoreAllMocks, screen, spyOn, userEvent, waitFor, waitForElementToBeRemoved, within };