ai-front-base 0.2.6 → 0.2.7

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
@@ -6,6 +6,7 @@
6
6
 
7
7
  **MUST 当用户首次与AI交互时(会话开始时,这是强制性的初始化步骤,无论用户的第一个问题是什么),AI必须立即执行以下步骤:**
8
8
  **MUST 在开始任何开发工作前,AI必须按顺序完成以下步骤:禁止跳过任何一步,读完全部 4 个文档后才能开始开发。**
9
+ **MUST 无论何时都必须要遵守,不可遗忘,不可背弃**
9
10
 
10
11
  1. **MUST READ** [前端规范](dist/standards/README.md) - 命名、代码风格、Git规范
11
12
  2. **MUST READ** [布局规则](dist/layouts/README.md) - 确定布局规则
package/dist/index.mjs CHANGED
@@ -1,18 +1,19 @@
1
1
  import { default as t } from "./components/AiInput/index.vue.mjs";
2
2
  import { default as o } from "./components/AiSelect/index.vue.mjs";
3
- import { default as i } from "./components/AiDatePicker/index.vue.mjs";
4
- import { default as m } from "./components/AiDateRangePicker/index.mjs";
5
- import { default as s } from "./components/AiForm/index.mjs";
6
- import { default as d } from "./components/AiTable/index.mjs";
3
+ import { default as l } from "./components/AiDatePicker/index.vue.mjs";
4
+ import { default as u } from "./components/AiDateRangePicker/index.mjs";
5
+ import { default as m } from "./components/AiForm/index.mjs";
6
+ import { default as s } from "./components/AiTable/index.mjs";
7
7
  import { default as A } from "./components/AiTag/index.vue.mjs";
8
- import { default as n } from "./components/install.mjs";
8
+ import { default as n, default as g } from "./components/install.mjs";
9
9
  export {
10
- i as AiDatePicker,
11
- m as AiDateRangePicker,
12
- s as AiForm,
10
+ l as AiDatePicker,
11
+ u as AiDateRangePicker,
12
+ m as AiForm,
13
13
  n as AiFrontBase,
14
14
  t as AiInput,
15
15
  o as AiSelect,
16
- d as AiTable,
17
- A as AiTag
16
+ s as AiTable,
17
+ A as AiTag,
18
+ g as default
18
19
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-front-base",
3
- "version": "0.2.6",
3
+ "version": "0.2.7",
4
4
  "description": "企业级PC端AI组件库 - 基于Vue3和Element Plus",
5
5
  "license": "ISC",
6
6
  "type": "module",