Xie Jay
Xie Jay
支持 `bodyScrollable` 为 `false` 时自动调整滚动条以避免抖动 [主要代码](https://github.com/DevCloudFE/ng-devui/pull/137/files#diff-bb6c03d833127c120ed06d20ed6bc798925d2fb5e2bd13bc21ea48001978f3f5) https://user-images.githubusercontent.com/64340763/129555421-95ace2a6-ab41-408b-abec-681c336f4a10.mp4
找半天导航菜单没看到, 最后发现手风琴示例提供的是导航菜单 
https://www.w3.org/WAI/ARIA/apg/
fix path when set rootDir 
实现选择性地订阅 Context 值,解决外部状态状态管理库在 React18 分片渲染下的状态统一问题。 - Demo: https://codesandbox.io/s/rcl-store-lm2h0e - Project: https://github.com/xiejay97/rcl-store
不确定是否提供该组件 实现:overflow: hidden + resize event 效果如下 
1. Provide / Inject 2. $parent / $children --- 1. 在很长一段时间,无法实现 Provide / Inject,因为 React useContext 只能顶层调用,这意味着无法在像 `if` 语句中获取上下文。但是目前 React Canary 版本发布了 [use](https://react.dev/reference/react/use) API,用法类似于 Provide / Inject。 2. $parent /...
### What problem does this feature solve 以carousel组件为例,在 renderless 中,获取父、子实例是依据 Vue 组件结构实现,如 carousel-item 获取到 carousel 是通过 `parent.$parent`,这是由于 carousel-item 组件外层有一层适配层组件。这是无法迁移的React中的特性,我们应当通过条件获取准确的父、子实例 ### What does the proposed API look like 父实例 ```ts function...