Elizabeth Mitchell

Results 221 comments of Elizabeth Mitchell

Is it Edge only? Does it reproduce in Chrome as well? Also which platform is this, Windows?

Looks like it's just a typo, should be `autofocus` instead of `autocomplete`. Do you mind sending a PR to update both the doc and the `show()` method's jsdoc?

Continuous as a taxonomy term from design means without tickmarks, not a slider with infinite fine grained steps. Like Elliott mentioned, you can set `step` to something smaller, but we...

I don't believe we support `step="any"`. The step value must be a number for ``. I've updated the title to reflect that. It may take a bit of investigation to...

We need to add `formDisabledCallback()` to our elements, [since `` can disable them](https://html.spec.whatwg.org/dev/form-control-infrastructure.html#concept-fe-disabled) ``` formDisabledCallback(disabled: boolean) { this.disabled = disabled; } ``` This would be a good community PR, want...

Interesting! After investigating, I believe the problem is that setting our own `disabled` attributes changes the underlying disabled state of the FACE. Instead, we need to handle an internal disabled...

We need to forward that attribute to the `` (and input only, not the textarea). Should be fairly simple, could you submit a PR to add it?

> I actually wonder whether we should be supporting `type=file` at all That's a fair point. `type=file` currently falls under [unsupported types](https://github.com/material-components/material-web/blob/43af3baa7f599c0d9cf3f5562e2a772e229d95c2/textfield/internal/text-field.ts#L29), which means pretty basic support. There's a few...