ai-front-base 0.1.10 → 0.1.12

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/README.md CHANGED
@@ -9,9 +9,6 @@
9
9
  1. **[前端规范](dist/standards/README.md)** - 必读,了解命名、代码风格、Git规范
10
10
  2. **[布局规则](dist/layouts/README.md)** - 必读,确定业务系统遵守的布局规则
11
11
  3. **[样式主题](dist/styles/README.md)** - 必读,选择并配置主题
12
-
13
- ### 按需阅读
14
-
15
12
  4. **[组件库](dist/components/README.md)** - 查看组件列表,按需查看各组件的types.ts了解用法
16
13
 
17
14
  ### AI开发流程
@@ -26,33 +26,10 @@ import { AiForm } from 'ai-front-base'
26
26
 
27
27
  ## 组件列表
28
28
 
29
- ### AiForm - 表单组件
30
- **适用场景:** 数据录入、编辑页面
31
-
32
- **特点:** JSON配置驱动,快速构建表单
33
-
34
- **快速了解:** 查看 [AiForm/types.ts](AiForm/types.ts) 了解配置结构
35
-
36
- ### AiTable - 表格组件
37
- **适用场景:** 数据列表展示
38
-
39
- **特点:** JSON配置列定义
40
-
41
- **快速了解:** 查看 [AiTable/types.ts](AiTable/types.ts) 了解配置结构
42
-
43
- ### AiInput - 输入框
44
- **适用场景:** 文本输入
45
-
46
- **特点:** 默认可清空
47
-
48
- **快速了解:** 查看 [AiInput/types.ts](AiInput/types.ts)
49
-
50
- ### AiSelect - 选择器
51
- **适用场景:** 下拉选择
52
-
53
- **特点:** 默认可清空、可过滤
54
-
55
- **快速了解:** 查看 [AiSelect/types.ts](AiSelect/types.ts)
29
+ ### [AiForm](AiForm/types.ts) - 表单组件,基于ELForm封装
30
+ ### [AiTable](AiTable/types.ts) - 表格组件,基于ELTable封装
31
+ ### [AiInput](AiInput/types.ts) - 输入框,基于ELInput封装
32
+ ### [AiSelect](AiSelect/types.ts) - 选择器,基于ELSelect封装
56
33
 
57
34
  ## 使用规范(强制)
58
35
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-front-base",
3
- "version": "0.1.10",
3
+ "version": "0.1.12",
4
4
  "description": "企业级PC端AI组件库 - 基于Vue3和Element Plus",
5
5
  "license": "ISC",
6
6
  "type": "module",