@minilo/ui 0.0.1
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 +44 -0
- package/minilo/dist/index.css +1 -0
- package/minilo/dist/index.full.js +7054 -0
- package/minilo/dist/index.full.min.js +2 -0
- package/minilo/dist/index.full.min.js.map +1 -0
- package/minilo/dist/index.full.min.mjs +2 -0
- package/minilo/dist/index.full.min.mjs.map +1 -0
- package/minilo/dist/index.full.mjs +7041 -0
- package/minilo/es/components/button/index.d.ts +47 -0
- package/minilo/es/components/button/index.mjs +6 -0
- package/minilo/es/components/button/index.vue.d.ts +29 -0
- package/minilo/es/components/button/index.vue.mjs +5 -0
- package/minilo/es/components/button/index.vue2.mjs +67 -0
- package/minilo/es/components/button/type.d.ts +10 -0
- package/minilo/es/components/button/type.mjs +1 -0
- package/minilo/es/components/chart/index.d.ts +49 -0
- package/minilo/es/components/chart/index.mjs +6 -0
- package/minilo/es/components/chart/index.vue.d.ts +33 -0
- package/minilo/es/components/chart/index.vue.mjs +5 -0
- package/minilo/es/components/chart/index.vue2.mjs +124 -0
- package/minilo/es/components/chart/type.d.ts +7 -0
- package/minilo/es/components/chart/type.mjs +1 -0
- package/minilo/es/components/detail/index.d.ts +37 -0
- package/minilo/es/components/detail/index.mjs +6 -0
- package/minilo/es/components/detail/index.vue.d.ts +23 -0
- package/minilo/es/components/detail/index.vue.mjs +5 -0
- package/minilo/es/components/detail/index.vue2.mjs +194 -0
- package/minilo/es/components/detail/renderLabel.vue.d.ts +8 -0
- package/minilo/es/components/detail/renderLabel.vue.mjs +5 -0
- package/minilo/es/components/detail/renderLabel.vue2.mjs +23 -0
- package/minilo/es/components/detail/renderTooltip.vue.d.ts +8 -0
- package/minilo/es/components/detail/renderTooltip.vue.mjs +5 -0
- package/minilo/es/components/detail/renderTooltip.vue2.mjs +23 -0
- package/minilo/es/components/detail/type.d.ts +27 -0
- package/minilo/es/components/detail/type.mjs +1 -0
- package/minilo/es/components/index.d.ts +7 -0
- package/minilo/es/components/index.mjs +7 -0
- package/minilo/es/components/number-range-input/index.d.ts +41 -0
- package/minilo/es/components/number-range-input/index.mjs +6 -0
- package/minilo/es/components/number-range-input/index.vue.d.ts +33 -0
- package/minilo/es/components/number-range-input/index.vue.mjs +5 -0
- package/minilo/es/components/number-range-input/index.vue2.mjs +150 -0
- package/minilo/es/components/number-range-input/props.d.ts +10 -0
- package/minilo/es/components/number-range-input/props.mjs +1 -0
- package/minilo/es/components/search/index.d.ts +586 -0
- package/minilo/es/components/search/index.mjs +6 -0
- package/minilo/es/components/search/index.vue.d.ts +750 -0
- package/minilo/es/components/search/index.vue.mjs +5 -0
- package/minilo/es/components/search/index.vue2.mjs +298 -0
- package/minilo/es/components/search/props.d.ts +107 -0
- package/minilo/es/components/search/props.mjs +55 -0
- package/minilo/es/components/search-table/index.d.ts +274 -0
- package/minilo/es/components/search-table/index.mjs +6 -0
- package/minilo/es/components/search-table/index.vue.d.ts +173 -0
- package/minilo/es/components/search-table/index.vue.mjs +5 -0
- package/minilo/es/components/search-table/index.vue2.mjs +195 -0
- package/minilo/es/components/search-table/props.d.ts +69 -0
- package/minilo/es/components/search-table/props.mjs +69 -0
- package/minilo/es/components/search-table/render.d.ts +11 -0
- package/minilo/es/components/search-table/render.mjs +19 -0
- package/minilo/es/components/virtual-list/index.d.ts +59 -0
- package/minilo/es/components/virtual-list/index.mjs +6 -0
- package/minilo/es/components/virtual-list/index.vue.d.ts +39 -0
- package/minilo/es/components/virtual-list/index.vue.mjs +5 -0
- package/minilo/es/components/virtual-list/index.vue2.mjs +421 -0
- package/minilo/es/components/virtual-list/type.d.ts +20 -0
- package/minilo/es/components/virtual-list/type.mjs +1 -0
- package/minilo/es/index.d.ts +1087 -0
- package/minilo/es/node_modules/.pnpm/@element-plus_icons-vue@2.3.1_vue@3.5.17_typescript@5.8.3_/node_modules/@element-plus/icons-vue/dist/index.mjs +25 -0
- package/minilo/es/node_modules/.pnpm/@vueuse_core@13.6.0_vue@3.5.17_typescript@5.9.3_/node_modules/@vueuse/core/index.mjs +73 -0
- package/minilo/es/node_modules/.pnpm/@vueuse_shared@13.6.0_vue@3.5.17_typescript@5.9.3_/node_modules/@vueuse/shared/index.mjs +76 -0
- package/minilo/es/packages/utils/dist/func/common.mjs +14 -0
- package/minilo/es/packages/utils/dist/request/index.mjs +110 -0
- package/minilo/es/resolver/index.d.ts +8 -0
- package/minilo/es/resolver/index.mjs +26 -0
- package/minilo/es/utils/index.d.ts +28 -0
- package/minilo/es/utils/index.mjs +30 -0
- package/minilo/lib/components/button/index.d.ts +47 -0
- package/minilo/lib/components/button/index.js +11 -0
- package/minilo/lib/components/button/index.vue.d.ts +29 -0
- package/minilo/lib/components/button/index.vue.js +9 -0
- package/minilo/lib/components/button/index.vue2.js +71 -0
- package/minilo/lib/components/button/type.d.ts +10 -0
- package/minilo/lib/components/button/type.js +2 -0
- package/minilo/lib/components/chart/index.d.ts +49 -0
- package/minilo/lib/components/chart/index.js +11 -0
- package/minilo/lib/components/chart/index.vue.d.ts +33 -0
- package/minilo/lib/components/chart/index.vue.js +9 -0
- package/minilo/lib/components/chart/index.vue2.js +128 -0
- package/minilo/lib/components/chart/type.d.ts +7 -0
- package/minilo/lib/components/chart/type.js +2 -0
- package/minilo/lib/components/detail/index.d.ts +37 -0
- package/minilo/lib/components/detail/index.js +11 -0
- package/minilo/lib/components/detail/index.vue.d.ts +23 -0
- package/minilo/lib/components/detail/index.vue.js +9 -0
- package/minilo/lib/components/detail/index.vue2.js +198 -0
- package/minilo/lib/components/detail/renderLabel.vue.d.ts +8 -0
- package/minilo/lib/components/detail/renderLabel.vue.js +9 -0
- package/minilo/lib/components/detail/renderLabel.vue2.js +27 -0
- package/minilo/lib/components/detail/renderTooltip.vue.d.ts +8 -0
- package/minilo/lib/components/detail/renderTooltip.vue.js +9 -0
- package/minilo/lib/components/detail/renderTooltip.vue2.js +27 -0
- package/minilo/lib/components/detail/type.d.ts +27 -0
- package/minilo/lib/components/detail/type.js +2 -0
- package/minilo/lib/components/index.d.ts +7 -0
- package/minilo/lib/components/index.js +19 -0
- package/minilo/lib/components/number-range-input/index.d.ts +41 -0
- package/minilo/lib/components/number-range-input/index.js +11 -0
- package/minilo/lib/components/number-range-input/index.vue.d.ts +33 -0
- package/minilo/lib/components/number-range-input/index.vue.js +9 -0
- package/minilo/lib/components/number-range-input/index.vue2.js +154 -0
- package/minilo/lib/components/number-range-input/props.d.ts +10 -0
- package/minilo/lib/components/number-range-input/props.js +2 -0
- package/minilo/lib/components/search/index.d.ts +586 -0
- package/minilo/lib/components/search/index.js +11 -0
- package/minilo/lib/components/search/index.vue.d.ts +750 -0
- package/minilo/lib/components/search/index.vue.js +9 -0
- package/minilo/lib/components/search/index.vue2.js +302 -0
- package/minilo/lib/components/search/props.d.ts +107 -0
- package/minilo/lib/components/search/props.js +58 -0
- package/minilo/lib/components/search-table/index.d.ts +274 -0
- package/minilo/lib/components/search-table/index.js +11 -0
- package/minilo/lib/components/search-table/index.vue.d.ts +173 -0
- package/minilo/lib/components/search-table/index.vue.js +9 -0
- package/minilo/lib/components/search-table/index.vue2.js +199 -0
- package/minilo/lib/components/search-table/props.d.ts +69 -0
- package/minilo/lib/components/search-table/props.js +72 -0
- package/minilo/lib/components/search-table/render.d.ts +11 -0
- package/minilo/lib/components/search-table/render.js +23 -0
- package/minilo/lib/components/virtual-list/index.d.ts +59 -0
- package/minilo/lib/components/virtual-list/index.js +11 -0
- package/minilo/lib/components/virtual-list/index.vue.d.ts +39 -0
- package/minilo/lib/components/virtual-list/index.vue.js +9 -0
- package/minilo/lib/components/virtual-list/index.vue2.js +425 -0
- package/minilo/lib/components/virtual-list/type.d.ts +20 -0
- package/minilo/lib/components/virtual-list/type.js +2 -0
- package/minilo/lib/index.d.ts +1087 -0
- package/minilo/lib/node_modules/.pnpm/@element-plus_icons-vue@2.3.1_vue@3.5.17_typescript@5.8.3_/node_modules/@element-plus/icons-vue/dist/index.js +27 -0
- package/minilo/lib/node_modules/.pnpm/@vueuse_core@13.6.0_vue@3.5.17_typescript@5.9.3_/node_modules/@vueuse/core/index.js +84 -0
- package/minilo/lib/node_modules/.pnpm/@vueuse_shared@13.6.0_vue@3.5.17_typescript@5.9.3_/node_modules/@vueuse/shared/index.js +83 -0
- package/minilo/lib/packages/utils/dist/func/common.js +16 -0
- package/minilo/lib/packages/utils/dist/request/index.js +120 -0
- package/minilo/lib/resolver/index.d.ts +8 -0
- package/minilo/lib/resolver/index.js +28 -0
- package/minilo/lib/utils/index.d.ts +28 -0
- package/minilo/lib/utils/index.js +34 -0
- package/minilo/theme-chalk/index.css +1 -0
- package/minilo/theme-chalk/ml-button.css +1 -0
- package/minilo/theme-chalk/ml-chart.css +1 -0
- package/minilo/theme-chalk/ml-detail.css +1 -0
- package/minilo/theme-chalk/ml-number-range-input.css +1 -0
- package/minilo/theme-chalk/ml-search-table.css +1 -0
- package/minilo/theme-chalk/ml-search.css +1 -0
- package/minilo/theme-chalk/ml-virtual-list.css +1 -0
- package/minilo/theme-chalk/src/button.scss +22 -0
- package/minilo/theme-chalk/src/chart.scss +11 -0
- package/minilo/theme-chalk/src/default/variable.scss +1 -0
- package/minilo/theme-chalk/src/detail.scss +9 -0
- package/minilo/theme-chalk/src/index.scss +12 -0
- package/minilo/theme-chalk/src/mixins/mixin.scss +273 -0
- package/minilo/theme-chalk/src/number-range-input.scss +9 -0
- package/minilo/theme-chalk/src/search-table.scss +47 -0
- package/minilo/theme-chalk/src/search.scss +20 -0
- package/minilo/theme-chalk/src/virtual-list.scss +49 -0
- package/package.json +107 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import{getCurrentScope as Hi,onScopeDispose as Li,toValue as Je,computed as X,watch as Ce,shallowRef as bn,getCurrentInstance as yn,onMounted as Me,defineComponent as ne,ref as Q,useAttrs as vn,createElementBlock as T,nextTick as Ye,onBeforeUnmount as Vi,openBlock as S,mergeProps as z,unref as b,withDirectives as _t,renderSlot as q,createCommentVNode as N,createElementVNode as re,normalizeClass as U,vShow as xn,createVNode as W,markRaw as wn,onUnmounted as Sn,h as _n,mergeModels as Pe,useModel as kt,withCtx as C,createBlock as H,Fragment as Fe,renderList as Ae,withModifiers as Xe,createTextVNode as de,toDisplayString as Z,reactive as zi,readonly as Ui,resolveDirective as Wi,createSlots as Ze,toHandlers as Gi,resolveDynamicComponent as kn,resolveComponent as En,normalizeStyle as De,useSlots as Ki}from"vue";import{ElEmpty as Qi,ElForm as Ji,ElRow as Cn,ElCol as Mn,ElFormItem as Et,ElInput as Ct,ElSelect as Yi,ElOption as Xi,ElDatePicker as Zi,ElButton as Ie,ElLink as es,ElMessage as ge,ElTable as ts,ElTableColumn as ns,ElPagination as rs,ElDescriptions as is,ElDescriptionsItem as ss,ElTooltip as os}from"element-plus";import Mt from"axios";const xe=e=>(e.install=n=>{const t=e.name;t&&n.component(t,e)},e);function P(e="",n="",t=""){if(!e||typeof e!="string")return console.error("BEM: block\u5FC5\u987B\u662F\u5B57\u7B26\u4E32\u4E14\u4E0D\u80FD\u4E3A\u7A7A"),"";let r=`ml-${e}`;if(n&&typeof n=="string"&&(r+=`__${n}`),!t)return r;const i=(Array.isArray(t)?t:[t]).filter(s=>typeof s=="string"&&s.trim()!=="");return i.length===0?r:i.map(s=>`${r}--${s}`).join(" ")}function as(e){return Hi()?(Li(e),!0):!1}const us=typeof window<"u"&&typeof document<"u";typeof WorkerGlobalScope<"u"&&globalThis instanceof WorkerGlobalScope;const Fn=()=>{};function ls(e,n){function t(...r){return new Promise((i,s)=>{Promise.resolve(e(()=>n.apply(this,r),{fn:n,thisArg:this,args:r})).then(i).catch(s)})}return t}function cs(e,n={}){let t,r,i=Fn;const s=f=>{clearTimeout(f),i(),i=Fn};let a;return f=>{const c=Je(e),h=Je(n.maxWait);return t&&s(t),c<=0||h!==void 0&&h<=0?(r&&(s(r),r=void 0),Promise.resolve(f())):new Promise((p,y)=>{i=n.rejectOnCancel?y:p,a=f,h&&!r&&(r=setTimeout(()=>{t&&s(t),r=void 0,p(a())},h)),t=setTimeout(()=>{r&&s(r),r=void 0,p(f())},c)})}}function An(e,n=200,t={}){return ls(cs(n,t),e)}const fs=us?window:void 0;function In(e){var n;const t=Je(e);return(n=t?.$el)!=null?n:t}function ds(){const e=bn(!1),n=yn();return n&&Me(()=>{e.value=!0},n),e}function hs(e){const n=ds();return X(()=>(n.value,!!e()))}function ps(e,n,t={}){const{window:r=fs,...i}=t;let s;const a=hs(()=>r&&"ResizeObserver"in r),l=()=>{s&&(s.disconnect(),s=void 0)},f=X(()=>{const p=Je(e);return Array.isArray(p)?p.map(y=>In(y)):[In(p)]}),c=Ce(f,p=>{if(l(),a.value&&r){s=new ResizeObserver(n);for(const y of p)y&&s.observe(y,i)}},{immediate:!0,flush:"post"}),h=()=>{l(),c()};return as(h),{isSupported:a,stop:h}}const gs=["id"];var ms=ne({name:"MlChart",__name:"index",props:{options:{type:Object,required:!1,default:()=>({})},id:{type:String,required:!1,default:()=>Math.random().toString(36).substring(2,8)},theme:{type:String,required:!1,default:""},isEmpty:{type:[Boolean,Function],required:!1,default:!1},description:{type:String,required:!1,default:"\u6682\u65E0\u6570\u636E"}},emits:["chart"],setup(e,{emit:n}){const{proxy:t}=yn(),r=e,i=Q(),s=Q(),a=n,l=Object.entries(vn()),f=async()=>{if(await Ye(),!i.value)return;const{clientWidth:g,clientHeight:k}=i.value;if(g===0||k===0){console.warn("[MlChart] DOM width or height is 0, waiting for next frame..."),requestAnimationFrame(()=>{requestAnimationFrame(()=>{c()})});return}c()},c=()=>{i.value&&(s.value=wn(t.$echarts.init(i.value,r.theme)),p(r.options),a("chart",s.value),l.forEach(([g])=>{if(g.startsWith("on")&&!g.startsWith("onChart")){const k=g.toLowerCase().substring(2);s.value.on(k,(...x)=>a(k,...x))}}),ps(i.value,h))},h=An(()=>{s.value?.resize()},300),p=An(async g=>{s.value&&(s.value.setOption(g,!0,!0),await Ye(),h())},300),y=X(()=>typeof r.isEmpty=="function"?r.isEmpty(r.options):r.isEmpty);return Ce(()=>r.options,async g=>{await Ye(),p(g)},{deep:!0}),Ce(()=>r.theme,async()=>{s.value&&s.value.dispose(),await f()}),Me(async()=>{await f()}),Vi(()=>{s.value&&(s.value.dispose(),s.value=null)}),(g,k)=>(S(),T("div",z({class:b(P)("chart")},g.$attrs),[_t(re("div",{class:U(b(P)("chart","container")),id:e.id,ref_key:"echartRef",ref:i},null,10,gs),[[xn,!y.value]]),y.value?q(g.$slots,"empty",{key:0},()=>[W(b(Qi),z(g.$attrs,{description:e.description}),null,16,["description"])]):N("v-if",!0),q(g.$slots,"default")],16))}});const Tn=xe(ms);var et=(e=>(e[e.ITEM=1]="ITEM",e[e.SLOT=2]="SLOT",e))(et||{});const bs={inline:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},labelWidth:{type:[String,Number],default:""},labelPosition:{type:String,default:"top"},size:{type:String,default:"default"},gutter:{type:[Number],default:10},span:{type:Number,default:6},submitBtnText:{type:String,default:"\u67E5\u8BE2"},resetBtnText:{type:String,default:"\u91CD\u7F6E"},slots:{type:Array,default:()=>[]},item:{type:Array,default:()=>[]}},$n=/^[a-z0-9]+(-[a-z0-9]+)*$/,tt=(e,n,t,r="")=>{const i=e.split(":");if(e.slice(0,1)==="@"){if(i.length<2||i.length>3)return null;r=i.shift().slice(1)}if(i.length>3||!i.length)return null;if(i.length>1){const l=i.pop(),f=i.pop(),c={provider:i.length>0?i[0]:r,prefix:f,name:l};return n&&!nt(c)?null:c}const s=i[0],a=s.split("-");if(a.length>1){const l={provider:r,prefix:a.shift(),name:a.join("-")};return n&&!nt(l)?null:l}if(t&&r===""){const l={provider:r,prefix:"",name:s};return n&&!nt(l,t)?null:l}return null},nt=(e,n)=>e?!!((n&&e.prefix===""||e.prefix)&&e.name):!1,On=Object.freeze({left:0,top:0,width:16,height:16}),rt=Object.freeze({rotate:0,vFlip:!1,hFlip:!1}),it=Object.freeze({...On,...rt}),Ft=Object.freeze({...it,body:"",hidden:!1});function ys(e,n){const t={};!e.hFlip!=!n.hFlip&&(t.hFlip=!0),!e.vFlip!=!n.vFlip&&(t.vFlip=!0);const r=((e.rotate||0)+(n.rotate||0))%4;return r&&(t.rotate=r),t}function jn(e,n){const t=ys(e,n);for(const r in Ft)r in rt?r in e&&!(r in t)&&(t[r]=rt[r]):r in n?t[r]=n[r]:r in e&&(t[r]=e[r]);return t}function vs(e,n){const t=e.icons,r=e.aliases||Object.create(null),i=Object.create(null);function s(a){if(t[a])return i[a]=[];if(!(a in i)){i[a]=null;const l=r[a]&&r[a].parent,f=l&&s(l);f&&(i[a]=[l].concat(f))}return i[a]}return Object.keys(t).concat(Object.keys(r)).forEach(s),i}function xs(e,n,t){const r=e.icons,i=e.aliases||Object.create(null);let s={};function a(l){s=jn(r[l]||i[l],s)}return a(n),t.forEach(a),jn(e,s)}function Pn(e,n){const t=[];if(typeof e!="object"||typeof e.icons!="object")return t;e.not_found instanceof Array&&e.not_found.forEach(i=>{n(i,null),t.push(i)});const r=vs(e);for(const i in r){const s=r[i];s&&(n(i,xs(e,i,s)),t.push(i))}return t}const ws={provider:"",aliases:{},not_found:{},...On};function At(e,n){for(const t in n)if(t in e&&typeof e[t]!=typeof n[t])return!1;return!0}function Dn(e){if(typeof e!="object"||e===null)return null;const n=e;if(typeof n.prefix!="string"||!e.icons||typeof e.icons!="object"||!At(e,ws))return null;const t=n.icons;for(const i in t){const s=t[i];if(!i||typeof s.body!="string"||!At(s,Ft))return null}const r=n.aliases||Object.create(null);for(const i in r){const s=r[i],a=s.parent;if(!i||typeof a!="string"||!t[a]&&!r[a]||!At(s,Ft))return null}return n}const Bn=Object.create(null);function Ss(e,n){return{provider:e,prefix:n,icons:Object.create(null),missing:new Set}}function Te(e,n){const t=Bn[e]||(Bn[e]=Object.create(null));return t[n]||(t[n]=Ss(e,n))}function Rn(e,n){return Dn(n)?Pn(n,(t,r)=>{r?e.icons[t]=r:e.missing.add(t)}):[]}function _s(e,n,t){try{if(typeof t.body=="string")return e.icons[n]={...t},!0}catch{}return!1}let Be=!1;function qn(e){return typeof e=="boolean"&&(Be=e),Be}function ks(e){const n=typeof e=="string"?tt(e,!0,Be):e;if(n){const t=Te(n.provider,n.prefix),r=n.name;return t.icons[r]||(t.missing.has(r)?null:void 0)}}function Es(e,n){const t=tt(e,!0,Be);if(!t)return!1;const r=Te(t.provider,t.prefix);return n?_s(r,t.name,n):(r.missing.add(t.name),!0)}function Cs(e,n){if(typeof e!="object")return!1;if(typeof n!="string"&&(n=e.provider||""),Be&&!n&&!e.prefix){let i=!1;return Dn(e)&&(e.prefix="",Pn(e,(s,a)=>{Es(s,a)&&(i=!0)})),i}const t=e.prefix;if(!nt({prefix:t,name:"a"}))return!1;const r=Te(n,t);return!!Rn(r,e)}const Nn=Object.freeze({width:null,height:null}),Hn=Object.freeze({...Nn,...rt}),Ms=/(-?[0-9.]*[0-9]+[0-9.]*)/g,Fs=/^-?[0-9.]*[0-9]+[0-9.]*$/g;function Ln(e,n,t){if(n===1)return e;if(t=t||100,typeof e=="number")return Math.ceil(e*n*t)/t;if(typeof e!="string")return e;const r=e.split(Ms);if(r===null||!r.length)return e;const i=[];let s=r.shift(),a=Fs.test(s);for(;;){if(a){const l=parseFloat(s);isNaN(l)?i.push(s):i.push(Math.ceil(l*n*t)/t)}else i.push(s);if(s=r.shift(),s===void 0)return i.join("");a=!a}}function As(e,n="defs"){let t="";const r=e.indexOf("<"+n);for(;r>=0;){const i=e.indexOf(">",r),s=e.indexOf("</"+n);if(i===-1||s===-1)break;const a=e.indexOf(">",s);if(a===-1)break;t+=e.slice(i+1,s).trim(),e=e.slice(0,r).trim()+e.slice(a+1)}return{defs:t,content:e}}function Is(e,n){return e?"<defs>"+e+"</defs>"+n:n}function Ts(e,n,t){const r=As(e);return Is(r.defs,n+r.content+t)}const $s=e=>e==="unset"||e==="undefined"||e==="none";function Os(e,n){const t={...it,...e},r={...Hn,...n},i={left:t.left,top:t.top,width:t.width,height:t.height};let s=t.body;[t,r].forEach(x=>{const m=[],V=x.hFlip,A=x.vFlip;let B=x.rotate;V?A?B+=2:(m.push("translate("+(i.width+i.left).toString()+" "+(0-i.top).toString()+")"),m.push("scale(-1 1)"),i.top=i.left=0):A&&(m.push("translate("+(0-i.left).toString()+" "+(i.height+i.top).toString()+")"),m.push("scale(1 -1)"),i.top=i.left=0);let O;switch(B<0&&(B-=Math.floor(B/4)*4),B=B%4,B){case 1:O=i.height/2+i.top,m.unshift("rotate(90 "+O.toString()+" "+O.toString()+")");break;case 2:m.unshift("rotate(180 "+(i.width/2+i.left).toString()+" "+(i.height/2+i.top).toString()+")");break;case 3:O=i.width/2+i.left,m.unshift("rotate(-90 "+O.toString()+" "+O.toString()+")");break}B%2===1&&(i.left!==i.top&&(O=i.left,i.left=i.top,i.top=O),i.width!==i.height&&(O=i.width,i.width=i.height,i.height=O)),m.length&&(s=Ts(s,'<g transform="'+m.join(" ")+'">',"</g>"))});const a=r.width,l=r.height,f=i.width,c=i.height;let h,p;a===null?(p=l===null?"1em":l==="auto"?c:l,h=Ln(p,f/c)):(h=a==="auto"?f:a,p=l===null?Ln(h,c/f):l==="auto"?c:l);const y={},g=(x,m)=>{$s(m)||(y[x]=m.toString())};g("width",h),g("height",p);const k=[i.left,i.top,f,c];return y.viewBox=k.join(" "),{attributes:y,viewBox:k,body:s}}const js=/\sid="(\S+)"/g,Ps="IconifyId"+Date.now().toString(16)+(Math.random()*16777216|0).toString(16);let Ds=0;function Bs(e,n=Ps){const t=[];let r;for(;r=js.exec(e);)t.push(r[1]);if(!t.length)return e;const i="suffix"+(Math.random()*16777216|Date.now()).toString(16);return t.forEach(s=>{const a=typeof n=="function"?n(s):n+(Ds++).toString(),l=s.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");e=e.replace(new RegExp('([#;"])('+l+')([")]|\\.[a-z])',"g"),"$1"+a+i+"$3")}),e=e.replace(new RegExp(i,"g"),""),e}const It=Object.create(null);function Rs(e,n){It[e]=n}function Tt(e){return It[e]||It[""]}function $t(e){let n;if(typeof e.resources=="string")n=[e.resources];else if(n=e.resources,!(n instanceof Array)||!n.length)return null;return{resources:n,path:e.path||"/",maxURL:e.maxURL||500,rotate:e.rotate||750,timeout:e.timeout||5e3,random:e.random===!0,index:e.index||0,dataAfterTimeout:e.dataAfterTimeout!==!1}}const Ot=Object.create(null),Re=["https://api.simplesvg.com","https://api.unisvg.com"],st=[];for(;Re.length>0;)Re.length===1||Math.random()>.5?st.push(Re.shift()):st.push(Re.pop());Ot[""]=$t({resources:["https://api.iconify.design"].concat(st)});function qs(e,n){const t=$t(n);return t===null?!1:(Ot[e]=t,!0)}function jt(e){return Ot[e]}const Ns=()=>{let e;try{if(e=fetch,typeof e=="function")return e}catch{}};let Vn=Ns();function Hs(e,n){const t=jt(e);if(!t)return 0;let r;if(!t.maxURL)r=0;else{let i=0;t.resources.forEach(a=>{i=Math.max(i,a.length)});const s=n+".json?icons=";r=t.maxURL-i-t.path.length-s.length}return r}function Ls(e){return e===404}const Vs=(e,n,t)=>{const r=[],i=Hs(e,n),s="icons";let a={type:s,provider:e,prefix:n,icons:[]},l=0;return t.forEach((f,c)=>{l+=f.length+1,l>=i&&c>0&&(r.push(a),a={type:s,provider:e,prefix:n,icons:[]},l=f.length),a.icons.push(f)}),r.push(a),r};function zs(e){if(typeof e=="string"){const n=jt(e);if(n)return n.path}return"/"}const Us=(e,n,t)=>{if(!Vn){t("abort",424);return}let r=zs(n.provider);switch(n.type){case"icons":{const s=n.prefix,l=n.icons.join(","),f=new URLSearchParams({icons:l});r+=s+".json?"+f.toString();break}case"custom":{const s=n.uri;r+=s.slice(0,1)==="/"?s.slice(1):s;break}default:t("abort",400);return}let i=503;Vn(e+r).then(s=>{const a=s.status;if(a!==200){setTimeout(()=>{t(Ls(a)?"abort":"next",a)});return}return i=501,s.json()}).then(s=>{if(typeof s!="object"||s===null){setTimeout(()=>{s===404?t("abort",s):t("next",i)});return}setTimeout(()=>{t("success",s)})}).catch(()=>{t("next",i)})},Ws={prepare:Vs,send:Us};function Gs(e){const n={loaded:[],missing:[],pending:[]},t=Object.create(null);e.sort((i,s)=>i.provider!==s.provider?i.provider.localeCompare(s.provider):i.prefix!==s.prefix?i.prefix.localeCompare(s.prefix):i.name.localeCompare(s.name));let r={provider:"",prefix:"",name:""};return e.forEach(i=>{if(r.name===i.name&&r.prefix===i.prefix&&r.provider===i.provider)return;r=i;const s=i.provider,a=i.prefix,l=i.name,f=t[s]||(t[s]=Object.create(null)),c=f[a]||(f[a]=Te(s,a));let h;l in c.icons?h=n.loaded:a===""||c.missing.has(l)?h=n.missing:h=n.pending;const p={provider:s,prefix:a,name:l};h.push(p)}),n}function zn(e,n){e.forEach(t=>{const r=t.loaderCallbacks;r&&(t.loaderCallbacks=r.filter(i=>i.id!==n))})}function Ks(e){e.pendingCallbacksFlag||(e.pendingCallbacksFlag=!0,setTimeout(()=>{e.pendingCallbacksFlag=!1;const n=e.loaderCallbacks?e.loaderCallbacks.slice(0):[];if(!n.length)return;let t=!1;const r=e.provider,i=e.prefix;n.forEach(s=>{const a=s.icons,l=a.pending.length;a.pending=a.pending.filter(f=>{if(f.prefix!==i)return!0;const c=f.name;if(e.icons[c])a.loaded.push({provider:r,prefix:i,name:c});else if(e.missing.has(c))a.missing.push({provider:r,prefix:i,name:c});else return t=!0,!0;return!1}),a.pending.length!==l&&(t||zn([e],s.id),s.callback(a.loaded.slice(0),a.missing.slice(0),a.pending.slice(0),s.abort))})}))}let Qs=0;function Js(e,n,t){const r=Qs++,i=zn.bind(null,t,r);if(!n.pending.length)return i;const s={id:r,icons:n,callback:e,abort:i};return t.forEach(a=>{(a.loaderCallbacks||(a.loaderCallbacks=[])).push(s)}),i}function Ys(e,n=!0,t=!1){const r=[];return e.forEach(i=>{const s=typeof i=="string"?tt(i,n,t):i;s&&r.push(s)}),r}var Xs={resources:[],index:0,timeout:2e3,rotate:750,random:!1,dataAfterTimeout:!1};function Zs(e,n,t,r){const i=e.resources.length,s=e.random?Math.floor(Math.random()*i):e.index;let a;if(e.random){let E=e.resources.slice(0);for(a=[];E.length>1;){const L=Math.floor(Math.random()*E.length);a.push(E[L]),E=E.slice(0,L).concat(E.slice(L+1))}a=a.concat(E)}else a=e.resources.slice(s).concat(e.resources.slice(0,s));const l=Date.now();let f="pending",c=0,h,p=null,y=[],g=[];typeof r=="function"&&g.push(r);function k(){p&&(clearTimeout(p),p=null)}function x(){f==="pending"&&(f="aborted"),k(),y.forEach(E=>{E.status==="pending"&&(E.status="aborted")}),y=[]}function m(E,L){L&&(g=[]),typeof E=="function"&&g.push(E)}function V(){return{startTime:l,payload:n,status:f,queriesSent:c,queriesPending:y.length,subscribe:m,abort:x}}function A(){f="failed",g.forEach(E=>{E(void 0,h)})}function B(){y.forEach(E=>{E.status==="pending"&&(E.status="aborted")}),y=[]}function O(E,L,se){const ae=L!=="success";switch(y=y.filter(w=>w!==E),f){case"pending":break;case"failed":if(ae||!e.dataAfterTimeout)return;break;default:return}if(L==="abort"){h=se,A();return}if(ae){h=se,y.length||(a.length?he():A());return}if(k(),B(),!e.random){const w=e.resources.indexOf(E.resource);w!==-1&&w!==e.index&&(e.index=w)}f="completed",g.forEach(w=>{w(se)})}function he(){if(f!=="pending")return;k();const E=a.shift();if(E===void 0){if(y.length){p=setTimeout(()=>{k(),f==="pending"&&(B(),A())},e.timeout);return}A();return}const L={status:"pending",resource:E,callback:(se,ae)=>{O(L,se,ae)}};y.push(L),c++,p=setTimeout(he,e.rotate),t(E,n,L.callback)}return setTimeout(he),V}function Un(e){const n={...Xs,...e};let t=[];function r(){t=t.filter(l=>l().status==="pending")}function i(l,f,c){const h=Zs(n,l,f,(p,y)=>{r(),c&&c(p,y)});return t.push(h),h}function s(l){return t.find(f=>l(f))||null}return{query:i,find:s,setIndex:l=>{n.index=l},getIndex:()=>n.index,cleanup:r}}function Wn(){}const Pt=Object.create(null);function eo(e){if(!Pt[e]){const n=jt(e);if(!n)return;const t=Un(n),r={config:n,redundancy:t};Pt[e]=r}return Pt[e]}function to(e,n,t){let r,i;if(typeof e=="string"){const s=Tt(e);if(!s)return t(void 0,424),Wn;i=s.send;const a=eo(e);a&&(r=a.redundancy)}else{const s=$t(e);if(s){r=Un(s);const a=e.resources?e.resources[0]:"",l=Tt(a);l&&(i=l.send)}}return!r||!i?(t(void 0,424),Wn):r.query(n,i,t)().abort}function Gn(){}function no(e){e.iconsLoaderFlag||(e.iconsLoaderFlag=!0,setTimeout(()=>{e.iconsLoaderFlag=!1,Ks(e)}))}function ro(e){const n=[],t=[];return e.forEach(r=>{(r.match($n)?n:t).push(r)}),{valid:n,invalid:t}}function qe(e,n,t){function r(){const i=e.pendingIcons;n.forEach(s=>{i&&i.delete(s),e.icons[s]||e.missing.add(s)})}if(t&&typeof t=="object")try{if(!Rn(e,t).length){r();return}}catch(i){console.error(i)}r(),no(e)}function Kn(e,n){e instanceof Promise?e.then(t=>{n(t)}).catch(()=>{n(null)}):n(e)}function io(e,n){e.iconsToLoad?e.iconsToLoad=e.iconsToLoad.concat(n).sort():e.iconsToLoad=n,e.iconsQueueFlag||(e.iconsQueueFlag=!0,setTimeout(()=>{e.iconsQueueFlag=!1;const{provider:t,prefix:r}=e,i=e.iconsToLoad;if(delete e.iconsToLoad,!i||!i.length)return;const s=e.loadIcon;if(e.loadIcons&&(i.length>1||!s)){Kn(e.loadIcons(i,r,t),h=>{qe(e,i,h)});return}if(s){i.forEach(h=>{const p=s(h,r,t);Kn(p,y=>{const g=y?{prefix:r,icons:{[h]:y}}:null;qe(e,[h],g)})});return}const{valid:a,invalid:l}=ro(i);if(l.length&&qe(e,l,null),!a.length)return;const f=r.match($n)?Tt(t):null;if(!f){qe(e,a,null);return}f.prepare(t,r,a).forEach(h=>{to(t,h,p=>{qe(e,h.icons,p)})})}))}const so=(e,n)=>{const t=Ys(e,!0,qn()),r=Gs(t);if(!r.pending.length){let f=!0;return n&&setTimeout(()=>{f&&n(r.loaded,r.missing,r.pending,Gn)}),()=>{f=!1}}const i=Object.create(null),s=[];let a,l;return r.pending.forEach(f=>{const{provider:c,prefix:h}=f;if(h===l&&c===a)return;a=c,l=h,s.push(Te(c,h));const p=i[c]||(i[c]=Object.create(null));p[h]||(p[h]=[])}),r.pending.forEach(f=>{const{provider:c,prefix:h,name:p}=f,y=Te(c,h),g=y.pendingIcons||(y.pendingIcons=new Set);g.has(p)||(g.add(p),i[c][h].push(p))}),s.forEach(f=>{const c=i[f.provider][f.prefix];c.length&&io(f,c)}),n?Js(n,r,s):Gn};function oo(e,n){const t={...e};for(const r in n){const i=n[r],s=typeof i;r in Nn?(i===null||i&&(s==="string"||s==="number"))&&(t[r]=i):s===typeof t[r]&&(t[r]=r==="rotate"?i%4:i)}return t}const ao=/[\s,]+/;function uo(e,n){n.split(ao).forEach(t=>{switch(t.trim()){case"horizontal":e.hFlip=!0;break;case"vertical":e.vFlip=!0;break}})}function lo(e,n=0){const t=e.replace(/^-?[0-9.]*/,"");function r(i){for(;i<0;)i+=4;return i%4}if(t===""){const i=parseInt(e);return isNaN(i)?0:r(i)}else if(t!==e){let i=0;switch(t){case"%":i=25;break;case"deg":i=90}if(i){let s=parseFloat(e.slice(0,e.length-t.length));return isNaN(s)?0:(s=s/i,s%1===0?r(s):0)}}return n}function co(e,n){let t=e.indexOf("xlink:")===-1?"":' xmlns:xlink="http://www.w3.org/1999/xlink"';for(const r in n)t+=" "+r+'="'+n[r]+'"';return'<svg xmlns="http://www.w3.org/2000/svg"'+t+">"+e+"</svg>"}function fo(e){return e.replace(/"/g,"'").replace(/%/g,"%25").replace(/#/g,"%23").replace(/</g,"%3C").replace(/>/g,"%3E").replace(/\s+/g," ")}function ho(e){return"data:image/svg+xml,"+fo(e)}function po(e){return'url("'+ho(e)+'")'}const Qn={...Hn,inline:!1},go={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink","aria-hidden":!0,role:"img"},mo={display:"inline-block"},Dt={backgroundColor:"currentColor"},Jn={backgroundColor:"transparent"},Yn={Image:"var(--svg)",Repeat:"no-repeat",Size:"100% 100%"},Xn={webkitMask:Dt,mask:Dt,background:Jn};for(const e in Xn){const n=Xn[e];for(const t in Yn)n[e+t]=Yn[t]}const ot={};["horizontal","vertical"].forEach(e=>{const n=e.slice(0,1)+"Flip";ot[e+"-flip"]=n,ot[e.slice(0,1)+"-flip"]=n,ot[e+"Flip"]=n});function Zn(e){return e+(e.match(/^[-0-9.]+$/)?"px":"")}const er=(e,n)=>{const t=oo(Qn,n),r={...go},i=n.mode||"svg",s={},a=n.style,l=typeof a=="object"&&!(a instanceof Array)?a:{};for(let x in n){const m=n[x];if(m!==void 0)switch(x){case"icon":case"style":case"onLoad":case"mode":case"ssr":break;case"inline":case"hFlip":case"vFlip":t[x]=m===!0||m==="true"||m===1;break;case"flip":typeof m=="string"&&uo(t,m);break;case"color":s.color=m;break;case"rotate":typeof m=="string"?t[x]=lo(m):typeof m=="number"&&(t[x]=m);break;case"ariaHidden":case"aria-hidden":m!==!0&&m!=="true"&&delete r["aria-hidden"];break;default:{const V=ot[x];V?(m===!0||m==="true"||m===1)&&(t[V]=!0):Qn[x]===void 0&&(r[x]=m)}}}const f=Os(e,t),c=f.attributes;if(t.inline&&(s.verticalAlign="-0.125em"),i==="svg"){r.style={...s,...l},Object.assign(r,c);let x=0,m=n.id;return typeof m=="string"&&(m=m.replace(/-/g,"_")),r.innerHTML=Bs(f.body,m?()=>m+"ID"+x++:"iconifyVue"),_n("svg",r)}const{body:h,width:p,height:y}=e,g=i==="mask"||(i==="bg"?!1:h.indexOf("currentColor")!==-1),k=co(h,{...c,width:p+"",height:y+""});return r.style={...s,"--svg":po(k),width:Zn(c.width),height:Zn(c.height),...mo,...g?Dt:Jn,...l},_n("span",r)};if(qn(!0),Rs("",Ws),typeof document<"u"&&typeof window<"u"){const e=window;if(e.IconifyPreload!==void 0){const n=e.IconifyPreload,t="Invalid IconifyPreload syntax.";typeof n=="object"&&n!==null&&(n instanceof Array?n:[n]).forEach(r=>{try{(typeof r!="object"||r===null||r instanceof Array||typeof r.icons!="object"||typeof r.prefix!="string"||!Cs(r))&&console.error(t)}catch{console.error(t)}})}if(e.IconifyProviders!==void 0){const n=e.IconifyProviders;if(typeof n=="object"&&n!==null)for(let t in n){const r="IconifyProviders["+t+"] is invalid.";try{const i=n[t];if(typeof i!="object"||!i||i.resources===void 0)continue;qs(t,i)||console.error(r)}catch{console.error(r)}}}}const bo={...it,body:""},yo=ne((e,{emit:n})=>{const t=Q(null);function r(){t.value&&(t.value.abort?.(),t.value=null)}const i=Q(!!e.ssr),s=Q(""),a=bn(null);function l(){const c=e.icon;if(typeof c=="object"&&c!==null&&typeof c.body=="string")return s.value="",{data:c};let h;if(typeof c!="string"||(h=tt(c,!1,!0))===null)return null;let p=ks(h);if(!p){const k=t.value;return(!k||k.name!==c)&&(p===null?t.value={name:c}:t.value={name:c,abort:so([h],f)}),null}r(),s.value!==c&&(s.value=c,Ye(()=>{n("load",c)}));const y=e.customise;if(y){p=Object.assign({},p);const k=y(p.body,h.name,h.prefix,h.provider);typeof k=="string"&&(p.body=k)}const g=["iconify"];return h.prefix!==""&&g.push("iconify--"+h.prefix),h.provider!==""&&g.push("iconify--"+h.provider),{data:p,classes:g}}function f(){const c=l();c?c.data!==a.value?.data&&(a.value=c):a.value=null}return i.value?f():Me(()=>{i.value=!0,f()}),Ce(()=>e.icon,f),Sn(r),()=>{const c=a.value;if(!c)return er(bo,e);let h=e;return c.classes&&(h={...e,class:c.classes.join(" ")}),er({...it,...c.data},h)}},{props:["icon","mode","ssr","width","height","style","color","inline","rotate","hFlip","horizontalFlip","vFlip","verticalFlip","flip","id","ariaHidden","customise","title"],emits:["load"]});var tr=ne({name:"MlSearch",__name:"index",props:Pe(bs,{modelValue:{type:Object},modelModifiers:{}}),emits:Pe(["submit","reset"],["update:modelValue"]),setup(e,{expose:n,emit:t}){const r=e,i=Q([]),s=Q(),a=Q(!1),l=kt(e,"modelValue"),f=t,c=()=>{f("submit")},h=()=>{s.value?.resetFields(),f("reset")};return Me(()=>{console.log(r);const p=r.item.map(y=>({type:et.ITEM,...y}));r.slots.map(y=>({type:et.SLOT,...y})).forEach(y=>{p.splice(y.position||0,0,y)}),i.value=p,console.log("\u914D\u7F6E\u9879\u7684\u503C:",i.value)}),n({}),(p,y)=>(S(),T("div",{class:U(b(P)("search"))},[W(b(Ji),{size:p.size,"label-position":p.labelPosition,inline:p.inline,model:l.value,"label-width":p.labelWidth,ref_key:"searchFormRef",ref:s},{default:C(()=>[re("div",{class:U(b(P)("search","content"))},[re("div",{class:U(b(P)("search","content__left"))},[W(b(Cn),{gutter:p.gutter},{default:C(()=>[(S(!0),T(Fe,null,Ae(i.value,(g,k)=>_t((S(),H(b(Mn),z({key:g.prop,span:p.span},{ref_for:!0},g.colProps),{default:C(()=>[W(b(Et),z({ref_for:!0},g.formItemProps,{prop:g.prop}),{default:C(()=>[g.type===b(et).SLOT?q(p.$slots,g.prop,{key:0,searchModel:l.value}):(S(),T(Fe,{key:1},[N(" \u8F93\u5165\u6846 "),g.input.type==="input"?(S(),H(b(Ct),z({key:0,modelValue:l.value[g.prop],"onUpdate:modelValue":x=>l.value[g.prop]=x},{ref_for:!0},g.input.props,{clearable:""}),null,16,["modelValue","onUpdate:modelValue"])):N("v-if",!0),N(" \u7B5B\u9009\u6846 "),g.input.type==="select"?(S(),H(b(Yi),z({key:1,modelValue:l.value[g.prop],"onUpdate:modelValue":x=>l.value[g.prop]=x},{ref_for:!0},g.input.props,{style:{width:"100%"},clearable:""}),{default:C(()=>[(S(!0),T(Fe,null,Ae(g.input.props.options,x=>(S(),H(b(Xi),{key:x.value,label:x[g.input.props.labelKey],value:x[g.input.props.valueKey],disabled:x.disabled},null,8,["label","value","disabled"]))),128))]),_:2},1040,["modelValue","onUpdate:modelValue"])):N("v-if",!0),N(" \u65F6\u95F4\u9009\u62E9\u6846 "),g.input.type==="date-picker"?(S(),H(b(Zi),z({key:2,modelValue:l.value[g.prop],"onUpdate:modelValue":x=>l.value[g.prop]=x},{ref_for:!0},g.input.props),null,16,["modelValue","onUpdate:modelValue"])):N("v-if",!0)],64))]),_:2},1040,["prop"])]),_:2},1040,["span"])),[[xn,a.value?k<=24/p.span-1:!0]])),128)),i.value.length<=24/p.span-1?(S(),H(b(Mn),{key:0,span:p.span},{default:C(()=>[W(b(Et),{label:"\u64CD\u4F5C"},{default:C(()=>[W(b(Ie),{type:"primary",size:p.size,loading:!1,onClick:Xe(c,["stop"])},{default:C(()=>[de(Z(p.submitBtnText),1)]),_:1},8,["size"]),W(b(Ie),{loading:!1,onClick:Xe(h,["stop"])},{default:C(()=>[de(Z(p.resetBtnText),1)]),_:1})]),_:1})]),_:1},8,["span"])):N("v-if",!0)]),_:3},8,["gutter"])],2),i.value.length>24/p.span-1?(S(),T("div",{key:0,class:U(b(P)("search","content__right"))},[W(b(Et),{label:"\u64CD\u4F5C"},{default:C(()=>[W(b(Ie),{type:"primary",size:p.size,loading:!1,onClick:Xe(c,["stop"])},{default:C(()=>[de(Z(p.submitBtnText),1)]),_:1},8,["size"]),W(b(Ie),{loading:!1,onClick:Xe(h,["stop"])},{default:C(()=>[de(Z(p.resetBtnText),1)]),_:1})]),_:1})],2)):N("v-if",!0)],2),i.value.length>24/p.span?(S(),H(b(Cn),{key:0,class:U(b(P)("search","collapse"))},{default:C(()=>[W(b(es),{type:"primary",underline:"never",onClick:y[0]||(y[0]=g=>a.value=!a.value)},{default:C(()=>[de(Z(a.value?"\u5C55\u5F00":"\u6536\u8D77")+"\u66F4\u591A\u7B5B\u9009\u6761\u4EF6 ",1),W(b(yo),{icon:a.value?"ep:arrow-down":"ep:arrow-up"},null,8,["icon"])]),_:1})]),_:1},8,["class"])):N("v-if",!0)]),_:3},8,["size","label-position","inline","model","label-width"])],2))}}),Bt=(e=>(e.GET="get",e.POST="post",e.PUT="put",e.DELETE="delete",e))(Bt||{});const vo={methodType:{type:String,default:"post"},url:{type:String,default:""},responseDataField:{type:String,default:"data.result"},responseTotalField:{type:String,default:"data.total"},headers:{type:Object,default:()=>({})},showPagination:{type:Boolean,default:!0},paramsHandler:{type:Function,default:null},render:{type:Function,default:null},searchProps:{type:Object,default:()=>{}},tableProps:{type:Object,default:()=>({border:!0})},columns:{type:Array,default:()=>[]}};var at=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},Ne={exports:{}};Ne.exports;var nr;function xo(){return nr||(nr=1,(function(e,n){var t=200,r="__lodash_hash_undefined__",i=9007199254740991,s="[object Arguments]",a="[object Array]",l="[object Boolean]",f="[object Date]",c="[object Error]",h="[object Function]",p="[object GeneratorFunction]",y="[object Map]",g="[object Number]",k="[object Object]",x="[object Promise]",m="[object RegExp]",V="[object Set]",A="[object String]",B="[object Symbol]",O="[object WeakMap]",he="[object ArrayBuffer]",E="[object DataView]",L="[object Float32Array]",se="[object Float64Array]",ae="[object Int8Array]",w="[object Int16Array]",_="[object Int32Array]",I="[object Uint8Array]",M="[object Uint8ClampedArray]",F="[object Uint16Array]",R="[object Uint32Array]",j=/[\\^$.*+?()[\]{}|]/g,oe=/\w*$/,ue=/^\[object .+?Constructor\]$/,Ve=/^(?:0|[1-9]\d*)$/,$={};$[s]=$[a]=$[he]=$[E]=$[l]=$[f]=$[L]=$[se]=$[ae]=$[w]=$[_]=$[y]=$[g]=$[k]=$[m]=$[V]=$[A]=$[B]=$[I]=$[M]=$[F]=$[R]=!0,$[c]=$[h]=$[O]=!1;var wr=typeof at=="object"&&at&&at.Object===Object&&at,Sr=typeof self=="object"&&self&&self.Object===Object&&self,le=wr||Sr||Function("return this")(),Ut=n&&!n.nodeType&&n,Wt=Ut&&!0&&e&&!e.nodeType&&e,_r=Wt&&Wt.exports===Ut;function kr(o,u){return o.set(u[0],u[1]),o}function Er(o,u){return o.add(u),o}function Cr(o,u){for(var d=-1,v=o?o.length:0;++d<v&&u(o[d],d,o)!==!1;);return o}function Mr(o,u){for(var d=-1,v=u.length,G=o.length;++d<v;)o[G+d]=u[d];return o}function Gt(o,u,d,v){for(var G=-1,J=o?o.length:0;++G<J;)d=u(d,o[G],G,o);return d}function Fr(o,u){for(var d=-1,v=Array(o);++d<o;)v[d]=u(d);return v}function Ar(o,u){return o?.[u]}function Kt(o){var u=!1;if(o!=null&&typeof o.toString!="function")try{u=!!(o+"")}catch{}return u}function Qt(o){var u=-1,d=Array(o.size);return o.forEach(function(v,G){d[++u]=[G,v]}),d}function dt(o,u){return function(d){return o(u(d))}}function Jt(o){var u=-1,d=Array(o.size);return o.forEach(function(v){d[++u]=v}),d}var Ir=Array.prototype,Tr=Function.prototype,ze=Object.prototype,ht=le["__core-js_shared__"],Yt=(function(){var o=/[^.]+$/.exec(ht&&ht.keys&&ht.keys.IE_PROTO||"");return o?"Symbol(src)_1."+o:""})(),Xt=Tr.toString,pe=ze.hasOwnProperty,Ue=ze.toString,$r=RegExp("^"+Xt.call(pe).replace(j,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),Zt=_r?le.Buffer:void 0,en=le.Symbol,tn=le.Uint8Array,Or=dt(Object.getPrototypeOf,Object),jr=Object.create,Pr=ze.propertyIsEnumerable,Dr=Ir.splice,nn=Object.getOwnPropertySymbols,Br=Zt?Zt.isBuffer:void 0,Rr=dt(Object.keys,Object),pt=ke(le,"DataView"),Oe=ke(le,"Map"),gt=ke(le,"Promise"),mt=ke(le,"Set"),bt=ke(le,"WeakMap"),je=ke(Object,"create"),qr=ve(pt),Nr=ve(Oe),Hr=ve(gt),Lr=ve(mt),Vr=ve(bt),rn=en?en.prototype:void 0,sn=rn?rn.valueOf:void 0;function be(o){var u=-1,d=o?o.length:0;for(this.clear();++u<d;){var v=o[u];this.set(v[0],v[1])}}function zr(){this.__data__=je?je(null):{}}function Ur(o){return this.has(o)&&delete this.__data__[o]}function Wr(o){var u=this.__data__;if(je){var d=u[o];return d===r?void 0:d}return pe.call(u,o)?u[o]:void 0}function Gr(o){var u=this.__data__;return je?u[o]!==void 0:pe.call(u,o)}function Kr(o,u){var d=this.__data__;return d[o]=je&&u===void 0?r:u,this}be.prototype.clear=zr,be.prototype.delete=Ur,be.prototype.get=Wr,be.prototype.has=Gr,be.prototype.set=Kr;function ce(o){var u=-1,d=o?o.length:0;for(this.clear();++u<d;){var v=o[u];this.set(v[0],v[1])}}function Qr(){this.__data__=[]}function Jr(o){var u=this.__data__,d=We(u,o);if(d<0)return!1;var v=u.length-1;return d==v?u.pop():Dr.call(u,d,1),!0}function Yr(o){var u=this.__data__,d=We(u,o);return d<0?void 0:u[d][1]}function Xr(o){return We(this.__data__,o)>-1}function Zr(o,u){var d=this.__data__,v=We(d,o);return v<0?d.push([o,u]):d[v][1]=u,this}ce.prototype.clear=Qr,ce.prototype.delete=Jr,ce.prototype.get=Yr,ce.prototype.has=Xr,ce.prototype.set=Zr;function Se(o){var u=-1,d=o?o.length:0;for(this.clear();++u<d;){var v=o[u];this.set(v[0],v[1])}}function ei(){this.__data__={hash:new be,map:new(Oe||ce),string:new be}}function ti(o){return Ge(this,o).delete(o)}function ni(o){return Ge(this,o).get(o)}function ri(o){return Ge(this,o).has(o)}function ii(o,u){return Ge(this,o).set(o,u),this}Se.prototype.clear=ei,Se.prototype.delete=ti,Se.prototype.get=ni,Se.prototype.has=ri,Se.prototype.set=ii;function _e(o){this.__data__=new ce(o)}function si(){this.__data__=new ce}function oi(o){return this.__data__.delete(o)}function ai(o){return this.__data__.get(o)}function ui(o){return this.__data__.has(o)}function li(o,u){var d=this.__data__;if(d instanceof ce){var v=d.__data__;if(!Oe||v.length<t-1)return v.push([o,u]),this;d=this.__data__=new Se(v)}return d.set(o,u),this}_e.prototype.clear=si,_e.prototype.delete=oi,_e.prototype.get=ai,_e.prototype.has=ui,_e.prototype.set=li;function ci(o,u){var d=xt(o)||ji(o)?Fr(o.length,String):[],v=d.length,G=!!v;for(var J in o)pe.call(o,J)&&!(G&&(J=="length"||Ii(J,v)))&&d.push(J);return d}function on(o,u,d){var v=o[u];(!(pe.call(o,u)&&cn(v,d))||d===void 0&&!(u in o))&&(o[u]=d)}function We(o,u){for(var d=o.length;d--;)if(cn(o[d][0],u))return d;return-1}function fi(o,u){return o&&an(u,wt(u),o)}function yt(o,u,d,v,G,J,fe){var Y;if(v&&(Y=J?v(o,G,J,fe):v(o)),Y!==void 0)return Y;if(!Ke(o))return o;var hn=xt(o);if(hn){if(Y=Mi(o),!u)return ki(o,Y)}else{var Ee=ye(o),pn=Ee==h||Ee==p;if(Di(o))return bi(o,u);if(Ee==k||Ee==s||pn&&!J){if(Kt(o))return J?o:{};if(Y=Fi(pn?{}:o),!u)return Ei(o,fi(Y,o))}else{if(!$[Ee])return J?o:{};Y=Ai(o,Ee,yt,u)}}fe||(fe=new _e);var gn=fe.get(o);if(gn)return gn;if(fe.set(o,Y),!hn)var mn=d?Ci(o):wt(o);return Cr(mn||o,function(St,Qe){mn&&(Qe=St,St=o[Qe]),on(Y,Qe,yt(St,u,d,v,Qe,o,fe))}),Y}function di(o){return Ke(o)?jr(o):{}}function hi(o,u,d){var v=u(o);return xt(o)?v:Mr(v,d(o))}function pi(o){return Ue.call(o)}function gi(o){if(!Ke(o)||$i(o))return!1;var u=dn(o)||Kt(o)?$r:ue;return u.test(ve(o))}function mi(o){if(!ln(o))return Rr(o);var u=[];for(var d in Object(o))pe.call(o,d)&&d!="constructor"&&u.push(d);return u}function bi(o,u){if(u)return o.slice();var d=new o.constructor(o.length);return o.copy(d),d}function vt(o){var u=new o.constructor(o.byteLength);return new tn(u).set(new tn(o)),u}function yi(o,u){var d=u?vt(o.buffer):o.buffer;return new o.constructor(d,o.byteOffset,o.byteLength)}function vi(o,u,d){var v=u?d(Qt(o),!0):Qt(o);return Gt(v,kr,new o.constructor)}function xi(o){var u=new o.constructor(o.source,oe.exec(o));return u.lastIndex=o.lastIndex,u}function wi(o,u,d){var v=u?d(Jt(o),!0):Jt(o);return Gt(v,Er,new o.constructor)}function Si(o){return sn?Object(sn.call(o)):{}}function _i(o,u){var d=u?vt(o.buffer):o.buffer;return new o.constructor(d,o.byteOffset,o.length)}function ki(o,u){var d=-1,v=o.length;for(u||(u=Array(v));++d<v;)u[d]=o[d];return u}function an(o,u,d,v){d||(d={});for(var G=-1,J=u.length;++G<J;){var fe=u[G],Y=void 0;on(d,fe,Y===void 0?o[fe]:Y)}return d}function Ei(o,u){return an(o,un(o),u)}function Ci(o){return hi(o,wt,un)}function Ge(o,u){var d=o.__data__;return Ti(u)?d[typeof u=="string"?"string":"hash"]:d.map}function ke(o,u){var d=Ar(o,u);return gi(d)?d:void 0}var un=nn?dt(nn,Object):qi,ye=pi;(pt&&ye(new pt(new ArrayBuffer(1)))!=E||Oe&&ye(new Oe)!=y||gt&&ye(gt.resolve())!=x||mt&&ye(new mt)!=V||bt&&ye(new bt)!=O)&&(ye=function(o){var u=Ue.call(o),d=u==k?o.constructor:void 0,v=d?ve(d):void 0;if(v)switch(v){case qr:return E;case Nr:return y;case Hr:return x;case Lr:return V;case Vr:return O}return u});function Mi(o){var u=o.length,d=o.constructor(u);return u&&typeof o[0]=="string"&&pe.call(o,"index")&&(d.index=o.index,d.input=o.input),d}function Fi(o){return typeof o.constructor=="function"&&!ln(o)?di(Or(o)):{}}function Ai(o,u,d,v){var G=o.constructor;switch(u){case he:return vt(o);case l:case f:return new G(+o);case E:return yi(o,v);case L:case se:case ae:case w:case _:case I:case M:case F:case R:return _i(o,v);case y:return vi(o,v,d);case g:case A:return new G(o);case m:return xi(o);case V:return wi(o,v,d);case B:return Si(o)}}function Ii(o,u){return u=u??i,!!u&&(typeof o=="number"||Ve.test(o))&&o>-1&&o%1==0&&o<u}function Ti(o){var u=typeof o;return u=="string"||u=="number"||u=="symbol"||u=="boolean"?o!=="__proto__":o===null}function $i(o){return!!Yt&&Yt in o}function ln(o){var u=o&&o.constructor,d=typeof u=="function"&&u.prototype||ze;return o===d}function ve(o){if(o!=null){try{return Xt.call(o)}catch{}try{return o+""}catch{}}return""}function Oi(o){return yt(o,!0,!0)}function cn(o,u){return o===u||o!==o&&u!==u}function ji(o){return Pi(o)&&pe.call(o,"callee")&&(!Pr.call(o,"callee")||Ue.call(o)==s)}var xt=Array.isArray;function fn(o){return o!=null&&Bi(o.length)&&!dn(o)}function Pi(o){return Ri(o)&&fn(o)}var Di=Br||Ni;function dn(o){var u=Ke(o)?Ue.call(o):"";return u==h||u==p}function Bi(o){return typeof o=="number"&&o>-1&&o%1==0&&o<=i}function Ke(o){var u=typeof o;return!!o&&(u=="object"||u=="function")}function Ri(o){return!!o&&typeof o=="object"}function wt(o){return fn(o)?ci(o):mi(o)}function qi(){return[]}function Ni(){return!1}e.exports=Oi})(Ne,Ne.exports)),Ne.exports}xo();function K(e,n){wo(e)&&(e="100%");const t=So(e);return e=n===360?e:Math.min(n,Math.max(0,parseFloat(e))),t&&(e=parseInt(String(e*n),10)/100),Math.abs(e-n)<1e-6?1:(n===360?e=(e<0?e%n+n:e%n)/parseFloat(String(n)):e=e%n/parseFloat(String(n)),e)}function ut(e){return Math.min(1,Math.max(0,e))}function wo(e){return typeof e=="string"&&e.indexOf(".")!==-1&&parseFloat(e)===1}function So(e){return typeof e=="string"&&e.indexOf("%")!==-1}function rr(e){return e=parseFloat(e),(isNaN(e)||e<0||e>1)&&(e=1),e}function lt(e){return Number(e)<=1?`${Number(e)*100}%`:e}function we(e){return e.length===1?"0"+e:String(e)}function _o(e,n,t){return{r:K(e,255)*255,g:K(n,255)*255,b:K(t,255)*255}}function ir(e,n,t){e=K(e,255),n=K(n,255),t=K(t,255);const r=Math.max(e,n,t),i=Math.min(e,n,t);let s=0,a=0;const l=(r+i)/2;if(r===i)a=0,s=0;else{const f=r-i;switch(a=l>.5?f/(2-r-i):f/(r+i),r){case e:s=(n-t)/f+(n<t?6:0);break;case n:s=(t-e)/f+2;break;case t:s=(e-n)/f+4;break}s/=6}return{h:s,s:a,l}}function Rt(e,n,t){return t<0&&(t+=1),t>1&&(t-=1),t<1/6?e+(n-e)*(6*t):t<1/2?n:t<2/3?e+(n-e)*(2/3-t)*6:e}function ko(e,n,t){let r,i,s;if(e=K(e,360),n=K(n,100),t=K(t,100),n===0)i=t,s=t,r=t;else{const a=t<.5?t*(1+n):t+n-t*n,l=2*t-a;r=Rt(l,a,e+1/3),i=Rt(l,a,e),s=Rt(l,a,e-1/3)}return{r:r*255,g:i*255,b:s*255}}function sr(e,n,t){e=K(e,255),n=K(n,255),t=K(t,255);const r=Math.max(e,n,t),i=Math.min(e,n,t);let s=0;const a=r,l=r-i,f=r===0?0:l/r;if(r===i)s=0;else{switch(r){case e:s=(n-t)/l+(n<t?6:0);break;case n:s=(t-e)/l+2;break;case t:s=(e-n)/l+4;break}s/=6}return{h:s,s:f,v:a}}function Eo(e,n,t){e=K(e,360)*6,n=K(n,100),t=K(t,100);const r=Math.floor(e),i=e-r,s=t*(1-n),a=t*(1-i*n),l=t*(1-(1-i)*n),f=r%6,c=[t,a,s,s,l,t][f],h=[l,t,t,a,s,s][f],p=[s,s,l,t,t,a][f];return{r:c*255,g:h*255,b:p*255}}function or(e,n,t,r){const i=[we(Math.round(e).toString(16)),we(Math.round(n).toString(16)),we(Math.round(t).toString(16))];return r&&i[0].startsWith(i[0].charAt(1))&&i[1].startsWith(i[1].charAt(1))&&i[2].startsWith(i[2].charAt(1))?i[0].charAt(0)+i[1].charAt(0)+i[2].charAt(0):i.join("")}function Co(e,n,t,r,i){const s=[we(Math.round(e).toString(16)),we(Math.round(n).toString(16)),we(Math.round(t).toString(16)),we(Fo(r))];return i&&s[0].startsWith(s[0].charAt(1))&&s[1].startsWith(s[1].charAt(1))&&s[2].startsWith(s[2].charAt(1))&&s[3].startsWith(s[3].charAt(1))?s[0].charAt(0)+s[1].charAt(0)+s[2].charAt(0)+s[3].charAt(0):s.join("")}function Mo(e,n,t,r){const i=e/100,s=n/100,a=t/100,l=r/100,f=255*(1-i)*(1-l),c=255*(1-s)*(1-l),h=255*(1-a)*(1-l);return{r:f,g:c,b:h}}function ar(e,n,t){let r=1-e/255,i=1-n/255,s=1-t/255,a=Math.min(r,i,s);return a===1?(r=0,i=0,s=0):(r=(r-a)/(1-a)*100,i=(i-a)/(1-a)*100,s=(s-a)/(1-a)*100),a*=100,{c:Math.round(r),m:Math.round(i),y:Math.round(s),k:Math.round(a)}}function Fo(e){return Math.round(parseFloat(e)*255).toString(16)}function ur(e){return ee(e)/255}function ee(e){return parseInt(e,16)}function Ao(e){return{r:e>>16,g:(e&65280)>>8,b:e&255}}const qt={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",goldenrod:"#daa520",gold:"#ffd700",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavenderblush:"#fff0f5",lavender:"#e6e6fa",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",rebeccapurple:"#663399",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"};function Io(e){let n={r:0,g:0,b:0},t=1,r=null,i=null,s=null,a=!1,l=!1;return typeof e=="string"&&(e=Oo(e)),typeof e=="object"&&(te(e.r)&&te(e.g)&&te(e.b)?(n=_o(e.r,e.g,e.b),a=!0,l=String(e.r).substr(-1)==="%"?"prgb":"rgb"):te(e.h)&&te(e.s)&&te(e.v)?(r=lt(e.s),i=lt(e.v),n=Eo(e.h,r,i),a=!0,l="hsv"):te(e.h)&&te(e.s)&&te(e.l)?(r=lt(e.s),s=lt(e.l),n=ko(e.h,r,s),a=!0,l="hsl"):te(e.c)&&te(e.m)&&te(e.y)&&te(e.k)&&(n=Mo(e.c,e.m,e.y,e.k),a=!0,l="cmyk"),Object.prototype.hasOwnProperty.call(e,"a")&&(t=e.a)),t=rr(t),{ok:a,format:e.format||l,r:Math.min(255,Math.max(n.r,0)),g:Math.min(255,Math.max(n.g,0)),b:Math.min(255,Math.max(n.b,0)),a:t}}const To="[-\\+]?\\d+%?",$o="[-\\+]?\\d*\\.\\d+%?",me="(?:"+$o+")|(?:"+To+")",Nt="[\\s|\\(]+("+me+")[,|\\s]+("+me+")[,|\\s]+("+me+")\\s*\\)?",ct="[\\s|\\(]+("+me+")[,|\\s]+("+me+")[,|\\s]+("+me+")[,|\\s]+("+me+")\\s*\\)?",ie={CSS_UNIT:new RegExp(me),rgb:new RegExp("rgb"+Nt),rgba:new RegExp("rgba"+ct),hsl:new RegExp("hsl"+Nt),hsla:new RegExp("hsla"+ct),hsv:new RegExp("hsv"+Nt),hsva:new RegExp("hsva"+ct),cmyk:new RegExp("cmyk"+ct),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/};function Oo(e){if(e=e.trim().toLowerCase(),e.length===0)return!1;let n=!1;if(qt[e])e=qt[e],n=!0;else if(e==="transparent")return{r:0,g:0,b:0,a:0,format:"name"};let t=ie.rgb.exec(e);return t?{r:t[1],g:t[2],b:t[3]}:(t=ie.rgba.exec(e),t?{r:t[1],g:t[2],b:t[3],a:t[4]}:(t=ie.hsl.exec(e),t?{h:t[1],s:t[2],l:t[3]}:(t=ie.hsla.exec(e),t?{h:t[1],s:t[2],l:t[3],a:t[4]}:(t=ie.hsv.exec(e),t?{h:t[1],s:t[2],v:t[3]}:(t=ie.hsva.exec(e),t?{h:t[1],s:t[2],v:t[3],a:t[4]}:(t=ie.cmyk.exec(e),t?{c:t[1],m:t[2],y:t[3],k:t[4]}:(t=ie.hex8.exec(e),t?{r:ee(t[1]),g:ee(t[2]),b:ee(t[3]),a:ur(t[4]),format:n?"name":"hex8"}:(t=ie.hex6.exec(e),t?{r:ee(t[1]),g:ee(t[2]),b:ee(t[3]),format:n?"name":"hex"}:(t=ie.hex4.exec(e),t?{r:ee(t[1]+t[1]),g:ee(t[2]+t[2]),b:ee(t[3]+t[3]),a:ur(t[4]+t[4]),format:n?"name":"hex8"}:(t=ie.hex3.exec(e),t?{r:ee(t[1]+t[1]),g:ee(t[2]+t[2]),b:ee(t[3]+t[3]),format:n?"name":"hex"}:!1))))))))))}function te(e){return typeof e=="number"?!Number.isNaN(e):ie.CSS_UNIT.test(e)}class D{constructor(n="",t={}){if(n instanceof D)return n;typeof n=="number"&&(n=Ao(n)),this.originalInput=n;const r=Io(n);this.originalInput=n,this.r=r.r,this.g=r.g,this.b=r.b,this.a=r.a,this.roundA=Math.round(100*this.a)/100,this.format=t.format??r.format,this.gradientType=t.gradientType,this.r<1&&(this.r=Math.round(this.r)),this.g<1&&(this.g=Math.round(this.g)),this.b<1&&(this.b=Math.round(this.b)),this.isValid=r.ok}isDark(){return this.getBrightness()<128}isLight(){return!this.isDark()}getBrightness(){const n=this.toRgb();return(n.r*299+n.g*587+n.b*114)/1e3}getLuminance(){const n=this.toRgb();let t,r,i;const s=n.r/255,a=n.g/255,l=n.b/255;return s<=.03928?t=s/12.92:t=Math.pow((s+.055)/1.055,2.4),a<=.03928?r=a/12.92:r=Math.pow((a+.055)/1.055,2.4),l<=.03928?i=l/12.92:i=Math.pow((l+.055)/1.055,2.4),.2126*t+.7152*r+.0722*i}getAlpha(){return this.a}setAlpha(n){return this.a=rr(n),this.roundA=Math.round(100*this.a)/100,this}isMonochrome(){const{s:n}=this.toHsl();return n===0}toHsv(){const n=sr(this.r,this.g,this.b);return{h:n.h*360,s:n.s,v:n.v,a:this.a}}toHsvString(){const n=sr(this.r,this.g,this.b),t=Math.round(n.h*360),r=Math.round(n.s*100),i=Math.round(n.v*100);return this.a===1?`hsv(${t}, ${r}%, ${i}%)`:`hsva(${t}, ${r}%, ${i}%, ${this.roundA})`}toHsl(){const n=ir(this.r,this.g,this.b);return{h:n.h*360,s:n.s,l:n.l,a:this.a}}toHslString(){const n=ir(this.r,this.g,this.b),t=Math.round(n.h*360),r=Math.round(n.s*100),i=Math.round(n.l*100);return this.a===1?`hsl(${t}, ${r}%, ${i}%)`:`hsla(${t}, ${r}%, ${i}%, ${this.roundA})`}toHex(n=!1){return or(this.r,this.g,this.b,n)}toHexString(n=!1){return"#"+this.toHex(n)}toHex8(n=!1){return Co(this.r,this.g,this.b,this.a,n)}toHex8String(n=!1){return"#"+this.toHex8(n)}toHexShortString(n=!1){return this.a===1?this.toHexString(n):this.toHex8String(n)}toRgb(){return{r:Math.round(this.r),g:Math.round(this.g),b:Math.round(this.b),a:this.a}}toRgbString(){const n=Math.round(this.r),t=Math.round(this.g),r=Math.round(this.b);return this.a===1?`rgb(${n}, ${t}, ${r})`:`rgba(${n}, ${t}, ${r}, ${this.roundA})`}toPercentageRgb(){const n=t=>`${Math.round(K(t,255)*100)}%`;return{r:n(this.r),g:n(this.g),b:n(this.b),a:this.a}}toPercentageRgbString(){const n=t=>Math.round(K(t,255)*100);return this.a===1?`rgb(${n(this.r)}%, ${n(this.g)}%, ${n(this.b)}%)`:`rgba(${n(this.r)}%, ${n(this.g)}%, ${n(this.b)}%, ${this.roundA})`}toCmyk(){return{...ar(this.r,this.g,this.b)}}toCmykString(){const{c:n,m:t,y:r,k:i}=ar(this.r,this.g,this.b);return`cmyk(${n}, ${t}, ${r}, ${i})`}toName(){if(this.a===0)return"transparent";if(this.a<1)return!1;const n="#"+or(this.r,this.g,this.b,!1);for(const[t,r]of Object.entries(qt))if(n===r)return t;return!1}toString(n){const t=!!n;n=n??this.format;let r=!1;const i=this.a<1&&this.a>=0;return!t&&i&&(n.startsWith("hex")||n==="name")?n==="name"&&this.a===0?this.toName():this.toRgbString():(n==="rgb"&&(r=this.toRgbString()),n==="prgb"&&(r=this.toPercentageRgbString()),(n==="hex"||n==="hex6")&&(r=this.toHexString()),n==="hex3"&&(r=this.toHexString(!0)),n==="hex4"&&(r=this.toHex8String(!0)),n==="hex8"&&(r=this.toHex8String()),n==="name"&&(r=this.toName()),n==="hsl"&&(r=this.toHslString()),n==="hsv"&&(r=this.toHsvString()),n==="cmyk"&&(r=this.toCmykString()),r||this.toHexString())}toNumber(){return(Math.round(this.r)<<16)+(Math.round(this.g)<<8)+Math.round(this.b)}clone(){return new D(this.toString())}lighten(n=10){const t=this.toHsl();return t.l+=n/100,t.l=ut(t.l),new D(t)}brighten(n=10){const t=this.toRgb();return t.r=Math.max(0,Math.min(255,t.r-Math.round(255*-(n/100)))),t.g=Math.max(0,Math.min(255,t.g-Math.round(255*-(n/100)))),t.b=Math.max(0,Math.min(255,t.b-Math.round(255*-(n/100)))),new D(t)}darken(n=10){const t=this.toHsl();return t.l-=n/100,t.l=ut(t.l),new D(t)}tint(n=10){return this.mix("white",n)}shade(n=10){return this.mix("black",n)}desaturate(n=10){const t=this.toHsl();return t.s-=n/100,t.s=ut(t.s),new D(t)}saturate(n=10){const t=this.toHsl();return t.s+=n/100,t.s=ut(t.s),new D(t)}greyscale(){return this.desaturate(100)}spin(n){const t=this.toHsl(),r=(t.h+n)%360;return t.h=r<0?360+r:r,new D(t)}mix(n,t=50){const r=this.toRgb(),i=new D(n).toRgb(),s=t/100,a={r:(i.r-r.r)*s+r.r,g:(i.g-r.g)*s+r.g,b:(i.b-r.b)*s+r.b,a:(i.a-r.a)*s+r.a};return new D(a)}analogous(n=6,t=30){const r=this.toHsl(),i=360/t,s=[this];for(r.h=(r.h-(i*n>>1)+720)%360;--n;)r.h=(r.h+i)%360,s.push(new D(r));return s}complement(){const n=this.toHsl();return n.h=(n.h+180)%360,new D(n)}monochromatic(n=6){const t=this.toHsv(),{h:r}=t,{s:i}=t;let{v:s}=t;const a=[],l=1/n;for(;n--;)a.push(new D({h:r,s:i,v:s})),s=(s+l)%1;return a}splitcomplement(){const n=this.toHsl(),{h:t}=n;return[this,new D({h:(t+72)%360,s:n.s,l:n.l}),new D({h:(t+216)%360,s:n.s,l:n.l})]}onBackground(n){const t=this.toRgb(),r=new D(n).toRgb(),i=t.a+r.a*(1-t.a);return new D({r:(t.r*t.a+r.r*r.a*(1-t.a))/i,g:(t.g*t.a+r.g*r.a*(1-t.a))/i,b:(t.b*t.a+r.b*r.a*(1-t.a))/i,a:i})}triad(){return this.polyad(3)}tetrad(){return this.polyad(4)}polyad(n){const t=this.toHsl(),{h:r}=t,i=[this],s=360/n;for(let a=1;a<n;a++)i.push(new D({h:(r+a*s)%360,s:t.s,l:t.l}));return i}equals(n){const t=new D(n);return this.format==="cmyk"||t.format==="cmyk"?this.toCmykString()===t.toCmykString():this.toRgbString()===t.toRgbString()}}function jo(e){const{a:n,h:t,l:r,s:i}=new D(e).toHsl(),s=`hsl(${Math.round(t)} ${Math.round(i*100)}% ${Math.round(r*100)}%)`;return n<1?`${s} ${n}`:s}function Ht(e){if(e===null||typeof e!="object")return!1;const n=Object.getPrototypeOf(e);return n!==null&&n!==Object.prototype&&Object.getPrototypeOf(n)!==null||Symbol.iterator in e?!1:Symbol.toStringTag in e?Object.prototype.toString.call(e)==="[object Module]":!0}function Lt(e,n,t=".",r){if(!Ht(n))return Lt(e,{},t,r);const i=Object.assign({},n);for(const s in e){if(s==="__proto__"||s==="constructor")continue;const a=e[s];a!=null&&(r&&r(i,s,a,t)||(Array.isArray(a)&&Array.isArray(i[s])?i[s]=[...a,...i[s]]:Ht(a)&&Ht(i[s])?i[s]=Lt(a,i[s],(t?`${t}.`:"")+s.toString(),r):i[s]=a))}return i}function Po(e){return(...n)=>n.reduce((t,r)=>Lt(t,r,"",e),{})}const ft=Po();function lr(e,n,t){return typeof e!="object"||e===null||!n?t:n.split(".").filter(r=>r!=="").reduce((r,i)=>typeof r!="object"||r===null?t:r[i]!==void 0?r[i]:t,e)}const Do={theme:{colorDestructive:"hsl(348 100% 61%)",colorPrimary:"hsl(212 100% 45%)",colorSuccess:"hsl(144 57% 58%)",colorWarning:"hsl(42 84% 61%)"},sidebar:{collapse:!1},app:{locale:"zh-CN",name:"Minilo Adminss",logo:"",defaultHomePath:"/"},transition:{progress:!0}};let cr=class{constructor({prefix:n="",storageType:t="localStorage"}={}){this.prefix=n,this.storage=t==="localStorage"?window.localStorage:window.sessionStorage}clear(){const n=[];for(let t=0;t<this.storage.length;t++){const r=this.storage.key(t);r&&r.startsWith(this.prefix)&&n.push(r)}n.forEach(t=>this.storage.removeItem(t))}clearExpiredItems(){for(let n=0;n<this.storage.length;n++){const t=this.storage.key(n);if(t&&t.startsWith(this.prefix)){const r=t.replace(this.prefix,"");this.getItem(r)}}}getItem(n,t=null){const r=this.getFullKey(n),i=this.storage.getItem(r);if(!i)return t;try{const s=JSON.parse(i);return s.expiry&&Date.now()>s.expiry?(this.storage.removeItem(r),t):s.value}catch(s){return console.error(`Error parsing item with key "${r}":`,s),this.storage.removeItem(r),t}}removeItem(n){const t=this.getFullKey(n);this.storage.removeItem(t)}setItem(n,t,r){const i=this.getFullKey(n),s={expiry:r?Date.now()+r:void 0,value:t};try{this.storage.setItem(i,JSON.stringify(s))}catch(a){console.error(`Error setting item with key "${i}":`,a)}}getFullKey(n){return`${this.prefix}-${n}`}};function Bo(e=""){if(typeof e!="string")throw new TypeError("Color should be string!");const n=/^#?([\da-f]{2})([\da-f]{2})([\da-f]{2})$/i.exec(e);if(n)return n.splice(1).map(r=>Number.parseInt(r,16));const t=/^#?([\da-f])([\da-f])([\da-f])$/i.exec(e);if(t)return t.splice(1).map(r=>Number.parseInt(r+r,16));if(e.includes(","))return e.split(",").map(r=>Number.parseInt(r));throw new Error("Invalid color format! Use #ABC or #AABBCC or r,g,b")}function Ro(e){return"#"+e.map(n=>`0${n.toString(16).toUpperCase()}`.slice(-2)).join("")}function qo(e,n){return e.map(t=>Math.round(t+(255-t)*n))}function No(e,n){return e.map(t=>Math.round(t*n))}const He=e=>n=>qo(n,e),Le=e=>n=>No(n,e),Ho={50:He(.95),100:He(.9),200:He(.75),300:He(.6),400:He(.3),500:e=>e,600:Le(.9),700:Le(.6),800:Le(.45),900:Le(.3),950:Le(.2)};function Lo(e,n=Ho){const t={},r=Bo(e);for(const[i,s]of Object.entries(n))t[i]=Ro(s(r));return t}function Vo(e,n="__minilo-styles__"){const t=document.querySelector(`#${n}`)||document.createElement("style");t.id=n;let r=":root {";for(const i in e)Object.prototype.hasOwnProperty.call(e,i)&&(r+=`${i}: ${e[i]};`);r+="}",t.textContent=r,document.querySelector(`#${n}`)||setTimeout(()=>{document.head.append(t)})}function zo(e){const n={};return e.forEach(({alias:t,color:r,name:i})=>{if(r){const s=Lo(new D(r).toHexString());let a=s[500];Object.keys(s).forEach(l=>{const f=s[l];if(f){const c=jo(f);n[`--${i}-${l}`]=c,t&&(n[`--${t}-${l}`]=c),l==="500"&&(a=c)}}),t&&a&&(n[`--${t}`]=a)}}),n}function Uo(e){const n=e?.theme??{};(Reflect.has(n,"colorPrimary")||Reflect.has(n,"colorDestructive")||Reflect.has(n,"colorSuccess")||Reflect.has(n,"colorWarning"))&&Wo(e)}function Wo(e){if(!e.theme)return;const{colorDestructive:n,colorPrimary:t,colorSuccess:r,colorWarning:i}=e.theme,s=zo([{color:t,name:"primary"},{alias:"warning",color:i,name:"yellow"},{alias:"success",color:r,name:"green"},{alias:"destructive",color:n,name:"red"}]);Object.entries({"--green-500":"--success","--primary-500":"--primary","--red-500":"--destructive","--yellow-500":"--warning"}).forEach(([a,l])=>{const f=s[a];f&&document.documentElement.style.setProperty(l,f)}),Vo(s)}const fr="config";let Go=class{constructor(){this.isInitialized=!1,this.state=zi({...this.loadConfig()}),this.cache=new cr}initConfig({config:n,namespace:t}){if(this.isInitialized)return;this.cache=new cr({prefix:t});const r=ft({},n,Do),i=ft({},this.loadConfig(),r);this.updateConfig(i),this.isInitialized=!0}updateConfig(n){const t=ft({},n,wn(this.state));Object.assign(this.state,t),Uo(this.state),this.saveConfig(this.state)}saveConfig(n){this.cache?.setItem(fr,n)}loadConfig(){return this.cache?.getItem(fr)}getConfig(){return Ui(this.state)}};const Ko=new Go;Ko.getConfig();const Qo=(e={},n=()=>{},t=()=>{})=>{const r=ft({},e,{baseURL:"/",timeout:1e4,headers:{"Content-Type":"application/json;charset=utf-8"}}),i=Mt.create(r);return i.interceptors.request.use(s=>(n(s),Jo(s),s),s=>Promise.reject(s)),i.interceptors.response.use(s=>{t(s),hr(s.config);const a=s.data;return console.log(a),a.code===200?Promise.resolve({...s,...a,data:a.data}):(ge.error(a.msg||"\u8BF7\u6C42\u5931\u8D25"),Promise.reject(new Error(a.msg||"\u8BF7\u6C42\u5931\u8D25")))},s=>{if(console.log("\u8BF7\u6C42\u53D1\u751F\u9519\u8BEF>>>>>>>>>>>>>>>>>>\uFF1A",s),s.config&&hr(s.config),Mt.isCancel(s))return console.warn("\u8BF7\u6C42\u5DF2\u88AB\u53D6\u6D88:",s.message),Promise.reject(new Error("\u8BF7\u6C42\u5DF2\u88AB\u53D6\u6D88"));if(!window.navigator.onLine)return ge.error("\u7F51\u7EDC\u8FDE\u63A5\u5DF2\u65AD\u5F00\uFF0C\u8BF7\u68C0\u67E5\u7F51\u7EDC"),Promise.reject(new Error("\u7F51\u7EDC\u8FDE\u63A5\u5DF2\u65AD\u5F00"));const{response:a}=s;if(a)switch(a.status){case 401:ge.error("\u8EAB\u4EFD\u9A8C\u8BC1\u5931\u8D25\uFF0C\u8BF7\u91CD\u65B0\u767B\u5F55");break;case 403:ge.error("\u6CA1\u6709\u6743\u9650\u6267\u884C\u6B64\u64CD\u4F5C");break;case 404:ge.error("\u8BF7\u6C42\u7684\u8D44\u6E90\u4E0D\u5B58\u5728");break;case 500:ge.error("\u670D\u52A1\u5668\u5185\u90E8\u9519\u8BEF");break;default:ge.error(`\u8BF7\u6C42\u9519\u8BEF: ${a.status}`)}else ge.error("\u8BF7\u6C42\u5931\u8D25\uFF0C\u8BF7\u7A0D\u540E\u91CD\u8BD5");return Promise.reject(s)}),i},$e=new Map,dr=e=>{const{method:n,url:t,params:r,data:i}=e,s=r?JSON.stringify(r):"",a=i?JSON.stringify(i):"";return`${n}-${t}-${s}-${a}`},Jo=e=>{const n=dr(e);$e.has(n)&&($e.get(n).cancel(`\u91CD\u590D\u8BF7\u6C42\u88AB\u53D6\u6D88: ${e.url}`),$e.delete(n));const t=Mt.CancelToken.source();e.cancelToken=t.token,$e.set(n,t)},hr=e=>{const n=dr(e);$e.has(n)&&$e.delete(n)},Yo=ne({props:{render:{type:Function},scope:{type:Object,default:()=>{}}},setup(e){return()=>e.render(e.scope.row,e.scope.$index)}});var Xo=ne({name:"MlSearchTable",inheritAttrs:!1,__name:"index",props:Pe(vo,{search:{type:Object},searchModifiers:{}}),emits:Pe(["reset"],["update:search"]),setup(e,{expose:n,emit:t}){const r=kt(e,"search"),i=e,s=vn(),a=t,l=Qo({baseURL:"",headers:i.headers}),f=Q([]),c=Q(!1),h=Q({currentPage:1,pageSize:20,total:100}),p=async(x=!0)=>{try{x&&(h.value.currentPage=1);const m={...r.value};i.showPagination&&Object.assign(m,{pageSize:h.value.pageSize,currentPage:h.value.currentPage});const V=i.paramsHandler?i.paramsHandler(m):m,A=[Bt.GET,Bt.DELETE].includes(i.methodType)?{params:V}:V;c.value=!0;const B=await l[i.methodType](i.url,A);f.value=lr(B,i.responseDataField),i.showPagination&&(h.value.total=lr(B,i.responseTotalField))}catch(m){console.log(m)}finally{c.value=!1}},y=()=>{p()},g=()=>{a("reset"),p()};Me(()=>{p()}),n({handleSearch:p});const k=Object.keys(s).reduce((x,m)=>(m.startsWith("on")&&(x[m]=s[m]),x),{});return(x,m)=>{const V=Wi("loading");return S(),T("div",{class:U(b(P)("search-table"))},[W(tr,z({onSubmit:y,onReset:g,modelValue:r.value,"onUpdate:modelValue":m[0]||(m[0]=A=>r.value=A)},x.searchProps),Ze({_:2},[Ae(x.searchProps.slots,A=>({name:A.prop,fn:C(()=>[q(x.$slots,A.prop)])}))]),1040,["modelValue"]),q(x.$slots,"prefix"),_t((S(),H(b(ts),z(Gi(b(k)),{class:b(P)("search-table","content")},x.tableProps,{border:!0,data:f.value}),{default:C(()=>[(S(!0),T(Fe,null,Ae(x.columns,(A,B)=>(S(),H(b(ns),z({key:B},{ref_for:!0},A),{default:C(O=>[A.slotName?q(x.$slots,A.slotName,{key:0,index:O.$index,row:O.row}):N("v-if",!0),A.render?(S(),H(b(Yo),{key:1,scope:O,render:A.render},null,8,["scope","render"])):N("v-if",!0)]),_:2},1040))),128))]),_:3},16,["class","data"])),[[V,c.value,void 0,{lock:!0}]]),re("div",{class:U(b(P)("search-table","pagination"))},[x.showPagination?(S(),H(b(rs),{key:0,onChange:m[1]||(m[1]=A=>p(!1)),style:{"margin-top":"10px"},background:"",layout:"total, sizes, prev, pager, next, jumper","page-size":h.value.pageSize,"onUpdate:pageSize":m[2]||(m[2]=A=>h.value.pageSize=A),"current-page":h.value.currentPage,"onUpdate:currentPage":m[3]||(m[3]=A=>h.value.currentPage=A),total:h.value.total},null,8,["page-size","current-page","total"])):N("v-if",!0)],2),q(x.$slots,"suffix")],2)}}});const pr=xe(Xo),gr=xe(tr);var Zo=ne({name:"RenderTooltip",__name:"renderTooltip",props:{render:Function,item:Object},setup(e){const n=e,t=()=>n.render(n?.item);return(r,i)=>(S(),H(kn(t)))}}),ea=ne({name:"RenderLabel",__name:"renderLabel",props:{render:Function,item:Object},setup(e){const n=e,t=()=>n.render(n?.item);return(r,i)=>(S(),H(kn(t)))}});/*! Element Plus Icons Vue v2.3.1 */var ta=ne({name:"Warning",__name:"warning",setup(e){return(n,t)=>(S(),T("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1024 1024"},[re("path",{fill:"currentColor",d:"M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m0 832a384 384 0 0 0 0-768 384 384 0 0 0 0 768m48-176a48 48 0 1 1-96 0 48 48 0 0 1 96 0m-48-464a32 32 0 0 1 32 32v288a32 32 0 0 1-64 0V288a32 32 0 0 1 32-32"})]))}}),na=ta;const ra={key:0},ia={key:0},sa={key:1},oa={key:0},aa={key:0},ua={key:1},la={key:0},ca={key:1},fa={key:0};var da=ne({name:"MlDetail",__name:"index",props:{descColumn:{type:Number,required:!1,default:4},dataList:{type:Object,required:!1,default:()=>({})},listTypeInfo:{type:Object,required:!1,default:()=>({})},descData:{type:Array,required:!0,default:()=>[]},isColon:{type:Boolean,required:!1,default:!0},isLabelBold:{type:Boolean,required:!1,default:!0}},setup(e){const n=(t,r,i="value",s="label")=>r.find(a=>a[i]===t)?.[s];return(t,r)=>{const i=En("el-icon"),s=En("el-tooltip");return S(),H(b(is),z({class:b(P)("detail")},t.$attrs,{column:e.descColumn}),{default:C(()=>[(S(!0),T(Fe,null,Ae(e.descData,(a,l)=>(S(),H(b(ss),z({key:l,span:a.span||1},{ref_for:!0},{...a.bind,...t.$attrs}),{label:C(()=>[a.labelRender?(S(),H(ea,{key:0,render:a.labelRender,item:a},null,8,["render","item"])):(S(),T("span",{key:1,style:De({fontWeight:e.isLabelBold?"bold":""})},[de(Z(a.label),1),e.isColon?(S(),T("span",ra,"\uFF1A")):N("v-if",!0)],4))]),default:C(()=>[a.slotName?q(t.$slots,a.slotName,{key:0}):(S(),T("span",{key:1,class:U(b(P)("detail","tip"))},[a.tooltip?(S(),H(s,z({key:0,ref_for:!0},t.$attrs,{placement:a.placement||"bottom"}),Ze({default:C(()=>[re("span",null,[a.filters&&a.filters.list?(S(),T("span",ia,Z(n(a.fieldName?e.dataList[a.fieldName]:void 0,e.listTypeInfo[a.filters.list],a.filters.key||"value",a.filters.label||"label")),1)):(S(),T("span",sa,[de(Z(a.value),1),a.unit&&a.value?(S(),T("span",oa,Z(a.unit),1)):N("v-if",!0)])),W(i,{size:a.iconSize,color:a.iconColor,style:{cursor:"pointer","margin-left":"2px",top:"1px"}},{default:C(()=>[W(b(na))]),_:1},8,["size","color"])])]),_:2},[a.tooltip?{name:"content",fn:C(()=>[typeof a.tooltip=="string"?(S(),T("span",aa,Z(a.tooltip),1)):typeof a.tooltip=="function"?(S(),H(Zo,{key:1,render:a.tooltip,item:a},null,8,["render","item"])):N("v-if",!0)]),key:"0"}:void 0]),1040,["placement"])):(S(),T("span",ua,[a.filters&&a.filters.list?(S(),T("span",la,Z(n(a.fieldName?e.dataList[a.fieldName]:void 0,e.listTypeInfo[a.filters.list],a.filters.key||"value",a.filters.label||"label")),1)):(S(),T("span",ca,[de(Z(a.value),1),a.unit&&a.value?(S(),T("span",fa,Z(a.unit),1)):N("v-if",!0)]))]))],2))]),_:2},1040,["span"]))),128))]),_:3},16,["class","column"])}}});const mr=xe(da);var ha=ne({name:"MlButton",__name:"index",props:{time:{type:Number,required:!1,default:1e3},tip:{type:String,required:!1,default:""},placement:{type:String,required:!1,default:"top"},tipProps:{type:Object,required:!1,default:()=>({})},isDebounce:{type:Boolean,required:!1,default:!0}},emits:["click"],setup(e,{emit:n}){const t=e,r=n,i=Q(0),s=()=>{if(!t.isDebounce)return r("click");const a=new Date;a.getTime()-i.value>t.time&&r("click"),i.value=a.getTime()};return(a,l)=>e.tip?(S(),H(b(os),z({key:0,content:e.tip,placement:e.placement},e.tipProps),{default:C(()=>[W(b(Ie),z(a.$attrs,{class:b(P)("button","tip"),onClick:s}),{default:C(()=>[q(a.$slots,"default")]),_:3},16,["class"])]),_:3},16,["content","placement"])):(S(),H(b(Ie),z({key:1},a.$attrs,{onClick:s}),{default:C(()=>[q(a.$slots,"default")]),_:3},16))}});const br=xe(ha),pa=["data-index"];var ga=ne({name:"MlVirtualList",__name:"index",props:{height:{type:Number,required:!1,default:500},itemHeight:{type:Number,required:!1,default:50},estimatedItemHeight:{type:Number,required:!1,default:50},itemEqual:{type:Boolean,required:!1,default:!0},preLoadCount:{type:Number,required:!1,default:5},threshold:{type:Number,required:!1,default:200},dataSource:{type:Array,required:!1,default:()=>[]},loading:{type:Boolean,required:!1},finished:{type:Boolean,required:!1}},emits:["load-more"],setup(e,{emit:n}){const t=e,r=n,i=X(()=>t.height),s=X(()=>t.itemHeight),a=X(()=>t.estimatedItemHeight),l=X(()=>t.preLoadCount),f=Q(null),c=Q([]),h=Q({start:0,end:10});let p=null,y=!1,g=null,k=null;const x=()=>{const w=t.dataSource,_=t.itemEqual?s.value:a.value;c.value=w.map((I,M)=>({index:M,height:_,top:M*_,bottom:(M+1)*_}))},m=X(()=>{if(t.itemEqual)return t.dataSource.length*s.value;const w=c.value.length,_=c.value[w-1];return w>0&&_?_.bottom:0}),V=X(()=>{const w=h.value.start;return t.itemEqual?w*s.value:w>0&&c.value[w]?c.value[w].top:0}),A=X(()=>t.dataSource.slice(h.value.start,h.value.end).map((w,_)=>({data:w,index:h.value.start+_}))),B=w=>{let _=0,I=c.value.length-1,M=0;for(;_<=I;){M=Math.floor((_+I)/2);const F=c.value[M];if(!F)break;const R=F.bottom,j=F.top;if(j<=w&&R>w)return M;j>w?I=M-1:_=M+1}return 0},O=()=>{if(t.itemEqual)return;const w=f.value?.querySelectorAll(".virtual-list-item");!w||w.length===0||w.forEach(_=>{const I=_.getBoundingClientRect().height,M=parseInt(_.dataset.index||"0"),F=c.value[M];if(F&&(F.height||0)!==I){F.height=I,F.bottom=F.top+I;for(let R=M+1;R<c.value.length;R++){const j=c.value[R],oe=c.value[R-1];j&&oe&&(j.top=oe.bottom,j.bottom=j.top+j.height)}}})},he=()=>{t.itemEqual||(g&&g.disconnect(),g=new ResizeObserver(w=>{let _=!1;const I=[];for(const M of w){const F=M.target,R=parseInt(F.dataset.index||"0"),j=c.value[R];if(!j)continue;const oe=M.contentRect.height,ue=j.height;Math.abs(oe-ue)>1&&(_=!0,I.push(R),j.height=oe,j.bottom=j.top+oe)}_&&(k!==null&&clearTimeout(k),k=window.setTimeout(()=>{const M=Math.min(...I);for(let F=M+1;F<c.value.length;F++){const R=c.value[F],j=c.value[F-1];R&&j&&(R.top=j.bottom,R.bottom=R.top+R.height)}I.length=0,k=null},16))}),E())},E=()=>{if(!g||t.itemEqual)return;g.disconnect();const w=f.value?.querySelectorAll(".virtual-list-item");w&&w.forEach(_=>{g.observe(_)})},L=()=>{const w=f.value;if(!w)return;const _=w.scrollTop,I=w.clientHeight;let M=0,F=0;if(t.itemEqual){M=Math.floor(_/s.value);const j=Math.ceil(I/s.value);F=M+j}else{if(c.value.length===0)return;M=B(_);let j=0;const oe=I+l.value*a.value;for(let ue=M;ue<c.value.length;ue++){const Ve=c.value[ue];if(!Ve)break;if(j+=Ve.height,j>=oe){F=ue+1;break}F=ue+1}}const R=10;F-M>R&&(F=M+R),h.value={start:Math.max(0,M-l.value),end:Math.min(t.dataSource.length,F+l.value)}},se=()=>{const w=f.value;if(!w||t.loading||t.finished)return;const _=w.scrollTop,I=w.clientHeight;m.value-_-I<t.threshold&&r("load-more")},ae=()=>{y||(y=!0,p=requestAnimationFrame(()=>{O(),L(),t.finished!==void 0&&!t.finished&&se(),y=!1}))};return Ce(()=>t.dataSource.length,(w,_=0)=>{if(w!==_){if(t.itemEqual)x();else if(w>_){const I=a.value;for(let M=_;M<w;M++){const F=c.value[M-1];c.value.push({index:M,height:I,top:F?F.bottom:0,bottom:(F?F.bottom:0)+I})}}else c.value=c.value.slice(0,w);requestAnimationFrame(()=>{O(),L(),t.itemEqual||E()})}},{immediate:!0}),Ce(()=>h.value,()=>{!t.itemEqual&&g&&(p!==null&&cancelAnimationFrame(p),p=requestAnimationFrame(()=>{E(),p=null}))},{deep:!0}),Me(()=>{x(),he(),requestAnimationFrame(()=>{O(),L()})}),Sn(()=>{p!==null&&cancelAnimationFrame(p),k!==null&&clearTimeout(k),g&&(g.disconnect(),g=null)}),(w,_)=>(S(),T("div",{class:U(b(P)("virtual-list"))},[re("div",{class:U(b(P)("virtual-list","container")),ref_key:"containerRef",ref:f,style:De({height:i.value+"px",overflow:"auto"}),onScroll:ae},[re("div",{class:U(b(P)("virtual-list","phantom")),style:De({height:m.value+"px"})},[re("div",{class:U(b(P)("virtual-list","content")),style:De({transform:`translateY(${V.value}px)`})},[(S(!0),T(Fe,null,Ae(A.value,I=>(S(),T("div",{key:I.index,class:U(b(P)("virtual-list","item")),"data-index":I.index,style:De(e.itemEqual?{height:s.value+"px"}:{})},[q(w.$slots,"default",{item:I.data,index:I.index})],14,pa))),128))],6)],6),N(" \u52A0\u8F7D\u72B6\u6001\u63D0\u793A\uFF08\u5728\u5BB9\u5668\u5185\u90E8\uFF09 "),t.loading?(S(),T("div",{key:0,class:U(b(P)("virtual-list","loading-tip"))},[q(w.$slots,"loading",{},()=>[_[0]||(_[0]=re("span",{class:"loading-spinner"},null,-1)),_[1]||(_[1]=re("span",null,"\u52A0\u8F7D\u4E2D...",-1))])],2)):N("v-if",!0),N(" \u52A0\u8F7D\u5B8C\u6210\u63D0\u793A "),t.finished&&!t.loading?(S(),T("div",{key:1,class:U(b(P)("virtual-list","finished-tip"))},[q(w.$slots,"finished",{},()=>[_[2]||(_[2]=de("\u5DF2\u52A0\u8F7D\u5168\u90E8\u6570\u636E",-1))])],2)):N("v-if",!0)],38)],2))}});const yr=xe(ga);var ma=ne({name:"MlNumberRangeInput",__name:"index",props:Pe({label:{type:String,required:!0},disabled:{type:Boolean,required:!1},separator:{type:String,required:!1},inputProps:{type:Object,required:!1},minInputProps:{type:Object,required:!1},maxInputProps:{type:Object,required:!1}},{modelValue:{type:Array,default:()=>[null,null]},modelModifiers:{}}),emits:["update:modelValue"],setup(e){const n=e,t=Ki(),r=kt(e,"modelValue"),i=X({get:()=>r.value?.[0]??null,set:f=>{r.value=[f,r.value?.[1]??null]}}),s=X({get:()=>r.value?.[1]??null,set:f=>{r.value=[r.value?.[0]??null,f]}}),a=X(()=>({type:"number",placeholder:`\u8BF7\u8F93\u5165${n.label}\u6700\u5C0F\u503C`,disabled:n.disabled,...n.inputProps,...n.minInputProps})),l=X(()=>({type:"number",placeholder:`\u8BF7\u8F93\u5165${n.label}\u6700\u5927\u503C`,disabled:n.disabled,...n.inputProps,...n.maxInputProps}));return(f,c)=>(S(),T("div",{class:U(b(P)("number-range-input"))},[W(b(Ct),z({modelValue:i.value,"onUpdate:modelValue":c[0]||(c[0]=h=>i.value=h),modelModifiers:{number:!0}},a.value),Ze({_:2},[b(t)["min-prefix"]?{name:"prefix",fn:C(()=>[q(f.$slots,"min-prefix")]),key:"0"}:void 0,b(t)["min-suffix"]?{name:"suffix",fn:C(()=>[q(f.$slots,"min-suffix")]),key:"1"}:void 0,b(t)["min-prepend"]?{name:"prepend",fn:C(()=>[q(f.$slots,"min-prepend")]),key:"2"}:void 0,b(t)["min-append"]?{name:"append",fn:C(()=>[q(f.$slots,"min-append")]),key:"3"}:void 0]),1040,["modelValue"]),re("span",{class:U(b(P)("number-range-input","separator"))},Z(n.separator||"\u81F3"),3),W(b(Ct),z({modelValue:s.value,"onUpdate:modelValue":c[1]||(c[1]=h=>s.value=h),modelModifiers:{number:!0}},l.value),Ze({_:2},[b(t)["max-prefix"]?{name:"prefix",fn:C(()=>[q(f.$slots,"max-prefix")]),key:"0"}:void 0,b(t)["max-suffix"]?{name:"suffix",fn:C(()=>[q(f.$slots,"max-suffix")]),key:"1"}:void 0,b(t)["max-prepend"]?{name:"prepend",fn:C(()=>[q(f.$slots,"max-prepend")]),key:"2"}:void 0,b(t)["max-append"]?{name:"append",fn:C(()=>[q(f.$slots,"max-append")]),key:"3"}:void 0]),1040,["modelValue"])],2))}});const vr=xe(ma);var xr=Object.freeze({__proto__:null,MlButton:br,MlChart:Tn,MlDetail:mr,MlNumberRangeInput:vr,MlSearch:gr,MlSearchTable:pr,MlVirtualList:yr});const Vt=Object.values(xr),zt=Object.keys(xr);console.log(Vt,zt);var ba={install:e=>{Vt.forEach((n,t)=>{e.component(zt[t],n)})}};export{br as MlButton,Tn as MlChart,mr as MlDetail,vr as MlNumberRangeInput,gr as MlSearch,pr as MlSearchTable,yr as MlVirtualList,Vt as MsUIComponentsInstance,zt as MsUIComponentsName,ba as default};
|
|
2
|
+
//# sourceMappingURL=index.full.min.mjs.map
|