This repository has been archived by the owner on Jan 13, 2025. It is now read-only.
[MDC Select] Theming doesn't work as described in documentation and the select menu is not listed in web components. #7695
Closed
Description
Feature Request
- Documentation for the Select Menu should be added to component list. At the moment it's only findable through search.
- The theming part in the documentation is not working as described:
- For theming the documentation says to add:
@use '@material/select';
Unfortunately this doesn't work.
- For theming the documentation says to add:
Proposed solution
- Please add the select menu component to the component list on the left side menu on https://material.io/components?platform=web
- Please change the documentation regarding theming to:
@use '@material/select/mixins' as select;
.my-demo-select {
@include select.filled-density(-2);
}
Alternatives considered
An alternative solution of course would be to make the mdc-select theming possible as described in the documentation.