We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
namespace
block
Note: microsoft/TypeScript#12265 (comment) Related: #41
TS parser should know somehow. Same JS understand from object in case of mix
https://material.io/components/buttons/web#contained-button
<i class="material-icons mdc-button__icon" aria-hidden="true">bookmark</i>
<button class="mdc-button mdc-button--raised mdc-ripple-upgraded mdc-ripple-upgraded--foreground-activation"> <span class="mdc-button__ripple"></span> <i class="material-icons mdc-button__icon">bookmark</i> <span class="mdc-button__label">Contained Button plus Icon</span> </button>
turns to something like
const btn = bem("mdc-button") // (["mdc", "button"]) ? "@mdc"? "mdc"? + vs `bem("mdc")` vs `bem("button") <button {...btn(true, {$: "raised"}, {"mdc-ripple-upgraded": "foreground-activation"})}> <i {...btn({icon: true}, materialIcon)}/> {/* button of button */} <I {...btn(true, {$: "raised", icon: true}, materialIcon)}/> </button>
const btn = bem({"mdc-button": "raised"}, {"mdc-ripple-upgraded": "foreground-activation"}) <button {...btn}> <i {...btn(true, {$: "raised", icon: true}, materialIcon)}/> </button>
The text was updated successfully, but these errors were encountered:
undefined
#39 Remove redundant modKey. Comment delEl in favor of #30
modKey
delEl
57e0172
askirmas
No branches or pull requests
Note: microsoft/TypeScript#12265 (comment)
Related: #41
namespace
TS parser should know somehow. Same JS understand from object in case of mix
block
turns to something like
ctx from string
ctx from separated singleton of block
The text was updated successfully, but these errors were encountered: