asiaint-lowcode 3.1.138 → 3.1.139
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 +31 -31
- package/dist/asiaint-lowcode.d.ts +2 -0
- package/dist/asiaint-lowcode.js +1 -1
- package/dist/asiaint-lowcode.umd.cjs +71 -71
- package/dist/lazy/{Card-CWosU-Z3.js → Card-BTOGiiFk.js} +8 -8
- package/dist/lazy/{Cascader-3RiO1ZT8.js → Cascader-D5Npj_J3.js} +1 -1
- package/dist/lazy/{Checkbox-BOLDm0rt.js → Checkbox-Cr7IUX2L.js} +2 -2
- package/dist/lazy/{Collapse-DYAJYpI0.js → Collapse-Dx5MZzYK.js} +1 -1
- package/dist/lazy/{Component-DPqFlzgV.js → Component-BIkyG3qG.js} +2 -2
- package/dist/lazy/{Component-BFFdXsmS.js → Component-BmUWJTHt.js} +1 -1
- package/dist/lazy/{Component-DdxtZm90.js → Component-CDclw9Z9.js} +2 -2
- package/dist/lazy/{Component-DMLcCPNA.js → Component-Ckpht8pc.js} +1 -1
- package/dist/lazy/{Component-Den9lHoB.js → Component-D3HVwOpC.js} +2 -2
- package/dist/lazy/{CurdCard-S7-E8b8h.js → CurdCard-DTR0sIBq.js} +2 -2
- package/dist/lazy/Custom-T6BRc5hT.js +26 -0
- package/dist/lazy/{DatePicker-eM_f4-Az.js → DatePicker-BdlkQqRE.js} +1 -1
- package/dist/lazy/{DragList-CPRwmi2l.js → DragList-E_EZeOyA.js} +13 -13
- package/dist/lazy/{FilterSearch-D0HRJoPi.js → FilterSearch-bdyx2RJS.js} +2 -2
- package/dist/lazy/{FloatCurd-Cv75dqpC.js → FloatCurd-CP_tH8tY.js} +2 -2
- package/dist/lazy/{FormList-C4ro7qFu.js → FormList-Dyg_JXxQ.js} +1 -1
- package/dist/lazy/{Grid-_drN9YjU.js → Grid-CIzv77uP.js} +1 -1
- package/dist/lazy/{InfiniteScroll-DxbAPWf0.js → InfiniteScroll-BlT1x8Z-.js} +4 -4
- package/dist/lazy/{Inline-Djl7NxVR.js → Inline-D5dPf9ZU.js} +3 -3
- package/dist/lazy/{JsonEdit-BOVzO61P.js → JsonEdit-CHi0JSJt.js} +3 -3
- package/dist/lazy/{LogList-CtfYZaek.js → LogList-DjGC7Wwz.js} +7 -7
- package/dist/lazy/{ObjGroup-LPgvdJXq.js → ObjGroup-JDm0lS70.js} +1 -1
- package/dist/lazy/{OfferDetails-DGClz_eT.js → OfferDetails-LQRW8PQO.js} +8 -8
- package/dist/lazy/{Pagination-G8Hf9rwP.js → Pagination-DsXpzy8L.js} +2 -2
- package/dist/lazy/{Progress-B4HIprrl.js → Progress-VvRhpxOo.js} +15 -15
- package/dist/lazy/{Radio-hzjhNYJQ.js → Radio-HS5f2CyF.js} +3 -3
- package/dist/lazy/{SearchSelect-Co4-W0wr.js → SearchSelect-f8uSdUbq.js} +6 -6
- package/dist/lazy/{Select-DmYRJX_P.js → Select-BgVSf4DU.js} +2 -2
- package/dist/lazy/{Table-B1htBmIb.js → Table-DdtPKKwg.js} +2 -2
- package/dist/lazy/{Tabs-B7gmaw5y.js → Tabs-exO8g-T4.js} +2 -2
- package/dist/lazy/{TextArea-_DQHgiiN.js → TextArea-BaPPb6ip.js} +3 -3
- package/dist/lazy/{Wrapper-gxFTNbyd.js → Wrapper-CCNJ2-wm.js} +4 -4
- package/dist/lazy/{index-DWGVoK0b.js → index-ql-DE2T2.js} +730 -724
- package/dist/lazy/{useSelect-C-QCeZTS.js → useSelect-DmoGseuL.js} +1 -1
- package/dist/style.css +2 -2
- package/global.d.ts +10 -10
- package/package.json +1 -1
- package/dist/lazy/Custom-DsAzpCGF.js +0 -26
package/README.md
CHANGED
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
# asiaint-lowcode
|
|
2
|
-
|
|
3
|
-
基于 [vue](https://github.com/vuejs/vue) 和 [element-plus](https://github.com/ElemeFE/element) 实现的表单设计器 + 渲染器
|
|
4
|
-
|
|
5
|
-
使用了最新的前端技术栈,可以让你免去vue项目中表单的烦恼。
|
|
6
|
-
|
|
7
|
-
### 安装
|
|
8
|
-
|
|
9
|
-
```js
|
|
10
|
-
npm i asiaint-lowcode
|
|
11
|
-
//或
|
|
12
|
-
yarn add asiaint-lowcode
|
|
13
|
-
//或
|
|
14
|
-
pnpm i asiaint-lowcode
|
|
15
|
-
```
|
|
16
|
-
|
|
17
|
-
### 全局注册
|
|
18
|
-
|
|
19
|
-
```js
|
|
20
|
-
import { createApp } from 'vue'
|
|
21
|
-
import AsiaintLowcode from 'asiaint-lowcode'
|
|
22
|
-
import ElementPlus from 'element-plus'
|
|
23
|
-
import 'element-plus/dist/index.css'
|
|
24
|
-
import App from './App.vue'
|
|
25
|
-
|
|
26
|
-
const app = createApp(App)
|
|
27
|
-
|
|
28
|
-
app.use(ElementPlus)
|
|
29
|
-
app.use(AsiaintLowcode)
|
|
30
|
-
app.mount('#app')
|
|
31
|
-
```
|
|
1
|
+
# asiaint-lowcode
|
|
2
|
+
|
|
3
|
+
基于 [vue](https://github.com/vuejs/vue) 和 [element-plus](https://github.com/ElemeFE/element) 实现的表单设计器 + 渲染器
|
|
4
|
+
|
|
5
|
+
使用了最新的前端技术栈,可以让你免去vue项目中表单的烦恼。
|
|
6
|
+
|
|
7
|
+
### 安装
|
|
8
|
+
|
|
9
|
+
```js
|
|
10
|
+
npm i asiaint-lowcode
|
|
11
|
+
//或
|
|
12
|
+
yarn add asiaint-lowcode
|
|
13
|
+
//或
|
|
14
|
+
pnpm i asiaint-lowcode
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
### 全局注册
|
|
18
|
+
|
|
19
|
+
```js
|
|
20
|
+
import { createApp } from 'vue'
|
|
21
|
+
import AsiaintLowcode from 'asiaint-lowcode'
|
|
22
|
+
import ElementPlus from 'element-plus'
|
|
23
|
+
import 'element-plus/dist/index.css'
|
|
24
|
+
import App from './App.vue'
|
|
25
|
+
|
|
26
|
+
const app = createApp(App)
|
|
27
|
+
|
|
28
|
+
app.use(ElementPlus)
|
|
29
|
+
app.use(AsiaintLowcode)
|
|
30
|
+
app.mount('#app')
|
|
31
|
+
```
|
|
@@ -1971,6 +1971,7 @@ export declare const Tree: DefineComponent<ExtractPropTypes<__VLS_TypePropsToRun
|
|
|
1971
1971
|
onNodeClick?: string;
|
|
1972
1972
|
onNodeDbClick?: string;
|
|
1973
1973
|
onCheckChange?: string;
|
|
1974
|
+
onCurrentChange?: string;
|
|
1974
1975
|
onLoad?: string;
|
|
1975
1976
|
btns: BtnType[];
|
|
1976
1977
|
data?: any[];
|
|
@@ -1992,6 +1993,7 @@ type: "tree";
|
|
|
1992
1993
|
onNodeClick?: string;
|
|
1993
1994
|
onNodeDbClick?: string;
|
|
1994
1995
|
onCheckChange?: string;
|
|
1996
|
+
onCurrentChange?: string;
|
|
1995
1997
|
onLoad?: string;
|
|
1996
1998
|
btns: BtnType[];
|
|
1997
1999
|
data?: any[];
|
package/dist/asiaint-lowcode.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import './style.css';
|
|
2
|
-
import { $ as r, D as n, b as m, d as t, P as d, E as i, H as p, z as u, f, G as R, i as F, u as g, c as l } from "./lazy/index-
|
|
2
|
+
import { $ as r, D as n, b as m, d as t, P as d, E as i, H as p, z as u, f, G as R, i as F, u as g, c as l } from "./lazy/index-ql-DE2T2.js";
|
|
3
3
|
import "element-plus";
|
|
4
4
|
import "vue";
|
|
5
5
|
export {
|