asiaint-lowcode 3.1.110 → 3.1.112
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/dist/asiaint-lowcode.js +1 -1
- package/dist/asiaint-lowcode.umd.cjs +137 -137
- package/dist/index.d.ts +68 -7
- package/dist/lazy/{Card-DUYgXB9l.js → Card-BG49Wwxf.js} +1 -1
- package/dist/lazy/{Cascader-DbssXHum.js → Cascader-DdfE1hp3.js} +1 -1
- package/dist/lazy/{Checkbox-koTaZQEP.js → Checkbox-_vvLrcjZ.js} +2 -2
- package/dist/lazy/{Collapse-CJBuGpgD.js → Collapse-Da9D01cw.js} +1 -1
- package/dist/lazy/{Component-BDW6QtUT.js → Component-B49SI1Fa.js} +1 -1
- package/dist/lazy/{Component-BD2ItP81.js → Component-BmgOcG9_.js} +1 -1
- package/dist/lazy/{Component-BT2ZkkN_.js → Component-DdStE2LL.js} +1 -1
- package/dist/lazy/{Component-BNqRx8Ye.js → Component-DiRs3B36.js} +1 -1
- package/dist/lazy/{Component-DwQohnTo.js → Component-DvSIghyb.js} +1 -1
- package/dist/lazy/{CurdCard-DfPQCmFY.js → CurdCard-BrCKjI_U.js} +1 -1
- package/dist/lazy/{Custom-dGlXoQXA.js → Custom-Cuda1LQ4.js} +1 -1
- package/dist/lazy/{DatePicker-CWFybCh4.js → DatePicker-DlK3Ow-v.js} +1 -1
- package/dist/lazy/{DragList-BkdJcLJG.js → DragList-BS2f0h1l.js} +13 -13
- package/dist/lazy/{FilterSearch-BNf_nh2e.js → FilterSearch-CNSQ6LIs.js} +16 -16
- package/dist/lazy/{FloatCurd-DKHldJwY.js → FloatCurd-DXdeqsEY.js} +35 -32
- package/dist/lazy/{FormList-fZ1aJKZj.js → FormList-BXfol3EJ.js} +1 -1
- package/dist/lazy/{Grid-Daoa0AUi.js → Grid-BZv7CqvV.js} +1 -1
- package/dist/lazy/{InfiniteScroll-nqTZW-gg.js → InfiniteScroll-Cy636yjL.js} +1 -1
- package/dist/lazy/{Inline-Cne6GvqK.js → Inline-D-QKhvxw.js} +1 -1
- package/dist/lazy/{JsonEdit-BzG6SCTc.js → JsonEdit-iY0i2z8J.js} +1 -1
- package/dist/lazy/{LogList-CVWs_EJA.js → LogList-tmM9s5p5.js} +1 -1
- package/dist/lazy/{ObjGroup-g9HDYWr4.js → ObjGroup-BG_PYHJj.js} +1 -1
- package/dist/lazy/{OfferDetails-Cw_TefSC.js → OfferDetails-Bdq3tHiO.js} +1 -1
- package/dist/lazy/{Pagination-mv3AROxk.js → Pagination-CT7VVKhQ.js} +5 -5
- package/dist/lazy/{Progress-EZf8NEkG.js → Progress-BVyWSyBk.js} +1 -1
- package/dist/lazy/{Radio-DVvLjtyO.js → Radio-DSRaAkoA.js} +2 -2
- package/dist/lazy/{SearchSelect-CyO7MSkb.js → SearchSelect-Dkgmgcyg.js} +2 -2
- package/dist/lazy/{Select-QkrLBfy1.js → Select-BxPuBNKh.js} +2 -2
- package/dist/lazy/{Table-BQCYhG2s.js → Table-DjyNYuB2.js} +1 -1
- package/dist/lazy/Tabs-CS-PV1p_.js +144 -0
- package/dist/lazy/{TextArea-DOcwJLkL.js → TextArea-C0K4c6lM.js} +1 -1
- package/dist/lazy/{Wrapper-DoMkJtBQ.js → Wrapper-D3kssN21.js} +1 -1
- package/dist/lazy/{index-D928v8mB.js → index-eppeEuhm.js} +2861 -2854
- package/dist/lazy/{useSelect-or2945Ro.js → useSelect-D2jJvbvP.js} +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/dist/lazy/Tabs-CAnQG2al.js +0 -130
package/dist/index.d.ts
CHANGED
|
@@ -214,6 +214,12 @@ declare type __VLS_NonUndefinedable_4<T> = T extends undefined ? never : T;
|
|
|
214
214
|
|
|
215
215
|
declare type __VLS_NonUndefinedable_5<T> = T extends undefined ? never : T;
|
|
216
216
|
|
|
217
|
+
declare type __VLS_NonUndefinedable_6<T> = T extends undefined ? never : T;
|
|
218
|
+
|
|
219
|
+
declare type __VLS_Prettify<T> = {
|
|
220
|
+
[K in keyof T]: T[K];
|
|
221
|
+
} & {};
|
|
222
|
+
|
|
217
223
|
declare function __VLS_template(): {
|
|
218
224
|
default?(_: {}): any;
|
|
219
225
|
};
|
|
@@ -267,6 +273,21 @@ declare type __VLS_TypePropsToRuntimeProps_5<T> = {
|
|
|
267
273
|
};
|
|
268
274
|
};
|
|
269
275
|
|
|
276
|
+
declare type __VLS_TypePropsToRuntimeProps_6<T> = {
|
|
277
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
278
|
+
type: PropType<__VLS_NonUndefinedable_6<T[K]>>;
|
|
279
|
+
} : {
|
|
280
|
+
type: PropType<T[K]>;
|
|
281
|
+
required: true;
|
|
282
|
+
};
|
|
283
|
+
};
|
|
284
|
+
|
|
285
|
+
declare type __VLS_WithDefaults<P, D> = {
|
|
286
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
287
|
+
default: D[K];
|
|
288
|
+
}> : P[K];
|
|
289
|
+
};
|
|
290
|
+
|
|
270
291
|
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
271
292
|
new (): {
|
|
272
293
|
$slots: S;
|
|
@@ -399,11 +420,11 @@ value: string;
|
|
|
399
420
|
content: {
|
|
400
421
|
value: string;
|
|
401
422
|
label: string;
|
|
402
|
-
key: string;
|
|
403
423
|
}[];
|
|
404
424
|
originalItem: any;
|
|
405
425
|
}[];
|
|
406
426
|
setData: (val: ItemType[]) => void;
|
|
427
|
+
setHiddenPagination: (val: boolean) => void;
|
|
407
428
|
type: "checkboxCard";
|
|
408
429
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
409
430
|
modelValue: {
|
|
@@ -432,6 +453,37 @@ required: true;
|
|
|
432
453
|
};
|
|
433
454
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
434
455
|
|
|
456
|
+
declare const _default_11: DefineComponent<ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps_6<{
|
|
457
|
+
id?: string;
|
|
458
|
+
children: tabItem[];
|
|
459
|
+
defaultKey: string;
|
|
460
|
+
tabChange?: string;
|
|
461
|
+
onBeforeLeave?: string;
|
|
462
|
+
styleType?: "modal" | "btn" | "normal";
|
|
463
|
+
staticBtns: BtnType[];
|
|
464
|
+
dynamicBtns: BtnType[];
|
|
465
|
+
name: string;
|
|
466
|
+
}>, {
|
|
467
|
+
styleType: string;
|
|
468
|
+
}>>, {
|
|
469
|
+
changeActiveKey: (key: string) => void;
|
|
470
|
+
type: "formTabs";
|
|
471
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps_6<{
|
|
472
|
+
id?: string;
|
|
473
|
+
children: tabItem[];
|
|
474
|
+
defaultKey: string;
|
|
475
|
+
tabChange?: string;
|
|
476
|
+
onBeforeLeave?: string;
|
|
477
|
+
styleType?: "modal" | "btn" | "normal";
|
|
478
|
+
staticBtns: BtnType[];
|
|
479
|
+
dynamicBtns: BtnType[];
|
|
480
|
+
name: string;
|
|
481
|
+
}>, {
|
|
482
|
+
styleType: string;
|
|
483
|
+
}>>> & Readonly<{}>, {
|
|
484
|
+
styleType: "modal" | "btn" | "normal";
|
|
485
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
486
|
+
|
|
435
487
|
declare const _default_2: DefineComponent<ExtractPropTypes< {
|
|
436
488
|
schema: {
|
|
437
489
|
required: true;
|
|
@@ -1118,11 +1170,6 @@ declare type DropdownType = {
|
|
|
1118
1170
|
}[];
|
|
1119
1171
|
};
|
|
1120
1172
|
|
|
1121
|
-
/**
|
|
1122
|
-
* 根据key查找单个组件实例
|
|
1123
|
-
* @param key 组件的key
|
|
1124
|
-
* @returns 组件实例
|
|
1125
|
-
*/
|
|
1126
1173
|
declare type ExtraRefTypeMap = {
|
|
1127
1174
|
draglist: InstanceType<typeof _default_6> & ComponentPublicInstance;
|
|
1128
1175
|
pagination: InstanceType<typeof _default_7> & ComponentPublicInstance;
|
|
@@ -1130,12 +1177,18 @@ declare type ExtraRefTypeMap = {
|
|
|
1130
1177
|
floatcurd: InstanceType<typeof _default_9> & ComponentPublicInstance;
|
|
1131
1178
|
tree: InstanceType<typeof Tree> & ComponentPublicInstance;
|
|
1132
1179
|
checkboxCard: InstanceType<typeof _default_10> & ComponentPublicInstance;
|
|
1180
|
+
formTabs: InstanceType<typeof _default_11> & ComponentPublicInstance;
|
|
1133
1181
|
};
|
|
1134
1182
|
|
|
1135
1183
|
export declare const findItemByName: (items: FormItemType[], name: string) => FormItemType | null;
|
|
1136
1184
|
|
|
1137
1185
|
declare type FindRefType<T extends keyof FindRefTypeMap> = FindRefTypeMap[T];
|
|
1138
1186
|
|
|
1187
|
+
/**
|
|
1188
|
+
* 根据key查找单个组件实例
|
|
1189
|
+
* @param key 组件的key
|
|
1190
|
+
* @returns 组件实例
|
|
1191
|
+
*/
|
|
1139
1192
|
declare type FindRefTypeMap = RefTypeMap & ExtraRefTypeMap;
|
|
1140
1193
|
|
|
1141
1194
|
declare type FormChange = {
|
|
@@ -1346,7 +1399,6 @@ declare type ItemType = {
|
|
|
1346
1399
|
content: {
|
|
1347
1400
|
value: string;
|
|
1348
1401
|
label: string;
|
|
1349
|
-
key: string;
|
|
1350
1402
|
}[];
|
|
1351
1403
|
originalItem: any;
|
|
1352
1404
|
};
|
|
@@ -1589,6 +1641,15 @@ declare type setBtnStateFn = (params: {
|
|
|
1589
1641
|
btnKey: string;
|
|
1590
1642
|
}, stateType: 'hidden' | 'disabled', state: boolean) => void;
|
|
1591
1643
|
|
|
1644
|
+
declare type tabItem = {
|
|
1645
|
+
label: string;
|
|
1646
|
+
name: string;
|
|
1647
|
+
disabled?: boolean;
|
|
1648
|
+
children: FormItemType[];
|
|
1649
|
+
icon?: string;
|
|
1650
|
+
iconSize?: 'x-small' | 'small' | 'normal' | 'large' | 'ultra-large';
|
|
1651
|
+
};
|
|
1652
|
+
|
|
1592
1653
|
export declare interface TableColumn {
|
|
1593
1654
|
label: string;
|
|
1594
1655
|
key: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as _, watch as H, ref as B, inject as $, resolveComponent as b, openBlock as a, createBlock as f, mergeProps as N, withCtx as y, createElementBlock as s, normalizeClass as p, createVNode as r, unref as C, createCommentVNode as i, createElementVNode as h, toDisplayString as F, Fragment as w, renderList as z, withDirectives as V, vShow as D } from "vue";
|
|
2
|
-
import { u as j, a as L, I as u, b as T, B as R, f as q, _ as A } from "./index-
|
|
2
|
+
import { u as j, a as L, I as u, b as T, B as R, f as q, _ as A } from "./index-eppeEuhm.js";
|
|
3
3
|
import "element-plus";
|
|
4
4
|
const G = {
|
|
5
5
|
key: 3,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { defineComponent as f, mergeModels as g, useModel as h, inject as r, resolveComponent as C, openBlock as v, createBlock as y, mergeProps as M, unref as d } from "vue";
|
|
2
2
|
import "element-plus";
|
|
3
|
-
import { u as b } from "./useSelect-
|
|
3
|
+
import { u as b } from "./useSelect-D2jJvbvP.js";
|
|
4
4
|
const k = /* @__PURE__ */ f({
|
|
5
5
|
__name: "Cascader",
|
|
6
6
|
props: /* @__PURE__ */ g({
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { defineComponent as F, mergeModels as D, useModel as I, watch as O, resolveComponent as d, resolveDirective as P, unref as a, openBlock as l, createElementBlock as i, toDisplayString as S, withDirectives as $, createBlock as s, mergeProps as j, withCtx as h, Fragment as f, renderList as v, createCommentVNode as g } from "vue";
|
|
2
2
|
import "element-plus";
|
|
3
|
-
import { u as E, c as L } from "./index-
|
|
4
|
-
import { u as N } from "./useSelect-
|
|
3
|
+
import { u as E, c as L } from "./index-eppeEuhm.js";
|
|
4
|
+
import { u as N } from "./useSelect-D2jJvbvP.js";
|
|
5
5
|
const R = { key: 0 }, H = /* @__PURE__ */ F({
|
|
6
6
|
__name: "Checkbox",
|
|
7
7
|
props: /* @__PURE__ */ D({
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as u, ref as f, onMounted as _, watch as h, resolveComponent as c, openBlock as o, createBlock as i, mergeProps as C, withCtx as r, createElementBlock as E, Fragment as k, renderList as v, createVNode as m, unref as V } from "vue";
|
|
2
|
-
import { b as y } from "./index-
|
|
2
|
+
import { b as y } from "./index-eppeEuhm.js";
|
|
3
3
|
import "element-plus";
|
|
4
4
|
import { _ as B } from "./Title.vue_vue_type_script_setup_true_lang-Ceco_9-w.js";
|
|
5
5
|
const b = /* @__PURE__ */ u({
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as u, mergeModels as i, useModel as d, computed as c, resolveComponent as f, openBlock as t, createElementBlock as y, toDisplayString as v, createBlock as k, mergeProps as V } from "vue";
|
|
2
|
-
import { u as _ } from "./index-
|
|
2
|
+
import { u as _ } from "./index-eppeEuhm.js";
|
|
3
3
|
import "element-plus";
|
|
4
4
|
const g = { key: 0 }, M = /* @__PURE__ */ u({
|
|
5
5
|
__name: "Component",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as d, mergeModels as m, useModel as r, resolveComponent as u, openBlock as p, createBlock as i, mergeProps as c, unref as f } from "vue";
|
|
2
|
-
import { u as V } from "./index-
|
|
2
|
+
import { u as V } from "./index-eppeEuhm.js";
|
|
3
3
|
import "element-plus";
|
|
4
4
|
const B = /* @__PURE__ */ d({
|
|
5
5
|
__name: "Component",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { defineComponent as $, mergeModels as z, useModel as E, ref as I, resolveComponent as B, openBlock as o, createElementBlock as t, Fragment as d, createVNode as c, normalizeClass as L, createSlots as N, withCtx as g, createTextVNode as h, createElementVNode as s, createBlock as f, toDisplayString as u, createCommentVNode as m, unref as O, renderList as T } from "vue";
|
|
2
2
|
import { genFileId as R, ElMessage as j, ElMessageBox as P } from "element-plus";
|
|
3
|
-
import { c as q, I as p, a as A, _ as G } from "./index-
|
|
3
|
+
import { c as q, I as p, a as A, _ as G } from "./index-eppeEuhm.js";
|
|
4
4
|
const H = {
|
|
5
5
|
key: 0,
|
|
6
6
|
class: "smallDragStyle-text"
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as $, ref as v, computed as N, watch as L, onMounted as x, onBeforeUnmount as F, openBlock as T, createElementBlock as E, mergeModels as J, useModel as A, resolveComponent as G, unref as W, createElementVNode as P, createBlock as X, withCtx as D, createTextVNode as I, createCommentVNode as Y, createVNode as R } from "vue";
|
|
2
|
-
import { _ as H, u as K, d as Q } from "./index-
|
|
2
|
+
import { _ as H, u as K, d as Q } from "./index-eppeEuhm.js";
|
|
3
3
|
import "element-plus";
|
|
4
4
|
const Z = $({
|
|
5
5
|
props: {
|
|
@@ -2,7 +2,7 @@ var u = Object.defineProperty;
|
|
|
2
2
|
var m = (o, e, t) => e in o ? u(o, e, { enumerable: !0, configurable: !0, writable: !0, value: t }) : o[e] = t;
|
|
3
3
|
var a = (o, e, t) => m(o, typeof e != "symbol" ? e + "" : e, t);
|
|
4
4
|
import { defineComponent as g, mergeModels as v, useModel as I, ref as c, onMounted as w, resolveComponent as C, openBlock as y, createElementBlock as _, createVNode as V, createElementVNode as M } from "vue";
|
|
5
|
-
import { u as x, _ as S } from "./index-
|
|
5
|
+
import { u as x, _ as S } from "./index-eppeEuhm.js";
|
|
6
6
|
import "element-plus";
|
|
7
7
|
function b() {
|
|
8
8
|
return "a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z".split(",");
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as U, inject as $, ref as k, watch as A, resolveComponent as f, openBlock as o, createElementBlock as s, normalizeClass as m, normalizeStyle as O, createElementVNode as c, createBlock as p, createCommentVNode as u, toDisplayString as M, withCtx as v, Fragment as B, renderList as R, createTextVNode as q, createVNode as r, withKeys as G, unref as I, withDirectives as H, vShow as J } from "vue";
|
|
2
|
-
import { u as Q, I as h, b as V, B as W, f as X, _ as Y } from "./index-
|
|
2
|
+
import { u as Q, I as h, b as V, B as W, f as X, _ as Y } from "./index-eppeEuhm.js";
|
|
3
3
|
import "element-plus";
|
|
4
4
|
const Z = ["id"], x = { class: "left-part" }, ee = { class: "title" }, le = { class: "right-part" }, ae = { key: 0 }, oe = {
|
|
5
5
|
key: 1,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as n, mergeModels as s, useModel as p, openBlock as t, createElementBlock as r, createBlock as u, resolveDynamicComponent as d, mergeProps as c } from "vue";
|
|
2
|
-
import { _ as i } from "./index-
|
|
2
|
+
import { _ as i } from "./index-eppeEuhm.js";
|
|
3
3
|
const f = {
|
|
4
4
|
key: 0,
|
|
5
5
|
class: "empty"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { defineComponent as y, mergeModels as M, useModel as k, useAttrs as D, computed as l, inject as u, resolveComponent as I, openBlock as i, createElementBlock as E, toDisplayString as _, createBlock as S, mergeProps as V } from "vue";
|
|
2
2
|
import { dayjs as b } from "element-plus";
|
|
3
|
-
import { u as B } from "./index-
|
|
3
|
+
import { u as B } from "./index-eppeEuhm.js";
|
|
4
4
|
const F = { key: 0 }, j = /* @__PURE__ */ y({
|
|
5
5
|
__name: "DatePicker",
|
|
6
6
|
props: /* @__PURE__ */ M({
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { defineComponent as J, reactive as F, ref as T, onBeforeMount as le, onMounted as ie, nextTick as h, onBeforeUnmount as re, watch as c, provide as
|
|
2
|
-
import { w as ve, m as fe, n as he, o as k, T as we, v as xe, p as C, A as be, q as G, x as Be, L as ke, y as Ce, r as De, Y as Le, s as Me, t as P, V as Se, c as ze,
|
|
1
|
+
import { defineComponent as J, reactive as F, ref as T, onBeforeMount as le, onMounted as ie, nextTick as h, onBeforeUnmount as re, watch as c, provide as q, toRefs as A, openBlock as R, createElementBlock as O, normalizeStyle as ne, renderSlot as X, Fragment as se, renderList as ue, createBlock as K, mergeProps as de, withCtx as Q, withDirectives as ce, createVNode as Z, vShow as me, mergeModels as ge, useModel as pe, onUnmounted as ye, unref as Y, readonly as j } from "vue";
|
|
2
|
+
import { w as ve, m as fe, n as he, o as k, T as we, v as xe, p as C, A as be, q as G, x as Be, L as ke, y as Ce, r as De, Y as Le, s as Me, t as P, V as Se, c as ze, i as Re, b as Ie, _ as Ne } from "./index-eppeEuhm.js";
|
|
3
3
|
import "element-plus";
|
|
4
4
|
const $e = /* @__PURE__ */ J({
|
|
5
5
|
__name: "grid-layout",
|
|
@@ -124,15 +124,15 @@ const $e = /* @__PURE__ */ J({
|
|
|
124
124
|
(e) => {
|
|
125
125
|
i.emit("setMaxRows", e);
|
|
126
126
|
}
|
|
127
|
-
), c([() => a.margin, () => a.margin[1]], x),
|
|
127
|
+
), c([() => a.margin, () => a.margin[1]], x), q(
|
|
128
128
|
we,
|
|
129
129
|
F({
|
|
130
|
-
...
|
|
131
|
-
...
|
|
130
|
+
...A(a),
|
|
131
|
+
...A(t),
|
|
132
132
|
increaseItem: y,
|
|
133
133
|
decreaseItem: $
|
|
134
134
|
})
|
|
135
|
-
),
|
|
135
|
+
), q(xe, i), I({ state: t, getItem: ee, resizeEvent: V, dragEvent: U, layoutUpdate: H });
|
|
136
136
|
function y(e) {
|
|
137
137
|
L.set(e.i, e);
|
|
138
138
|
}
|
|
@@ -231,18 +231,18 @@ const $e = /* @__PURE__ */ J({
|
|
|
231
231
|
const r = new Set(n.map((l) => l.i)), v = new Set(e.map((l) => l.i)), g = e.filter((l) => !r.has(l.i)), p = n.filter((l) => !v.has(l.i));
|
|
232
232
|
return g.concat(p);
|
|
233
233
|
}
|
|
234
|
-
return (e, n) => (R(),
|
|
234
|
+
return (e, n) => (R(), O("div", {
|
|
235
235
|
ref_key: "wrapper",
|
|
236
236
|
ref: m,
|
|
237
237
|
class: "vgl-layout",
|
|
238
238
|
style: ne(t.mergedStyle)
|
|
239
239
|
}, [
|
|
240
|
-
e.$slots.default ?
|
|
240
|
+
e.$slots.default ? X(e.$slots, "default", { key: 0 }) : (R(!0), O(se, { key: 1 }, ue(o.value, (r) => (R(), K(P, de({
|
|
241
241
|
key: r.i,
|
|
242
242
|
ref_for: !0
|
|
243
243
|
}, r), {
|
|
244
244
|
default: Q(() => [
|
|
245
|
-
|
|
245
|
+
X(e.$slots, "item", { item: r })
|
|
246
246
|
]),
|
|
247
247
|
_: 2
|
|
248
248
|
}, 1040))), 128)),
|
|
@@ -275,7 +275,7 @@ const $e = /* @__PURE__ */ J({
|
|
|
275
275
|
emits: ["update:gridlayout"],
|
|
276
276
|
setup(D, { expose: I }) {
|
|
277
277
|
const w = D, a = pe(D, "gridlayout"), m = {
|
|
278
|
-
getLayout: () =>
|
|
278
|
+
getLayout: () => j(a),
|
|
279
279
|
setItemX: (s, u) => {
|
|
280
280
|
a.value[s].x = u;
|
|
281
281
|
},
|
|
@@ -290,7 +290,7 @@ const $e = /* @__PURE__ */ J({
|
|
|
290
290
|
}, { ruleModule: M, pageMethodMap: N } = ze(), i = () => {
|
|
291
291
|
if (w.onMoved && M)
|
|
292
292
|
try {
|
|
293
|
-
M[w.onMoved](N,
|
|
293
|
+
M[w.onMoved](N, j(a.value));
|
|
294
294
|
} catch (s) {
|
|
295
295
|
console.error(s + `
|
|
296
296
|
onMoved: ${w.onMoved}`);
|
|
@@ -302,7 +302,7 @@ onMoved: ${w.onMoved}`);
|
|
|
302
302
|
s();
|
|
303
303
|
});
|
|
304
304
|
}
|
|
305
|
-
return (s, u) => (R(), K(
|
|
305
|
+
return (s, u) => (R(), K(Y($e), {
|
|
306
306
|
layout: a.value,
|
|
307
307
|
"onUpdate:layout": u[1] || (u[1] = (y) => a.value = y),
|
|
308
308
|
"col-num": s.colNum || 12,
|
|
@@ -316,7 +316,7 @@ onMoved: ${w.onMoved}`);
|
|
|
316
316
|
"use-css-transforms": ""
|
|
317
317
|
}, {
|
|
318
318
|
default: Q(() => [
|
|
319
|
-
Z(
|
|
319
|
+
Z(Y(Ie), {
|
|
320
320
|
list: s.children,
|
|
321
321
|
gridData: a.value,
|
|
322
322
|
"onUpdate:gridData": u[0] || (u[0] = (y) => a.value = y),
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { defineComponent as U, ref as o, readonly as
|
|
2
|
-
import { c as Z,
|
|
1
|
+
import { defineComponent as U, ref as o, readonly as D, onUnmounted as E, watch as L, onMounted as N, resolveComponent as p, openBlock as m, createElementBlock as T, createElementVNode as i, createVNode as s, withKeys as j, withModifiers as $, withCtx as h, toDisplayString as q, normalizeStyle as A, Fragment as G, renderList as H, createBlock as J, normalizeClass as O, withDirectives as P, unref as Q, vShow as X, nextTick as Y } from "vue";
|
|
2
|
+
import { c as Z, i as ee, I as x, b as le, _ as ae } from "./index-eppeEuhm.js";
|
|
3
3
|
import "element-plus";
|
|
4
4
|
const te = { class: "filter-search-header" }, ne = /* @__PURE__ */ U({
|
|
5
5
|
__name: "FilterSearch",
|
|
@@ -14,7 +14,7 @@ const te = { class: "filter-search-header" }, ne = /* @__PURE__ */ U({
|
|
|
14
14
|
onSearchTypeChange: {}
|
|
15
15
|
},
|
|
16
16
|
setup(w, { expose: V }) {
|
|
17
|
-
const a = w,
|
|
17
|
+
const a = w, u = o(a.defaultCollapse), n = o(a.searchTypes ? a.searchTypes[0].value : null), b = () => n.value, k = (e) => {
|
|
18
18
|
if (a.searchTypes) {
|
|
19
19
|
const l = a.searchTypes.find((c) => c.value === e);
|
|
20
20
|
l && (n.value = l.value);
|
|
@@ -41,8 +41,8 @@ const te = { class: "filter-search-header" }, ne = /* @__PURE__ */ U({
|
|
|
41
41
|
console.error(e);
|
|
42
42
|
}
|
|
43
43
|
}, R = () => {
|
|
44
|
-
|
|
45
|
-
}, { ruleModule: d, pageMethodMap: f } = Z(), _ =
|
|
44
|
+
u.value = !u.value;
|
|
45
|
+
}, { ruleModule: d, pageMethodMap: f } = Z(), _ = D({
|
|
46
46
|
setSearchValue: z,
|
|
47
47
|
getSearchValue: I,
|
|
48
48
|
getSearchType: b,
|
|
@@ -51,7 +51,7 @@ const te = { class: "filter-search-header" }, ne = /* @__PURE__ */ U({
|
|
|
51
51
|
});
|
|
52
52
|
if (a.name) {
|
|
53
53
|
const e = ee(a.name, _);
|
|
54
|
-
|
|
54
|
+
E(() => {
|
|
55
55
|
e();
|
|
56
56
|
});
|
|
57
57
|
}
|
|
@@ -62,29 +62,29 @@ const te = { class: "filter-search-header" }, ne = /* @__PURE__ */ U({
|
|
|
62
62
|
S.value = v.value.offsetWidth + 28;
|
|
63
63
|
});
|
|
64
64
|
};
|
|
65
|
-
return
|
|
65
|
+
return L(
|
|
66
66
|
() => n.value,
|
|
67
67
|
() => {
|
|
68
68
|
g();
|
|
69
69
|
}
|
|
70
|
-
),
|
|
70
|
+
), N(() => {
|
|
71
71
|
g();
|
|
72
72
|
}), V(_), (e, l) => {
|
|
73
73
|
const c = p("el-option"), W = p("el-select"), B = p("el-input"), K = p("el-collapse-transition");
|
|
74
74
|
return m(), T("div", null, [
|
|
75
|
-
|
|
75
|
+
i("div", te, [
|
|
76
76
|
s(B, {
|
|
77
77
|
modelValue: r.value,
|
|
78
78
|
"onUpdate:modelValue": l[1] || (l[1] = (t) => r.value = t),
|
|
79
79
|
placeholder: e.placeholder || "Search",
|
|
80
80
|
size: "large",
|
|
81
|
-
onKeyup:
|
|
81
|
+
onKeyup: j($(y, ["stop"]), ["enter"]),
|
|
82
82
|
class: "filter-search-input",
|
|
83
83
|
clearable: !0,
|
|
84
84
|
onInput: M
|
|
85
85
|
}, {
|
|
86
86
|
prefix: h(() => [
|
|
87
|
-
|
|
87
|
+
i("span", {
|
|
88
88
|
ref_key: "textWidthRef",
|
|
89
89
|
ref: v,
|
|
90
90
|
class: "text-width-calc"
|
|
@@ -119,23 +119,23 @@ const te = { class: "filter-search-header" }, ne = /* @__PURE__ */ U({
|
|
|
119
119
|
]),
|
|
120
120
|
_: 1
|
|
121
121
|
}, 8, ["modelValue", "placeholder", "onKeyup"]),
|
|
122
|
-
|
|
123
|
-
class: O(["filter-wrapper", { active: !
|
|
122
|
+
i("div", {
|
|
123
|
+
class: O(["filter-wrapper", { active: !u.value }]),
|
|
124
124
|
onClick: R
|
|
125
125
|
}, [
|
|
126
126
|
s(x, {
|
|
127
127
|
name: "icon-shaixuan",
|
|
128
128
|
size: "small"
|
|
129
129
|
}),
|
|
130
|
-
l[2] || (l[2] =
|
|
130
|
+
l[2] || (l[2] = i("span", { class: "filter-text" }, "Filter", -1))
|
|
131
131
|
], 2)
|
|
132
132
|
]),
|
|
133
133
|
s(K, null, {
|
|
134
134
|
default: h(() => [
|
|
135
|
-
P(
|
|
135
|
+
P(i("div", null, [
|
|
136
136
|
s(Q(le), { list: e.children }, null, 8, ["list"])
|
|
137
137
|
], 512), [
|
|
138
|
-
[X, !
|
|
138
|
+
[X, !u.value]
|
|
139
139
|
])
|
|
140
140
|
]),
|
|
141
141
|
_: 1
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { defineComponent as K, ref as g, computed as R, onUnmounted as U, resolveComponent as B, withDirectives as D, openBlock as c, createElementBlock as v, createElementVNode as
|
|
2
|
-
import { c as X, u as Z, f as
|
|
1
|
+
import { defineComponent as K, ref as g, computed as R, onUnmounted as U, resolveComponent as B, withDirectives as D, openBlock as c, createElementBlock as v, createElementVNode as t, createVNode as a, withKeys as J, withCtx as d, createTextVNode as L, toDisplayString as Y, unref as O, vShow as $, Fragment as Q, renderList as W, createBlock as q, createCommentVNode as I } from "vue";
|
|
2
|
+
import { c as X, u as Z, f as P, i as ee, I as m, b as oe, _ as ne } from "./index-eppeEuhm.js";
|
|
3
3
|
import { dayjs as le } from "element-plus";
|
|
4
|
-
const
|
|
4
|
+
const te = { class: "float-curd" }, ae = { class: "curd-body" }, se = { class: "gradient-input-wrapper" }, re = { class: "float-form" }, ie = { class: "float-form-header" }, ce = { class: "float-form-header-title" }, ue = { class: "float-form-header-btns" }, de = { class: "float-form-body" }, me = { class: "curd-footer" }, fe = ["innerHTML"], pe = ["title"], ve = /* @__PURE__ */ K({
|
|
5
5
|
__name: "FloatCurd",
|
|
6
6
|
props: {
|
|
7
7
|
name: {},
|
|
@@ -13,15 +13,15 @@ const ae = { class: "float-curd" }, te = { class: "curd-body" }, se = { class: "
|
|
|
13
13
|
inputPlaceholder: {},
|
|
14
14
|
hidden: { type: Boolean }
|
|
15
15
|
},
|
|
16
|
-
setup(
|
|
17
|
-
const r =
|
|
16
|
+
setup(j, { expose: z }) {
|
|
17
|
+
const r = j, u = g(!1), { ruleModule: h, pageMethodMap: _ } = X(), y = Z(), S = R(() => {
|
|
18
18
|
var n, V, M, N, w, T;
|
|
19
|
-
const o = y.schema.items, e = y.formValues, s =
|
|
19
|
+
const o = y.schema.items, e = y.formValues, s = P(o, r.name);
|
|
20
20
|
if (!s || !s.children)
|
|
21
21
|
return [];
|
|
22
22
|
const f = [];
|
|
23
23
|
for (const A in e) {
|
|
24
|
-
const l =
|
|
24
|
+
const l = P(s.children, A);
|
|
25
25
|
if (l && l.label && !l.hidden) {
|
|
26
26
|
const i = e[A];
|
|
27
27
|
if (i != null && i !== "") {
|
|
@@ -75,10 +75,10 @@ const ae = { class: "float-curd" }, te = { class: "curd-body" }, se = { class: "
|
|
|
75
75
|
}
|
|
76
76
|
return (o, e) => {
|
|
77
77
|
const s = B("el-button"), f = B("el-input");
|
|
78
|
-
return D((c(), v("div",
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
78
|
+
return D((c(), v("div", te, [
|
|
79
|
+
t("div", ae, [
|
|
80
|
+
t("div", se, [
|
|
81
|
+
a(f, {
|
|
82
82
|
class: "float-curd-ai-input",
|
|
83
83
|
placeholder: o.inputPlaceholder,
|
|
84
84
|
modelValue: C.value,
|
|
@@ -88,11 +88,11 @@ const ae = { class: "float-curd" }, te = { class: "curd-body" }, se = { class: "
|
|
|
88
88
|
onKeyup: J(k, ["enter"])
|
|
89
89
|
}, {
|
|
90
90
|
prefix: d(() => [
|
|
91
|
-
|
|
92
|
-
e[3] || (e[3] =
|
|
91
|
+
a(m, { name: "icon-a-mobang1" }),
|
|
92
|
+
e[3] || (e[3] = t("span", { class: "prefix-text" }, "Ask AI", -1))
|
|
93
93
|
]),
|
|
94
94
|
suffix: d(() => [
|
|
95
|
-
|
|
95
|
+
a(s, {
|
|
96
96
|
type: "primary",
|
|
97
97
|
size: "small",
|
|
98
98
|
onClick: k,
|
|
@@ -107,22 +107,22 @@ const ae = { class: "float-curd" }, te = { class: "curd-body" }, se = { class: "
|
|
|
107
107
|
_: 1
|
|
108
108
|
}, 8, ["placeholder", "modelValue"])
|
|
109
109
|
]),
|
|
110
|
-
|
|
110
|
+
a(s, {
|
|
111
111
|
plain: !0,
|
|
112
112
|
onClick: e[1] || (e[1] = (n) => u.value = !u.value),
|
|
113
113
|
class: "more-btn"
|
|
114
114
|
}, {
|
|
115
115
|
default: d(() => [
|
|
116
|
-
|
|
117
|
-
e[5] || (e[5] =
|
|
116
|
+
a(m, { name: "icon-tiaojianshaixuan" }),
|
|
117
|
+
e[5] || (e[5] = t("span", null, "More", -1))
|
|
118
118
|
]),
|
|
119
119
|
_: 1
|
|
120
120
|
}),
|
|
121
|
-
D(
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
121
|
+
D(t("div", re, [
|
|
122
|
+
t("div", ie, [
|
|
123
|
+
t("div", ce, Y(o.formTitle), 1),
|
|
124
|
+
t("div", ue, [
|
|
125
|
+
a(s, {
|
|
126
126
|
type: "primary",
|
|
127
127
|
size: "small",
|
|
128
128
|
onClick: x
|
|
@@ -132,33 +132,36 @@ const ae = { class: "float-curd" }, te = { class: "curd-body" }, se = { class: "
|
|
|
132
132
|
])),
|
|
133
133
|
_: 1
|
|
134
134
|
}),
|
|
135
|
-
|
|
135
|
+
a(m, {
|
|
136
136
|
name: "icon-a-rongqi1",
|
|
137
137
|
onClick: e[2] || (e[2] = (n) => u.value = !1)
|
|
138
138
|
})
|
|
139
139
|
])
|
|
140
140
|
]),
|
|
141
|
-
|
|
142
|
-
|
|
141
|
+
t("div", de, [
|
|
142
|
+
a(O(oe), { list: o.children }, null, 8, ["list"])
|
|
143
143
|
])
|
|
144
144
|
], 512), [
|
|
145
145
|
[$, u.value]
|
|
146
146
|
])
|
|
147
147
|
]),
|
|
148
|
-
|
|
148
|
+
t("div", me, [
|
|
149
149
|
(c(!0), v(Q, null, W(S.value, (n) => (c(), v("div", {
|
|
150
150
|
class: "tag",
|
|
151
151
|
key: n.name
|
|
152
152
|
}, [
|
|
153
|
-
n.iconName ? (c(),
|
|
153
|
+
n.iconName ? (c(), q(m, {
|
|
154
154
|
key: 0,
|
|
155
155
|
name: n.iconName
|
|
156
156
|
}, null, 8, ["name"])) : I("", !0),
|
|
157
|
-
|
|
157
|
+
t("span", {
|
|
158
158
|
innerHTML: n.label + ":"
|
|
159
159
|
}, null, 8, fe),
|
|
160
|
-
|
|
161
|
-
|
|
160
|
+
t("span", {
|
|
161
|
+
class: "tag-value",
|
|
162
|
+
title: n.value
|
|
163
|
+
}, Y(n.value), 9, pe),
|
|
164
|
+
n.closeable ? (c(), q(m, {
|
|
162
165
|
key: 1,
|
|
163
166
|
name: "icon-a-rongqi1",
|
|
164
167
|
onClick: (V) => E(n),
|
|
@@ -176,7 +179,7 @@ const ae = { class: "float-curd" }, te = { class: "curd-body" }, se = { class: "
|
|
|
176
179
|
]);
|
|
177
180
|
};
|
|
178
181
|
}
|
|
179
|
-
}),
|
|
182
|
+
}), Ce = /* @__PURE__ */ ne(ve, [["__scopeId", "data-v-436e0489"]]);
|
|
180
183
|
export {
|
|
181
|
-
|
|
184
|
+
Ce as default
|
|
182
185
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as S, mergeModels as j, useModel as G, ref as T, computed as F, watch as H, onMounted as J, provide as K, resolveComponent as b, openBlock as l, createElementBlock as h, unref as _, createBlock as s, Fragment as g, renderList as $, withCtx as r, createElementVNode as C, createVNode as v, mergeProps as M, createCommentVNode as y, toDisplayString as D, createTextVNode as O, h as Q } from "vue";
|
|
2
|
-
import { u as U, l as w, e as W, F as R, a as L, h as X } from "./index-
|
|
2
|
+
import { u as U, l as w, e as W, F as R, a as L, h as X } from "./index-eppeEuhm.js";
|
|
3
3
|
import "element-plus";
|
|
4
4
|
const Y = { class: "vfc-formList" }, Z = { key: 1 }, x = { class: "list-item-content" }, ee = { class: "card-header" }, le = { style: { "margin-top": "5px" } }, oe = /* @__PURE__ */ S({
|
|
5
5
|
__name: "FormList",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as e, computed as o, openBlock as a, createElementBlock as d, normalizeStyle as r, createVNode as m, unref as l } from "vue";
|
|
2
|
-
import { b as g } from "./index-
|
|
2
|
+
import { b as g } from "./index-eppeEuhm.js";
|
|
3
3
|
import "element-plus";
|
|
4
4
|
const x = /* @__PURE__ */ e({
|
|
5
5
|
__name: "Grid",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as s, resolveDirective as c, withDirectives as a, openBlock as d, createElementBlock as f, normalizeStyle as p, createVNode as _, unref as m } from "vue";
|
|
2
|
-
import { c as u, b as y, _ as h } from "./index-
|
|
2
|
+
import { c as u, b as y, _ as h } from "./index-eppeEuhm.js";
|
|
3
3
|
import "element-plus";
|
|
4
4
|
const b = ["infinite-scroll-disabled"], v = /* @__PURE__ */ s({
|
|
5
5
|
__name: "InfiniteScroll",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as l, computed as o, openBlock as r, createElementBlock as i, normalizeStyle as p, createVNode as s, unref as c } from "vue";
|
|
2
|
-
import { b as m, _ as u } from "./index-
|
|
2
|
+
import { b as m, _ as u } from "./index-eppeEuhm.js";
|
|
3
3
|
import "element-plus";
|
|
4
4
|
const f = /* @__PURE__ */ l({
|
|
5
5
|
__name: "Inline",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as At, openBlock as mt, createElementBlock as wt, mergeProps as St, createElementVNode as pt, renderSlot as It, normalizeClass as bt, mergeModels as Tt, useModel as Et, createBlock as Rt, unref as $t, withCtx as _t, createVNode as Lt } from "vue";
|
|
2
|
-
import { _ as xt, g as Nt } from "./index-
|
|
2
|
+
import { _ as xt, g as Nt } from "./index-eppeEuhm.js";
|
|
3
3
|
import "element-plus";
|
|
4
4
|
const Mt = /* @__PURE__ */ At({
|
|
5
5
|
__name: "Disabled",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as p, openBlock as e, createElementBlock as o, Fragment as a, renderList as d, createElementVNode as s, normalizeStyle as i, toDisplayString as l, normalizeClass as u, createTextVNode as g, createCommentVNode as v } from "vue";
|
|
2
|
-
import { _ as y } from "./index-
|
|
2
|
+
import { _ as y } from "./index-eppeEuhm.js";
|
|
3
3
|
const f = { class: "log-list" }, h = { class: "title-part" }, m = { class: "title" }, b = { class: "sub-title" }, k = { class: "content" }, C = { key: 0 }, L = /* @__PURE__ */ p({
|
|
4
4
|
__name: "LogList",
|
|
5
5
|
props: {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as p, inject as i, provide as d, ref as f, openBlock as e, createElementBlock as n, unref as c, createBlock as m, Fragment as _, renderList as b, mergeProps as j } from "vue";
|
|
2
|
-
import { u as $, e as h, F as k } from "./index-
|
|
2
|
+
import { u as $, e as h, F as k } from "./index-eppeEuhm.js";
|
|
3
3
|
import "element-plus";
|
|
4
4
|
const v = { class: "vfc-ObjGroup" }, B = {
|
|
5
5
|
key: 1,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as P, resolveComponent as N, openBlock as l, createBlock as L, withCtx as I, createVNode as k, createElementVNode as i, createElementBlock as r, Fragment as u, renderList as m, toDisplayString as v, createCommentVNode as O, ref as g, inject as S, watchEffect as $, onMounted as x, onUnmounted as z, normalizeStyle as U, unref as A } from "vue";
|
|
2
|
-
import { k as F, $ as K, a as V, _ as j } from "./index-
|
|
2
|
+
import { k as F, $ as K, a as V, _ as j } from "./index-eppeEuhm.js";
|
|
3
3
|
const W = { class: "content" }, q = { class: "product-list" }, G = { class: "attribute-list" }, H = {
|
|
4
4
|
key: 0,
|
|
5
5
|
class: "attribute-list-item"
|