composable
Here are 115 public repositories matching this topic...
-
Updated
Nov 16, 2021 - JavaScript
-
Updated
Jun 4, 2022 - TypeScript
-
Updated
May 7, 2021 - JavaScript
-
Updated
Jun 6, 2022 - Kotlin
For a long time I thought this was impossible to do without writing toString/fromString
functions for your custom types, but I just realized that you can make it work by instead using the list index of the options as the "value", and then in the onChange
decoder use that index to retrieve the item from the passed in options list.
Here's a demo: https://ellie-app.com/7253Q8THR2xa1
-
Updated
Jun 10, 2022 - TypeScript
-
Updated
Oct 30, 2020 - C++
-
Updated
Jun 7, 2022 - Kotlin
-
Updated
Aug 11, 2021 - TypeScript
-
Updated
Jun 20, 2020 - Kotlin
-
Updated
Aug 10, 2021 - JavaScript
We would like to add a "selectable" parameter to our bar chart that allows users to:
- Select a single bar on click
- Output a
drilldown
output for other blocks to use
-
Updated
Aug 10, 2021 - JavaScript
-
Updated
Mar 6, 2022 - Kotlin
-
Updated
Apr 9, 2022 - JavaScript
Hey, all!
As Zedux ramps up for its first pre-release (v0.1.0!), I just wanted to make a general request for feedback. Feel free to comment on this issue.
Some idea sparkers:
- How are you using Zedux?
- Do you see any flaws in the api? Anything that's unnecessarily difficult to use/remember?
- Is there any documentation that's unclear?
- Are there any examples you'd like to see?
Of
Unit tests
$ go test -cover -race ./... (328ms)
ok github.com/SentimensRG/ctx 1.035s coverage: 73.0% of statements
ok github.com/SentimensRG/ctx/mergectx 1.711s coverage: 54.0% of statements
ok github.com/SentimensRG/ctx/refctx 1.032s coverage: 75.0% of statements
? github.com/SentimensRG/ctx/sigctx [no test files]
-
Updated
Jan 22, 2022 - TypeScript
Currently, help
functions accept any array of strings. It would be nice if help
parameter can be narrowed down to specific union of string tuples.
For example: Let's say our application supports a main command and 3 subcommands which are foo
, bar
, and bar baz
, then type of cmdPath
parameter of help
of main command should be [] | ['foo'] | ['bar'] | ['bar', 'baz']
-
Updated
Dec 14, 2021 - TypeScript
-
Updated
Feb 11, 2022 - JavaScript
-
Updated
Nov 6, 2020 - Rust
-
Updated
Sep 19, 2018 - JavaScript
-
Updated
Apr 21, 2021 - Scala
-
Updated
Oct 5, 2017 - Elixir
Improve this page
Add a description, image, and links to the composable topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the composable topic, visit your repo's landing page and select "manage topics."
Clear and concise description of the problem
like this:
The useSliceUpload function can slice the file to an array and use the options support function to upload to the server.
Suggested solution
How to solve it?
I will try to write this function.