晓
晓
# PR Details fix: MApp can't pass props ## How Has This Been Tested * add e2e test ## Types of changes - [ ] Docs change / refactoring /...
# PR Details chore: update runtime version and fix workflow error ## Types of changes - [ ] Docs change / refactoring / dependency upgrade - [x] Bug fix (non-breaking...
zh-Hans document display abnormal,the following image
## Description * fix sub-app document.currentscript property missing * Clear document.currentScript setting in macro task ## How Has This Been Tested * document.currentScript for outputting sub-app synchronous and asynchronous scripts...
### Describe the bug * 子应用中有个 svg 有属性 xmlns:xlink,garfish 加载它的时候会报错 可以通过官网 Demo 这里复现:https://stackblitz.com/edit/garfish-demo?file=sub%2Fpublic%2Findex.html 在这个文件 的 body 里加一行 ```html ``` ### Reproduction https://stackblitz.com/edit/garfish-demo?file=sub%2Fpublic%2Findex.html ### Used Package Manager pnpm ### System Info...
### Describe the bug ```js window.onload = function () { let root = document.querySelector('#root'); root.addEventListener('click',(event)=>{ console.log(event instanceof MouseEvent); // result is false // expect is true }); } ``` ###...
### Describe the bug Garfish bridge support react18 ### Reproduction none ### Used Package Manager pnpm ### System Info ```shell pnpm ``` ### Validations - [X] Read the [docs](https://garfish.top/quick-start). -...
### Describe the bug ```js // 独立运行可以正常触发回调,在微前端环境无法正常触发 window.onmessage = function () { // 可以正常获取微前端应用回调 } ``` ## 暂时解决方案 将 dom 零级事件转换成,addEventListener ```js window.addEventListener('message',() => { }) ``` ### Reproduction https://github.com/modern-js-dev/garfish/tree/main/dev...
### Describe the bug > 复现代码和结果 * appInfo 设置子应用沙箱为 strictIsolation: true * document.getElementsByTagName('html'); > 问题结果 无法正常获取内容  > 问题原因 * 开启严格模式后子应用的 root 节点为 html,所以无法查询自身,应当与标准文档一致在上层增加 document 节点  ### Reproduction none...