iking-web-ui-pro 0.3.1 → 0.3.2
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/IkSelectTag/ik.index.es.js +141 -130
- package/dist/IkSelectTag/ik.index.umd.js +1 -1
- package/dist/IkSelectTag/iking-web-ui-pro.css +1 -1
- package/dist/IkStatu/ik.index.es.js +47 -38
- package/dist/IkStatu/ik.index.umd.js +1 -1
- package/dist/IkStatu/iking-web-ui-pro.css +1 -1
- package/dist/IkStatuOver/ik.index.es.js +114 -106
- package/dist/IkStatuOver/ik.index.umd.js +1 -1
- package/dist/IkStatuOver/iking-web-ui-pro.css +1 -1
- package/dist/IkTaskResume/ik.index.es.js +23 -0
- package/dist/IkTaskResume/ik.index.umd.js +1 -0
- package/dist/iking-web-ui-pro.css +1 -1
- package/dist/index.es.js +6151 -6125
- package/dist/index.umd.js +72 -72
- package/dist/src/components/IkStatu/index.d.ts +3 -3
- package/dist/src/components/IkStatu/src/index.vue.d.ts +3 -3
- package/dist/src/components/IkTaskResume/index.d.ts +2 -0
- package/dist/src/components/IkTaskResume/src/index.vue.d.ts +2 -0
- package/dist/src/components/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import { ikDom as
|
|
3
|
-
const A = (
|
|
4
|
-
for (const
|
|
5
|
-
|
|
6
|
-
},
|
|
7
|
-
const
|
|
8
|
-
for (const [
|
|
9
|
-
|
|
10
|
-
return
|
|
11
|
-
},
|
|
1
|
+
import { defineComponent as w, computed as y, resolveComponent as h, openBlock as a, createBlock as g, normalizeClass as D, normalizeStyle as W, withCtx as k, createElementBlock as u, createCommentVNode as S, createTextVNode as $, toDisplayString as x, ref as L, Fragment as b, renderList as B, unref as N, mergeProps as _, createElementVNode as V } from "vue";
|
|
2
|
+
import { ikDom as z } from "iking-utils-pro";
|
|
3
|
+
const A = (l, i) => (l.install = (e) => {
|
|
4
|
+
for (const r of [l, ...Object.values({})])
|
|
5
|
+
e.component(r.name, r);
|
|
6
|
+
}, l), O = (l, i) => {
|
|
7
|
+
const e = l.__vccOpts || l;
|
|
8
|
+
for (const [r, c] of i)
|
|
9
|
+
e[r] = c;
|
|
10
|
+
return e;
|
|
11
|
+
}, E = /* @__PURE__ */ w({
|
|
12
12
|
__name: "index",
|
|
13
13
|
props: {
|
|
14
14
|
title: {
|
|
@@ -17,7 +17,7 @@ const A = (t, s) => (t.install = (l) => {
|
|
|
17
17
|
},
|
|
18
18
|
type: {
|
|
19
19
|
type: String,
|
|
20
|
-
default: ""
|
|
20
|
+
default: "primary"
|
|
21
21
|
},
|
|
22
22
|
// 传了type时,color和background不生效
|
|
23
23
|
// 文字颜色
|
|
@@ -36,7 +36,7 @@ const A = (t, s) => (t.install = (l) => {
|
|
|
36
36
|
},
|
|
37
37
|
effect: {
|
|
38
38
|
type: String,
|
|
39
|
-
default: "
|
|
39
|
+
default: "plain"
|
|
40
40
|
},
|
|
41
41
|
disabled: {
|
|
42
42
|
type: Boolean,
|
|
@@ -66,45 +66,54 @@ const A = (t, s) => (t.install = (l) => {
|
|
|
66
66
|
}
|
|
67
67
|
},
|
|
68
68
|
emits: ["close"],
|
|
69
|
-
setup(
|
|
70
|
-
const
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
69
|
+
setup(l, { emit: i }) {
|
|
70
|
+
const e = l, r = y(() => {
|
|
71
|
+
const o = e.type ? e.type === "danger" ? `var(--el-color-${e.type})` : {
|
|
72
|
+
color: `var(--ik-color-${e.type})`,
|
|
73
|
+
backgroundColor: `var(--ik-color-${e.type}-light)`
|
|
74
|
+
} : {
|
|
75
|
+
color: e.color,
|
|
76
|
+
backgroundColor: e.background,
|
|
77
|
+
border: "none"
|
|
78
|
+
};
|
|
79
|
+
if (e.effect === "plain" && e.type !== "danger")
|
|
80
|
+
o.backgroundColor = "transparent", o.borderColor = e.type ? `var(--ik-color-${e.type})` : e.color;
|
|
81
|
+
else if (e.effect === "dark" && e.type !== "danger") {
|
|
82
|
+
const f = e.type ? `var(--ik-color-${e.type})` : e.color;
|
|
83
|
+
o.backgroundColor = f, o.borderColor = f, o.color = "#fff";
|
|
84
|
+
}
|
|
85
|
+
return o;
|
|
86
|
+
}), c = i, d = () => {
|
|
87
|
+
c("close");
|
|
79
88
|
};
|
|
80
|
-
return (
|
|
81
|
-
const
|
|
82
|
-
return
|
|
83
|
-
effect:
|
|
84
|
-
class:
|
|
85
|
-
type:
|
|
86
|
-
style:
|
|
87
|
-
closable:
|
|
88
|
-
onClose:
|
|
89
|
+
return (o, f) => {
|
|
90
|
+
const m = h("el-tag");
|
|
91
|
+
return a(), g(m, {
|
|
92
|
+
effect: l.effect,
|
|
93
|
+
class: D(["ik-statu-tag", { disabled: l.disabled }]),
|
|
94
|
+
type: l.type,
|
|
95
|
+
style: W(r.value),
|
|
96
|
+
closable: o.$attrs.closable && !l.disabled,
|
|
97
|
+
onClose: d
|
|
89
98
|
}, {
|
|
90
|
-
default:
|
|
91
|
-
|
|
99
|
+
default: k(() => [
|
|
100
|
+
l.circle ? (a(), u(
|
|
92
101
|
"span",
|
|
93
102
|
{
|
|
94
103
|
key: 0,
|
|
95
104
|
class: "inline-block rounded-full",
|
|
96
|
-
style:
|
|
97
|
-
backgroundColor:
|
|
98
|
-
width: `${
|
|
99
|
-
height: `${
|
|
105
|
+
style: W({
|
|
106
|
+
backgroundColor: l.type ? l.type === "danger" ? `var(--el-color-${l.type})` : `var(--ik-color-${l.type})` : l.circleColor,
|
|
107
|
+
width: `${l.circleW}px`,
|
|
108
|
+
height: `${l.circleH}px`
|
|
100
109
|
})
|
|
101
110
|
},
|
|
102
111
|
null,
|
|
103
112
|
4
|
|
104
113
|
/* STYLE */
|
|
105
|
-
)) :
|
|
106
|
-
|
|
107
|
-
" " +
|
|
114
|
+
)) : S("v-if", !0),
|
|
115
|
+
$(
|
|
116
|
+
" " + x(l.title),
|
|
108
117
|
1
|
|
109
118
|
/* TEXT */
|
|
110
119
|
)
|
|
@@ -114,7 +123,7 @@ const A = (t, s) => (t.install = (l) => {
|
|
|
114
123
|
}, 8, ["effect", "class", "type", "style", "closable"]);
|
|
115
124
|
};
|
|
116
125
|
}
|
|
117
|
-
}),
|
|
126
|
+
}), H = /* @__PURE__ */ O(E, [["__scopeId", "data-v-a3967db7"]]), I = A(H), R = /* @__PURE__ */ w({
|
|
118
127
|
__name: "index",
|
|
119
128
|
props: {
|
|
120
129
|
// 超出长度时以 +2 这样的方式显示
|
|
@@ -140,66 +149,65 @@ const A = (t, s) => (t.install = (l) => {
|
|
|
140
149
|
}
|
|
141
150
|
},
|
|
142
151
|
emits: ["close"],
|
|
143
|
-
setup(
|
|
144
|
-
const
|
|
145
|
-
var
|
|
152
|
+
setup(l, { emit: i }) {
|
|
153
|
+
const e = l, r = y(() => Array.isArray(e.list) ? e.list : typeof e.list == "string" ? e.list.split(",").map((n, p) => {
|
|
154
|
+
var s;
|
|
146
155
|
return {
|
|
147
|
-
...((
|
|
148
|
-
title:
|
|
156
|
+
...((s = e.data) == null ? void 0 : s[p]) || {},
|
|
157
|
+
title: n,
|
|
149
158
|
type: ""
|
|
150
159
|
};
|
|
151
|
-
}) : []),
|
|
152
|
-
if (
|
|
153
|
-
const
|
|
154
|
-
let
|
|
155
|
-
const
|
|
156
|
-
let
|
|
157
|
-
for (const
|
|
158
|
-
const
|
|
159
|
-
|
|
160
|
+
}) : []), c = L(null), d = y(() => {
|
|
161
|
+
if (c.value) {
|
|
162
|
+
const n = c.value.clientWidth;
|
|
163
|
+
let p = 24;
|
|
164
|
+
const s = [];
|
|
165
|
+
let v = 0;
|
|
166
|
+
for (const t of r.value) {
|
|
167
|
+
const C = z.useTextWidth(String((t == null ? void 0 : t.title) || t));
|
|
168
|
+
p += C + 40, (p <= n || !v) && s.push(t), v++;
|
|
160
169
|
}
|
|
161
|
-
return
|
|
170
|
+
return s;
|
|
162
171
|
}
|
|
163
|
-
return
|
|
164
|
-
}),
|
|
165
|
-
|
|
172
|
+
return r.value;
|
|
173
|
+
}), o = y(() => r.value.length - d.value.length), f = y(() => r.value.slice(d.value.length)), m = i, T = (n) => {
|
|
174
|
+
m("close", n);
|
|
166
175
|
};
|
|
167
|
-
return (
|
|
168
|
-
const
|
|
169
|
-
return
|
|
176
|
+
return (n, p) => {
|
|
177
|
+
const s = h("el-tag"), v = h("el-popover");
|
|
178
|
+
return a(), u(
|
|
170
179
|
"div",
|
|
171
180
|
{
|
|
172
181
|
ref_key: "containerRef",
|
|
173
|
-
ref:
|
|
182
|
+
ref: c,
|
|
174
183
|
class: "tag-container"
|
|
175
184
|
},
|
|
176
185
|
[
|
|
177
|
-
(
|
|
178
|
-
|
|
186
|
+
(a(!0), u(
|
|
187
|
+
b,
|
|
179
188
|
null,
|
|
180
|
-
|
|
181
|
-
|
|
189
|
+
B(d.value, (t) => (a(), u(
|
|
190
|
+
b,
|
|
182
191
|
{
|
|
183
|
-
key:
|
|
192
|
+
key: t.title
|
|
184
193
|
},
|
|
185
194
|
[
|
|
186
|
-
|
|
195
|
+
t.title !== "--" ? (a(), g(N(I), _({
|
|
187
196
|
key: 0,
|
|
188
|
-
title:
|
|
189
|
-
onClose: (
|
|
190
|
-
color:
|
|
191
|
-
|
|
192
|
-
type: e.type,
|
|
197
|
+
title: t.title,
|
|
198
|
+
onClose: (C) => T(t),
|
|
199
|
+
color: t.color,
|
|
200
|
+
type: t.type || "primary",
|
|
193
201
|
ref_for: !0
|
|
194
|
-
},
|
|
202
|
+
}, n.$attrs, {
|
|
195
203
|
circle: !1,
|
|
196
|
-
disabled:
|
|
197
|
-
}), null, 16, ["title", "onClose", "color", "
|
|
198
|
-
|
|
204
|
+
disabled: t == null ? void 0 : t.disabled
|
|
205
|
+
}), null, 16, ["title", "onClose", "color", "type", "disabled"])) : (a(), u(
|
|
206
|
+
b,
|
|
199
207
|
{ key: 1 },
|
|
200
208
|
[
|
|
201
|
-
|
|
202
|
-
|
|
209
|
+
$(
|
|
210
|
+
x(t.title),
|
|
203
211
|
1
|
|
204
212
|
/* TEXT */
|
|
205
213
|
)
|
|
@@ -214,46 +222,46 @@ const A = (t, s) => (t.install = (l) => {
|
|
|
214
222
|
128
|
|
215
223
|
/* KEYED_FRAGMENT */
|
|
216
224
|
)),
|
|
217
|
-
|
|
225
|
+
o.value ? (a(), g(v, {
|
|
218
226
|
key: 0,
|
|
219
227
|
placement: "bottom",
|
|
220
228
|
"popper-class": "ik-statu-over",
|
|
221
229
|
trigger: "hover"
|
|
222
230
|
}, {
|
|
223
|
-
reference:
|
|
224
|
-
|
|
231
|
+
reference: k(() => [
|
|
232
|
+
o.value ? (a(), g(s, {
|
|
233
|
+
key: 0,
|
|
225
234
|
class: "more-tags",
|
|
226
235
|
type: "info",
|
|
227
236
|
closable: !1
|
|
228
237
|
}, {
|
|
229
|
-
default:
|
|
230
|
-
|
|
231
|
-
" +" +
|
|
238
|
+
default: k(() => [
|
|
239
|
+
$(
|
|
240
|
+
" +" + x(o.value),
|
|
232
241
|
1
|
|
233
242
|
/* TEXT */
|
|
234
243
|
)
|
|
235
244
|
]),
|
|
236
245
|
_: 1
|
|
237
246
|
/* STABLE */
|
|
238
|
-
})
|
|
247
|
+
})) : S("v-if", !0)
|
|
239
248
|
]),
|
|
240
|
-
default:
|
|
241
|
-
|
|
242
|
-
(
|
|
243
|
-
|
|
249
|
+
default: k(() => [
|
|
250
|
+
V("div", null, [
|
|
251
|
+
(a(!0), u(
|
|
252
|
+
b,
|
|
244
253
|
null,
|
|
245
|
-
|
|
246
|
-
key:
|
|
247
|
-
title:
|
|
248
|
-
color:
|
|
249
|
-
onClose: (
|
|
250
|
-
|
|
251
|
-
type: e.type,
|
|
254
|
+
B(f.value, (t) => (a(), g(N(I), _({
|
|
255
|
+
key: t.title,
|
|
256
|
+
title: t.title,
|
|
257
|
+
color: t.color,
|
|
258
|
+
onClose: (C) => T(t),
|
|
259
|
+
type: t.type || "primary",
|
|
252
260
|
circle: !1,
|
|
253
261
|
ref_for: !0
|
|
254
|
-
},
|
|
255
|
-
disabled:
|
|
256
|
-
}), null, 16, ["title", "color", "onClose", "
|
|
262
|
+
}, n.$attrs, {
|
|
263
|
+
disabled: t == null ? void 0 : t.disabled
|
|
264
|
+
}), null, 16, ["title", "color", "onClose", "type", "disabled"]))),
|
|
257
265
|
128
|
|
258
266
|
/* KEYED_FRAGMENT */
|
|
259
267
|
))
|
|
@@ -261,15 +269,15 @@ const A = (t, s) => (t.install = (l) => {
|
|
|
261
269
|
]),
|
|
262
270
|
_: 1
|
|
263
271
|
/* STABLE */
|
|
264
|
-
})) :
|
|
272
|
+
})) : S("v-if", !0)
|
|
265
273
|
],
|
|
266
274
|
512
|
|
267
275
|
/* NEED_PATCH */
|
|
268
276
|
);
|
|
269
277
|
};
|
|
270
278
|
}
|
|
271
|
-
}),
|
|
279
|
+
}), j = /* @__PURE__ */ O(R, [["__scopeId", "data-v-84c057e2"]]), q = A(j);
|
|
272
280
|
export {
|
|
273
|
-
|
|
274
|
-
|
|
281
|
+
q as IkStatuOver,
|
|
282
|
+
q as default
|
|
275
283
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
(function(
|
|
1
|
+
(function(a,e){typeof exports=="object"&&typeof module<"u"?e(exports,require("vue"),require("iking-utils-pro")):typeof define=="function"&&define.amd?define(["exports","vue","iking-utils-pro"],e):(a=typeof globalThis<"u"?globalThis:a||self,e(a.index={},a.vue,a["iking-utils-pro"]))})(this,function(a,e,S){"use strict";const m=(l,d)=>(l.install=t=>{for(const n of[l,...Object.values({})])t.component(n.name,n)},l),b=(l,d)=>{const t=l.__vccOpts||l;for(const[n,s]of d)t[n]=s;return t},C=m(b(e.defineComponent({__name:"index",props:{title:{type:String,default:""},type:{type:String,default:"primary"},color:{type:String,default:""},background:{type:String,default:""},circleColor:{type:String,default:""},effect:{type:String,default:"plain"},disabled:{type:Boolean,default:!1},circle:{type:Boolean,default:!1},circleW:{type:Number,default:8},circleH:{type:Number,default:8},borderWidth:{type:Number,default:1},borderType:{type:String,default:"solid"}},emits:["close"],setup(l,{emit:d}){const t=l,n=e.computed(()=>{const r=t.type?t.type==="danger"?`var(--el-color-${t.type})`:{color:`var(--ik-color-${t.type})`,backgroundColor:`var(--ik-color-${t.type}-light)`}:{color:t.color,backgroundColor:t.background,border:"none"};if(t.effect==="plain"&&t.type!=="danger")r.backgroundColor="transparent",r.borderColor=t.type?`var(--ik-color-${t.type})`:t.color;else if(t.effect==="dark"&&t.type!=="danger"){const f=t.type?`var(--ik-color-${t.type})`:t.color;r.backgroundColor=f,r.borderColor=f,r.color="#fff"}return r}),s=d,p=()=>{s("close")};return(r,f)=>{const k=e.resolveComponent("el-tag");return e.openBlock(),e.createBlock(k,{effect:l.effect,class:e.normalizeClass(["ik-statu-tag",{disabled:l.disabled}]),type:l.type,style:e.normalizeStyle(n.value),closable:r.$attrs.closable&&!l.disabled,onClose:p},{default:e.withCtx(()=>[l.circle?(e.openBlock(),e.createElementBlock("span",{key:0,class:"inline-block rounded-full",style:e.normalizeStyle({backgroundColor:l.type?l.type==="danger"?`var(--el-color-${l.type})`:`var(--ik-color-${l.type})`:l.circleColor,width:`${l.circleW}px`,height:`${l.circleH}px`})},null,4)):e.createCommentVNode("v-if",!0),e.createTextVNode(" "+e.toDisplayString(l.title),1)]),_:1},8,["effect","class","type","style","closable"])}}}),[["__scopeId","data-v-a3967db7"]])),h=m(b(e.defineComponent({__name:"index",props:{overfolw:{type:Boolean,default:!0},list:{type:Array,default:()=>[]},data:{type:Array,default:()=>[]}},emits:["close"],setup(l,{emit:d}){const t=l,n=e.computed(()=>Array.isArray(t.list)?t.list:typeof t.list=="string"?t.list.split(",").map((c,y)=>{var i;return{...((i=t.data)==null?void 0:i[y])||{},title:c,type:""}}):[]),s=e.ref(null),p=e.computed(()=>{if(s.value){const c=s.value.clientWidth;let y=24;const i=[];let u=0;for(const o of n.value){const g=S.ikDom.useTextWidth(String((o==null?void 0:o.title)||o));y+=g+40,(y<=c||!u)&&i.push(o),u++}return i}return n.value}),r=e.computed(()=>n.value.length-p.value.length),f=e.computed(()=>n.value.slice(p.value.length)),k=d,B=c=>{k("close",c)};return(c,y)=>{const i=e.resolveComponent("el-tag"),u=e.resolveComponent("el-popover");return e.openBlock(),e.createElementBlock("div",{ref_key:"containerRef",ref:s,class:"tag-container"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(p.value,o=>(e.openBlock(),e.createElementBlock(e.Fragment,{key:o.title},[o.title!=="--"?(e.openBlock(),e.createBlock(e.unref(C),e.mergeProps({key:0,title:o.title,onClose:g=>B(o),color:o.color,type:o.type||"primary",ref_for:!0},c.$attrs,{circle:!1,disabled:o==null?void 0:o.disabled}),null,16,["title","onClose","color","type","disabled"])):(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createTextVNode(e.toDisplayString(o.title),1)],64))],64))),128)),r.value?(e.openBlock(),e.createBlock(u,{key:0,placement:"bottom","popper-class":"ik-statu-over",trigger:"hover"},{reference:e.withCtx(()=>[r.value?(e.openBlock(),e.createBlock(i,{key:0,class:"more-tags",type:"info",closable:!1},{default:e.withCtx(()=>[e.createTextVNode(" +"+e.toDisplayString(r.value),1)]),_:1})):e.createCommentVNode("v-if",!0)]),default:e.withCtx(()=>[e.createElementVNode("div",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(f.value,o=>(e.openBlock(),e.createBlock(e.unref(C),e.mergeProps({key:o.title,title:o.title,color:o.color,onClose:g=>B(o),type:o.type||"primary",circle:!1,ref_for:!0},c.$attrs,{disabled:o==null?void 0:o.disabled}),null,16,["title","color","onClose","type","disabled"]))),128))])]),_:1})):e.createCommentVNode("v-if",!0)],512)}}}),[["__scopeId","data-v-84c057e2"]]));a.IkStatuOver=h,a.default=h,Object.defineProperties(a,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}})});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.ik-statu-tag[data-v-
|
|
1
|
+
.ik-statu-tag[data-v-a3967db7]{margin:5px 0}.ik-statu-tag[data-v-a3967db7]:not(:first-child){margin-left:5px}.el-tag[data-v-a3967db7]:not(.el-tag--plain){border:none}.el-tag--danger[data-v-a3967db7]:not(.el-tag--plain){color:var(--ik-color-error);background-color:var(--ik-color-error-light)}.ik-statu-over{width:auto!important;min-width:0!important}.tag-container[data-v-84c057e2]{display:flex;width:100%}.tag-container .ik-statu-tag[data-v-84c057e2]{max-width:calc(100% - 46px)}.tag-container .el-tag[data-v-84c057e2]:not(:last-child){margin-right:5px}.tag-container[data-v-84c057e2] .el-tag__content{display:inline-block!important;width:100%;overflow:hidden;text-overflow:ellipsis}.more-tags[data-v-84c057e2]{margin:5px 0}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { defineComponent as s, openBlock as l, createElementBlock as r, createElementVNode as a } from "vue";
|
|
2
|
+
const m = (e, o) => (e.install = (t) => {
|
|
3
|
+
for (const n of [e, ...Object.values({})])
|
|
4
|
+
t.component(n.name, n);
|
|
5
|
+
}, e), c = /* @__PURE__ */ s({
|
|
6
|
+
name: "IkTaskResume",
|
|
7
|
+
__name: "index",
|
|
8
|
+
setup(e) {
|
|
9
|
+
return (o, t) => (l(), r("div", null, t[0] || (t[0] = [
|
|
10
|
+
a(
|
|
11
|
+
"h1",
|
|
12
|
+
null,
|
|
13
|
+
"IkTaskResume",
|
|
14
|
+
-1
|
|
15
|
+
/* HOISTED */
|
|
16
|
+
)
|
|
17
|
+
])));
|
|
18
|
+
}
|
|
19
|
+
}), p = m(c);
|
|
20
|
+
export {
|
|
21
|
+
p as IkTaskResume,
|
|
22
|
+
p as default
|
|
23
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
(function(e,n){typeof exports=="object"&&typeof module<"u"?n(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],n):(e=typeof globalThis<"u"?globalThis:e||self,n(e.index={},e.vue))})(this,function(e,n){"use strict";const o=((t,i)=>(t.install=s=>{for(const u of[t,...Object.values({})])s.component(u.name,u)},t))(n.defineComponent({name:"IkTaskResume",__name:"index",setup(t){return(i,s)=>(n.openBlock(),n.createElementBlock("div",null,s[0]||(s[0]=[n.createElementVNode("h1",null,"IkTaskResume",-1)])))}}));e.IkTaskResume=o,e.default=o,Object.defineProperties(e,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}})});
|