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
Checklist
--dev
Completing the items above will greatly improve triaging time of your issue.
Expected behavior A clear and concise description of what you expected to happen.
There is a new syntax for defining and registering components which I think the analyzer will need to be updated to handle
import { attr, css, FASTElement, html } from "@microsoft/fast-element"; class HelloWorld extends FASTElement { @attr name: string; } HelloWorld.define({ name: "hello-world", template: html`<span>Hello ${x => x.name}!</span>`, styles: css` span { color: red; } `, });
The text was updated successfully, but these errors were encountered:
Reading through the docs so far the only API change I can see so far is the component registration change https://fast.design/
Sorry, something went wrong.
No branches or pull requests
Checklist
--dev
flag to get more information? - N/ACompleting the items above will greatly improve triaging time of your issue.
Expected behavior
A clear and concise description of what you expected to happen.
There is a new syntax for defining and registering components which I think the analyzer will need to be updated to handle
The text was updated successfully, but these errors were encountered: