We need to determine what the minimum browser version minbars are for Fluent UI v9. This will involve going through our code base and the codebases of all v9 dependencies and analyze:
- ECMAscript syntax and APIs
- Browser platform APIs (i.e. ResizeObserver, MutationObserver, CustomEvent)
- CSS APIs
We can use https://caniuse.com/ to check what are the oldest versions for each of our supported browsers that we can use.
If possible, try to do this with automation so that we can regularly check what our minbar is and if we ever exceed it by accident. Typescript lib.dom types are tied with ecmascript versions which is not a completely accurate mapping to browser supported features.
We need to determine what the minimum browser version minbars are for Fluent UI v9. This will involve going through our code base and the codebases of all v9 dependencies and analyze:
We can use https://caniuse.com/ to check what are the oldest versions for each of our supported browsers that we can use.
If possible, try to do this with automation so that we can regularly check what our minbar is and if we ever exceed it by accident. Typescript lib.dom types are tied with ecmascript versions which is not a completely accurate mapping to browser supported features.