@farris/x-ui 0.1.3 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@farris/x-ui",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "可复用的 AI 对话组件",
5
5
  "type": "module",
6
6
  "main": "./farris.x-ui.umd.cjs",
@@ -1,6 +1,6 @@
1
1
  import { TodoItemStatus } from '../../../../type';
2
2
 
3
- /** 状态图标:NotStart 空心圆,Working 转圈,Down 对号圆。farrisicon 未找到时使用 CSS 占位 */
3
+ /** 状态图标:NotStart / Working 蓝色静态空心圆,Done 绿色对勾。farrisicon 未找到时使用 CSS 占位 */
4
4
  export declare function StatusIcon({ status }: {
5
5
  status: TodoItemStatus;
6
6
  }): import("vue/jsx-runtime").JSX.Element;