The Wayback Machine - https://web.archive.org/web/20200901020139/https://github.com/topics/library
Skip to content
#

Library

A library is a collection of preprogrammed templates that implement a behavior when invoked. Libraries are well-defined and are designed for reuse throughout implementation. For example, a website may have multiple webpages that implement the same navigation bar or text-field, but none of these objects have relation to one another.

Here are 14,470 public repositories matching this topic...

gaearon
gaearon commented Aug 30, 2020
function foo*() {
  yield 1;
  yield 2;
}

let gen = foo()

Currently if you put gen into state or props and then open this component in DevTools, it will consume that generator while trying to format it. So gen.next() will give you { done: true } next time you call it.

This happens here:

https://github.com/facebook/react/blob/60ba723bf78b9a28f60dce854e88e206fab52301

storybook
AlokTakshak
AlokTakshak commented Aug 16, 2020

Describe the bug
Creating angular project with no initial app throws sb init error
• Detecting project type. ✓
• Adding Storybook support to your "Angular" app
TypeError: Cannot read property 'architect' of undefined

To Reproduce
Steps to reproduce the behavior:

  1. ng new ng-ui --create-application=false
  2. cd ng-ui
  3. ng g lib button -p ui
  4. npx -p @storybook/cli sb
jsinhSolanki
jsinhSolanki commented Jan 17, 2019

Hey, I am using tooltip in my navbar and I have two layout.

  1. With navbar
  2. No Navbar

I have button in navbar which navigates to another layout which dont have any navbar.(So, when I click on btn, btn it self and navbar gets destroyed). But that tooltip which I used on button still remain.

i have created simillar demo for you.
jsfiddle

Wikipedia
Wikipedia
You can’t perform that action at this time.