Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

more inputs #190

Merged
merged 3 commits into from
Oct 7, 2021
Merged

more inputs #190

merged 3 commits into from
Oct 7, 2021

Conversation

mbostock
Copy link
Member

@mbostock mbostock commented Oct 7, 2021

Adds email, tel, url, password, and color inputs. The color input is a little bit special because we want an output to accompany the input so that we can see the color value (similar to how a range input has an accompany number input). I suppose the output could be an editable text input that coordinates with the color input… but I’ll leave that as future work. E.g.,

Screen Shot 2021-10-06 at 7 56 02 PM

Fixes #42.
Fixes #41.

@mbostock mbostock requested a review from Fil October 7, 2021 03:02
Copy link
Collaborator

@Fil Fil left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ideas for improvement of the color input:

Following the spec, a type=color input only accepts #rrggbb formatted values: no named colors, no 'rgb(…)' strings, no opacity, and of course no d3 colors.

I understand that we don't want to add d3-color as a dependency, but it would be a nice improvement in usability.

An alternative might be to reference this in the API documentation: something like "the value must be given in the #rrggbb hexadecimal format. For example: viewof color = Inputs.color({value: d3.rgb(defaultColor).formatHex()})"

Also, what would be the best way to make the output editable? Even if it's not by editing the text output, it would seem useful to be able to paste a color from the clipboard. In my tests the Chrome UI for this input has a text (sub-)input in which I can paste a hex color; Safari and Firefox use the same osx thing which is quite … complicated.

@mbostock mbostock force-pushed the mbostock/more-inputs branch from 0ba8fe6 to 79b91bc Compare October 7, 2021 20:02
@mbostock mbostock merged commit 8701226 into main Oct 7, 2021
@mbostock mbostock deleted the mbostock/more-inputs branch October 7, 2021 20:07
Comment on lines +35 to +36
${maybeLabel(label, input)}<div class=__ns__-input>
<div class=__ns__-input>${input}${output}</div>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It looks like there are two .__ns__-input wrapper divs here, while all the other inputs seem to use just one.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, that is correct.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Color Password
3 participants