Skip to content
#

Documentation

Documentation is a set of information that describes a product to its users, including what it is, how it operates, and how to use it.

Here are 6,944 public repositories matching this topic...

storybook
darkowic
darkowic commented Apr 26, 2021

Describe the bug
When story id starts with settings, the addon panel is frozen/broken/not responding. 🤯

https://user-images.githubusercontent.com/11510581/116053981-83f51f80-a67b-11eb-8a70-28e8b989b50e.mp4

To Reproduce
I reproduced it on newly created CRA with SB. See video above.

To reproduce: just add story id starting with settings

export default {
  title: "
docusaurus
slorber
slorber commented Apr 9, 2021

🚀 Feature

We should validate docs/blog/pages frontmatter against a Joi schema:

  • prevent the user to use bad frontmatter
  • display friendly error messages when this happens
  • allow unknown frontmatter (user can assign additional metadata to each doc)
  • unit-test this validation logic
  • try to use the frontmatter TS types in the theme?

Some initial work has been done in https://gith

react-styleguidist
typedoc
nisimjoseph
nisimjoseph commented Apr 26, 2021

Search terms

multiple interfaces extends

Expected Behavior

the export doc need to show all the interfaces which the new interface derived from when using Partial<> for the interfaces.

Actual Behavior

see all extends, it see only the first.

Steps to reproduce the bug

  1. add to file:
interface Shape extends Partial<BaseShape1>, Partial<BaseShape2> {}
Wikipedia
Wikipedia