Skip to content
#

composition

Here are 360 public repositories matching this topic...

hilary-L
hilary-L commented Jun 23, 2017

I really like the idea of this project -- I think there's a lot of room for making animation in react simpler. However, I think you need better documentation / examples. I tried using this in a project I'm working on today and for the life of me I couldn't get it working. The cloned repo and example worked fine -- but when I tried to apply it to my own code... well, nothing worked.

It'd be nice

thomashandorf
thomashandorf commented Sep 29, 2017

when the label in the link is not in the current frame no effect will be seen.

The frame that contains the label should be made active.

if there are more than one label with the same name we should scroll to all of them.

IMPORTANT: this issue doesn’t have high priority. If this is too complex to implement we should discuss if there is an easy solution.

dalefrancis88
dalefrancis88 commented Feb 26, 2019

Description

To bring it in-line with the other Crocks we need to add in descriptive documentation for the List crock with examples

Task List

  • Add main List.md file to 'docs/src/pages/docs/crocks/' based on the others
  • Ensure it has the correct 'weight'
  • Locate all references to List and update it to link to the new List documentation. Reference the section
microstates
jeffutter
jeffutter commented Oct 31, 2018

In traditional 'state machines' usually, there is a way to disallow a transition. Perhaps based on business rules, consider the example of a cash register state machine.

You may have a cash register that starts with $100 in it. You may have a 'withdraw' action that lets you take money out. How would you prevent the following scenario:

CashRegister
  .balance.withdraw(20)
  .
atomic-layout
kettanaito
kettanaito commented Oct 24, 2019

What:

If I am a contributor and decide to improve the documentation I cannot do it unless I have an access into Atomic Layout's GitBook organization.

Why:

Current documentation repository is an artifact of the deployed documentation on GitBook. Since the current GitBook is a paid SaaS, as opposite to its previous OSS version, you c

3noch
3noch commented Aug 20, 2015

I am by far the least qualified person to review your work, but I find it relentlessly fascinating. I want your work to gain more traction, but I think that English is not your first language. I would like to offer my help to do some editing on your FP-complete posts to make them sound more natural in English. I can't offer much, but as I read through them I could offer some edits/questions that m

bow
truizlop
truizlop commented Feb 26, 2019

Description

The current docs generated with Jazzy show only the methods that a class declares itself, but not the ones inherited from superclass or superclass conformance extensions. For instance, Id shows only 5 methods, but ForId conforms to a number of typeclasses that add methods to `

lauterry
lauterry commented Feb 20, 2017

Hi

Regarding this pull request jfairbank/revalidate#46

I expect the following code to work :

export const passwordFieldValidator = composeValidators(
	isRequired({
		id: 'error.password.required',
		description: 'Error message password required',
		defaultMessage: 'You must provide a password'
	}),
	hasLengthGreaterThan(5)(
		id: 'error.password.requ
rhlsthrm
rhlsthrm commented Aug 5, 2019

The docs do not show an example of resolveDependees. I am getting an error when trying to create a resolver the following way:

const poolShareValue = pipeResolvers(
  resolveDependees(['totalPoolShares', 'poolValue']),
  ([totalPoolShares, poolValue]) => {
    const ethPerShare = totalPoolShares.toNumber() > 0 ? parseFloat(utils.formatEther(poolValue)) / totalPoolShares.toNumber() :

Improve this page

Add a description, image, and links to the composition topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the composition topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.