Xie Jay

Results 13 issues of 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

PR: unreviewed

feature requested

找半天导航菜单没看到, 最后发现手风琴示例提供的是导航菜单 ![image](https://user-images.githubusercontent.com/64340763/126584617-fcdadf87-3657-44e4-833b-96dc2e2af578.png)

feature requested

https://www.w3.org/WAI/ARIA/apg/

help wanted
discussion

fix path when set rootDir ![image](https://user-images.githubusercontent.com/64340763/191190654-475e8e79-9d55-4921-9fe7-62a4e301c9a8.png)

实现选择性地订阅 Context 值,解决外部状态状态管理库在 React18 分片渲染下的状态统一问题。 - Demo: https://codesandbox.io/s/rcl-store-lm2h0e - Project: https://github.com/xiejay97/rcl-store

不确定是否提供该组件 实现:overflow: hidden + resize event 效果如下 ![image](https://user-images.githubusercontent.com/64340763/202632662-ab7fde3f-abd1-43b5-ba5a-020db02ee7a3.png)

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...

enhancement