@mekari/pixel3-timeline 0.0.16-dev.4 → 0.0.16-dev.6
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/accordion.js +5 -2
- package/dist/accordion.mjs +3 -3
- package/dist/{chunk-MRPVYAVX.mjs → chunk-AKXCTWK6.mjs} +1 -1
- package/dist/{chunk-RUUECJKV.mjs → chunk-GXMYD3BT.mjs} +1 -0
- package/dist/{chunk-PFNAOR6K.mjs → chunk-H43TPNE5.mjs} +43 -7
- package/dist/{chunk-ILY3Y465.mjs → chunk-HIYFHIIF.mjs} +6 -3
- package/dist/{chunk-3X4C56WA.mjs → chunk-NQRU4NSD.mjs} +24 -0
- package/dist/{chunk-RUNJ5QTL.mjs → chunk-OBC2XP5K.mjs} +9 -8
- package/dist/{chunk-QW4HJJLV.mjs → chunk-OZAKKUIV.mjs} +6 -4
- package/dist/{chunk-5IYYKVWX.mjs → chunk-SU4SZKU2.mjs} +1 -1
- package/dist/document.d.mts +2 -2
- package/dist/document.d.ts +2 -2
- package/dist/document.mjs +2 -2
- package/dist/index.js +82 -15
- package/dist/index.mjs +8 -8
- package/dist/item.d.mts +29 -2
- package/dist/item.d.ts +29 -2
- package/dist/item.js +70 -7
- package/dist/item.mjs +3 -3
- package/dist/log.js +7 -6
- package/dist/log.mjs +2 -2
- package/dist/metafile-cjs.json +1 -1
- package/dist/metafile-esm.json +1 -1
- package/dist/modules/timeline.props.d.mts +27 -3
- package/dist/modules/timeline.props.d.ts +27 -3
- package/dist/modules/timeline.props.js +24 -0
- package/dist/modules/timeline.props.mjs +1 -1
- package/dist/modules/timeline.utils.js +1 -0
- package/dist/modules/timeline.utils.mjs +1 -1
- package/dist/separator.d.mts +29 -2
- package/dist/separator.d.ts +29 -2
- package/dist/separator.js +54 -6
- package/dist/separator.mjs +2 -2
- package/dist/timeline.js +1 -0
- package/dist/timeline.mjs +2 -2
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -75,6 +75,18 @@ var timelineItemProps = {
|
|
|
75
75
|
},
|
|
76
76
|
iconColor: {
|
|
77
77
|
type: String
|
|
78
|
+
},
|
|
79
|
+
isAccordionChild: {
|
|
80
|
+
type: Boolean,
|
|
81
|
+
default: false
|
|
82
|
+
},
|
|
83
|
+
isHideTopConnector: {
|
|
84
|
+
type: Boolean,
|
|
85
|
+
default: false
|
|
86
|
+
},
|
|
87
|
+
isHideBottomConnector: {
|
|
88
|
+
type: Boolean,
|
|
89
|
+
default: false
|
|
78
90
|
}
|
|
79
91
|
};
|
|
80
92
|
var timelineDocumentProps = {
|
|
@@ -120,6 +132,18 @@ var timelineSeparatorProps = {
|
|
|
120
132
|
},
|
|
121
133
|
iconColor: {
|
|
122
134
|
type: String
|
|
135
|
+
},
|
|
136
|
+
isAccordionChild: {
|
|
137
|
+
type: [Boolean],
|
|
138
|
+
default: false
|
|
139
|
+
},
|
|
140
|
+
isHideTopConnector: {
|
|
141
|
+
type: Boolean,
|
|
142
|
+
default: false
|
|
143
|
+
},
|
|
144
|
+
isHideBottomConnector: {
|
|
145
|
+
type: Boolean,
|
|
146
|
+
default: false
|
|
123
147
|
}
|
|
124
148
|
};
|
|
125
149
|
var timelineLogProps = {
|
|
@@ -146,6 +170,7 @@ var getValidChildrens = /* @__PURE__ */ __name((children) => {
|
|
|
146
170
|
children.forEach((child) => {
|
|
147
171
|
const isVueFragment = typeof child.type === "symbol" && Symbol.keyFor(child.type) === "v-fgt";
|
|
148
172
|
if (isVueFragment) {
|
|
173
|
+
;
|
|
149
174
|
child.children.forEach((subChild) => {
|
|
150
175
|
if (isValidChild(subChild))
|
|
151
176
|
validChildrens.push(subChild);
|
|
@@ -184,7 +209,9 @@ var MpTimelineAccordion = (0, import_vue4.defineComponent)({
|
|
|
184
209
|
return "";
|
|
185
210
|
}, "getPosition");
|
|
186
211
|
const node = (0, import_vue4.cloneVNode)(vnode, {
|
|
187
|
-
position: getPosition(index)
|
|
212
|
+
position: getPosition(index),
|
|
213
|
+
// Set true to identify accordion child items
|
|
214
|
+
isAccordionChild: true
|
|
188
215
|
});
|
|
189
216
|
return node;
|
|
190
217
|
});
|
|
@@ -219,7 +246,7 @@ var MpTimelineAccordion = (0, import_vue4.defineComponent)({
|
|
|
219
246
|
"data-pixel-component": "MpTimelineAccordionTitle"
|
|
220
247
|
}, [(0, import_vue3.createVNode)("p", {
|
|
221
248
|
"class": classes.label
|
|
222
|
-
}, [(0, import_vue3.createTextVNode)(" "), props.label, (0, import_vue3.createTextVNode)(" ")])])]
|
|
249
|
+
}, [(0, import_vue3.createTextVNode)(" "), props.label, (0, import_vue3.createTextVNode)(" ")])]), slots["sub-content"] && slots["sub-content"]()]
|
|
223
250
|
})]), (0, import_vue3.createVNode)(import_pixel3_transition.MpAnimateHeight, {
|
|
224
251
|
"isOpen": isOpen.value
|
|
225
252
|
}, _isSlot(cloneTimelineItem) ? cloneTimelineItem : {
|
|
@@ -317,6 +344,7 @@ var import_vue11 = require("vue");
|
|
|
317
344
|
var import_pixel3_icon3 = require("@mekari/pixel3-icon");
|
|
318
345
|
var import_vue12 = require("vue");
|
|
319
346
|
var import_recipes6 = require("@mekari/pixel3-styled-system/recipes");
|
|
347
|
+
var import_css = require("@mekari/pixel3-styled-system/css");
|
|
320
348
|
var MpTimelineSeparator = (0, import_vue12.defineComponent)({
|
|
321
349
|
name: "MpTimelineSeparator",
|
|
322
350
|
props: timelineSeparatorProps,
|
|
@@ -350,23 +378,58 @@ var MpTimelineSeparator = (0, import_vue12.defineComponent)({
|
|
|
350
378
|
};
|
|
351
379
|
return () => {
|
|
352
380
|
const classes = (0, import_recipes6.timelineSeparatorSlotRecipe)();
|
|
381
|
+
const iconNode = (0, import_vue11.createVNode)(import_pixel3_icon3.MpIcon, {
|
|
382
|
+
"name": props.icon || iconAttrs[props.status].name,
|
|
383
|
+
"color": props.iconColor || iconAttrs[props.status].color,
|
|
384
|
+
"variant": props.iconVariant || iconAttrs[props.status].variant,
|
|
385
|
+
"size": "sm"
|
|
386
|
+
}, null);
|
|
387
|
+
const accordionIconNode = (0, import_vue11.createVNode)("div", {
|
|
388
|
+
"data-pixel-component": "MpTimelineAccordionIcon",
|
|
389
|
+
"class": (0, import_css.css)({
|
|
390
|
+
display: "flex",
|
|
391
|
+
alignItems: "center",
|
|
392
|
+
height: "6"
|
|
393
|
+
})
|
|
394
|
+
}, [(0, import_vue11.createVNode)("div", {
|
|
395
|
+
"data-pixel-component": "MpTimelineConnector",
|
|
396
|
+
"class": (0, import_css.css)({
|
|
397
|
+
height: "100%",
|
|
398
|
+
width: "2px",
|
|
399
|
+
backgroundColor: "gray.100",
|
|
400
|
+
_nextTheme: {
|
|
401
|
+
backgroundColor: "border.default"
|
|
402
|
+
}
|
|
403
|
+
})
|
|
404
|
+
}, null), (0, import_vue11.createVNode)("div", {
|
|
405
|
+
"data-pixel-component": "MpTimelineConnector",
|
|
406
|
+
"class": (0, import_css.css)({
|
|
407
|
+
height: "2px",
|
|
408
|
+
width: "16px",
|
|
409
|
+
backgroundColor: "gray.100",
|
|
410
|
+
marginRight: "1.5",
|
|
411
|
+
_nextTheme: {
|
|
412
|
+
backgroundColor: "border.default"
|
|
413
|
+
}
|
|
414
|
+
})
|
|
415
|
+
}, null), iconNode]);
|
|
353
416
|
return (0, import_vue11.createVNode)("div", {
|
|
354
417
|
"data-pixel-component": "MpTimelineSeparator",
|
|
418
|
+
"data-accordion-child": props.isAccordionChild || void 0,
|
|
355
419
|
"class": classes.root
|
|
356
420
|
}, [(0, import_vue11.createVNode)("div", {
|
|
357
421
|
"data-pixel-component": "MpTimelineConnector",
|
|
422
|
+
"data-accordion-child": props.isAccordionChild || void 0,
|
|
358
423
|
"data-connector": "top",
|
|
359
424
|
"data-position": props.position,
|
|
425
|
+
"data-hide": props.isHideTopConnector || void 0,
|
|
360
426
|
"class": classes.topConnector
|
|
361
|
-
}, null), (0, import_vue11.createVNode)(
|
|
362
|
-
"name": props.icon || iconAttrs[props.status].name,
|
|
363
|
-
"color": props.iconColor || iconAttrs[props.status].color,
|
|
364
|
-
"variant": props.iconVariant || iconAttrs[props.status].variant,
|
|
365
|
-
"size": "sm"
|
|
366
|
-
}, null), (0, import_vue11.createVNode)("div", {
|
|
427
|
+
}, null), props.isAccordionChild ? accordionIconNode : iconNode, (0, import_vue11.createVNode)("div", {
|
|
367
428
|
"data-connector": "bottom",
|
|
368
429
|
"data-pixel-component": "MpTimelineConnector",
|
|
430
|
+
"data-accordion-child": props.isAccordionChild || void 0,
|
|
369
431
|
"data-position": props.position,
|
|
432
|
+
"data-hide": props.isHideBottomConnector || void 0,
|
|
370
433
|
"class": classes.bottomConnector
|
|
371
434
|
}, null)]);
|
|
372
435
|
};
|
|
@@ -392,7 +455,10 @@ var MpTimelineItem = (0, import_vue14.defineComponent)({
|
|
|
392
455
|
"status": props.status,
|
|
393
456
|
"icon": props.icon,
|
|
394
457
|
"iconVariant": props.iconVariant,
|
|
395
|
-
"iconColor": props.iconColor
|
|
458
|
+
"iconColor": props.iconColor,
|
|
459
|
+
"isAccordionChild": props.isAccordionChild,
|
|
460
|
+
"isHideTopConnector": props.isHideTopConnector,
|
|
461
|
+
"isHideBottomConnector": props.isHideBottomConnector
|
|
396
462
|
}, null), (0, import_vue13.createVNode)(MpTimelineBody, null, {
|
|
397
463
|
default: () => [slots.default && slots.default()]
|
|
398
464
|
})]);
|
|
@@ -422,17 +488,18 @@ var MpTimelineLog = (0, import_vue16.defineComponent)({
|
|
|
422
488
|
"aria-expanded": isOpen.value || void 0,
|
|
423
489
|
"class": ["group", classes.log],
|
|
424
490
|
"onClick": () => isOpen.value = !isOpen.value
|
|
425
|
-
}, [(0, import_vue15.createVNode)(
|
|
426
|
-
"
|
|
427
|
-
|
|
428
|
-
"name": "caret-down",
|
|
491
|
+
}, [(0, import_vue15.createVNode)(import_pixel3_icon4.MpIcon, {
|
|
492
|
+
"name": "chevrons-right",
|
|
493
|
+
"size": "sm",
|
|
429
494
|
"class": classes.logIcon,
|
|
430
495
|
"style": {
|
|
431
496
|
transition: "transform 0.2s",
|
|
432
497
|
transformOrigin: "center",
|
|
433
|
-
transform: isOpen.value ? "rotate(
|
|
498
|
+
transform: isOpen.value ? "rotate(90deg)" : ""
|
|
434
499
|
}
|
|
435
|
-
}, null)
|
|
500
|
+
}, null), (0, import_vue15.createVNode)("p", {
|
|
501
|
+
"class": classes.logText
|
|
502
|
+
}, [(0, import_vue15.createTextVNode)("Change log")])]), (0, import_vue15.createVNode)(import_pixel3_transition2.MpAnimateHeight, {
|
|
436
503
|
"isOpen": isOpen.value,
|
|
437
504
|
"as": "ul",
|
|
438
505
|
"class": classes.content
|
package/dist/index.mjs
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import {
|
|
2
2
|
MpTimelineLog
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-OBC2XP5K.mjs";
|
|
4
4
|
import {
|
|
5
5
|
MpTimeline
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-SU4SZKU2.mjs";
|
|
7
7
|
import {
|
|
8
8
|
MpTimelineTitle
|
|
9
9
|
} from "./chunk-WXCDLWFJ.mjs";
|
|
10
10
|
import "./chunk-7A5VKGA6.mjs";
|
|
11
11
|
import {
|
|
12
12
|
MpTimelineAccordion
|
|
13
|
-
} from "./chunk-
|
|
14
|
-
import "./chunk-
|
|
13
|
+
} from "./chunk-OZAKKUIV.mjs";
|
|
14
|
+
import "./chunk-GXMYD3BT.mjs";
|
|
15
15
|
import {
|
|
16
16
|
MpTimelineCaption
|
|
17
17
|
} from "./chunk-4PZZ5B6I.mjs";
|
|
@@ -20,13 +20,13 @@ import {
|
|
|
20
20
|
} from "./chunk-RBX3CCVL.mjs";
|
|
21
21
|
import {
|
|
22
22
|
MpTimelineDocument
|
|
23
|
-
} from "./chunk-
|
|
23
|
+
} from "./chunk-AKXCTWK6.mjs";
|
|
24
24
|
import {
|
|
25
25
|
MpTimelineItem
|
|
26
|
-
} from "./chunk-
|
|
27
|
-
import "./chunk-
|
|
26
|
+
} from "./chunk-HIYFHIIF.mjs";
|
|
27
|
+
import "./chunk-H43TPNE5.mjs";
|
|
28
28
|
import "./chunk-QHPZK7ZV.mjs";
|
|
29
|
-
import "./chunk-
|
|
29
|
+
import "./chunk-NQRU4NSD.mjs";
|
|
30
30
|
import {
|
|
31
31
|
MpTimelinLogItem
|
|
32
32
|
} from "./chunk-GA2OEUXW.mjs";
|
package/dist/item.d.mts
CHANGED
|
@@ -11,7 +11,7 @@ declare const MpTimelineItem: vue.DefineComponent<{
|
|
|
11
11
|
default: string;
|
|
12
12
|
};
|
|
13
13
|
icon: {
|
|
14
|
-
type: vue.PropType<"function" | "filter" | "done" | "caption" | "code" | "img" | "input" | "link" | "progress" | "textarea" | "time" | "stock-bulk-update-sku" | "stock-out-of-stock" | "stock-available" | "stock-running-out" | "pdf-document" | "image-document" | "excel-document" | "word-document" | "university-outline" | "task-on-progress" | "task-done" | "add" | "minus" | "text-editor-align-center" | "text-editor-align-justify" | "text-editor-align-left" | "text-editor-align-right" | "text-editor-banner" | "text-editor-bold" | "text-editor-bullet-list" | "text-editor-button" | "text-editor-decrease-indent" | "text-editor-divider" | "text-editor-footer" | "text-editor-increase-indent" | "text-editor-italic" | "text-editor-link" | "text-editor-logo" | "text-editor-mention" | "text-editor-move" | "text-editor-number-list" | "text-editor-paragraph" | "text-editor-reset-format" | "text-editor-strike" | "text-editor-text-color" | "text-editor-text" | "text-editor-underline" | "text-editor-variable" | "text-editor-write" | "text-editor-list" | "checkbox-checklist" | "checkbox-partial" | "Axis" | "DJP" | "Facebook-Messenger" | "Google" | "Gopay" | "Indosat" | "Instagram" | "JCB" | "Line" | "Livechat" | "Mastercard" | "OVO" | "PLN-Token" | "PLN" | "Shopee" | "Shopeepay" | "Smartfren" | "Telegram" | "Telkomsel" | "Tokopedia" | "Tri" | "Visa" | "WhatsApp" | "XL" | "airene-black" | "airene-brand" | "airene-outline" | "capital-black" | "capital-brand" | "capital-outline" | "mchat-black" | "mchat-brand" | "mchat-outline" | "expense-black" | "expense-brand" | "expense-outline" | "flex-black" | "flex-brand" | "flex-outline" | "insight-black" | "insight-brand" | "insight-outline" | "jurnal-black" | "jurnal-brand" | "jurnal-outline" | "klikpajak-black" | "klikpajak-brand" | "klikpajak-outline" | "mekari-black" | "mekari-brand" | "mekari-outline" | "pay-black" | "pay-brand" | "pay-outline" | "qontak-black" | "qontak-brand" | "qontak-outline" | "sign-black" | "sign-brand" | "sign-outline" | "stream-black" | "stream-brand" | "stream-outline" | "talenta-black" | "talenta-brand" | "talenta-outline" | "university-black" | "university-brand" | "accordion-collapse" | "accordion-expand" | "apply-all" | "arrow-collapse" | "arrow-expand" | "burger" | "check" | "close" | "crop" | "drag" | "fit-screen" | "full-screen" | "indicator-circle" | "indicator-square" | "loader-" | "minimize" | "menu-kebab" | "menu-meatball" | "remove-tag" | "reset" | "shortcuts" | "sliders" | "sort-ascending" | "sort-default" | "sort-descending" | "priority-low" | "priority-medium" | "priority-high" | "arrows-down" | "arrows-left" | "arrows-right" | "arrows-up" | "caret-down" | "caret-right" | "caret-up" | "chevrons-down" | "chevrons-forward" | "chevrons-left" | "chevrons-previous" | "chevrons-right" | "chevrons-up" | "X" | "error" | "help" | "info" | "pending" | "warning-circular" | "warning-triangle" | "backspace" | "call-active" | "call-add" | "call-declined" | "call-disabled" | "call-end" | "call-incoming" | "call-outgoing" | "call-pause" | "globe" | "headphone" | "mic" | "mic-mute" | "picture-in-picture" | "share-screen" | "account-mapping" | "action" | "add-ons" | "ai-assist" | "api" | "application" | "assets" | "attendee" | "bank" | "batch" | "billing" | "block-user" | "book" | "briefcase" | "bulk-send" | "bulk-upload" | "business-trip" | "broadcast" | "brush" | "calculator" | "cart" | "cash-advance" | "cash-in" | "cash-out" | "categories" | "certificate" | "channel" | "chart-of-account" | "chat" | "chatbot" | "cloud" | "column-settings" | "comment" | "commuting" | "company" | "competencies" | "condition" | "connected_apps" | "contact" | "dashboard" | "data-connect" | "database" | "design" | "dislike" | "decrease-kpi" | "desktop" | "document-sent" | "draft" | "education" | "email-sent" | "emeterai" | "employee" | "employee-not-found" | "employment" | "envelope" | "esignature" | "evaluation" | "expenses" | "face-recognition" | "file-change" | "file-transfer" | "finance" | "find-me" | "flag" | "fulfillment" | "gift" | "goal" | "hierarchy" | "home" | "hospital" | "inbox" | "increase-kpi" | "initials" | "join-invoice" | "key" | "lifestyle" | "like" | "loan" | "location" | "log" | "meeting-room" | "mekari_pay" | "migrate" | "mobile" | "mobile-postpaid" | "monitor-message" | "muted" | "notification" | "organizations" | "organizations-h" | "organizations-v" | "overtime" | "partner" | "password" | "payroll" | "payslip" | "people" | "performance" | "phone" | "pipeline" | "place-fields" | "plans" | "play-video" | "plugin-builder" | "policy" | "productivity" | "products" | "profile" | "promo" | "protection" | "receipt-lock" | "reimbursement" | "reports" | "restore" | "roles" | "sales" | "scan" | "schedule" | "security" | "sent" | "share" | "shop" | "sidebar-pin" | "stamp" | "succesion-plan" | "talent-management" | "theme" | "team" | "timer" | "tips" | "today" | "transfer" | "truck" | "unlock" | "upgrade" | "user-response" | "virtual-account" | "voucher" | "wallet" | "warehouse" | "whatsapp-flat" | "wifi" | "workflow" | "blank" | "copy" | "doc" | "file-audio" | "file-code" | "file-image" | "file-music" | "file-video" | "folder-close" | "folder-open" | "folder-transfer-close" | "folder-transfer-open" | "id-card" | "img-break" | "pdf" | "zip" | "add-circular" | "approval-rules" | "attachment" | "calendar" | "camera" | "chart-bar" | "chart-bar-line" | "chart-line" | "delete" | "download" | "edit" | "emoji" | "empty" | "fingerprint" | "forward" | "help-centre" | "hide" | "magic" | "minus-circular" | "newtab" | "number-five" | "paint-bucket" | "pause" | "pin" | "redo" | "refresh" | "reply" | "rotate-left" | "rotate-right" | "search" | "settings" | "show" | "sign-in" | "sign-out" | "table-view-column" | "table-view-field" | "table-view-field-2" | "table-view-filter" | "table-view-list" | "table-view-sort" | "task-todo" | "undo" | "upload" | "verified" | "video-recorder" | "zoom-in" | "zoom-out">;
|
|
14
|
+
type: vue.PropType<"function" | "filter" | "done" | "caption" | "code" | "img" | "input" | "link" | "progress" | "textarea" | "time" | "stock-bulk-update-sku" | "stock-out-of-stock" | "stock-available" | "stock-running-out" | "pdf-document" | "image-document" | "excel-document" | "word-document" | "university-outline" | "task-on-progress" | "task-done" | "add" | "minus" | "text-editor-align-center" | "text-editor-align-justify" | "text-editor-align-left" | "text-editor-align-right" | "text-editor-banner" | "text-editor-bold" | "text-editor-bullet-list" | "text-editor-button" | "text-editor-decrease-indent" | "text-editor-divider" | "text-editor-footer" | "text-editor-increase-indent" | "text-editor-italic" | "text-editor-link" | "text-editor-logo" | "text-editor-mention" | "text-editor-move" | "text-editor-number-list" | "text-editor-paragraph" | "text-editor-reset-format" | "text-editor-strike" | "text-editor-text-color" | "text-editor-text" | "text-editor-underline" | "text-editor-variable" | "text-editor-write" | "text-editor-list" | "checkbox-checklist" | "checkbox-partial" | "Axis" | "DJP" | "Facebook-Messenger" | "Google" | "Gopay" | "Indosat" | "Instagram" | "JCB" | "Line" | "Livechat" | "Mastercard" | "OVO" | "PLN-Token" | "PLN" | "Shopee" | "Shopeepay" | "Smartfren" | "Telegram" | "Telkomsel" | "Tokopedia" | "Tri" | "Visa" | "WhatsApp" | "XL" | "airene-black" | "airene-brand" | "airene-outline" | "capital-black" | "capital-brand" | "capital-outline" | "mchat-black" | "mchat-brand" | "mchat-outline" | "expense-black" | "expense-brand" | "expense-outline" | "flex-black" | "flex-brand" | "flex-outline" | "insight-black" | "insight-brand" | "insight-outline" | "jurnal-black" | "jurnal-brand" | "jurnal-outline" | "klikpajak-black" | "klikpajak-brand" | "klikpajak-outline" | "mekari-black" | "mekari-brand" | "mekari-outline" | "pay-black" | "pay-brand" | "pay-outline" | "qontak-black" | "qontak-brand" | "qontak-outline" | "sign-black" | "sign-brand" | "sign-outline" | "stream-black" | "stream-brand" | "stream-outline" | "talenta-black" | "talenta-brand" | "talenta-outline" | "university-black" | "university-brand" | "accordion-collapse" | "accordion-expand" | "apply-all" | "arrow-collapse" | "arrow-expand" | "burger" | "check" | "close" | "crop" | "drag" | "fit-screen" | "full-screen" | "indicator-circle" | "indicator-square" | "loader-" | "minimize" | "menu-kebab" | "menu-meatball" | "remove-tag" | "reset" | "shortcuts" | "sliders" | "sort-ascending" | "sort-default" | "sort-descending" | "priority-low" | "priority-medium" | "priority-high" | "arrows-down" | "arrows-left" | "arrows-right" | "arrows-up" | "caret-down" | "caret-right" | "caret-up" | "chevrons-down" | "chevrons-forward" | "chevrons-left" | "chevrons-previous" | "chevrons-right" | "chevrons-up" | "X" | "error" | "help" | "info" | "pending" | "warning-circular" | "warning-triangle" | "backspace" | "call-active" | "call-add" | "call-declined" | "call-disabled" | "call-end" | "call-incoming" | "call-outgoing" | "call-pause" | "globe" | "headphone" | "mic" | "mic-mute" | "picture-in-picture" | "share-screen" | "account-mapping" | "action" | "add-ons" | "ai-assist" | "api" | "application" | "assets" | "attendee" | "bank" | "batch" | "billing" | "block-user" | "book" | "briefcase" | "bulk-send" | "bulk-upload" | "business-trip" | "broadcast" | "brush" | "calculator" | "cart" | "cash-advance" | "cash-in" | "cash-out" | "categories" | "certificate" | "channel" | "chart-of-account" | "chat" | "chatbot" | "cloud" | "column-settings" | "comment" | "commuting" | "company" | "competencies" | "condition" | "connected_apps" | "contact" | "dashboard" | "data-connect" | "database" | "design" | "dislike" | "decrease-kpi" | "desktop" | "document-sent" | "draft" | "education" | "email-sent" | "emeterai" | "employee" | "employee-not-found" | "employment" | "envelope" | "esignature" | "evaluation" | "expenses" | "face-recognition" | "file-change" | "file-transfer" | "finance" | "find-me" | "flag" | "fulfillment" | "gift" | "goal" | "hierarchy" | "home" | "hospital" | "inbox" | "increase-kpi" | "initials" | "join-invoice" | "key" | "lifestyle" | "like" | "loan" | "location" | "log" | "meeting-room" | "mekari_pay" | "migrate" | "mobile" | "mobile-postpaid" | "monitor-message" | "muted" | "notification" | "organizations" | "organizations-h" | "organizations-v" | "overtime" | "partner" | "password" | "payroll" | "payslip" | "people" | "performance" | "phone" | "pipeline" | "place-fields" | "plans" | "play-video" | "plugin-builder" | "policy" | "productivity" | "products" | "profile" | "promo" | "protection" | "recall" | "receipt-lock" | "reimbursement" | "reports" | "restore" | "roles" | "sales" | "scan" | "schedule" | "security" | "sent" | "share" | "shop" | "sidebar-pin" | "stamp" | "succesion-plan" | "talent-management" | "theme" | "team" | "timer" | "tips" | "today" | "transfer" | "truck" | "unlock" | "upgrade" | "user-response" | "variable" | "virtual-account" | "voucher" | "wallet" | "warehouse" | "whatsapp-flat" | "wifi" | "workflow" | "blank" | "copy" | "doc" | "file-audio" | "file-code" | "file-image" | "file-music" | "file-video" | "folder-close" | "folder-open" | "folder-transfer-close" | "folder-transfer-open" | "id-card" | "img-break" | "pdf" | "zip" | "add-circular" | "approval-rules" | "attachment" | "calendar" | "camera" | "chart-bar" | "chart-bar-line" | "chart-line" | "delete" | "download" | "edit" | "emoji" | "empty" | "fingerprint" | "forward" | "help-centre" | "hide" | "magic" | "minus-circular" | "newtab" | "number-five" | "paint-bucket" | "pause" | "pin" | "redo" | "refresh" | "reply" | "rotate-left" | "rotate-right" | "search" | "settings" | "show" | "sign-in" | "sign-out" | "table-view-column" | "table-view-field" | "table-view-field-2" | "table-view-filter" | "table-view-list" | "table-view-sort" | "task-todo" | "undo" | "upload" | "verified" | "video-recorder" | "zoom-in" | "zoom-out">;
|
|
15
15
|
};
|
|
16
16
|
iconVariant: {
|
|
17
17
|
type: vue.PropType<TimelineIconVariant>;
|
|
@@ -19,6 +19,18 @@ declare const MpTimelineItem: vue.DefineComponent<{
|
|
|
19
19
|
iconColor: {
|
|
20
20
|
type: vue.PropType<string>;
|
|
21
21
|
};
|
|
22
|
+
isAccordionChild: {
|
|
23
|
+
type: vue.PropType<boolean>;
|
|
24
|
+
default: boolean;
|
|
25
|
+
};
|
|
26
|
+
isHideTopConnector: {
|
|
27
|
+
type: vue.PropType<boolean>;
|
|
28
|
+
default: boolean;
|
|
29
|
+
};
|
|
30
|
+
isHideBottomConnector: {
|
|
31
|
+
type: vue.PropType<boolean>;
|
|
32
|
+
default: boolean;
|
|
33
|
+
};
|
|
22
34
|
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
23
35
|
position: {
|
|
24
36
|
type: vue.PropType<TimelinePosition>;
|
|
@@ -28,7 +40,7 @@ declare const MpTimelineItem: vue.DefineComponent<{
|
|
|
28
40
|
default: string;
|
|
29
41
|
};
|
|
30
42
|
icon: {
|
|
31
|
-
type: vue.PropType<"function" | "filter" | "done" | "caption" | "code" | "img" | "input" | "link" | "progress" | "textarea" | "time" | "stock-bulk-update-sku" | "stock-out-of-stock" | "stock-available" | "stock-running-out" | "pdf-document" | "image-document" | "excel-document" | "word-document" | "university-outline" | "task-on-progress" | "task-done" | "add" | "minus" | "text-editor-align-center" | "text-editor-align-justify" | "text-editor-align-left" | "text-editor-align-right" | "text-editor-banner" | "text-editor-bold" | "text-editor-bullet-list" | "text-editor-button" | "text-editor-decrease-indent" | "text-editor-divider" | "text-editor-footer" | "text-editor-increase-indent" | "text-editor-italic" | "text-editor-link" | "text-editor-logo" | "text-editor-mention" | "text-editor-move" | "text-editor-number-list" | "text-editor-paragraph" | "text-editor-reset-format" | "text-editor-strike" | "text-editor-text-color" | "text-editor-text" | "text-editor-underline" | "text-editor-variable" | "text-editor-write" | "text-editor-list" | "checkbox-checklist" | "checkbox-partial" | "Axis" | "DJP" | "Facebook-Messenger" | "Google" | "Gopay" | "Indosat" | "Instagram" | "JCB" | "Line" | "Livechat" | "Mastercard" | "OVO" | "PLN-Token" | "PLN" | "Shopee" | "Shopeepay" | "Smartfren" | "Telegram" | "Telkomsel" | "Tokopedia" | "Tri" | "Visa" | "WhatsApp" | "XL" | "airene-black" | "airene-brand" | "airene-outline" | "capital-black" | "capital-brand" | "capital-outline" | "mchat-black" | "mchat-brand" | "mchat-outline" | "expense-black" | "expense-brand" | "expense-outline" | "flex-black" | "flex-brand" | "flex-outline" | "insight-black" | "insight-brand" | "insight-outline" | "jurnal-black" | "jurnal-brand" | "jurnal-outline" | "klikpajak-black" | "klikpajak-brand" | "klikpajak-outline" | "mekari-black" | "mekari-brand" | "mekari-outline" | "pay-black" | "pay-brand" | "pay-outline" | "qontak-black" | "qontak-brand" | "qontak-outline" | "sign-black" | "sign-brand" | "sign-outline" | "stream-black" | "stream-brand" | "stream-outline" | "talenta-black" | "talenta-brand" | "talenta-outline" | "university-black" | "university-brand" | "accordion-collapse" | "accordion-expand" | "apply-all" | "arrow-collapse" | "arrow-expand" | "burger" | "check" | "close" | "crop" | "drag" | "fit-screen" | "full-screen" | "indicator-circle" | "indicator-square" | "loader-" | "minimize" | "menu-kebab" | "menu-meatball" | "remove-tag" | "reset" | "shortcuts" | "sliders" | "sort-ascending" | "sort-default" | "sort-descending" | "priority-low" | "priority-medium" | "priority-high" | "arrows-down" | "arrows-left" | "arrows-right" | "arrows-up" | "caret-down" | "caret-right" | "caret-up" | "chevrons-down" | "chevrons-forward" | "chevrons-left" | "chevrons-previous" | "chevrons-right" | "chevrons-up" | "X" | "error" | "help" | "info" | "pending" | "warning-circular" | "warning-triangle" | "backspace" | "call-active" | "call-add" | "call-declined" | "call-disabled" | "call-end" | "call-incoming" | "call-outgoing" | "call-pause" | "globe" | "headphone" | "mic" | "mic-mute" | "picture-in-picture" | "share-screen" | "account-mapping" | "action" | "add-ons" | "ai-assist" | "api" | "application" | "assets" | "attendee" | "bank" | "batch" | "billing" | "block-user" | "book" | "briefcase" | "bulk-send" | "bulk-upload" | "business-trip" | "broadcast" | "brush" | "calculator" | "cart" | "cash-advance" | "cash-in" | "cash-out" | "categories" | "certificate" | "channel" | "chart-of-account" | "chat" | "chatbot" | "cloud" | "column-settings" | "comment" | "commuting" | "company" | "competencies" | "condition" | "connected_apps" | "contact" | "dashboard" | "data-connect" | "database" | "design" | "dislike" | "decrease-kpi" | "desktop" | "document-sent" | "draft" | "education" | "email-sent" | "emeterai" | "employee" | "employee-not-found" | "employment" | "envelope" | "esignature" | "evaluation" | "expenses" | "face-recognition" | "file-change" | "file-transfer" | "finance" | "find-me" | "flag" | "fulfillment" | "gift" | "goal" | "hierarchy" | "home" | "hospital" | "inbox" | "increase-kpi" | "initials" | "join-invoice" | "key" | "lifestyle" | "like" | "loan" | "location" | "log" | "meeting-room" | "mekari_pay" | "migrate" | "mobile" | "mobile-postpaid" | "monitor-message" | "muted" | "notification" | "organizations" | "organizations-h" | "organizations-v" | "overtime" | "partner" | "password" | "payroll" | "payslip" | "people" | "performance" | "phone" | "pipeline" | "place-fields" | "plans" | "play-video" | "plugin-builder" | "policy" | "productivity" | "products" | "profile" | "promo" | "protection" | "receipt-lock" | "reimbursement" | "reports" | "restore" | "roles" | "sales" | "scan" | "schedule" | "security" | "sent" | "share" | "shop" | "sidebar-pin" | "stamp" | "succesion-plan" | "talent-management" | "theme" | "team" | "timer" | "tips" | "today" | "transfer" | "truck" | "unlock" | "upgrade" | "user-response" | "virtual-account" | "voucher" | "wallet" | "warehouse" | "whatsapp-flat" | "wifi" | "workflow" | "blank" | "copy" | "doc" | "file-audio" | "file-code" | "file-image" | "file-music" | "file-video" | "folder-close" | "folder-open" | "folder-transfer-close" | "folder-transfer-open" | "id-card" | "img-break" | "pdf" | "zip" | "add-circular" | "approval-rules" | "attachment" | "calendar" | "camera" | "chart-bar" | "chart-bar-line" | "chart-line" | "delete" | "download" | "edit" | "emoji" | "empty" | "fingerprint" | "forward" | "help-centre" | "hide" | "magic" | "minus-circular" | "newtab" | "number-five" | "paint-bucket" | "pause" | "pin" | "redo" | "refresh" | "reply" | "rotate-left" | "rotate-right" | "search" | "settings" | "show" | "sign-in" | "sign-out" | "table-view-column" | "table-view-field" | "table-view-field-2" | "table-view-filter" | "table-view-list" | "table-view-sort" | "task-todo" | "undo" | "upload" | "verified" | "video-recorder" | "zoom-in" | "zoom-out">;
|
|
43
|
+
type: vue.PropType<"function" | "filter" | "done" | "caption" | "code" | "img" | "input" | "link" | "progress" | "textarea" | "time" | "stock-bulk-update-sku" | "stock-out-of-stock" | "stock-available" | "stock-running-out" | "pdf-document" | "image-document" | "excel-document" | "word-document" | "university-outline" | "task-on-progress" | "task-done" | "add" | "minus" | "text-editor-align-center" | "text-editor-align-justify" | "text-editor-align-left" | "text-editor-align-right" | "text-editor-banner" | "text-editor-bold" | "text-editor-bullet-list" | "text-editor-button" | "text-editor-decrease-indent" | "text-editor-divider" | "text-editor-footer" | "text-editor-increase-indent" | "text-editor-italic" | "text-editor-link" | "text-editor-logo" | "text-editor-mention" | "text-editor-move" | "text-editor-number-list" | "text-editor-paragraph" | "text-editor-reset-format" | "text-editor-strike" | "text-editor-text-color" | "text-editor-text" | "text-editor-underline" | "text-editor-variable" | "text-editor-write" | "text-editor-list" | "checkbox-checklist" | "checkbox-partial" | "Axis" | "DJP" | "Facebook-Messenger" | "Google" | "Gopay" | "Indosat" | "Instagram" | "JCB" | "Line" | "Livechat" | "Mastercard" | "OVO" | "PLN-Token" | "PLN" | "Shopee" | "Shopeepay" | "Smartfren" | "Telegram" | "Telkomsel" | "Tokopedia" | "Tri" | "Visa" | "WhatsApp" | "XL" | "airene-black" | "airene-brand" | "airene-outline" | "capital-black" | "capital-brand" | "capital-outline" | "mchat-black" | "mchat-brand" | "mchat-outline" | "expense-black" | "expense-brand" | "expense-outline" | "flex-black" | "flex-brand" | "flex-outline" | "insight-black" | "insight-brand" | "insight-outline" | "jurnal-black" | "jurnal-brand" | "jurnal-outline" | "klikpajak-black" | "klikpajak-brand" | "klikpajak-outline" | "mekari-black" | "mekari-brand" | "mekari-outline" | "pay-black" | "pay-brand" | "pay-outline" | "qontak-black" | "qontak-brand" | "qontak-outline" | "sign-black" | "sign-brand" | "sign-outline" | "stream-black" | "stream-brand" | "stream-outline" | "talenta-black" | "talenta-brand" | "talenta-outline" | "university-black" | "university-brand" | "accordion-collapse" | "accordion-expand" | "apply-all" | "arrow-collapse" | "arrow-expand" | "burger" | "check" | "close" | "crop" | "drag" | "fit-screen" | "full-screen" | "indicator-circle" | "indicator-square" | "loader-" | "minimize" | "menu-kebab" | "menu-meatball" | "remove-tag" | "reset" | "shortcuts" | "sliders" | "sort-ascending" | "sort-default" | "sort-descending" | "priority-low" | "priority-medium" | "priority-high" | "arrows-down" | "arrows-left" | "arrows-right" | "arrows-up" | "caret-down" | "caret-right" | "caret-up" | "chevrons-down" | "chevrons-forward" | "chevrons-left" | "chevrons-previous" | "chevrons-right" | "chevrons-up" | "X" | "error" | "help" | "info" | "pending" | "warning-circular" | "warning-triangle" | "backspace" | "call-active" | "call-add" | "call-declined" | "call-disabled" | "call-end" | "call-incoming" | "call-outgoing" | "call-pause" | "globe" | "headphone" | "mic" | "mic-mute" | "picture-in-picture" | "share-screen" | "account-mapping" | "action" | "add-ons" | "ai-assist" | "api" | "application" | "assets" | "attendee" | "bank" | "batch" | "billing" | "block-user" | "book" | "briefcase" | "bulk-send" | "bulk-upload" | "business-trip" | "broadcast" | "brush" | "calculator" | "cart" | "cash-advance" | "cash-in" | "cash-out" | "categories" | "certificate" | "channel" | "chart-of-account" | "chat" | "chatbot" | "cloud" | "column-settings" | "comment" | "commuting" | "company" | "competencies" | "condition" | "connected_apps" | "contact" | "dashboard" | "data-connect" | "database" | "design" | "dislike" | "decrease-kpi" | "desktop" | "document-sent" | "draft" | "education" | "email-sent" | "emeterai" | "employee" | "employee-not-found" | "employment" | "envelope" | "esignature" | "evaluation" | "expenses" | "face-recognition" | "file-change" | "file-transfer" | "finance" | "find-me" | "flag" | "fulfillment" | "gift" | "goal" | "hierarchy" | "home" | "hospital" | "inbox" | "increase-kpi" | "initials" | "join-invoice" | "key" | "lifestyle" | "like" | "loan" | "location" | "log" | "meeting-room" | "mekari_pay" | "migrate" | "mobile" | "mobile-postpaid" | "monitor-message" | "muted" | "notification" | "organizations" | "organizations-h" | "organizations-v" | "overtime" | "partner" | "password" | "payroll" | "payslip" | "people" | "performance" | "phone" | "pipeline" | "place-fields" | "plans" | "play-video" | "plugin-builder" | "policy" | "productivity" | "products" | "profile" | "promo" | "protection" | "recall" | "receipt-lock" | "reimbursement" | "reports" | "restore" | "roles" | "sales" | "scan" | "schedule" | "security" | "sent" | "share" | "shop" | "sidebar-pin" | "stamp" | "succesion-plan" | "talent-management" | "theme" | "team" | "timer" | "tips" | "today" | "transfer" | "truck" | "unlock" | "upgrade" | "user-response" | "variable" | "virtual-account" | "voucher" | "wallet" | "warehouse" | "whatsapp-flat" | "wifi" | "workflow" | "blank" | "copy" | "doc" | "file-audio" | "file-code" | "file-image" | "file-music" | "file-video" | "folder-close" | "folder-open" | "folder-transfer-close" | "folder-transfer-open" | "id-card" | "img-break" | "pdf" | "zip" | "add-circular" | "approval-rules" | "attachment" | "calendar" | "camera" | "chart-bar" | "chart-bar-line" | "chart-line" | "delete" | "download" | "edit" | "emoji" | "empty" | "fingerprint" | "forward" | "help-centre" | "hide" | "magic" | "minus-circular" | "newtab" | "number-five" | "paint-bucket" | "pause" | "pin" | "redo" | "refresh" | "reply" | "rotate-left" | "rotate-right" | "search" | "settings" | "show" | "sign-in" | "sign-out" | "table-view-column" | "table-view-field" | "table-view-field-2" | "table-view-filter" | "table-view-list" | "table-view-sort" | "task-todo" | "undo" | "upload" | "verified" | "video-recorder" | "zoom-in" | "zoom-out">;
|
|
32
44
|
};
|
|
33
45
|
iconVariant: {
|
|
34
46
|
type: vue.PropType<TimelineIconVariant>;
|
|
@@ -36,8 +48,23 @@ declare const MpTimelineItem: vue.DefineComponent<{
|
|
|
36
48
|
iconColor: {
|
|
37
49
|
type: vue.PropType<string>;
|
|
38
50
|
};
|
|
51
|
+
isAccordionChild: {
|
|
52
|
+
type: vue.PropType<boolean>;
|
|
53
|
+
default: boolean;
|
|
54
|
+
};
|
|
55
|
+
isHideTopConnector: {
|
|
56
|
+
type: vue.PropType<boolean>;
|
|
57
|
+
default: boolean;
|
|
58
|
+
};
|
|
59
|
+
isHideBottomConnector: {
|
|
60
|
+
type: vue.PropType<boolean>;
|
|
61
|
+
default: boolean;
|
|
62
|
+
};
|
|
39
63
|
}>>, {
|
|
64
|
+
isAccordionChild: boolean;
|
|
40
65
|
status: TimelineStatus;
|
|
66
|
+
isHideTopConnector: boolean;
|
|
67
|
+
isHideBottomConnector: boolean;
|
|
41
68
|
}, {}>;
|
|
42
69
|
|
|
43
70
|
export { MpTimelineItem };
|
package/dist/item.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ declare const MpTimelineItem: vue.DefineComponent<{
|
|
|
11
11
|
default: string;
|
|
12
12
|
};
|
|
13
13
|
icon: {
|
|
14
|
-
type: vue.PropType<"function" | "filter" | "done" | "caption" | "code" | "img" | "input" | "link" | "progress" | "textarea" | "time" | "stock-bulk-update-sku" | "stock-out-of-stock" | "stock-available" | "stock-running-out" | "pdf-document" | "image-document" | "excel-document" | "word-document" | "university-outline" | "task-on-progress" | "task-done" | "add" | "minus" | "text-editor-align-center" | "text-editor-align-justify" | "text-editor-align-left" | "text-editor-align-right" | "text-editor-banner" | "text-editor-bold" | "text-editor-bullet-list" | "text-editor-button" | "text-editor-decrease-indent" | "text-editor-divider" | "text-editor-footer" | "text-editor-increase-indent" | "text-editor-italic" | "text-editor-link" | "text-editor-logo" | "text-editor-mention" | "text-editor-move" | "text-editor-number-list" | "text-editor-paragraph" | "text-editor-reset-format" | "text-editor-strike" | "text-editor-text-color" | "text-editor-text" | "text-editor-underline" | "text-editor-variable" | "text-editor-write" | "text-editor-list" | "checkbox-checklist" | "checkbox-partial" | "Axis" | "DJP" | "Facebook-Messenger" | "Google" | "Gopay" | "Indosat" | "Instagram" | "JCB" | "Line" | "Livechat" | "Mastercard" | "OVO" | "PLN-Token" | "PLN" | "Shopee" | "Shopeepay" | "Smartfren" | "Telegram" | "Telkomsel" | "Tokopedia" | "Tri" | "Visa" | "WhatsApp" | "XL" | "airene-black" | "airene-brand" | "airene-outline" | "capital-black" | "capital-brand" | "capital-outline" | "mchat-black" | "mchat-brand" | "mchat-outline" | "expense-black" | "expense-brand" | "expense-outline" | "flex-black" | "flex-brand" | "flex-outline" | "insight-black" | "insight-brand" | "insight-outline" | "jurnal-black" | "jurnal-brand" | "jurnal-outline" | "klikpajak-black" | "klikpajak-brand" | "klikpajak-outline" | "mekari-black" | "mekari-brand" | "mekari-outline" | "pay-black" | "pay-brand" | "pay-outline" | "qontak-black" | "qontak-brand" | "qontak-outline" | "sign-black" | "sign-brand" | "sign-outline" | "stream-black" | "stream-brand" | "stream-outline" | "talenta-black" | "talenta-brand" | "talenta-outline" | "university-black" | "university-brand" | "accordion-collapse" | "accordion-expand" | "apply-all" | "arrow-collapse" | "arrow-expand" | "burger" | "check" | "close" | "crop" | "drag" | "fit-screen" | "full-screen" | "indicator-circle" | "indicator-square" | "loader-" | "minimize" | "menu-kebab" | "menu-meatball" | "remove-tag" | "reset" | "shortcuts" | "sliders" | "sort-ascending" | "sort-default" | "sort-descending" | "priority-low" | "priority-medium" | "priority-high" | "arrows-down" | "arrows-left" | "arrows-right" | "arrows-up" | "caret-down" | "caret-right" | "caret-up" | "chevrons-down" | "chevrons-forward" | "chevrons-left" | "chevrons-previous" | "chevrons-right" | "chevrons-up" | "X" | "error" | "help" | "info" | "pending" | "warning-circular" | "warning-triangle" | "backspace" | "call-active" | "call-add" | "call-declined" | "call-disabled" | "call-end" | "call-incoming" | "call-outgoing" | "call-pause" | "globe" | "headphone" | "mic" | "mic-mute" | "picture-in-picture" | "share-screen" | "account-mapping" | "action" | "add-ons" | "ai-assist" | "api" | "application" | "assets" | "attendee" | "bank" | "batch" | "billing" | "block-user" | "book" | "briefcase" | "bulk-send" | "bulk-upload" | "business-trip" | "broadcast" | "brush" | "calculator" | "cart" | "cash-advance" | "cash-in" | "cash-out" | "categories" | "certificate" | "channel" | "chart-of-account" | "chat" | "chatbot" | "cloud" | "column-settings" | "comment" | "commuting" | "company" | "competencies" | "condition" | "connected_apps" | "contact" | "dashboard" | "data-connect" | "database" | "design" | "dislike" | "decrease-kpi" | "desktop" | "document-sent" | "draft" | "education" | "email-sent" | "emeterai" | "employee" | "employee-not-found" | "employment" | "envelope" | "esignature" | "evaluation" | "expenses" | "face-recognition" | "file-change" | "file-transfer" | "finance" | "find-me" | "flag" | "fulfillment" | "gift" | "goal" | "hierarchy" | "home" | "hospital" | "inbox" | "increase-kpi" | "initials" | "join-invoice" | "key" | "lifestyle" | "like" | "loan" | "location" | "log" | "meeting-room" | "mekari_pay" | "migrate" | "mobile" | "mobile-postpaid" | "monitor-message" | "muted" | "notification" | "organizations" | "organizations-h" | "organizations-v" | "overtime" | "partner" | "password" | "payroll" | "payslip" | "people" | "performance" | "phone" | "pipeline" | "place-fields" | "plans" | "play-video" | "plugin-builder" | "policy" | "productivity" | "products" | "profile" | "promo" | "protection" | "receipt-lock" | "reimbursement" | "reports" | "restore" | "roles" | "sales" | "scan" | "schedule" | "security" | "sent" | "share" | "shop" | "sidebar-pin" | "stamp" | "succesion-plan" | "talent-management" | "theme" | "team" | "timer" | "tips" | "today" | "transfer" | "truck" | "unlock" | "upgrade" | "user-response" | "virtual-account" | "voucher" | "wallet" | "warehouse" | "whatsapp-flat" | "wifi" | "workflow" | "blank" | "copy" | "doc" | "file-audio" | "file-code" | "file-image" | "file-music" | "file-video" | "folder-close" | "folder-open" | "folder-transfer-close" | "folder-transfer-open" | "id-card" | "img-break" | "pdf" | "zip" | "add-circular" | "approval-rules" | "attachment" | "calendar" | "camera" | "chart-bar" | "chart-bar-line" | "chart-line" | "delete" | "download" | "edit" | "emoji" | "empty" | "fingerprint" | "forward" | "help-centre" | "hide" | "magic" | "minus-circular" | "newtab" | "number-five" | "paint-bucket" | "pause" | "pin" | "redo" | "refresh" | "reply" | "rotate-left" | "rotate-right" | "search" | "settings" | "show" | "sign-in" | "sign-out" | "table-view-column" | "table-view-field" | "table-view-field-2" | "table-view-filter" | "table-view-list" | "table-view-sort" | "task-todo" | "undo" | "upload" | "verified" | "video-recorder" | "zoom-in" | "zoom-out">;
|
|
14
|
+
type: vue.PropType<"function" | "filter" | "done" | "caption" | "code" | "img" | "input" | "link" | "progress" | "textarea" | "time" | "stock-bulk-update-sku" | "stock-out-of-stock" | "stock-available" | "stock-running-out" | "pdf-document" | "image-document" | "excel-document" | "word-document" | "university-outline" | "task-on-progress" | "task-done" | "add" | "minus" | "text-editor-align-center" | "text-editor-align-justify" | "text-editor-align-left" | "text-editor-align-right" | "text-editor-banner" | "text-editor-bold" | "text-editor-bullet-list" | "text-editor-button" | "text-editor-decrease-indent" | "text-editor-divider" | "text-editor-footer" | "text-editor-increase-indent" | "text-editor-italic" | "text-editor-link" | "text-editor-logo" | "text-editor-mention" | "text-editor-move" | "text-editor-number-list" | "text-editor-paragraph" | "text-editor-reset-format" | "text-editor-strike" | "text-editor-text-color" | "text-editor-text" | "text-editor-underline" | "text-editor-variable" | "text-editor-write" | "text-editor-list" | "checkbox-checklist" | "checkbox-partial" | "Axis" | "DJP" | "Facebook-Messenger" | "Google" | "Gopay" | "Indosat" | "Instagram" | "JCB" | "Line" | "Livechat" | "Mastercard" | "OVO" | "PLN-Token" | "PLN" | "Shopee" | "Shopeepay" | "Smartfren" | "Telegram" | "Telkomsel" | "Tokopedia" | "Tri" | "Visa" | "WhatsApp" | "XL" | "airene-black" | "airene-brand" | "airene-outline" | "capital-black" | "capital-brand" | "capital-outline" | "mchat-black" | "mchat-brand" | "mchat-outline" | "expense-black" | "expense-brand" | "expense-outline" | "flex-black" | "flex-brand" | "flex-outline" | "insight-black" | "insight-brand" | "insight-outline" | "jurnal-black" | "jurnal-brand" | "jurnal-outline" | "klikpajak-black" | "klikpajak-brand" | "klikpajak-outline" | "mekari-black" | "mekari-brand" | "mekari-outline" | "pay-black" | "pay-brand" | "pay-outline" | "qontak-black" | "qontak-brand" | "qontak-outline" | "sign-black" | "sign-brand" | "sign-outline" | "stream-black" | "stream-brand" | "stream-outline" | "talenta-black" | "talenta-brand" | "talenta-outline" | "university-black" | "university-brand" | "accordion-collapse" | "accordion-expand" | "apply-all" | "arrow-collapse" | "arrow-expand" | "burger" | "check" | "close" | "crop" | "drag" | "fit-screen" | "full-screen" | "indicator-circle" | "indicator-square" | "loader-" | "minimize" | "menu-kebab" | "menu-meatball" | "remove-tag" | "reset" | "shortcuts" | "sliders" | "sort-ascending" | "sort-default" | "sort-descending" | "priority-low" | "priority-medium" | "priority-high" | "arrows-down" | "arrows-left" | "arrows-right" | "arrows-up" | "caret-down" | "caret-right" | "caret-up" | "chevrons-down" | "chevrons-forward" | "chevrons-left" | "chevrons-previous" | "chevrons-right" | "chevrons-up" | "X" | "error" | "help" | "info" | "pending" | "warning-circular" | "warning-triangle" | "backspace" | "call-active" | "call-add" | "call-declined" | "call-disabled" | "call-end" | "call-incoming" | "call-outgoing" | "call-pause" | "globe" | "headphone" | "mic" | "mic-mute" | "picture-in-picture" | "share-screen" | "account-mapping" | "action" | "add-ons" | "ai-assist" | "api" | "application" | "assets" | "attendee" | "bank" | "batch" | "billing" | "block-user" | "book" | "briefcase" | "bulk-send" | "bulk-upload" | "business-trip" | "broadcast" | "brush" | "calculator" | "cart" | "cash-advance" | "cash-in" | "cash-out" | "categories" | "certificate" | "channel" | "chart-of-account" | "chat" | "chatbot" | "cloud" | "column-settings" | "comment" | "commuting" | "company" | "competencies" | "condition" | "connected_apps" | "contact" | "dashboard" | "data-connect" | "database" | "design" | "dislike" | "decrease-kpi" | "desktop" | "document-sent" | "draft" | "education" | "email-sent" | "emeterai" | "employee" | "employee-not-found" | "employment" | "envelope" | "esignature" | "evaluation" | "expenses" | "face-recognition" | "file-change" | "file-transfer" | "finance" | "find-me" | "flag" | "fulfillment" | "gift" | "goal" | "hierarchy" | "home" | "hospital" | "inbox" | "increase-kpi" | "initials" | "join-invoice" | "key" | "lifestyle" | "like" | "loan" | "location" | "log" | "meeting-room" | "mekari_pay" | "migrate" | "mobile" | "mobile-postpaid" | "monitor-message" | "muted" | "notification" | "organizations" | "organizations-h" | "organizations-v" | "overtime" | "partner" | "password" | "payroll" | "payslip" | "people" | "performance" | "phone" | "pipeline" | "place-fields" | "plans" | "play-video" | "plugin-builder" | "policy" | "productivity" | "products" | "profile" | "promo" | "protection" | "recall" | "receipt-lock" | "reimbursement" | "reports" | "restore" | "roles" | "sales" | "scan" | "schedule" | "security" | "sent" | "share" | "shop" | "sidebar-pin" | "stamp" | "succesion-plan" | "talent-management" | "theme" | "team" | "timer" | "tips" | "today" | "transfer" | "truck" | "unlock" | "upgrade" | "user-response" | "variable" | "virtual-account" | "voucher" | "wallet" | "warehouse" | "whatsapp-flat" | "wifi" | "workflow" | "blank" | "copy" | "doc" | "file-audio" | "file-code" | "file-image" | "file-music" | "file-video" | "folder-close" | "folder-open" | "folder-transfer-close" | "folder-transfer-open" | "id-card" | "img-break" | "pdf" | "zip" | "add-circular" | "approval-rules" | "attachment" | "calendar" | "camera" | "chart-bar" | "chart-bar-line" | "chart-line" | "delete" | "download" | "edit" | "emoji" | "empty" | "fingerprint" | "forward" | "help-centre" | "hide" | "magic" | "minus-circular" | "newtab" | "number-five" | "paint-bucket" | "pause" | "pin" | "redo" | "refresh" | "reply" | "rotate-left" | "rotate-right" | "search" | "settings" | "show" | "sign-in" | "sign-out" | "table-view-column" | "table-view-field" | "table-view-field-2" | "table-view-filter" | "table-view-list" | "table-view-sort" | "task-todo" | "undo" | "upload" | "verified" | "video-recorder" | "zoom-in" | "zoom-out">;
|
|
15
15
|
};
|
|
16
16
|
iconVariant: {
|
|
17
17
|
type: vue.PropType<TimelineIconVariant>;
|
|
@@ -19,6 +19,18 @@ declare const MpTimelineItem: vue.DefineComponent<{
|
|
|
19
19
|
iconColor: {
|
|
20
20
|
type: vue.PropType<string>;
|
|
21
21
|
};
|
|
22
|
+
isAccordionChild: {
|
|
23
|
+
type: vue.PropType<boolean>;
|
|
24
|
+
default: boolean;
|
|
25
|
+
};
|
|
26
|
+
isHideTopConnector: {
|
|
27
|
+
type: vue.PropType<boolean>;
|
|
28
|
+
default: boolean;
|
|
29
|
+
};
|
|
30
|
+
isHideBottomConnector: {
|
|
31
|
+
type: vue.PropType<boolean>;
|
|
32
|
+
default: boolean;
|
|
33
|
+
};
|
|
22
34
|
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
23
35
|
position: {
|
|
24
36
|
type: vue.PropType<TimelinePosition>;
|
|
@@ -28,7 +40,7 @@ declare const MpTimelineItem: vue.DefineComponent<{
|
|
|
28
40
|
default: string;
|
|
29
41
|
};
|
|
30
42
|
icon: {
|
|
31
|
-
type: vue.PropType<"function" | "filter" | "done" | "caption" | "code" | "img" | "input" | "link" | "progress" | "textarea" | "time" | "stock-bulk-update-sku" | "stock-out-of-stock" | "stock-available" | "stock-running-out" | "pdf-document" | "image-document" | "excel-document" | "word-document" | "university-outline" | "task-on-progress" | "task-done" | "add" | "minus" | "text-editor-align-center" | "text-editor-align-justify" | "text-editor-align-left" | "text-editor-align-right" | "text-editor-banner" | "text-editor-bold" | "text-editor-bullet-list" | "text-editor-button" | "text-editor-decrease-indent" | "text-editor-divider" | "text-editor-footer" | "text-editor-increase-indent" | "text-editor-italic" | "text-editor-link" | "text-editor-logo" | "text-editor-mention" | "text-editor-move" | "text-editor-number-list" | "text-editor-paragraph" | "text-editor-reset-format" | "text-editor-strike" | "text-editor-text-color" | "text-editor-text" | "text-editor-underline" | "text-editor-variable" | "text-editor-write" | "text-editor-list" | "checkbox-checklist" | "checkbox-partial" | "Axis" | "DJP" | "Facebook-Messenger" | "Google" | "Gopay" | "Indosat" | "Instagram" | "JCB" | "Line" | "Livechat" | "Mastercard" | "OVO" | "PLN-Token" | "PLN" | "Shopee" | "Shopeepay" | "Smartfren" | "Telegram" | "Telkomsel" | "Tokopedia" | "Tri" | "Visa" | "WhatsApp" | "XL" | "airene-black" | "airene-brand" | "airene-outline" | "capital-black" | "capital-brand" | "capital-outline" | "mchat-black" | "mchat-brand" | "mchat-outline" | "expense-black" | "expense-brand" | "expense-outline" | "flex-black" | "flex-brand" | "flex-outline" | "insight-black" | "insight-brand" | "insight-outline" | "jurnal-black" | "jurnal-brand" | "jurnal-outline" | "klikpajak-black" | "klikpajak-brand" | "klikpajak-outline" | "mekari-black" | "mekari-brand" | "mekari-outline" | "pay-black" | "pay-brand" | "pay-outline" | "qontak-black" | "qontak-brand" | "qontak-outline" | "sign-black" | "sign-brand" | "sign-outline" | "stream-black" | "stream-brand" | "stream-outline" | "talenta-black" | "talenta-brand" | "talenta-outline" | "university-black" | "university-brand" | "accordion-collapse" | "accordion-expand" | "apply-all" | "arrow-collapse" | "arrow-expand" | "burger" | "check" | "close" | "crop" | "drag" | "fit-screen" | "full-screen" | "indicator-circle" | "indicator-square" | "loader-" | "minimize" | "menu-kebab" | "menu-meatball" | "remove-tag" | "reset" | "shortcuts" | "sliders" | "sort-ascending" | "sort-default" | "sort-descending" | "priority-low" | "priority-medium" | "priority-high" | "arrows-down" | "arrows-left" | "arrows-right" | "arrows-up" | "caret-down" | "caret-right" | "caret-up" | "chevrons-down" | "chevrons-forward" | "chevrons-left" | "chevrons-previous" | "chevrons-right" | "chevrons-up" | "X" | "error" | "help" | "info" | "pending" | "warning-circular" | "warning-triangle" | "backspace" | "call-active" | "call-add" | "call-declined" | "call-disabled" | "call-end" | "call-incoming" | "call-outgoing" | "call-pause" | "globe" | "headphone" | "mic" | "mic-mute" | "picture-in-picture" | "share-screen" | "account-mapping" | "action" | "add-ons" | "ai-assist" | "api" | "application" | "assets" | "attendee" | "bank" | "batch" | "billing" | "block-user" | "book" | "briefcase" | "bulk-send" | "bulk-upload" | "business-trip" | "broadcast" | "brush" | "calculator" | "cart" | "cash-advance" | "cash-in" | "cash-out" | "categories" | "certificate" | "channel" | "chart-of-account" | "chat" | "chatbot" | "cloud" | "column-settings" | "comment" | "commuting" | "company" | "competencies" | "condition" | "connected_apps" | "contact" | "dashboard" | "data-connect" | "database" | "design" | "dislike" | "decrease-kpi" | "desktop" | "document-sent" | "draft" | "education" | "email-sent" | "emeterai" | "employee" | "employee-not-found" | "employment" | "envelope" | "esignature" | "evaluation" | "expenses" | "face-recognition" | "file-change" | "file-transfer" | "finance" | "find-me" | "flag" | "fulfillment" | "gift" | "goal" | "hierarchy" | "home" | "hospital" | "inbox" | "increase-kpi" | "initials" | "join-invoice" | "key" | "lifestyle" | "like" | "loan" | "location" | "log" | "meeting-room" | "mekari_pay" | "migrate" | "mobile" | "mobile-postpaid" | "monitor-message" | "muted" | "notification" | "organizations" | "organizations-h" | "organizations-v" | "overtime" | "partner" | "password" | "payroll" | "payslip" | "people" | "performance" | "phone" | "pipeline" | "place-fields" | "plans" | "play-video" | "plugin-builder" | "policy" | "productivity" | "products" | "profile" | "promo" | "protection" | "receipt-lock" | "reimbursement" | "reports" | "restore" | "roles" | "sales" | "scan" | "schedule" | "security" | "sent" | "share" | "shop" | "sidebar-pin" | "stamp" | "succesion-plan" | "talent-management" | "theme" | "team" | "timer" | "tips" | "today" | "transfer" | "truck" | "unlock" | "upgrade" | "user-response" | "virtual-account" | "voucher" | "wallet" | "warehouse" | "whatsapp-flat" | "wifi" | "workflow" | "blank" | "copy" | "doc" | "file-audio" | "file-code" | "file-image" | "file-music" | "file-video" | "folder-close" | "folder-open" | "folder-transfer-close" | "folder-transfer-open" | "id-card" | "img-break" | "pdf" | "zip" | "add-circular" | "approval-rules" | "attachment" | "calendar" | "camera" | "chart-bar" | "chart-bar-line" | "chart-line" | "delete" | "download" | "edit" | "emoji" | "empty" | "fingerprint" | "forward" | "help-centre" | "hide" | "magic" | "minus-circular" | "newtab" | "number-five" | "paint-bucket" | "pause" | "pin" | "redo" | "refresh" | "reply" | "rotate-left" | "rotate-right" | "search" | "settings" | "show" | "sign-in" | "sign-out" | "table-view-column" | "table-view-field" | "table-view-field-2" | "table-view-filter" | "table-view-list" | "table-view-sort" | "task-todo" | "undo" | "upload" | "verified" | "video-recorder" | "zoom-in" | "zoom-out">;
|
|
43
|
+
type: vue.PropType<"function" | "filter" | "done" | "caption" | "code" | "img" | "input" | "link" | "progress" | "textarea" | "time" | "stock-bulk-update-sku" | "stock-out-of-stock" | "stock-available" | "stock-running-out" | "pdf-document" | "image-document" | "excel-document" | "word-document" | "university-outline" | "task-on-progress" | "task-done" | "add" | "minus" | "text-editor-align-center" | "text-editor-align-justify" | "text-editor-align-left" | "text-editor-align-right" | "text-editor-banner" | "text-editor-bold" | "text-editor-bullet-list" | "text-editor-button" | "text-editor-decrease-indent" | "text-editor-divider" | "text-editor-footer" | "text-editor-increase-indent" | "text-editor-italic" | "text-editor-link" | "text-editor-logo" | "text-editor-mention" | "text-editor-move" | "text-editor-number-list" | "text-editor-paragraph" | "text-editor-reset-format" | "text-editor-strike" | "text-editor-text-color" | "text-editor-text" | "text-editor-underline" | "text-editor-variable" | "text-editor-write" | "text-editor-list" | "checkbox-checklist" | "checkbox-partial" | "Axis" | "DJP" | "Facebook-Messenger" | "Google" | "Gopay" | "Indosat" | "Instagram" | "JCB" | "Line" | "Livechat" | "Mastercard" | "OVO" | "PLN-Token" | "PLN" | "Shopee" | "Shopeepay" | "Smartfren" | "Telegram" | "Telkomsel" | "Tokopedia" | "Tri" | "Visa" | "WhatsApp" | "XL" | "airene-black" | "airene-brand" | "airene-outline" | "capital-black" | "capital-brand" | "capital-outline" | "mchat-black" | "mchat-brand" | "mchat-outline" | "expense-black" | "expense-brand" | "expense-outline" | "flex-black" | "flex-brand" | "flex-outline" | "insight-black" | "insight-brand" | "insight-outline" | "jurnal-black" | "jurnal-brand" | "jurnal-outline" | "klikpajak-black" | "klikpajak-brand" | "klikpajak-outline" | "mekari-black" | "mekari-brand" | "mekari-outline" | "pay-black" | "pay-brand" | "pay-outline" | "qontak-black" | "qontak-brand" | "qontak-outline" | "sign-black" | "sign-brand" | "sign-outline" | "stream-black" | "stream-brand" | "stream-outline" | "talenta-black" | "talenta-brand" | "talenta-outline" | "university-black" | "university-brand" | "accordion-collapse" | "accordion-expand" | "apply-all" | "arrow-collapse" | "arrow-expand" | "burger" | "check" | "close" | "crop" | "drag" | "fit-screen" | "full-screen" | "indicator-circle" | "indicator-square" | "loader-" | "minimize" | "menu-kebab" | "menu-meatball" | "remove-tag" | "reset" | "shortcuts" | "sliders" | "sort-ascending" | "sort-default" | "sort-descending" | "priority-low" | "priority-medium" | "priority-high" | "arrows-down" | "arrows-left" | "arrows-right" | "arrows-up" | "caret-down" | "caret-right" | "caret-up" | "chevrons-down" | "chevrons-forward" | "chevrons-left" | "chevrons-previous" | "chevrons-right" | "chevrons-up" | "X" | "error" | "help" | "info" | "pending" | "warning-circular" | "warning-triangle" | "backspace" | "call-active" | "call-add" | "call-declined" | "call-disabled" | "call-end" | "call-incoming" | "call-outgoing" | "call-pause" | "globe" | "headphone" | "mic" | "mic-mute" | "picture-in-picture" | "share-screen" | "account-mapping" | "action" | "add-ons" | "ai-assist" | "api" | "application" | "assets" | "attendee" | "bank" | "batch" | "billing" | "block-user" | "book" | "briefcase" | "bulk-send" | "bulk-upload" | "business-trip" | "broadcast" | "brush" | "calculator" | "cart" | "cash-advance" | "cash-in" | "cash-out" | "categories" | "certificate" | "channel" | "chart-of-account" | "chat" | "chatbot" | "cloud" | "column-settings" | "comment" | "commuting" | "company" | "competencies" | "condition" | "connected_apps" | "contact" | "dashboard" | "data-connect" | "database" | "design" | "dislike" | "decrease-kpi" | "desktop" | "document-sent" | "draft" | "education" | "email-sent" | "emeterai" | "employee" | "employee-not-found" | "employment" | "envelope" | "esignature" | "evaluation" | "expenses" | "face-recognition" | "file-change" | "file-transfer" | "finance" | "find-me" | "flag" | "fulfillment" | "gift" | "goal" | "hierarchy" | "home" | "hospital" | "inbox" | "increase-kpi" | "initials" | "join-invoice" | "key" | "lifestyle" | "like" | "loan" | "location" | "log" | "meeting-room" | "mekari_pay" | "migrate" | "mobile" | "mobile-postpaid" | "monitor-message" | "muted" | "notification" | "organizations" | "organizations-h" | "organizations-v" | "overtime" | "partner" | "password" | "payroll" | "payslip" | "people" | "performance" | "phone" | "pipeline" | "place-fields" | "plans" | "play-video" | "plugin-builder" | "policy" | "productivity" | "products" | "profile" | "promo" | "protection" | "recall" | "receipt-lock" | "reimbursement" | "reports" | "restore" | "roles" | "sales" | "scan" | "schedule" | "security" | "sent" | "share" | "shop" | "sidebar-pin" | "stamp" | "succesion-plan" | "talent-management" | "theme" | "team" | "timer" | "tips" | "today" | "transfer" | "truck" | "unlock" | "upgrade" | "user-response" | "variable" | "virtual-account" | "voucher" | "wallet" | "warehouse" | "whatsapp-flat" | "wifi" | "workflow" | "blank" | "copy" | "doc" | "file-audio" | "file-code" | "file-image" | "file-music" | "file-video" | "folder-close" | "folder-open" | "folder-transfer-close" | "folder-transfer-open" | "id-card" | "img-break" | "pdf" | "zip" | "add-circular" | "approval-rules" | "attachment" | "calendar" | "camera" | "chart-bar" | "chart-bar-line" | "chart-line" | "delete" | "download" | "edit" | "emoji" | "empty" | "fingerprint" | "forward" | "help-centre" | "hide" | "magic" | "minus-circular" | "newtab" | "number-five" | "paint-bucket" | "pause" | "pin" | "redo" | "refresh" | "reply" | "rotate-left" | "rotate-right" | "search" | "settings" | "show" | "sign-in" | "sign-out" | "table-view-column" | "table-view-field" | "table-view-field-2" | "table-view-filter" | "table-view-list" | "table-view-sort" | "task-todo" | "undo" | "upload" | "verified" | "video-recorder" | "zoom-in" | "zoom-out">;
|
|
32
44
|
};
|
|
33
45
|
iconVariant: {
|
|
34
46
|
type: vue.PropType<TimelineIconVariant>;
|
|
@@ -36,8 +48,23 @@ declare const MpTimelineItem: vue.DefineComponent<{
|
|
|
36
48
|
iconColor: {
|
|
37
49
|
type: vue.PropType<string>;
|
|
38
50
|
};
|
|
51
|
+
isAccordionChild: {
|
|
52
|
+
type: vue.PropType<boolean>;
|
|
53
|
+
default: boolean;
|
|
54
|
+
};
|
|
55
|
+
isHideTopConnector: {
|
|
56
|
+
type: vue.PropType<boolean>;
|
|
57
|
+
default: boolean;
|
|
58
|
+
};
|
|
59
|
+
isHideBottomConnector: {
|
|
60
|
+
type: vue.PropType<boolean>;
|
|
61
|
+
default: boolean;
|
|
62
|
+
};
|
|
39
63
|
}>>, {
|
|
64
|
+
isAccordionChild: boolean;
|
|
40
65
|
status: TimelineStatus;
|
|
66
|
+
isHideTopConnector: boolean;
|
|
67
|
+
isHideBottomConnector: boolean;
|
|
41
68
|
}, {}>;
|
|
42
69
|
|
|
43
70
|
export { MpTimelineItem };
|
package/dist/item.js
CHANGED
|
@@ -67,6 +67,18 @@ var timelineItemProps = {
|
|
|
67
67
|
},
|
|
68
68
|
iconColor: {
|
|
69
69
|
type: String
|
|
70
|
+
},
|
|
71
|
+
isAccordionChild: {
|
|
72
|
+
type: Boolean,
|
|
73
|
+
default: false
|
|
74
|
+
},
|
|
75
|
+
isHideTopConnector: {
|
|
76
|
+
type: Boolean,
|
|
77
|
+
default: false
|
|
78
|
+
},
|
|
79
|
+
isHideBottomConnector: {
|
|
80
|
+
type: Boolean,
|
|
81
|
+
default: false
|
|
70
82
|
}
|
|
71
83
|
};
|
|
72
84
|
var timelineSeparatorProps = {
|
|
@@ -85,11 +97,24 @@ var timelineSeparatorProps = {
|
|
|
85
97
|
},
|
|
86
98
|
iconColor: {
|
|
87
99
|
type: String
|
|
100
|
+
},
|
|
101
|
+
isAccordionChild: {
|
|
102
|
+
type: [Boolean],
|
|
103
|
+
default: false
|
|
104
|
+
},
|
|
105
|
+
isHideTopConnector: {
|
|
106
|
+
type: Boolean,
|
|
107
|
+
default: false
|
|
108
|
+
},
|
|
109
|
+
isHideBottomConnector: {
|
|
110
|
+
type: Boolean,
|
|
111
|
+
default: false
|
|
88
112
|
}
|
|
89
113
|
};
|
|
90
114
|
|
|
91
115
|
// src/separator.tsx
|
|
92
116
|
var import_recipes2 = require("@mekari/pixel3-styled-system/recipes");
|
|
117
|
+
var import_css = require("@mekari/pixel3-styled-system/css");
|
|
93
118
|
var MpTimelineSeparator = (0, import_vue4.defineComponent)({
|
|
94
119
|
name: "MpTimelineSeparator",
|
|
95
120
|
props: timelineSeparatorProps,
|
|
@@ -123,23 +148,58 @@ var MpTimelineSeparator = (0, import_vue4.defineComponent)({
|
|
|
123
148
|
};
|
|
124
149
|
return () => {
|
|
125
150
|
const classes = (0, import_recipes2.timelineSeparatorSlotRecipe)();
|
|
151
|
+
const iconNode = (0, import_vue3.createVNode)(import_pixel3_icon.MpIcon, {
|
|
152
|
+
"name": props.icon || iconAttrs[props.status].name,
|
|
153
|
+
"color": props.iconColor || iconAttrs[props.status].color,
|
|
154
|
+
"variant": props.iconVariant || iconAttrs[props.status].variant,
|
|
155
|
+
"size": "sm"
|
|
156
|
+
}, null);
|
|
157
|
+
const accordionIconNode = (0, import_vue3.createVNode)("div", {
|
|
158
|
+
"data-pixel-component": "MpTimelineAccordionIcon",
|
|
159
|
+
"class": (0, import_css.css)({
|
|
160
|
+
display: "flex",
|
|
161
|
+
alignItems: "center",
|
|
162
|
+
height: "6"
|
|
163
|
+
})
|
|
164
|
+
}, [(0, import_vue3.createVNode)("div", {
|
|
165
|
+
"data-pixel-component": "MpTimelineConnector",
|
|
166
|
+
"class": (0, import_css.css)({
|
|
167
|
+
height: "100%",
|
|
168
|
+
width: "2px",
|
|
169
|
+
backgroundColor: "gray.100",
|
|
170
|
+
_nextTheme: {
|
|
171
|
+
backgroundColor: "border.default"
|
|
172
|
+
}
|
|
173
|
+
})
|
|
174
|
+
}, null), (0, import_vue3.createVNode)("div", {
|
|
175
|
+
"data-pixel-component": "MpTimelineConnector",
|
|
176
|
+
"class": (0, import_css.css)({
|
|
177
|
+
height: "2px",
|
|
178
|
+
width: "16px",
|
|
179
|
+
backgroundColor: "gray.100",
|
|
180
|
+
marginRight: "1.5",
|
|
181
|
+
_nextTheme: {
|
|
182
|
+
backgroundColor: "border.default"
|
|
183
|
+
}
|
|
184
|
+
})
|
|
185
|
+
}, null), iconNode]);
|
|
126
186
|
return (0, import_vue3.createVNode)("div", {
|
|
127
187
|
"data-pixel-component": "MpTimelineSeparator",
|
|
188
|
+
"data-accordion-child": props.isAccordionChild || void 0,
|
|
128
189
|
"class": classes.root
|
|
129
190
|
}, [(0, import_vue3.createVNode)("div", {
|
|
130
191
|
"data-pixel-component": "MpTimelineConnector",
|
|
192
|
+
"data-accordion-child": props.isAccordionChild || void 0,
|
|
131
193
|
"data-connector": "top",
|
|
132
194
|
"data-position": props.position,
|
|
195
|
+
"data-hide": props.isHideTopConnector || void 0,
|
|
133
196
|
"class": classes.topConnector
|
|
134
|
-
}, null), (0, import_vue3.createVNode)(
|
|
135
|
-
"name": props.icon || iconAttrs[props.status].name,
|
|
136
|
-
"color": props.iconColor || iconAttrs[props.status].color,
|
|
137
|
-
"variant": props.iconVariant || iconAttrs[props.status].variant,
|
|
138
|
-
"size": "sm"
|
|
139
|
-
}, null), (0, import_vue3.createVNode)("div", {
|
|
197
|
+
}, null), props.isAccordionChild ? accordionIconNode : iconNode, (0, import_vue3.createVNode)("div", {
|
|
140
198
|
"data-connector": "bottom",
|
|
141
199
|
"data-pixel-component": "MpTimelineConnector",
|
|
200
|
+
"data-accordion-child": props.isAccordionChild || void 0,
|
|
142
201
|
"data-position": props.position,
|
|
202
|
+
"data-hide": props.isHideBottomConnector || void 0,
|
|
143
203
|
"class": classes.bottomConnector
|
|
144
204
|
}, null)]);
|
|
145
205
|
};
|
|
@@ -165,7 +225,10 @@ var MpTimelineItem = (0, import_vue6.defineComponent)({
|
|
|
165
225
|
"status": props.status,
|
|
166
226
|
"icon": props.icon,
|
|
167
227
|
"iconVariant": props.iconVariant,
|
|
168
|
-
"iconColor": props.iconColor
|
|
228
|
+
"iconColor": props.iconColor,
|
|
229
|
+
"isAccordionChild": props.isAccordionChild,
|
|
230
|
+
"isHideTopConnector": props.isHideTopConnector,
|
|
231
|
+
"isHideBottomConnector": props.isHideBottomConnector
|
|
169
232
|
}, null), (0, import_vue5.createVNode)(MpTimelineBody, null, {
|
|
170
233
|
default: () => [slots.default && slots.default()]
|
|
171
234
|
})]);
|
package/dist/item.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
MpTimelineItem
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
3
|
+
} from "./chunk-HIYFHIIF.mjs";
|
|
4
|
+
import "./chunk-H43TPNE5.mjs";
|
|
5
5
|
import "./chunk-QHPZK7ZV.mjs";
|
|
6
|
-
import "./chunk-
|
|
6
|
+
import "./chunk-NQRU4NSD.mjs";
|
|
7
7
|
import "./chunk-QZ7VFGWC.mjs";
|
|
8
8
|
export {
|
|
9
9
|
MpTimelineItem
|