@storybook/addon-docs 6.5.0-alpha.9 → 6.5.0-beta.2

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 (532) hide show
  1. package/README.md +4 -13
  2. package/angular/README.md +0 -6
  3. package/angular/index.d.ts +1 -1
  4. package/angular/index.js +7 -1
  5. package/dist/cjs/blocks/Anchor.js +1 -1
  6. package/dist/cjs/blocks/ArgsTable.js +49 -13
  7. package/dist/cjs/blocks/Canvas.js +13 -11
  8. package/dist/cjs/blocks/Description.js +10 -10
  9. package/dist/cjs/blocks/DocsContainer.js +8 -6
  10. package/dist/cjs/blocks/DocsContext.js +2 -2
  11. package/dist/cjs/blocks/Heading.js +2 -2
  12. package/dist/cjs/blocks/Meta.js +8 -6
  13. package/dist/cjs/blocks/Primary.js +7 -7
  14. package/dist/cjs/blocks/Source.js +23 -10
  15. package/dist/cjs/blocks/SourceContainer.js +28 -18
  16. package/dist/cjs/blocks/Stories.js +14 -7
  17. package/dist/cjs/blocks/Story.js +12 -30
  18. package/dist/cjs/blocks/Subheading.js +2 -2
  19. package/dist/cjs/blocks/Subtitle.js +5 -5
  20. package/dist/cjs/blocks/Title.js +8 -8
  21. package/dist/cjs/blocks/enhanceSource.js +5 -5
  22. package/dist/cjs/blocks/index.js +6 -4
  23. package/dist/cjs/blocks/mdx.js +18 -10
  24. package/dist/cjs/blocks/useStory.js +8 -6
  25. package/dist/cjs/blocks/utils.js +3 -3
  26. package/dist/cjs/index.js +2 -0
  27. package/dist/cjs/{register.js → manager.js} +0 -0
  28. package/dist/cjs/preset.js +226 -0
  29. package/dist/cjs/{frameworks/common/config.js → preview.js} +11 -17
  30. package/dist/esm/blocks/ArgsTable.js +39 -6
  31. package/dist/esm/blocks/Canvas.js +5 -3
  32. package/dist/esm/blocks/Description.js +1 -1
  33. package/dist/esm/blocks/DocsContainer.js +3 -2
  34. package/dist/esm/blocks/DocsContext.js +2 -2
  35. package/dist/esm/blocks/Heading.js +1 -1
  36. package/dist/esm/blocks/Meta.js +3 -2
  37. package/dist/esm/blocks/Primary.js +1 -0
  38. package/dist/esm/blocks/Source.js +16 -2
  39. package/dist/esm/blocks/SourceContainer.js +22 -13
  40. package/dist/esm/blocks/Stories.js +7 -0
  41. package/dist/esm/blocks/Story.js +6 -25
  42. package/dist/esm/blocks/Subheading.js +1 -1
  43. package/dist/esm/blocks/Title.js +1 -1
  44. package/dist/esm/blocks/enhanceSource.js +3 -3
  45. package/dist/esm/blocks/mdx.js +16 -9
  46. package/dist/esm/blocks/useStory.js +15 -15
  47. package/dist/esm/blocks/utils.js +1 -1
  48. package/dist/esm/{register.js → manager.js} +0 -0
  49. package/dist/esm/preset.js +197 -0
  50. package/dist/esm/{frameworks/common/config.js → preview.js} +5 -9
  51. package/dist/modern/blocks/ArgsTable.js +24 -3
  52. package/dist/modern/blocks/Canvas.js +3 -1
  53. package/dist/modern/blocks/Description.js +1 -1
  54. package/dist/modern/blocks/DocsContext.js +2 -2
  55. package/dist/modern/blocks/Source.js +17 -2
  56. package/dist/modern/blocks/SourceContainer.js +18 -12
  57. package/dist/modern/blocks/Stories.js +5 -0
  58. package/dist/modern/blocks/Story.js +2 -24
  59. package/dist/modern/blocks/mdx.js +13 -8
  60. package/dist/modern/{register.js → manager.js} +0 -0
  61. package/dist/modern/{frameworks/common/preset.js → preset.js} +16 -17
  62. package/dist/modern/preview.js +6 -0
  63. package/dist/ts3.4/blocks/Source.d.ts +5 -3
  64. package/dist/ts3.4/blocks/SourceContainer.d.ts +5 -1
  65. package/dist/ts3.4/{register.d.ts → manager.d.ts} +0 -0
  66. package/dist/ts3.4/preset.d.ts +11 -0
  67. package/dist/ts3.4/preview.d.ts +6 -0
  68. package/dist/ts3.9/blocks/DocsContext.d.ts +2 -2
  69. package/dist/ts3.9/blocks/Source.d.ts +5 -3
  70. package/dist/ts3.9/blocks/SourceContainer.d.ts +6 -2
  71. package/dist/ts3.9/blocks/enhanceSource.d.ts +2 -2
  72. package/dist/ts3.9/blocks/useStory.d.ts +2 -2
  73. package/dist/ts3.9/{register.d.ts → manager.d.ts} +0 -0
  74. package/dist/ts3.9/preset.d.ts +11 -0
  75. package/dist/ts3.9/preview.d.ts +6 -0
  76. package/ember/index.js +6 -1
  77. package/jest-transform-mdx.js +2 -5
  78. package/manager.js +1 -0
  79. package/mdx-compiler-plugin.js +1 -1
  80. package/package.json +24 -118
  81. package/preset.js +1 -16
  82. package/preview.js +1 -0
  83. package/register.js +6 -1
  84. package/{dist/cjs/frameworks/svelte → svelte}/HOC.svelte +0 -0
  85. package/common-preset.js +0 -19
  86. package/dist/cjs/frameworks/angular/compodoc.js +0 -397
  87. package/dist/cjs/frameworks/angular/config.js +0 -31
  88. package/dist/cjs/frameworks/angular/index.js +0 -22
  89. package/dist/cjs/frameworks/angular/prepareForInline.js +0 -96
  90. package/dist/cjs/frameworks/angular/sourceDecorator.js +0 -159
  91. package/dist/cjs/frameworks/angular/types.js +0 -1
  92. package/dist/cjs/frameworks/common/enhanceArgTypes.js +0 -21
  93. package/dist/cjs/frameworks/common/preset.js +0 -187
  94. package/dist/cjs/frameworks/ember/config.js +0 -17
  95. package/dist/cjs/frameworks/ember/index.js +0 -13
  96. package/dist/cjs/frameworks/ember/jsondoc.js +0 -87
  97. package/dist/cjs/frameworks/html/config.js +0 -26
  98. package/dist/cjs/frameworks/html/prepareForInline.js +0 -29
  99. package/dist/cjs/frameworks/html/sourceDecorator.js +0 -67
  100. package/dist/cjs/frameworks/react/config.js +0 -27
  101. package/dist/cjs/frameworks/react/extractArgTypes.js +0 -52
  102. package/dist/cjs/frameworks/react/extractProps.js +0 -77
  103. package/dist/cjs/frameworks/react/jsxDecorator.js +0 -277
  104. package/dist/cjs/frameworks/react/lib/captions.js +0 -18
  105. package/dist/cjs/frameworks/react/lib/componentTypes.js +0 -24
  106. package/dist/cjs/frameworks/react/lib/defaultValues/createDefaultValue.js +0 -81
  107. package/dist/cjs/frameworks/react/lib/defaultValues/createFromRawDefaultProp.js +0 -225
  108. package/dist/cjs/frameworks/react/lib/defaultValues/generateArray.js +0 -29
  109. package/dist/cjs/frameworks/react/lib/defaultValues/generateObject.js +0 -29
  110. package/dist/cjs/frameworks/react/lib/defaultValues/index.js +0 -35
  111. package/dist/cjs/frameworks/react/lib/defaultValues/prettyIdentifier.js +0 -34
  112. package/dist/cjs/frameworks/react/lib/generateCode.js +0 -89
  113. package/dist/cjs/frameworks/react/lib/index.js +0 -61
  114. package/dist/cjs/frameworks/react/lib/inspection/acornParser.js +0 -254
  115. package/dist/cjs/frameworks/react/lib/inspection/index.js +0 -35
  116. package/dist/cjs/frameworks/react/lib/inspection/inspectValue.js +0 -26
  117. package/dist/cjs/frameworks/react/lib/inspection/types.js +0 -19
  118. package/dist/cjs/frameworks/react/lib/isHtmlTag.js +0 -18
  119. package/dist/cjs/frameworks/react/propTypes/createType.js +0 -467
  120. package/dist/cjs/frameworks/react/propTypes/generateFuncSignature.js +0 -78
  121. package/dist/cjs/frameworks/react/propTypes/handleProp.js +0 -54
  122. package/dist/cjs/frameworks/react/propTypes/rawDefaultPropResolvers.js +0 -47
  123. package/dist/cjs/frameworks/react/propTypes/sortProps.js +0 -35
  124. package/dist/cjs/frameworks/react/react-argtypes.stories.js +0 -153
  125. package/dist/cjs/frameworks/react/typeScript/handleProp.js +0 -38
  126. package/dist/cjs/frameworks/svelte/config.js +0 -26
  127. package/dist/cjs/frameworks/svelte/extractArgTypes.js +0 -159
  128. package/dist/cjs/frameworks/svelte/extractComponentDescription.js +0 -21
  129. package/dist/cjs/frameworks/svelte/prepareForInline.js +0 -35
  130. package/dist/cjs/frameworks/svelte/preset.js +0 -54
  131. package/dist/cjs/frameworks/svelte/sample/MockButton.svelte +0 -45
  132. package/dist/cjs/frameworks/svelte/sourceDecorator.js +0 -262
  133. package/dist/cjs/frameworks/svelte/svelte-docgen-loader.js +0 -191
  134. package/dist/cjs/frameworks/vue/config.js +0 -26
  135. package/dist/cjs/frameworks/vue/extractArgTypes.js +0 -153
  136. package/dist/cjs/frameworks/vue/prepareForInline.js +0 -56
  137. package/dist/cjs/frameworks/vue/preset.js +0 -43
  138. package/dist/cjs/frameworks/vue/sourceDecorator.js +0 -343
  139. package/dist/cjs/frameworks/vue3/config.js +0 -22
  140. package/dist/cjs/frameworks/vue3/extractArgTypes.js +0 -62
  141. package/dist/cjs/frameworks/vue3/prepareForInline.js +0 -61
  142. package/dist/cjs/frameworks/vue3/preset.js +0 -43
  143. package/dist/cjs/frameworks/web-components/config.js +0 -30
  144. package/dist/cjs/frameworks/web-components/custom-elements.js +0 -163
  145. package/dist/cjs/frameworks/web-components/prepareForInline.js +0 -96
  146. package/dist/cjs/frameworks/web-components/sourceDecorator.js +0 -60
  147. package/dist/cjs/lib/convert/flow/convert.js +0 -112
  148. package/dist/cjs/lib/convert/flow/index.js +0 -35
  149. package/dist/cjs/lib/convert/flow/types.js +0 -1
  150. package/dist/cjs/lib/convert/index.js +0 -24
  151. package/dist/cjs/lib/convert/proptypes/convert.js +0 -135
  152. package/dist/cjs/lib/convert/proptypes/index.js +0 -35
  153. package/dist/cjs/lib/convert/proptypes/types.js +0 -1
  154. package/dist/cjs/lib/convert/typescript/convert.js +0 -82
  155. package/dist/cjs/lib/convert/typescript/index.js +0 -35
  156. package/dist/cjs/lib/convert/typescript/types.js +0 -1
  157. package/dist/cjs/lib/convert/utils.js +0 -18
  158. package/dist/cjs/lib/docgen/PropDef.js +0 -1
  159. package/dist/cjs/lib/docgen/createPropDef.js +0 -171
  160. package/dist/cjs/lib/docgen/extractDocgenProps.js +0 -113
  161. package/dist/cjs/lib/docgen/flow/createDefaultValue.js +0 -24
  162. package/dist/cjs/lib/docgen/flow/createPropDef.js +0 -30
  163. package/dist/cjs/lib/docgen/flow/createType.js +0 -119
  164. package/dist/cjs/lib/docgen/index.js +0 -48
  165. package/dist/cjs/lib/docgen/typeScript/createDefaultValue.js +0 -24
  166. package/dist/cjs/lib/docgen/typeScript/createPropDef.js +0 -28
  167. package/dist/cjs/lib/docgen/typeScript/createType.js +0 -30
  168. package/dist/cjs/lib/docgen/types.js +0 -17
  169. package/dist/cjs/lib/docgen/utils/defaultValue.js +0 -13
  170. package/dist/cjs/lib/docgen/utils/docgenInfo.js +0 -34
  171. package/dist/cjs/lib/docgen/utils/index.js +0 -48
  172. package/dist/cjs/lib/docgen/utils/string.js +0 -20
  173. package/dist/cjs/lib/index.js +0 -22
  174. package/dist/cjs/lib/jsdocParser.js +0 -229
  175. package/dist/cjs/lib/utils.js +0 -45
  176. package/dist/cjs/typings.d.js +0 -1
  177. package/dist/esm/frameworks/angular/compodoc.js +0 -347
  178. package/dist/esm/frameworks/angular/config.js +0 -18
  179. package/dist/esm/frameworks/angular/index.js +0 -1
  180. package/dist/esm/frameworks/angular/prepareForInline.js +0 -75
  181. package/dist/esm/frameworks/angular/sourceDecorator.js +0 -116
  182. package/dist/esm/frameworks/angular/types.js +0 -0
  183. package/dist/esm/frameworks/common/enhanceArgTypes.js +0 -11
  184. package/dist/esm/frameworks/common/preset.js +0 -161
  185. package/dist/esm/frameworks/ember/config.js +0 -8
  186. package/dist/esm/frameworks/ember/index.js +0 -1
  187. package/dist/esm/frameworks/ember/jsondoc.js +0 -66
  188. package/dist/esm/frameworks/html/config.js +0 -14
  189. package/dist/esm/frameworks/html/prepareForInline.js +0 -19
  190. package/dist/esm/frameworks/html/sourceDecorator.js +0 -56
  191. package/dist/esm/frameworks/react/config.js +0 -15
  192. package/dist/esm/frameworks/react/extractArgTypes.js +0 -38
  193. package/dist/esm/frameworks/react/extractProps.js +0 -53
  194. package/dist/esm/frameworks/react/jsxDecorator.js +0 -218
  195. package/dist/esm/frameworks/react/lib/captions.js +0 -6
  196. package/dist/esm/frameworks/react/lib/componentTypes.js +0 -9
  197. package/dist/esm/frameworks/react/lib/defaultValues/createDefaultValue.js +0 -67
  198. package/dist/esm/frameworks/react/lib/defaultValues/createFromRawDefaultProp.js +0 -191
  199. package/dist/esm/frameworks/react/lib/defaultValues/generateArray.js +0 -19
  200. package/dist/esm/frameworks/react/lib/defaultValues/generateObject.js +0 -19
  201. package/dist/esm/frameworks/react/lib/defaultValues/index.js +0 -2
  202. package/dist/esm/frameworks/react/lib/defaultValues/prettyIdentifier.js +0 -22
  203. package/dist/esm/frameworks/react/lib/generateCode.js +0 -68
  204. package/dist/esm/frameworks/react/lib/index.js +0 -4
  205. package/dist/esm/frameworks/react/lib/inspection/acornParser.js +0 -213
  206. package/dist/esm/frameworks/react/lib/inspection/index.js +0 -2
  207. package/dist/esm/frameworks/react/lib/inspection/inspectValue.js +0 -16
  208. package/dist/esm/frameworks/react/lib/inspection/types.js +0 -12
  209. package/dist/esm/frameworks/react/lib/isHtmlTag.js +0 -6
  210. package/dist/esm/frameworks/react/propTypes/createType.js +0 -448
  211. package/dist/esm/frameworks/react/propTypes/generateFuncSignature.js +0 -62
  212. package/dist/esm/frameworks/react/propTypes/handleProp.js +0 -39
  213. package/dist/esm/frameworks/react/propTypes/rawDefaultPropResolvers.js +0 -32
  214. package/dist/esm/frameworks/react/propTypes/sortProps.js +0 -23
  215. package/dist/esm/frameworks/react/react-argtypes.stories.js +0 -122
  216. package/dist/esm/frameworks/react/typeScript/handleProp.js +0 -27
  217. package/dist/esm/frameworks/svelte/HOC.svelte +0 -7
  218. package/dist/esm/frameworks/svelte/config.js +0 -13
  219. package/dist/esm/frameworks/svelte/extractArgTypes.js +0 -138
  220. package/dist/esm/frameworks/svelte/extractComponentDescription.js +0 -12
  221. package/dist/esm/frameworks/svelte/prepareForInline.js +0 -20
  222. package/dist/esm/frameworks/svelte/preset.js +0 -42
  223. package/dist/esm/frameworks/svelte/sample/MockButton.svelte +0 -45
  224. package/dist/esm/frameworks/svelte/sourceDecorator.js +0 -232
  225. package/dist/esm/frameworks/svelte/svelte-docgen-loader.js +0 -142
  226. package/dist/esm/frameworks/vue/config.js +0 -13
  227. package/dist/esm/frameworks/vue/extractArgTypes.js +0 -128
  228. package/dist/esm/frameworks/vue/prepareForInline.js +0 -39
  229. package/dist/esm/frameworks/vue/preset.js +0 -31
  230. package/dist/esm/frameworks/vue/sourceDecorator.js +0 -292
  231. package/dist/esm/frameworks/vue3/config.js +0 -11
  232. package/dist/esm/frameworks/vue3/extractArgTypes.js +0 -45
  233. package/dist/esm/frameworks/vue3/prepareForInline.js +0 -22
  234. package/dist/esm/frameworks/vue3/preset.js +0 -31
  235. package/dist/esm/frameworks/web-components/config.js +0 -17
  236. package/dist/esm/frameworks/web-components/custom-elements.js +0 -139
  237. package/dist/esm/frameworks/web-components/prepareForInline.js +0 -74
  238. package/dist/esm/frameworks/web-components/sourceDecorator.js +0 -50
  239. package/dist/esm/lib/convert/flow/convert.js +0 -98
  240. package/dist/esm/lib/convert/flow/index.js +0 -2
  241. package/dist/esm/lib/convert/flow/types.js +0 -0
  242. package/dist/esm/lib/convert/index.js +0 -12
  243. package/dist/esm/lib/convert/proptypes/convert.js +0 -116
  244. package/dist/esm/lib/convert/proptypes/index.js +0 -2
  245. package/dist/esm/lib/convert/proptypes/types.js +0 -0
  246. package/dist/esm/lib/convert/typescript/convert.js +0 -70
  247. package/dist/esm/lib/convert/typescript/index.js +0 -2
  248. package/dist/esm/lib/convert/typescript/types.js +0 -0
  249. package/dist/esm/lib/convert/utils.js +0 -6
  250. package/dist/esm/lib/docgen/PropDef.js +0 -0
  251. package/dist/esm/lib/docgen/createPropDef.js +0 -141
  252. package/dist/esm/lib/docgen/extractDocgenProps.js +0 -87
  253. package/dist/esm/lib/docgen/flow/createDefaultValue.js +0 -14
  254. package/dist/esm/lib/docgen/flow/createPropDef.js +0 -17
  255. package/dist/esm/lib/docgen/flow/createType.js +0 -106
  256. package/dist/esm/lib/docgen/index.js +0 -3
  257. package/dist/esm/lib/docgen/typeScript/createDefaultValue.js +0 -15
  258. package/dist/esm/lib/docgen/typeScript/createPropDef.js +0 -15
  259. package/dist/esm/lib/docgen/typeScript/createType.js +0 -19
  260. package/dist/esm/lib/docgen/types.js +0 -10
  261. package/dist/esm/lib/docgen/utils/defaultValue.js +0 -6
  262. package/dist/esm/lib/docgen/utils/docgenInfo.js +0 -18
  263. package/dist/esm/lib/docgen/utils/index.js +0 -3
  264. package/dist/esm/lib/docgen/utils/string.js +0 -11
  265. package/dist/esm/lib/index.js +0 -1
  266. package/dist/esm/lib/jsdocParser.js +0 -207
  267. package/dist/esm/lib/utils.js +0 -25
  268. package/dist/esm/typings.d.js +0 -0
  269. package/dist/modern/frameworks/angular/compodoc.js +0 -296
  270. package/dist/modern/frameworks/angular/config.js +0 -18
  271. package/dist/modern/frameworks/angular/index.js +0 -1
  272. package/dist/modern/frameworks/angular/prepareForInline.js +0 -36
  273. package/dist/modern/frameworks/angular/sourceDecorator.js +0 -81
  274. package/dist/modern/frameworks/angular/types.js +0 -0
  275. package/dist/modern/frameworks/common/config.js +0 -10
  276. package/dist/modern/frameworks/common/enhanceArgTypes.js +0 -16
  277. package/dist/modern/frameworks/ember/config.js +0 -8
  278. package/dist/modern/frameworks/ember/index.js +0 -1
  279. package/dist/modern/frameworks/ember/jsondoc.js +0 -57
  280. package/dist/modern/frameworks/html/config.js +0 -14
  281. package/dist/modern/frameworks/html/prepareForInline.js +0 -17
  282. package/dist/modern/frameworks/html/sourceDecorator.js +0 -56
  283. package/dist/modern/frameworks/react/config.js +0 -13
  284. package/dist/modern/frameworks/react/extractArgTypes.js +0 -38
  285. package/dist/modern/frameworks/react/extractProps.js +0 -41
  286. package/dist/modern/frameworks/react/jsxDecorator.js +0 -176
  287. package/dist/modern/frameworks/react/lib/captions.js +0 -6
  288. package/dist/modern/frameworks/react/lib/componentTypes.js +0 -2
  289. package/dist/modern/frameworks/react/lib/defaultValues/createDefaultValue.js +0 -72
  290. package/dist/modern/frameworks/react/lib/defaultValues/createFromRawDefaultProp.js +0 -181
  291. package/dist/modern/frameworks/react/lib/defaultValues/generateArray.js +0 -21
  292. package/dist/modern/frameworks/react/lib/defaultValues/generateObject.js +0 -21
  293. package/dist/modern/frameworks/react/lib/defaultValues/index.js +0 -2
  294. package/dist/modern/frameworks/react/lib/defaultValues/prettyIdentifier.js +0 -24
  295. package/dist/modern/frameworks/react/lib/generateCode.js +0 -59
  296. package/dist/modern/frameworks/react/lib/index.js +0 -4
  297. package/dist/modern/frameworks/react/lib/inspection/acornParser.js +0 -212
  298. package/dist/modern/frameworks/react/lib/inspection/index.js +0 -2
  299. package/dist/modern/frameworks/react/lib/inspection/inspectValue.js +0 -15
  300. package/dist/modern/frameworks/react/lib/inspection/types.js +0 -12
  301. package/dist/modern/frameworks/react/lib/isHtmlTag.js +0 -4
  302. package/dist/modern/frameworks/react/propTypes/createType.js +0 -446
  303. package/dist/modern/frameworks/react/propTypes/generateFuncSignature.js +0 -57
  304. package/dist/modern/frameworks/react/propTypes/handleProp.js +0 -39
  305. package/dist/modern/frameworks/react/propTypes/rawDefaultPropResolvers.js +0 -31
  306. package/dist/modern/frameworks/react/propTypes/sortProps.js +0 -14
  307. package/dist/modern/frameworks/react/react-argtypes.stories.js +0 -78
  308. package/dist/modern/frameworks/react/typeScript/handleProp.js +0 -28
  309. package/dist/modern/frameworks/svelte/HOC.svelte +0 -7
  310. package/dist/modern/frameworks/svelte/config.js +0 -13
  311. package/dist/modern/frameworks/svelte/extractArgTypes.js +0 -118
  312. package/dist/modern/frameworks/svelte/extractComponentDescription.js +0 -10
  313. package/dist/modern/frameworks/svelte/prepareForInline.js +0 -18
  314. package/dist/modern/frameworks/svelte/preset.js +0 -11
  315. package/dist/modern/frameworks/svelte/sample/MockButton.svelte +0 -45
  316. package/dist/modern/frameworks/svelte/sourceDecorator.js +0 -187
  317. package/dist/modern/frameworks/svelte/svelte-docgen-loader.js +0 -89
  318. package/dist/modern/frameworks/vue/config.js +0 -13
  319. package/dist/modern/frameworks/vue/extractArgTypes.js +0 -103
  320. package/dist/modern/frameworks/vue/prepareForInline.js +0 -40
  321. package/dist/modern/frameworks/vue/preset.js +0 -24
  322. package/dist/modern/frameworks/vue/sourceDecorator.js +0 -195
  323. package/dist/modern/frameworks/vue3/config.js +0 -11
  324. package/dist/modern/frameworks/vue3/extractArgTypes.js +0 -43
  325. package/dist/modern/frameworks/vue3/prepareForInline.js +0 -22
  326. package/dist/modern/frameworks/vue3/preset.js +0 -24
  327. package/dist/modern/frameworks/web-components/config.js +0 -17
  328. package/dist/modern/frameworks/web-components/custom-elements.js +0 -125
  329. package/dist/modern/frameworks/web-components/prepareForInline.js +0 -23
  330. package/dist/modern/frameworks/web-components/sourceDecorator.js +0 -47
  331. package/dist/modern/lib/convert/flow/convert.js +0 -89
  332. package/dist/modern/lib/convert/flow/index.js +0 -2
  333. package/dist/modern/lib/convert/flow/types.js +0 -0
  334. package/dist/modern/lib/convert/index.js +0 -14
  335. package/dist/modern/lib/convert/proptypes/convert.js +0 -102
  336. package/dist/modern/lib/convert/proptypes/index.js +0 -2
  337. package/dist/modern/lib/convert/proptypes/types.js +0 -0
  338. package/dist/modern/lib/convert/typescript/convert.js +0 -67
  339. package/dist/modern/lib/convert/typescript/index.js +0 -2
  340. package/dist/modern/lib/convert/typescript/types.js +0 -0
  341. package/dist/modern/lib/convert/utils.js +0 -2
  342. package/dist/modern/lib/docgen/PropDef.js +0 -0
  343. package/dist/modern/lib/docgen/createPropDef.js +0 -142
  344. package/dist/modern/lib/docgen/extractDocgenProps.js +0 -80
  345. package/dist/modern/lib/docgen/flow/createDefaultValue.js +0 -15
  346. package/dist/modern/lib/docgen/flow/createPropDef.js +0 -17
  347. package/dist/modern/lib/docgen/flow/createType.js +0 -103
  348. package/dist/modern/lib/docgen/index.js +0 -3
  349. package/dist/modern/lib/docgen/typeScript/createDefaultValue.js +0 -17
  350. package/dist/modern/lib/docgen/typeScript/createPropDef.js +0 -15
  351. package/dist/modern/lib/docgen/typeScript/createType.js +0 -16
  352. package/dist/modern/lib/docgen/types.js +0 -10
  353. package/dist/modern/lib/docgen/utils/defaultValue.js +0 -4
  354. package/dist/modern/lib/docgen/utils/docgenInfo.js +0 -14
  355. package/dist/modern/lib/docgen/utils/index.js +0 -3
  356. package/dist/modern/lib/docgen/utils/string.js +0 -11
  357. package/dist/modern/lib/index.js +0 -1
  358. package/dist/modern/lib/jsdocParser.js +0 -195
  359. package/dist/modern/lib/utils.js +0 -21
  360. package/dist/modern/typings.d.js +0 -0
  361. package/dist/ts3.4/frameworks/angular/compodoc.d.ts +0 -18
  362. package/dist/ts3.4/frameworks/angular/config.d.ts +0 -15
  363. package/dist/ts3.4/frameworks/angular/index.d.ts +0 -1
  364. package/dist/ts3.4/frameworks/angular/prepareForInline.d.ts +0 -7
  365. package/dist/ts3.4/frameworks/angular/sourceDecorator.d.ts +0 -9
  366. package/dist/ts3.4/frameworks/angular/types.d.ts +0 -102
  367. package/dist/ts3.4/frameworks/common/config.d.ts +0 -10
  368. package/dist/ts3.4/frameworks/common/enhanceArgTypes.d.ts +0 -2
  369. package/dist/ts3.4/frameworks/common/preset.d.ts +0 -1
  370. package/dist/ts3.4/frameworks/html/config.d.ts +0 -14
  371. package/dist/ts3.4/frameworks/html/prepareForInline.d.ts +0 -2
  372. package/dist/ts3.4/frameworks/html/sourceDecorator.d.ts +0 -3
  373. package/dist/ts3.4/frameworks/react/config.d.ts +0 -12
  374. package/dist/ts3.4/frameworks/react/extractArgTypes.d.ts +0 -2
  375. package/dist/ts3.4/frameworks/react/extractProps.d.ts +0 -5
  376. package/dist/ts3.4/frameworks/react/jsxDecorator.d.ts +0 -23
  377. package/dist/ts3.4/frameworks/react/lib/captions.d.ts +0 -6
  378. package/dist/ts3.4/frameworks/react/lib/componentTypes.d.ts +0 -2
  379. package/dist/ts3.4/frameworks/react/lib/defaultValues/createDefaultValue.d.ts +0 -2
  380. package/dist/ts3.4/frameworks/react/lib/defaultValues/createFromRawDefaultProp.d.ts +0 -12
  381. package/dist/ts3.4/frameworks/react/lib/defaultValues/generateArray.d.ts +0 -3
  382. package/dist/ts3.4/frameworks/react/lib/defaultValues/generateObject.d.ts +0 -3
  383. package/dist/ts3.4/frameworks/react/lib/defaultValues/index.d.ts +0 -2
  384. package/dist/ts3.4/frameworks/react/lib/defaultValues/prettyIdentifier.d.ts +0 -4
  385. package/dist/ts3.4/frameworks/react/lib/generateCode.d.ts +0 -3
  386. package/dist/ts3.4/frameworks/react/lib/index.d.ts +0 -4
  387. package/dist/ts3.4/frameworks/react/lib/inspection/acornParser.d.ts +0 -7
  388. package/dist/ts3.4/frameworks/react/lib/inspection/index.d.ts +0 -2
  389. package/dist/ts3.4/frameworks/react/lib/inspection/inspectValue.d.ts +0 -2
  390. package/dist/ts3.4/frameworks/react/lib/inspection/types.d.ts +0 -50
  391. package/dist/ts3.4/frameworks/react/lib/isHtmlTag.d.ts +0 -1
  392. package/dist/ts3.4/frameworks/react/propTypes/createType.d.ts +0 -3
  393. package/dist/ts3.4/frameworks/react/propTypes/generateFuncSignature.d.ts +0 -4
  394. package/dist/ts3.4/frameworks/react/propTypes/handleProp.d.ts +0 -4
  395. package/dist/ts3.4/frameworks/react/propTypes/rawDefaultPropResolvers.d.ts +0 -1
  396. package/dist/ts3.4/frameworks/react/propTypes/sortProps.d.ts +0 -3
  397. package/dist/ts3.4/frameworks/react/typeScript/handleProp.d.ts +0 -3
  398. package/dist/ts3.4/frameworks/svelte/config.d.ts +0 -11
  399. package/dist/ts3.4/frameworks/svelte/extractArgTypes.d.ts +0 -5
  400. package/dist/ts3.4/frameworks/svelte/extractComponentDescription.d.ts +0 -2
  401. package/dist/ts3.4/frameworks/svelte/prepareForInline.d.ts +0 -3
  402. package/dist/ts3.4/frameworks/svelte/preset.d.ts +0 -3
  403. package/dist/ts3.4/frameworks/svelte/sourceDecorator.d.ts +0 -16
  404. package/dist/ts3.4/frameworks/svelte/svelte-docgen-loader.d.ts +0 -5
  405. package/dist/ts3.4/frameworks/vue/config.d.ts +0 -11
  406. package/dist/ts3.4/frameworks/vue/extractArgTypes.d.ts +0 -2
  407. package/dist/ts3.4/frameworks/vue/prepareForInline.d.ts +0 -4
  408. package/dist/ts3.4/frameworks/vue/preset.d.ts +0 -2
  409. package/dist/ts3.4/frameworks/vue/sourceDecorator.d.ts +0 -5
  410. package/dist/ts3.4/frameworks/vue3/config.d.ts +0 -10
  411. package/dist/ts3.4/frameworks/vue3/extractArgTypes.d.ts +0 -2
  412. package/dist/ts3.4/frameworks/vue3/prepareForInline.d.ts +0 -4
  413. package/dist/ts3.4/frameworks/vue3/preset.d.ts +0 -2
  414. package/dist/ts3.4/frameworks/web-components/config.d.ts +0 -18
  415. package/dist/ts3.4/frameworks/web-components/custom-elements.d.ts +0 -36
  416. package/dist/ts3.4/frameworks/web-components/prepareForInline.d.ts +0 -4
  417. package/dist/ts3.4/frameworks/web-components/sourceDecorator.d.ts +0 -3
  418. package/dist/ts3.4/lib/convert/flow/convert.d.ts +0 -3
  419. package/dist/ts3.4/lib/convert/flow/index.d.ts +0 -2
  420. package/dist/ts3.4/lib/convert/flow/types.d.ts +0 -43
  421. package/dist/ts3.4/lib/convert/index.d.ts +0 -2
  422. package/dist/ts3.4/lib/convert/proptypes/convert.d.ts +0 -3
  423. package/dist/ts3.4/lib/convert/proptypes/index.d.ts +0 -2
  424. package/dist/ts3.4/lib/convert/proptypes/types.d.ts +0 -11
  425. package/dist/ts3.4/lib/convert/typescript/convert.d.ts +0 -3
  426. package/dist/ts3.4/lib/convert/typescript/index.d.ts +0 -2
  427. package/dist/ts3.4/lib/convert/typescript/types.d.ts +0 -39
  428. package/dist/ts3.4/lib/convert/utils.d.ts +0 -1
  429. package/dist/ts3.4/lib/docgen/PropDef.d.ts +0 -26
  430. package/dist/ts3.4/lib/docgen/createPropDef.d.ts +0 -8
  431. package/dist/ts3.4/lib/docgen/extractDocgenProps.d.ts +0 -14
  432. package/dist/ts3.4/lib/docgen/flow/createDefaultValue.d.ts +0 -3
  433. package/dist/ts3.4/lib/docgen/flow/createPropDef.d.ts +0 -2
  434. package/dist/ts3.4/lib/docgen/flow/createType.d.ts +0 -3
  435. package/dist/ts3.4/lib/docgen/index.d.ts +0 -3
  436. package/dist/ts3.4/lib/docgen/typeScript/createDefaultValue.d.ts +0 -3
  437. package/dist/ts3.4/lib/docgen/typeScript/createPropDef.d.ts +0 -2
  438. package/dist/ts3.4/lib/docgen/typeScript/createType.d.ts +0 -3
  439. package/dist/ts3.4/lib/docgen/types.d.ts +0 -46
  440. package/dist/ts3.4/lib/docgen/utils/defaultValue.d.ts +0 -1
  441. package/dist/ts3.4/lib/docgen/utils/docgenInfo.d.ts +0 -5
  442. package/dist/ts3.4/lib/docgen/utils/index.d.ts +0 -3
  443. package/dist/ts3.4/lib/docgen/utils/string.d.ts +0 -1
  444. package/dist/ts3.4/lib/index.d.ts +0 -1
  445. package/dist/ts3.4/lib/jsdocParser.d.ts +0 -28
  446. package/dist/ts3.4/lib/utils.d.ts +0 -7
  447. package/dist/ts3.9/frameworks/angular/compodoc.d.ts +0 -18
  448. package/dist/ts3.9/frameworks/angular/config.d.ts +0 -15
  449. package/dist/ts3.9/frameworks/angular/index.d.ts +0 -1
  450. package/dist/ts3.9/frameworks/angular/prepareForInline.d.ts +0 -7
  451. package/dist/ts3.9/frameworks/angular/sourceDecorator.d.ts +0 -9
  452. package/dist/ts3.9/frameworks/angular/types.d.ts +0 -102
  453. package/dist/ts3.9/frameworks/common/config.d.ts +0 -10
  454. package/dist/ts3.9/frameworks/common/enhanceArgTypes.d.ts +0 -2
  455. package/dist/ts3.9/frameworks/common/preset.d.ts +0 -1
  456. package/dist/ts3.9/frameworks/html/config.d.ts +0 -14
  457. package/dist/ts3.9/frameworks/html/prepareForInline.d.ts +0 -2
  458. package/dist/ts3.9/frameworks/html/sourceDecorator.d.ts +0 -3
  459. package/dist/ts3.9/frameworks/react/config.d.ts +0 -12
  460. package/dist/ts3.9/frameworks/react/extractArgTypes.d.ts +0 -2
  461. package/dist/ts3.9/frameworks/react/extractProps.d.ts +0 -5
  462. package/dist/ts3.9/frameworks/react/jsxDecorator.d.ts +0 -23
  463. package/dist/ts3.9/frameworks/react/lib/captions.d.ts +0 -6
  464. package/dist/ts3.9/frameworks/react/lib/componentTypes.d.ts +0 -2
  465. package/dist/ts3.9/frameworks/react/lib/defaultValues/createDefaultValue.d.ts +0 -2
  466. package/dist/ts3.9/frameworks/react/lib/defaultValues/createFromRawDefaultProp.d.ts +0 -12
  467. package/dist/ts3.9/frameworks/react/lib/defaultValues/generateArray.d.ts +0 -3
  468. package/dist/ts3.9/frameworks/react/lib/defaultValues/generateObject.d.ts +0 -3
  469. package/dist/ts3.9/frameworks/react/lib/defaultValues/index.d.ts +0 -2
  470. package/dist/ts3.9/frameworks/react/lib/defaultValues/prettyIdentifier.d.ts +0 -4
  471. package/dist/ts3.9/frameworks/react/lib/generateCode.d.ts +0 -3
  472. package/dist/ts3.9/frameworks/react/lib/index.d.ts +0 -4
  473. package/dist/ts3.9/frameworks/react/lib/inspection/acornParser.d.ts +0 -7
  474. package/dist/ts3.9/frameworks/react/lib/inspection/index.d.ts +0 -2
  475. package/dist/ts3.9/frameworks/react/lib/inspection/inspectValue.d.ts +0 -2
  476. package/dist/ts3.9/frameworks/react/lib/inspection/types.d.ts +0 -50
  477. package/dist/ts3.9/frameworks/react/lib/isHtmlTag.d.ts +0 -1
  478. package/dist/ts3.9/frameworks/react/propTypes/createType.d.ts +0 -3
  479. package/dist/ts3.9/frameworks/react/propTypes/generateFuncSignature.d.ts +0 -4
  480. package/dist/ts3.9/frameworks/react/propTypes/handleProp.d.ts +0 -4
  481. package/dist/ts3.9/frameworks/react/propTypes/rawDefaultPropResolvers.d.ts +0 -1
  482. package/dist/ts3.9/frameworks/react/propTypes/sortProps.d.ts +0 -3
  483. package/dist/ts3.9/frameworks/react/typeScript/handleProp.d.ts +0 -3
  484. package/dist/ts3.9/frameworks/svelte/config.d.ts +0 -11
  485. package/dist/ts3.9/frameworks/svelte/extractArgTypes.d.ts +0 -5
  486. package/dist/ts3.9/frameworks/svelte/extractComponentDescription.d.ts +0 -2
  487. package/dist/ts3.9/frameworks/svelte/prepareForInline.d.ts +0 -3
  488. package/dist/ts3.9/frameworks/svelte/preset.d.ts +0 -3
  489. package/dist/ts3.9/frameworks/svelte/sourceDecorator.d.ts +0 -16
  490. package/dist/ts3.9/frameworks/svelte/svelte-docgen-loader.d.ts +0 -5
  491. package/dist/ts3.9/frameworks/vue/config.d.ts +0 -11
  492. package/dist/ts3.9/frameworks/vue/extractArgTypes.d.ts +0 -2
  493. package/dist/ts3.9/frameworks/vue/prepareForInline.d.ts +0 -4
  494. package/dist/ts3.9/frameworks/vue/preset.d.ts +0 -2
  495. package/dist/ts3.9/frameworks/vue/sourceDecorator.d.ts +0 -5
  496. package/dist/ts3.9/frameworks/vue3/config.d.ts +0 -10
  497. package/dist/ts3.9/frameworks/vue3/extractArgTypes.d.ts +0 -2
  498. package/dist/ts3.9/frameworks/vue3/prepareForInline.d.ts +0 -4
  499. package/dist/ts3.9/frameworks/vue3/preset.d.ts +0 -2
  500. package/dist/ts3.9/frameworks/web-components/config.d.ts +0 -18
  501. package/dist/ts3.9/frameworks/web-components/custom-elements.d.ts +0 -35
  502. package/dist/ts3.9/frameworks/web-components/prepareForInline.d.ts +0 -4
  503. package/dist/ts3.9/frameworks/web-components/sourceDecorator.d.ts +0 -3
  504. package/dist/ts3.9/lib/convert/flow/convert.d.ts +0 -3
  505. package/dist/ts3.9/lib/convert/flow/index.d.ts +0 -2
  506. package/dist/ts3.9/lib/convert/flow/types.d.ts +0 -43
  507. package/dist/ts3.9/lib/convert/index.d.ts +0 -2
  508. package/dist/ts3.9/lib/convert/proptypes/convert.d.ts +0 -3
  509. package/dist/ts3.9/lib/convert/proptypes/index.d.ts +0 -2
  510. package/dist/ts3.9/lib/convert/proptypes/types.d.ts +0 -11
  511. package/dist/ts3.9/lib/convert/typescript/convert.d.ts +0 -3
  512. package/dist/ts3.9/lib/convert/typescript/index.d.ts +0 -2
  513. package/dist/ts3.9/lib/convert/typescript/types.d.ts +0 -39
  514. package/dist/ts3.9/lib/convert/utils.d.ts +0 -1
  515. package/dist/ts3.9/lib/docgen/PropDef.d.ts +0 -26
  516. package/dist/ts3.9/lib/docgen/createPropDef.d.ts +0 -8
  517. package/dist/ts3.9/lib/docgen/extractDocgenProps.d.ts +0 -14
  518. package/dist/ts3.9/lib/docgen/flow/createDefaultValue.d.ts +0 -3
  519. package/dist/ts3.9/lib/docgen/flow/createPropDef.d.ts +0 -2
  520. package/dist/ts3.9/lib/docgen/flow/createType.d.ts +0 -3
  521. package/dist/ts3.9/lib/docgen/index.d.ts +0 -3
  522. package/dist/ts3.9/lib/docgen/typeScript/createDefaultValue.d.ts +0 -3
  523. package/dist/ts3.9/lib/docgen/typeScript/createPropDef.d.ts +0 -2
  524. package/dist/ts3.9/lib/docgen/typeScript/createType.d.ts +0 -3
  525. package/dist/ts3.9/lib/docgen/types.d.ts +0 -46
  526. package/dist/ts3.9/lib/docgen/utils/defaultValue.d.ts +0 -1
  527. package/dist/ts3.9/lib/docgen/utils/docgenInfo.d.ts +0 -5
  528. package/dist/ts3.9/lib/docgen/utils/index.d.ts +0 -3
  529. package/dist/ts3.9/lib/docgen/utils/string.d.ts +0 -1
  530. package/dist/ts3.9/lib/index.d.ts +0 -1
  531. package/dist/ts3.9/lib/jsdocParser.d.ts +0 -28
  532. package/dist/ts3.9/lib/utils.d.ts +0 -7
