fast
fast copied to clipboard
The adaptive interface system for modern web experiences.
# 🐛 Bug Report There are two separate issues relating to the way that `Compiler.aggregate` works, one related to `oneTime` bindings and the other to SSR OpCode cache-clearing. `Compiler.aggregate` stores...
# 🙋 Feature Request The FASTGlobal has a versions array. Instances of fast-element should push their version number into the array if it is not already present. This will enable...
# 🐛 Bug Report When trying to render SVG elements (text and shapes) from within the `repeat` directive, the nodes are present in the DOM but they are not rendered...
# 🐛 Bug Report Min Repro: https://stackblitz.com/edit/typescript-bxsxvb?file=index.ts ## 💻 Repro or Code Sample 1. Define an custom-element with some attribute with `mode="boolean"`, with the default value assigned `true` 2. Define...
# 🐛 Bug Report I noticed when experimenting with SSR code that when using the `FASTStyle` component to reduce component stylesheet payload, there was a pretty significant FOUSC when loading...
`@microsoft/fast-ssr` implements a stylesheet cache to work with the FASTStyle custom element to reduce the stylesheet payload. When a stylesheet is first encountered, the sheet gets assigned an ID and...
# 🙋 Feature Request SSR infrastructure should allow opting specific component instances out of declarative shadow DOM rendering. Similar to #5870, but for component instances instead of component types. We'll...
# 🐛 Bug Report [AttributeConfiguration](https://github.com/microsoft/fast/blob/c9bd1b900afa95b47e0f79a6409f256dd2827fdb/packages/web-components/fast-element/src/components/attributes.ts#L41)'s _converter_ type requires _toView_ & _fromView_ to always be set. `@attr` _mode_, when set to a `'fromView'` value, will not reflect property assignment to the...
More details in https://github.com/microsoft/fast/issues/5182. Dependent features: * [x] #5666 * [x] #5580 * [x] #5581 * [x] #5582
# Overview Server-side rendering (SSR) is the process of generating HTML markup for an arbitrary experience on the server and sending the result to the client. The primary benefit of...