storybook-vue3-rsbuild 0.0.1-beta.0 → 0.0.1

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 (59) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +1 -3
  3. package/dist/chunk-3EIOPNXP.mjs +57 -0
  4. package/dist/chunk-4WQDGMXE.mjs +57 -0
  5. package/dist/chunk-5UCYT2FA.mjs +66 -0
  6. package/dist/chunk-5ZQEOG4N.mjs +50 -0
  7. package/dist/chunk-A5GQNXZ2.mjs +58 -0
  8. package/dist/chunk-BWOSHFK4.mjs +44 -0
  9. package/dist/chunk-C26GBKJG.mjs +72 -0
  10. package/dist/chunk-CDFKRFI5.mjs +52 -0
  11. package/dist/chunk-CIPUH5EH.mjs +56 -0
  12. package/dist/chunk-D6UQSHGU.mjs +56 -0
  13. package/dist/chunk-DOD3HV6P.mjs +71 -0
  14. package/dist/chunk-I3W2BDYZ.mjs +71 -0
  15. package/dist/chunk-IDUKMUEB.mjs +52 -0
  16. package/dist/chunk-IH3TXYTU.mjs +72 -0
  17. package/dist/chunk-JZRX3EGM.mjs +74 -0
  18. package/dist/chunk-KLVY43ZM.mjs +44 -0
  19. package/dist/chunk-LBVFB7EC.mjs +47 -0
  20. package/dist/chunk-MPIQ664X.mjs +71 -0
  21. package/dist/chunk-MY2IYEFI.mjs +58 -0
  22. package/dist/chunk-O6KUUZA6.mjs +53 -0
  23. package/dist/chunk-PEWUKCXX.mjs +58 -0
  24. package/dist/chunk-PFDX7D2C.mjs +55 -0
  25. package/dist/chunk-PHFFO7A6.mjs +71 -0
  26. package/dist/chunk-PJZVTTEB.mjs +56 -0
  27. package/dist/chunk-Q2SNQVVN.mjs +57 -0
  28. package/dist/chunk-R57CWIPS.mjs +51 -0
  29. package/dist/chunk-RNDU3TK7.mjs +72 -0
  30. package/dist/chunk-RTN725VB.mjs +52 -0
  31. package/dist/chunk-SKTSBEAV.mjs +66 -0
  32. package/dist/chunk-TCBK3RAA.mjs +38 -0
  33. package/dist/chunk-TFF6KQ6T.mjs +73 -0
  34. package/dist/chunk-U3HZHJ2X.mjs +72 -0
  35. package/dist/chunk-U42XVPSO.mjs +53 -0
  36. package/dist/chunk-U4E5MR76.mjs +44 -0
  37. package/dist/chunk-UQ3S245P.mjs +56 -0
  38. package/dist/chunk-V5RZT43H.mjs +72 -0
  39. package/dist/chunk-VGEIG6F4.mjs +30 -0
  40. package/dist/chunk-WKGR473C.mjs +67 -0
  41. package/dist/chunk-X2B4PYBX.mjs +44 -0
  42. package/dist/chunk-YAXBE2N5.mjs +57 -0
  43. package/dist/chunk-ZSNEJSBE.mjs +56 -0
  44. package/dist/chunk-ZXIRSC62.mjs +47 -0
  45. package/dist/framework-preset-vue3-docs.d.mts +7 -0
  46. package/dist/framework-preset-vue3-docs.d.ts +7 -0
  47. package/dist/framework-preset-vue3-docs.js +72 -0
  48. package/dist/framework-preset-vue3-docs.mjs +6 -0
  49. package/dist/index.d.mts +3 -0
  50. package/dist/index.d.ts +27 -2
  51. package/dist/preset.d.mts +9 -0
  52. package/dist/preset.d.ts +10 -2
  53. package/dist/preset.mjs +11 -8
  54. package/dist/types.d.mts +26 -0
  55. package/dist/types.d.ts +26 -0
  56. package/dist/types.mjs +1 -1
  57. package/package.json +2 -2
  58. package/dist/chunk-T3L66TVZ.mjs +0 -0
  59. package/dist/chunk-YXYUSZA3.mjs +0 -0
@@ -0,0 +1,26 @@
1
+ import { StorybookConfig as StorybookConfig$1 } from '@storybook/types';
2
+ import { BuilderOptions, StorybookConfigRsbuild } from '@storybook/builder-rsbuild';
3
+
4
+ type FrameworkName = '@storybook/vue3-rsbuild';
5
+ type BuilderName = '@storybook/builder-rsbuild';
6
+ type FrameworkOptions = {
7
+ builder?: BuilderOptions;
8
+ };
9
+ type StorybookConfigFramework = {
10
+ framework: FrameworkName | {
11
+ name: FrameworkName;
12
+ options: FrameworkOptions;
13
+ };
14
+ core?: StorybookConfig$1['core'] & {
15
+ builder?: BuilderName | {
16
+ name: BuilderName;
17
+ options: BuilderOptions;
18
+ };
19
+ };
20
+ };
21
+ /**
22
+ * The interface for Storybook configuration in `main.ts` files.
23
+ */
24
+ type StorybookConfig = Omit<StorybookConfig$1, keyof StorybookConfigRsbuild | keyof StorybookConfigFramework> & StorybookConfigRsbuild & StorybookConfigFramework;
25
+
26
+ export type { FrameworkOptions, StorybookConfig };
@@ -0,0 +1,26 @@
1
+ import { StorybookConfig as StorybookConfig$1 } from '@storybook/types';
2
+ import { BuilderOptions, StorybookConfigRsbuild } from '@storybook/builder-rsbuild';
3
+
4
+ type FrameworkName = '@storybook/vue3-rsbuild';
5
+ type BuilderName = '@storybook/builder-rsbuild';
6
+ type FrameworkOptions = {
7
+ builder?: BuilderOptions;
8
+ };
9
+ type StorybookConfigFramework = {
10
+ framework: FrameworkName | {
11
+ name: FrameworkName;
12
+ options: FrameworkOptions;
13
+ };
14
+ core?: StorybookConfig$1['core'] & {
15
+ builder?: BuilderName | {
16
+ name: BuilderName;
17
+ options: BuilderOptions;
18
+ };
19
+ };
20
+ };
21
+ /**
22
+ * The interface for Storybook configuration in `main.ts` files.
23
+ */
24
+ type StorybookConfig = Omit<StorybookConfig$1, keyof StorybookConfigRsbuild | keyof StorybookConfigFramework> & StorybookConfigRsbuild & StorybookConfigFramework;
25
+
26
+ export type { FrameworkOptions, StorybookConfig };
package/dist/types.mjs CHANGED
@@ -1 +1 @@
1
- import "./chunk-WAXGOBY2.mjs";
1
+ import "./chunk-WBQAMGXK.mjs";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "storybook-vue3-rsbuild",
3
- "version": "0.0.1-beta.0",
3
+ "version": "0.0.1",
4
4
  "description": "Storybook for Vue3: Develop React Component in isolation with Hot Reloading.",
5
5
  "keywords": [
6
6
  "storybook"
@@ -39,7 +39,7 @@
39
39
  "@storybook/docs-tools": "8.0.10",
40
40
  "@storybook/types": "8.0.10",
41
41
  "vue-docgen-loader": "^1.5.1",
42
- "storybook-builder-rsbuild": "0.0.1-beta.0"
42
+ "storybook-builder-rsbuild": "0.0.1"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@types/node": "^18.0.0",
File without changes
File without changes