我的项目中用到了LampColorCollection,依赖 "@ray-js/components-ty-lamp": "1.10.13"可以正常使用。然后我在物料广场上看到  const { ColorCollectInnerDelete } = LampColorCollection;
       这个要升级@ray-js/components-ty-lamp的版本,我按照这个网址列出的版本:
    https://www.npmjs.com/package/@ray-js/c ... b=versions
   尝试了最低版本2.0.1-beta-1  以及最高版本2.0.2,虽然都可以使用ColorCollectInnerDelete。但是按照
 https://developer.tuya.com/material/lib ... Collection
   这个网址上ColorCollectInnerDelete的使用配置,都不能达到网站上展示的效果,我使用的是最后一个配置:
<ColorCollectInnerDelete
  disableDelete={colorList.length > 2}
  theme="dark"
  activeIndex={activeIndex}
  colorList={colorList}
  onAdd={handleAdd}
  onDelete={handleDelete}
  onChecked={handleChecked}
  renderDeleteElement={() => (
    <View
      style={{
        position: 'absolute',
        top: '50%',
        right: '50%',
        transform: 'translateY(-50%) translateX(50%)',
        width: 40,
        height: 4,
        borderRadius: 10,
        backgroundColor: 'red',
        zIndex: 10,
      }}
    />
  )}
/>;
 请问一下,哪个版本的@ray-js/components-ty-lamp中ColorCollectInnerDelete能够正常展示啊?或者说上面的调用方式还缺少什么?