asiaint-lowcode 3.1.140 → 3.1.142

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.
Files changed (44) hide show
  1. package/README.md +31 -31
  2. package/dist/asiaint-lowcode.d.ts +13 -0
  3. package/dist/asiaint-lowcode.js +1 -1
  4. package/dist/asiaint-lowcode.umd.cjs +192 -192
  5. package/dist/lazy/{Card-8vNWeIPg.js → Card-DS0XD8tu.js} +8 -8
  6. package/dist/lazy/{Cascader-BMAg1b5J.js → Cascader-2xz4WYNR.js} +1 -1
  7. package/dist/lazy/{Checkbox-Cuy9UcGI.js → Checkbox-CARZTCib.js} +2 -2
  8. package/dist/lazy/{Collapse-CouIUiVy.js → Collapse-BHYYPY9J.js} +1 -1
  9. package/dist/lazy/{Component-Cpy05Jd8.js → Component-B6qOJZMu.js} +2 -2
  10. package/dist/lazy/{Component-BMbdOXWt.js → Component-BHy-gdds.js} +1 -1
  11. package/dist/lazy/{Component-BwpHn3oy.js → Component-CtDLAFnm.js} +2 -2
  12. package/dist/lazy/{Component-DnkwfLaR.js → Component-DbZK73I2.js} +1 -1
  13. package/dist/lazy/{Component-CKCXWIC5.js → Component-DmU2P_2K.js} +2 -2
  14. package/dist/lazy/{CurdCard-xK4Hi8Gc.js → CurdCard-CZ4VhPL7.js} +2 -2
  15. package/dist/lazy/Custom-BiCuB_-e.js +26 -0
  16. package/dist/lazy/{DatePicker-B8xiNGLk.js → DatePicker-D-rFup5V.js} +1 -1
  17. package/dist/lazy/{DragList-DSMjg9EP.js → DragList-Ii6kqkg2.js} +13 -13
  18. package/dist/lazy/{FilterSearch-CO5ewB-U.js → FilterSearch-DpMIShxs.js} +2 -2
  19. package/dist/lazy/FloatCurd-IaQW0CA2.js +239 -0
  20. package/dist/lazy/FloatSearchCurd-CqoJsN7c.js +424 -0
  21. package/dist/lazy/{FormList-U6FewtHN.js → FormList-DVAKg3Cx.js} +1 -1
  22. package/dist/lazy/{Grid-DMQrIKKC.js → Grid-Bw9rmwrG.js} +1 -1
  23. package/dist/lazy/{InfiniteScroll-DdeR7QjM.js → InfiniteScroll-Cmj0-z2l.js} +4 -4
  24. package/dist/lazy/{Inline-Cqpyce29.js → Inline-B7s-iBhh.js} +3 -3
  25. package/dist/lazy/{JsonEdit-H1bzdkYa.js → JsonEdit-DLzOazGA.js} +3 -3
  26. package/dist/lazy/{LogList-COGs_lbV.js → LogList-BfSA2YIW.js} +7 -7
  27. package/dist/lazy/{ObjGroup-Bn4_KGXB.js → ObjGroup-YJho79cG.js} +1 -1
  28. package/dist/lazy/{OfferDetails-Cl-uMJNA.js → OfferDetails-BVaa7boE.js} +8 -8
  29. package/dist/lazy/{Pagination-O4bgTguF.js → Pagination-Bni7hc5i.js} +2 -2
  30. package/dist/lazy/{Progress-Bn_B_wFC.js → Progress-DDOZz027.js} +15 -15
  31. package/dist/lazy/{Radio-BZnDoqOr.js → Radio-BkGE2l7X.js} +3 -3
  32. package/dist/lazy/{SearchSelect-OHMgptUr.js → SearchSelect-BDG-q3rh.js} +6 -6
  33. package/dist/lazy/{Select-B4nb4HrS.js → Select-DZVHbfet.js} +2 -2
  34. package/dist/lazy/{Table-CdihiD3I.js → Table-BYAny04Y.js} +2 -2
  35. package/dist/lazy/{Tabs-wokuGH0j.js → Tabs-DK2Z_4Mq.js} +2 -2
  36. package/dist/lazy/{TextArea-CkTQVVAo.js → TextArea-lLxe_7vc.js} +3 -3
  37. package/dist/lazy/{Wrapper-CKvQyMsb.js → Wrapper-ZyyGd7Sw.js} +4 -4
  38. package/dist/lazy/{index-CQB0z8tE.js → index-DdmJ7fxW.js} +718 -700
  39. package/dist/lazy/{useSelect-BTWne1vE.js → useSelect-CZU2AEMN.js} +1 -1
  40. package/dist/style.css +2 -2
  41. package/global.d.ts +10 -10
  42. package/package.json +1 -1
  43. package/dist/lazy/Custom-BI7aGQUl.js +0 -26
  44. package/dist/lazy/FloatCurd-CGyphC_8.js +0 -185
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
+ ```
@@ -1202,6 +1202,12 @@ onAiSearch: string;
1202
1202
  onClear: string;
1203
1203
  inputPlaceholder: string;
1204
1204
  hidden: boolean;
1205
+ prefixOptions: {
1206
+ label: string;
1207
+ value: string;
1208
+ }[];
1209
+ prefixChange: string;
1210
+ defaultPrefixValue: string;
1205
1211
  }>>, {
1206
1212
  type: "floatcurd";
1207
1213
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_TypePropsToRuntimeProps_4<{
@@ -1213,6 +1219,12 @@ onAiSearch: string;
1213
1219
  onClear: string;
1214
1220
  inputPlaceholder: string;
1215
1221
  hidden: boolean;
1222
+ prefixOptions: {
1223
+ label: string;
1224
+ value: string;
1225
+ }[];
1226
+ prefixChange: string;
1227
+ defaultPrefixValue: string;
1216
1228
  }>>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
1217
1229
 
1218
1230
  declare type DropdownType = {
@@ -1438,6 +1450,7 @@ declare type InfoCardSchema = {
1438
1450
  titleColor?: string;
1439
1451
  titleIcon?: string;
1440
1452
  titleClick?: string;
1453
+ copyPosition?: 'title' | 'subTitle';
1441
1454
  subTitlePrefix?: string;
1442
1455
  subTitle: string;
1443
1456
  subTitleClick?: string;
@@ -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-CQB0z8tE.js";
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-DdmJ7fxW.js";
3
3
  import "element-plus";
4
4
  import "vue";
5
5
  export {