@rft-rc/recycle-ui 0.0.2-rc.5 → 0.0.2-rc.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/calendar/index.vue.d.ts +3 -0
- package/dist/components/calendar/index.vue.d.ts.map +1 -1
- package/dist/components/calendar/panel-content.vue.d.ts +3 -0
- package/dist/components/calendar/panel-content.vue.d.ts.map +1 -1
- package/dist/components/search-area/index.vue.d.ts +5 -3
- package/dist/components/search-area/index.vue.d.ts.map +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +1187 -983
- package/dist/index.mjs.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -32,6 +32,8 @@ interface Props {
|
|
|
32
32
|
};
|
|
33
33
|
/** 区间模式下是否显示底部按钮(确定/取消),为 false 时区间完整后自动确认 */
|
|
34
34
|
showFooter?: boolean;
|
|
35
|
+
/** 区间模式下,结束日期是否自动加一天(选中日期为结束日期时,实际返回的结束日期会加一天) */
|
|
36
|
+
endDateOffset?: boolean;
|
|
35
37
|
}
|
|
36
38
|
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
37
39
|
"update:modelValue": (value: CalendarValue) => any;
|
|
@@ -56,6 +58,7 @@ declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
56
58
|
bottomInfo?: string;
|
|
57
59
|
};
|
|
58
60
|
showFooter: boolean;
|
|
61
|
+
endDateOffset: boolean;
|
|
59
62
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
60
63
|
export default _default;
|
|
61
64
|
//# sourceMappingURL=index.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.vue.d.ts","sourceRoot":"","sources":["../../../src/components/calendar/index.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.vue.d.ts","sourceRoot":"","sources":["../../../src/components/calendar/index.vue"],"names":[],"mappings":"AAoiBA,KAAK,aAAa,GAAG,MAAM,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,GAAG,IAAI,CAAC;AAEtD,UAAU,OAAO;IACf,IAAI,EAAE,IAAI,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,KAAK,YAAY,GAAG,SAAS,GAAG,OAAO,CAAC;AAExC,UAAU,KAAK;IACb,6BAA6B;IAC7B,UAAU,CAAC,EAAE,aAAa,CAAC;IAC3B,2CAA2C;IAC3C,KAAK,CAAC,EAAE,OAAO,GAAG,MAAM,CAAC;IACzB,6CAA6C;IAC7C,IAAI,CAAC,EAAE,YAAY,CAAC;IACpB,aAAa;IACb,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,cAAc;IACd,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,YAAY;IACZ,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,aAAa;IACb,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,aAAa;IACb,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,aAAa;IACb,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,IAAI,KAAK,OAAO,CAAC;IACvC,cAAc;IACd,SAAS,CAAC,EAAE,CAAC,GAAG,EAAE,OAAO,KAAK;QAAE,IAAI,CAAC,EAAE,MAAM,CAAC;QAAC,UAAU,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IACrE,8CAA8C;IAC9C,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,kDAAkD;IAClD,aAAa,CAAC,EAAE,OAAO,CAAC;CACzB;;;;;;;;;;WAbS,MAAM;UANP,YAAY;iBAEL,MAAM;gBANP,aAAa;eAQd,OAAO;WANX,OAAO,GAAG,MAAM;aAUd,MAAM;aAEN,MAAM;kBAED,CAAC,IAAI,EAAE,IAAI,KAAK,OAAO;eAE1B,CAAC,GAAG,EAAE,OAAO,KAAK;QAAE,IAAI,CAAC,EAAE,MAAM,CAAC;QAAC,UAAU,CAAC,EAAE,MAAM,CAAA;KAAE;gBAEvD,OAAO;mBAEJ,OAAO;;AA+lBzB,wBAQG"}
|
|
@@ -19,6 +19,7 @@ interface Props {
|
|
|
19
19
|
bottomInfo?: string;
|
|
20
20
|
};
|
|
21
21
|
showFooter?: boolean;
|
|
22
|
+
maxRangeDays?: number;
|
|
22
23
|
}
|
|
23
24
|
declare const _default: import("vue").DefineComponent<Props, {
|
|
24
25
|
yearScrollRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
@@ -26,10 +27,12 @@ declare const _default: import("vue").DefineComponent<Props, {
|
|
|
26
27
|
clear: () => any;
|
|
27
28
|
"select-day": (day: DayItem) => any;
|
|
28
29
|
confirm: () => any;
|
|
30
|
+
"shortcut-select": (range: [string, string]) => any;
|
|
29
31
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
30
32
|
onClear?: (() => any) | undefined;
|
|
31
33
|
"onSelect-day"?: ((day: DayItem) => any) | undefined;
|
|
32
34
|
onConfirm?: (() => any) | undefined;
|
|
35
|
+
"onShortcut-select"?: ((range: [string, string]) => any) | undefined;
|
|
33
36
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
34
37
|
export default _default;
|
|
35
38
|
//# sourceMappingURL=panel-content.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"panel-content.vue.d.ts","sourceRoot":"","sources":["../../../src/components/calendar/panel-content.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"panel-content.vue.d.ts","sourceRoot":"","sources":["../../../src/components/calendar/panel-content.vue"],"names":[],"mappings":"AAisCA,UAAU,OAAO;IACf,IAAI,EAAE,IAAI,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,UAAU,KAAK;IACb,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,IAAI,KAAK,OAAO,CAAC;IACvC,SAAS,CAAC,EAAE,CAAC,GAAG,EAAE,OAAO,KAAK;QAAE,IAAI,CAAC,EAAE,MAAM,CAAC;QAAC,UAAU,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IACrE,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;;;;;;;;;;;;;;AAmmCD,wBAQG"}
|
|
@@ -8,10 +8,10 @@ export interface FilterItem {
|
|
|
8
8
|
label: string;
|
|
9
9
|
/** 筛选项唯一标识 */
|
|
10
10
|
key: string;
|
|
11
|
-
/** 选项列表 */
|
|
12
|
-
options: FilterOption[] | string[];
|
|
13
11
|
/** 筛选类型:single 单选,multiple 多选,tree-single 树形单选,tree-multiple 树形多选,input 输入框,calendar 日期选择器(默认 multiple) */
|
|
14
|
-
type
|
|
12
|
+
type: 'single' | 'multiple' | 'tree-single' | 'tree-multiple' | 'input' | 'calendar';
|
|
13
|
+
/** 选项列表 */
|
|
14
|
+
options?: FilterOption[] | string[];
|
|
15
15
|
/** 多选时的列数(默认 2) */
|
|
16
16
|
column?: number;
|
|
17
17
|
/** 格式化 value,默认返回原始数据。为 string 时,会作为 key 从原始数据中获取值,相当于 (d) => d[format]。为函数时,以函数返回结果作为 value */
|
|
@@ -41,6 +41,8 @@ export interface FilterItem {
|
|
|
41
41
|
text?: string;
|
|
42
42
|
bottomInfo?: string;
|
|
43
43
|
};
|
|
44
|
+
/** 区间模式下,结束日期是否自动加一天(选中日期为结束日期时,实际返回的结束日期会加一天) */
|
|
45
|
+
endDateOffset?: boolean;
|
|
44
46
|
};
|
|
45
47
|
}
|
|
46
48
|
type __VLS_Props = {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.vue.d.ts","sourceRoot":"","sources":["../../../src/components/search-area/index.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.vue.d.ts","sourceRoot":"","sources":["../../../src/components/search-area/index.vue"],"names":[],"mappings":"AAguCA,MAAM,WAAW,YAAY;IAC3B,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,GAAG,CAAC;IACX,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACpB;AAED,MAAM,WAAW,UAAU;IACzB,YAAY;IACZ,KAAK,EAAE,MAAM,CAAC;IACd,cAAc;IACd,GAAG,EAAE,MAAM,CAAC;IACZ,2GAA2G;IAC3G,IAAI,EAAE,QAAQ,GAAG,UAAU,GAAG,aAAa,GAAG,eAAe,GAAG,OAAO,GAAG,UAAU,CAAC;IACrF,WAAW;IACX,OAAO,CAAC,EAAE,YAAY,EAAE,GAAG,MAAM,EAAE,CAAC;IACpC,mBAAmB;IACnB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,gGAAgG;IAChG,MAAM,CAAC,EAAE,CAAC,CAAC,IAAI,EAAE,YAAY,KAAK,GAAG,CAAC,GAAG,MAAM,CAAC;IAChD,yDAAyD;IACzD,UAAU,CAAC,EAAE,CAAC,CAAC,IAAI,EAAE,YAAY,KAAK,GAAG,CAAC,GAAG,MAAM,CAAC;IACpD,qCAAqC;IACrC,YAAY,CAAC,EAAE,CAAC,CAAC,IAAI,EAAE,YAAY,KAAK,GAAG,CAAC,GAAG,MAAM,CAAC;IACtD,kCAAkC;IAClC,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,oCAAoC;IACpC,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,uCAAuC;IACvC,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,uCAAuC;IACvC,cAAc,CAAC,EAAE;QACf,2CAA2C;QAC3C,KAAK,CAAC,EAAE,OAAO,GAAG,MAAM,CAAC;QACzB,4BAA4B;QAC5B,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,4BAA4B;QAC5B,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,aAAa;QACb,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,IAAI,KAAK,OAAO,CAAC;QACvC,cAAc;QACd,SAAS,CAAC,EAAE,CAAC,GAAG,EAAE,GAAG,KAAK;YAAE,IAAI,CAAC,EAAE,MAAM,CAAC;YAAC,UAAU,CAAC,EAAE,MAAM,CAAA;SAAE,CAAC;QACjE,kDAAkD;QAClD,aAAa,CAAC,EAAE,OAAO,CAAC;KACzB,CAAC;CACH;AAED,KAAK,WAAW,GAAG;IACjB,YAAY;IACZ,KAAK,EAAE,UAAU,EAAE,CAAC;IACpB,wBAAwB;IACxB,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IACjC,aAAa;IACb,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,yDAAyD;IACzD,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB,CAAC;AAgnCF,QAAA,IAAI,QAAQ,QAAW,EAAE,QAAQ;;0BAhUV,GAAG;CAgUmB,CAAE;AAC/C,KAAK,WAAW,GAAG,EAAE,GACnB;KAAG,CAAC,IAAI,WAAW,CAAC,OAAO,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG;CAAE,CAAC;AAmD5E,QAAA,MAAM,eAAe;IAnfnB,cAAc;;;;IAEd,aAAa;;;;;;;;;gBAzrBA,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC;WAFzB,UAAU,EAAE;cAIR,OAAO;iBAEJ,OAAO;6EA+qCrB,CAAC;wBACkB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;AAAzE,wBAA0E;AAa1E,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
package/dist/index.cjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue"),He={key:0,class:"rc-icon__unicode"},qe=e.defineComponent({name:"rc-icon",__name:"index",props:{name:{},size:{default:16},color:{default:""},spin:{type:Boolean,default:!1},code:{default:""}},setup(t){const r=t,d=e.inject(he,{}),o=e.computed(()=>(d==null?void 0:d.iconClass)||"iconfont"),p=e.computed(()=>r.name||""),g=e.computed(()=>typeof r.size=="number"?`${r.size}px`:r.size||"16px"),m=e.computed(()=>({fontSize:g.value,color:r.color||void 0,lineHeight:1,fontFamily:(d==null?void 0:d.iconClass)||"iconfont"})),v=e.computed(()=>{const i=r.code;if(i==null||i===""||i===0)return"";if(typeof i=="number")return String.fromCharCode(i);const y=String(i).replace(/^0x/i,""),$=parseInt(y,16);return Number.isNaN($)?"":String.fromCharCode($)});return e.onMounted(()=>{if(typeof window>"u")return;const i=d&&d.iconCssUrl||Re.iconCssUrl;if(!i)return;const y=`link[rel="stylesheet"][data-rcui-icon="true"][href="${i}"]`;if(!document.head.querySelector(y)){const _=document.createElement("link");_.rel="stylesheet",_.href=i,_.setAttribute("data-rcui-icon","true"),document.head.appendChild(_)}}),(i,y)=>(e.openBlock(),e.createElementBlock("i",{class:e.normalizeClass(["rc-icon",[o.value,p.value,{"rc-icon--spin":t.spin}]]),style:e.normalizeStyle(m.value),"aria-hidden":"true"},[v.value?(e.openBlock(),e.createElementBlock("span",He,e.toDisplayString(v.value),1)):e.createCommentVNode("",!0)],6))}}),H=(t,r)=>{const d=t.__vccOpts||t;for(const[o,p]of r)d[o]=p;return d},L=H(qe,[["__scopeId","data-v-3857a892"]]),Je=["disabled"],Qe={key:0,class:"rc-button__spinner"},Xe={key:0,class:"rc-button__icon rc-button__icon--prefix"},Ze={key:2,class:"rc-button__icon rc-button__icon--suffix"},et=e.defineComponent({__name:"index",props:{type:{default:"default"},size:{default:"medium"},mode:{default:void 0},block:{type:Boolean,default:!1},label:{default:""},round:{type:[Number,String,Boolean],default:6},disabled:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},preIcon:{default:""},suffixIcon:{default:""}},emits:["click"],setup(t,{emit:r}){const d=t,o=r,p=m=>{!d.disabled&&!d.loading&&o("click",m)},g=e.computed(()=>{const m=d.round;return typeof m=="boolean"?m?"999px":"6px":typeof m=="number"?`${m}px`:String(m)});return(m,v)=>(e.openBlock(),e.createElementBlock("button",{class:e.normalizeClass(["rc-button",[`rc-button--${t.type}`,`rc-button--${t.size}`,t.mode?`rc-button--${t.mode}`:"",{"is-block":t.block,"is-disabled":t.disabled,"is-loading":t.loading}]]),style:e.normalizeStyle({borderRadius:g.value}),disabled:t.disabled||t.loading,onClick:p},[t.loading?(e.openBlock(),e.createElementBlock("span",Qe)):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[t.preIcon||m.$slots.preIcon?(e.openBlock(),e.createElementBlock("span",Xe,[e.renderSlot(m.$slots,"preIcon",{},()=>[t.preIcon?(e.openBlock(),e.createBlock(L,{key:0,name:t.preIcon},null,8,["name"])):e.createCommentVNode("",!0)],!0)])):e.createCommentVNode("",!0)],64)),e.renderSlot(m.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(t.label),1)],!0),!t.loading&&(t.suffixIcon||m.$slots.suffixIcon)?(e.openBlock(),e.createElementBlock("span",Ze,[e.renderSlot(m.$slots,"suffixIcon",{},()=>[t.suffixIcon?(e.openBlock(),e.createBlock(L,{key:0,name:t.suffixIcon},null,8,["name"])):e.createCommentVNode("",!0)],!0)])):e.createCommentVNode("",!0)],14,Je))}}),q=H(et,[["__scopeId","data-v-3ed3109f"]]);q.name="rc-button";function Se(t){return t.component(q.name,q),t}const tt={class:"rc-desc-item__value"},nt=e.defineComponent({name:"rc-descriptions-item",__name:"item",props:{label:{default:""},value:{default:""},labelWidth:{default:""},span:{default:1}},setup(t){const r=t;e.inject("rcDescItemWidth",void 0),e.inject("rcDescSingleWidth",""),e.inject("rcDescGap","0px");const d=e.inject("rcDescGapPx",0),o=e.inject("rcDescColCount",1),p=e.inject("rcDescLabelWidth",""),g=e.computed(()=>{const i=typeof r.span=="string"?parseInt(r.span,10):r.span,y=typeof(o==null?void 0:o.value)=="number"?o.value:o,$=!Number.isNaN(i)&&i>0?i:1;return Math.min($,y||1)}),m=e.computed(()=>{const i=typeof(o==null?void 0:o.value)=="number"?o.value:o,y=typeof(d==null?void 0:d.value)=="number"?d.value:d,$=g.value;if(!i||i<=1||$>=i)return"100%";const _=(i-1)*y,h=($-1)*y;return`calc((100% - ${_}px) * ${$} / ${i} + ${h}px)`}),v=e.computed(()=>{const i=typeof(p==null?void 0:p.value)=="string"?p.value:p,y=r.labelWidth!==""?r.labelWidth:i||"";return y?{width:typeof y=="number"?`${y}px`:String(y),flex:"0 0 auto"}:{}});return(i,y)=>(e.openBlock(),e.createElementBlock("div",{class:"rc-desc-item",style:e.normalizeStyle({width:m.value,flex:`0 0 ${m.value}`})},[e.createElementVNode("div",{class:"rc-desc-item__label",style:e.normalizeStyle(v.value)},[e.renderSlot(i.$slots,"label",{},()=>[e.createTextVNode(e.toDisplayString(t.label),1)],!0)],4),e.createElementVNode("div",tt,[e.renderSlot(i.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(t.value),1)],!0)])],4))}}),le=H(nt,[["__scopeId","data-v-970d0b99"]]),at={class:"rc-descriptions"},lt={key:0,class:"rc-descriptions__title"},ot=e.defineComponent({name:"rc-descriptions",__name:"index",props:{title:{},column:{default:2},gap:{default:4},labelWidth:{default:""},data:{default:()=>[]},keyMap:{}},setup(t){const r=t,d=e.ref(null),o=e.computed(()=>typeof r.gap=="number"?`${r.gap}px`:String(r.gap)),p=e.computed(()=>{const y=typeof r.column=="string"?Number.parseInt(r.column,10):r.column??1;return!Number.isNaN(y)&&y>0?y:1}),g=e.ref("100%"),m=e.ref("100%");e.watchEffect(()=>{const y=p.value;if(y<=1)g.value="100%",m.value="100%";else{const $=typeof r.gap=="number"?r.gap:parseFloat(String(r.gap))||0,h=`calc((100% - ${(y-1)*$}px) / ${y})`;m.value=h,g.value=h}}),e.provide("rcDescItemWidth",g),e.provide("rcDescSingleWidth",m),e.provide("rcDescColCount",p),e.provide("rcDescGapPx",e.computed(()=>typeof r.gap=="number"?r.gap:parseFloat(String(r.gap))||0));const v=e.computed(()=>r.labelWidth===""||r.labelWidth===void 0?"":typeof r.labelWidth=="number"?`${r.labelWidth}px`:String(r.labelWidth));e.provide("rcDescLabelWidth",v),e.provide("rcDescGap",e.computed(()=>typeof r.gap=="number"?`${r.gap}px`:String(r.gap)));const i=e.computed(()=>{var _,h,b;const y=((_=r.keyMap)==null?void 0:_.key)??"label",$=((h=r.keyMap)==null?void 0:h.value)??"value";return(b=r.data)!=null&&b.length?r.data.map(S=>({label:S==null?void 0:S[y],value:S==null?void 0:S[$]})):[]});return(y,$)=>(e.openBlock(),e.createElementBlock("div",at,[y.$slots.title||t.title?(e.openBlock(),e.createElementBlock("div",lt,[e.renderSlot(y.$slots,"title",{},()=>[e.createTextVNode(e.toDisplayString(t.title),1)],!0)])):e.createCommentVNode("",!0),e.createElementVNode("div",{class:"rc-descriptions__body",style:e.normalizeStyle({gap:o.value}),ref_key:"wrapEl",ref:d},[i.value.length?(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:0},e.renderList(i.value,(_,h)=>(e.openBlock(),e.createBlock(le,{key:h,label:_.label,value:_.value,"label-width":t.labelWidth},null,8,["label","value","label-width"]))),128)):e.renderSlot(y.$slots,"default",{key:1},void 0,!0)],4)]))}}),ie=H(ot,[["__scopeId","data-v-5fcaa235"]]);ie.name="rc-descriptions";le.name="rc-descriptions-item";function $e(t){return t.component(ie.name,ie),t.component("RcDescriptions",ie),t.component(le.name,le),t.component("RcDescriptionsItem",le),t}const We=ie,Oe=le,rt={class:"rc-card__title"},ct={class:"rc-card__title-text"},st={key:0,class:"rc-card__status"},ut={key:1,class:"rc-card__divider"},it={key:2,class:"rc-card__action"},dt=e.defineComponent({name:"rc-card",__name:"index",props:{color:{default:"var(--rc-white)"},topBgColor:{default:"rgba(29, 133, 252, 0.05)"},title:{default:""},status:{default:""},statusColor:{default:"var(--rc-primary)"},round:{default:8},bordered:{type:Boolean,default:!1},elevation:{default:2},padding:{default:"16px"},gap:{default:12},width:{default:"100%"},height:{default:""}},setup(t){const r=t,d=e.computed(()=>{const v=typeof r.round=="boolean"?r.round?"12px":"0":typeof r.round=="number"?`${r.round}px`:String(r.round);return{backgroundColor:r.color||"var(--rc-white)",borderRadius:v,boxShadow:m(r.elevation),width:g(r.width),height:g(r.height)}}),o=e.computed(()=>r.padding||"16px"),p=e.computed(()=>typeof r.gap=="number"?`${r.gap}px`:String(r.gap));function g(v){return v==null||v===""?"":typeof v=="number"?`${v}px`:String(v)}function m(v){if(!v||v<=0)return"none";const i=4*v;return`0 ${Math.round(i/2)}px ${i}px rgba(0,0,0,0.06), 0 ${Math.round(i/4)}px ${Math.round(i/2)}px rgba(0,0,0,0.04)`}return(v,i)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["rc-card",[{"rc-card--bordered":t.bordered}]]),style:e.normalizeStyle(d.value)},[v.$slots.title||t.title||v.$slots.status||t.status?(e.openBlock(),e.createElementBlock("div",{key:0,class:"rc-card__top",style:e.normalizeStyle({backgroundColor:t.topBgColor||"rgba(29, 133, 252, 0.05)"})},[e.createElementVNode("div",rt,[e.renderSlot(v.$slots,"title",{},()=>[e.createElementVNode("span",ct,e.toDisplayString(t.title),1)],!0)]),v.$slots.status||t.status?(e.openBlock(),e.createElementBlock("div",st,[e.renderSlot(v.$slots,"status",{},()=>[e.createElementVNode("span",{class:"rc-card__status-text",style:e.normalizeStyle({color:t.statusColor||"var(--rc-primary)"})},e.toDisplayString(t.status),5)],!0)])):e.createCommentVNode("",!0)],4)):e.createCommentVNode("",!0),e.createElementVNode("div",{class:"rc-card__body",style:e.normalizeStyle({padding:o.value,gap:p.value})},[e.renderSlot(v.$slots,"content",{},()=>[e.renderSlot(v.$slots,"default",{},void 0,!0)],!0)],4),v.$slots.action?(e.openBlock(),e.createElementBlock("div",ut)):e.createCommentVNode("",!0),v.$slots.action?(e.openBlock(),e.createElementBlock("div",it,[e.renderSlot(v.$slots,"action",{},void 0,!0)])):e.createCommentVNode("",!0)],6))}}),de=H(dt,[["__scopeId","data-v-a7b95214"]]);de.name="rc-card";const ft="RcCard";function Ee(t){return t.component(de.name,de),t.component(ft,de),t}const mt={key:0,class:"rc-toast__mask"},vt={class:"rc-toast__content"},pt={key:0,class:"rc-toast__spinner"},yt={key:1,class:"rc-toast__icon rc-toast__icon--success"},ht={key:2,class:"rc-toast__icon rc-toast__icon--fail"},kt={class:"rc-toast__text"},gt=e.defineComponent({__name:"index",props:{message:{default:""},type:{default:"text"},duration:{default:2e3},mask:{type:Boolean,default:!1},onAfterLeave:{}},setup(t,{expose:r}){const d=t,o=e.ref(!0);let p;function g(){p&&(clearTimeout(p),p=null)}function m(){g(),o.value=!1}return r({close:m}),e.onMounted(()=>{d.duration&&d.duration>0&&(p=setTimeout(()=>{m()},d.duration))}),e.onUnmounted(()=>{g()}),(v,i)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[(e.openBlock(),e.createBlock(e.Teleport,{to:"body"},[e.createVNode(e.Transition,{name:"rc-toast-fade",onAfterLeave:t.onAfterLeave},{default:e.withCtx(()=>[o.value?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(["rc-toast",[`rc-toast--${t.type}`]])},[t.mask?(e.openBlock(),e.createElementBlock("div",mt)):e.createCommentVNode("",!0),e.createElementVNode("div",vt,[t.type==="loading"?(e.openBlock(),e.createElementBlock("div",pt)):t.type==="success"?(e.openBlock(),e.createElementBlock("div",yt)):t.type==="fail"?(e.openBlock(),e.createElementBlock("div",ht)):e.createCommentVNode("",!0),e.createElementVNode("div",kt,e.toDisplayString(t.message),1)])],2)):e.createCommentVNode("",!0)]),_:1},8,["onAfterLeave"])])),e.renderSlot(v.$slots,"default",{},void 0,!0)],64))}}),fe=H(gt,[["__scopeId","data-v-d234c9c5"]]);let ne=null,oe=null;function Ye(){ne&&(ne.unmount(),ne=null),oe&&(document.body.removeChild(oe),oe=null)}function _t(t){const r=typeof t=="string"?{message:t}:t||{};Ye(),oe=document.createElement("div"),document.body.appendChild(oe);const d={message:r.message,type:r.type??"text",duration:r.duration??2e3,mask:r.mask??!1,onAfterLeave:()=>{var o;Ye(),(o=r.onClose)==null||o.call(r)}};return ne=e.createApp(fe,d),ne.mount(oe),{close:je}}function je(){var t,r,d;ne&&((d=(r=(t=ne._instance)==null?void 0:t.exposed)==null?void 0:r.close)==null||d.call(r))}fe.name="rc-toast";function Pe(t){return t.component(fe.name,fe),t}const Bt={class:"rc-message",role:"alert","aria-live":"polite"},Ct={class:"rc-message__content"},bt=e.defineComponent({__name:"index",setup(t,{expose:r}){const d=e.reactive([]);let o=1;function p(m){const v=d.findIndex(i=>i.id===m);v>=0&&d.splice(v,1)}function g(m,v,i){const y=o++;return d.push({id:y,type:m,content:v,duration:i}),i>0&&window.setTimeout(()=>p(y),i),y}return r({add:g,remove:p}),(m,v)=>(e.openBlock(),e.createElementBlock("div",Bt,[e.createVNode(e.TransitionGroup,{name:"rc-message-fade",tag:"div"},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(d,i=>(e.openBlock(),e.createElementBlock("div",{key:i.id,class:e.normalizeClass(["rc-message__item",`rc-message--${i.type}`])},[e.createElementVNode("span",Ct,e.toDisplayString(i.content),1)],2))),128))]),_:1})]))}}),Vt=H(bt,[["__scopeId","data-v-87811df0"]]);let Z=null,X=null;function St(){var r;if(Z&&X)return;Z=document.createElement("div"),document.body.appendChild(Z);const t=e.createVNode(Vt,{});e.render(t,Z),X=(r=t.component)==null?void 0:r.exposed}function ae(t,r,d){var p;St();const o=typeof d=="number"?d:t==="loading"?0:2e3;return(p=X==null?void 0:X.add)==null?void 0:p.call(X,t,r,o)}const Ge={open(t){return ae(t.type||"info",t.content,t.duration)},info(t,r){return ae("info",t,r)},success(t,r){return ae("success",t,r)},warning(t,r){return ae("warning",t,r)},error(t,r){return ae("error",t,r)},loading(t,r){return ae("loading",t,r)},destroy(){Z&&(e.render(null,Z),Z.remove(),Z=null,X=null)}};function De(t){return t.config.globalProperties.$message=Ge,t}L.name="rc-icon";function xe(t){return t.component(L.name,L),t.component("RcIcon",L),t}const $t={class:"rc-popup__content"},Et=e.defineComponent({name:"rc-popup",__name:"index",props:{modelValue:{type:Boolean,default:!1},position:{default:"center"},overlay:{type:Boolean,default:!0},overlayClass:{default:""},overlayStyle:{default:void 0},closeable:{type:Boolean,default:!1},closeIconPosition:{default:"top-right"},closeIcon:{default:"icon_close"},round:{type:Boolean,default:!1},popupStyle:{default:void 0},closeOnClickOverlay:{type:Boolean,default:!0},lockScroll:{type:Boolean,default:!0}},emits:["update:modelValue","open","close","click-overlay"],setup(t,{expose:r,emit:d}){const o=t,p=d,g=e.ref(),m=e.ref(o.modelValue);e.watch(()=>o.modelValue,s=>{m.value=s,s?(p("open"),o.lockScroll&&$()):(p("close"),o.lockScroll&&_())},{immediate:!0}),e.watch(m,s=>{s!==o.modelValue&&p("update:modelValue",s)});const v=e.computed(()=>`rc-popup-slide-${o.position}`),i=e.computed(()=>({...o.popupStyle||{}}));let y=!1;function $(){y||(y=!0,document.body.style.overflow="hidden")}function _(){y&&(y=!1,document.body.style.overflow="")}function h(){p("click-overlay"),o.closeOnClickOverlay&&S()}function b(){S()}function S(){m.value=!1}function B(){m.value=!0}return e.onUnmounted(()=>{_()}),r({open:B,close:S,visible:m}),(s,J)=>(e.openBlock(),e.createBlock(e.Teleport,{to:"body"},[e.createVNode(e.Transition,{name:"rc-popup-fade"},{default:e.withCtx(()=>[m.value&&o.overlay?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(["rc-popup__overlay",{"rc-popup__overlay--transparent":o.overlayClass==="transparent"}]),style:e.normalizeStyle(o.overlayStyle),onClick:h},null,6)):e.createCommentVNode("",!0)]),_:1}),e.createVNode(e.Transition,{name:v.value},{default:e.withCtx(()=>[m.value?(e.openBlock(),e.createElementBlock("div",{key:0,ref_key:"popupRef",ref:g,class:e.normalizeClass(["rc-popup",[`rc-popup--${t.position}`,{"rc-popup--round":t.round}]]),style:e.normalizeStyle(i.value),onClick:J[0]||(J[0]=e.withModifiers(()=>{},["stop"]))},[t.closeable?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(["rc-popup__close",`rc-popup__close--${t.closeIconPosition}`]),onClick:b},[e.createVNode(L,{name:t.closeIcon,class:"rc-popup__close-icon"},null,8,["name"])],2)):e.createCommentVNode("",!0),e.createElementVNode("div",$t,[e.renderSlot(s.$slots,"default",{},void 0,!0)])],6)):e.createCommentVNode("",!0)]),_:3},8,["name"])]))}}),re=H(Et,[["__scopeId","data-v-f1696784"]]);re.name="rc-popup";const Dt="RcPopup";function Ne(t){return t.component(re.name,re),t.component(Dt,re),t}const xt={key:0,class:"rc-calendar__header"},Nt={class:"rc-calendar__header-title"},wt={class:"rc-calendar__month-title"},It={class:"rc-calendar__weekdays"},Mt={class:"rc-calendar__days"},Rt=["onClick"],Tt={class:"rc-calendar__day-content"},Ft={class:"rc-calendar__day-text"},zt={key:0,class:"rc-calendar__day-bottom"},At={key:1,class:"rc-calendar__footer"},Lt={key:0,class:"rc-calendar__month-picker-overlay"},Yt={class:"rc-calendar__month-picker"},Pt={class:"rc-calendar__month-picker-header"},Ut={class:"rc-calendar__month-picker-title"},Wt={key:0},Ot={key:0,class:"rc-calendar__year-picker-content"},jt={class:"rc-calendar__year-picker-grid"},Gt=["onClick"],Kt={key:1,class:"rc-calendar__month-picker-content"},Ht=["onClick"],ye=48,Y=3,Ve=7,qt=e.defineComponent({__name:"panel-content",props:{showTitle:{type:Boolean},title:{},range:{type:Boolean},selectedDate:{},rangeStart:{},rangeEnd:{},minDate:{},maxDate:{},disabledDate:{type:Function},formatter:{type:Function},showFooter:{type:Boolean}},emits:["select-day","clear","confirm"],setup(t,{expose:r,emit:d}){const o=t,p=d,g=["日","一","二","三","四","五","六"];function m(a){if(!a)return null;const u=new Date(a);return isNaN(u.getTime())?null:u}function v(a){const u=a.getFullYear(),f=String(a.getMonth()+1).padStart(2,"0"),V=String(a.getDate()).padStart(2,"0");return`${u}-${f}-${V}`}const i=e.ref(new Date);e.watch(()=>[o.selectedDate,o.rangeStart],()=>{if(o.range&&o.rangeStart){const a=m(o.rangeStart);a&&(i.value=a)}else if(!o.range&&o.selectedDate){const a=m(o.selectedDate);a&&(i.value=a)}},{immediate:!0});function y(a){const u=new Date;return a.getFullYear()===u.getFullYear()&&a.getMonth()===u.getMonth()&&a.getDate()===u.getDate()}function $(a){if(!o.rangeStart||!o.rangeEnd)return!1;const u=v(a),f=o.rangeStart,V=o.rangeEnd;return u>f&&u<V}function _(a){if(o.disabledDate&&o.disabledDate(a))return!0;const u=v(a);return!!(o.minDate&&u<o.minDate||o.maxDate&&u>o.maxDate)}function h(a,u){const f=new Date(a,u,1),V=new Date(a,u+1,0),D=f.getDay(),W=V.getDate(),j=[],se=new Date(a,u,0).getDate();for(let R=D-1;R>=0;R--){const T={date:new Date(a,u-1,se-R),type:"prev-month",text:String(se-R)};if(o.formatter){const F=o.formatter(T);F.text&&(T.text=F.text),F.bottomInfo&&(T.bottomInfo=F.bottomInfo)}j.push(T)}for(let R=1;R<=W;R++){const T={date:new Date(a,u,R),type:"current-month",text:String(R)};if(o.formatter){const F=o.formatter(T);F.text&&(T.text=F.text),F.bottomInfo&&(T.bottomInfo=F.bottomInfo)}j.push(T)}const pe=42-j.length;for(let R=1;R<=pe;R++){const T={date:new Date(a,u+1,R),type:"next-month",text:String(R)};if(o.formatter){const F=o.formatter(T);F.text&&(T.text=F.text),F.bottomInfo&&(T.bottomInfo=F.bottomInfo)}j.push(T)}return j}const b=e.computed(()=>{const a=i.value.getFullYear(),u=i.value.getMonth();return h(a,u)}),S=e.computed(()=>{const a=i.value.getFullYear(),u=i.value.getMonth()+1;return`${a}年${u}月`});function B(a){const u=[];if(a.type!=="current-month"&&u.push("is-other-month"),y(a.date)&&u.push("is-today"),_(a.date))return u.push("is-disabled"),u;const f=v(a.date);return o.range?(o.rangeStart===f&&u.push("is-start"),o.rangeEnd===f&&u.push("is-end"),$(a.date)&&u.push("is-in-range")):o.selectedDate===f&&u.push("is-selected"),u}const s=e.computed(()=>!!(o.rangeStart&&o.rangeEnd)),J=e.computed(()=>o.rangeStart&&o.rangeEnd?2:o.rangeStart||o.rangeEnd?1:0);function ee(a){if(!o.minDate&&!o.maxDate)return!1;const u=o.minDate?m(o.minDate):null,f=o.maxDate?m(o.maxDate):null;return!!(u&&a<u.getFullYear()||f&&a>f.getFullYear())}function Q(a,u){const f=o.minDate?m(o.minDate):null,V=o.maxDate?m(o.maxDate):null;if(f){const D=f.getFullYear(),W=f.getMonth()+1;if(a<D||a===D&&u<W)return!0}if(V){const D=V.getFullYear(),W=V.getMonth()+1;if(a>D||a===D&&u>W)return!0}return!1}const z=e.ref(!1),w=e.ref("year"),I=e.ref(i.value.getFullYear()),G=e.ref(i.value.getMonth()+1),P=e.ref(),U=e.ref(1900),M=e.ref(1920),x=e.ref(1900),k=e.ref(2100),C=e.computed(()=>{const a=[],f=Math.floor((U.value-x.value)/Y)-3,V=Math.ceil((M.value-x.value)/Y)+3,D=x.value+Math.max(0,f)*Y,W=x.value+V*Y-1;for(let j=D;j<=W;j++)a.push(j);return a});e.watch(()=>i.value,a=>{I.value=a.getFullYear(),G.value=a.getMonth()+1},{immediate:!0});function E(){if(!P.value)return;const a=P.value.scrollTop,f=Math.max(0,Math.floor(a/ye)),V=x.value+f*Y,D=V+Ve*Y-1;V<x.value?x.value=V-100:D>k.value&&(k.value=D+100),(V!==U.value||D!==M.value)&&(U.value=V,M.value=D)}function A(){I.value=i.value.getFullYear(),G.value=i.value.getMonth()+1,w.value="year",z.value=!0;const a=I.value;a<x.value?x.value=Math.floor(a/100)*100:a>k.value&&(k.value=Math.ceil(a/100)*100+99),e.nextTick(()=>{if(P.value){const u=Math.floor((a-x.value)/Y),f=Math.max(0,u-2);U.value=x.value+f*Y,M.value=U.value+Ve*Y-1,O(a)}})}function O(a){if(!P.value)return;a<x.value?x.value=Math.floor(a/100)*100:a>k.value&&(k.value=Math.ceil(a/100)*100+99);const u=Math.floor((a-x.value)/Y),f=u*ye;P.value.scrollTop=f;const V=Math.max(0,u-2);U.value=x.value+V*Y,M.value=U.value+Ve*Y-1}function me(){const a=new Date(i.value);a.setMonth(a.getMonth()-1),i.value=a}function ke(){const a=new Date(i.value);a.setMonth(a.getMonth()+1),i.value=a}function ge(a){ee(a)||(I.value=a,w.value="month")}function _e(a){Q(I.value,a)||(G.value=a,Be())}function Be(){const a=new Date(i.value);a.setFullYear(I.value),a.setMonth(G.value-1),i.value=a,z.value=!1,w.value="year"}function ve(a){p("select-day",a)}function Ce(){p("clear")}function n(){p("confirm")}function l(){z.value=!1}function c(a){w.value=a}return r({yearScrollRef:P}),(a,u)=>(e.openBlock(),e.createElementBlock("div",null,[t.showTitle?(e.openBlock(),e.createElementBlock("div",xt,[e.createElementVNode("div",Nt,e.toDisplayString(t.title),1)])):e.createCommentVNode("",!0),e.createElementVNode("div",wt,[e.createElementVNode("div",{class:"rc-calendar__nav-button",onClick:me},[e.createVNode(e.unref(L),{name:"icon_caret-left",class:"rc-calendar__nav-icon"})]),e.createElementVNode("div",{class:"rc-calendar__month-text",onClick:A},e.toDisplayString(S.value),1),e.createElementVNode("div",{class:"rc-calendar__nav-button",onClick:ke},[e.createVNode(e.unref(L),{name:"icon_caret-right",class:"rc-calendar__nav-icon"})])]),e.createElementVNode("div",It,[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(g,f=>e.createElementVNode("div",{key:f,class:"rc-calendar__weekday"},e.toDisplayString(f),1)),64))]),e.createElementVNode("div",Mt,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(b.value,(f,V)=>(e.openBlock(),e.createElementBlock("div",{key:V,class:e.normalizeClass(["rc-calendar__day",B(f)]),onClick:D=>ve(f)},[e.createElementVNode("div",Tt,[e.createElementVNode("span",Ft,e.toDisplayString(f.text),1),f.bottomInfo?(e.openBlock(),e.createElementBlock("span",zt,e.toDisplayString(f.bottomInfo),1)):e.createCommentVNode("",!0)])],10,Rt))),128))]),t.range&&t.showFooter?(e.openBlock(),e.createElementBlock("div",At,[e.createVNode(e.unref(q),{type:"default",class:"rc-calendar__footer-reset",onClick:Ce},{default:e.withCtx(()=>[...u[2]||(u[2]=[e.createTextVNode("取消",-1)])]),_:1}),e.createVNode(e.unref(q),{type:"primary",class:"rc-calendar__footer-confirm",disabled:!s.value,onClick:n},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(s.value?`确定(${J.value}项)`:"确定"),1)]),_:1},8,["disabled"])])):e.createCommentVNode("",!0),e.createVNode(e.Transition,{name:"rc-calendar-fade"},{default:e.withCtx(()=>[z.value?(e.openBlock(),e.createElementBlock("div",Lt,[e.createElementVNode("div",Yt,[e.createElementVNode("div",Pt,[e.createVNode(e.unref(q),{type:"default",mode:"text",size:"small",onClick:l},{default:e.withCtx(()=>[...u[3]||(u[3]=[e.createTextVNode("取消",-1)])]),_:1}),e.createElementVNode("div",Ut,[e.createElementVNode("span",{onClick:u[0]||(u[0]=f=>c("year"))},e.toDisplayString(I.value)+"年",1),w.value==="month"?(e.openBlock(),e.createElementBlock("span",Wt," - ")):e.createCommentVNode("",!0),w.value==="month"?(e.openBlock(),e.createElementBlock("span",{key:1,onClick:u[1]||(u[1]=f=>c("month"))},e.toDisplayString(G.value)+"月",1)):e.createCommentVNode("",!0)])]),w.value==="year"?(e.openBlock(),e.createElementBlock("div",Ot,[e.createElementVNode("div",{class:"rc-calendar__year-picker-scroll",ref_key:"yearScrollRef",ref:P,onScroll:E},[e.createElementVNode("div",{class:"rc-calendar__year-picker-spacer",style:e.normalizeStyle({height:`${Math.floor((U.value-x.value)/Y)*ye}px`})},null,4),e.createElementVNode("div",jt,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(C.value,f=>(e.openBlock(),e.createElementBlock("div",{key:f,class:e.normalizeClass(["rc-calendar__year-picker-item",{"is-selected":I.value===f,"is-disabled":ee(f)}]),onClick:V=>ge(f)},e.toDisplayString(f),11,Gt))),128))]),e.createElementVNode("div",{class:"rc-calendar__year-picker-spacer",style:e.normalizeStyle({height:`${Math.ceil((k.value-M.value)/Y)*ye}px`})},null,4)],544)])):e.createCommentVNode("",!0),w.value==="month"?(e.openBlock(),e.createElementBlock("div",Kt,[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(12,f=>e.createElementVNode("div",{key:f,class:e.normalizeClass(["rc-calendar__month-picker-item",{"is-selected":G.value===f,"is-disabled":Q(I.value,f)}]),onClick:V=>_e(f)},e.toDisplayString(f)+"月 ",11,Ht)),64))])):e.createCommentVNode("",!0)])])):e.createCommentVNode("",!0)]),_:1})]))}}),Ue=H(qt,[["__scopeId","data-v-2bbe8100"]]),Jt={class:"rc-calendar"},Qt=["placeholder"],Xt={key:1,class:"rc-calendar__panel"},Zt=e.defineComponent({name:"rc-calendar",__name:"index",props:{modelValue:{default:null},range:{type:[Boolean,Number],default:!1},mode:{default:"default"},placeholder:{default:"请选择日期"},showTitle:{type:Boolean,default:!0},title:{default:"选择日期"},minDate:{default:void 0},maxDate:{default:void 0},disabledDate:{type:Function,default:void 0},formatter:{type:Function,default:void 0},showFooter:{type:Boolean,default:!0}},emits:["update:modelValue","change","confirm"],setup(t,{emit:r}){const d=t,o=r,p=e.ref(),g=e.ref(),m=e.ref(!1),v=e.ref(""),i=e.computed(()=>d.range===!0||typeof d.range=="number"),y=e.computed(()=>typeof d.range=="number"?d.range:void 0),$=e.computed(()=>k=>{if(d.disabledDate&&d.disabledDate(k))return!0;if(y.value!==void 0&&h.value&&!b.value){const C=s(k);if(B(h.value)&&J(h.value,C)>y.value)return!0}return!1}),_=e.ref(null),h=e.ref(null),b=e.ref(null);e.watch(()=>d.modelValue,k=>{i.value?Array.isArray(k)&&k.length===2?(h.value=k[0],b.value=k[1]):(h.value=null,b.value=null):_.value=typeof k=="string"?k:null,S()},{immediate:!0});function S(){d.mode==="popup"&&(i.value?h.value&&b.value?v.value=`${h.value} ~ ${b.value}`:h.value?v.value=`${h.value} ~ `:v.value="":v.value=_.value||"")}function B(k){if(!k)return null;const C=new Date(k);return isNaN(C.getTime())?null:C}function s(k){const C=k.getFullYear(),E=String(k.getMonth()+1).padStart(2,"0"),A=String(k.getDate()).padStart(2,"0");return`${C}-${E}-${A}`}function J(k,C){const E=B(k),A=B(C);if(!E||!A)return 0;const O=Math.abs(A.getTime()-E.getTime());return Math.ceil(O/(1e3*60*60*24))}function ee(k){if(k.type!=="current-month"||d.disabledDate&&d.disabledDate(k.date))return;const C=s(k.date);if(!(d.minDate&&C<d.minDate)&&!(d.maxDate&&C>d.maxDate)){if(i.value)if(!h.value||h.value&&b.value)h.value=C,b.value=null;else{let E=h.value,A=C;if(C<h.value&&(A=h.value,E=C),h.value=E,b.value=A,h.value&&b.value){const O=[h.value,b.value];o("update:modelValue",O),o("change",O),d.showFooter||Q()}}else{_.value=C;const E=C;o("update:modelValue",E),o("change",E),d.mode&&I()}S()}}function Q(){if(h.value&&b.value){const k=[h.value,b.value];o("update:modelValue",k),o("change",k),o("confirm",k),I()}}function z(){i.value?(h.value=null,b.value=null):_.value=null;const k=null;o("update:modelValue",k),o("change",k),S()}function w(){m.value=!0}function I(){m.value=!1}function G(k){m.value=k}function P(){w()}function U(){d.mode==="popup"&&x()}function M(){m.value||w()}function x(){const k=v.value.trim();if(i.value){const C=k.split("~").map(E=>E.trim());if(C.length===2&&C[0]&&C[1]){const E=B(C[0]),A=B(C[1]);if(E&&A&&!isNaN(E.getTime())&&!isNaN(A.getTime())){h.value=s(E),b.value=s(A);const O=[h.value,b.value];o("update:modelValue",O),o("change",O);return}}}else{const C=B(k);if(C&&!isNaN(C.getTime())){_.value=s(C),o("update:modelValue",_.value),o("change",_.value);return}}S()}return(k,C)=>(e.openBlock(),e.createElementBlock("div",Jt,[t.mode==="popup"?(e.openBlock(),e.createElementBlock("div",{key:0,class:"rc-calendar__input",onClick:w},[e.withDirectives(e.createElementVNode("input",{ref_key:"inputRef",ref:p,"onUpdate:modelValue":C[0]||(C[0]=E=>v.value=E),type:"text",class:"rc-calendar__input-field",placeholder:t.placeholder,readonly:"",onFocus:P,onBlur:U,onInput:M},null,40,Qt),[[e.vModelText,v.value]]),e.createVNode(e.unref(L),{name:"icon_a-rili",class:"rc-calendar__input-icon"})])):e.createCommentVNode("",!0),t.mode==="default"?(e.openBlock(),e.createElementBlock("div",Xt,[e.createVNode(Ue,{"show-title":t.showTitle,title:t.title,range:i.value,"selected-date":_.value,"range-start":h.value,"range-end":b.value,"min-date":t.minDate,"max-date":t.maxDate,"disabled-date":$.value,formatter:t.formatter,"show-footer":!1,onSelectDay:ee,onClear:z,onConfirm:Q},null,8,["show-title","title","range","selected-date","range-start","range-end","min-date","max-date","disabled-date","formatter"])])):e.createCommentVNode("",!0),t.mode==="popup"?(e.openBlock(),e.createBlock(e.unref(re),{key:2,modelValue:m.value,"onUpdate:modelValue":[C[1]||(C[1]=E=>m.value=E),G],position:"bottom",overlay:!0,round:!0,"close-on-click-overlay":!0,"lock-scroll":!0},{default:e.withCtx(()=>[e.createElementVNode("div",{ref_key:"popupPanelRef",ref:g,class:"rc-calendar__panel"},[e.createVNode(Ue,{"show-title":t.showTitle,title:t.title,range:i.value,"selected-date":_.value,"range-start":h.value,"range-end":b.value,"min-date":t.minDate,"max-date":t.maxDate,"disabled-date":$.value,formatter:t.formatter,"show-footer":t.showFooter,onSelectDay:ee,onClear:z,onConfirm:Q},null,8,["show-title","title","range","selected-date","range-start","range-end","min-date","max-date","disabled-date","formatter","show-footer"])],512)]),_:1},8,["modelValue"])):e.createCommentVNode("",!0)]))}}),ce=H(Zt,[["__scopeId","data-v-2836ea57"]]);ce.name="rc-calendar";const en="RcCalendar";function we(t){return t.component(ce.name,ce),t.component(en,ce),t}const tn={class:"rc-search-area"},nn={class:"rc-search-area__bar"},an=["onClick"],ln={class:"rc-search-area__item-label"},on={class:"rc-search-area__panel-content"},rn={key:1,class:"rc-search-area__input-wrapper"},cn=["placeholder"],sn={key:2,class:"rc-search-area__calendar-wrapper"},un={key:3,class:"rc-search-area__tree-container"},dn={class:"rc-search-area__tree-group-title"},fn={class:"rc-search-area__tree-group-options"},mn=["onClick"],vn={class:"rc-search-area__option-label"},pn={key:4,class:"rc-search-area__tree-container"},yn={class:"rc-search-area__tree-group-title"},hn={class:"rc-search-area__tree-group-options"},kn=["onClick"],gn={class:"rc-search-area__option-label"},_n={key:5,class:"rc-search-area__options-grid"},Bn=["onClick"],Cn={class:"rc-search-area__option-label"},bn={key:6,class:"rc-search-area__options-grid"},Vn=["onClick"],Sn={class:"rc-search-area__option-label"},$n={key:7,class:"rc-search-area__empty"},En={key:0,class:"rc-search-area__panel-footer"},Dn=e.defineComponent({name:"rc-search-area",__name:"index",props:{items:{default:()=>[]},modelValue:{default:()=>({})},showMask:{type:Boolean,default:!0},autoConfirm:{type:Boolean,default:!1}},emits:["update:modelValue","change"],setup(t,{expose:r,emit:d}){const o=t,p=d,g=e.ref(null),m=e.ref(null),v=e.ref(null),i=e.ref({top:"0px"}),y=async()=>{if(g.value===null||!m.value)return;await e.nextTick();const l=m.value.getBoundingClientRect().top;i.value={top:`${l}px`}},$=n=>{if(g.value===null||!m.value)return;const l=n.target;if(m.value.contains(l))return;const c=m.value.closest(".rc-search-area");if(c){const a=c.querySelector(".rc-search-area__bar");if(a&&a.contains(l))return}z()};e.watch(g,async n=>{n!==null?(await e.nextTick(),y(),window.addEventListener("resize",y),window.addEventListener("scroll",y,!0),document.addEventListener("click",$,!0)):(window.removeEventListener("resize",y),window.removeEventListener("scroll",y,!0),document.removeEventListener("click",$,!0))}),e.onUnmounted(()=>{window.removeEventListener("resize",y),window.removeEventListener("scroll",y,!0),document.removeEventListener("click",$,!0)});const _=e.ref({}),h=e.ref(""),b=e.ref(null),S=e.ref({}),B=e.ref({...o.modelValue});e.watch(()=>o.modelValue,n=>{B.value={...n||{}}},{deep:!0,immediate:!0});const s=e.computed(()=>g.value===null?null:o.items[g.value]),J=e.computed(()=>{if(!s.value)return"";const n=Ce(s.value);return n>0?`(${n}项)`:""}),ee=n=>{const l=B.value[n.key];if(l==null||l===""||n.slot)return n.label;if(n.type==="input"){if(l&&String(l).trim())return`${n.label}: ${l}`}else if(n.type==="calendar"){if(l){if(Array.isArray(l)&&l.length===2)return`${n.label}: ${l[0]} ~ ${l[1]}`;if(typeof l=="string")return`${n.label}: ${l}`}}else if(n.type==="single"||n.type==="tree-single"){const c=P(n,l);if(c)return`${n.label}: ${G(c,n)}`}else{const c=Array.isArray(l)?l:[l];if(c.length>0){const a=c.map(u=>{const f=P(n,u);return f?G(f,n):null}).filter(u=>u!==null);if(a.length>0)return`${n.label}: ${a.join("、")}`}}return n.label},Q=n=>{const l=o.items[n];if(!l)return;if(g.value===n){g.value=null;return}const c=B.value[l.key];l.slot?c!=null?Array.isArray(c)?S.value[l.key]=[...c]:typeof c=="object"?S.value[l.key]={...c}:S.value[l.key]=c:S.value[l.key]=void 0:l.type==="input"?h.value=c!=null?String(c):"":l.type==="calendar"?b.value=c??null:l.type==="single"||l.type==="tree-single"?_.value[l.key]=c!==void 0?c:null:_.value[l.key]=c!==void 0?Array.isArray(c)?[...c]:[c]:[],g.value=n},z=()=>{g.value=null},w=(n,l)=>{if(!l)return typeof n=="string"?n:n.label||String(n.value);const c=n;if(l.renderItem){if(typeof l.renderItem=="string")return String(typeof c=="object"&&c!==null?c[l.renderItem]??"":c);{const a=l.renderItem(c);return a!=null?String(a):""}}return typeof n=="string"?n:n.label||String(n.value)},I=(n,l)=>{if(!l)return typeof n=="string"?n:n.value!==void 0?n.value:n;const c=n;return l.format?typeof l.format=="string"?typeof c=="object"&&c!==null?c[l.format]:c:l.format(c):typeof n=="string"?n:n.value!==void 0?n.value:n},G=(n,l)=>{const c=n,a=l.renderResult||l.renderItem;if(a){if(typeof a=="string")return String(typeof c=="object"&&c!==null?c[a]??"":c);{const u=a(c);return u!=null?String(u):""}}return w(n,l)},P=(n,l,c)=>{const a=c||n.options,u=n.childrenKey||"children";for(const f of a){const V=I(f,n);if(V===l||String(V)===String(l))return f;if(typeof f=="object"&&f!==null){const D=f[u];if(Array.isArray(D)&&D.length>0){const W=P(n,l,D);if(W)return W}}}return null},U=(n,l)=>{const c=l||n.options,a=n.childrenKey||"children",u=[];for(const f of c)if(u.push(f),typeof f=="object"&&f!==null){const V=f[a];Array.isArray(V)&&V.length>0&&u.push(...U(n,V))}return u},M=n=>{if(!s.value)return!1;const l=s.value.key,c=_.value[l],a=I(n,s.value);return s.value.type==="single"||s.value.type==="tree-single"?c!=null&&c===a:(Array.isArray(c)?c:[]).some(f=>f===a||String(f)===String(a))},x=n=>n?n.childrenKey?U(n):n.options:[],k=n=>{if(!n)return[];const l=n.childrenKey||"children";return(n.options||[]).filter(c=>{if(typeof c=="string")return!1;const a=c[l];return Array.isArray(a)&&a.length>0})},C=(n,l)=>{if(!l||typeof n=="string")return[];const c=l.childrenKey||"children",a=n[c];return Array.isArray(a)?a:[]},E=n=>{if(n)return S.value[n.key]!==void 0?S.value[n.key]:B.value[n.key]},A=(n,l)=>{if(n&&(S.value[n.key]=l,o.autoConfirm)){const c=n.key;B.value[c]=l,p("update:modelValue",{...B.value}),p("change",{...B.value},n),z()}},O=n=>{if(!s.value)return;const l=s.value.key,c=I(n,s.value);B.value[l];let a;_.value[l]===c?a=void 0:a=c,B.value[l]=a,p("update:modelValue",{...B.value}),p("change",{...B.value},s.value),z()},me=n=>{if(!s.value)return;const l=s.value.key,c=I(n,s.value),a=Array.isArray(_.value[l])?[..._.value[l]]:[],u=a.findIndex(f=>f===c||String(f)===String(c));if(u>=0?a.splice(u,1):a.push(c),_.value[l]=a,o.autoConfirm){const f=a.length>0?a:void 0;B.value[l]=f,p("update:modelValue",{...B.value}),p("change",{...B.value},s.value),z()}},ke=()=>{if(!s.value)return;const n=s.value.key;s.value.slot?S.value[n]=void 0:s.value.type==="input"?h.value="":s.value.type==="calendar"?b.value=null:s.value.type==="single"||s.value.type==="tree-single"?_.value[n]=null:_.value[n]=[]},ge=()=>{if(o.autoConfirm&&s.value){const n=s.value.key,l=h.value.trim()||void 0;B.value[n]=l,p("update:modelValue",{...B.value}),p("change",{...B.value},s.value),z()}},_e=n=>{if(b.value=n,o.autoConfirm&&s.value){const l=s.value.key,c=n??void 0;B.value[l]=c,p("update:modelValue",{...B.value}),p("change",{...B.value},s.value),z()}},Be=()=>{if(!s.value)return;const n=s.value.key;B.value[n];let l;if(s.value.slot)l=S.value[n],B.value[n]=l;else if(s.value.type==="input")l=h.value.trim()||void 0,B.value[n]=l;else if(s.value.type==="calendar")l=b.value!==null&&b.value!==void 0?b.value:void 0,B.value[n]=l;else if(s.value.type==="single"||s.value.type==="tree-single"){const c=_.value[n];l=c??void 0,B.value[n]=l}else{const c=_.value[n];l=Array.isArray(c)&&c.length>0?c:void 0,B.value[n]=l}p("update:modelValue",{...B.value}),p("change",{...B.value},s.value),z()},ve=n=>{const l=B.value[n.key];return l==null||l===""?0:n.slot?1:n.type==="input"?String(l).trim()?1:0:n.type==="single"||n.type==="tree-single"?1:Array.isArray(l)?l.length:l?1:0},Ce=n=>{if(n.slot){const c=S.value[n.key];return c!=null&&c!==""?1:0}else{if(n.type==="input")return h.value.trim()?1:0;if(n.type==="calendar")return b.value!==null&&b.value!==void 0?1:0}const l=_.value[n.key];return l==null||l===""?0:n.type==="single"||n.type==="tree-single"?1:Array.isArray(l)?l.length:0};return r({getValues:()=>({...B.value}),reset:()=>{B.value={},_.value={},S.value={},p("update:modelValue",{})}}),(n,l)=>(e.openBlock(),e.createElementBlock("div",tn,[e.createElementVNode("div",nn,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.items,(c,a)=>(e.openBlock(),e.createElementBlock("div",{key:a,class:e.normalizeClass(["rc-search-area__item",{"is-active":g.value===a,"has-value":ve(c)>0}]),onClick:u=>Q(a)},[e.createElementVNode("span",ln,e.toDisplayString(ee(c)),1),e.createVNode(e.unref(L),{name:"icon_a-xiala2",color:g.value!==a&&ve(c)>0?"#1677ff":"#969799",class:e.normalizeClass(["rc-search-area__item-arrow",{"is-up":g.value===a}])},null,8,["color","class"])],10,an))),128))]),e.createVNode(e.Transition,{name:"rc-search-area-fade"},{default:e.withCtx(()=>[g.value!==null&&o.showMask?(e.openBlock(),e.createElementBlock("div",{key:0,ref_key:"maskRef",ref:v,class:"rc-search-area__mask",style:e.normalizeStyle(i.value),onClick:z},null,4)):e.createCommentVNode("",!0)]),_:1}),e.createVNode(e.Transition,{name:"rc-search-area-slide"},{default:e.withCtx(()=>{var c,a,u,f,V,D,W,j,se,pe,R,ue,T,F,Fe,ze,Ae,Le;return[g.value!==null?(e.openBlock(),e.createElementBlock("div",{key:0,ref_key:"panelRef",ref:m,class:"rc-search-area__panel"},[e.createElementVNode("div",on,[(c=s.value)!=null&&c.slot&&n.$slots[s.value.key]?e.renderSlot(n.$slots,s.value.key,{key:0,value:E(s.value),"update:value":N=>A(s.value,N)},void 0,!0):((a=s.value)==null?void 0:a.type)==="input"?(e.openBlock(),e.createElementBlock("div",rn,[e.withDirectives(e.createElementVNode("input",{"onUpdate:modelValue":l[0]||(l[0]=N=>h.value=N),type:"text",class:"rc-search-area__input",placeholder:s.value.placeholder||"请输入",onInput:ge},null,40,cn),[[e.vModelText,h.value]])])):((u=s.value)==null?void 0:u.type)==="calendar"?(e.openBlock(),e.createElementBlock("div",sn,[e.createVNode(e.unref(ce),{modelValue:b.value,"onUpdate:modelValue":l[1]||(l[1]=N=>b.value=N),range:((f=s.value.calendarConfig)==null?void 0:f.range)||!1,mode:"default","min-date":(V=s.value.calendarConfig)==null?void 0:V.minDate,"max-date":(D=s.value.calendarConfig)==null?void 0:D.maxDate,"disabled-date":(W=s.value.calendarConfig)==null?void 0:W.disabledDate,formatter:(j=s.value.calendarConfig)==null?void 0:j.formatter,onChange:_e},null,8,["modelValue","range","min-date","max-date","disabled-date","formatter"])])):((se=s.value)==null?void 0:se.type)==="tree-single"?(e.openBlock(),e.createElementBlock("div",un,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(k(s.value),(N,te)=>(e.openBlock(),e.createElementBlock("div",{key:te,class:"rc-search-area__tree-group"},[e.createElementVNode("div",dn,e.toDisplayString(w(N,s.value||void 0)),1),e.createElementVNode("div",fn,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(C(N,s.value),(K,be)=>(e.openBlock(),e.createElementBlock("div",{key:be,class:e.normalizeClass(["rc-search-area__option",{"is-selected":M(K)}]),onClick:Ke=>O(K)},[e.createElementVNode("span",vn,e.toDisplayString(w(K,s.value||void 0)),1),M(K)?(e.openBlock(),e.createBlock(e.unref(L),{key:0,name:"icon_check",class:"rc-search-area__option-check"})):e.createCommentVNode("",!0)],10,mn))),128))])]))),128))])):((pe=s.value)==null?void 0:pe.type)==="tree-multiple"?(e.openBlock(),e.createElementBlock("div",pn,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(k(s.value),(N,te)=>(e.openBlock(),e.createElementBlock("div",{key:te,class:"rc-search-area__tree-group"},[e.createElementVNode("div",yn,e.toDisplayString(w(N,s.value||void 0)),1),e.createElementVNode("div",hn,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(C(N,s.value),(K,be)=>(e.openBlock(),e.createElementBlock("div",{key:be,class:e.normalizeClass(["rc-search-area__option",{"is-selected":M(K)}]),onClick:Ke=>me(K)},[e.createElementVNode("span",gn,e.toDisplayString(w(K,s.value||void 0)),1),M(K)?(e.openBlock(),e.createBlock(e.unref(L),{key:0,name:"icon_check",class:"rc-search-area__option-check"})):e.createCommentVNode("",!0)],10,kn))),128))])]))),128))])):((R=s.value)==null?void 0:R.type)==="single"?(e.openBlock(),e.createElementBlock("div",_n,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(x(s.value),(N,te)=>(e.openBlock(),e.createElementBlock("div",{key:te,class:e.normalizeClass(["rc-search-area__option",{"is-selected":M(N)}]),onClick:K=>O(N)},[e.createElementVNode("span",Cn,e.toDisplayString(w(N,s.value||void 0)),1),M(N)?(e.openBlock(),e.createBlock(e.unref(L),{key:0,name:"icon_check",class:"rc-search-area__option-check"})):e.createCommentVNode("",!0)],10,Bn))),128))])):(e.openBlock(),e.createElementBlock("div",bn,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(x(s.value),(N,te)=>(e.openBlock(),e.createElementBlock("div",{key:te,class:e.normalizeClass(["rc-search-area__option",{"is-selected":M(N)}]),onClick:K=>me(N)},[e.createElementVNode("span",Sn,e.toDisplayString(w(N,s.value||void 0)),1),M(N)?(e.openBlock(),e.createBlock(e.unref(L),{key:0,name:"icon_check",class:"rc-search-area__option-check"})):e.createCommentVNode("",!0)],10,Vn))),128))])),((ue=s.value)==null?void 0:ue.type)!=="input"&&((T=s.value)==null?void 0:T.type)!=="calendar"&&!((F=s.value)!=null&&F.slot)&&((ze=(Fe=s.value)==null?void 0:Fe.options)==null?void 0:ze.length)===0?(e.openBlock(),e.createElementBlock("div",$n,[...l[2]||(l[2]=[e.createElementVNode("p",null,"暂无选项",-1)])])):e.createCommentVNode("",!0)]),!o.autoConfirm&&((Ae=s.value)==null?void 0:Ae.type)!=="single"&&((Le=s.value)==null?void 0:Le.type)!=="tree-single"?(e.openBlock(),e.createElementBlock("div",En,[e.createVNode(e.unref(q),{block:"",onClick:ke},{default:e.withCtx(()=>[...l[3]||(l[3]=[e.createTextVNode(" 重置 ",-1)])]),_:1}),e.createVNode(e.unref(q),{type:"primary",block:"",onClick:Be},{default:e.withCtx(()=>[e.createTextVNode(" 确定"+e.toDisplayString(J.value),1)]),_:1})])):e.createCommentVNode("",!0)],512)):e.createCommentVNode("",!0)]}),_:3})]))}}),Ie=H(Dn,[["__scopeId","data-v-d6546197"]]),Me=t=>{t.component("RcSearchArea",Ie),t.component("rc-search-area",Ie)},he=Symbol("RECYCLE_UI_CONFIG"),Re={prefix:"rc",autoRegister:!0,provideKey:he,theme:{},iconCssUrl:"//at.alicdn.com/t/c/font_4252799_o59odx6bqil.css",iconClass:"iconfont"};function xn(t,r){r.autoRegister!==!1&&(typeof Se=="function"&&Se(t),typeof $e=="function"&&$e(t),typeof Ee=="function"&&Ee(t),typeof Pe=="function"&&Pe(t),typeof xe=="function"&&xe(t),typeof De=="function"&&De(t),typeof Me=="function"&&Me(t),typeof we=="function"&&we(t),typeof Ne=="function"&&Ne(t))}const Te=(t,r)=>{const d={...Re,...r||{}};if(t.provide(d.provideKey??he,d),t.config.globalProperties.$recycleUI=d,typeof window<"u"&&d.iconCssUrl){const o=`link[rel="stylesheet"][data-rcui-icon="true"][href="${d.iconCssUrl}"]`;if(!document.head.querySelector(o)){const g=document.createElement("link");g.rel="stylesheet",g.href=d.iconCssUrl,g.setAttribute("data-rcui-icon","true"),document.head.appendChild(g)}}return xn(t,d),t},Nn={install:Te};function wn(t){return{install(r){Te(r,t)}}}exports.RECYCLE_UI_SYMBOL=he;exports.RcButton=q;exports.RcCalendar=ce;exports.RcCard=de;exports.RcDescriptions=We;exports.RcDescriptionsItem=Oe;exports.RcIcon=L;exports.RcPopup=re;exports.RcSearchArea=Ie;exports.RcToast=fe;exports.createRecycleUI=wn;exports.default=Nn;exports.defaultRecycleUIConfig=Re;exports.hideToast=je;exports.install=Te;exports.installButton=Se;exports.installCalendar=we;exports.installCard=Ee;exports.installDescriptions=$e;exports.installIcon=xe;exports.installMessage=De;exports.installPopup=Ne;exports.installSearchArea=Me;exports.message=Ge;exports.rcDescriptions=We;exports.rcDescriptionsItem=Oe;exports.showToast=_t;
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue"),tt={key:0,class:"rc-icon__unicode"},nt=e.defineComponent({name:"rc-icon",__name:"index",props:{name:{},size:{default:16},color:{default:""},spin:{type:Boolean,default:!1},code:{default:""}},setup(t){const r=t,f=e.inject(Ie,{}),l=e.computed(()=>(f==null?void 0:f.iconClass)||"iconfont"),y=e.computed(()=>r.name||""),B=e.computed(()=>typeof r.size=="number"?`${r.size}px`:r.size||"16px"),v=e.computed(()=>({fontSize:B.value,color:r.color||void 0,lineHeight:1,fontFamily:(f==null?void 0:f.iconClass)||"iconfont"})),m=e.computed(()=>{const i=r.code;if(i==null||i===""||i===0)return"";if(typeof i=="number")return String.fromCharCode(i);const g=String(i).replace(/^0x/i,""),w=parseInt(g,16);return Number.isNaN(w)?"":String.fromCharCode(w)});return e.onMounted(()=>{if(typeof window>"u")return;const i=f&&f.iconCssUrl||We.iconCssUrl;if(!i)return;const g=`link[rel="stylesheet"][data-rcui-icon="true"][href="${i}"]`;if(!document.head.querySelector(g)){const b=document.createElement("link");b.rel="stylesheet",b.href=i,b.setAttribute("data-rcui-icon","true"),document.head.appendChild(b)}}),(i,g)=>(e.openBlock(),e.createElementBlock("i",{class:e.normalizeClass(["rc-icon",[l.value,y.value,{"rc-icon--spin":t.spin}]]),style:e.normalizeStyle(v.value),"aria-hidden":"true"},[m.value?(e.openBlock(),e.createElementBlock("span",tt,e.toDisplayString(m.value),1)):e.createCommentVNode("",!0)],6))}}),Q=(t,r)=>{const f=t.__vccOpts||t;for(const[l,y]of r)f[l]=y;return f},A=Q(nt,[["__scopeId","data-v-3857a892"]]),at=["disabled"],lt={key:0,class:"rc-button__spinner"},ot={key:0,class:"rc-button__icon rc-button__icon--prefix"},rt={key:2,class:"rc-button__icon rc-button__icon--suffix"},ct=e.defineComponent({__name:"index",props:{type:{default:"default"},size:{default:"medium"},mode:{default:void 0},block:{type:Boolean,default:!1},label:{default:""},round:{type:[Number,String,Boolean],default:6},disabled:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},preIcon:{default:""},suffixIcon:{default:""}},emits:["click"],setup(t,{emit:r}){const f=t,l=r,y=v=>{!f.disabled&&!f.loading&&l("click",v)},B=e.computed(()=>{const v=f.round;return typeof v=="boolean"?v?"999px":"6px":typeof v=="number"?`${v}px`:String(v)});return(v,m)=>(e.openBlock(),e.createElementBlock("button",{class:e.normalizeClass(["rc-button",[`rc-button--${t.type}`,`rc-button--${t.size}`,t.mode?`rc-button--${t.mode}`:"",{"is-block":t.block,"is-disabled":t.disabled,"is-loading":t.loading}]]),style:e.normalizeStyle({borderRadius:B.value}),disabled:t.disabled||t.loading,onClick:y},[t.loading?(e.openBlock(),e.createElementBlock("span",lt)):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[t.preIcon||v.$slots.preIcon?(e.openBlock(),e.createElementBlock("span",ot,[e.renderSlot(v.$slots,"preIcon",{},()=>[t.preIcon?(e.openBlock(),e.createBlock(A,{key:0,name:t.preIcon},null,8,["name"])):e.createCommentVNode("",!0)],!0)])):e.createCommentVNode("",!0)],64)),e.renderSlot(v.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(t.label),1)],!0),!t.loading&&(t.suffixIcon||v.$slots.suffixIcon)?(e.openBlock(),e.createElementBlock("span",rt,[e.renderSlot(v.$slots,"suffixIcon",{},()=>[t.suffixIcon?(e.openBlock(),e.createBlock(A,{key:0,name:t.suffixIcon},null,8,["name"])):e.createCommentVNode("",!0)],!0)])):e.createCommentVNode("",!0)],14,at))}}),J=Q(ct,[["__scopeId","data-v-3ed3109f"]]);J.name="rc-button";function Re(t){return t.component(J.name,J),t}const st={class:"rc-desc-item__value"},ut=e.defineComponent({name:"rc-descriptions-item",__name:"item",props:{label:{default:""},value:{default:""},labelWidth:{default:""},span:{default:1}},setup(t){const r=t;e.inject("rcDescItemWidth",void 0),e.inject("rcDescSingleWidth",""),e.inject("rcDescGap","0px");const f=e.inject("rcDescGapPx",0),l=e.inject("rcDescColCount",1),y=e.inject("rcDescLabelWidth",""),B=e.computed(()=>{const i=typeof r.span=="string"?parseInt(r.span,10):r.span,g=typeof(l==null?void 0:l.value)=="number"?l.value:l,w=!Number.isNaN(i)&&i>0?i:1;return Math.min(w,g||1)}),v=e.computed(()=>{const i=typeof(l==null?void 0:l.value)=="number"?l.value:l,g=typeof(f==null?void 0:f.value)=="number"?f.value:f,w=B.value;if(!i||i<=1||w>=i)return"100%";const b=(i-1)*g,_=(w-1)*g;return`calc((100% - ${b}px) * ${w} / ${i} + ${_}px)`}),m=e.computed(()=>{const i=typeof(y==null?void 0:y.value)=="string"?y.value:y,g=r.labelWidth!==""?r.labelWidth:i||"";return g?{width:typeof g=="number"?`${g}px`:String(g),flex:"0 0 auto"}:{}});return(i,g)=>(e.openBlock(),e.createElementBlock("div",{class:"rc-desc-item",style:e.normalizeStyle({width:v.value,flex:`0 0 ${v.value}`})},[e.createElementVNode("div",{class:"rc-desc-item__label",style:e.normalizeStyle(m.value)},[e.renderSlot(i.$slots,"label",{},()=>[e.createTextVNode(e.toDisplayString(t.label),1)],!0)],4),e.createElementVNode("div",st,[e.renderSlot(i.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(t.value),1)],!0)])],4))}}),fe=Q(ut,[["__scopeId","data-v-970d0b99"]]),it={class:"rc-descriptions"},dt={key:0,class:"rc-descriptions__title"},ft=e.defineComponent({name:"rc-descriptions",__name:"index",props:{title:{},column:{default:2},gap:{default:4},labelWidth:{default:""},data:{default:()=>[]},keyMap:{}},setup(t){const r=t,f=e.ref(null),l=e.computed(()=>typeof r.gap=="number"?`${r.gap}px`:String(r.gap)),y=e.computed(()=>{const g=typeof r.column=="string"?Number.parseInt(r.column,10):r.column??1;return!Number.isNaN(g)&&g>0?g:1}),B=e.ref("100%"),v=e.ref("100%");e.watchEffect(()=>{const g=y.value;if(g<=1)B.value="100%",v.value="100%";else{const w=typeof r.gap=="number"?r.gap:parseFloat(String(r.gap))||0,_=`calc((100% - ${(g-1)*w}px) / ${g})`;v.value=_,B.value=_}}),e.provide("rcDescItemWidth",B),e.provide("rcDescSingleWidth",v),e.provide("rcDescColCount",y),e.provide("rcDescGapPx",e.computed(()=>typeof r.gap=="number"?r.gap:parseFloat(String(r.gap))||0));const m=e.computed(()=>r.labelWidth===""||r.labelWidth===void 0?"":typeof r.labelWidth=="number"?`${r.labelWidth}px`:String(r.labelWidth));e.provide("rcDescLabelWidth",m),e.provide("rcDescGap",e.computed(()=>typeof r.gap=="number"?`${r.gap}px`:String(r.gap)));const i=e.computed(()=>{var b,_,D;const g=((b=r.keyMap)==null?void 0:b.key)??"label",w=((_=r.keyMap)==null?void 0:_.value)??"value";return(D=r.data)!=null&&D.length?r.data.map(S=>({label:S==null?void 0:S[g],value:S==null?void 0:S[w]})):[]});return(g,w)=>(e.openBlock(),e.createElementBlock("div",it,[g.$slots.title||t.title?(e.openBlock(),e.createElementBlock("div",dt,[e.renderSlot(g.$slots,"title",{},()=>[e.createTextVNode(e.toDisplayString(t.title),1)],!0)])):e.createCommentVNode("",!0),e.createElementVNode("div",{class:"rc-descriptions__body",style:e.normalizeStyle({gap:l.value}),ref_key:"wrapEl",ref:f},[i.value.length?(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:0},e.renderList(i.value,(b,_)=>(e.openBlock(),e.createBlock(fe,{key:_,label:b.label,value:b.value,"label-width":t.labelWidth},null,8,["label","value","label-width"]))),128)):e.renderSlot(g.$slots,"default",{key:1},void 0,!0)],4)]))}}),_e=Q(ft,[["__scopeId","data-v-5fcaa235"]]);_e.name="rc-descriptions";fe.name="rc-descriptions-item";function Te(t){return t.component(_e.name,_e),t.component("RcDescriptions",_e),t.component(fe.name,fe),t.component("RcDescriptionsItem",fe),t}const Je=_e,Qe=fe,mt={class:"rc-card__title"},vt={class:"rc-card__title-text"},pt={key:0,class:"rc-card__status"},yt={key:1,class:"rc-card__divider"},gt={key:2,class:"rc-card__action"},ht=e.defineComponent({name:"rc-card",__name:"index",props:{color:{default:"var(--rc-white)"},topBgColor:{default:"rgba(29, 133, 252, 0.05)"},title:{default:""},status:{default:""},statusColor:{default:"var(--rc-primary)"},round:{default:8},bordered:{type:Boolean,default:!1},elevation:{default:2},padding:{default:"16px"},gap:{default:12},width:{default:"100%"},height:{default:""}},setup(t){const r=t,f=e.computed(()=>{const m=typeof r.round=="boolean"?r.round?"12px":"0":typeof r.round=="number"?`${r.round}px`:String(r.round);return{backgroundColor:r.color||"var(--rc-white)",borderRadius:m,boxShadow:v(r.elevation),width:B(r.width),height:B(r.height)}}),l=e.computed(()=>r.padding||"16px"),y=e.computed(()=>typeof r.gap=="number"?`${r.gap}px`:String(r.gap));function B(m){return m==null||m===""?"":typeof m=="number"?`${m}px`:String(m)}function v(m){if(!m||m<=0)return"none";const i=4*m;return`0 ${Math.round(i/2)}px ${i}px rgba(0,0,0,0.06), 0 ${Math.round(i/4)}px ${Math.round(i/2)}px rgba(0,0,0,0.04)`}return(m,i)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["rc-card",[{"rc-card--bordered":t.bordered}]]),style:e.normalizeStyle(f.value)},[m.$slots.title||t.title||m.$slots.status||t.status?(e.openBlock(),e.createElementBlock("div",{key:0,class:"rc-card__top",style:e.normalizeStyle({backgroundColor:t.topBgColor||"rgba(29, 133, 252, 0.05)"})},[e.createElementVNode("div",mt,[e.renderSlot(m.$slots,"title",{},()=>[e.createElementVNode("span",vt,e.toDisplayString(t.title),1)],!0)]),m.$slots.status||t.status?(e.openBlock(),e.createElementBlock("div",pt,[e.renderSlot(m.$slots,"status",{},()=>[e.createElementVNode("span",{class:"rc-card__status-text",style:e.normalizeStyle({color:t.statusColor||"var(--rc-primary)"})},e.toDisplayString(t.status),5)],!0)])):e.createCommentVNode("",!0)],4)):e.createCommentVNode("",!0),e.createElementVNode("div",{class:"rc-card__body",style:e.normalizeStyle({padding:l.value,gap:y.value})},[e.renderSlot(m.$slots,"content",{},()=>[e.renderSlot(m.$slots,"default",{},void 0,!0)],!0)],4),m.$slots.action?(e.openBlock(),e.createElementBlock("div",yt)):e.createCommentVNode("",!0),m.$slots.action?(e.openBlock(),e.createElementBlock("div",gt,[e.renderSlot(m.$slots,"action",{},void 0,!0)])):e.createCommentVNode("",!0)],6))}}),Ce=Q(ht,[["__scopeId","data-v-a7b95214"]]);Ce.name="rc-card";const kt="RcCard";function Fe(t){return t.component(Ce.name,Ce),t.component(kt,Ce),t}const _t={key:0,class:"rc-toast__mask"},Ct={class:"rc-toast__content"},Bt={key:0,class:"rc-toast__spinner"},bt={key:1,class:"rc-toast__icon rc-toast__icon--success"},Dt={key:2,class:"rc-toast__icon rc-toast__icon--fail"},Vt={class:"rc-toast__text"},St=e.defineComponent({__name:"index",props:{message:{default:""},type:{default:"text"},duration:{default:2e3},mask:{type:Boolean,default:!1},onAfterLeave:{}},setup(t,{expose:r}){const f=t,l=e.ref(!0);let y;function B(){y&&(clearTimeout(y),y=null)}function v(){B(),l.value=!1}return r({close:v}),e.onMounted(()=>{f.duration&&f.duration>0&&(y=setTimeout(()=>{v()},f.duration))}),e.onUnmounted(()=>{B()}),(m,i)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[(e.openBlock(),e.createBlock(e.Teleport,{to:"body"},[e.createVNode(e.Transition,{name:"rc-toast-fade",onAfterLeave:t.onAfterLeave},{default:e.withCtx(()=>[l.value?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(["rc-toast",[`rc-toast--${t.type}`]])},[t.mask?(e.openBlock(),e.createElementBlock("div",_t)):e.createCommentVNode("",!0),e.createElementVNode("div",Ct,[t.type==="loading"?(e.openBlock(),e.createElementBlock("div",Bt)):t.type==="success"?(e.openBlock(),e.createElementBlock("div",bt)):t.type==="fail"?(e.openBlock(),e.createElementBlock("div",Dt)):e.createCommentVNode("",!0),e.createElementVNode("div",Vt,e.toDisplayString(t.message),1)])],2)):e.createCommentVNode("",!0)]),_:1},8,["onAfterLeave"])])),e.renderSlot(m.$slots,"default",{},void 0,!0)],64))}}),Be=Q(St,[["__scopeId","data-v-d234c9c5"]]);let se=null,me=null;function Ke(){se&&(se.unmount(),se=null),me&&(document.body.removeChild(me),me=null)}function Et(t){const r=typeof t=="string"?{message:t}:t||{};Ke(),me=document.createElement("div"),document.body.appendChild(me);const f={message:r.message,type:r.type??"text",duration:r.duration??2e3,mask:r.mask??!1,onAfterLeave:()=>{var l;Ke(),(l=r.onClose)==null||l.call(r)}};return se=e.createApp(Be,f),se.mount(me),{close:Xe}}function Xe(){var t,r,f;se&&((f=(r=(t=se._instance)==null?void 0:t.exposed)==null?void 0:r.close)==null||f.call(r))}Be.name="rc-toast";function He(t){return t.component(Be.name,Be),t}const $t={class:"rc-message",role:"alert","aria-live":"polite"},xt={class:"rc-message__content"},wt=e.defineComponent({__name:"index",setup(t,{expose:r}){const f=e.reactive([]);let l=1;function y(v){const m=f.findIndex(i=>i.id===v);m>=0&&f.splice(m,1)}function B(v,m,i){const g=l++;return f.push({id:g,type:v,content:m,duration:i}),i>0&&window.setTimeout(()=>y(g),i),g}return r({add:B,remove:y}),(v,m)=>(e.openBlock(),e.createElementBlock("div",$t,[e.createVNode(e.TransitionGroup,{name:"rc-message-fade",tag:"div"},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(f,i=>(e.openBlock(),e.createElementBlock("div",{key:i.id,class:e.normalizeClass(["rc-message__item",`rc-message--${i.type}`])},[e.createElementVNode("span",xt,e.toDisplayString(i.content),1)],2))),128))]),_:1})]))}}),Nt=Q(wt,[["__scopeId","data-v-87811df0"]]);let le=null,ae=null;function It(){var r;if(le&&ae)return;le=document.createElement("div"),document.body.appendChild(le);const t=e.createVNode(Nt,{});e.render(t,le),ae=(r=t.component)==null?void 0:r.exposed}function de(t,r,f){var y;It();const l=typeof f=="number"?f:t==="loading"?0:2e3;return(y=ae==null?void 0:ae.add)==null?void 0:y.call(ae,t,r,l)}const Ze={open(t){return de(t.type||"info",t.content,t.duration)},info(t,r){return de("info",t,r)},success(t,r){return de("success",t,r)},warning(t,r){return de("warning",t,r)},error(t,r){return de("error",t,r)},loading(t,r){return de("loading",t,r)},destroy(){le&&(e.render(null,le),le.remove(),le=null,ae=null)}};function ze(t){return t.config.globalProperties.$message=Ze,t}A.name="rc-icon";function Ae(t){return t.component(A.name,A),t.component("RcIcon",A),t}const Mt={class:"rc-popup__content"},Rt=e.defineComponent({name:"rc-popup",__name:"index",props:{modelValue:{type:Boolean,default:!1},position:{default:"center"},overlay:{type:Boolean,default:!0},overlayClass:{default:""},overlayStyle:{default:void 0},closeable:{type:Boolean,default:!1},closeIconPosition:{default:"top-right"},closeIcon:{default:"icon_close"},round:{type:Boolean,default:!1},popupStyle:{default:void 0},closeOnClickOverlay:{type:Boolean,default:!0},lockScroll:{type:Boolean,default:!0}},emits:["update:modelValue","open","close","click-overlay"],setup(t,{expose:r,emit:f}){const l=t,y=f,B=e.ref(),v=e.ref(l.modelValue);e.watch(()=>l.modelValue,u=>{v.value=u,u?(y("open"),l.lockScroll&&w()):(y("close"),l.lockScroll&&b())},{immediate:!0}),e.watch(v,u=>{u!==l.modelValue&&y("update:modelValue",u)});const m=e.computed(()=>`rc-popup-slide-${l.position}`),i=e.computed(()=>({...l.popupStyle||{}}));let g=!1;function w(){g||(g=!0,document.body.style.overflow="hidden")}function b(){g&&(g=!1,document.body.style.overflow="")}function _(){y("click-overlay"),l.closeOnClickOverlay&&S()}function D(){S()}function S(){v.value=!1}function C(){v.value=!0}return e.onUnmounted(()=>{b()}),r({open:C,close:S,visible:v}),(u,te)=>(e.openBlock(),e.createBlock(e.Teleport,{to:"body"},[e.createVNode(e.Transition,{name:"rc-popup-fade"},{default:e.withCtx(()=>[v.value&&l.overlay?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(["rc-popup__overlay",{"rc-popup__overlay--transparent":l.overlayClass==="transparent"}]),style:e.normalizeStyle(l.overlayStyle),onClick:_},null,6)):e.createCommentVNode("",!0)]),_:1}),e.createVNode(e.Transition,{name:m.value},{default:e.withCtx(()=>[v.value?(e.openBlock(),e.createElementBlock("div",{key:0,ref_key:"popupRef",ref:B,class:e.normalizeClass(["rc-popup",[`rc-popup--${t.position}`,{"rc-popup--round":t.round}]]),style:e.normalizeStyle(i.value),onClick:te[0]||(te[0]=e.withModifiers(()=>{},["stop"]))},[t.closeable?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(["rc-popup__close",`rc-popup__close--${t.closeIconPosition}`]),onClick:D},[e.createVNode(A,{name:t.closeIcon,class:"rc-popup__close-icon"},null,8,["name"])],2)):e.createCommentVNode("",!0),e.createElementVNode("div",Mt,[e.renderSlot(u.$slots,"default",{},void 0,!0)])],6)):e.createCommentVNode("",!0)]),_:3},8,["name"])]))}}),ve=Q(Rt,[["__scopeId","data-v-f1696784"]]);ve.name="rc-popup";const Tt="RcPopup";function Ye(t){return t.component(ve.name,ve),t.component(Tt,ve),t}const Ft={key:0,class:"rc-calendar__header"},zt={class:"rc-calendar__header-title"},At={key:1,class:"rc-calendar__shortcuts"},Yt={class:"rc-calendar__shortcuts-scroll"},Lt=["onClick"],Pt={class:"rc-calendar__month-title"},Ot={class:"rc-calendar__weekdays"},Wt={class:"rc-calendar__days"},Ut=["onClick"],jt={class:"rc-calendar__day-content"},Gt={class:"rc-calendar__day-text"},Kt={key:0,class:"rc-calendar__day-bottom"},Ht={key:2,class:"rc-calendar__footer"},qt={key:0,class:"rc-calendar__month-picker-overlay"},Jt={class:"rc-calendar__month-picker"},Qt={class:"rc-calendar__month-picker-header"},Xt={class:"rc-calendar__month-picker-title"},Zt={key:0},en={key:0,class:"rc-calendar__year-picker-content"},tn={class:"rc-calendar__year-picker-grid"},nn=["onClick"],an={key:1,class:"rc-calendar__month-picker-content"},ln=["onClick"],Ne=48,j=3,Me=7,on=e.defineComponent({__name:"panel-content",props:{showTitle:{type:Boolean},title:{},range:{type:Boolean},selectedDate:{},rangeStart:{},rangeEnd:{},minDate:{},maxDate:{},disabledDate:{type:Function},formatter:{type:Function},showFooter:{type:Boolean},maxRangeDays:{}},emits:["select-day","clear","confirm","shortcut-select"],setup(t,{expose:r,emit:f}){const l=t,y=f,B=["日","一","二","三","四","五","六"];function v(n){if(!n)return null;const c=new Date(n);return isNaN(c.getTime())?null:c}function m(n){const c=n.getFullYear(),d=String(n.getMonth()+1).padStart(2,"0"),V=String(n.getDate()).padStart(2,"0");return`${c}-${d}-${V}`}const i=e.ref(new Date);e.watch(()=>[l.selectedDate,l.rangeStart],()=>{if(l.range&&l.rangeStart){const n=v(l.rangeStart);n&&(i.value=n)}else if(!l.range&&l.selectedDate){const n=v(l.selectedDate);n&&(i.value=n)}},{immediate:!0});function g(n){const c=new Date;return n.getFullYear()===c.getFullYear()&&n.getMonth()===c.getMonth()&&n.getDate()===c.getDate()}function w(n){if(!l.rangeStart||!l.rangeEnd)return!1;const c=m(n),d=l.rangeStart,V=l.rangeEnd;return c>d&&c<V}function b(n){if(l.disabledDate&&l.disabledDate(n))return!0;const c=m(n);return!!(l.minDate&&c<l.minDate||l.maxDate&&c>l.maxDate)}function _(n,c){const d=new Date(n,c,1),V=new Date(n,c+1,0),E=d.getDay(),H=V.getDate(),q=[],je=new Date(n,c,0).getDate();for(let O=E-1;O>=0;O--){const W={date:new Date(n,c-1,je-O),type:"prev-month",text:String(je-O)};if(l.formatter){const U=l.formatter(W);U.text&&(W.text=U.text),U.bottomInfo&&(W.bottomInfo=U.bottomInfo)}q.push(W)}for(let O=1;O<=H;O++){const W={date:new Date(n,c,O),type:"current-month",text:String(O)};if(l.formatter){const U=l.formatter(W);U.text&&(W.text=U.text),U.bottomInfo&&(W.bottomInfo=U.bottomInfo)}q.push(W)}const et=42-q.length;for(let O=1;O<=et;O++){const W={date:new Date(n,c+1,O),type:"next-month",text:String(O)};if(l.formatter){const U=l.formatter(W);U.text&&(W.text=U.text),U.bottomInfo&&(W.bottomInfo=U.bottomInfo)}q.push(W)}return q}const D=e.computed(()=>{const n=i.value.getFullYear(),c=i.value.getMonth();return _(n,c)}),S=e.computed(()=>{const n=i.value.getFullYear(),c=i.value.getMonth()+1;return`${n}年${c}月`});function C(n){const c=[];if(n.type!=="current-month"&&c.push("is-other-month"),g(n.date)&&c.push("is-today"),b(n.date))return c.push("is-disabled"),c;const d=m(n.date);return l.range?(l.rangeStart===d&&c.push("is-start"),l.rangeEnd===d&&c.push("is-end"),w(n.date)&&c.push("is-in-range")):l.selectedDate===d&&c.push("is-selected"),c}const u=e.computed(()=>!!(l.rangeStart&&l.rangeEnd)),te=e.computed(()=>l.rangeStart&&l.rangeEnd?2:l.rangeStart||l.rangeEnd?1:0);function oe(n){if(!l.minDate&&!l.maxDate)return!1;const c=l.minDate?v(l.minDate):null,d=l.maxDate?v(l.maxDate):null;return!!(c&&n<c.getFullYear()||d&&n>d.getFullYear())}function re(n,c){const d=l.minDate?v(l.minDate):null,V=l.maxDate?v(l.maxDate):null;if(d){const E=d.getFullYear(),H=d.getMonth()+1;if(n<E||n===E&&c<H)return!0}if(V){const E=V.getFullYear(),H=V.getMonth()+1;if(n>E||n===E&&c>H)return!0}return!1}const F=e.ref(!1),I=e.ref("year"),R=e.ref(i.value.getFullYear()),Y=e.ref(i.value.getMonth()+1),L=e.ref(),P=e.ref(1900),T=e.ref(1920),M=e.ref(1900),G=e.ref(2100),ue=e.computed(()=>{const n=[],d=Math.floor((P.value-M.value)/j)-3,V=Math.ceil((T.value-M.value)/j)+3,E=M.value+Math.max(0,d)*j,H=M.value+V*j-1;for(let q=E;q<=H;q++)n.push(q);return n});e.watch(()=>i.value,n=>{R.value=n.getFullYear(),Y.value=n.getMonth()+1},{immediate:!0});function ye(){if(!L.value)return;const n=L.value.scrollTop,d=Math.max(0,Math.floor(n/Ne)),V=M.value+d*j,E=V+Me*j-1;V<M.value?M.value=V-100:E>G.value&&(G.value=E+100),(V!==P.value||E!==T.value)&&(P.value=V,T.value=E)}function ge(){R.value=i.value.getFullYear(),Y.value=i.value.getMonth()+1,I.value="year",F.value=!0;const n=R.value;n<M.value?M.value=Math.floor(n/100)*100:n>G.value&&(G.value=Math.ceil(n/100)*100+99),e.nextTick(()=>{if(L.value){const c=Math.floor((n-M.value)/j),d=Math.max(0,c-2);P.value=M.value+d*j,T.value=P.value+Me*j-1,ie(n)}})}function ie(n){if(!L.value)return;n<M.value?M.value=Math.floor(n/100)*100:n>G.value&&(G.value=Math.ceil(n/100)*100+99);const c=Math.floor((n-M.value)/j),d=c*Ne;L.value.scrollTop=d;const V=Math.max(0,c-2);P.value=M.value+V*j,T.value=P.value+Me*j-1}function p(){const n=new Date(i.value);n.setMonth(n.getMonth()-1),i.value=n}function h(){const n=new Date(i.value);n.setMonth(n.getMonth()+1),i.value=n}function $(n){oe(n)||(R.value=n,I.value="month")}function z(n){re(R.value,n)||(Y.value=n,X())}function X(){const n=new Date(i.value);n.setFullYear(R.value),n.setMonth(Y.value-1),i.value=n,F.value=!1,I.value="year"}function Z(n){y("select-day",n)}function ce(){y("clear")}function a(){K.value&&ce()}function o(){y("confirm")}function s(){F.value=!1}function k(n){I.value=n}function N(){const c=new Date().getFullYear();oe(c)||(R.value=c,I.value="month")}function x(){const c=new Date().getMonth()+1;re(R.value,c)||(Y.value=c,X())}const K=e.computed(()=>l.range?!!(l.rangeStart||l.rangeEnd):!!l.selectedDate);function ne(n,c){const d=v(n),V=v(c);if(!d||!V)return 0;const E=Math.abs(V.getTime()-d.getTime());return Math.ceil(E/(1e3*60*60*24))+1}function ee(){return m(new Date)}function he(){const n=new Date,c=n.getDay(),d=n.getDate()-c+(c===0?-6:1);return new Date(n.getFullYear(),n.getMonth(),d)}function be(){const n=he(),c=new Date(n);return c.setDate(n.getDate()+6),c}function De(){const n=new Date;return new Date(n.getFullYear(),n.getMonth(),1)}function ke(){const n=new Date;return new Date(n.getFullYear(),n.getMonth()+1,0)}function Ve(){const n=new Date;return new Date(n.getFullYear(),n.getMonth()-2,1)}function Se(){const n=new Date;return new Date(n.getFullYear(),0,1)}function Ee(){const n=new Date;return new Date(n.getFullYear(),11,31)}const $e=[{key:"today",label:"本日",days:1,getRange:()=>{const n=ee();return[n,n]}},{key:"week",label:"本周",days:7,getRange:()=>{const n=m(he()),c=m(be());return[n,c]}},{key:"month",label:"本月",getRange:()=>{const n=m(De()),c=m(ke());return[n,c]}},{key:"threeMonths",label:"近三月",getRange:()=>{const n=m(Ve()),c=m(ke());return[n,c]}},{key:"year",label:"本年",getRange:()=>{const n=m(Se()),c=m(Ee());return[n,c]}},{key:"last7Days",label:"近7天",days:7,getRange:()=>{const n=new Date,c=new Date(n);return c.setDate(n.getDate()-6),[m(c),ee()]}},{key:"last30Days",label:"近30天",days:30,getRange:()=>{const n=new Date,c=new Date(n);return c.setDate(n.getDate()-29),[m(c),ee()]}}],xe=e.computed(()=>$e.filter(n=>{if(l.maxRangeDays!==void 0){if(n.days!==void 0)return n.days<=l.maxRangeDays;{const c=n.getRange();if(c)return ne(c[0],c[1])<=l.maxRangeDays}}return!0}));function we(n){const c=n.getRange();if(c){if(l.minDate&&c[0]<l.minDate||l.maxDate&&c[1]>l.maxDate)return;y("shortcut-select",c)}}return r({yearScrollRef:L}),(n,c)=>(e.openBlock(),e.createElementBlock("div",null,[t.showTitle?(e.openBlock(),e.createElementBlock("div",Ft,[e.createElementVNode("div",zt,e.toDisplayString(t.title),1),e.createElementVNode("span",{class:e.normalizeClass(["rc-calendar__header-clear",{"is-disabled":!K.value}]),onClick:a}," 清空 ",2)])):e.createCommentVNode("",!0),t.range?(e.openBlock(),e.createElementBlock("div",At,[e.createElementVNode("div",Yt,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(xe.value,d=>(e.openBlock(),e.createElementBlock("div",{key:d.key,class:"rc-calendar__shortcut-item",onClick:V=>we(d)},e.toDisplayString(d.label),9,Lt))),128))])])):e.createCommentVNode("",!0),e.createElementVNode("div",Pt,[e.createElementVNode("div",{class:"rc-calendar__nav-button",onClick:p},[e.createVNode(e.unref(A),{name:"icon_caret-left",class:"rc-calendar__nav-icon"})]),e.createElementVNode("div",{class:"rc-calendar__month-text",onClick:ge},e.toDisplayString(S.value),1),e.createElementVNode("div",{class:"rc-calendar__nav-button",onClick:h},[e.createVNode(e.unref(A),{name:"icon_caret-right",class:"rc-calendar__nav-icon"})])]),e.createElementVNode("div",Ot,[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(B,d=>e.createElementVNode("div",{key:d,class:"rc-calendar__weekday"},e.toDisplayString(d),1)),64))]),e.createElementVNode("div",Wt,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(D.value,(d,V)=>(e.openBlock(),e.createElementBlock("div",{key:V,class:e.normalizeClass(["rc-calendar__day",C(d)]),onClick:E=>Z(d)},[e.createElementVNode("div",jt,[e.createElementVNode("span",Gt,e.toDisplayString(d.text),1),d.bottomInfo?(e.openBlock(),e.createElementBlock("span",Kt,e.toDisplayString(d.bottomInfo),1)):e.createCommentVNode("",!0)])],10,Ut))),128))]),t.range&&t.showFooter?(e.openBlock(),e.createElementBlock("div",Ht,[e.createVNode(e.unref(J),{type:"default",class:"rc-calendar__footer-reset",onClick:ce},{default:e.withCtx(()=>[...c[2]||(c[2]=[e.createTextVNode("取消",-1)])]),_:1}),e.createVNode(e.unref(J),{type:"primary",class:"rc-calendar__footer-confirm",disabled:!u.value,onClick:o},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(u.value?`确定(${te.value}项)`:"确定"),1)]),_:1},8,["disabled"])])):e.createCommentVNode("",!0),e.createVNode(e.Transition,{name:"rc-calendar-fade"},{default:e.withCtx(()=>[F.value?(e.openBlock(),e.createElementBlock("div",qt,[e.createElementVNode("div",Jt,[e.createElementVNode("div",Qt,[e.createVNode(e.unref(J),{type:"default",mode:"text",size:"small",onClick:s},{default:e.withCtx(()=>[...c[3]||(c[3]=[e.createTextVNode("取消",-1)])]),_:1}),e.createElementVNode("div",Xt,[e.createElementVNode("span",{onClick:c[0]||(c[0]=d=>k("year"))},e.toDisplayString(R.value)+"年",1),I.value==="month"?(e.openBlock(),e.createElementBlock("span",Zt," - ")):e.createCommentVNode("",!0),I.value==="month"?(e.openBlock(),e.createElementBlock("span",{key:1,onClick:c[1]||(c[1]=d=>k("month"))},e.toDisplayString(Y.value)+"月",1)):e.createCommentVNode("",!0)]),I.value==="year"?(e.openBlock(),e.createBlock(e.unref(J),{key:0,type:"primary",mode:"text",size:"small",onClick:N},{default:e.withCtx(()=>[...c[4]||(c[4]=[e.createTextVNode(" 本年 ",-1)])]),_:1})):e.createCommentVNode("",!0),I.value==="month"?(e.openBlock(),e.createBlock(e.unref(J),{key:1,type:"primary",mode:"text",size:"small",onClick:x},{default:e.withCtx(()=>[...c[5]||(c[5]=[e.createTextVNode(" 本月 ",-1)])]),_:1})):e.createCommentVNode("",!0)]),I.value==="year"?(e.openBlock(),e.createElementBlock("div",en,[e.createElementVNode("div",{class:"rc-calendar__year-picker-scroll",ref_key:"yearScrollRef",ref:L,onScroll:ye},[e.createElementVNode("div",{class:"rc-calendar__year-picker-spacer",style:e.normalizeStyle({height:`${Math.floor((P.value-M.value)/j)*Ne}px`})},null,4),e.createElementVNode("div",tn,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(ue.value,d=>(e.openBlock(),e.createElementBlock("div",{key:d,class:e.normalizeClass(["rc-calendar__year-picker-item",{"is-selected":R.value===d,"is-disabled":oe(d)}]),onClick:V=>$(d)},e.toDisplayString(d),11,nn))),128))]),e.createElementVNode("div",{class:"rc-calendar__year-picker-spacer",style:e.normalizeStyle({height:`${Math.ceil((G.value-T.value)/j)*Ne}px`})},null,4)],544)])):e.createCommentVNode("",!0),I.value==="month"?(e.openBlock(),e.createElementBlock("div",an,[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(12,d=>e.createElementVNode("div",{key:d,class:e.normalizeClass(["rc-calendar__month-picker-item",{"is-selected":Y.value===d,"is-disabled":re(R.value,d)}]),onClick:V=>z(d)},e.toDisplayString(d)+"月 ",11,ln)),64))])):e.createCommentVNode("",!0)])])):e.createCommentVNode("",!0)]),_:1})]))}}),qe=Q(on,[["__scopeId","data-v-0bf1834b"]]),rn={class:"rc-calendar"},cn=["placeholder"],sn={class:"rc-calendar__input-actions"},un={key:1,class:"rc-calendar__panel"},dn=e.defineComponent({name:"rc-calendar",__name:"index",props:{modelValue:{default:null},range:{type:[Boolean,Number],default:!1},mode:{default:"default"},placeholder:{default:"请选择日期"},showTitle:{type:Boolean,default:!0},title:{default:"选择日期"},minDate:{default:void 0},maxDate:{default:void 0},disabledDate:{type:Function,default:void 0},formatter:{type:Function,default:void 0},showFooter:{type:Boolean,default:!0},endDateOffset:{type:Boolean,default:!1}},emits:["update:modelValue","change","confirm"],setup(t,{emit:r}){const f=t,l=r,y=e.ref(),B=e.ref(),v=e.ref(!1),m=e.ref(""),i=e.computed(()=>f.range===!0||typeof f.range=="number"),g=e.computed(()=>typeof f.range=="number"?f.range:void 0),w=e.computed(()=>p=>{if(f.disabledDate&&f.disabledDate(p))return!0;if(g.value!==void 0&&_.value&&!D.value){const h=u(p);if(C(_.value)&&te(_.value,h)>g.value)return!0}return!1}),b=e.ref(null),_=e.ref(null),D=e.ref(null);e.watch(()=>f.modelValue,p=>{i.value?Array.isArray(p)&&p.length===2?(_.value=p[0],D.value=I(p[1])):(_.value=null,D.value=null):b.value=typeof p=="string"?p:null,S()},{immediate:!0});function S(){f.mode==="popup"&&(i.value?_.value&&D.value?m.value=`${_.value} ~ ${D.value}`:_.value?m.value=`${_.value} ~ `:m.value="":m.value=b.value||"")}function C(p){if(!p)return null;const h=new Date(p);return isNaN(h.getTime())?null:h}function u(p){const h=p.getFullYear(),$=String(p.getMonth()+1).padStart(2,"0"),z=String(p.getDate()).padStart(2,"0");return`${h}-${$}-${z}`}function te(p,h){const $=C(p),z=C(h);if(!$||!z)return 0;const X=Math.abs(z.getTime()-$.getTime());return Math.ceil(X/(1e3*60*60*24))}function oe(p){const h=C(p);return h?(h.setDate(h.getDate()+1),u(h)):p}function re(p){const h=C(p);return h?(h.setDate(h.getDate()-1),u(h)):p}function F(p){return f.endDateOffset&&i.value?oe(p):p}function I(p){return f.endDateOffset&&i.value?re(p):p}function R(p){if(p.type!=="current-month"||f.disabledDate&&f.disabledDate(p.date))return;const h=u(p.date);if(!(f.minDate&&h<f.minDate)&&!(f.maxDate&&h>f.maxDate)){if(i.value)if(!_.value||_.value&&D.value)_.value=h,D.value=null;else{let $=_.value,z=h;if(h<_.value&&(z=_.value,$=h),_.value=$,D.value=z,_.value&&D.value){const X=F(D.value),Z=[_.value,X];l("update:modelValue",Z),l("change",Z),f.showFooter||Y()}}else{b.value=h;const $=h;l("update:modelValue",$),l("change",$),f.mode&&M()}S()}}function Y(){if(_.value&&D.value){const p=F(D.value),h=[_.value,p];l("update:modelValue",h),l("change",h),l("confirm",h),M()}}function L(){i.value?(_.value=null,D.value=null):b.value=null;const p=null;l("update:modelValue",p),l("change",p),S()}function P(p){_.value=p[0],D.value=p[1];const h=F(p[1]),$=[p[0],h];l("update:modelValue",$),l("change",$),f.showFooter?S():Y()}function T(){v.value=!0}function M(){v.value=!1}function G(p){v.value=p}function ue(){T()}function ye(){f.mode==="popup"&&ie()}function ge(){v.value||T()}function ie(){const p=m.value.trim();if(i.value){const h=p.split("~").map($=>$.trim());if(h.length===2&&h[0]&&h[1]){const $=C(h[0]),z=C(h[1]);if($&&z&&!isNaN($.getTime())&&!isNaN(z.getTime())){_.value=u($);const X=u(z);D.value=I(X);const Z=F(D.value),ce=[_.value,Z];l("update:modelValue",ce),l("change",ce);return}}}else{const h=C(p);if(h&&!isNaN(h.getTime())){b.value=u(h),l("update:modelValue",b.value),l("change",b.value);return}}S()}return(p,h)=>(e.openBlock(),e.createElementBlock("div",rn,[t.mode==="popup"?(e.openBlock(),e.createElementBlock("div",{key:0,class:"rc-calendar__input",onClick:T},[e.withDirectives(e.createElementVNode("input",{ref_key:"inputRef",ref:y,"onUpdate:modelValue":h[0]||(h[0]=$=>m.value=$),type:"text",class:"rc-calendar__input-field",placeholder:t.placeholder,readonly:"",onFocus:ue,onBlur:ye,onInput:ge},null,40,cn),[[e.vModelText,m.value]]),e.createElementVNode("div",sn,[e.createVNode(e.unref(A),{name:"icon_a-rili",class:"rc-calendar__input-icon"})])])):e.createCommentVNode("",!0),t.mode==="default"?(e.openBlock(),e.createElementBlock("div",un,[e.createVNode(qe,{"show-title":t.showTitle,title:t.title,range:i.value,"selected-date":b.value,"range-start":_.value,"range-end":D.value,"min-date":t.minDate,"max-date":t.maxDate,"disabled-date":w.value,formatter:t.formatter,"show-footer":!1,"max-range-days":g.value,onSelectDay:R,onClear:L,onConfirm:Y,onShortcutSelect:P},null,8,["show-title","title","range","selected-date","range-start","range-end","min-date","max-date","disabled-date","formatter","max-range-days"])])):e.createCommentVNode("",!0),t.mode==="popup"?(e.openBlock(),e.createBlock(e.unref(ve),{key:2,modelValue:v.value,"onUpdate:modelValue":[h[1]||(h[1]=$=>v.value=$),G],position:"bottom",overlay:!0,round:!0,"close-on-click-overlay":!0,"lock-scroll":!0},{default:e.withCtx(()=>[e.createElementVNode("div",{ref_key:"popupPanelRef",ref:B,class:"rc-calendar__panel"},[e.createVNode(qe,{"show-title":t.showTitle,title:t.title,range:i.value,"selected-date":b.value,"range-start":_.value,"range-end":D.value,"min-date":t.minDate,"max-date":t.maxDate,"disabled-date":w.value,formatter:t.formatter,"show-footer":t.showFooter,"max-range-days":g.value,onSelectDay:R,onClear:L,onConfirm:Y,onShortcutSelect:P},null,8,["show-title","title","range","selected-date","range-start","range-end","min-date","max-date","disabled-date","formatter","show-footer","max-range-days"])],512)]),_:1},8,["modelValue"])):e.createCommentVNode("",!0)]))}}),pe=Q(dn,[["__scopeId","data-v-96b29c22"]]);pe.name="rc-calendar";const fn="RcCalendar";function Le(t){return t.component(pe.name,pe),t.component(fn,pe),t}const mn={class:"rc-search-area"},vn={class:"rc-search-area__bar"},pn=["onClick"],yn={class:"rc-search-area__item-label"},gn={class:"rc-search-area__panel-content"},hn={key:1,class:"rc-search-area__input-wrapper"},kn=["placeholder"],_n={key:2,class:"rc-search-area__calendar-wrapper"},Cn={key:3,class:"rc-search-area__tree-container"},Bn={class:"rc-search-area__tree-group-title"},bn={class:"rc-search-area__tree-group-options"},Dn=["onClick"],Vn={class:"rc-search-area__option-label"},Sn={key:4,class:"rc-search-area__tree-container"},En={class:"rc-search-area__tree-group-title"},$n={class:"rc-search-area__tree-group-options"},xn=["onClick"],wn={class:"rc-search-area__option-label"},Nn={key:5,class:"rc-search-area__options-grid"},In=["onClick"],Mn={class:"rc-search-area__option-label"},Rn={key:6,class:"rc-search-area__options-grid"},Tn=["onClick"],Fn={class:"rc-search-area__option-label"},zn={key:7,class:"rc-search-area__empty"},An={key:0,class:"rc-search-area__panel-footer"},Yn=e.defineComponent({name:"rc-search-area",__name:"index",props:{items:{default:()=>[]},modelValue:{default:()=>({})},showMask:{type:Boolean,default:!0},autoConfirm:{type:Boolean,default:!1}},emits:["update:modelValue","change"],setup(t,{expose:r,emit:f}){const l=t,y=f,B=e.ref(null),v=e.ref(null),m=e.ref(null),i=e.ref({top:"0px"}),g=async()=>{if(B.value===null||!v.value)return;await e.nextTick();const o=v.value.getBoundingClientRect().top;i.value={top:`${o}px`}},w=a=>{if(B.value===null||!v.value)return;const o=a.target;if(v.value.contains(o))return;const s=v.value.closest(".rc-search-area");if(s){const k=s.querySelector(".rc-search-area__bar");if(k&&k.contains(o))return}F()};e.watch(B,async a=>{a!==null?(await e.nextTick(),g(),window.addEventListener("resize",g),window.addEventListener("scroll",g,!0),document.addEventListener("click",w,!0)):(window.removeEventListener("resize",g),window.removeEventListener("scroll",g,!0),document.removeEventListener("click",w,!0))}),e.onUnmounted(()=>{window.removeEventListener("resize",g),window.removeEventListener("scroll",g,!0),document.removeEventListener("click",w,!0)});const b=e.ref({}),_=e.ref(""),D=e.ref(null),S=e.ref({}),C=e.ref({...l.modelValue});e.watch(()=>l.modelValue,a=>{C.value={...a||{}}},{deep:!0,immediate:!0});const u=e.computed(()=>B.value===null?null:l.items[B.value]),te=e.computed(()=>{if(!u.value)return"";const a=ce(u.value);return a>0?`(${a}项)`:""}),oe=a=>{const o=C.value[a.key];if(o==null||o===""||a.slot)return a.label;if(a.type==="input"){if(o&&String(o).trim())return`${a.label}: ${o}`}else if(a.type==="calendar"){if(o){if(Array.isArray(o)&&o.length===2)return`${a.label}: ${o[0]} ~ ${o[1]}`;if(typeof o=="string")return`${a.label}: ${o}`}}else if(a.type==="single"||a.type==="tree-single"){const s=L(a,o);if(s)return`${a.label}: ${Y(s,a)}`}else{const s=Array.isArray(o)?o:[o];if(s.length>0){const k=s.map(N=>{const x=L(a,N);return x?Y(x,a):null}).filter(N=>N!==null);if(k.length>0)return`${a.label}: ${k.join("、")}`}}return a.label},re=a=>{const o=l.items[a];if(!o)return;if(B.value===a){B.value=null;return}const s=C.value[o.key];o.slot?s!=null?Array.isArray(s)?S.value[o.key]=[...s]:typeof s=="object"?S.value[o.key]={...s}:S.value[o.key]=s:S.value[o.key]=void 0:o.type==="input"?_.value=s!=null?String(s):"":o.type==="calendar"?D.value=s??null:o.type==="single"||o.type==="tree-single"?b.value[o.key]=s!==void 0?s:null:b.value[o.key]=s!==void 0?Array.isArray(s)?[...s]:[s]:[],B.value=a},F=()=>{B.value=null},I=(a,o)=>{if(!o)return typeof a=="string"?a:a.label||String(a.value);const s=a;if(o.renderItem){if(typeof o.renderItem=="string")return String(typeof s=="object"&&s!==null?s[o.renderItem]??"":s);{const k=o.renderItem(s);return k!=null?String(k):""}}return typeof a=="string"?a:a.label||String(a.value)},R=(a,o)=>{if(!o)return typeof a=="string"?a:a.value!==void 0?a.value:a;const s=a;return o.format?typeof o.format=="string"?typeof s=="object"&&s!==null?s[o.format]:s:o.format(s):typeof a=="string"?a:a.value!==void 0?a.value:a},Y=(a,o)=>{const s=a,k=o.renderResult||o.renderItem;if(k){if(typeof k=="string")return String(typeof s=="object"&&s!==null?s[k]??"":s);{const N=k(s);return N!=null?String(N):""}}return I(a,o)},L=(a,o,s)=>{const k=s||a.options;if(!k)return null;const N=a.childrenKey||"children";for(const x of k){const K=R(x,a);if(K===o||String(K)===String(o))return x;if(typeof x=="object"&&x!==null){const ne=x[N];if(Array.isArray(ne)&&ne.length>0){const ee=L(a,o,ne);if(ee)return ee}}}return null},P=(a,o)=>{const s=o||a.options;if(!s)return[];const k=a.childrenKey||"children",N=[];for(const x of s)if(N.push(x),typeof x=="object"&&x!==null){const K=x[k];Array.isArray(K)&&K.length>0&&N.push(...P(a,K))}return N},T=a=>{if(!u.value)return!1;const o=u.value.key,s=b.value[o],k=R(a,u.value);return u.value.type==="single"||u.value.type==="tree-single"?s!=null&&s===k:(Array.isArray(s)?s:[]).some(x=>x===k||String(x)===String(k))},M=a=>a?a.childrenKey?P(a):a.options||[]:[],G=a=>{if(!a)return[];const o=a.childrenKey||"children";return(a.options||[]).filter(s=>{if(typeof s=="string")return!1;const k=s[o];return Array.isArray(k)&&k.length>0})},ue=(a,o)=>{if(!o||typeof a=="string")return[];const s=o.childrenKey||"children",k=a[s];return Array.isArray(k)?k:[]},ye=a=>{if(a)return S.value[a.key]!==void 0?S.value[a.key]:C.value[a.key]},ge=(a,o)=>{if(a&&(S.value[a.key]=o,l.autoConfirm)){const s=a.key;C.value[s]=o,y("update:modelValue",{...C.value}),y("change",{...C.value},a),F()}},ie=a=>{if(!u.value)return;const o=u.value.key,s=R(a,u.value);C.value[o];let k;b.value[o]===s?k=void 0:k=s,C.value[o]=k,y("update:modelValue",{...C.value}),y("change",{...C.value},u.value),F()},p=a=>{if(!u.value)return;const o=u.value.key,s=R(a,u.value),k=Array.isArray(b.value[o])?[...b.value[o]]:[],N=k.findIndex(x=>x===s||String(x)===String(s));if(N>=0?k.splice(N,1):k.push(s),b.value[o]=k,l.autoConfirm){const x=k.length>0?k:void 0;C.value[o]=x,y("update:modelValue",{...C.value}),y("change",{...C.value},u.value),F()}},h=()=>{if(!u.value)return;const a=u.value.key;u.value.slot?S.value[a]=void 0:u.value.type==="input"?_.value="":u.value.type==="calendar"?D.value=null:u.value.type==="single"||u.value.type==="tree-single"?b.value[a]=null:b.value[a]=[]},$=()=>{if(l.autoConfirm&&u.value){const a=u.value.key,o=_.value.trim()||void 0;C.value[a]=o,y("update:modelValue",{...C.value}),y("change",{...C.value},u.value),F()}},z=a=>{if(D.value=a,l.autoConfirm&&u.value){const o=u.value.key,s=a??void 0;C.value[o]=s,y("update:modelValue",{...C.value}),y("change",{...C.value},u.value),F()}},X=()=>{if(!u.value)return;const a=u.value.key;C.value[a];let o;if(u.value.slot)o=S.value[a],C.value[a]=o;else if(u.value.type==="input")o=_.value.trim()||void 0,C.value[a]=o;else if(u.value.type==="calendar")o=D.value!==null&&D.value!==void 0?D.value:void 0,C.value[a]=o;else if(u.value.type==="single"||u.value.type==="tree-single"){const s=b.value[a];o=s??void 0,C.value[a]=o}else{const s=b.value[a];o=Array.isArray(s)&&s.length>0?s:void 0,C.value[a]=o}y("update:modelValue",{...C.value}),y("change",{...C.value},u.value),F()},Z=a=>{const o=C.value[a.key];return o==null||o===""?0:a.slot?1:a.type==="input"?String(o).trim()?1:0:a.type==="single"||a.type==="tree-single"?1:Array.isArray(o)?o.length:o?1:0},ce=a=>{if(a.slot){const s=S.value[a.key];return s!=null&&s!==""?1:0}else{if(a.type==="input")return _.value.trim()?1:0;if(a.type==="calendar")return D.value!==null&&D.value!==void 0?1:0}const o=b.value[a.key];return o==null||o===""?0:a.type==="single"||a.type==="tree-single"?1:Array.isArray(o)?o.length:0};return r({getValues:()=>({...C.value}),reset:()=>{C.value={},b.value={},S.value={},y("update:modelValue",{})}}),(a,o)=>(e.openBlock(),e.createElementBlock("div",mn,[e.createElementVNode("div",vn,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.items,(s,k)=>(e.openBlock(),e.createElementBlock("div",{key:k,class:e.normalizeClass(["rc-search-area__item",{"is-active":B.value===k,"has-value":Z(s)>0}]),onClick:N=>re(k)},[e.createElementVNode("span",yn,e.toDisplayString(oe(s)),1),e.createVNode(e.unref(A),{name:"icon_a-xiala2",color:B.value!==k&&Z(s)>0?"#1677ff":"#969799",class:e.normalizeClass(["rc-search-area__item-arrow",{"is-up":B.value===k}])},null,8,["color","class"])],10,pn))),128))]),e.createVNode(e.Transition,{name:"rc-search-area-fade"},{default:e.withCtx(()=>[B.value!==null&&l.showMask?(e.openBlock(),e.createElementBlock("div",{key:0,ref_key:"maskRef",ref:m,class:"rc-search-area__mask",style:e.normalizeStyle(i.value),onClick:F},null,4)):e.createCommentVNode("",!0)]),_:1}),e.createVNode(e.Transition,{name:"rc-search-area-slide"},{default:e.withCtx(()=>{var s,k,N,x,K,ne,ee,he,be,De,ke,Ve,Se,Ee,$e,xe,we,n,c;return[B.value!==null?(e.openBlock(),e.createElementBlock("div",{key:0,ref_key:"panelRef",ref:v,class:"rc-search-area__panel"},[e.createElementVNode("div",gn,[(s=u.value)!=null&&s.slot&&a.$slots[u.value.key]?e.renderSlot(a.$slots,u.value.key,{key:0,value:ye(u.value),"update:value":d=>ge(u.value,d)},void 0,!0):((k=u.value)==null?void 0:k.type)==="input"?(e.openBlock(),e.createElementBlock("div",hn,[e.withDirectives(e.createElementVNode("input",{"onUpdate:modelValue":o[0]||(o[0]=d=>_.value=d),type:"text",class:"rc-search-area__input",placeholder:u.value.placeholder||"请输入",onInput:$},null,40,kn),[[e.vModelText,_.value]])])):((N=u.value)==null?void 0:N.type)==="calendar"?(e.openBlock(),e.createElementBlock("div",_n,[e.createVNode(e.unref(pe),{modelValue:D.value,"onUpdate:modelValue":o[1]||(o[1]=d=>D.value=d),range:((x=u.value.calendarConfig)==null?void 0:x.range)||!1,mode:"default","min-date":(K=u.value.calendarConfig)==null?void 0:K.minDate,"max-date":(ne=u.value.calendarConfig)==null?void 0:ne.maxDate,"disabled-date":(ee=u.value.calendarConfig)==null?void 0:ee.disabledDate,formatter:(he=u.value.calendarConfig)==null?void 0:he.formatter,"end-date-offset":((be=u.value.calendarConfig)==null?void 0:be.endDateOffset)||!1,onChange:z},null,8,["modelValue","range","min-date","max-date","disabled-date","formatter","end-date-offset"])])):((De=u.value)==null?void 0:De.type)==="tree-single"?(e.openBlock(),e.createElementBlock("div",Cn,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(G(u.value),(d,V)=>(e.openBlock(),e.createElementBlock("div",{key:V,class:"rc-search-area__tree-group"},[e.createElementVNode("div",Bn,e.toDisplayString(I(d,u.value||void 0)),1),e.createElementVNode("div",bn,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(ue(d,u.value),(E,H)=>(e.openBlock(),e.createElementBlock("div",{key:H,class:e.normalizeClass(["rc-search-area__option",{"is-selected":T(E)}]),onClick:q=>ie(E)},[e.createElementVNode("span",Vn,e.toDisplayString(I(E,u.value||void 0)),1),T(E)?(e.openBlock(),e.createBlock(e.unref(A),{key:0,name:"icon_check",class:"rc-search-area__option-check"})):e.createCommentVNode("",!0)],10,Dn))),128))])]))),128))])):((ke=u.value)==null?void 0:ke.type)==="tree-multiple"?(e.openBlock(),e.createElementBlock("div",Sn,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(G(u.value),(d,V)=>(e.openBlock(),e.createElementBlock("div",{key:V,class:"rc-search-area__tree-group"},[e.createElementVNode("div",En,e.toDisplayString(I(d,u.value||void 0)),1),e.createElementVNode("div",$n,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(ue(d,u.value),(E,H)=>(e.openBlock(),e.createElementBlock("div",{key:H,class:e.normalizeClass(["rc-search-area__option",{"is-selected":T(E)}]),onClick:q=>p(E)},[e.createElementVNode("span",wn,e.toDisplayString(I(E,u.value||void 0)),1),T(E)?(e.openBlock(),e.createBlock(e.unref(A),{key:0,name:"icon_check",class:"rc-search-area__option-check"})):e.createCommentVNode("",!0)],10,xn))),128))])]))),128))])):((Ve=u.value)==null?void 0:Ve.type)==="single"?(e.openBlock(),e.createElementBlock("div",Nn,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(M(u.value),(d,V)=>(e.openBlock(),e.createElementBlock("div",{key:V,class:e.normalizeClass(["rc-search-area__option",{"is-selected":T(d)}]),onClick:E=>ie(d)},[e.createElementVNode("span",Mn,e.toDisplayString(I(d,u.value||void 0)),1),T(d)?(e.openBlock(),e.createBlock(e.unref(A),{key:0,name:"icon_check",class:"rc-search-area__option-check"})):e.createCommentVNode("",!0)],10,In))),128))])):(e.openBlock(),e.createElementBlock("div",Rn,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(M(u.value),(d,V)=>(e.openBlock(),e.createElementBlock("div",{key:V,class:e.normalizeClass(["rc-search-area__option",{"is-selected":T(d)}]),onClick:E=>p(d)},[e.createElementVNode("span",Fn,e.toDisplayString(I(d,u.value||void 0)),1),T(d)?(e.openBlock(),e.createBlock(e.unref(A),{key:0,name:"icon_check",class:"rc-search-area__option-check"})):e.createCommentVNode("",!0)],10,Tn))),128))])),((Se=u.value)==null?void 0:Se.type)!=="input"&&((Ee=u.value)==null?void 0:Ee.type)!=="calendar"&&!(($e=u.value)!=null&&$e.slot)&&((we=(xe=u.value)==null?void 0:xe.options)==null?void 0:we.length)===0?(e.openBlock(),e.createElementBlock("div",zn,[...o[2]||(o[2]=[e.createElementVNode("p",null,"暂无选项",-1)])])):e.createCommentVNode("",!0)]),!l.autoConfirm&&((n=u.value)==null?void 0:n.type)!=="single"&&((c=u.value)==null?void 0:c.type)!=="tree-single"?(e.openBlock(),e.createElementBlock("div",An,[e.createVNode(e.unref(J),{block:"",onClick:h},{default:e.withCtx(()=>[...o[3]||(o[3]=[e.createTextVNode(" 重置 ",-1)])]),_:1}),e.createVNode(e.unref(J),{type:"primary",block:"",onClick:X},{default:e.withCtx(()=>[e.createTextVNode(" 确定"+e.toDisplayString(te.value),1)]),_:1})])):e.createCommentVNode("",!0)],512)):e.createCommentVNode("",!0)]}),_:3})]))}}),Pe=Q(Yn,[["__scopeId","data-v-dd3a69e1"]]),Oe=t=>{t.component("RcSearchArea",Pe),t.component("rc-search-area",Pe)},Ie=Symbol("RECYCLE_UI_CONFIG"),We={prefix:"rc",autoRegister:!0,provideKey:Ie,theme:{},iconCssUrl:"//at.alicdn.com/t/c/font_4252799_o59odx6bqil.css",iconClass:"iconfont"};function Ln(t,r){r.autoRegister!==!1&&(typeof Re=="function"&&Re(t),typeof Te=="function"&&Te(t),typeof Fe=="function"&&Fe(t),typeof He=="function"&&He(t),typeof Ae=="function"&&Ae(t),typeof ze=="function"&&ze(t),typeof Oe=="function"&&Oe(t),typeof Le=="function"&&Le(t),typeof Ye=="function"&&Ye(t))}const Ue=(t,r)=>{const f={...We,...r||{}};if(t.provide(f.provideKey??Ie,f),t.config.globalProperties.$recycleUI=f,typeof window<"u"&&f.iconCssUrl){const l=`link[rel="stylesheet"][data-rcui-icon="true"][href="${f.iconCssUrl}"]`;if(!document.head.querySelector(l)){const B=document.createElement("link");B.rel="stylesheet",B.href=f.iconCssUrl,B.setAttribute("data-rcui-icon","true"),document.head.appendChild(B)}}return Ln(t,f),t},Pn={install:Ue};function On(t){return{install(r){Ue(r,t)}}}exports.RECYCLE_UI_SYMBOL=Ie;exports.RcButton=J;exports.RcCalendar=pe;exports.RcCard=Ce;exports.RcDescriptions=Je;exports.RcDescriptionsItem=Qe;exports.RcIcon=A;exports.RcPopup=ve;exports.RcSearchArea=Pe;exports.RcToast=Be;exports.createRecycleUI=On;exports.default=Pn;exports.defaultRecycleUIConfig=We;exports.hideToast=Xe;exports.install=Ue;exports.installButton=Re;exports.installCalendar=Le;exports.installCard=Fe;exports.installDescriptions=Te;exports.installIcon=Ae;exports.installMessage=ze;exports.installPopup=Ye;exports.installSearchArea=Oe;exports.message=Ze;exports.rcDescriptions=Je;exports.rcDescriptionsItem=Qe;exports.showToast=Et;
|
|
2
2
|
//# sourceMappingURL=index.cjs.map
|