@@ -1,347 +0,0 @@
1
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
2
-
3
- import "core-js/modules/es.function.name.js";
4
- import "core-js/modules/es.array.find.js";
5
- import "core-js/modules/es.array.map.js";
6
- import "core-js/modules/es.array.concat.js";
7
- import "core-js/modules/es.array.join.js";
8
- import "core-js/modules/es.string.split.js";
9
- import "core-js/modules/es.regexp.exec.js";
10
- import "core-js/modules/es.array.includes.js";
11
- import "core-js/modules/es.number.constructor.js";
12
- import "core-js/modules/web.dom-collections.for-each.js";
13
- import "core-js/modules/es.string.replace.js";
14
- import "core-js/modules/es.object.assign.js";
15
- import "core-js/modules/es.symbol.js";
16
- import "core-js/modules/es.symbol.description.js";
17
- import "core-js/modules/es.object.to-string.js";
18
- import "core-js/modules/es.symbol.iterator.js";
19
- import "core-js/modules/es.string.iterator.js";
20
- import "core-js/modules/es.array.iterator.js";
21
- import "core-js/modules/web.dom-collections.iterator.js";
22
-
23
- /* eslint-disable no-underscore-dangle */
24
-
25
- /* global window */
26
- import { logger } from '@storybook/client-logger';
27
- export var isMethod = function isMethod(methodOrProp) {
28
- return methodOrProp.args !== undefined;
29
- };
30
- export var setCompodocJson = function setCompodocJson(compodocJson) {
31
- // @ts-ignore
32
- window.__STORYBOOK_COMPODOC_JSON__ = compodocJson;
33
- }; // @ts-ignore
34
-
35
- export var getCompodocJson = function getCompodocJson() {
36
- return window.__STORYBOOK_COMPODOC_JSON__;
37
- };
38
- export var checkValidComponentOrDirective = function checkValidComponentOrDirective(component) {
39
- if (!component.name) {
40
- throw new Error("Invalid component ".concat(JSON.stringify(component)));
41
- }
42
- };
43
- export var checkValidCompodocJson = function checkValidCompodocJson(compodocJson) {
44
- if (!compodocJson || !compodocJson.components) {
45
- throw new Error('Invalid compodoc JSON');
46
- }
47
- };
48
-
49
- var hasDecorator = function hasDecorator(item, decoratorName) {
50
- return item.decorators && item.decorators.find(function (x) {
51
- return x.name === decoratorName;
52
- });
53
- };
54
-
55
- var mapPropertyToSection = function mapPropertyToSection(item) {
56
- if (hasDecorator(item, 'ViewChild')) {
57
- return 'view child';
58
- }
59
-
60
- if (hasDecorator(item, 'ViewChildren')) {
61
- return 'view children';
62
- }
63
-
64
- if (hasDecorator(item, 'ContentChild')) {
65
- return 'content child';
66
- }
67
-
68
- if (hasDecorator(item, 'ContentChildren')) {
69
- return 'content children';
70
- }
71
-
72
- return 'properties';
73
- };
74
-
75
- var mapItemToSection = function mapItemToSection(key, item) {
76
- switch (key) {
77
- case 'methods':
78
- case 'methodsClass':
79
- return 'methods';
80
-
81
- case 'inputsClass':
82
- return 'inputs';
83
-
84
- case 'outputsClass':
85
- return 'outputs';
86
-
87
- case 'properties':
88
- case 'propertiesClass':
89
- if (isMethod(item)) {
90
- throw new Error("Cannot be of type Method if key === 'propertiesClass'");
91
- }
92
-
93
- return mapPropertyToSection(item);
94
-
95
- default:
96
- throw new Error("Unknown key: ".concat(key));
97
- }
98
- };
99
-
100
- export var findComponentByName = function findComponentByName(name, compodocJson) {
101
- return compodocJson.components.find(function (c) {
102
- return c.name === name;
103
- }) || compodocJson.directives.find(function (c) {
104
- return c.name === name;
105
- }) || compodocJson.pipes.find(function (c) {
106
- return c.name === name;
107
- }) || compodocJson.injectables.find(function (c) {
108
- return c.name === name;
109
- }) || compodocJson.classes.find(function (c) {
110
- return c.name === name;
111
- });
112
- };
113
-
114
- var getComponentData = function getComponentData(component) {
115
- if (!component) {
116
- return null;
117
- }
118
-
119
- checkValidComponentOrDirective(component);
120
- var compodocJson = getCompodocJson();
121
-
122
- if (!compodocJson) {
123
- return null;
124
- }
125
-
126
- checkValidCompodocJson(compodocJson);
127
- var name = component.name;
128
- var metadata = findComponentByName(name, compodocJson);
129
-
130
- if (!metadata) {
131
- logger.warn("Component not found in compodoc JSON: '".concat(name, "'"));
132
- }
133
-
134
- return metadata;
135
- };
136
-
137
- var displaySignature = function displaySignature(item) {
138
- var args = item.args.map(function (arg) {
139
- return "".concat(arg.name).concat(arg.optional ? '?' : '', ": ").concat(arg.type);
140
- });
141
- return "(".concat(args.join(', '), ") => ").concat(item.returnType);
142
- };
143
-
144
- var extractTypeFromValue = function extractTypeFromValue(defaultValue) {
145
- var valueType = _typeof(defaultValue);
146
-
147
- return defaultValue || valueType === 'number' || valueType === 'boolean' || valueType === 'string' ? valueType : null;
148
- };
149
-
150
- var extractEnumValues = function extractEnumValues(compodocType) {
151
- var _compodocJson$miscell, _compodocJson$miscell2;
152
-
153
- var compodocJson = getCompodocJson();
154
- var enumType = compodocJson === null || compodocJson === void 0 ? void 0 : (_compodocJson$miscell = compodocJson.miscellaneous) === null || _compodocJson$miscell === void 0 ? void 0 : (_compodocJson$miscell2 = _compodocJson$miscell.enumerations) === null || _compodocJson$miscell2 === void 0 ? void 0 : _compodocJson$miscell2.find(function (x) {
155
- return x.name === compodocType;
156
- });
157
-
158
- if (enumType !== null && enumType !== void 0 && enumType.childs.every(function (x) {
159
- return x.value;
160
- })) {
161
- return enumType.childs.map(function (x) {
162
- return x.value;
163
- });
164
- }
165
-
166
- if (typeof compodocType !== 'string' || compodocType.indexOf('|') === -1) {
167
- return null;
168
- }
169
-
170
- try {
171
- return compodocType.split('|').map(function (value) {
172
- return JSON.parse(value);
173
- });
174
- } catch (e) {
175
- return null;
176
- }
177
- };
178
-
179
- export var extractType = function extractType(property, defaultValue) {
180
- var compodocType = property.type || extractTypeFromValue(defaultValue);
181
-
182
- switch (compodocType) {
183
- case 'string':
184
- case 'boolean':
185
- case 'number':
186
- return {
187
- name: compodocType
188
- };
189
-
190
- case undefined:
191
- case null:
192
- return {
193
- name: 'void'
194
- };
195
-
196
- default:
197
- {
198
- var resolvedType = resolveTypealias(compodocType);
199
- var enumValues = extractEnumValues(resolvedType);
200
- return enumValues ? {
201
- name: 'enum',
202
- value: enumValues
203
- } : {
204
- name: 'object'
205
- };
206
- }
207
- }
208
- };
209
-
210
- var castDefaultValue = function castDefaultValue(property, defaultValue) {
211
- var compodocType = property.type; // All these checks are necessary as compodoc does not always set the type ie. @HostBinding have empty types.
212
- // null and undefined also have 'any' type
213
-
214
- if (['boolean', 'number', 'string', 'EventEmitter'].includes(compodocType)) {
215
- switch (compodocType) {
216
- case 'boolean':
217
- return defaultValue === 'true';
218
-
219
- case 'number':
220
- return Number(defaultValue);
221
-
222
- case 'EventEmitter':
223
- return undefined;
224
-
225
- default:
226
- return defaultValue;
227
- }
228
- } else {
229
- switch (defaultValue) {
230
- case 'true':
231
- return true;
232
-
233
- case 'false':
234
- return false;
235
-
236
- case 'null':
237
- return null;
238
-
239
- case 'undefined':
240
- return undefined;
241
-
242
- default:
243
- return defaultValue;
244
- }
245
- }
246
- };
247
-
248
- var extractDefaultValueFromComments = function extractDefaultValueFromComments(property, value) {
249
- var commentValue = value;
250
- property.jsdoctags.forEach(function (tag) {
251
- if (['default', 'defaultvalue'].includes(tag.tagName.escapedText)) {
252
- // @ts-ignore
253
- var dom = new window.DOMParser().parseFromString(tag.comment, 'text/html');
254
- commentValue = dom.body.textContent;
255
- }
256
- });
257
- return commentValue;
258
- };
259
-
260
- var extractDefaultValue = function extractDefaultValue(property) {
261
- try {
262
- var _property$defaultValu, _property$jsdoctags;
263
-
264
- var value = (_property$defaultValu = property.defaultValue) === null || _property$defaultValu === void 0 ? void 0 : _property$defaultValu.replace(/^'(.*)'$/, '$1');
265
- value = castDefaultValue(property, value);
266
-
267
- if (value == null && ((_property$jsdoctags = property.jsdoctags) === null || _property$jsdoctags === void 0 ? void 0 : _property$jsdoctags.length) > 0) {
268
- value = extractDefaultValueFromComments(property, value);
269
- }
270
-
271
- return value;
272
- } catch (err) {
273
- logger.debug("Error extracting ".concat(property.name, ": ").concat(property.defaultValue));
274
- return undefined;
275
- }
276
- };
277
-
278
- var resolveTypealias = function resolveTypealias(compodocType) {
279
- var _compodocJson$miscell3, _compodocJson$miscell4;
280
-
281
- var compodocJson = getCompodocJson();
282
- var typeAlias = compodocJson === null || compodocJson === void 0 ? void 0 : (_compodocJson$miscell3 = compodocJson.miscellaneous) === null || _compodocJson$miscell3 === void 0 ? void 0 : (_compodocJson$miscell4 = _compodocJson$miscell3.typealiases) === null || _compodocJson$miscell4 === void 0 ? void 0 : _compodocJson$miscell4.find(function (x) {
283
- return x.name === compodocType;
284
- });
285
- return typeAlias ? resolveTypealias(typeAlias.rawtype) : compodocType;
286
- };
287
-
288
- export var extractArgTypesFromData = function extractArgTypesFromData(componentData) {
289
- var sectionToItems = {};
290
- var compodocClasses = ['component', 'directive'].includes(componentData.type) ? ['propertiesClass', 'methodsClass', 'inputsClass', 'outputsClass'] : ['properties', 'methods'];
291
- compodocClasses.forEach(function (key) {
292
- var data = componentData[key] || [];
293
- data.forEach(function (item) {
294
- var section = mapItemToSection(key, item);
295
- var defaultValue = isMethod(item) ? undefined : extractDefaultValue(item);
296
- var type = isMethod(item) || section !== 'inputs' && section !== 'properties' ? {
297
- name: 'void'
298
- } : extractType(item, defaultValue);
299
- var action = section === 'outputs' ? {
300
- action: item.name
301
- } : {};
302
- var argType = Object.assign({
303
- name: item.name,
304
- description: item.rawdescription || item.description,
305
- defaultValue: defaultValue,
306
- type: type
307
- }, action, {
308
- table: {
309
- category: section,
310
- type: {
311
- summary: isMethod(item) ? displaySignature(item) : item.type,
312
- required: isMethod(item) ? false : !item.optional
313
- },
314
- defaultValue: {
315
- summary: defaultValue
316
- }
317
- }
318
- });
319
-
320
- if (!sectionToItems[section]) {
321
- sectionToItems[section] = [];
322
- }
323
-
324
- sectionToItems[section].push(argType);
325
- });
326
- });
327
- var SECTIONS = ['properties', 'inputs', 'outputs', 'methods', 'view child', 'view children', 'content child', 'content children'];
328
- var argTypes = {};
329
- SECTIONS.forEach(function (section) {
330
- var items = sectionToItems[section];
331
-
332
- if (items) {
333
- items.forEach(function (argType) {
334
- argTypes[argType.name] = argType;
335
- });
336
- }
337
- });
338
- return argTypes;
339
- };
340
- export var extractArgTypes = function extractArgTypes(component) {
341
- var componentData = getComponentData(component);
342
- return componentData && extractArgTypesFromData(componentData);
343
- };
344
- export var extractComponentDescription = function extractComponentDescription(component) {
345
- var componentData = getComponentData(component);
346
- return componentData && (componentData.rawdescription || componentData.description);
347
- };
@@ -1,18 +0,0 @@
1
- import { SourceType } from '../../shared';
2
- import { extractArgTypes, extractComponentDescription } from './compodoc';
3
- import { sourceDecorator } from './sourceDecorator';
4
- import { prepareForInline } from './prepareForInline';
5
- export var parameters = {
6
- docs: {
7
- // probably set this to true by default once it's battle-tested
8
- inlineStories: false,
9
- prepareForInline: prepareForInline,
10
- extractArgTypes: extractArgTypes,
11
- extractComponentDescription: extractComponentDescription,
12
- source: {
13
- type: SourceType.DYNAMIC,
14
- language: 'html'
15
- }
16
- }
17
- };
18
- export var decorators = [sourceDecorator];
@@ -1 +0,0 @@
1
- export * from './compodoc';
@@ -1,75 +0,0 @@
1
- import "regenerator-runtime/runtime.js";
2
- import "core-js/modules/es.array.concat.js";
3
- import "core-js/modules/es.promise.js";
4
- import "core-js/modules/es.object.to-string.js";
5
-
6
- function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
7
-
8
- function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
9
-
10
- import React from 'react';
11
- import pLimit from 'p-limit';
12
- import { nanoid } from 'nanoid';
13
- import { rendererFactory } from '@storybook/angular/renderer';
14
- var limit = pLimit(1);
15
- /**
16
- * Uses the angular renderer to generate a story. Uses p-limit to run synchronously
17
- */
18
-
19
- export var prepareForInline = function prepareForInline(storyFn, _ref) {
20
- var id = _ref.id,
21
- parameters = _ref.parameters,
22
- component = _ref.component;
23
- var el = React.useRef();
24
- React.useEffect(function () {
25
- _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee2() {
26
- return regeneratorRuntime.wrap(function _callee2$(_context2) {
27
- while (1) {
28
- switch (_context2.prev = _context2.next) {
29
- case 0:
30
- limit( /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee() {
31
- var renderer;
32
- return regeneratorRuntime.wrap(function _callee$(_context) {
33
- while (1) {
34
- switch (_context.prev = _context.next) {
35
- case 0:
36
- _context.next = 2;
37
- return rendererFactory.getRendererInstance("".concat(id, "-").concat(nanoid(10)).toLowerCase(), el.current);
38
-
39
- case 2:
40
- renderer = _context.sent;
41
-
42
- if (!renderer) {
43
- _context.next = 6;
44
- break;
45
- }
46
-
47
- _context.next = 6;
48
- return renderer.render({
49
- forced: false,
50
- component: component,
51
- parameters: parameters,
52
- storyFnAngular: storyFn(),
53
- targetDOMNode: el.current
54
- });
55
-
56
- case 6:
57
- case "end":
58
- return _context.stop();
59
- }
60
- }
61
- }, _callee);
62
- })));
63
-
64
- case 1:
65
- case "end":
66
- return _context2.stop();
67
- }
68
- }
69
- }, _callee2);
70
- }))();
71
- });
72
- return /*#__PURE__*/React.createElement('div', {
73
- ref: el
74
- });
75
- };
@@ -1,116 +0,0 @@
1
- import "regenerator-runtime/runtime.js";
2
- import "core-js/modules/es.promise.js";
3
- import "core-js/modules/es.object.to-string.js";
4
-
5
- function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
6
-
7
- function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
8
-
9
- import { addons, useEffect } from '@storybook/addons';
10
- import { computesTemplateSourceFromComponent } from '@storybook/angular/renderer';
11
- import { SNIPPET_RENDERED, SourceType } from '../../shared';
12
- export var skipSourceRender = function skipSourceRender(context) {
13
- var _context$parameters$d;
14
-
15
- var sourceParams = context === null || context === void 0 ? void 0 : (_context$parameters$d = context.parameters.docs) === null || _context$parameters$d === void 0 ? void 0 : _context$parameters$d.source; // always render if the user forces it
16
-
17
- if ((sourceParams === null || sourceParams === void 0 ? void 0 : sourceParams.type) === SourceType.DYNAMIC) {
18
- return false;
19
- } // never render if the user is forcing the block to render code, or
20
- // if the user provides code
21
-
22
-
23
- return (sourceParams === null || sourceParams === void 0 ? void 0 : sourceParams.code) || (sourceParams === null || sourceParams === void 0 ? void 0 : sourceParams.type) === SourceType.CODE;
24
- };
25
- var prettyUpInternal;
26
-
27
- var makePrettyUp = /*#__PURE__*/function () {
28
- var _ref = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee() {
29
- var prettierHtml, prettier;
30
- return regeneratorRuntime.wrap(function _callee$(_context) {
31
- while (1) {
32
- switch (_context.prev = _context.next) {
33
- case 0:
34
- if (!prettyUpInternal) {
35
- _context.next = 2;
36
- break;
37
- }
38
-
39
- return _context.abrupt("return", prettyUpInternal);
40
-
41
- case 2:
42
- _context.next = 4;
43
- return import('prettier/parser-html');
44
-
45
- case 4:
46
- prettierHtml = _context.sent;
47
- _context.next = 7;
48
- return import('prettier/standalone');
49
-
50
- case 7:
51
- prettier = _context.sent;
52
-
53
- prettyUpInternal = function prettyUpInternal(source) {
54
- return prettier.format(source, {
55
- parser: 'angular',
56
- plugins: [prettierHtml],
57
- htmlWhitespaceSensitivity: 'ignore'
58
- });
59
- };
60
-
61
- return _context.abrupt("return", prettyUpInternal);
62
-
63
- case 10:
64
- case "end":
65
- return _context.stop();
66
- }
67
- }
68
- }, _callee);
69
- }));
70
-
71
- return function makePrettyUp() {
72
- return _ref.apply(this, arguments);
73
- };
74
- }();
75
- /**
76
- * Angular source decorator.
77
- * @param storyFn Fn
78
- * @param context StoryContext
79
- */
80
-
81
-
82
- export var sourceDecorator = function sourceDecorator(storyFn, context) {
83
- var story = storyFn();
84
-
85
- if (skipSourceRender(context)) {
86
- return story;
87
- }
88
-
89
- var channel = addons.getChannel();
90
- var props = story.props,
91
- template = story.template,
92
- userDefinedTemplate = story.userDefinedTemplate;
93
- var component = context.component,
94
- argTypes = context.argTypes;
95
- var toEmit;
96
- var prettyUpPromise = makePrettyUp();
97
- useEffect(function () {
98
- prettyUpPromise.then(function (prettyUp) {
99
- if (toEmit) channel.emit(SNIPPET_RENDERED, context.id, prettyUp(toEmit));
100
- });
101
- });
102
- prettyUpPromise.then(function (prettyUp) {
103
- if (component && !userDefinedTemplate) {
104
- var _source = computesTemplateSourceFromComponent(component, props, argTypes); // We might have a story with a Directive or Service defined as the component
105
- // In these cases there might exist a template, even if we aren't able to create source from component
106
-
107
-
108
- if (_source || template) {
109
- toEmit = prettyUp(_source || template);
110
- }
111
- } else if (template) {
112
- toEmit = prettyUp(template);
113
- }
114
- });
115
- return story;
116
- };
File without changes
@@ -1,11 +0,0 @@
1
- import { combineParameters } from '@storybook/store';
2
- export var enhanceArgTypes = function enhanceArgTypes(context) {
3
- var component = context.component,
4
- userArgTypes = context.argTypes,
5
- _context$parameters$d = context.parameters.docs,
6
- docs = _context$parameters$d === void 0 ? {} : _context$parameters$d;
7
- var extractArgTypes = docs.extractArgTypes;
8
- var extractedArgTypes = extractArgTypes && component ? extractArgTypes(component) : {};
9
- var withExtractedTypes = extractedArgTypes ? combineParameters(extractedArgTypes, userArgTypes) : userArgTypes;
10
- return withExtractedTypes;
11
- };